diff --git a/api/adminservice/v1/request_response.pb.go b/api/adminservice/v1/request_response.pb.go index a4e9286ed8c..33fb1cb96e8 100644 --- a/api/adminservice/v1/request_response.pb.go +++ b/api/adminservice/v1/request_response.pb.go @@ -3636,6 +3636,329 @@ func (m *GetNamespaceResponse) GetIsGlobalNamespace() bool { return false } +type HistoryTask struct { + // shard_id is included to avoid having to deserialize the task blob. + ShardId int32 `protobuf:"varint,1,opt,name=shard_id,json=shardId,proto3" json:"shard_id,omitempty"` + Task *v1.DataBlob `protobuf:"bytes,2,opt,name=task,proto3" json:"task,omitempty"` +} + +func (m *HistoryTask) Reset() { *m = HistoryTask{} } +func (*HistoryTask) ProtoMessage() {} +func (*HistoryTask) Descriptor() ([]byte, []int) { + return fileDescriptor_cc07c1a2abe7cb51, []int{61} +} +func (m *HistoryTask) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *HistoryTask) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_HistoryTask.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *HistoryTask) XXX_Merge(src proto.Message) { + xxx_messageInfo_HistoryTask.Merge(m, src) +} +func (m *HistoryTask) XXX_Size() int { + return m.Size() +} +func (m *HistoryTask) XXX_DiscardUnknown() { + xxx_messageInfo_HistoryTask.DiscardUnknown(m) +} + +var xxx_messageInfo_HistoryTask proto.InternalMessageInfo + +func (m *HistoryTask) GetShardId() int32 { + if m != nil { + return m.ShardId + } + return 0 +} + +func (m *HistoryTask) GetTask() *v1.DataBlob { + if m != nil { + return m.Task + } + return nil +} + +type HistoryDLQTaskMetadata struct { + // message_id is the zero-indexed sequence number of the message in the queue that contains this history task. + MessageId int64 `protobuf:"varint,1,opt,name=message_id,json=messageId,proto3" json:"message_id,omitempty"` +} + +func (m *HistoryDLQTaskMetadata) Reset() { *m = HistoryDLQTaskMetadata{} } +func (*HistoryDLQTaskMetadata) ProtoMessage() {} +func (*HistoryDLQTaskMetadata) Descriptor() ([]byte, []int) { + return fileDescriptor_cc07c1a2abe7cb51, []int{62} +} +func (m *HistoryDLQTaskMetadata) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *HistoryDLQTaskMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_HistoryDLQTaskMetadata.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *HistoryDLQTaskMetadata) XXX_Merge(src proto.Message) { + xxx_messageInfo_HistoryDLQTaskMetadata.Merge(m, src) +} +func (m *HistoryDLQTaskMetadata) XXX_Size() int { + return m.Size() +} +func (m *HistoryDLQTaskMetadata) XXX_DiscardUnknown() { + xxx_messageInfo_HistoryDLQTaskMetadata.DiscardUnknown(m) +} + +var xxx_messageInfo_HistoryDLQTaskMetadata proto.InternalMessageInfo + +func (m *HistoryDLQTaskMetadata) GetMessageId() int64 { + if m != nil { + return m.MessageId + } + return 0 +} + +// HistoryDLQTask is a history task that has been moved to the DLQ, so it also has a message ID (index within that +// queue). +type HistoryDLQTask struct { + Metadata *HistoryDLQTaskMetadata `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` + Task *HistoryTask `protobuf:"bytes,2,opt,name=task,proto3" json:"task,omitempty"` +} + +func (m *HistoryDLQTask) Reset() { *m = HistoryDLQTask{} } +func (*HistoryDLQTask) ProtoMessage() {} +func (*HistoryDLQTask) Descriptor() ([]byte, []int) { + return fileDescriptor_cc07c1a2abe7cb51, []int{63} +} +func (m *HistoryDLQTask) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *HistoryDLQTask) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_HistoryDLQTask.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *HistoryDLQTask) XXX_Merge(src proto.Message) { + xxx_messageInfo_HistoryDLQTask.Merge(m, src) +} +func (m *HistoryDLQTask) XXX_Size() int { + return m.Size() +} +func (m *HistoryDLQTask) XXX_DiscardUnknown() { + xxx_messageInfo_HistoryDLQTask.DiscardUnknown(m) +} + +var xxx_messageInfo_HistoryDLQTask proto.InternalMessageInfo + +func (m *HistoryDLQTask) GetMetadata() *HistoryDLQTaskMetadata { + if m != nil { + return m.Metadata + } + return nil +} + +func (m *HistoryDLQTask) GetTask() *HistoryTask { + if m != nil { + return m.Task + } + return nil +} + +// HistoryDLQKey is a compound key that identifies a history DLQ. +type HistoryDLQKey struct { + Category v14.TaskCategory `protobuf:"varint,1,opt,name=category,proto3,enum=temporal.server.api.enums.v1.TaskCategory" json:"category,omitempty"` + SourceCluster string `protobuf:"bytes,2,opt,name=source_cluster,json=sourceCluster,proto3" json:"source_cluster,omitempty"` + TargetCluster string `protobuf:"bytes,3,opt,name=target_cluster,json=targetCluster,proto3" json:"target_cluster,omitempty"` +} + +func (m *HistoryDLQKey) Reset() { *m = HistoryDLQKey{} } +func (*HistoryDLQKey) ProtoMessage() {} +func (*HistoryDLQKey) Descriptor() ([]byte, []int) { + return fileDescriptor_cc07c1a2abe7cb51, []int{64} +} +func (m *HistoryDLQKey) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *HistoryDLQKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_HistoryDLQKey.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *HistoryDLQKey) XXX_Merge(src proto.Message) { + xxx_messageInfo_HistoryDLQKey.Merge(m, src) +} +func (m *HistoryDLQKey) XXX_Size() int { + return m.Size() +} +func (m *HistoryDLQKey) XXX_DiscardUnknown() { + xxx_messageInfo_HistoryDLQKey.DiscardUnknown(m) +} + +var xxx_messageInfo_HistoryDLQKey proto.InternalMessageInfo + +func (m *HistoryDLQKey) GetCategory() v14.TaskCategory { + if m != nil { + return m.Category + } + return v14.TASK_CATEGORY_UNSPECIFIED +} + +func (m *HistoryDLQKey) GetSourceCluster() string { + if m != nil { + return m.SourceCluster + } + return "" +} + +func (m *HistoryDLQKey) GetTargetCluster() string { + if m != nil { + return m.TargetCluster + } + return "" +} + +type GetDLQTasksRequest struct { + DlqKey *HistoryDLQKey `protobuf:"bytes,1,opt,name=dlq_key,json=dlqKey,proto3" json:"dlq_key,omitempty"` + // page_size must be positive. Up to this many tasks will be returned. + PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` + NextPageToken []byte `protobuf:"bytes,3,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` +} + +func (m *GetDLQTasksRequest) Reset() { *m = GetDLQTasksRequest{} } +func (*GetDLQTasksRequest) ProtoMessage() {} +func (*GetDLQTasksRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_cc07c1a2abe7cb51, []int{65} +} +func (m *GetDLQTasksRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *GetDLQTasksRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_GetDLQTasksRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *GetDLQTasksRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetDLQTasksRequest.Merge(m, src) +} +func (m *GetDLQTasksRequest) XXX_Size() int { + return m.Size() +} +func (m *GetDLQTasksRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetDLQTasksRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_GetDLQTasksRequest proto.InternalMessageInfo + +func (m *GetDLQTasksRequest) GetDlqKey() *HistoryDLQKey { + if m != nil { + return m.DlqKey + } + return nil +} + +func (m *GetDLQTasksRequest) GetPageSize() int32 { + if m != nil { + return m.PageSize + } + return 0 +} + +func (m *GetDLQTasksRequest) GetNextPageToken() []byte { + if m != nil { + return m.NextPageToken + } + return nil +} + +type GetDLQTasksResponse struct { + DlqTasks []*HistoryDLQTask `protobuf:"bytes,1,rep,name=dlq_tasks,json=dlqTasks,proto3" json:"dlq_tasks,omitempty"` + // next_page_token is empty if there are no more results. However, the converse is not true. If there are no more + // results, this field may still be non-empty. This is to avoid having to do a count query to determine whether + // there are more results. + NextPageToken []byte `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` +} + +func (m *GetDLQTasksResponse) Reset() { *m = GetDLQTasksResponse{} } +func (*GetDLQTasksResponse) ProtoMessage() {} +func (*GetDLQTasksResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_cc07c1a2abe7cb51, []int{66} +} +func (m *GetDLQTasksResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *GetDLQTasksResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_GetDLQTasksResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *GetDLQTasksResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetDLQTasksResponse.Merge(m, src) +} +func (m *GetDLQTasksResponse) XXX_Size() int { + return m.Size() +} +func (m *GetDLQTasksResponse) XXX_DiscardUnknown() { + xxx_messageInfo_GetDLQTasksResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_GetDLQTasksResponse proto.InternalMessageInfo + +func (m *GetDLQTasksResponse) GetDlqTasks() []*HistoryDLQTask { + if m != nil { + return m.DlqTasks + } + return nil +} + +func (m *GetDLQTasksResponse) GetNextPageToken() []byte { + if m != nil { + return m.NextPageToken + } + return nil +} + func init() { proto.RegisterType((*RebuildMutableStateRequest)(nil), "temporal.server.api.adminservice.v1.RebuildMutableStateRequest") proto.RegisterType((*RebuildMutableStateResponse)(nil), "temporal.server.api.adminservice.v1.RebuildMutableStateResponse") @@ -3705,6 +4028,12 @@ func init() { proto.RegisterType((*StreamWorkflowReplicationMessagesResponse)(nil), "temporal.server.api.adminservice.v1.StreamWorkflowReplicationMessagesResponse") proto.RegisterType((*GetNamespaceRequest)(nil), "temporal.server.api.adminservice.v1.GetNamespaceRequest") proto.RegisterType((*GetNamespaceResponse)(nil), "temporal.server.api.adminservice.v1.GetNamespaceResponse") + proto.RegisterType((*HistoryTask)(nil), "temporal.server.api.adminservice.v1.HistoryTask") + proto.RegisterType((*HistoryDLQTaskMetadata)(nil), "temporal.server.api.adminservice.v1.HistoryDLQTaskMetadata") + proto.RegisterType((*HistoryDLQTask)(nil), "temporal.server.api.adminservice.v1.HistoryDLQTask") + proto.RegisterType((*HistoryDLQKey)(nil), "temporal.server.api.adminservice.v1.HistoryDLQKey") + proto.RegisterType((*GetDLQTasksRequest)(nil), "temporal.server.api.adminservice.v1.GetDLQTasksRequest") + proto.RegisterType((*GetDLQTasksResponse)(nil), "temporal.server.api.adminservice.v1.GetDLQTasksResponse") } func init() { @@ -3712,216 +4041,228 @@ func init() { } var fileDescriptor_cc07c1a2abe7cb51 = []byte{ - // 3337 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x1b, 0x4b, 0x6c, 0x1b, 0xc7, - 0x55, 0xcb, 0x8f, 0x44, 0x3e, 0xfd, 0xd7, 0xb2, 0x45, 0x53, 0x11, 0xa5, 0x30, 0x8e, 0x23, 0x3b, - 0x09, 0x55, 0x3b, 0x6d, 0xed, 0x7c, 0x0c, 0xc3, 0x92, 0x1d, 0x49, 0xa9, 0x95, 0xcf, 0xca, 0xb1, - 0xdb, 0x00, 0xc1, 0x66, 0xb9, 0x3b, 0xa2, 0x16, 0x26, 0x77, 0x99, 0x9d, 0x21, 0x6d, 0x05, 0xe8, - 0x07, 0x4d, 0x8b, 0xa2, 0x87, 0xa2, 0x06, 0x8a, 0x02, 0x41, 0x4e, 0x3d, 0x16, 0x45, 0x8b, 0xde, - 0x7a, 0x2c, 0x90, 0x5b, 0x8f, 0x41, 0x7b, 0x09, 0x52, 0xa0, 0x69, 0x94, 0x4b, 0x8f, 0x39, 0xf7, - 0x54, 0xcc, 0x6f, 0x7f, 0x1c, 0x52, 0x54, 0x2d, 0x27, 0x40, 0x6e, 0xda, 0x37, 0xef, 0xbd, 0x79, - 0xf3, 0x7e, 0xf3, 0xde, 0x1b, 0x0a, 0x5e, 0x20, 0xa8, 0xd5, 0xf6, 0x03, 0xab, 0xb9, 0x8a, 0x51, - 0xd0, 0x45, 0xc1, 0xaa, 0xd5, 0x76, 0x57, 0x2d, 0xa7, 0xe5, 0x7a, 0xf4, 0xdb, 0xb5, 0xd1, 0x6a, - 0xf7, 0xc2, 0x6a, 0x80, 0xde, 0xed, 0x20, 0x4c, 0xcc, 0x00, 0xe1, 0xb6, 0xef, 0x61, 0x54, 0x6b, - 0x07, 0x3e, 0xf1, 0xf5, 0x27, 0x24, 0x6d, 0x8d, 0xd3, 0xd6, 0xac, 0xb6, 0x5b, 0x8b, 0xd3, 0xd6, - 0xba, 0x17, 0xca, 0x4b, 0x0d, 0xdf, 0x6f, 0x34, 0xd1, 0x2a, 0x23, 0xa9, 0x77, 0x76, 0x57, 0x89, - 0xdb, 0x42, 0x98, 0x58, 0xad, 0x36, 0xe7, 0x52, 0xae, 0xa4, 0x11, 0x9c, 0x4e, 0x60, 0x11, 0xd7, - 0xf7, 0xc4, 0xfa, 0xe3, 0x0e, 0x6a, 0x23, 0xcf, 0x41, 0x9e, 0xed, 0x22, 0xbc, 0xda, 0xf0, 0x1b, - 0x3e, 0x83, 0xb3, 0xbf, 0x04, 0x4a, 0x35, 0x3c, 0x04, 0x95, 0x1e, 0x79, 0x9d, 0x16, 0xa6, 0x62, - 0xdb, 0x7e, 0xab, 0x15, 0xb2, 0x39, 0xab, 0xc6, 0x21, 0x16, 0xbe, 0x6b, 0xbe, 0xdb, 0x41, 0x1d, - 0x71, 0xa8, 0xf2, 0x99, 0x04, 0x1e, 0x67, 0x41, 0x11, 0x5b, 0x08, 0x63, 0xab, 0x21, 0xb1, 0x9e, - 0x4c, 0x60, 0x75, 0x51, 0x80, 0x5d, 0x15, 0x5a, 0x72, 0xd3, 0x7b, 0x7e, 0x70, 0x77, 0xb7, 0xe9, - 0xdf, 0xeb, 0xc5, 0x7b, 0x2a, 0x81, 0xe7, 0x59, 0x2d, 0x84, 0xdb, 0x16, 0xd7, 0x7d, 0x12, 0xf1, - 0x5c, 0x02, 0x31, 0x40, 0xed, 0xa6, 0x6b, 0x33, 0x65, 0xf5, 0xa2, 0x3e, 0xa3, 0xb2, 0xac, 0xdd, - 0xec, 0x60, 0x82, 0x82, 0x41, 0x8c, 0x63, 0xd8, 0x6a, 0x4d, 0x9e, 0x1f, 0x8c, 0xca, 0x77, 0xe8, - 0x39, 0x98, 0x0a, 0x97, 0x2a, 0x7f, 0x90, 0xb4, 0x7b, 0x2e, 0x26, 0x7e, 0xb0, 0xdf, 0x2b, 0x6d, - 0x4d, 0x85, 0x3d, 0x40, 0x6d, 0xdf, 0x52, 0xe1, 0x0f, 0xd4, 0xde, 0xf3, 0x2a, 0x8a, 0x36, 0xb5, - 0x33, 0x26, 0xc8, 0xe3, 0x7b, 0x88, 0xa3, 0x9a, 0x2d, 0x44, 0x2c, 0xc7, 0x22, 0x96, 0x20, 0x7d, - 0x6e, 0x08, 0x52, 0x74, 0x1f, 0xd9, 0x1d, 0xba, 0x33, 0x16, 0x44, 0x57, 0x87, 0x20, 0x92, 0xfe, - 0x63, 0xb6, 0x3a, 0xc4, 0xaa, 0x37, 0x91, 0x89, 0x89, 0x45, 0x06, 0xaa, 0x24, 0xc5, 0x80, 0xea, - 0x5b, 0x6c, 0x58, 0x7d, 0x5f, 0x83, 0xb2, 0x81, 0xea, 0x1d, 0xb7, 0xe9, 0x6c, 0x73, 0x76, 0x3b, - 0x94, 0x9b, 0xc1, 0x43, 0x5d, 0x7f, 0x0c, 0x8a, 0xa1, 0x3e, 0x4b, 0xda, 0xb2, 0xb6, 0x52, 0x34, - 0x22, 0x80, 0xbe, 0x01, 0xc5, 0xf0, 0x04, 0xa5, 0xcc, 0xb2, 0xb6, 0x32, 0x7e, 0xf1, 0x5c, 0x28, - 0x00, 0x4b, 0x03, 0xc2, 0x63, 0xba, 0x17, 0x6a, 0x77, 0x84, 0xd4, 0x37, 0x24, 0x81, 0x11, 0xd1, - 0x56, 0x17, 0x61, 0x41, 0x29, 0x04, 0xcf, 0x33, 0xd5, 0x8f, 0x32, 0x50, 0xd9, 0xa2, 0x5c, 0x49, - 0x2f, 0x97, 0xaf, 0x54, 0x50, 0x7d, 0x0b, 0xa6, 0x85, 0x37, 0x9a, 0x75, 0x8b, 0xd8, 0x7b, 0x08, - 0x97, 0xb2, 0xcb, 0xd9, 0x95, 0xf1, 0x8b, 0xcb, 0xfd, 0xd8, 0x5d, 0xb7, 0x88, 0xb5, 0xd6, 0xf4, - 0xeb, 0xc6, 0x94, 0x20, 0x5c, 0xe3, 0x74, 0xfa, 0x1d, 0x98, 0x16, 0x09, 0xc3, 0x14, 0x2b, 0xa5, - 0x1c, 0x93, 0xac, 0x56, 0x53, 0x25, 0x54, 0x81, 0x43, 0x59, 0xde, 0xe6, 0x64, 0x9b, 0x1c, 0x62, - 0x4c, 0x75, 0x13, 0xdf, 0xfa, 0x1c, 0xe4, 0x89, 0x7f, 0x17, 0x79, 0xa5, 0xfc, 0xb2, 0xb6, 0x32, - 0x61, 0xf0, 0x8f, 0xea, 0x25, 0x58, 0xea, 0xab, 0x42, 0xae, 0xe6, 0x88, 0x50, 0x8b, 0x13, 0xfe, - 0x4c, 0x83, 0x85, 0xeb, 0x08, 0xdb, 0x81, 0x5b, 0x47, 0x5f, 0xa3, 0x8b, 0xfc, 0x25, 0x03, 0x8f, - 0xa9, 0xc5, 0x10, 0xd2, 0x9f, 0x86, 0x02, 0xde, 0xb3, 0x02, 0xc7, 0x74, 0x1d, 0x21, 0xc6, 0x18, - 0xfb, 0xde, 0x72, 0xf4, 0xc7, 0x61, 0x42, 0x5a, 0xcd, 0x72, 0x9c, 0x80, 0xc9, 0x51, 0x34, 0xc6, - 0x05, 0xec, 0x9a, 0xe3, 0x04, 0xfa, 0x1e, 0x9c, 0xb0, 0x2d, 0x7b, 0x0f, 0x25, 0x83, 0xaa, 0x94, - 0x65, 0x12, 0x5f, 0x56, 0x5a, 0x24, 0x16, 0x55, 0x71, 0xe9, 0x13, 0xc2, 0xcd, 0x32, 0xa6, 0x71, - 0x90, 0xee, 0xc1, 0x29, 0x9a, 0x25, 0xea, 0x16, 0x4e, 0x6f, 0x96, 0x7b, 0xc8, 0xcd, 0xe6, 0x24, - 0xdf, 0x38, 0xb4, 0xfa, 0x77, 0x0d, 0xca, 0x52, 0x71, 0xc2, 0x45, 0x36, 0x7d, 0x4c, 0xa4, 0xf9, - 0xa8, 0x6e, 0x7c, 0x4c, 0x98, 0x62, 0x10, 0xc6, 0x42, 0x75, 0xe3, 0x14, 0x76, 0x8d, 0x83, 0x12, - 0x9a, 0xa5, 0xaa, 0xcb, 0x47, 0x9a, 0x4d, 0x18, 0x3f, 0x9b, 0x36, 0xfe, 0xf7, 0x41, 0x0f, 0x93, - 0x55, 0xe4, 0x05, 0xb9, 0xa3, 0x7a, 0xc1, 0xec, 0xbd, 0x34, 0xa8, 0xfa, 0xaf, 0x98, 0x53, 0x26, - 0x0e, 0x25, 0x9c, 0xe1, 0x09, 0x98, 0x64, 0x22, 0x62, 0xd3, 0xeb, 0xb4, 0xea, 0x28, 0x60, 0xc7, - 0xca, 0x1b, 0x13, 0x1c, 0xf8, 0x2a, 0x83, 0xe9, 0x0b, 0x50, 0x94, 0xe7, 0xc2, 0xa5, 0xcc, 0x72, - 0x76, 0x25, 0x6f, 0x14, 0xc4, 0xc1, 0xb0, 0xfe, 0x36, 0x4c, 0x87, 0x07, 0x31, 0x99, 0x15, 0x85, - 0x33, 0x7c, 0x5b, 0x69, 0x9f, 0x10, 0x97, 0x1e, 0xe1, 0x55, 0xf9, 0xb1, 0x4e, 0xe9, 0xb6, 0xbc, - 0x5d, 0xdf, 0x98, 0xf2, 0x12, 0x30, 0xbd, 0x04, 0x63, 0x52, 0xe3, 0x79, 0xee, 0xac, 0xe2, 0xf3, - 0x95, 0x5c, 0x21, 0x37, 0x93, 0xaf, 0xd6, 0x60, 0x76, 0xbd, 0xe9, 0x63, 0xb4, 0x43, 0xe5, 0x91, - 0xb6, 0x4a, 0xbb, 0x78, 0x64, 0x88, 0xea, 0x1c, 0xe8, 0x71, 0x7c, 0x91, 0x38, 0x9f, 0x81, 0xe9, - 0x0d, 0x44, 0x86, 0xe5, 0xf1, 0x0e, 0xcc, 0x44, 0xd8, 0x42, 0x91, 0x37, 0x01, 0x04, 0xba, 0xb7, - 0xeb, 0x33, 0x82, 0xf1, 0x8b, 0xcf, 0x0e, 0xe3, 0xa1, 0x8c, 0x0d, 0x3b, 0x3a, 0x57, 0x32, 0xfd, - 0xb3, 0xfa, 0xab, 0x0c, 0xcc, 0xdf, 0x74, 0x31, 0x11, 0x26, 0xbb, 0x45, 0x2f, 0xa2, 0xc3, 0x05, - 0xd3, 0x5f, 0x86, 0x82, 0x6d, 0x11, 0xd4, 0xa0, 0x39, 0x92, 0x3a, 0xe0, 0xd4, 0xc5, 0xf3, 0x4a, - 0x11, 0x58, 0x45, 0x41, 0x37, 0xa7, 0x8c, 0xd7, 0x05, 0x85, 0x11, 0xd2, 0xea, 0x9b, 0x00, 0xac, - 0xd0, 0x0b, 0x2c, 0xaf, 0x21, 0xcd, 0x79, 0xee, 0xb0, 0x6c, 0x4b, 0x79, 0x19, 0x94, 0xc0, 0x28, - 0x12, 0xf9, 0xa7, 0xbe, 0x08, 0xc0, 0xf2, 0xbf, 0x89, 0xdd, 0xf7, 0x78, 0xe0, 0xe6, 0x8d, 0x22, - 0x83, 0xec, 0xb8, 0xef, 0x21, 0xfd, 0x2c, 0x4c, 0x7b, 0xe8, 0x3e, 0x31, 0xdb, 0x56, 0x03, 0x99, - 0xf1, 0x64, 0x3c, 0x49, 0xc1, 0xaf, 0x5b, 0x0d, 0x74, 0x8b, 0xe5, 0xd6, 0xf7, 0x35, 0x28, 0xf5, - 0xea, 0x43, 0xa8, 0xfe, 0x2a, 0xe4, 0xd9, 0x4d, 0x5d, 0xd2, 0xd8, 0x0d, 0xa3, 0x16, 0x34, 0x55, - 0x67, 0x73, 0x69, 0x39, 0x9d, 0x4a, 0x8a, 0x8c, 0x4a, 0x8a, 0x0f, 0x32, 0x90, 0xa3, 0x74, 0x34, - 0x17, 0x44, 0x3e, 0x1f, 0xa6, 0xd1, 0xf1, 0x10, 0xb6, 0xe5, 0xe8, 0x4b, 0x30, 0x1e, 0x86, 0xb4, - 0x48, 0x07, 0x45, 0x03, 0x24, 0x68, 0xcb, 0xd1, 0x4f, 0xc2, 0x68, 0xd0, 0xf1, 0xe8, 0x1a, 0x4f, - 0x07, 0xf9, 0xa0, 0xe3, 0x6d, 0x39, 0xfa, 0x3c, 0x8c, 0x31, 0xd5, 0xbb, 0x0e, 0xd3, 0x56, 0xd6, - 0x18, 0xa5, 0x9f, 0x5b, 0x8e, 0xbe, 0x0e, 0x4c, 0xad, 0x26, 0xd9, 0x6f, 0x23, 0xa6, 0xa4, 0xa9, - 0x8b, 0x67, 0x0f, 0x37, 0xee, 0xad, 0xfd, 0x36, 0x32, 0x0a, 0x44, 0xfc, 0xa5, 0x5f, 0x81, 0xe2, - 0xae, 0x1b, 0x20, 0x93, 0x36, 0x15, 0xa5, 0x51, 0x66, 0xd7, 0x72, 0x8d, 0x37, 0x14, 0x35, 0xd9, - 0x50, 0xd4, 0x6e, 0xc9, 0x8e, 0x63, 0x2d, 0xf7, 0xe0, 0xb3, 0x25, 0xcd, 0x28, 0x50, 0x12, 0x0a, - 0xa4, 0xc1, 0x28, 0xee, 0xd0, 0xd2, 0x18, 0x13, 0x4e, 0x7e, 0x56, 0x3f, 0xd5, 0x60, 0xd6, 0x40, - 0x2d, 0xbf, 0x8b, 0x98, 0x62, 0xbf, 0x3a, 0x57, 0x8d, 0xe9, 0x2b, 0x9b, 0xd0, 0xd7, 0x16, 0x4c, - 0x77, 0x5d, 0xec, 0xd6, 0xdd, 0xa6, 0x4b, 0xf6, 0xf9, 0x81, 0x73, 0x43, 0x1e, 0x78, 0x2a, 0x22, - 0xa4, 0x4b, 0x34, 0x67, 0xc4, 0xcf, 0x26, 0x72, 0xc6, 0x6f, 0xb2, 0xf0, 0xd4, 0x06, 0x52, 0x94, - 0x09, 0xd6, 0x3d, 0xe1, 0xa6, 0xb7, 0x2f, 0xc6, 0x2e, 0x8f, 0x84, 0xc3, 0x14, 0x7b, 0x1d, 0xe6, - 0xd8, 0x4a, 0xaf, 0x33, 0x30, 0x85, 0x89, 0x15, 0x10, 0x13, 0x75, 0x91, 0x47, 0x22, 0xc5, 0x4c, - 0x30, 0xe8, 0x0d, 0x0a, 0xdc, 0x72, 0xf4, 0x1a, 0x9c, 0x88, 0x63, 0x49, 0xb3, 0x72, 0x9f, 0x9b, - 0x8d, 0x50, 0x45, 0x0d, 0xa5, 0x2f, 0xc3, 0x04, 0xf2, 0x9c, 0x88, 0x67, 0x9e, 0x21, 0x02, 0xf2, - 0x1c, 0xc9, 0xf1, 0x3c, 0xcc, 0x46, 0x18, 0x92, 0xdf, 0x28, 0x43, 0x9b, 0x96, 0x68, 0x92, 0xdb, - 0x79, 0x98, 0x6d, 0x59, 0xf7, 0xdd, 0x56, 0xa7, 0xc5, 0x83, 0x8e, 0x65, 0x87, 0x31, 0xe6, 0x21, - 0xd3, 0x62, 0x81, 0x86, 0x5d, 0xbf, 0x1c, 0x51, 0x50, 0x44, 0xe7, 0x2b, 0xb9, 0x82, 0x36, 0x93, - 0xa9, 0xfe, 0x2e, 0x03, 0x2b, 0x87, 0x5b, 0x45, 0x64, 0x0e, 0x05, 0x6b, 0x4d, 0xc1, 0x5a, 0x55, - 0xcd, 0x66, 0x8e, 0xaf, 0x9a, 0xcd, 0x1e, 0x4b, 0x35, 0xbb, 0x02, 0x33, 0x52, 0x46, 0xcf, 0x77, - 0x10, 0xbb, 0xab, 0x73, 0xcb, 0xd9, 0x95, 0x6c, 0x28, 0xc2, 0xab, 0xbe, 0x83, 0xb6, 0x1c, 0x5c, - 0x7d, 0xa0, 0xc1, 0xe2, 0x06, 0x22, 0x46, 0xd4, 0xcf, 0x6d, 0xf3, 0x5e, 0x2e, 0xbc, 0x62, 0x6e, - 0xc2, 0x28, 0xd3, 0x86, 0x4c, 0xa9, 0xea, 0xab, 0x3c, 0xd6, 0x10, 0x52, 0xf9, 0x62, 0xfc, 0x98, - 0xd6, 0x0c, 0xc1, 0x83, 0x3a, 0xbf, 0x6c, 0xfd, 0xa8, 0xc3, 0xcb, 0xaa, 0x52, 0xc0, 0x68, 0x0d, - 0x50, 0xfd, 0x30, 0x03, 0x95, 0x7e, 0x22, 0x09, 0x5b, 0xfd, 0x10, 0xa6, 0x78, 0x2e, 0x11, 0x8d, - 0xa7, 0x94, 0xed, 0xf6, 0x50, 0xe9, 0x7e, 0x30, 0x73, 0x7e, 0x09, 0x4b, 0xe8, 0x0d, 0x8f, 0x04, - 0xfb, 0x06, 0xaf, 0x8b, 0x24, 0xac, 0xbc, 0x0f, 0x7a, 0x2f, 0x92, 0x3e, 0x03, 0xd9, 0xbb, 0x68, - 0x5f, 0xe4, 0x36, 0xfa, 0xa7, 0xbe, 0x0d, 0xf9, 0xae, 0xd5, 0xec, 0x20, 0x11, 0xc2, 0x97, 0x8e, - 0xa8, 0xb9, 0x50, 0x32, 0xce, 0xe5, 0x85, 0xcc, 0x65, 0xad, 0xfa, 0x91, 0x06, 0x67, 0x37, 0x10, - 0x09, 0x8b, 0xa5, 0x01, 0x86, 0x7b, 0x1e, 0x4e, 0x37, 0x2d, 0x36, 0x79, 0x22, 0x81, 0x8b, 0xba, - 0x28, 0xd4, 0x96, 0xcc, 0xc0, 0x59, 0xe3, 0x14, 0x45, 0x30, 0xe4, 0xba, 0x60, 0xb0, 0xe5, 0x84, - 0xa4, 0xed, 0xc0, 0xb7, 0x11, 0xc6, 0x49, 0xd2, 0x4c, 0x44, 0xfa, 0xba, 0x5c, 0x8f, 0x48, 0xd3, - 0x06, 0xce, 0xf6, 0x1a, 0xf8, 0x47, 0x2c, 0x57, 0x0e, 0x3e, 0x82, 0x30, 0xf4, 0x0e, 0x14, 0x62, - 0x26, 0x7e, 0x28, 0x25, 0x86, 0x8c, 0xaa, 0xef, 0xc1, 0xf2, 0x06, 0x22, 0xd7, 0x6f, 0xbe, 0x31, - 0x40, 0x79, 0xb7, 0x45, 0xd5, 0x43, 0x2b, 0x38, 0xe9, 0x5d, 0x47, 0xdd, 0x9a, 0xde, 0x10, 0xbc, - 0x98, 0x23, 0xe2, 0x2f, 0x5c, 0xfd, 0xb9, 0x06, 0x8f, 0x0f, 0xd8, 0x5c, 0x1c, 0xfb, 0x1d, 0x98, - 0x8d, 0xb1, 0x35, 0xe3, 0x15, 0xcd, 0x73, 0xff, 0x87, 0x10, 0xc6, 0x4c, 0x90, 0x04, 0xe0, 0xea, - 0x3f, 0x34, 0x98, 0x33, 0x90, 0xd5, 0x6e, 0x37, 0xf7, 0x59, 0x32, 0xc6, 0xfd, 0x6e, 0xa7, 0x5c, - 0xef, 0xed, 0xa4, 0xee, 0x50, 0x32, 0x0f, 0xdf, 0xa1, 0xe8, 0x97, 0x61, 0x94, 0x5d, 0x19, 0x58, - 0xe4, 0xc1, 0xc3, 0x53, 0xaa, 0xc0, 0x17, 0x09, 0x7f, 0x1e, 0x4e, 0xa6, 0x0e, 0x25, 0xee, 0xe7, - 0xff, 0x66, 0xa0, 0x7c, 0xcd, 0x71, 0x76, 0x90, 0x15, 0xd8, 0x7b, 0xd7, 0x08, 0x09, 0xdc, 0x7a, - 0x87, 0x44, 0xd6, 0xfe, 0xa9, 0x06, 0xb3, 0x98, 0xad, 0x99, 0x56, 0xb8, 0x28, 0x14, 0xfe, 0xe6, - 0x50, 0x39, 0xa5, 0x3f, 0xf3, 0x5a, 0x1a, 0xce, 0x53, 0xca, 0x0c, 0x4e, 0x81, 0x69, 0x79, 0xec, - 0x7a, 0x0e, 0xba, 0x1f, 0x4f, 0x8c, 0x45, 0x06, 0xa1, 0xa1, 0xa2, 0x3f, 0x03, 0x3a, 0xbe, 0xeb, - 0xb6, 0x4d, 0x6c, 0xef, 0xa1, 0x96, 0x65, 0x76, 0xda, 0x8e, 0xec, 0xb5, 0x0b, 0xc6, 0x0c, 0x5d, - 0xd9, 0x61, 0x0b, 0x6f, 0x32, 0x78, 0xb2, 0xc7, 0xcc, 0xa5, 0x7a, 0xcc, 0x72, 0x13, 0x4e, 0x2a, - 0xa5, 0x8a, 0xe7, 0xb0, 0x22, 0xcf, 0x61, 0x57, 0xe2, 0x39, 0x6c, 0xea, 0xe2, 0x53, 0x49, 0x8b, - 0x84, 0x15, 0xd9, 0x16, 0x95, 0x13, 0x39, 0xb7, 0x29, 0x2a, 0xab, 0x33, 0x63, 0x39, 0x6b, 0x11, - 0x16, 0x94, 0xea, 0x11, 0xb6, 0xf9, 0xa5, 0x06, 0x8b, 0xbc, 0xa4, 0xea, 0x67, 0x9e, 0xa7, 0xfb, - 0x59, 0xa7, 0x78, 0x74, 0x35, 0x0e, 0x6c, 0xbe, 0xab, 0xcb, 0x50, 0xe9, 0x27, 0x8a, 0x90, 0xf6, - 0x07, 0x50, 0xa6, 0xfd, 0x5e, 0x1f, 0x49, 0x93, 0x9b, 0x6b, 0x03, 0x37, 0xcf, 0xa4, 0x37, 0xff, - 0x70, 0x14, 0x16, 0x94, 0xbc, 0x45, 0x56, 0x78, 0x5f, 0x83, 0x59, 0xbb, 0x83, 0x89, 0xdf, 0xea, - 0xf5, 0xd2, 0xa1, 0x6f, 0xbe, 0x7e, 0xdc, 0x6b, 0xeb, 0x8c, 0x73, 0x8f, 0x9b, 0xda, 0x29, 0x30, - 0x93, 0x02, 0xef, 0x63, 0x82, 0x12, 0x52, 0x64, 0x8e, 0x49, 0x8a, 0x1d, 0xc6, 0xb9, 0x37, 0x58, - 0x52, 0x60, 0xbd, 0x01, 0x63, 0x2d, 0xab, 0xdd, 0x76, 0xbd, 0x86, 0x98, 0x25, 0x6e, 0x3f, 0xf4, - 0xd6, 0xdb, 0x9c, 0x1f, 0xdf, 0x51, 0x72, 0xd7, 0x3d, 0x58, 0xb0, 0x1c, 0xc7, 0xec, 0x4d, 0x78, - 0xbc, 0xb9, 0xe7, 0x6d, 0xc4, 0x6a, 0x32, 0x2a, 0x24, 0xb2, 0x32, 0xef, 0xb1, 0x1b, 0xa1, 0x64, - 0x39, 0x8e, 0x72, 0x85, 0x86, 0xa6, 0xd2, 0x12, 0x8f, 0x24, 0x34, 0x59, 0x22, 0x50, 0x69, 0xfc, - 0xd1, 0xec, 0xf6, 0x02, 0x4c, 0xc4, 0x95, 0xac, 0xd8, 0x64, 0x2e, 0xbe, 0x49, 0x31, 0x9e, 0x44, - 0x5e, 0x84, 0x53, 0x72, 0x76, 0xb5, 0xce, 0x6b, 0x89, 0xd8, 0x8d, 0x95, 0xa8, 0x38, 0xb4, 0xde, - 0x8a, 0xe3, 0xaf, 0x63, 0x30, 0xdf, 0x43, 0x2d, 0xa2, 0xea, 0xc7, 0x30, 0x8b, 0x3b, 0xed, 0xb6, - 0x1f, 0x10, 0xe4, 0x98, 0x76, 0xd3, 0x65, 0xd7, 0x0f, 0x0f, 0x2a, 0x63, 0x28, 0x9f, 0xea, 0xc3, - 0xb8, 0xb6, 0x23, 0xb9, 0xae, 0x73, 0xa6, 0xd2, 0x95, 0x53, 0x60, 0xfd, 0x49, 0x98, 0xe2, 0xdc, - 0xc3, 0x46, 0x89, 0x1f, 0x7e, 0x92, 0x43, 0x65, 0x9b, 0x74, 0x07, 0xa6, 0x5b, 0xa8, 0x55, 0x47, - 0x01, 0xde, 0x73, 0xdb, 0xdc, 0xf9, 0x06, 0x35, 0x0b, 0xf2, 0x2d, 0xa9, 0x7b, 0xa1, 0xb6, 0x1d, - 0x92, 0xf1, 0xa9, 0x5a, 0x2b, 0xf1, 0x4d, 0x73, 0x96, 0xd4, 0x5f, 0x78, 0xdf, 0x17, 0x05, 0x44, - 0x51, 0xd0, 0xe5, 0x7b, 0xd4, 0x4b, 0xfb, 0x47, 0xd9, 0x6e, 0xf0, 0xb2, 0xdc, 0xf6, 0x3b, 0x1e, - 0x61, 0xfd, 0x5e, 0xde, 0x98, 0x15, 0x4b, 0xac, 0x62, 0x5e, 0xa7, 0x0b, 0x34, 0x9f, 0xc7, 0x06, - 0x5f, 0x26, 0x5d, 0xe6, 0x1d, 0x5f, 0xd1, 0x98, 0x89, 0x2d, 0xec, 0x50, 0xb8, 0x7e, 0x0e, 0x66, - 0x62, 0xbd, 0x3b, 0xc7, 0x2d, 0x30, 0xdc, 0x58, 0x4f, 0xcf, 0x51, 0x37, 0x60, 0x42, 0xf6, 0x53, - 0x4c, 0x3f, 0x45, 0xa6, 0x9f, 0x33, 0x49, 0x4f, 0x15, 0x18, 0xb1, 0x2e, 0x8a, 0x69, 0x65, 0xbc, - 0x1b, 0x7d, 0xe8, 0x2f, 0x41, 0x79, 0xd7, 0x72, 0x9b, 0x7e, 0xcc, 0x28, 0xa6, 0xeb, 0xd9, 0x01, - 0x6a, 0x21, 0x8f, 0x94, 0x80, 0x15, 0xc0, 0x25, 0x89, 0x11, 0x72, 0x11, 0xeb, 0xfa, 0x65, 0x28, - 0xb9, 0x9e, 0x4b, 0x5c, 0xab, 0x69, 0xa6, 0xb9, 0x94, 0xc6, 0x79, 0xf1, 0x2c, 0xd6, 0x5f, 0x4e, - 0xb2, 0xd0, 0xaf, 0xc0, 0x82, 0x8b, 0xcd, 0x46, 0xd3, 0xaf, 0x5b, 0x4d, 0x33, 0x2a, 0xc3, 0x90, - 0x67, 0xd5, 0x9b, 0xc8, 0x29, 0x4d, 0xb0, 0xcb, 0xbe, 0xe4, 0xe2, 0x0d, 0x86, 0x11, 0x56, 0xd0, - 0x37, 0xf8, 0xba, 0xfe, 0x16, 0xe4, 0x88, 0xd5, 0xc0, 0xa5, 0x49, 0xe6, 0xbd, 0x2f, 0x3f, 0x94, - 0xf7, 0xde, 0xb2, 0x1a, 0xc2, 0x63, 0x19, 0xcf, 0xf2, 0x3a, 0x9c, 0x54, 0x3a, 0xf4, 0x51, 0x82, - 0xb8, 0x7c, 0x09, 0x8a, 0x21, 0xdf, 0x23, 0x45, 0xff, 0x5b, 0x70, 0xe2, 0xa6, 0x8b, 0x89, 0x10, - 0x32, 0xbc, 0x6e, 0x17, 0xa0, 0x18, 0x8d, 0x0c, 0x78, 0xe3, 0x55, 0x68, 0x0f, 0x98, 0x15, 0x28, - 0x27, 0x79, 0xbf, 0xd6, 0x60, 0x2e, 0xc9, 0x5c, 0x64, 0x86, 0xd7, 0xa0, 0x20, 0xbc, 0x7c, 0x70, - 0xf1, 0x9d, 0x1a, 0xe2, 0x0a, 0x3e, 0xdb, 0xe2, 0x65, 0xd3, 0x08, 0x99, 0x0c, 0x2d, 0xd1, 0x6f, - 0x35, 0x58, 0xba, 0xe6, 0x38, 0xaf, 0x05, 0xbc, 0x98, 0xa3, 0x15, 0x09, 0x49, 0x67, 0xbd, 0x73, - 0x30, 0xb3, 0x1b, 0xf8, 0x1e, 0x41, 0x9e, 0x93, 0x7a, 0x86, 0x98, 0x96, 0x70, 0xf9, 0x14, 0xb1, - 0x01, 0xcb, 0xdc, 0x83, 0xcc, 0x80, 0x71, 0x32, 0x65, 0x3c, 0xdb, 0xbe, 0xe7, 0x21, 0x3b, 0xac, - 0xde, 0x0b, 0xc6, 0x22, 0xc7, 0x4b, 0x6c, 0xb8, 0x1e, 0x22, 0x55, 0xab, 0xb0, 0xdc, 0x5f, 0x2c, - 0x51, 0x1f, 0x5d, 0x85, 0x32, 0xaf, 0xa0, 0x94, 0x52, 0x0f, 0x91, 0xab, 0xd9, 0xb3, 0xa6, 0x82, - 0x41, 0x34, 0x69, 0x3b, 0x1d, 0xb3, 0x96, 0xc8, 0x6d, 0x92, 0xff, 0x0e, 0x9c, 0x64, 0x8d, 0xeb, - 0x1e, 0xb2, 0x02, 0x52, 0x47, 0x16, 0x31, 0xef, 0xb9, 0x64, 0xcf, 0xf5, 0x44, 0xf3, 0x78, 0xba, - 0x67, 0xdc, 0x77, 0x5d, 0xfc, 0x60, 0x62, 0x2d, 0xf7, 0xc1, 0x67, 0x4b, 0x9a, 0x71, 0x82, 0x52, - 0x6f, 0x4a, 0xe2, 0x3b, 0x8c, 0x56, 0x5f, 0x82, 0xf1, 0xa0, 0x6d, 0x87, 0x5a, 0x16, 0xe3, 0xdb, - 0xa0, 0x6d, 0x4b, 0x05, 0xcf, 0xc3, 0x18, 0x7b, 0x0e, 0x0a, 0xe7, 0xb7, 0xa3, 0xf4, 0x93, 0xcd, - 0x69, 0x73, 0x81, 0xdf, 0xe4, 0x05, 0xf8, 0x54, 0xbc, 0x4a, 0x50, 0x0d, 0x35, 0x13, 0x27, 0x32, - 0xfc, 0x26, 0x32, 0x18, 0xb1, 0xfe, 0x36, 0x94, 0x31, 0xc2, 0x2c, 0x07, 0xb1, 0x51, 0x1c, 0x72, - 0x4c, 0x6b, 0x97, 0x6a, 0x90, 0xcd, 0x31, 0xf3, 0x43, 0xce, 0x31, 0xe7, 0x05, 0x8f, 0x1d, 0xce, - 0xe2, 0x1a, 0xe5, 0xc0, 0xe6, 0xb8, 0x89, 0x18, 0x1a, 0x3d, 0x3c, 0x86, 0xc6, 0x54, 0x1e, 0xfb, - 0xa1, 0x06, 0x65, 0x95, 0x55, 0x44, 0x24, 0xdd, 0x82, 0x29, 0xcb, 0x26, 0x6e, 0x17, 0x99, 0xe2, - 0xee, 0x11, 0xf1, 0xf4, 0xec, 0x61, 0x57, 0x57, 0x52, 0x27, 0x93, 0x9c, 0x89, 0xe0, 0x3e, 0x74, - 0x38, 0xfd, 0x29, 0x03, 0x27, 0x79, 0xcf, 0x9d, 0xee, 0xf2, 0x6f, 0x40, 0x8e, 0x8d, 0xd0, 0x35, - 0x66, 0x9f, 0x0b, 0x83, 0xed, 0x73, 0x1d, 0x59, 0xce, 0x4d, 0x44, 0x08, 0x0a, 0xde, 0xe8, 0x20, - 0x51, 0xdc, 0x30, 0xf2, 0x41, 0x6f, 0x7d, 0xf4, 0x72, 0xf7, 0x3b, 0x81, 0x1d, 0x06, 0x9d, 0xf0, - 0x90, 0x49, 0x0e, 0x15, 0xe7, 0xd3, 0x2f, 0xd1, 0x2b, 0x83, 0x62, 0x50, 0x1d, 0xd1, 0x90, 0x8e, - 0xcd, 0x5b, 0xf8, 0x18, 0xf6, 0x64, 0xb8, 0x7e, 0xc3, 0x8b, 0x8d, 0x5b, 0x94, 0xc3, 0xd3, 0xfc, - 0xd0, 0xc3, 0xd3, 0x51, 0x95, 0xbe, 0x3e, 0xc9, 0xc0, 0xa9, 0xb4, 0xbe, 0x84, 0x21, 0x8f, 0x49, - 0x61, 0xca, 0xf9, 0x46, 0xe6, 0x18, 0xe7, 0x1b, 0xaa, 0xb3, 0x66, 0x55, 0xd3, 0xdc, 0x16, 0x9c, - 0xea, 0x91, 0x44, 0x56, 0xf6, 0x0f, 0x35, 0xf3, 0x99, 0x4b, 0x8b, 0xc4, 0xde, 0xf2, 0xfe, 0xa9, - 0xc1, 0xfc, 0xeb, 0x9d, 0xa0, 0x81, 0xbe, 0x89, 0xce, 0x58, 0x2d, 0x43, 0xa9, 0xf7, 0x70, 0x22, - 0x6f, 0xff, 0x39, 0x03, 0xf3, 0xdb, 0xe8, 0x1b, 0x7a, 0xf2, 0x47, 0x12, 0x86, 0x6b, 0x50, 0xea, - 0x55, 0xd8, 0xd1, 0x1e, 0x2b, 0x68, 0x6d, 0xb3, 0x60, 0xa0, 0xdd, 0x00, 0xe1, 0x3d, 0xd9, 0x6e, - 0x26, 0xde, 0x8f, 0xd3, 0xd3, 0xbe, 0xec, 0xa3, 0x7b, 0x8b, 0x12, 0x23, 0xba, 0x0a, 0x3c, 0xa6, - 0x16, 0x28, 0xf2, 0x93, 0x45, 0x03, 0x61, 0xe4, 0x39, 0xa9, 0xa8, 0xea, 0x2b, 0xf3, 0x31, 0x3e, - 0xb8, 0x3e, 0x09, 0x53, 0xc9, 0x12, 0x49, 0xb4, 0x43, 0x93, 0x41, 0xbc, 0x16, 0x51, 0xbc, 0xaa, - 0xe5, 0x15, 0xaf, 0x6a, 0x4f, 0xc0, 0x24, 0xc7, 0x4a, 0xbe, 0x7f, 0x71, 0xa4, 0x7e, 0x4f, 0x69, - 0x63, 0x3d, 0x4f, 0x69, 0x4b, 0x30, 0x4e, 0x31, 0x24, 0x93, 0x42, 0x88, 0x20, 0x58, 0xf0, 0x99, - 0x95, 0x5a, 0x61, 0x42, 0xa7, 0x7f, 0xcc, 0x40, 0x69, 0x03, 0x11, 0x0a, 0xe4, 0x31, 0x13, 0x57, - 0xe7, 0xe0, 0x9f, 0x22, 0x2d, 0x8a, 0x39, 0x38, 0xfb, 0x99, 0xa7, 0x1c, 0x59, 0x11, 0xc9, 0x48, - 0xbf, 0x09, 0xd3, 0xd1, 0x32, 0x7f, 0x8e, 0xce, 0xb2, 0x20, 0x3e, 0xd3, 0x67, 0x3c, 0x10, 0xc9, - 0x40, 0xe3, 0x76, 0x92, 0xc4, 0x3f, 0xf5, 0x0a, 0x8c, 0xb7, 0x5c, 0x9e, 0x84, 0xa3, 0x88, 0x2b, - 0xb6, 0x5c, 0x9e, 0x55, 0x1d, 0xb6, 0x6e, 0xdd, 0x0f, 0xd7, 0xf3, 0x62, 0xdd, 0xba, 0x2f, 0xd6, - 0x93, 0x3f, 0x30, 0x18, 0x1d, 0xe2, 0x07, 0x06, 0xca, 0x62, 0xe6, 0x81, 0x06, 0xa7, 0x15, 0xea, - 0x12, 0xa1, 0xf7, 0xbd, 0xe4, 0x2f, 0x0c, 0xbe, 0x33, 0x4c, 0x4b, 0x70, 0xad, 0xd9, 0xf4, 0x6d, - 0x8b, 0x20, 0x27, 0xbc, 0x1e, 0x8e, 0xf8, 0x6b, 0x83, 0x5f, 0x68, 0x50, 0xb9, 0x8e, 0x9a, 0x88, - 0xa0, 0xaf, 0xf9, 0xc7, 0x7c, 0xd5, 0x2b, 0xb0, 0xd4, 0x57, 0x10, 0xa1, 0xa1, 0x32, 0x14, 0xee, - 0x59, 0x81, 0xe7, 0x7a, 0x0d, 0x39, 0xa5, 0x0d, 0xbf, 0xab, 0x7f, 0xd0, 0x60, 0x65, 0x87, 0x04, - 0xc8, 0x6a, 0x49, 0xfa, 0x01, 0x8f, 0x30, 0x6d, 0x38, 0x85, 0xf7, 0x3d, 0xdb, 0x8c, 0xdf, 0xd0, - 0xfc, 0x57, 0x5f, 0xda, 0x80, 0x5f, 0x7d, 0xa5, 0x2e, 0xe7, 0x9d, 0x7d, 0xcf, 0x8e, 0xed, 0xc1, - 0x7e, 0xdf, 0xb5, 0x39, 0x62, 0xcc, 0x61, 0x05, 0x7c, 0x6d, 0x02, 0x20, 0x1a, 0x6a, 0x56, 0x3f, - 0xd0, 0xe0, 0xdc, 0x10, 0xc2, 0x8a, 0x63, 0xbf, 0xdd, 0xf3, 0x56, 0x75, 0x75, 0x18, 0xf9, 0x06, - 0xb0, 0xde, 0x1c, 0x89, 0x5e, 0xad, 0x52, 0xa2, 0xbd, 0x09, 0x27, 0x92, 0x6f, 0x68, 0x5c, 0x63, - 0x95, 0x1e, 0x27, 0xd8, 0x1c, 0x89, 0xbb, 0xc1, 0x0c, 0x64, 0x64, 0x3e, 0xdc, 0x1c, 0x31, 0x32, - 0xae, 0x93, 0x62, 0xfb, 0x69, 0x16, 0xe6, 0x92, 0x7c, 0xc5, 0xe1, 0x5e, 0x82, 0x5c, 0x6c, 0xe4, - 0xb4, 0x92, 0x74, 0x1d, 0xf5, 0xef, 0xb8, 0x98, 0x9f, 0x33, 0x2a, 0x7d, 0x0d, 0x46, 0x6d, 0xdf, - 0xdb, 0x75, 0x1b, 0x62, 0x5e, 0x7a, 0x7e, 0x18, 0xfa, 0x75, 0x46, 0x61, 0x08, 0x4a, 0x7d, 0x17, - 0xf4, 0xb8, 0x1f, 0x08, 0x7e, 0xf9, 0xf4, 0xa3, 0xa0, 0x42, 0xc3, 0xaa, 0x97, 0x46, 0xc1, 0x3c, - 0x5e, 0x86, 0x72, 0x10, 0xbd, 0x03, 0x38, 0xef, 0x54, 0xde, 0x9e, 0xe4, 0x50, 0x99, 0xb8, 0x69, - 0xff, 0x9d, 0x1e, 0xee, 0xf0, 0xe4, 0x3d, 0x9d, 0x1a, 0x0c, 0xe9, 0xb7, 0x63, 0xa8, 0xf2, 0x9d, - 0xbf, 0xc0, 0x92, 0xc7, 0xd3, 0x03, 0xe5, 0x96, 0xd3, 0x21, 0xea, 0x9a, 0x1d, 0x1c, 0xf1, 0x95, - 0xaf, 0xfc, 0x35, 0x38, 0xa1, 0x98, 0x16, 0xb1, 0xa9, 0x57, 0xc1, 0x98, 0xed, 0x99, 0x12, 0xad, - 0x35, 0x3f, 0xfe, 0xbc, 0x32, 0xf2, 0xc9, 0xe7, 0x95, 0x91, 0x2f, 0x3f, 0xaf, 0x68, 0x3f, 0x39, - 0xa8, 0x68, 0xbf, 0x3f, 0xa8, 0x68, 0x7f, 0x3b, 0xa8, 0x68, 0x1f, 0x1f, 0x54, 0xb4, 0x7f, 0x1f, - 0x54, 0xb4, 0xff, 0x1c, 0x54, 0x46, 0xbe, 0x3c, 0xa8, 0x68, 0x0f, 0xbe, 0xa8, 0x8c, 0x7c, 0xfc, - 0x45, 0x65, 0xe4, 0x93, 0x2f, 0x2a, 0x23, 0x6f, 0x7d, 0xb7, 0xe1, 0x47, 0x52, 0xba, 0xfe, 0x80, - 0xff, 0x75, 0x78, 0x31, 0xfe, 0x5d, 0x1f, 0x65, 0xad, 0xe8, 0x73, 0xff, 0x0b, 0x00, 0x00, 0xff, - 0xff, 0xb6, 0x97, 0xeb, 0x33, 0x26, 0x31, 0x00, 0x00, + // 3528 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3b, 0x4d, 0x6c, 0x1b, 0xd7, + 0xd1, 0x5a, 0xfe, 0x48, 0xe4, 0x48, 0xa2, 0xa4, 0xb5, 0x6c, 0xd1, 0x54, 0x44, 0x29, 0x8c, 0xed, + 0xc8, 0x4e, 0x42, 0xc5, 0x4a, 0xbe, 0xcf, 0xce, 0x8f, 0x61, 0x58, 0x92, 0x23, 0x29, 0x96, 0x12, + 0x67, 0xe5, 0xd8, 0xdf, 0x17, 0x20, 0xdf, 0x66, 0xc9, 0x7d, 0xa2, 0x16, 0x26, 0x77, 0xe9, 0x7d, + 0x8f, 0xb2, 0x15, 0xe0, 0x6b, 0x8b, 0xa6, 0x45, 0xd1, 0x43, 0x51, 0x03, 0x45, 0x81, 0x20, 0xa7, + 0x5e, 0x5a, 0x14, 0x45, 0x8b, 0xdc, 0x7a, 0x2c, 0x90, 0x5b, 0x8f, 0x41, 0x7b, 0x09, 0x52, 0xa0, + 0x69, 0x9c, 0x4b, 0x8f, 0x39, 0xf7, 0x54, 0xbc, 0xbf, 0xfd, 0xe3, 0x23, 0x45, 0xd5, 0x76, 0x02, + 0xe4, 0xc6, 0x9d, 0x37, 0x33, 0x6f, 0xde, 0xbc, 0x99, 0x79, 0x33, 0xf3, 0x1e, 0xe1, 0x65, 0x82, + 0x5a, 0x6d, 0xcf, 0xb7, 0x9a, 0x4b, 0x18, 0xf9, 0xfb, 0xc8, 0x5f, 0xb2, 0xda, 0xce, 0x92, 0x65, + 0xb7, 0x1c, 0x97, 0x7e, 0x3b, 0x75, 0xb4, 0xb4, 0x7f, 0x7e, 0xc9, 0x47, 0x77, 0x3a, 0x08, 0x13, + 0xd3, 0x47, 0xb8, 0xed, 0xb9, 0x18, 0x55, 0xdb, 0xbe, 0x47, 0x3c, 0xfd, 0x29, 0x49, 0x5b, 0xe5, + 0xb4, 0x55, 0xab, 0xed, 0x54, 0xa3, 0xb4, 0xd5, 0xfd, 0xf3, 0xa5, 0xf9, 0x86, 0xe7, 0x35, 0x9a, + 0x68, 0x89, 0x91, 0xd4, 0x3a, 0xbb, 0x4b, 0xc4, 0x69, 0x21, 0x4c, 0xac, 0x56, 0x9b, 0x73, 0x29, + 0x95, 0x93, 0x08, 0x76, 0xc7, 0xb7, 0x88, 0xe3, 0xb9, 0x62, 0xfc, 0x49, 0x1b, 0xb5, 0x91, 0x6b, + 0x23, 0xb7, 0xee, 0x20, 0xbc, 0xd4, 0xf0, 0x1a, 0x1e, 0x83, 0xb3, 0x5f, 0x02, 0xa5, 0x12, 0x2c, + 0x82, 0x4a, 0x8f, 0xdc, 0x4e, 0x0b, 0x53, 0xb1, 0xeb, 0x5e, 0xab, 0x15, 0xb0, 0x39, 0xa3, 0xc6, + 0x21, 0x16, 0xbe, 0x6d, 0xde, 0xe9, 0xa0, 0x8e, 0x58, 0x54, 0xe9, 0x54, 0x0c, 0x8f, 0xb3, 0xa0, + 0x88, 0x2d, 0x84, 0xb1, 0xd5, 0x90, 0x58, 0xa7, 0x63, 0x58, 0xfb, 0xc8, 0xc7, 0x8e, 0x0a, 0x2d, + 0x3e, 0xe9, 0x5d, 0xcf, 0xbf, 0xbd, 0xdb, 0xf4, 0xee, 0x76, 0xe3, 0x3d, 0x1d, 0xc3, 0x73, 0xad, + 0x16, 0xc2, 0x6d, 0x8b, 0xeb, 0x3e, 0x8e, 0x78, 0x36, 0x86, 0xe8, 0xa3, 0x76, 0xd3, 0xa9, 0x33, + 0x65, 0x75, 0xa3, 0x3e, 0xab, 0xda, 0xd9, 0x7a, 0xb3, 0x83, 0x09, 0xf2, 0xfb, 0x31, 0x8e, 0x60, + 0xab, 0x35, 0x79, 0xae, 0x3f, 0x2a, 0x9f, 0xa1, 0x6b, 0x61, 0x2a, 0x5c, 0xaa, 0xfc, 0x7e, 0xd2, + 0xee, 0x39, 0x98, 0x78, 0xfe, 0x41, 0xb7, 0xb4, 0x55, 0x15, 0x76, 0x1f, 0xb5, 0x3d, 0xaf, 0xc2, + 0xef, 0xab, 0xbd, 0x97, 0x54, 0x14, 0x6d, 0xba, 0xcf, 0x98, 0x20, 0x97, 0xcf, 0x21, 0x96, 0x6a, + 0xb6, 0x10, 0xb1, 0x6c, 0x8b, 0x58, 0x82, 0xf4, 0x85, 0x01, 0x48, 0xd1, 0x3d, 0x54, 0xef, 0xd0, + 0x99, 0xb1, 0x20, 0xba, 0x3c, 0x00, 0x91, 0xb4, 0x1f, 0xb3, 0xd5, 0x21, 0x56, 0xad, 0x89, 0x4c, + 0x4c, 0x2c, 0xd2, 0x57, 0x25, 0x09, 0x06, 0x54, 0xdf, 0x62, 0xc2, 0xca, 0x07, 0x1a, 0x94, 0x0c, + 0x54, 0xeb, 0x38, 0x4d, 0x7b, 0x9b, 0xb3, 0xdb, 0xa1, 0xdc, 0x0c, 0xee, 0xea, 0xfa, 0x13, 0x90, + 0x0f, 0xf4, 0x59, 0xd4, 0x16, 0xb4, 0xc5, 0xbc, 0x11, 0x02, 0xf4, 0x75, 0xc8, 0x07, 0x2b, 0x28, + 0xa6, 0x16, 0xb4, 0xc5, 0xd1, 0xe5, 0xb3, 0x81, 0x00, 0x2c, 0x0c, 0x08, 0x8b, 0xd9, 0x3f, 0x5f, + 0xbd, 0x25, 0xa4, 0xbe, 0x2a, 0x09, 0x8c, 0x90, 0xb6, 0x32, 0x07, 0xb3, 0x4a, 0x21, 0x78, 0x9c, + 0xa9, 0x7c, 0x92, 0x82, 0xf2, 0x26, 0xe5, 0x4a, 0xba, 0xb9, 0x7c, 0xa3, 0x82, 0xea, 0x9b, 0x30, + 0x21, 0xac, 0xd1, 0xac, 0x59, 0xa4, 0xbe, 0x87, 0x70, 0x31, 0xbd, 0x90, 0x5e, 0x1c, 0x5d, 0x5e, + 0xe8, 0xc5, 0x6e, 0xcd, 0x22, 0xd6, 0x4a, 0xd3, 0xab, 0x19, 0x05, 0x41, 0xb8, 0xc2, 0xe9, 0xf4, + 0x5b, 0x30, 0x21, 0x02, 0x86, 0x29, 0x46, 0x8a, 0x19, 0x26, 0x59, 0xb5, 0xaa, 0x0a, 0xa8, 0x02, + 0x87, 0xb2, 0xbc, 0xc9, 0xc9, 0x36, 0x38, 0xc4, 0x28, 0xec, 0xc7, 0xbe, 0xf5, 0x69, 0xc8, 0x12, + 0xef, 0x36, 0x72, 0x8b, 0xd9, 0x05, 0x6d, 0x71, 0xcc, 0xe0, 0x1f, 0x95, 0x0b, 0x30, 0xdf, 0x53, + 0x85, 0x5c, 0xcd, 0x21, 0xa1, 0x16, 0x25, 0xfc, 0x91, 0x06, 0xb3, 0x6b, 0x08, 0xd7, 0x7d, 0xa7, + 0x86, 0xbe, 0x45, 0x13, 0xf9, 0x63, 0x0a, 0x9e, 0x50, 0x8b, 0x21, 0xa4, 0x3f, 0x09, 0x39, 0xbc, + 0x67, 0xf9, 0xb6, 0xe9, 0xd8, 0x42, 0x8c, 0x11, 0xf6, 0xbd, 0x69, 0xeb, 0x4f, 0xc2, 0x98, 0xdc, + 0x35, 0xcb, 0xb6, 0x7d, 0x26, 0x47, 0xde, 0x18, 0x15, 0xb0, 0x2b, 0xb6, 0xed, 0xeb, 0x7b, 0x70, + 0xac, 0x6e, 0xd5, 0xf7, 0x50, 0xdc, 0xa9, 0x8a, 0x69, 0x26, 0xf1, 0x45, 0xe5, 0x8e, 0x44, 0xbc, + 0x2a, 0x2a, 0x7d, 0x4c, 0xb8, 0x29, 0xc6, 0x34, 0x0a, 0xd2, 0x5d, 0x38, 0x41, 0xa3, 0x44, 0xcd, + 0xc2, 0xc9, 0xc9, 0x32, 0x0f, 0x39, 0xd9, 0xb4, 0xe4, 0x1b, 0x85, 0x56, 0xfe, 0xa2, 0x41, 0x49, + 0x2a, 0x4e, 0x98, 0xc8, 0x86, 0x87, 0x89, 0xdc, 0x3e, 0xaa, 0x1b, 0x0f, 0x13, 0xa6, 0x18, 0x84, + 0xb1, 0x50, 0xdd, 0x28, 0x85, 0x5d, 0xe1, 0xa0, 0x98, 0x66, 0xa9, 0xea, 0xb2, 0xa1, 0x66, 0x63, + 0x9b, 0x9f, 0x4e, 0x6e, 0xfe, 0xff, 0x80, 0x1e, 0x04, 0xab, 0xd0, 0x0a, 0x32, 0x47, 0xb5, 0x82, + 0xa9, 0xbb, 0x49, 0x50, 0xe5, 0xef, 0x11, 0xa3, 0x8c, 0x2d, 0x4a, 0x18, 0xc3, 0x53, 0x30, 0xce, + 0x44, 0xc4, 0xa6, 0xdb, 0x69, 0xd5, 0x90, 0xcf, 0x96, 0x95, 0x35, 0xc6, 0x38, 0xf0, 0x0d, 0x06, + 0xd3, 0x67, 0x21, 0x2f, 0xd7, 0x85, 0x8b, 0xa9, 0x85, 0xf4, 0x62, 0xd6, 0xc8, 0x89, 0x85, 0x61, + 0xfd, 0x5d, 0x98, 0x08, 0x16, 0x62, 0xb2, 0x5d, 0x14, 0xc6, 0xf0, 0xa2, 0x72, 0x7f, 0x02, 0x5c, + 0xba, 0x84, 0x37, 0xe4, 0xc7, 0x2a, 0xa5, 0xdb, 0x74, 0x77, 0x3d, 0xa3, 0xe0, 0xc6, 0x60, 0x7a, + 0x11, 0x46, 0xa4, 0xc6, 0xb3, 0xdc, 0x58, 0xc5, 0xe7, 0xeb, 0x99, 0x5c, 0x66, 0x32, 0x5b, 0xa9, + 0xc2, 0xd4, 0x6a, 0xd3, 0xc3, 0x68, 0x87, 0xca, 0x23, 0xf7, 0x2a, 0x69, 0xe2, 0xe1, 0x46, 0x54, + 0xa6, 0x41, 0x8f, 0xe2, 0x8b, 0xc0, 0xf9, 0x2c, 0x4c, 0xac, 0x23, 0x32, 0x28, 0x8f, 0xf7, 0x60, + 0x32, 0xc4, 0x16, 0x8a, 0xdc, 0x02, 0x10, 0xe8, 0xee, 0xae, 0xc7, 0x08, 0x46, 0x97, 0x9f, 0x1b, + 0xc4, 0x42, 0x19, 0x1b, 0xb6, 0x74, 0xae, 0x64, 0xfa, 0xb3, 0xf2, 0xb3, 0x14, 0xcc, 0x6c, 0x39, + 0x98, 0x88, 0x2d, 0xbb, 0x41, 0x0f, 0xa2, 0xc3, 0x05, 0xd3, 0x5f, 0x83, 0x5c, 0xdd, 0x22, 0xa8, + 0x41, 0x63, 0x24, 0x35, 0xc0, 0xc2, 0xf2, 0x39, 0xa5, 0x08, 0x2c, 0xa3, 0xa0, 0x93, 0x53, 0xc6, + 0xab, 0x82, 0xc2, 0x08, 0x68, 0xf5, 0x0d, 0x00, 0x96, 0xe8, 0xf9, 0x96, 0xdb, 0x90, 0xdb, 0x79, + 0xf6, 0xb0, 0x68, 0x4b, 0x79, 0x19, 0x94, 0xc0, 0xc8, 0x13, 0xf9, 0x53, 0x9f, 0x03, 0x60, 0xf1, + 0xdf, 0xc4, 0xce, 0xfb, 0xdc, 0x71, 0xb3, 0x46, 0x9e, 0x41, 0x76, 0x9c, 0xf7, 0x91, 0x7e, 0x06, + 0x26, 0x5c, 0x74, 0x8f, 0x98, 0x6d, 0xab, 0x81, 0xcc, 0x68, 0x30, 0x1e, 0xa7, 0xe0, 0xeb, 0x56, + 0x03, 0xdd, 0x60, 0xb1, 0xf5, 0x03, 0x0d, 0x8a, 0xdd, 0xfa, 0x10, 0xaa, 0xbf, 0x0c, 0x59, 0x76, + 0x52, 0x17, 0x35, 0x76, 0xc2, 0xa8, 0x05, 0x4d, 0xe4, 0xd9, 0x5c, 0x5a, 0x4e, 0xa7, 0x92, 0x22, + 0xa5, 0x92, 0xe2, 0xc3, 0x14, 0x64, 0x28, 0x1d, 0x8d, 0x05, 0xa1, 0xcd, 0x07, 0x61, 0x74, 0x34, + 0x80, 0x6d, 0xda, 0xfa, 0x3c, 0x8c, 0x06, 0x2e, 0x2d, 0xc2, 0x41, 0xde, 0x00, 0x09, 0xda, 0xb4, + 0xf5, 0xe3, 0x30, 0xec, 0x77, 0x5c, 0x3a, 0xc6, 0xc3, 0x41, 0xd6, 0xef, 0xb8, 0x9b, 0xb6, 0x3e, + 0x03, 0x23, 0x4c, 0xf5, 0x8e, 0xcd, 0xb4, 0x95, 0x36, 0x86, 0xe9, 0xe7, 0xa6, 0xad, 0xaf, 0x02, + 0x53, 0xab, 0x49, 0x0e, 0xda, 0x88, 0x29, 0xa9, 0xb0, 0x7c, 0xe6, 0xf0, 0xcd, 0xbd, 0x71, 0xd0, + 0x46, 0x46, 0x8e, 0x88, 0x5f, 0xfa, 0x25, 0xc8, 0xef, 0x3a, 0x3e, 0x32, 0x69, 0x51, 0x51, 0x1c, + 0x66, 0xfb, 0x5a, 0xaa, 0xf2, 0x82, 0xa2, 0x2a, 0x0b, 0x8a, 0xea, 0x0d, 0x59, 0x71, 0xac, 0x64, + 0xee, 0x7f, 0x31, 0xaf, 0x19, 0x39, 0x4a, 0x42, 0x81, 0xd4, 0x19, 0xc5, 0x19, 0x5a, 0x1c, 0x61, + 0xc2, 0xc9, 0xcf, 0xca, 0xe7, 0x1a, 0x4c, 0x19, 0xa8, 0xe5, 0xed, 0x23, 0xa6, 0xd8, 0x6f, 0xce, + 0x54, 0x23, 0xfa, 0x4a, 0xc7, 0xf4, 0xb5, 0x09, 0x13, 0xfb, 0x0e, 0x76, 0x6a, 0x4e, 0xd3, 0x21, + 0x07, 0x7c, 0xc1, 0x99, 0x01, 0x17, 0x5c, 0x08, 0x09, 0xe9, 0x10, 0x8d, 0x19, 0xd1, 0xb5, 0x89, + 0x98, 0xf1, 0x8b, 0x34, 0x3c, 0xbd, 0x8e, 0x14, 0x69, 0x82, 0x75, 0x57, 0x98, 0xe9, 0xcd, 0xe5, + 0xc8, 0xe1, 0x11, 0x33, 0x98, 0x7c, 0xb7, 0xc1, 0x3c, 0xb2, 0xd4, 0xeb, 0x14, 0x14, 0x30, 0xb1, + 0x7c, 0x62, 0xa2, 0x7d, 0xe4, 0x92, 0x50, 0x31, 0x63, 0x0c, 0x7a, 0x95, 0x02, 0x37, 0x6d, 0xbd, + 0x0a, 0xc7, 0xa2, 0x58, 0x72, 0x5b, 0xb9, 0xcd, 0x4d, 0x85, 0xa8, 0x22, 0x87, 0xd2, 0x17, 0x60, + 0x0c, 0xb9, 0x76, 0xc8, 0x33, 0xcb, 0x10, 0x01, 0xb9, 0xb6, 0xe4, 0x78, 0x0e, 0xa6, 0x42, 0x0c, + 0xc9, 0x6f, 0x98, 0xa1, 0x4d, 0x48, 0x34, 0xc9, 0xed, 0x1c, 0x4c, 0xb5, 0xac, 0x7b, 0x4e, 0xab, + 0xd3, 0xe2, 0x4e, 0xc7, 0xa2, 0xc3, 0x08, 0xb3, 0x90, 0x09, 0x31, 0x40, 0xdd, 0xae, 0x57, 0x8c, + 0xc8, 0x29, 0xbc, 0xf3, 0xf5, 0x4c, 0x4e, 0x9b, 0x4c, 0x55, 0x7e, 0x95, 0x82, 0xc5, 0xc3, 0x77, + 0x45, 0x44, 0x0e, 0x05, 0x6b, 0x4d, 0xc1, 0x5a, 0x95, 0xcd, 0xa6, 0x1e, 0x5d, 0x36, 0x9b, 0x7e, + 0x24, 0xd9, 0xec, 0x22, 0x4c, 0x4a, 0x19, 0x5d, 0xcf, 0x46, 0xec, 0xac, 0xce, 0x2c, 0xa4, 0x17, + 0xd3, 0x81, 0x08, 0x6f, 0x78, 0x36, 0xda, 0xb4, 0x71, 0xe5, 0xbe, 0x06, 0x73, 0xeb, 0x88, 0x18, + 0x61, 0x3d, 0xb7, 0xcd, 0x6b, 0xb9, 0xe0, 0x88, 0xd9, 0x82, 0x61, 0xa6, 0x0d, 0x19, 0x52, 0xd5, + 0x47, 0x79, 0xa4, 0x20, 0xa4, 0xf2, 0x45, 0xf8, 0x31, 0xad, 0x19, 0x82, 0x07, 0x35, 0x7e, 0x59, + 0xfa, 0x51, 0x83, 0x97, 0x59, 0xa5, 0x80, 0xd1, 0x1c, 0xa0, 0xf2, 0x51, 0x0a, 0xca, 0xbd, 0x44, + 0x12, 0x7b, 0xf5, 0xff, 0x50, 0xe0, 0xb1, 0x44, 0x14, 0x9e, 0x52, 0xb6, 0x9b, 0x03, 0x85, 0xfb, + 0xfe, 0xcc, 0xf9, 0x21, 0x2c, 0xa1, 0x57, 0x5d, 0xe2, 0x1f, 0x18, 0x3c, 0x2f, 0x92, 0xb0, 0xd2, + 0x01, 0xe8, 0xdd, 0x48, 0xfa, 0x24, 0xa4, 0x6f, 0xa3, 0x03, 0x11, 0xdb, 0xe8, 0x4f, 0x7d, 0x1b, + 0xb2, 0xfb, 0x56, 0xb3, 0x83, 0x84, 0x0b, 0x5f, 0x38, 0xa2, 0xe6, 0x02, 0xc9, 0x38, 0x97, 0x97, + 0x53, 0x17, 0xb5, 0xca, 0x27, 0x1a, 0x9c, 0x59, 0x47, 0x24, 0x48, 0x96, 0xfa, 0x6c, 0xdc, 0x4b, + 0x70, 0xb2, 0x69, 0xb1, 0xce, 0x13, 0xf1, 0x1d, 0xb4, 0x8f, 0x02, 0x6d, 0xc9, 0x08, 0x9c, 0x36, + 0x4e, 0x50, 0x04, 0x43, 0x8e, 0x0b, 0x06, 0x9b, 0x76, 0x40, 0xda, 0xf6, 0xbd, 0x3a, 0xc2, 0x38, + 0x4e, 0x9a, 0x0a, 0x49, 0xaf, 0xcb, 0xf1, 0x90, 0x34, 0xb9, 0xc1, 0xe9, 0xee, 0x0d, 0xfe, 0x1e, + 0x8b, 0x95, 0xfd, 0x97, 0x20, 0x36, 0x7a, 0x07, 0x72, 0x91, 0x2d, 0x7e, 0x28, 0x25, 0x06, 0x8c, + 0x2a, 0xef, 0xc3, 0xc2, 0x3a, 0x22, 0x6b, 0x5b, 0x6f, 0xf5, 0x51, 0xde, 0x4d, 0x91, 0xf5, 0xd0, + 0x0c, 0x4e, 0x5a, 0xd7, 0x51, 0xa7, 0xa6, 0x27, 0x04, 0x4f, 0xe6, 0x88, 0xf8, 0x85, 0x2b, 0x3f, + 0xd6, 0xe0, 0xc9, 0x3e, 0x93, 0x8b, 0x65, 0xbf, 0x07, 0x53, 0x11, 0xb6, 0x66, 0x34, 0xa3, 0x79, + 0xe1, 0x3f, 0x10, 0xc2, 0x98, 0xf4, 0xe3, 0x00, 0x5c, 0xf9, 0xab, 0x06, 0xd3, 0x06, 0xb2, 0xda, + 0xed, 0xe6, 0x01, 0x0b, 0xc6, 0xb8, 0xd7, 0xe9, 0x94, 0xe9, 0x3e, 0x9d, 0xd4, 0x15, 0x4a, 0xea, + 0xe1, 0x2b, 0x14, 0xfd, 0x22, 0x0c, 0xb3, 0x23, 0x03, 0x8b, 0x38, 0x78, 0x78, 0x48, 0x15, 0xf8, + 0x22, 0xe0, 0xcf, 0xc0, 0xf1, 0xc4, 0xa2, 0xc4, 0xf9, 0xfc, 0xaf, 0x14, 0x94, 0xae, 0xd8, 0xf6, + 0x0e, 0xb2, 0xfc, 0xfa, 0xde, 0x15, 0x42, 0x7c, 0xa7, 0xd6, 0x21, 0xe1, 0x6e, 0xff, 0x50, 0x83, + 0x29, 0xcc, 0xc6, 0x4c, 0x2b, 0x18, 0x14, 0x0a, 0x7f, 0x7b, 0xa0, 0x98, 0xd2, 0x9b, 0x79, 0x35, + 0x09, 0xe7, 0x21, 0x65, 0x12, 0x27, 0xc0, 0x34, 0x3d, 0x76, 0x5c, 0x1b, 0xdd, 0x8b, 0x06, 0xc6, + 0x3c, 0x83, 0x50, 0x57, 0xd1, 0x9f, 0x05, 0x1d, 0xdf, 0x76, 0xda, 0x26, 0xae, 0xef, 0xa1, 0x96, + 0x65, 0x76, 0xda, 0xb6, 0xac, 0xb5, 0x73, 0xc6, 0x24, 0x1d, 0xd9, 0x61, 0x03, 0x6f, 0x33, 0x78, + 0xbc, 0xc6, 0xcc, 0x24, 0x6a, 0xcc, 0x52, 0x13, 0x8e, 0x2b, 0xa5, 0x8a, 0xc6, 0xb0, 0x3c, 0x8f, + 0x61, 0x97, 0xa2, 0x31, 0xac, 0xb0, 0xfc, 0x74, 0x7c, 0x47, 0x82, 0x8c, 0x6c, 0x93, 0xca, 0x89, + 0xec, 0x9b, 0x14, 0x95, 0xe5, 0x99, 0x91, 0x98, 0x35, 0x07, 0xb3, 0x4a, 0xf5, 0x88, 0xbd, 0xf9, + 0xa9, 0x06, 0x73, 0x3c, 0xa5, 0xea, 0xb5, 0x3d, 0xcf, 0xf4, 0xda, 0x9d, 0xfc, 0xd1, 0xd5, 0xd8, + 0xb7, 0xf8, 0xae, 0x2c, 0x40, 0xb9, 0x97, 0x28, 0x42, 0xda, 0xff, 0x85, 0x12, 0xad, 0xf7, 0x7a, + 0x48, 0x1a, 0x9f, 0x5c, 0xeb, 0x3b, 0x79, 0x2a, 0x39, 0xf9, 0x47, 0xc3, 0x30, 0xab, 0xe4, 0x2d, + 0xa2, 0xc2, 0x07, 0x1a, 0x4c, 0xd5, 0x3b, 0x98, 0x78, 0xad, 0x6e, 0x2b, 0x1d, 0xf8, 0xe4, 0xeb, + 0xc5, 0xbd, 0xba, 0xca, 0x38, 0x77, 0x99, 0x69, 0x3d, 0x01, 0x66, 0x52, 0xe0, 0x03, 0x4c, 0x50, + 0x4c, 0x8a, 0xd4, 0x23, 0x92, 0x62, 0x87, 0x71, 0xee, 0x76, 0x96, 0x04, 0x58, 0x6f, 0xc0, 0x48, + 0xcb, 0x6a, 0xb7, 0x1d, 0xb7, 0x21, 0x7a, 0x89, 0xdb, 0x0f, 0x3d, 0xf5, 0x36, 0xe7, 0xc7, 0x67, + 0x94, 0xdc, 0x75, 0x17, 0x66, 0x2d, 0xdb, 0x36, 0xbb, 0x03, 0x1e, 0x2f, 0xee, 0x79, 0x19, 0xb1, + 0x14, 0xf7, 0x0a, 0x89, 0xac, 0x8c, 0x7b, 0xec, 0x44, 0x28, 0x5a, 0xb6, 0xad, 0x1c, 0xa1, 0xae, + 0xa9, 0xdc, 0x89, 0xc7, 0xe2, 0x9a, 0x2c, 0x10, 0xa8, 0x34, 0xfe, 0x78, 0x66, 0x7b, 0x19, 0xc6, + 0xa2, 0x4a, 0x56, 0x4c, 0x32, 0x1d, 0x9d, 0x24, 0x1f, 0x0d, 0x22, 0xaf, 0xc0, 0x09, 0xd9, 0xbb, + 0x5a, 0xe5, 0xb9, 0x44, 0xe4, 0xc4, 0x8a, 0x65, 0x1c, 0x5a, 0x77, 0xc6, 0xf1, 0xa7, 0x11, 0x98, + 0xe9, 0xa2, 0x16, 0x5e, 0xf5, 0x7d, 0x98, 0xc2, 0x9d, 0x76, 0xdb, 0xf3, 0x09, 0xb2, 0xcd, 0x7a, + 0xd3, 0x61, 0xc7, 0x0f, 0x77, 0x2a, 0x63, 0x20, 0x9b, 0xea, 0xc1, 0xb8, 0xba, 0x23, 0xb9, 0xae, + 0x72, 0xa6, 0xd2, 0x94, 0x13, 0x60, 0xfd, 0x34, 0x14, 0x38, 0xf7, 0xa0, 0x50, 0xe2, 0x8b, 0x1f, + 0xe7, 0x50, 0x59, 0x26, 0xdd, 0x82, 0x89, 0x16, 0x6a, 0xd5, 0x90, 0x8f, 0xf7, 0x9c, 0x36, 0x37, + 0xbe, 0x7e, 0xc5, 0x82, 0xbc, 0x4b, 0xda, 0x3f, 0x5f, 0xdd, 0x0e, 0xc8, 0x78, 0x57, 0xad, 0x15, + 0xfb, 0xa6, 0x31, 0x4b, 0xea, 0x2f, 0x38, 0xef, 0xf3, 0x02, 0xa2, 0x48, 0xe8, 0xb2, 0x5d, 0xea, + 0xa5, 0xf5, 0xa3, 0x2c, 0x37, 0x78, 0x5a, 0x5e, 0xf7, 0x3a, 0x2e, 0x61, 0xf5, 0x5e, 0xd6, 0x98, + 0x12, 0x43, 0x2c, 0x63, 0x5e, 0xa5, 0x03, 0x34, 0x9e, 0x47, 0x1a, 0x5f, 0x26, 0x1d, 0xe6, 0x15, + 0x5f, 0xde, 0x98, 0x8c, 0x0c, 0xec, 0x50, 0xb8, 0x7e, 0x16, 0x26, 0x23, 0xb5, 0x3b, 0xc7, 0xcd, + 0x31, 0xdc, 0x48, 0x4d, 0xcf, 0x51, 0xd7, 0x61, 0x4c, 0xd6, 0x53, 0x4c, 0x3f, 0x79, 0xa6, 0x9f, + 0x53, 0x71, 0x4b, 0x15, 0x18, 0x91, 0x2a, 0x8a, 0x69, 0x65, 0x74, 0x3f, 0xfc, 0xd0, 0x5f, 0x85, + 0xd2, 0xae, 0xe5, 0x34, 0xbd, 0xc8, 0xa6, 0x98, 0x8e, 0x5b, 0xf7, 0x51, 0x0b, 0xb9, 0xa4, 0x08, + 0x2c, 0x01, 0x2e, 0x4a, 0x8c, 0x80, 0x8b, 0x18, 0xd7, 0x2f, 0x42, 0xd1, 0x71, 0x1d, 0xe2, 0x58, + 0x4d, 0x33, 0xc9, 0xa5, 0x38, 0xca, 0x93, 0x67, 0x31, 0xfe, 0x5a, 0x9c, 0x85, 0x7e, 0x09, 0x66, + 0x1d, 0x6c, 0x36, 0x9a, 0x5e, 0xcd, 0x6a, 0x9a, 0x61, 0x1a, 0x86, 0x5c, 0xab, 0xd6, 0x44, 0x76, + 0x71, 0x8c, 0x1d, 0xf6, 0x45, 0x07, 0xaf, 0x33, 0x8c, 0x20, 0x83, 0xbe, 0xca, 0xc7, 0xf5, 0x77, + 0x20, 0x43, 0xac, 0x06, 0x2e, 0x8e, 0x33, 0xeb, 0x7d, 0xed, 0xa1, 0xac, 0xf7, 0x86, 0xd5, 0x10, + 0x16, 0xcb, 0x78, 0x96, 0x56, 0xe1, 0xb8, 0xd2, 0xa0, 0x8f, 0xe2, 0xc4, 0xa5, 0x0b, 0x90, 0x0f, + 0xf8, 0x1e, 0xc9, 0xfb, 0xdf, 0x81, 0x63, 0x5b, 0x0e, 0x26, 0x42, 0xc8, 0xe0, 0xb8, 0x9d, 0x85, + 0x7c, 0xd8, 0x32, 0xe0, 0x85, 0x57, 0xae, 0xdd, 0xa7, 0x57, 0xa0, 0xec, 0xe4, 0xfd, 0x5c, 0x83, + 0xe9, 0x38, 0x73, 0x11, 0x19, 0xde, 0x84, 0x9c, 0xb0, 0xf2, 0xfe, 0xc9, 0x77, 0xa2, 0x89, 0x2b, + 0xf8, 0x6c, 0x8b, 0x9b, 0x4d, 0x23, 0x60, 0x32, 0xb0, 0x44, 0xbf, 0xd4, 0x60, 0xfe, 0x8a, 0x6d, + 0xbf, 0xe9, 0xf3, 0x64, 0x8e, 0x66, 0x24, 0x24, 0x19, 0xf5, 0xce, 0xc2, 0xe4, 0xae, 0xef, 0xb9, + 0x04, 0xb9, 0x76, 0xe2, 0x1a, 0x62, 0x42, 0xc2, 0xe5, 0x55, 0xc4, 0x3a, 0x2c, 0x70, 0x0b, 0x32, + 0x7d, 0xc6, 0xc9, 0x94, 0xfe, 0x5c, 0xf7, 0x5c, 0x17, 0xd5, 0x83, 0xec, 0x3d, 0x67, 0xcc, 0x71, + 0xbc, 0xd8, 0x84, 0xab, 0x01, 0x52, 0xa5, 0x02, 0x0b, 0xbd, 0xc5, 0x12, 0xf9, 0xd1, 0x65, 0x28, + 0xf1, 0x0c, 0x4a, 0x29, 0xf5, 0x00, 0xb1, 0x9a, 0x5d, 0x6b, 0x2a, 0x18, 0x84, 0x9d, 0xb6, 0x93, + 0x91, 0xdd, 0x12, 0xb1, 0x4d, 0xf2, 0xdf, 0x81, 0xe3, 0xac, 0x70, 0xdd, 0x43, 0x96, 0x4f, 0x6a, + 0xc8, 0x22, 0xe6, 0x5d, 0x87, 0xec, 0x39, 0xae, 0x28, 0x1e, 0x4f, 0x76, 0xb5, 0xfb, 0xd6, 0xc4, + 0x83, 0x89, 0x95, 0xcc, 0x87, 0x5f, 0xcc, 0x6b, 0xc6, 0x31, 0x4a, 0xbd, 0x21, 0x89, 0x6f, 0x31, + 0x5a, 0x7d, 0x1e, 0x46, 0xfd, 0x76, 0x3d, 0xd0, 0xb2, 0x68, 0xdf, 0xfa, 0xed, 0xba, 0x54, 0xf0, + 0x0c, 0x8c, 0xb0, 0xeb, 0xa0, 0xa0, 0x7f, 0x3b, 0x4c, 0x3f, 0x59, 0x9f, 0x36, 0xe3, 0x7b, 0x4d, + 0x9e, 0x80, 0x17, 0xa2, 0x59, 0x82, 0xaa, 0xa9, 0x19, 0x5b, 0x91, 0xe1, 0x35, 0x91, 0xc1, 0x88, + 0xf5, 0x77, 0xa1, 0x84, 0x11, 0x66, 0x31, 0x88, 0xb5, 0xe2, 0x90, 0x6d, 0x5a, 0xbb, 0x54, 0x83, + 0xac, 0x8f, 0x99, 0x1d, 0xb0, 0x8f, 0x39, 0x23, 0x78, 0xec, 0x70, 0x16, 0x57, 0x28, 0x07, 0xd6, + 0xc7, 0x8d, 0xf9, 0xd0, 0xf0, 0xe1, 0x3e, 0x34, 0xa2, 0xb2, 0xd8, 0x8f, 0x34, 0x28, 0xa9, 0x76, + 0x45, 0x78, 0xd2, 0x0d, 0x28, 0x58, 0x75, 0xe2, 0xec, 0x23, 0x53, 0x9c, 0x3d, 0xc2, 0x9f, 0x9e, + 0x3b, 0xec, 0xe8, 0x8a, 0xeb, 0x64, 0x9c, 0x33, 0x11, 0xdc, 0x07, 0x76, 0xa7, 0x3f, 0xa4, 0xe0, + 0x38, 0xaf, 0xb9, 0x93, 0x55, 0xfe, 0x55, 0xc8, 0xb0, 0x16, 0xba, 0xc6, 0xf6, 0xe7, 0x7c, 0xff, + 0xfd, 0x59, 0x43, 0x96, 0xbd, 0x85, 0x08, 0x41, 0xfe, 0x5b, 0x1d, 0x24, 0x92, 0x1b, 0x46, 0xde, + 0xef, 0xae, 0x8f, 0x1e, 0xee, 0x5e, 0xc7, 0xaf, 0x07, 0x4e, 0x27, 0x2c, 0x64, 0x9c, 0x43, 0xc5, + 0xfa, 0xf4, 0x0b, 0xf4, 0xc8, 0xa0, 0x18, 0x54, 0x47, 0xd4, 0xa5, 0x23, 0xfd, 0x16, 0xde, 0x86, + 0x3d, 0x1e, 0x8c, 0x5f, 0x75, 0x23, 0xed, 0x16, 0x65, 0xf3, 0x34, 0x3b, 0x70, 0xf3, 0x74, 0x58, + 0xa5, 0xaf, 0xcf, 0x52, 0x70, 0x22, 0xa9, 0x2f, 0xb1, 0x91, 0x8f, 0x48, 0x61, 0xca, 0xfe, 0x46, + 0xea, 0x11, 0xf6, 0x37, 0x54, 0x6b, 0x4d, 0xab, 0xba, 0xb9, 0x2d, 0x38, 0xd1, 0x25, 0x89, 0xcc, + 0xec, 0x1f, 0xaa, 0xe7, 0x33, 0x9d, 0x14, 0x89, 0xdd, 0xe5, 0xfd, 0x4d, 0x83, 0x99, 0xeb, 0x1d, + 0xbf, 0x81, 0xbe, 0x8b, 0xc6, 0x58, 0x29, 0x41, 0xb1, 0x7b, 0x71, 0x22, 0x6e, 0x7f, 0x9c, 0x82, + 0x99, 0x6d, 0xf4, 0x1d, 0x5d, 0xf9, 0x63, 0x71, 0xc3, 0x15, 0x28, 0x76, 0x2b, 0xec, 0x68, 0x97, + 0x15, 0x34, 0xb7, 0x99, 0x35, 0xd0, 0xae, 0x8f, 0xf0, 0x9e, 0x2c, 0x37, 0x63, 0xf7, 0xc7, 0xc9, + 0x6e, 0x5f, 0xfa, 0xf1, 0xdd, 0x45, 0x89, 0x16, 0x5d, 0x19, 0x9e, 0x50, 0x0b, 0x14, 0xda, 0xc9, + 0x9c, 0x81, 0x30, 0x72, 0xed, 0x84, 0x57, 0xf5, 0x94, 0xf9, 0x11, 0x5e, 0xb8, 0x9e, 0x86, 0x42, + 0x3c, 0x45, 0x12, 0xe5, 0xd0, 0xb8, 0x1f, 0xcd, 0x45, 0x14, 0xb7, 0x6a, 0x59, 0xc5, 0xad, 0xda, + 0x53, 0x30, 0xce, 0xb1, 0xe2, 0xf7, 0x5f, 0x1c, 0xa9, 0xd7, 0x55, 0xda, 0x48, 0xd7, 0x55, 0xda, + 0x3c, 0x8c, 0x52, 0x0c, 0xc9, 0x24, 0x17, 0x20, 0x08, 0x16, 0xbc, 0x67, 0xa5, 0x56, 0x98, 0xd0, + 0xe9, 0xef, 0x53, 0x50, 0x5c, 0x47, 0x84, 0x02, 0xb9, 0xcf, 0x44, 0xd5, 0xd9, 0xff, 0x29, 0xd2, + 0x9c, 0xe8, 0x83, 0xb3, 0x67, 0x9e, 0xb2, 0x65, 0x45, 0x24, 0x23, 0x7d, 0x0b, 0x26, 0xc2, 0x61, + 0x7e, 0x1d, 0x9d, 0x66, 0x4e, 0x7c, 0xaa, 0x47, 0x7b, 0x20, 0x94, 0x81, 0xfa, 0xed, 0x38, 0x89, + 0x7e, 0xea, 0x65, 0x18, 0x6d, 0x39, 0x3c, 0x08, 0x87, 0x1e, 0x97, 0x6f, 0x39, 0x3c, 0xaa, 0xda, + 0x6c, 0xdc, 0xba, 0x17, 0x8c, 0x67, 0xc5, 0xb8, 0x75, 0x4f, 0x8c, 0xc7, 0x1f, 0x18, 0x0c, 0x0f, + 0xf0, 0xc0, 0x40, 0x99, 0xcc, 0xdc, 0xd7, 0xe0, 0xa4, 0x42, 0x5d, 0xc2, 0xf5, 0xae, 0xc5, 0x5f, + 0x18, 0xfc, 0xd7, 0x20, 0x25, 0xc1, 0x95, 0x66, 0xd3, 0xab, 0x5b, 0x04, 0xd9, 0xc1, 0xf1, 0x70, + 0xc4, 0xd7, 0x06, 0x3f, 0xd1, 0xa0, 0xbc, 0x86, 0x9a, 0x88, 0xa0, 0x6f, 0xf9, 0x31, 0x5f, 0xe5, + 0x12, 0xcc, 0xf7, 0x14, 0x44, 0x68, 0xa8, 0x04, 0xb9, 0xbb, 0x96, 0xef, 0x3a, 0x6e, 0x43, 0x76, + 0x69, 0x83, 0xef, 0xca, 0xef, 0x34, 0x58, 0xdc, 0x21, 0x3e, 0xb2, 0x5a, 0x92, 0xbe, 0xcf, 0x25, + 0x4c, 0x1b, 0x4e, 0xe0, 0x03, 0xb7, 0x6e, 0x46, 0x4f, 0x68, 0xfe, 0xea, 0x4b, 0xeb, 0xf3, 0xea, + 0x2b, 0x71, 0x38, 0xef, 0x1c, 0xb8, 0xf5, 0xc8, 0x1c, 0xec, 0x7d, 0xd7, 0xc6, 0x90, 0x31, 0x8d, + 0x15, 0xf0, 0x95, 0x31, 0x80, 0xb0, 0xa9, 0x59, 0xf9, 0x50, 0x83, 0xb3, 0x03, 0x08, 0x2b, 0x96, + 0xfd, 0x6e, 0xd7, 0x5d, 0xd5, 0xe5, 0x41, 0xe4, 0xeb, 0xc3, 0x7a, 0x63, 0x28, 0xbc, 0xb5, 0x4a, + 0x88, 0xf6, 0x36, 0x1c, 0x8b, 0xdf, 0xa1, 0x71, 0x8d, 0x95, 0xbb, 0x8c, 0x60, 0x63, 0x28, 0x6a, + 0x06, 0x93, 0x90, 0x92, 0xf1, 0x70, 0x63, 0xc8, 0x48, 0x39, 0x76, 0x82, 0xed, 0xe7, 0x69, 0x98, + 0x8e, 0xf3, 0x15, 0x8b, 0x7b, 0x15, 0x32, 0x91, 0x96, 0xd3, 0x62, 0xdc, 0x74, 0xd4, 0xef, 0xb8, + 0x98, 0x9d, 0x33, 0x2a, 0x7d, 0x05, 0x86, 0xeb, 0x9e, 0xbb, 0xeb, 0x34, 0x44, 0xbf, 0xf4, 0xdc, + 0x20, 0xf4, 0xab, 0x8c, 0xc2, 0x10, 0x94, 0xfa, 0x2e, 0xe8, 0x51, 0x3b, 0x10, 0xfc, 0xb2, 0xc9, + 0x4b, 0x41, 0x85, 0x86, 0x55, 0x37, 0x8d, 0x82, 0x79, 0x34, 0x0d, 0xe5, 0x20, 0x7a, 0x06, 0x70, + 0xde, 0x89, 0xb8, 0x3d, 0xce, 0xa1, 0x32, 0x70, 0xd3, 0xfa, 0x3b, 0xd9, 0xdc, 0xe1, 0xc1, 0x7b, + 0x22, 0xd1, 0x18, 0xd2, 0x6f, 0x46, 0x50, 0xe5, 0x3d, 0x7f, 0x8e, 0x05, 0x8f, 0x67, 0xfa, 0xca, + 0x2d, 0xbb, 0x43, 0xd4, 0x34, 0x3b, 0x38, 0xe4, 0x2b, 0x6f, 0xf9, 0xab, 0x70, 0x4c, 0xd1, 0x2d, + 0x62, 0x5d, 0xaf, 0x9c, 0x31, 0xd5, 0xd5, 0x25, 0xaa, 0xfc, 0x1f, 0x8c, 0x46, 0xde, 0x4c, 0xf5, + 0x7b, 0x90, 0xf3, 0x22, 0x64, 0x68, 0x7c, 0x12, 0x81, 0xe2, 0xf0, 0x5b, 0x38, 0x86, 0x5d, 0xb9, + 0x00, 0x27, 0x04, 0xff, 0xb5, 0xad, 0xb7, 0xe8, 0x14, 0xb2, 0x05, 0x42, 0x03, 0x73, 0xd7, 0xdd, + 0x73, 0xbe, 0x15, 0xe4, 0x8d, 0x1f, 0x6b, 0x50, 0x88, 0x53, 0xea, 0xb7, 0xa8, 0x33, 0x71, 0x6a, + 0xe1, 0x4c, 0xaf, 0x0c, 0xd4, 0xce, 0x52, 0x0b, 0x60, 0x04, 0xcc, 0xf4, 0xb5, 0xd8, 0xd2, 0x9e, + 0x3f, 0x0a, 0x53, 0x56, 0x6a, 0xf0, 0xa5, 0xfe, 0x5a, 0x83, 0xf1, 0x70, 0xaa, 0x6b, 0xe8, 0x20, + 0xf6, 0x86, 0x49, 0x7b, 0x88, 0x37, 0x4c, 0xdd, 0x99, 0x6a, 0x4a, 0x95, 0xa9, 0x9e, 0x86, 0x02, + 0xb1, 0xfc, 0x06, 0x22, 0xc9, 0x84, 0x96, 0x43, 0x05, 0x5a, 0xe5, 0x37, 0x1a, 0xe8, 0xbc, 0x94, + 0x8b, 0x9d, 0xf9, 0xd7, 0x60, 0xc4, 0x6e, 0xde, 0x31, 0x65, 0xfb, 0x6d, 0x74, 0x79, 0xf9, 0x88, + 0xca, 0xbd, 0x86, 0x0e, 0x8c, 0x61, 0xbb, 0x79, 0x87, 0xae, 0x3c, 0xd6, 0x40, 0x48, 0x1d, 0xde, + 0x40, 0x48, 0xf7, 0x48, 0x54, 0x8f, 0xc5, 0x04, 0x15, 0x71, 0xe7, 0x3a, 0xe4, 0xa9, 0xa4, 0x87, + 0xdf, 0x80, 0xf7, 0x37, 0x04, 0x23, 0x67, 0x37, 0xef, 0xdc, 0x38, 0xca, 0x91, 0xbb, 0xd2, 0xfc, + 0xf4, 0xcb, 0xf2, 0xd0, 0x67, 0x5f, 0x96, 0x87, 0xbe, 0xfe, 0xb2, 0xac, 0xfd, 0xe0, 0x41, 0x59, + 0xfb, 0xed, 0x83, 0xb2, 0xf6, 0xe7, 0x07, 0x65, 0xed, 0xd3, 0x07, 0x65, 0xed, 0x1f, 0x0f, 0xca, + 0xda, 0x3f, 0x1f, 0x94, 0x87, 0xbe, 0x7e, 0x50, 0xd6, 0xee, 0x7f, 0x55, 0x1e, 0xfa, 0xf4, 0xab, + 0xf2, 0xd0, 0x67, 0x5f, 0x95, 0x87, 0xde, 0xf9, 0xef, 0x86, 0x17, 0x8a, 0xe7, 0x78, 0x7d, 0xfe, + 0x19, 0xf4, 0x4a, 0xf4, 0xbb, 0x36, 0xcc, 0x1a, 0x37, 0x2f, 0xfc, 0x3b, 0x00, 0x00, 0xff, 0xff, + 0x94, 0xfb, 0x8e, 0xcc, 0x54, 0x34, 0x00, 0x00, } func (this *RebuildMutableStateRequest) Equal(that interface{}) bool { @@ -5941,51 +6282,221 @@ func (this *GetNamespaceResponse) Equal(that interface{}) bool { } return true } -func (this *RebuildMutableStateRequest) GoString() string { - if this == nil { - return "nil" - } - s := make([]string, 0, 6) - s = append(s, "&adminservice.RebuildMutableStateRequest{") - s = append(s, "Namespace: "+fmt.Sprintf("%#v", this.Namespace)+",\n") - if this.Execution != nil { - s = append(s, "Execution: "+fmt.Sprintf("%#v", this.Execution)+",\n") - } - s = append(s, "}") - return strings.Join(s, "") -} -func (this *RebuildMutableStateResponse) GoString() string { - if this == nil { - return "nil" +func (this *HistoryTask) Equal(that interface{}) bool { + if that == nil { + return this == nil } - s := make([]string, 0, 4) - s = append(s, "&adminservice.RebuildMutableStateResponse{") - s = append(s, "}") - return strings.Join(s, "") -} -func (this *ImportWorkflowExecutionRequest) GoString() string { - if this == nil { - return "nil" + + that1, ok := that.(*HistoryTask) + if !ok { + that2, ok := that.(HistoryTask) + if ok { + that1 = &that2 + } else { + return false + } } - s := make([]string, 0, 9) - s = append(s, "&adminservice.ImportWorkflowExecutionRequest{") - s = append(s, "Namespace: "+fmt.Sprintf("%#v", this.Namespace)+",\n") - if this.Execution != nil { - s = append(s, "Execution: "+fmt.Sprintf("%#v", this.Execution)+",\n") + if that1 == nil { + return this == nil + } else if this == nil { + return false } - if this.HistoryBatches != nil { - s = append(s, "HistoryBatches: "+fmt.Sprintf("%#v", this.HistoryBatches)+",\n") + if this.ShardId != that1.ShardId { + return false } - if this.VersionHistory != nil { - s = append(s, "VersionHistory: "+fmt.Sprintf("%#v", this.VersionHistory)+",\n") + if !this.Task.Equal(that1.Task) { + return false } - s = append(s, "Token: "+fmt.Sprintf("%#v", this.Token)+",\n") - s = append(s, "}") - return strings.Join(s, "") + return true } -func (this *ImportWorkflowExecutionResponse) GoString() string { - if this == nil { - return "nil" +func (this *HistoryDLQTaskMetadata) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*HistoryDLQTaskMetadata) + if !ok { + that2, ok := that.(HistoryDLQTaskMetadata) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if this.MessageId != that1.MessageId { + return false + } + return true +} +func (this *HistoryDLQTask) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*HistoryDLQTask) + if !ok { + that2, ok := that.(HistoryDLQTask) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !this.Metadata.Equal(that1.Metadata) { + return false + } + if !this.Task.Equal(that1.Task) { + return false + } + return true +} +func (this *HistoryDLQKey) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*HistoryDLQKey) + if !ok { + that2, ok := that.(HistoryDLQKey) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if this.Category != that1.Category { + return false + } + if this.SourceCluster != that1.SourceCluster { + return false + } + if this.TargetCluster != that1.TargetCluster { + return false + } + return true +} +func (this *GetDLQTasksRequest) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*GetDLQTasksRequest) + if !ok { + that2, ok := that.(GetDLQTasksRequest) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !this.DlqKey.Equal(that1.DlqKey) { + return false + } + if this.PageSize != that1.PageSize { + return false + } + if !bytes.Equal(this.NextPageToken, that1.NextPageToken) { + return false + } + return true +} +func (this *GetDLQTasksResponse) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*GetDLQTasksResponse) + if !ok { + that2, ok := that.(GetDLQTasksResponse) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if len(this.DlqTasks) != len(that1.DlqTasks) { + return false + } + for i := range this.DlqTasks { + if !this.DlqTasks[i].Equal(that1.DlqTasks[i]) { + return false + } + } + if !bytes.Equal(this.NextPageToken, that1.NextPageToken) { + return false + } + return true +} +func (this *RebuildMutableStateRequest) GoString() string { + if this == nil { + return "nil" + } + s := make([]string, 0, 6) + s = append(s, "&adminservice.RebuildMutableStateRequest{") + s = append(s, "Namespace: "+fmt.Sprintf("%#v", this.Namespace)+",\n") + if this.Execution != nil { + s = append(s, "Execution: "+fmt.Sprintf("%#v", this.Execution)+",\n") + } + s = append(s, "}") + return strings.Join(s, "") +} +func (this *RebuildMutableStateResponse) GoString() string { + if this == nil { + return "nil" + } + s := make([]string, 0, 4) + s = append(s, "&adminservice.RebuildMutableStateResponse{") + s = append(s, "}") + return strings.Join(s, "") +} +func (this *ImportWorkflowExecutionRequest) GoString() string { + if this == nil { + return "nil" + } + s := make([]string, 0, 9) + s = append(s, "&adminservice.ImportWorkflowExecutionRequest{") + s = append(s, "Namespace: "+fmt.Sprintf("%#v", this.Namespace)+",\n") + if this.Execution != nil { + s = append(s, "Execution: "+fmt.Sprintf("%#v", this.Execution)+",\n") + } + if this.HistoryBatches != nil { + s = append(s, "HistoryBatches: "+fmt.Sprintf("%#v", this.HistoryBatches)+",\n") + } + if this.VersionHistory != nil { + s = append(s, "VersionHistory: "+fmt.Sprintf("%#v", this.VersionHistory)+",\n") + } + s = append(s, "Token: "+fmt.Sprintf("%#v", this.Token)+",\n") + s = append(s, "}") + return strings.Join(s, "") +} +func (this *ImportWorkflowExecutionResponse) GoString() string { + if this == nil { + return "nil" } s := make([]string, 0, 5) s = append(s, "&adminservice.ImportWorkflowExecutionResponse{") @@ -6845,6 +7356,83 @@ func (this *GetNamespaceResponse) GoString() string { s = append(s, "}") return strings.Join(s, "") } +func (this *HistoryTask) GoString() string { + if this == nil { + return "nil" + } + s := make([]string, 0, 6) + s = append(s, "&adminservice.HistoryTask{") + s = append(s, "ShardId: "+fmt.Sprintf("%#v", this.ShardId)+",\n") + if this.Task != nil { + s = append(s, "Task: "+fmt.Sprintf("%#v", this.Task)+",\n") + } + s = append(s, "}") + return strings.Join(s, "") +} +func (this *HistoryDLQTaskMetadata) GoString() string { + if this == nil { + return "nil" + } + s := make([]string, 0, 5) + s = append(s, "&adminservice.HistoryDLQTaskMetadata{") + s = append(s, "MessageId: "+fmt.Sprintf("%#v", this.MessageId)+",\n") + s = append(s, "}") + return strings.Join(s, "") +} +func (this *HistoryDLQTask) GoString() string { + if this == nil { + return "nil" + } + s := make([]string, 0, 6) + s = append(s, "&adminservice.HistoryDLQTask{") + if this.Metadata != nil { + s = append(s, "Metadata: "+fmt.Sprintf("%#v", this.Metadata)+",\n") + } + if this.Task != nil { + s = append(s, "Task: "+fmt.Sprintf("%#v", this.Task)+",\n") + } + s = append(s, "}") + return strings.Join(s, "") +} +func (this *HistoryDLQKey) GoString() string { + if this == nil { + return "nil" + } + s := make([]string, 0, 7) + s = append(s, "&adminservice.HistoryDLQKey{") + s = append(s, "Category: "+fmt.Sprintf("%#v", this.Category)+",\n") + s = append(s, "SourceCluster: "+fmt.Sprintf("%#v", this.SourceCluster)+",\n") + s = append(s, "TargetCluster: "+fmt.Sprintf("%#v", this.TargetCluster)+",\n") + s = append(s, "}") + return strings.Join(s, "") +} +func (this *GetDLQTasksRequest) GoString() string { + if this == nil { + return "nil" + } + s := make([]string, 0, 7) + s = append(s, "&adminservice.GetDLQTasksRequest{") + if this.DlqKey != nil { + s = append(s, "DlqKey: "+fmt.Sprintf("%#v", this.DlqKey)+",\n") + } + s = append(s, "PageSize: "+fmt.Sprintf("%#v", this.PageSize)+",\n") + s = append(s, "NextPageToken: "+fmt.Sprintf("%#v", this.NextPageToken)+",\n") + s = append(s, "}") + return strings.Join(s, "") +} +func (this *GetDLQTasksResponse) GoString() string { + if this == nil { + return "nil" + } + s := make([]string, 0, 6) + s = append(s, "&adminservice.GetDLQTasksResponse{") + if this.DlqTasks != nil { + s = append(s, "DlqTasks: "+fmt.Sprintf("%#v", this.DlqTasks)+",\n") + } + s = append(s, "NextPageToken: "+fmt.Sprintf("%#v", this.NextPageToken)+",\n") + s = append(s, "}") + return strings.Join(s, "") +} func valueToGoStringRequestResponse(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { @@ -9711,41 +10299,289 @@ func (m *GetNamespaceResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func encodeVarintRequestResponse(dAtA []byte, offset int, v uint64) int { - offset -= sovRequestResponse(v) - base := offset - for v >= 1<<7 { - dAtA[offset] = uint8(v&0x7f | 0x80) - v >>= 7 - offset++ +func (m *HistoryTask) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err } - dAtA[offset] = uint8(v) - return base + return dAtA[:n], nil } -func (m *RebuildMutableStateRequest) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Namespace) - if l > 0 { - n += 1 + l + sovRequestResponse(uint64(l)) - } - if m.Execution != nil { - l = m.Execution.Size() - n += 1 + l + sovRequestResponse(uint64(l)) - } - return n + +func (m *HistoryTask) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *RebuildMutableStateResponse) Size() (n int) { - if m == nil { - return 0 - } +func (m *HistoryTask) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i var l int _ = l - return n + if m.Task != nil { + { + size, err := m.Task.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRequestResponse(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.ShardId != 0 { + i = encodeVarintRequestResponse(dAtA, i, uint64(m.ShardId)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *HistoryDLQTaskMetadata) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *HistoryDLQTaskMetadata) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *HistoryDLQTaskMetadata) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.MessageId != 0 { + i = encodeVarintRequestResponse(dAtA, i, uint64(m.MessageId)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *HistoryDLQTask) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *HistoryDLQTask) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *HistoryDLQTask) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Task != nil { + { + size, err := m.Task.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRequestResponse(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.Metadata != nil { + { + size, err := m.Metadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRequestResponse(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *HistoryDLQKey) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *HistoryDLQKey) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *HistoryDLQKey) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.TargetCluster) > 0 { + i -= len(m.TargetCluster) + copy(dAtA[i:], m.TargetCluster) + i = encodeVarintRequestResponse(dAtA, i, uint64(len(m.TargetCluster))) + i-- + dAtA[i] = 0x1a + } + if len(m.SourceCluster) > 0 { + i -= len(m.SourceCluster) + copy(dAtA[i:], m.SourceCluster) + i = encodeVarintRequestResponse(dAtA, i, uint64(len(m.SourceCluster))) + i-- + dAtA[i] = 0x12 + } + if m.Category != 0 { + i = encodeVarintRequestResponse(dAtA, i, uint64(m.Category)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *GetDLQTasksRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *GetDLQTasksRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *GetDLQTasksRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.NextPageToken) > 0 { + i -= len(m.NextPageToken) + copy(dAtA[i:], m.NextPageToken) + i = encodeVarintRequestResponse(dAtA, i, uint64(len(m.NextPageToken))) + i-- + dAtA[i] = 0x1a + } + if m.PageSize != 0 { + i = encodeVarintRequestResponse(dAtA, i, uint64(m.PageSize)) + i-- + dAtA[i] = 0x10 + } + if m.DlqKey != nil { + { + size, err := m.DlqKey.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRequestResponse(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *GetDLQTasksResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *GetDLQTasksResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *GetDLQTasksResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.NextPageToken) > 0 { + i -= len(m.NextPageToken) + copy(dAtA[i:], m.NextPageToken) + i = encodeVarintRequestResponse(dAtA, i, uint64(len(m.NextPageToken))) + i-- + dAtA[i] = 0x12 + } + if len(m.DlqTasks) > 0 { + for iNdEx := len(m.DlqTasks) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.DlqTasks[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRequestResponse(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func encodeVarintRequestResponse(dAtA []byte, offset int, v uint64) int { + offset -= sovRequestResponse(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *RebuildMutableStateRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Namespace) + if l > 0 { + n += 1 + l + sovRequestResponse(uint64(l)) + } + if m.Execution != nil { + l = m.Execution.Size() + n += 1 + l + sovRequestResponse(uint64(l)) + } + return n +} + +func (m *RebuildMutableStateResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n } func (m *ImportWorkflowExecutionRequest) Size() (n int) { @@ -10979,26 +11815,130 @@ func (m *GetNamespaceResponse) Size() (n int) { return n } -func sovRequestResponse(x uint64) (n int) { - return (math_bits.Len64(x|1) + 6) / 7 -} -func sozRequestResponse(x uint64) (n int) { - return sovRequestResponse(uint64((x << 1) ^ uint64((int64(x) >> 63)))) -} -func (this *RebuildMutableStateRequest) String() string { - if this == nil { - return "nil" +func (m *HistoryTask) Size() (n int) { + if m == nil { + return 0 } - s := strings.Join([]string{`&RebuildMutableStateRequest{`, - `Namespace:` + fmt.Sprintf("%v", this.Namespace) + `,`, - `Execution:` + strings.Replace(fmt.Sprintf("%v", this.Execution), "WorkflowExecution", "v1.WorkflowExecution", 1) + `,`, - `}`, - }, "") - return s -} -func (this *RebuildMutableStateResponse) String() string { - if this == nil { - return "nil" + var l int + _ = l + if m.ShardId != 0 { + n += 1 + sovRequestResponse(uint64(m.ShardId)) + } + if m.Task != nil { + l = m.Task.Size() + n += 1 + l + sovRequestResponse(uint64(l)) + } + return n +} + +func (m *HistoryDLQTaskMetadata) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.MessageId != 0 { + n += 1 + sovRequestResponse(uint64(m.MessageId)) + } + return n +} + +func (m *HistoryDLQTask) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Metadata != nil { + l = m.Metadata.Size() + n += 1 + l + sovRequestResponse(uint64(l)) + } + if m.Task != nil { + l = m.Task.Size() + n += 1 + l + sovRequestResponse(uint64(l)) + } + return n +} + +func (m *HistoryDLQKey) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Category != 0 { + n += 1 + sovRequestResponse(uint64(m.Category)) + } + l = len(m.SourceCluster) + if l > 0 { + n += 1 + l + sovRequestResponse(uint64(l)) + } + l = len(m.TargetCluster) + if l > 0 { + n += 1 + l + sovRequestResponse(uint64(l)) + } + return n +} + +func (m *GetDLQTasksRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.DlqKey != nil { + l = m.DlqKey.Size() + n += 1 + l + sovRequestResponse(uint64(l)) + } + if m.PageSize != 0 { + n += 1 + sovRequestResponse(uint64(m.PageSize)) + } + l = len(m.NextPageToken) + if l > 0 { + n += 1 + l + sovRequestResponse(uint64(l)) + } + return n +} + +func (m *GetDLQTasksResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.DlqTasks) > 0 { + for _, e := range m.DlqTasks { + l = e.Size() + n += 1 + l + sovRequestResponse(uint64(l)) + } + } + l = len(m.NextPageToken) + if l > 0 { + n += 1 + l + sovRequestResponse(uint64(l)) + } + return n +} + +func sovRequestResponse(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozRequestResponse(x uint64) (n int) { + return sovRequestResponse(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (this *RebuildMutableStateRequest) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&RebuildMutableStateRequest{`, + `Namespace:` + fmt.Sprintf("%v", this.Namespace) + `,`, + `Execution:` + strings.Replace(fmt.Sprintf("%v", this.Execution), "WorkflowExecution", "v1.WorkflowExecution", 1) + `,`, + `}`, + }, "") + return s +} +func (this *RebuildMutableStateResponse) String() string { + if this == nil { + return "nil" } s := strings.Join([]string{`&RebuildMutableStateResponse{`, `}`, @@ -11867,6 +12807,78 @@ func (this *GetNamespaceResponse) String() string { }, "") return s } +func (this *HistoryTask) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&HistoryTask{`, + `ShardId:` + fmt.Sprintf("%v", this.ShardId) + `,`, + `Task:` + strings.Replace(fmt.Sprintf("%v", this.Task), "DataBlob", "v1.DataBlob", 1) + `,`, + `}`, + }, "") + return s +} +func (this *HistoryDLQTaskMetadata) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&HistoryDLQTaskMetadata{`, + `MessageId:` + fmt.Sprintf("%v", this.MessageId) + `,`, + `}`, + }, "") + return s +} +func (this *HistoryDLQTask) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&HistoryDLQTask{`, + `Metadata:` + strings.Replace(this.Metadata.String(), "HistoryDLQTaskMetadata", "HistoryDLQTaskMetadata", 1) + `,`, + `Task:` + strings.Replace(this.Task.String(), "HistoryTask", "HistoryTask", 1) + `,`, + `}`, + }, "") + return s +} +func (this *HistoryDLQKey) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&HistoryDLQKey{`, + `Category:` + fmt.Sprintf("%v", this.Category) + `,`, + `SourceCluster:` + fmt.Sprintf("%v", this.SourceCluster) + `,`, + `TargetCluster:` + fmt.Sprintf("%v", this.TargetCluster) + `,`, + `}`, + }, "") + return s +} +func (this *GetDLQTasksRequest) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&GetDLQTasksRequest{`, + `DlqKey:` + strings.Replace(this.DlqKey.String(), "HistoryDLQKey", "HistoryDLQKey", 1) + `,`, + `PageSize:` + fmt.Sprintf("%v", this.PageSize) + `,`, + `NextPageToken:` + fmt.Sprintf("%v", this.NextPageToken) + `,`, + `}`, + }, "") + return s +} +func (this *GetDLQTasksResponse) String() string { + if this == nil { + return "nil" + } + repeatedStringForDlqTasks := "[]*HistoryDLQTask{" + for _, f := range this.DlqTasks { + repeatedStringForDlqTasks += strings.Replace(f.String(), "HistoryDLQTask", "HistoryDLQTask", 1) + "," + } + repeatedStringForDlqTasks += "}" + s := strings.Join([]string{`&GetDLQTasksResponse{`, + `DlqTasks:` + repeatedStringForDlqTasks + `,`, + `NextPageToken:` + fmt.Sprintf("%v", this.NextPageToken) + `,`, + `}`, + }, "") + return s +} func valueToStringRequestResponse(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { @@ -20553,6 +21565,710 @@ func (m *GetNamespaceResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *HistoryTask) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: HistoryTask: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: HistoryTask: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ShardId", wireType) + } + m.ShardId = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ShardId |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Task", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRequestResponse + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRequestResponse + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Task == nil { + m.Task = &v1.DataBlob{} + } + if err := m.Task.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRequestResponse(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *HistoryDLQTaskMetadata) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: HistoryDLQTaskMetadata: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: HistoryDLQTaskMetadata: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MessageId", wireType) + } + m.MessageId = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.MessageId |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipRequestResponse(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *HistoryDLQTask) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: HistoryDLQTask: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: HistoryDLQTask: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRequestResponse + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRequestResponse + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Metadata == nil { + m.Metadata = &HistoryDLQTaskMetadata{} + } + if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Task", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRequestResponse + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRequestResponse + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Task == nil { + m.Task = &HistoryTask{} + } + if err := m.Task.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRequestResponse(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *HistoryDLQKey) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: HistoryDLQKey: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: HistoryDLQKey: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Category", wireType) + } + m.Category = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Category |= v14.TaskCategory(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SourceCluster", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthRequestResponse + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthRequestResponse + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SourceCluster = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TargetCluster", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthRequestResponse + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthRequestResponse + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.TargetCluster = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRequestResponse(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *GetDLQTasksRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: GetDLQTasksRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: GetDLQTasksRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DlqKey", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRequestResponse + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRequestResponse + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.DlqKey == nil { + m.DlqKey = &HistoryDLQKey{} + } + if err := m.DlqKey.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field PageSize", wireType) + } + m.PageSize = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.PageSize |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field NextPageToken", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthRequestResponse + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthRequestResponse + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.NextPageToken = append(m.NextPageToken[:0], dAtA[iNdEx:postIndex]...) + if m.NextPageToken == nil { + m.NextPageToken = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRequestResponse(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *GetDLQTasksResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: GetDLQTasksResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: GetDLQTasksResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DlqTasks", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRequestResponse + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRequestResponse + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.DlqTasks = append(m.DlqTasks, &HistoryDLQTask{}) + if err := m.DlqTasks[len(m.DlqTasks)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field NextPageToken", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthRequestResponse + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthRequestResponse + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.NextPageToken = append(m.NextPageToken[:0], dAtA[iNdEx:postIndex]...) + if m.NextPageToken == nil { + m.NextPageToken = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRequestResponse(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipRequestResponse(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 diff --git a/api/adminservice/v1/service.pb.go b/api/adminservice/v1/service.pb.go index 38a523bd730..a8c8606f93a 100644 --- a/api/adminservice/v1/service.pb.go +++ b/api/adminservice/v1/service.pb.go @@ -54,66 +54,67 @@ func init() { } var fileDescriptor_cf5ca5e0c737570d = []byte{ - // 930 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x98, 0xbb, 0x6f, 0x1b, 0x37, - 0x1c, 0xc7, 0xc5, 0xa5, 0x28, 0x08, 0xf7, 0x75, 0x2d, 0xfa, 0xf0, 0x70, 0x7d, 0x0e, 0x9d, 0xa4, - 0xda, 0x6d, 0xdd, 0xfa, 0x6d, 0x59, 0x52, 0xe5, 0xa2, 0x92, 0x5b, 0x4b, 0x7d, 0x00, 0x5d, 0x0a, - 0x4a, 0xf7, 0xb3, 0x7d, 0xf0, 0x49, 0x77, 0x25, 0x79, 0x72, 0x3d, 0xb5, 0x4b, 0x81, 0x00, 0x01, - 0x82, 0x04, 0x08, 0x10, 0x20, 0x40, 0xa6, 0x00, 0x41, 0x02, 0xe4, 0x6f, 0x08, 0x90, 0xcd, 0xa3, - 0x47, 0x8f, 0xb1, 0xbc, 0x64, 0x34, 0xf2, 0x17, 0x04, 0xe7, 0x13, 0xe9, 0x3b, 0x89, 0x72, 0xc8, - 0x93, 0x37, 0xcb, 0xe2, 0xe7, 0xcb, 0xcf, 0x91, 0x47, 0xfe, 0x48, 0xe1, 0x19, 0x0e, 0x9d, 0xc0, - 0xa7, 0xc4, 0x2b, 0x30, 0xa0, 0x3d, 0xa0, 0x05, 0x12, 0xb8, 0x05, 0xe2, 0x74, 0xdc, 0x6e, 0xf4, - 0xd9, 0x6d, 0x43, 0xa1, 0x37, 0x53, 0x18, 0xfc, 0x99, 0x0f, 0xa8, 0xcf, 0x7d, 0xeb, 0x73, 0x81, - 0xe4, 0x63, 0x24, 0x4f, 0x02, 0x37, 0x9f, 0x44, 0xf2, 0xbd, 0x99, 0xe9, 0x05, 0x9d, 0x5c, 0x0a, - 0x7f, 0x87, 0xc0, 0xf8, 0x5f, 0x14, 0x58, 0xe0, 0x77, 0xd9, 0xa0, 0x83, 0xd9, 0x17, 0x5f, 0xe0, - 0xa9, 0x62, 0xd4, 0xb4, 0x19, 0x37, 0xb5, 0xee, 0x22, 0xfc, 0x6e, 0x03, 0x5a, 0xa1, 0xeb, 0x39, - 0xf5, 0x90, 0x93, 0x96, 0x07, 0x4d, 0x4e, 0x38, 0x58, 0xab, 0x79, 0x0d, 0x95, 0xbc, 0x82, 0x6c, - 0xc4, 0x1d, 0x4f, 0xaf, 0x65, 0x0f, 0x88, 0x8d, 0x3f, 0xcb, 0x59, 0x0f, 0x10, 0xfe, 0xe0, 0xc7, - 0x28, 0x84, 0xff, 0xe1, 0xd3, 0xbd, 0x6d, 0xcf, 0xdf, 0xaf, 0xfc, 0x03, 0xed, 0x90, 0xbb, 0x7e, - 0xd7, 0x2a, 0x69, 0xe5, 0x8f, 0xa1, 0x85, 0x64, 0x79, 0xb2, 0x10, 0x29, 0x7a, 0x0f, 0xe1, 0xf7, - 0xca, 0xc0, 0xda, 0xd4, 0x6d, 0x41, 0x6a, 0x18, 0xf5, 0x46, 0x41, 0x85, 0x0a, 0xc5, 0xe2, 0x04, - 0x09, 0xd2, 0x2f, 0x9a, 0x65, 0xd1, 0x64, 0xc3, 0x65, 0xdc, 0xa7, 0x07, 0x1b, 0x3e, 0xe3, 0x9a, - 0xb3, 0xac, 0x20, 0xcd, 0x66, 0x59, 0x19, 0x20, 0xe5, 0x0e, 0xf0, 0xeb, 0x55, 0xe0, 0xcd, 0x5d, - 0x42, 0x1d, 0xeb, 0x1b, 0xad, 0x3c, 0xd1, 0x5c, 0x58, 0x7c, 0x6b, 0x48, 0xc9, 0xae, 0xff, 0xc5, - 0xb8, 0xe4, 0xf9, 0x0c, 0xe2, 0xce, 0xe7, 0xb4, 0x62, 0x2e, 0x00, 0xd1, 0xfd, 0x77, 0xc6, 0x9c, - 0x14, 0xb8, 0x85, 0xf0, 0xdb, 0x35, 0x97, 0xf1, 0xc1, 0xc8, 0xfc, 0x4a, 0xd8, 0x1e, 0xb3, 0x96, - 0xb4, 0xf2, 0x86, 0x31, 0x61, 0xb3, 0x9c, 0x91, 0x4e, 0x0e, 0x4a, 0x03, 0x3a, 0x7e, 0x0f, 0xa2, - 0x2f, 0x34, 0x07, 0xe5, 0x02, 0x30, 0x1b, 0x94, 0x24, 0x27, 0x05, 0x9e, 0x22, 0xfc, 0x49, 0x15, - 0x14, 0x0b, 0x8e, 0xec, 0x0f, 0x94, 0x7f, 0x9f, 0xb5, 0x6a, 0xba, 0x73, 0x7e, 0x69, 0x8c, 0xb0, - 0xad, 0x5f, 0x51, 0x9a, 0x7c, 0x86, 0xfb, 0x08, 0xbf, 0x5f, 0x05, 0xde, 0x80, 0xc0, 0x73, 0xdb, - 0x24, 0x6a, 0x58, 0x07, 0xc6, 0xc8, 0x0e, 0x30, 0x6b, 0x5d, 0xb7, 0x2f, 0x05, 0x2c, 0x7c, 0x4b, - 0x13, 0x65, 0x48, 0xcb, 0x27, 0x08, 0x7f, 0x5c, 0x05, 0xbe, 0x49, 0x3a, 0xc0, 0x02, 0xd2, 0x06, - 0x95, 0xee, 0x4f, 0xba, 0x5d, 0x5d, 0x96, 0x22, 0xbc, 0x6b, 0x57, 0x13, 0x26, 0x1f, 0xe0, 0x31, - 0xc2, 0x1f, 0x55, 0x81, 0x97, 0x6b, 0x5b, 0x2a, 0xf5, 0x8a, 0x6e, 0x6f, 0x6a, 0x5e, 0x48, 0xff, - 0x30, 0x69, 0x8c, 0xd4, 0xbd, 0x86, 0xf0, 0x1b, 0x0d, 0x20, 0x41, 0xe0, 0x1d, 0x54, 0x7a, 0xd0, - 0xe5, 0xcc, 0x9a, 0xd7, 0x5c, 0x26, 0x09, 0x46, 0x68, 0x2d, 0x64, 0x41, 0x53, 0x25, 0xa1, 0xe8, - 0x38, 0x4d, 0x20, 0xb4, 0xbd, 0x5b, 0xe4, 0x9c, 0xba, 0xad, 0x90, 0x03, 0xd3, 0x2c, 0x09, 0x0a, - 0xd2, 0xac, 0x24, 0x28, 0x03, 0x52, 0xab, 0x27, 0xde, 0x1a, 0x46, 0xfc, 0xd6, 0x0d, 0xf6, 0x95, - 0x71, 0x8a, 0xa5, 0x89, 0x32, 0x52, 0x43, 0x18, 0x15, 0x95, 0x6c, 0x43, 0xa8, 0x20, 0xcd, 0x86, - 0x50, 0x19, 0x20, 0xe5, 0x6e, 0x20, 0xfc, 0x96, 0xa8, 0xbb, 0x25, 0x2f, 0x64, 0x1c, 0xa8, 0xb5, - 0x68, 0x54, 0xad, 0x07, 0x94, 0x90, 0x5a, 0xca, 0x06, 0x4b, 0xa1, 0xff, 0x11, 0x9e, 0x8a, 0xaa, - 0xce, 0xe0, 0x1b, 0x66, 0x7d, 0xaf, 0x5d, 0xa8, 0x04, 0x22, 0x54, 0xe6, 0x33, 0x90, 0xd2, 0xe3, - 0x0e, 0xc2, 0x56, 0xe2, 0xab, 0x3a, 0x74, 0x5a, 0x91, 0xcd, 0x8a, 0x69, 0xe6, 0x00, 0x14, 0x4e, - 0xab, 0x99, 0x79, 0x69, 0xf6, 0x08, 0xe1, 0x0f, 0x8b, 0x8e, 0xf3, 0x33, 0xfd, 0x2d, 0x70, 0xce, - 0xcf, 0x6f, 0x1d, 0x9f, 0xcb, 0xb9, 0x2b, 0xeb, 0x2e, 0x2b, 0x25, 0x2e, 0x2c, 0x2b, 0x13, 0xa6, - 0xa4, 0xde, 0xfd, 0x78, 0x81, 0xa4, 0x35, 0x57, 0x0d, 0x96, 0x96, 0xd2, 0x70, 0x2d, 0x7b, 0x80, - 0x94, 0xbb, 0x8e, 0xf0, 0x9b, 0xf1, 0x76, 0x2c, 0x4b, 0xc1, 0x82, 0xc1, 0x1e, 0x3e, 0xbc, 0xff, - 0x2f, 0x66, 0x62, 0x53, 0x67, 0xbc, 0x5f, 0x42, 0xba, 0x03, 0x49, 0x1f, 0xbd, 0xd5, 0x34, 0x8c, - 0x99, 0x9d, 0xf1, 0x46, 0xe9, 0x94, 0x53, 0x1d, 0x32, 0x39, 0x0d, 0x63, 0x66, 0x4e, 0xa3, 0x74, - 0xea, 0x12, 0xd5, 0x80, 0x6d, 0x0a, 0x6c, 0x57, 0x9c, 0xb2, 0xe2, 0xf3, 0xb0, 0xee, 0x2b, 0x31, - 0x8a, 0x9a, 0x5d, 0xa2, 0xd4, 0x09, 0x43, 0x45, 0x89, 0x41, 0xd7, 0x49, 0x14, 0xf9, 0xd8, 0x50, - 0xb7, 0x28, 0xa9, 0x60, 0xd3, 0xa2, 0xa4, 0xce, 0x90, 0x96, 0xb7, 0x11, 0x7e, 0xa7, 0x0a, 0x3c, - 0xfa, 0xf7, 0x56, 0x08, 0x21, 0xc4, 0x82, 0xcb, 0xba, 0xaf, 0x70, 0x9a, 0x13, 0x6e, 0x2b, 0x59, - 0xf1, 0xd4, 0x55, 0xbe, 0x0c, 0x1e, 0x70, 0xc8, 0x7a, 0x95, 0x1f, 0x43, 0x9b, 0x5d, 0xe5, 0xc7, - 0x86, 0x48, 0xd1, 0x43, 0x84, 0x3f, 0x6d, 0x72, 0x0a, 0xa4, 0x23, 0x5a, 0xa9, 0x4e, 0x96, 0x7a, - 0xf7, 0x85, 0x57, 0xe6, 0x08, 0xf9, 0xcd, 0xab, 0x8a, 0x13, 0x8f, 0xf1, 0x25, 0xfa, 0x0a, 0x9d, - 0x57, 0xdc, 0xe4, 0x51, 0x5a, 0xb3, 0xe2, 0xa6, 0x4f, 0xdf, 0x26, 0x15, 0x37, 0x4d, 0x0a, 0x97, - 0x75, 0xef, 0xe8, 0xc4, 0xce, 0x1d, 0x9f, 0xd8, 0xb9, 0xb3, 0x13, 0x1b, 0xfd, 0xd7, 0xb7, 0xd1, - 0xc3, 0xbe, 0x8d, 0x0e, 0xfb, 0x36, 0x3a, 0xea, 0xdb, 0xe8, 0x59, 0xdf, 0x46, 0xcf, 0xfb, 0x76, - 0xee, 0xac, 0x6f, 0xa3, 0x9b, 0xa7, 0x76, 0xee, 0xe8, 0xd4, 0xce, 0x1d, 0x9f, 0xda, 0xb9, 0x3f, - 0xe7, 0x76, 0xfc, 0x8b, 0x4e, 0x5d, 0xff, 0x92, 0x1f, 0xbb, 0x16, 0x93, 0x9f, 0x5b, 0xaf, 0x9d, - 0xff, 0xd2, 0xf5, 0xf5, 0xcb, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9f, 0x93, 0xc0, 0x16, 0x7f, 0x13, - 0x00, 0x00, + // 949 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x98, 0xcb, 0x6b, 0x23, 0x37, + 0x1c, 0xc7, 0xad, 0x4b, 0x29, 0x6a, 0xfa, 0x9a, 0x96, 0x3e, 0x72, 0x98, 0xbe, 0x28, 0xf4, 0x64, + 0x37, 0x69, 0x9b, 0xf7, 0xcb, 0xb1, 0x5d, 0xa7, 0xd4, 0x4e, 0x1b, 0xbb, 0x0f, 0xe8, 0xa5, 0xc8, + 0x9e, 0x5f, 0x92, 0x21, 0x63, 0xcf, 0x54, 0xd2, 0x38, 0xcd, 0xa9, 0xa5, 0x50, 0x28, 0x14, 0x4a, + 0x0b, 0x85, 0x42, 0x61, 0x4f, 0x0b, 0xcb, 0x2e, 0xec, 0xdf, 0xb0, 0xb0, 0xb7, 0x1c, 0x73, 0xcc, + 0x71, 0xe3, 0x5c, 0xf6, 0x98, 0xdb, 0x5e, 0x97, 0xc9, 0x58, 0xca, 0x8c, 0x2d, 0x67, 0xa5, 0x71, + 0x6e, 0x71, 0xac, 0xcf, 0x57, 0x9f, 0xd1, 0x48, 0xfa, 0x49, 0xc6, 0x33, 0x1c, 0x3a, 0x81, 0x4f, + 0x89, 0x57, 0x60, 0x40, 0x7b, 0x40, 0x0b, 0x24, 0x70, 0x0b, 0xc4, 0xe9, 0xb8, 0xdd, 0xe8, 0xb3, + 0xdb, 0x86, 0x42, 0x6f, 0xa6, 0x30, 0xf8, 0x33, 0x1f, 0x50, 0x9f, 0xfb, 0xd6, 0x07, 0x02, 0xc9, + 0xc7, 0x48, 0x9e, 0x04, 0x6e, 0x3e, 0x89, 0xe4, 0x7b, 0x33, 0xd3, 0x4b, 0x3a, 0xb9, 0x14, 0x7e, + 0x0a, 0x81, 0xf1, 0x1f, 0x29, 0xb0, 0xc0, 0xef, 0xb2, 0x41, 0x07, 0xb3, 0x4f, 0x3e, 0xc4, 0x53, + 0xc5, 0xa8, 0x69, 0x33, 0x6e, 0x6a, 0xfd, 0x8f, 0xf0, 0x6b, 0x0d, 0x68, 0x85, 0xae, 0xe7, 0xd4, + 0x43, 0x4e, 0x5a, 0x1e, 0x34, 0x39, 0xe1, 0x60, 0xad, 0xe7, 0x35, 0x54, 0xf2, 0x0a, 0xb2, 0x11, + 0x77, 0x3c, 0xbd, 0x91, 0x3d, 0x20, 0x36, 0x7e, 0x3f, 0x67, 0xdd, 0x41, 0xf8, 0xcd, 0x2f, 0xa2, + 0x10, 0xfe, 0xbd, 0x4f, 0x0f, 0x76, 0x3d, 0xff, 0xb0, 0xf2, 0x33, 0xb4, 0x43, 0xee, 0xfa, 0x5d, + 0xab, 0xa4, 0x95, 0x3f, 0x86, 0x16, 0x92, 0xe5, 0xc9, 0x42, 0xa4, 0xe8, 0x2d, 0x84, 0x5f, 0x2f, + 0x03, 0x6b, 0x53, 0xb7, 0x05, 0xa9, 0x61, 0xd4, 0x1b, 0x05, 0x15, 0x2a, 0x14, 0x8b, 0x13, 0x24, + 0x48, 0xbf, 0xe8, 0x2d, 0x8b, 0x26, 0x5b, 0x2e, 0xe3, 0x3e, 0x3d, 0xda, 0xf2, 0x19, 0xd7, 0x7c, + 0xcb, 0x0a, 0xd2, 0xec, 0x2d, 0x2b, 0x03, 0xa4, 0xdc, 0x11, 0x7e, 0xbe, 0x0a, 0xbc, 0xb9, 0x4f, + 0xa8, 0x63, 0x7d, 0xaa, 0x95, 0x27, 0x9a, 0x0b, 0x8b, 0xcf, 0x0c, 0x29, 0xd9, 0xf5, 0x2f, 0x18, + 0x97, 0x3c, 0x9f, 0x41, 0xdc, 0xf9, 0x9c, 0x56, 0xcc, 0x15, 0x20, 0xba, 0x9f, 0x37, 0xe6, 0xa4, + 0xc0, 0x3f, 0x08, 0xbf, 0x52, 0x73, 0x19, 0x1f, 0x8c, 0xcc, 0x37, 0x84, 0x1d, 0x30, 0x6b, 0x45, + 0x2b, 0x6f, 0x18, 0x13, 0x36, 0xab, 0x19, 0xe9, 0xe4, 0xa0, 0x34, 0xa0, 0xe3, 0xf7, 0x20, 0xfa, + 0x42, 0x73, 0x50, 0xae, 0x00, 0xb3, 0x41, 0x49, 0x72, 0x52, 0xe0, 0x21, 0xc2, 0xef, 0x56, 0x41, + 0xb1, 0xe0, 0xc8, 0xe1, 0x40, 0xf9, 0xbb, 0x59, 0xab, 0xa6, 0xfb, 0xce, 0xaf, 0x8d, 0x11, 0xb6, + 0xf5, 0x1b, 0x4a, 0x93, 0xcf, 0x70, 0x1b, 0xe1, 0x37, 0xaa, 0xc0, 0x1b, 0x10, 0x78, 0x6e, 0x9b, + 0x44, 0x0d, 0xeb, 0xc0, 0x18, 0xd9, 0x03, 0x66, 0x6d, 0xea, 0xf6, 0xa5, 0x80, 0x85, 0x6f, 0x69, + 0xa2, 0x0c, 0x69, 0xf9, 0x00, 0xe1, 0x77, 0xaa, 0xc0, 0xb7, 0x49, 0x07, 0x58, 0x40, 0xda, 0xa0, + 0xd2, 0xfd, 0x52, 0xb7, 0xab, 0xeb, 0x52, 0x84, 0x77, 0xed, 0x66, 0xc2, 0xe4, 0x03, 0xdc, 0x47, + 0xf8, 0xed, 0x2a, 0xf0, 0x72, 0x6d, 0x47, 0xa5, 0x5e, 0xd1, 0xed, 0x4d, 0xcd, 0x0b, 0xe9, 0xcf, + 0x27, 0x8d, 0x91, 0xba, 0x7f, 0x20, 0xfc, 0x62, 0x03, 0x48, 0x10, 0x78, 0x47, 0x95, 0x1e, 0x74, + 0x39, 0xb3, 0x16, 0x35, 0x97, 0x49, 0x82, 0x11, 0x5a, 0x4b, 0x59, 0xd0, 0x54, 0x49, 0x28, 0x3a, + 0x4e, 0x13, 0x08, 0x6d, 0xef, 0x17, 0x39, 0xa7, 0x6e, 0x2b, 0xe4, 0xc0, 0x34, 0x4b, 0x82, 0x82, + 0x34, 0x2b, 0x09, 0xca, 0x80, 0xd4, 0xea, 0x89, 0xb7, 0x86, 0x11, 0xbf, 0x4d, 0x83, 0x7d, 0x65, + 0x9c, 0x62, 0x69, 0xa2, 0x8c, 0xd4, 0x10, 0x46, 0x45, 0x25, 0xdb, 0x10, 0x2a, 0x48, 0xb3, 0x21, + 0x54, 0x06, 0x48, 0xb9, 0xbf, 0x10, 0x7e, 0x59, 0xd4, 0xdd, 0x92, 0x17, 0x32, 0x0e, 0xd4, 0x5a, + 0x36, 0xaa, 0xd6, 0x03, 0x4a, 0x48, 0xad, 0x64, 0x83, 0xa5, 0xd0, 0xef, 0x08, 0x4f, 0x45, 0x55, + 0x67, 0xf0, 0x0d, 0xb3, 0x16, 0xb4, 0x0b, 0x95, 0x40, 0x84, 0xca, 0x62, 0x06, 0x52, 0x7a, 0xfc, + 0x87, 0xb0, 0x95, 0xf8, 0xaa, 0x0e, 0x9d, 0x56, 0x64, 0xb3, 0x66, 0x9a, 0x39, 0x00, 0x85, 0xd3, + 0x7a, 0x66, 0x5e, 0x9a, 0xdd, 0x43, 0xf8, 0xad, 0xa2, 0xe3, 0x7c, 0x45, 0xbf, 0x0d, 0x9c, 0xcb, + 0xf3, 0x5b, 0xc7, 0xe7, 0xf2, 0xdd, 0x95, 0x75, 0x97, 0x95, 0x12, 0x17, 0x96, 0x95, 0x09, 0x53, + 0x52, 0x73, 0x3f, 0x5e, 0x20, 0x69, 0xcd, 0x75, 0x83, 0xa5, 0xa5, 0x34, 0xdc, 0xc8, 0x1e, 0x20, + 0xe5, 0xfe, 0x44, 0xf8, 0xa5, 0x78, 0x3b, 0x96, 0xa5, 0x60, 0xc9, 0x60, 0x0f, 0x1f, 0xde, 0xff, + 0x97, 0x33, 0xb1, 0xa9, 0x33, 0xde, 0xd7, 0x21, 0xdd, 0x83, 0xa4, 0x8f, 0xde, 0x6a, 0x1a, 0xc6, + 0xcc, 0xce, 0x78, 0xa3, 0x74, 0xca, 0xa9, 0x0e, 0x99, 0x9c, 0x86, 0x31, 0x33, 0xa7, 0x51, 0x3a, + 0x75, 0x89, 0x6a, 0xc0, 0x2e, 0x05, 0xb6, 0x2f, 0x4e, 0x59, 0xf1, 0x79, 0x58, 0x77, 0x4a, 0x8c, + 0xa2, 0x66, 0x97, 0x28, 0x75, 0xc2, 0x50, 0x51, 0x62, 0xd0, 0x75, 0x12, 0x45, 0x3e, 0x36, 0xd4, + 0x2d, 0x4a, 0x2a, 0xd8, 0xb4, 0x28, 0xa9, 0x33, 0xa4, 0xe5, 0xbf, 0x08, 0xbf, 0x5a, 0x05, 0x1e, + 0xfd, 0x7b, 0x27, 0x84, 0x10, 0x62, 0xc1, 0x55, 0xdd, 0x29, 0x9c, 0xe6, 0x84, 0xdb, 0x5a, 0x56, + 0x3c, 0x75, 0x95, 0x2f, 0x83, 0x07, 0x1c, 0xb2, 0x5e, 0xe5, 0xc7, 0xd0, 0x66, 0x57, 0xf9, 0xb1, + 0x21, 0x52, 0xf4, 0x18, 0xe1, 0xf7, 0x9a, 0x9c, 0x02, 0xe9, 0x88, 0x56, 0xaa, 0x93, 0xa5, 0xde, + 0x7d, 0xe1, 0x99, 0x39, 0x42, 0x7e, 0xfb, 0xa6, 0xe2, 0xc4, 0x63, 0x7c, 0x84, 0x3e, 0x46, 0x97, + 0x15, 0x37, 0x79, 0x94, 0xd6, 0xac, 0xb8, 0xe9, 0xd3, 0xb7, 0x49, 0xc5, 0x4d, 0x93, 0x72, 0x48, + 0x7f, 0x43, 0xf8, 0x85, 0x78, 0x77, 0x8c, 0x27, 0xe3, 0xbc, 0xc1, 0x7e, 0x9a, 0x9a, 0x86, 0x0b, + 0xe6, 0xa0, 0x90, 0xd8, 0xf4, 0x4e, 0xce, 0xec, 0xdc, 0xe9, 0x99, 0x9d, 0xbb, 0x38, 0xb3, 0xd1, + 0xaf, 0x7d, 0x1b, 0xdd, 0xed, 0xdb, 0xe8, 0xb8, 0x6f, 0xa3, 0x93, 0xbe, 0x8d, 0x1e, 0xf5, 0x6d, + 0xf4, 0xb8, 0x6f, 0xe7, 0x2e, 0xfa, 0x36, 0xfa, 0xfb, 0xdc, 0xce, 0x9d, 0x9c, 0xdb, 0xb9, 0xd3, + 0x73, 0x3b, 0xf7, 0xc3, 0xdc, 0x9e, 0x7f, 0xd5, 0xa7, 0xeb, 0x5f, 0xf3, 0x8b, 0xdb, 0x72, 0xf2, + 0x73, 0xeb, 0xb9, 0xcb, 0x9f, 0xdb, 0x3e, 0x79, 0x1a, 0x00, 0x00, 0xff, 0xff, 0x13, 0xf1, 0x55, + 0xca, 0x04, 0x14, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -192,6 +193,7 @@ type AdminServiceClient interface { DeleteWorkflowExecution(ctx context.Context, in *DeleteWorkflowExecutionRequest, opts ...grpc.CallOption) (*DeleteWorkflowExecutionResponse, error) StreamWorkflowReplicationMessages(ctx context.Context, opts ...grpc.CallOption) (AdminService_StreamWorkflowReplicationMessagesClient, error) GetNamespace(ctx context.Context, in *GetNamespaceRequest, opts ...grpc.CallOption) (*GetNamespaceResponse, error) + GetDLQTasks(ctx context.Context, in *GetDLQTasksRequest, opts ...grpc.CallOption) (*GetDLQTasksResponse, error) } type adminServiceClient struct { @@ -494,6 +496,15 @@ func (c *adminServiceClient) GetNamespace(ctx context.Context, in *GetNamespaceR return out, nil } +func (c *adminServiceClient) GetDLQTasks(ctx context.Context, in *GetDLQTasksRequest, opts ...grpc.CallOption) (*GetDLQTasksResponse, error) { + out := new(GetDLQTasksResponse) + err := c.cc.Invoke(ctx, "/temporal.server.api.adminservice.v1.AdminService/GetDLQTasks", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // AdminServiceServer is the server API for AdminService service. type AdminServiceServer interface { // RebuildMutableState attempts to rebuild mutable state according to persisted history events. @@ -560,6 +571,7 @@ type AdminServiceServer interface { DeleteWorkflowExecution(context.Context, *DeleteWorkflowExecutionRequest) (*DeleteWorkflowExecutionResponse, error) StreamWorkflowReplicationMessages(AdminService_StreamWorkflowReplicationMessagesServer) error GetNamespace(context.Context, *GetNamespaceRequest) (*GetNamespaceResponse, error) + GetDLQTasks(context.Context, *GetDLQTasksRequest) (*GetDLQTasksResponse, error) } // UnimplementedAdminServiceServer can be embedded to have forward compatible implementations. @@ -656,6 +668,9 @@ func (*UnimplementedAdminServiceServer) StreamWorkflowReplicationMessages(srv Ad func (*UnimplementedAdminServiceServer) GetNamespace(ctx context.Context, req *GetNamespaceRequest) (*GetNamespaceResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetNamespace not implemented") } +func (*UnimplementedAdminServiceServer) GetDLQTasks(ctx context.Context, req *GetDLQTasksRequest) (*GetDLQTasksResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetDLQTasks not implemented") +} func RegisterAdminServiceServer(s *grpc.Server, srv AdminServiceServer) { s.RegisterService(&_AdminService_serviceDesc, srv) @@ -1209,6 +1224,24 @@ func _AdminService_GetNamespace_Handler(srv interface{}, ctx context.Context, de return interceptor(ctx, in, info, handler) } +func _AdminService_GetDLQTasks_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetDLQTasksRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(AdminServiceServer).GetDLQTasks(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/temporal.server.api.adminservice.v1.AdminService/GetDLQTasks", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(AdminServiceServer).GetDLQTasks(ctx, req.(*GetDLQTasksRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _AdminService_serviceDesc = grpc.ServiceDesc{ ServiceName: "temporal.server.api.adminservice.v1.AdminService", HandlerType: (*AdminServiceServer)(nil), @@ -1329,6 +1362,10 @@ var _AdminService_serviceDesc = grpc.ServiceDesc{ MethodName: "GetNamespace", Handler: _AdminService_GetNamespace_Handler, }, + { + MethodName: "GetDLQTasks", + Handler: _AdminService_GetDLQTasks_Handler, + }, }, Streams: []grpc.StreamDesc{ { diff --git a/api/adminservicemock/v1/service.pb.mock.go b/api/adminservicemock/v1/service.pb.mock.go index fc913cc690b..b03f708b064 100644 --- a/api/adminservicemock/v1/service.pb.mock.go +++ b/api/adminservicemock/v1/service.pb.mock.go @@ -241,6 +241,26 @@ func (mr *MockAdminServiceClientMockRecorder) GetDLQReplicationMessages(ctx, in return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetDLQReplicationMessages", reflect.TypeOf((*MockAdminServiceClient)(nil).GetDLQReplicationMessages), varargs...) } +// GetDLQTasks mocks base method. +func (m *MockAdminServiceClient) GetDLQTasks(ctx context.Context, in *adminservice.GetDLQTasksRequest, opts ...grpc.CallOption) (*adminservice.GetDLQTasksResponse, error) { + m.ctrl.T.Helper() + varargs := []interface{}{ctx, in} + for _, a := range opts { + varargs = append(varargs, a) + } + ret := m.ctrl.Call(m, "GetDLQTasks", varargs...) + ret0, _ := ret[0].(*adminservice.GetDLQTasksResponse) + ret1, _ := ret[1].(error) + return ret0, ret1 +} + +// GetDLQTasks indicates an expected call of GetDLQTasks. +func (mr *MockAdminServiceClientMockRecorder) GetDLQTasks(ctx, in interface{}, opts ...interface{}) *gomock.Call { + mr.mock.ctrl.T.Helper() + varargs := append([]interface{}{ctx, in}, opts...) + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetDLQTasks", reflect.TypeOf((*MockAdminServiceClient)(nil).GetDLQTasks), varargs...) +} + // GetNamespace mocks base method. func (m *MockAdminServiceClient) GetNamespace(ctx context.Context, in *adminservice.GetNamespaceRequest, opts ...grpc.CallOption) (*adminservice.GetNamespaceResponse, error) { m.ctrl.T.Helper() @@ -956,6 +976,21 @@ func (mr *MockAdminServiceServerMockRecorder) GetDLQReplicationMessages(arg0, ar return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetDLQReplicationMessages", reflect.TypeOf((*MockAdminServiceServer)(nil).GetDLQReplicationMessages), arg0, arg1) } +// GetDLQTasks mocks base method. +func (m *MockAdminServiceServer) GetDLQTasks(arg0 context.Context, arg1 *adminservice.GetDLQTasksRequest) (*adminservice.GetDLQTasksResponse, error) { + m.ctrl.T.Helper() + ret := m.ctrl.Call(m, "GetDLQTasks", arg0, arg1) + ret0, _ := ret[0].(*adminservice.GetDLQTasksResponse) + ret1, _ := ret[1].(error) + return ret0, ret1 +} + +// GetDLQTasks indicates an expected call of GetDLQTasks. +func (mr *MockAdminServiceServerMockRecorder) GetDLQTasks(arg0, arg1 interface{}) *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetDLQTasks", reflect.TypeOf((*MockAdminServiceServer)(nil).GetDLQTasks), arg0, arg1) +} + // GetNamespace mocks base method. func (m *MockAdminServiceServer) GetNamespace(arg0 context.Context, arg1 *adminservice.GetNamespaceRequest) (*adminservice.GetNamespaceResponse, error) { m.ctrl.T.Helper() diff --git a/client/admin/client_gen.go b/client/admin/client_gen.go index b1f4d051083..5de9d534019 100644 --- a/client/admin/client_gen.go +++ b/client/admin/client_gen.go @@ -123,6 +123,16 @@ func (c *clientImpl) GetDLQReplicationMessages( return c.client.GetDLQReplicationMessages(ctx, request, opts...) } +func (c *clientImpl) GetDLQTasks( + ctx context.Context, + request *adminservice.GetDLQTasksRequest, + opts ...grpc.CallOption, +) (*adminservice.GetDLQTasksResponse, error) { + ctx, cancel := c.createContext(ctx) + defer cancel() + return c.client.GetDLQTasks(ctx, request, opts...) +} + func (c *clientImpl) GetNamespace( ctx context.Context, request *adminservice.GetNamespaceRequest, diff --git a/client/admin/metric_client_gen.go b/client/admin/metric_client_gen.go index 05c0f03f0bf..0fabbd433cb 100644 --- a/client/admin/metric_client_gen.go +++ b/client/admin/metric_client_gen.go @@ -159,6 +159,20 @@ func (c *metricClient) GetDLQReplicationMessages( return c.client.GetDLQReplicationMessages(ctx, request, opts...) } +func (c *metricClient) GetDLQTasks( + ctx context.Context, + request *adminservice.GetDLQTasksRequest, + opts ...grpc.CallOption, +) (_ *adminservice.GetDLQTasksResponse, retError error) { + + metricsHandler, startTime := c.startMetricsRecording(ctx, "AdminClientGetDLQTasks") + defer func() { + c.finishMetricsRecording(metricsHandler, startTime, retError) + }() + + return c.client.GetDLQTasks(ctx, request, opts...) +} + func (c *metricClient) GetNamespace( ctx context.Context, request *adminservice.GetNamespaceRequest, diff --git a/client/admin/retryable_client_gen.go b/client/admin/retryable_client_gen.go index 50369e1a3b6..d43b8398941 100644 --- a/client/admin/retryable_client_gen.go +++ b/client/admin/retryable_client_gen.go @@ -170,6 +170,21 @@ func (c *retryableClient) GetDLQReplicationMessages( return resp, err } +func (c *retryableClient) GetDLQTasks( + ctx context.Context, + request *adminservice.GetDLQTasksRequest, + opts ...grpc.CallOption, +) (*adminservice.GetDLQTasksResponse, error) { + var resp *adminservice.GetDLQTasksResponse + op := func(ctx context.Context) error { + var err error + resp, err = c.client.GetDLQTasks(ctx, request, opts...) + return err + } + err := backoff.ThrottleRetryContext(ctx, op, c.policy, c.isRetryable) + return resp, err +} + func (c *retryableClient) GetNamespace( ctx context.Context, request *adminservice.GetNamespaceRequest, diff --git a/proto/internal/temporal/server/api/adminservice/v1/request_response.proto b/proto/internal/temporal/server/api/adminservice/v1/request_response.proto index febe7d2bcfb..c3aa9117c7a 100644 --- a/proto/internal/temporal/server/api/adminservice/v1/request_response.proto +++ b/proto/internal/temporal/server/api/adminservice/v1/request_response.proto @@ -419,4 +419,44 @@ message GetNamespaceResponse { int64 failover_version = 7; repeated temporal.api.replication.v1.FailoverStatus failover_history = 8; bool is_global_namespace = 9; -} \ No newline at end of file +} + +message HistoryTask { + // shard_id is included to avoid having to deserialize the task blob. + int32 shard_id = 1; + temporal.api.common.v1.DataBlob task = 2; +} + +message HistoryDLQTaskMetadata { + // message_id is the zero-indexed sequence number of the message in the queue that contains this history task. + int64 message_id = 1; +} + +// HistoryDLQTask is a history task that has been moved to the DLQ, so it also has a message ID (index within that +// queue). +message HistoryDLQTask { + HistoryDLQTaskMetadata metadata = 1; + HistoryTask task = 2; +} + +// HistoryDLQKey is a compound key that identifies a history DLQ. +message HistoryDLQKey { + temporal.server.api.enums.v1.TaskCategory category = 1; + string source_cluster = 2; + string target_cluster = 3; +} + +message GetDLQTasksRequest { + HistoryDLQKey dlq_key = 1; + // page_size must be positive. Up to this many tasks will be returned. + int32 page_size = 2; + bytes next_page_token = 3; +} + +message GetDLQTasksResponse { + repeated HistoryDLQTask dlq_tasks = 1; + // next_page_token is empty if there are no more results. However, the converse is not true. If there are no more + // results, this field may still be non-empty. This is to avoid having to do a count query to determine whether + // there are more results. + bytes next_page_token = 2; +} diff --git a/proto/internal/temporal/server/api/adminservice/v1/service.proto b/proto/internal/temporal/server/api/adminservice/v1/service.proto index acfa739cef0..78c002ea449 100644 --- a/proto/internal/temporal/server/api/adminservice/v1/service.proto +++ b/proto/internal/temporal/server/api/adminservice/v1/service.proto @@ -150,5 +150,8 @@ service AdminService { rpc GetNamespace(GetNamespaceRequest) returns (GetNamespaceResponse) { } + + rpc GetDLQTasks (GetDLQTasksRequest) returns (GetDLQTasksResponse) { + } } diff --git a/service/frontend/admin_handler.go b/service/frontend/admin_handler.go index 46f167e5a0b..bba80047d06 100644 --- a/service/frontend/admin_handler.go +++ b/service/frontend/admin_handler.go @@ -1760,6 +1760,40 @@ func (adh *AdminHandler) GetNamespace(ctx context.Context, request *adminservice return nsResponse, nil } +func (adh *AdminHandler) GetDLQTasks( + ctx context.Context, + request *adminservice.GetDLQTasksRequest, +) (*adminservice.GetDLQTasksResponse, error) { + response, err := adh.historyClient.GetDLQTasks(ctx, &historyservice.GetDLQTasksRequest{ + DlqKey: &historyservice.HistoryDLQKey{ + Category: request.DlqKey.Category, + SourceCluster: request.DlqKey.SourceCluster, + TargetCluster: request.DlqKey.TargetCluster, + }, + PageSize: request.PageSize, + NextPageToken: request.NextPageToken, + }) + if err != nil { + return nil, err + } + dlqTasks := make([]*adminservice.HistoryDLQTask, len(response.DlqTasks)) + for i, task := range response.DlqTasks { + dlqTasks[i] = &adminservice.HistoryDLQTask{ + Metadata: &adminservice.HistoryDLQTaskMetadata{ + MessageId: task.Metadata.MessageId, + }, + Task: &adminservice.HistoryTask{ + ShardId: task.Task.ShardId, + Task: task.Task.Task, + }, + } + } + return &adminservice.GetDLQTasksResponse{ + DlqTasks: dlqTasks, + NextPageToken: response.NextPageToken, + }, nil +} + func convertClusterReplicationConfigToProto( input []string, ) []*replicationpb.ClusterReplicationConfig { diff --git a/service/frontend/admin_handler_test.go b/service/frontend/admin_handler_test.go index 75c65771a47..83a890fe243 100644 --- a/service/frontend/admin_handler_test.go +++ b/service/frontend/admin_handler_test.go @@ -32,7 +32,9 @@ import ( "sync" "testing" + commonpb "go.temporal.io/api/common/v1" namespacepb "go.temporal.io/api/namespace/v1" + "go.temporal.io/server/api/enums/v1" "google.golang.org/grpc/metadata" historyclient "go.temporal.io/server/client/history" @@ -1136,3 +1138,78 @@ func (s *adminHandlerSuite) TestGetNamespace_EmptyRequest() { _, err := s.handler.GetNamespace(context.Background(), v) s.Equal(errRequestNotSet, err) } + +func (s *adminHandlerSuite) TestGetDLQTasks() { + for _, tc := range []struct { + name string + err error + }{ + { + name: "success", + err: nil, + }, + { + name: "failed to get dlq tasks", + err: serviceerror.NewNotFound("failed to get dlq tasks"), + }, + } { + s.Run(tc.name, func() { + blob := &commonpb.DataBlob{} + expectation := s.mockHistoryClient.EXPECT().GetDLQTasks(gomock.Any(), &historyservice.GetDLQTasksRequest{ + DlqKey: &historyservice.HistoryDLQKey{ + Category: enums.TASK_CATEGORY_TRANSFER, + SourceCluster: "test-source-cluster", + TargetCluster: "test-target-cluster", + }, + PageSize: 1, + NextPageToken: []byte{13}, + }) + if tc.err != nil { + expectation.Return(nil, tc.err) + } else { + expectation.Return(&historyservice.GetDLQTasksResponse{ + DlqTasks: []*historyservice.HistoryDLQTask{ + { + Metadata: &historyservice.HistoryDLQTaskMetadata{ + MessageId: 21, + }, + Task: &historyservice.HistoryTask{ + ShardId: 34, + Task: blob, + }, + }, + }, + NextPageToken: []byte{55}, + }, nil) + } + response, err := s.handler.GetDLQTasks(context.Background(), &adminservice.GetDLQTasksRequest{ + DlqKey: &adminservice.HistoryDLQKey{ + Category: enums.TASK_CATEGORY_TRANSFER, + SourceCluster: "test-source-cluster", + TargetCluster: "test-target-cluster", + }, + PageSize: 1, + NextPageToken: []byte{13}, + }) + if tc.err != nil { + s.ErrorIs(err, tc.err) + return + } + s.NoError(err) + s.Equal(&adminservice.GetDLQTasksResponse{ + DlqTasks: []*adminservice.HistoryDLQTask{ + { + Metadata: &adminservice.HistoryDLQTaskMetadata{ + MessageId: 21, + }, + Task: &adminservice.HistoryTask{ + ShardId: 34, + Task: blob, + }, + }, + }, + NextPageToken: []byte{55}, + }, response) + }) + } +}