diff --git a/pkg/configpb/configpb.pb.gw.go b/pkg/configpb/configpb.pb.gw.go index c0385b0e4..9b4675b32 100644 --- a/pkg/configpb/configpb.pb.gw.go +++ b/pkg/configpb/configpb.pb.gw.go @@ -20,6 +20,7 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/codes" "google.golang.org/grpc/grpclog" + "google.golang.org/grpc/metadata" "google.golang.org/grpc/status" ) @@ -30,6 +31,7 @@ var _ status.Status var _ = runtime.String var _ = utilities.NewDoubleArray var _ = descriptor.ForMessage +var _ = metadata.Join var ( filter_Config_Get_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)} @@ -55,7 +57,10 @@ func local_request_Config_Get_0(ctx context.Context, marshaler runtime.Marshaler var protoReq GetRequest var metadata runtime.ServerMetadata - if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_Config_Get_0); err != nil { + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Config_Get_0); err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) } @@ -122,7 +127,10 @@ func local_request_Config_Delete_0(ctx context.Context, marshaler runtime.Marsha var protoReq DeleteRequest var metadata runtime.ServerMetadata - if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_Config_Delete_0); err != nil { + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Config_Delete_0); err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) } @@ -134,11 +142,14 @@ func local_request_Config_Delete_0(ctx context.Context, marshaler runtime.Marsha // RegisterConfigHandlerServer registers the http handlers for service Config to "mux". // UnaryRPC :call ConfigServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterConfigHandlerFromEndpoint instead. func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ConfigServer) error { mux.Handle("GET", pattern_Config_Get_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -146,6 +157,7 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser return } resp, md, err := local_request_Config_Get_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -159,6 +171,8 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser mux.Handle("POST", pattern_Config_Update_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -166,6 +180,7 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser return } resp, md, err := local_request_Config_Update_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -179,6 +194,8 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser mux.Handle("DELETE", pattern_Config_Delete_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -186,6 +203,7 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser return } resp, md, err := local_request_Config_Delete_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) diff --git a/pkg/tikvpb/tikvpb.pb.go b/pkg/tikvpb/tikvpb.pb.go index 6ab9b8de1..03b0c0793 100644 --- a/pkg/tikvpb/tikvpb.pb.go +++ b/pkg/tikvpb/tikvpb.pb.go @@ -583,10 +583,11 @@ type BatchCommandsResponse struct { Responses []*BatchCommandsResponse_Response `protobuf:"bytes,1,rep,name=responses,proto3" json:"responses,omitempty"` RequestIds []uint64 `protobuf:"varint,2,rep,packed,name=request_ids,json=requestIds,proto3" json:"request_ids,omitempty"` // 280 means TiKV gRPC cpu usage is 280%. - TransportLayerLoad uint64 `protobuf:"varint,3,opt,name=transport_layer_load,json=transportLayerLoad,proto3" json:"transport_layer_load,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + TransportLayerLoad uint64 `protobuf:"varint,3,opt,name=transport_layer_load,json=transportLayerLoad,proto3" json:"transport_layer_load,omitempty"` + HealthFeedback *HealthFeedback `protobuf:"bytes,4,opt,name=health_feedback,json=healthFeedback,proto3" json:"health_feedback,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *BatchCommandsResponse) Reset() { *m = BatchCommandsResponse{} } @@ -643,6 +644,13 @@ func (m *BatchCommandsResponse) GetTransportLayerLoad() uint64 { return 0 } +func (m *BatchCommandsResponse) GetHealthFeedback() *HealthFeedback { + if m != nil { + return m.HealthFeedback + } + return nil +} + type BatchCommandsResponse_Response struct { // Types that are valid to be assigned to Cmd: // *BatchCommandsResponse_Response_Get @@ -1287,6 +1295,77 @@ func (m *BatchCommandsEmptyResponse) GetTestId() uint64 { return 0 } +type HealthFeedback struct { + StoreId uint64 `protobuf:"varint,1,opt,name=store_id,json=storeId,proto3" json:"store_id,omitempty"` + // The sequence number of the feedback message. + // It's defined as an incrementing integer, starting from the unix timestamp (milliseconds) at + // the time that the TiKV node is started. + // This can be useful for filtering out out-of-order feedback messages. + // Note that considering the possibility of system clock changing, this field doesn't guarantee + // uniqueness and monotonic if the TiKV node is restarted. + FeedbackSeqNo uint64 `protobuf:"varint,2,opt,name=feedback_seq_no,json=feedbackSeqNo,proto3" json:"feedback_seq_no,omitempty"` + // The slow_score calculated in raftstore module. Due to some limitations of slow score, this would + // be replaced by `SlowTrend` in the future. + SlowScore int32 `protobuf:"varint,3,opt,name=slow_score,json=slowScore,proto3" json:"slow_score,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *HealthFeedback) Reset() { *m = HealthFeedback{} } +func (m *HealthFeedback) String() string { return proto.CompactTextString(m) } +func (*HealthFeedback) ProtoMessage() {} +func (*HealthFeedback) Descriptor() ([]byte, []int) { + return fileDescriptor_274fe050f0c997b3, []int{5} +} +func (m *HealthFeedback) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *HealthFeedback) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_HealthFeedback.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 *HealthFeedback) XXX_Merge(src proto.Message) { + xxx_messageInfo_HealthFeedback.Merge(m, src) +} +func (m *HealthFeedback) XXX_Size() int { + return m.Size() +} +func (m *HealthFeedback) XXX_DiscardUnknown() { + xxx_messageInfo_HealthFeedback.DiscardUnknown(m) +} + +var xxx_messageInfo_HealthFeedback proto.InternalMessageInfo + +func (m *HealthFeedback) GetStoreId() uint64 { + if m != nil { + return m.StoreId + } + return 0 +} + +func (m *HealthFeedback) GetFeedbackSeqNo() uint64 { + if m != nil { + return m.FeedbackSeqNo + } + return 0 +} + +func (m *HealthFeedback) GetSlowScore() int32 { + if m != nil { + return m.SlowScore + } + return 0 +} + func init() { proto.RegisterType((*BatchCommandsRequest)(nil), "tikvpb.BatchCommandsRequest") proto.RegisterType((*BatchCommandsRequest_Request)(nil), "tikvpb.BatchCommandsRequest.Request") @@ -1295,177 +1374,183 @@ func init() { proto.RegisterType((*BatchRaftMessage)(nil), "tikvpb.BatchRaftMessage") proto.RegisterType((*BatchCommandsEmptyRequest)(nil), "tikvpb.BatchCommandsEmptyRequest") proto.RegisterType((*BatchCommandsEmptyResponse)(nil), "tikvpb.BatchCommandsEmptyResponse") + proto.RegisterType((*HealthFeedback)(nil), "tikvpb.HealthFeedback") } func init() { proto.RegisterFile("tikvpb.proto", fileDescriptor_274fe050f0c997b3) } var fileDescriptor_274fe050f0c997b3 = []byte{ - // 2633 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x9a, 0xdb, 0x52, 0x1b, 0xc9, - 0xf9, 0xc0, 0x07, 0x5b, 0xe6, 0xd0, 0x18, 0x03, 0x0d, 0x98, 0x61, 0x8c, 0xc1, 0x1e, 0x63, 0x2f, - 0xeb, 0x7f, 0xfd, 0x89, 0xed, 0x75, 0xd6, 0x59, 0xef, 0x66, 0x83, 0x11, 0x36, 0xb0, 0x82, 0x5a, - 0x95, 0x24, 0xef, 0x3a, 0xa9, 0xa4, 0xa8, 0x46, 0x6a, 0x84, 0x82, 0x34, 0xa3, 0xcc, 0xb4, 0x84, - 0xf5, 0x26, 0x79, 0x81, 0x54, 0xe5, 0x31, 0x72, 0x99, 0x8b, 0x5c, 0xec, 0x65, 0x2e, 0x53, 0xce, - 0x1b, 0xe4, 0x05, 0x92, 0xea, 0x9e, 0x99, 0x3e, 0x4d, 0xf7, 0x88, 0xbd, 0x62, 0xf8, 0x8e, 0xdd, - 0x3d, 0xd3, 0x5f, 0xff, 0xbe, 0x06, 0x70, 0x9b, 0x74, 0x2e, 0x87, 0xfd, 0xb3, 0x9d, 0x7e, 0x14, - 0x92, 0x10, 0x4e, 0x26, 0xbf, 0x79, 0x8b, 0xcd, 0xb0, 0x1f, 0x85, 0x4d, 0x1c, 0xc7, 0x61, 0x94, - 0xa8, 0xbc, 0xb9, 0xcb, 0x61, 0xd4, 0x6f, 0x66, 0x96, 0xde, 0x4c, 0xaf, 0xdf, 0x4f, 0x1f, 0x97, - 0x22, 0x74, 0x4e, 0x4e, 0x63, 0x1c, 0x0d, 0x71, 0xc4, 0xf5, 0x4b, 0xad, 0x4e, 0x8c, 0xda, 0xed, - 0x08, 0xb7, 0x11, 0xc1, 0xad, 0x54, 0xb8, 0xdc, 0x0e, 0xdb, 0x21, 0x7b, 0xfc, 0x05, 0x7d, 0x4a, - 0xa5, 0xf3, 0xd1, 0x20, 0x26, 0xec, 0x31, 0x11, 0xf8, 0xff, 0x58, 0x04, 0xcb, 0x7b, 0x88, 0x34, - 0x2f, 0xca, 0x61, 0xaf, 0x87, 0x82, 0x56, 0x5c, 0xc3, 0x7f, 0x1a, 0xe0, 0x98, 0xc0, 0x5d, 0x30, - 0x1d, 0x25, 0x8f, 0xb1, 0x3b, 0xf1, 0xe0, 0xe6, 0xf6, 0xec, 0x8b, 0xad, 0x9d, 0x74, 0xfc, 0x26, - 0xfb, 0x9d, 0xf4, 0x67, 0x8d, 0x7b, 0xc1, 0x4d, 0x30, 0x9b, 0x3e, 0x9f, 0x76, 0x5a, 0xb1, 0x7b, - 0xe3, 0xc1, 0xcd, 0xed, 0x52, 0x0d, 0xa4, 0xa2, 0xa3, 0x56, 0xec, 0xfd, 0xb4, 0x00, 0xa6, 0xb2, - 0x74, 0x9f, 0x81, 0x9b, 0x07, 0x98, 0xb8, 0x13, 0x0f, 0x26, 0xb6, 0x67, 0x5f, 0x2c, 0xed, 0x64, - 0x0b, 0x70, 0x80, 0x49, 0x6a, 0x71, 0xe8, 0xd4, 0xa8, 0x05, 0x7c, 0x0a, 0x4a, 0xf5, 0x26, 0x0a, - 0xdc, 0x1b, 0xcc, 0x72, 0x99, 0x5b, 0x52, 0xa1, 0x30, 0x65, 0x36, 0xf0, 0x4b, 0x30, 0x5d, 0x8d, - 0xf0, 0x55, 0xd4, 0x21, 0xd8, 0xbd, 0xc9, 0xec, 0x5d, 0x6e, 0x9f, 0x29, 0x84, 0x0f, 0xb7, 0x85, - 0xcf, 0xc0, 0x24, 0x9d, 0x5e, 0x87, 0xb8, 0x25, 0xe6, 0x75, 0x97, 0x7b, 0x25, 0x62, 0xe1, 0x93, - 0xda, 0x51, 0x8f, 0xa3, 0x5e, 0x3f, 0x8c, 0x88, 0x7b, 0x4b, 0xf3, 0x48, 0xc4, 0x92, 0x47, 0x22, - 0x80, 0x5f, 0x80, 0xa9, 0x72, 0x17, 0xa3, 0x60, 0xd0, 0x77, 0x27, 0x99, 0xcb, 0xaa, 0x48, 0x92, - 0xc8, 0x85, 0x4f, 0x66, 0x49, 0x27, 0xc4, 0x16, 0x9f, 0x2e, 0xd5, 0x94, 0x36, 0xa1, 0x4c, 0x21, - 0x4d, 0x28, 0x13, 0xc1, 0xb7, 0x60, 0x8e, 0x3d, 0xd7, 0xc2, 0x6e, 0xf7, 0x0c, 0x35, 0x2f, 0xdd, - 0x69, 0xe6, 0x7c, 0x5f, 0x75, 0xce, 0xb4, 0x22, 0x82, 0xea, 0x45, 0xd3, 0xd3, 0x75, 0x3d, 0x0e, - 0x9b, 0x97, 0xee, 0x8c, 0x96, 0x3e, 0x53, 0x48, 0xe9, 0x33, 0x11, 0xfc, 0x0d, 0x98, 0xad, 0xe1, - 0x38, 0xec, 0x0e, 0x31, 0x73, 0x05, 0xcc, 0xf5, 0x1e, 0x77, 0x95, 0x74, 0xc2, 0x5b, 0xf6, 0x80, - 0x5b, 0xe0, 0xc6, 0x41, 0xd9, 0x9d, 0x65, 0x7e, 0x50, 0x7c, 0x1c, 0x65, 0x61, 0x7e, 0xe3, 0xa0, - 0x4c, 0xd3, 0xec, 0xe3, 0x2e, 0x26, 0xb8, 0x86, 0x82, 0x36, 0x76, 0x6f, 0x6b, 0x69, 0x24, 0x9d, - 0x94, 0x46, 0x92, 0xd2, 0xb7, 0x58, 0x43, 0x57, 0x74, 0x71, 0xe7, 0xb4, 0xb7, 0x98, 0x88, 0xa5, - 0xb7, 0x98, 0x08, 0xd8, 0xcc, 0xd0, 0x15, 0x7f, 0x27, 0x77, 0xf4, 0x99, 0x09, 0x9d, 0x3c, 0x33, - 0x21, 0x4d, 0x53, 0x56, 0x07, 0xc4, 0x9d, 0xcf, 0xa7, 0xac, 0x0e, 0xb4, 0x94, 0xd5, 0x81, 0x92, - 0x92, 0xba, 0x2d, 0x58, 0x52, 0x2a, 0xbe, 0xb2, 0x07, 0xfc, 0x0a, 0xcc, 0xd4, 0xd0, 0x55, 0x32, - 0x6f, 0x77, 0x91, 0xb9, 0xaf, 0xc9, 0xee, 0xe9, 0x8a, 0x70, 0x67, 0x61, 0x0d, 0x0f, 0xc1, 0x9d, - 0x2c, 0x52, 0xea, 0x0f, 0x99, 0xff, 0x46, 0x2e, 0xbd, 0x1e, 0x44, 0xf3, 0xa3, 0x9f, 0x7f, 0x0d, - 0x5d, 0xb1, 0x9d, 0xbc, 0xa4, 0x7d, 0xfe, 0xa9, 0x5c, 0xfa, 0xfc, 0x53, 0x49, 0x9a, 0x5e, 0x7e, - 0xc7, 0xcb, 0xf9, 0xf4, 0xc6, 0xd7, 0xac, 0xf9, 0xc1, 0x3d, 0x70, 0x3b, 0x1b, 0x10, 0x1b, 0xc3, - 0x0a, 0x8b, 0xb3, 0x9e, 0x9b, 0x86, 0x3a, 0x10, 0xc5, 0x07, 0xfe, 0x0a, 0xcc, 0x96, 0x45, 0xe9, - 0x76, 0xef, 0xa6, 0x05, 0x49, 0x2e, 0xe7, 0xd2, 0x1b, 0x90, 0x4c, 0x61, 0x05, 0xcc, 0x57, 0x71, - 0x1c, 0x77, 0x7a, 0x9d, 0x98, 0x74, 0x9a, 0x6c, 0x4f, 0xac, 0x32, 0xef, 0x4d, 0x51, 0x9e, 0x54, - 0xbd, 0x08, 0xa4, 0x7b, 0xc2, 0x1f, 0xc1, 0x92, 0x24, 0xe2, 0x3b, 0xdc, 0x65, 0x01, 0x1f, 0x99, - 0x02, 0xe6, 0xf7, 0xb9, 0x29, 0x02, 0x5d, 0xed, 0xf2, 0x05, 0x6e, 0x5e, 0x36, 0x3e, 0x06, 0x75, - 0x82, 0xc8, 0x20, 0x76, 0xd7, 0xb4, 0xd5, 0x56, 0xd5, 0xd2, 0x6a, 0xab, 0x0a, 0xba, 0xda, 0x8d, - 0x8f, 0xc1, 0x21, 0x46, 0x11, 0xd9, 0xc3, 0x88, 0xb8, 0x9e, 0xb6, 0xda, 0xb2, 0x52, 0x5a, 0x6d, - 0x59, 0x4c, 0xa7, 0xc9, 0xa2, 0xd6, 0x71, 0x33, 0x0c, 0x5a, 0x28, 0x1a, 0xd1, 0xc9, 0xc7, 0xee, - 0x43, 0x6d, 0x9a, 0x06, 0x1b, 0x69, 0x9a, 0x06, 0x6d, 0xfa, 0x51, 0xc9, 0x6f, 0xd2, 0xcf, 0x7f, - 0x54, 0x92, 0x5a, 0xfd, 0xa8, 0xe4, 0xd7, 0xda, 0x00, 0xf0, 0x5d, 0x17, 0xc5, 0x17, 0x74, 0xf5, - 0x1a, 0xe1, 0x0f, 0x38, 0x8a, 0x3b, 0x61, 0xe0, 0x3e, 0x62, 0xd1, 0x7c, 0x1e, 0x2d, 0x6f, 0x22, - 0x22, 0x1a, 0xfc, 0x61, 0x07, 0xac, 0x55, 0x23, 0xdc, 0x47, 0x11, 0x36, 0x04, 0xdf, 0x62, 0xc1, - 0x3f, 0x97, 0x4f, 0x35, 0xb3, 0xa5, 0xc8, 0x61, 0x8f, 0x06, 0xff, 0x1f, 0xdc, 0x7a, 0xd7, 0x1d, - 0xc4, 0x17, 0xee, 0x63, 0x16, 0x76, 0x45, 0x1a, 0xf3, 0x20, 0xbe, 0x10, 0x21, 0x12, 0x2b, 0xba, - 0x72, 0x7b, 0x83, 0xf3, 0x73, 0x1c, 0xf1, 0xfa, 0xf7, 0x44, 0x5b, 0x39, 0x55, 0x2d, 0xad, 0x9c, - 0xaa, 0x80, 0xaf, 0xc1, 0xad, 0xb7, 0xbd, 0x3e, 0x19, 0xb9, 0xff, 0x4d, 0x00, 0xe0, 0xa1, 0x11, - 0x35, 0x98, 0x89, 0x34, 0x0a, 0xf6, 0xfb, 0xde, 0x2d, 0x70, 0xb3, 0xd9, 0x6b, 0x7d, 0x57, 0x9a, - 0xbe, 0xb7, 0xf0, 0xd0, 0xff, 0x0b, 0x04, 0x2b, 0x1a, 0x9e, 0xc4, 0xfd, 0x30, 0x88, 0x31, 0xdc, - 0x07, 0x33, 0x51, 0xfa, 0x9c, 0x01, 0xcd, 0x13, 0x0b, 0xd0, 0x24, 0x56, 0x3b, 0xd9, 0x43, 0x4d, - 0x38, 0x8e, 0x65, 0x1a, 0xf8, 0x0c, 0x2c, 0x93, 0x08, 0x05, 0x31, 0x3d, 0xe3, 0x4f, 0xbb, 0x68, - 0x84, 0xa3, 0xd3, 0x6e, 0x88, 0x5a, 0x0c, 0x3f, 0x4a, 0x35, 0xc8, 0x75, 0xc7, 0x54, 0x75, 0x1c, - 0xa2, 0x96, 0xf7, 0x9f, 0x05, 0x30, 0xcd, 0x47, 0xb9, 0x2d, 0x63, 0xd0, 0xb2, 0x8a, 0x41, 0x89, - 0x49, 0xc6, 0x41, 0xff, 0xa7, 0x70, 0xd0, 0x8a, 0xc6, 0x41, 0xdc, 0x36, 0x01, 0xa1, 0x57, 0x39, - 0x10, 0x5a, 0x33, 0x80, 0x10, 0x77, 0x12, 0x24, 0xf4, 0x5c, 0x23, 0xa1, 0xd5, 0x1c, 0x09, 0x71, - 0xa7, 0x0c, 0x85, 0x9e, 0x6b, 0x28, 0xb4, 0x9a, 0x43, 0x21, 0xe1, 0x92, 0xb2, 0xd0, 0x4b, 0x9d, - 0x85, 0xdc, 0x3c, 0x0b, 0x71, 0x27, 0x0e, 0x43, 0xaf, 0x72, 0x30, 0xb4, 0x66, 0x80, 0x21, 0x31, - 0x29, 0xfe, 0xb5, 0xbd, 0x33, 0xd3, 0xd0, 0x86, 0x8d, 0x86, 0x78, 0x08, 0x0d, 0x87, 0x5e, 0xe5, - 0x70, 0x68, 0xcd, 0x80, 0x43, 0x62, 0x00, 0x9c, 0x87, 0x76, 0x4d, 0x3c, 0xb4, 0x6e, 0xe6, 0x21, - 0xee, 0xae, 0x00, 0xd1, 0x63, 0x09, 0x88, 0x96, 0x14, 0x20, 0xe2, 0xf6, 0x94, 0x88, 0x76, 0x4d, - 0x44, 0xb4, 0x6e, 0x26, 0x22, 0x91, 0x48, 0x3e, 0x28, 0x9f, 0x6b, 0x48, 0xb4, 0x9a, 0x43, 0x22, - 0xf1, 0x36, 0x53, 0x26, 0xda, 0x35, 0x31, 0xd1, 0xba, 0x99, 0x89, 0xa4, 0xd9, 0x49, 0x50, 0xf4, - 0x5c, 0x83, 0xa2, 0xd5, 0x1c, 0x14, 0x29, 0x49, 0x29, 0xd4, 0xec, 0x9a, 0xa8, 0x68, 0xdd, 0x4c, - 0x45, 0xf9, 0xa4, 0x34, 0xc2, 0xeb, 0x3c, 0x16, 0x79, 0x26, 0x2c, 0xe2, 0xde, 0x12, 0x17, 0x1d, - 0x59, 0xb8, 0x68, 0xd3, 0xca, 0x45, 0x3c, 0x8a, 0x0e, 0x46, 0x2f, 0x75, 0x30, 0x72, 0xf3, 0x60, - 0x24, 0xf6, 0x42, 0x46, 0x46, 0x47, 0x16, 0x32, 0xda, 0xb4, 0x92, 0x91, 0x32, 0x00, 0xf9, 0x8d, - 0x97, 0x8d, 0x68, 0x74, 0xdf, 0x82, 0x46, 0x3c, 0x8c, 0xca, 0x46, 0x5f, 0x99, 0xd8, 0x68, 0x45, - 0x63, 0x23, 0xf1, 0x1e, 0xe4, 0x53, 0xf4, 0xd8, 0x06, 0x47, 0x0f, 0xec, 0x70, 0xc4, 0x23, 0xe5, - 0xe8, 0xe8, 0x43, 0x11, 0x1d, 0x6d, 0x15, 0xd3, 0x11, 0x8f, 0x6a, 0xc4, 0xa3, 0x23, 0x0b, 0x1e, - 0x6d, 0x5a, 0xf1, 0x48, 0x2c, 0xb9, 0xc6, 0x47, 0x65, 0x23, 0x1f, 0xdd, 0xb7, 0xf0, 0x91, 0x58, - 0x72, 0x05, 0x90, 0x3e, 0x14, 0x01, 0xd2, 0x56, 0x31, 0x20, 0x89, 0x99, 0x9a, 0x08, 0xe9, 0xc8, - 0x42, 0x48, 0x9b, 0x56, 0x42, 0x52, 0x3e, 0x2e, 0xf9, 0xe5, 0xbe, 0x2f, 0x40, 0xa4, 0x47, 0x85, - 0x88, 0xc4, 0x43, 0x9a, 0x18, 0xe9, 0x8f, 0xe3, 0x19, 0xe9, 0xe9, 0x75, 0x18, 0x89, 0x27, 0x29, - 0x80, 0xa4, 0x1d, 0x15, 0x92, 0xee, 0xea, 0x90, 0xc4, 0x63, 0xa4, 0x94, 0x74, 0x64, 0xa1, 0xa4, - 0x4d, 0x2b, 0x25, 0x89, 0xd5, 0xd3, 0x30, 0xe9, 0x6b, 0x0d, 0x93, 0xfc, 0x22, 0x4c, 0x12, 0xe3, - 0x30, 0x70, 0xd2, 0x1e, 0x58, 0x48, 0xce, 0x32, 0x74, 0x4e, 0x4e, 0x70, 0x1c, 0xa3, 0x36, 0x86, - 0x3b, 0xa0, 0xd4, 0x8b, 0xdb, 0x19, 0x1c, 0x79, 0x3b, 0xea, 0x55, 0x93, 0x64, 0x59, 0x63, 0x76, - 0x7e, 0x1d, 0xac, 0x59, 0xf1, 0x0c, 0xae, 0x82, 0x29, 0x92, 0x50, 0x12, 0x83, 0x99, 0x52, 0x6d, - 0x92, 0x30, 0x42, 0x82, 0xf7, 0x01, 0x68, 0xe1, 0x2e, 0x1a, 0x9d, 0x92, 0x4e, 0x0f, 0x33, 0x7a, - 0x29, 0xd5, 0x66, 0x98, 0xa4, 0xd1, 0xe9, 0x61, 0xff, 0x97, 0xc0, 0xb3, 0x4f, 0xc6, 0x1a, 0xf5, - 0xc5, 0xdf, 0x9e, 0x82, 0x52, 0xa3, 0x73, 0x39, 0x84, 0x2f, 0xc1, 0xad, 0xca, 0x90, 0xae, 0x95, - 0xe9, 0x0e, 0xc9, 0x33, 0x12, 0x95, 0xef, 0xc0, 0x57, 0x60, 0xb2, 0x32, 0x64, 0x85, 0xcb, 0x78, - 0xa1, 0xe4, 0x99, 0xf1, 0xca, 0x77, 0x60, 0x19, 0x80, 0xca, 0x90, 0xd3, 0x92, 0xf5, 0x76, 0xc9, - 0xb3, 0xe3, 0x96, 0xef, 0xc0, 0x0f, 0x60, 0xb1, 0x32, 0xd4, 0x0b, 0xd7, 0xb8, 0x56, 0xd0, 0x1b, - 0x5b, 0x0e, 0x7d, 0x07, 0xb6, 0xc0, 0x4a, 0xe5, 0x07, 0x53, 0xf1, 0xba, 0x4e, 0x5f, 0xe8, 0x5d, - 0xab, 0x3c, 0xfa, 0x0e, 0xfc, 0x1e, 0xdc, 0xa9, 0x0c, 0x95, 0x5a, 0x54, 0xd8, 0xda, 0x79, 0xc5, - 0x85, 0xcd, 0x77, 0xe0, 0x7b, 0xb0, 0x50, 0x19, 0x6a, 0x35, 0x72, 0x4c, 0xd7, 0xe9, 0x8d, 0x2b, - 0xbb, 0xe9, 0x6a, 0x0c, 0x4d, 0x05, 0xee, 0x3a, 0xed, 0xa3, 0x77, 0xad, 0x12, 0xea, 0x3b, 0xf0, - 0xd7, 0x60, 0xba, 0x32, 0x4c, 0x59, 0xd8, 0x72, 0x71, 0xe8, 0xd9, 0x30, 0x3a, 0x73, 0x4f, 0xb9, - 0xd8, 0x72, 0x8b, 0xe8, 0xd9, 0x90, 0xda, 0x77, 0xe0, 0x2e, 0x98, 0xa9, 0x0c, 0x33, 0x42, 0xb6, - 0x5d, 0x29, 0x7a, 0x56, 0xbe, 0xce, 0x3e, 0x69, 0x5e, 0x72, 0xac, 0xf7, 0x8b, 0x9e, 0x1d, 0xb6, - 0x7d, 0x07, 0xd6, 0xc0, 0x7c, 0x1a, 0x84, 0x7f, 0x72, 0xc5, 0x97, 0x8d, 0xde, 0x18, 0xfa, 0xce, - 0x06, 0xc6, 0x19, 0xda, 0x7a, 0xf3, 0xe8, 0xd9, 0x21, 0xdc, 0x77, 0xe0, 0x31, 0x98, 0xab, 0x0c, - 0x65, 0x92, 0x2e, 0xba, 0x86, 0xf4, 0x0a, 0x99, 0xdc, 0x77, 0xe0, 0x73, 0x50, 0xaa, 0x0c, 0x0f, - 0xca, 0xd0, 0x70, 0x27, 0xe9, 0x99, 0xb0, 0x3c, 0x1b, 0x80, 0xcc, 0x5b, 0x45, 0x17, 0x94, 0x5e, - 0x21, 0xab, 0xfb, 0x0e, 0x1c, 0x82, 0x7b, 0xac, 0xfe, 0x58, 0xce, 0xaa, 0xeb, 0x5f, 0x0c, 0x78, - 0x3f, 0xe3, 0x7c, 0xf4, 0x1d, 0x88, 0xc0, 0x72, 0x65, 0x68, 0x48, 0x78, 0x8d, 0x6b, 0x0e, 0xef, - 0x3a, 0xe7, 0xbc, 0xef, 0xc0, 0xd7, 0x60, 0x8a, 0xa6, 0xa0, 0x47, 0xa8, 0xf9, 0x22, 0xc2, 0xb3, - 0x1c, 0xbd, 0x59, 0x01, 0xd1, 0x0e, 0xcf, 0x31, 0xb7, 0x12, 0xde, 0xb8, 0xf3, 0xd8, 0x77, 0xe0, - 0xd7, 0x59, 0x33, 0x04, 0x2d, 0x37, 0xc3, 0x9e, 0xad, 0x3d, 0xf2, 0x1d, 0xf8, 0x9d, 0xd2, 0x16, - 0xc1, 0xa2, 0x4b, 0x62, 0xaf, 0xb0, 0x5b, 0xe2, 0x03, 0xa1, 0x5d, 0x8b, 0xe5, 0xbe, 0xd8, 0xb3, - 0xb5, 0x4c, 0xea, 0x40, 0x68, 0x84, 0xa2, 0xab, 0x63, 0xaf, 0xb0, 0x83, 0xf2, 0x1d, 0xb8, 0x2f, - 0x35, 0x4d, 0xd0, 0x7e, 0x8b, 0xec, 0x15, 0x74, 0x52, 0xbe, 0x03, 0xeb, 0x7a, 0xfb, 0x04, 0xc7, - 0x5c, 0x28, 0x7b, 0xe3, 0x1a, 0x2b, 0xdf, 0x81, 0xdf, 0xf2, 0x46, 0x0a, 0xda, 0xee, 0x96, 0x3d, - 0x6b, 0x6f, 0xc5, 0x07, 0x25, 0xef, 0xd4, 0x31, 0xd7, 0xcc, 0xde, 0xb8, 0x66, 0xcb, 0x77, 0xe0, - 0x89, 0xda, 0x5c, 0xc1, 0xc2, 0x1b, 0x67, 0xaf, 0xb8, 0xe9, 0xe2, 0xe1, 0x0e, 0x30, 0xa9, 0xe0, - 0x51, 0xa3, 0x71, 0xac, 0x86, 0xe3, 0x62, 0x63, 0x38, 0x49, 0xcb, 0xc3, 0xbd, 0x03, 0x8b, 0x8c, - 0xd7, 0x7b, 0x74, 0xff, 0xbf, 0x09, 0x5a, 0xf5, 0x2b, 0xd4, 0x57, 0xbf, 0xb0, 0xf2, 0x9b, 0xba, - 0xf1, 0x0b, 0x63, 0x72, 0xed, 0x0b, 0x63, 0xc7, 0x64, 0x3c, 0xe8, 0xa9, 0x5f, 0x58, 0x26, 0x35, - 0x7e, 0x61, 0x42, 0xc9, 0x63, 0x9d, 0x02, 0xf8, 0x3e, 0x88, 0xd1, 0x39, 0xde, 0xc7, 0x31, 0x89, - 0xc2, 0x51, 0xf2, 0x2a, 0x44, 0x9d, 0xc9, 0x2b, 0xf3, 0x75, 0xc6, 0x64, 0xc3, 0x13, 0x60, 0xb0, - 0x5c, 0xc3, 0xed, 0x4e, 0x4c, 0x70, 0x44, 0xab, 0xfb, 0xf7, 0x67, 0x09, 0xf2, 0xc2, 0x2d, 0xa9, - 0xf6, 0xe7, 0xd5, 0x59, 0x92, 0xc7, 0x63, 0xac, 0x78, 0x9a, 0xdf, 0x83, 0x45, 0x36, 0x3b, 0x25, - 0xc7, 0x43, 0x95, 0x29, 0x4c, 0x09, 0xfc, 0x22, 0x13, 0x79, 0x95, 0x6a, 0xb8, 0x17, 0x26, 0x07, - 0x14, 0x0f, 0xef, 0x4b, 0x83, 0xd3, 0x95, 0xf9, 0x55, 0x32, 0xd9, 0xf0, 0x04, 0xbf, 0x05, 0x0b, - 0xd5, 0x8b, 0x51, 0xdc, 0x69, 0xa2, 0x2e, 0x3f, 0x82, 0x25, 0x02, 0xd5, 0x54, 0x59, 0xf0, 0x87, - 0x05, 0x16, 0x3c, 0xf4, 0x37, 0xca, 0x5d, 0x01, 0x34, 0xfe, 0x05, 0xc5, 0x33, 0xdf, 0x1d, 0xb0, - 0x0a, 0xb4, 0x28, 0x79, 0xd7, 0x49, 0x84, 0x51, 0xef, 0x67, 0xc6, 0x78, 0x36, 0x01, 0x4f, 0xd2, - 0x7e, 0x48, 0x1e, 0xc8, 0x9a, 0x62, 0x9e, 0x50, 0x09, 0x2f, 0x67, 0x06, 0x95, 0x14, 0xae, 0xae, - 0x77, 0xcc, 0x70, 0xcc, 0x5f, 0x13, 0xbc, 0x71, 0xbd, 0x34, 0x2b, 0xfa, 0x25, 0xda, 0x84, 0xc1, - 0x82, 0xce, 0xcc, 0x5b, 0xd2, 0x74, 0xfb, 0x61, 0x80, 0x7d, 0x67, 0x7b, 0x02, 0x7e, 0x0b, 0x66, - 0x78, 0xc3, 0x07, 0x5d, 0xa5, 0x6f, 0xbc, 0x96, 0xff, 0x1b, 0x30, 0x5d, 0x0f, 0x50, 0x3f, 0xbe, - 0x08, 0x29, 0xdd, 0xab, 0x46, 0x99, 0xa2, 0x7c, 0x31, 0x08, 0x2e, 0xed, 0x21, 0x9a, 0xe0, 0x4e, - 0x03, 0x9d, 0x75, 0x31, 0xe1, 0x81, 0xb6, 0x34, 0x53, 0x55, 0x2d, 0xb6, 0x58, 0xb1, 0x55, 0xb6, - 0x40, 0xdb, 0x13, 0xcf, 0x26, 0x68, 0xe9, 0xa9, 0xf7, 0xbb, 0x94, 0xa8, 0xdb, 0x94, 0x47, 0x44, - 0xe9, 0x91, 0xa4, 0xf9, 0xd2, 0xa3, 0x28, 0x95, 0xc3, 0x0d, 0xa3, 0xd6, 0x51, 0xd0, 0xc2, 0x1f, - 0xe5, 0xc3, 0x2d, 0x93, 0x19, 0x0e, 0x37, 0xa1, 0x92, 0x6b, 0xf4, 0xc9, 0xb0, 0xd9, 0x3c, 0xc0, - 0x64, 0x6f, 0x54, 0xc1, 0x23, 0xa9, 0x46, 0xcb, 0xe2, 0x7c, 0x8d, 0x56, 0xb5, 0xf2, 0x46, 0xe4, - 0x9a, 0x3a, 0x41, 0x11, 0x69, 0xc4, 0xd2, 0x46, 0xd4, 0x55, 0xf9, 0x8d, 0x98, 0xb7, 0x90, 0xa0, - 0x7d, 0x4e, 0xe9, 0xbd, 0xe1, 0x7a, 0xd1, 0x7f, 0x7c, 0x78, 0xf7, 0x0b, 0xff, 0x7c, 0x92, 0xbe, - 0x8f, 0x43, 0x30, 0xbf, 0xdf, 0x89, 0xfb, 0xd4, 0xe2, 0xa4, 0x5a, 0x6d, 0xa0, 0x98, 0x92, 0x7b, - 0xaf, 0xdf, 0xdf, 0xc9, 0xa4, 0x54, 0x24, 0xc8, 0x3d, 0xaf, 0xe1, 0xa3, 0xdb, 0x03, 0x73, 0x65, - 0x14, 0x34, 0x71, 0x37, 0x8b, 0x73, 0x97, 0x59, 0x27, 0x32, 0x39, 0xca, 0x6a, 0x4e, 0xce, 0x63, - 0x34, 0xc0, 0xdd, 0xb7, 0x31, 0x41, 0x67, 0xdd, 0x4e, 0x4c, 0x87, 0x53, 0x0e, 0x83, 0x00, 0x37, - 0x49, 0x02, 0xae, 0xd4, 0xc9, 0xac, 0xcc, 0x02, 0x43, 0x66, 0x73, 0x52, 0xad, 0xee, 0x23, 0x82, - 0xaa, 0xa8, 0x79, 0x89, 0x09, 0xdb, 0xed, 0x5f, 0x82, 0xa9, 0xa3, 0xf8, 0x4d, 0xb7, 0x33, 0xc4, - 0x70, 0x89, 0x99, 0xa4, 0xbf, 0x89, 0x5b, 0x07, 0x45, 0x28, 0x8d, 0x66, 0xa9, 0x86, 0x69, 0xff, - 0x96, 0xce, 0x28, 0xed, 0x74, 0xd7, 0x99, 0x79, 0xa2, 0x11, 0x62, 0xb1, 0xea, 0x66, 0x2d, 0x8f, - 0x7a, 0x08, 0x66, 0x93, 0x93, 0x02, 0xa3, 0x16, 0x8e, 0xa4, 0x1d, 0x20, 0x49, 0xf3, 0x3b, 0x40, - 0x51, 0xa6, 0xb7, 0x2d, 0x15, 0x70, 0xe7, 0x00, 0x93, 0x3a, 0x09, 0x23, 0x5c, 0x47, 0xe7, 0xb8, - 0x51, 0x97, 0xb7, 0x93, 0x90, 0x1a, 0xb6, 0x93, 0xac, 0x4c, 0x83, 0x35, 0xc0, 0xfc, 0x01, 0x26, - 0xb4, 0xf4, 0xff, 0x88, 0x3a, 0xe4, 0x28, 0x38, 0x0f, 0xa5, 0x2b, 0x0e, 0x4d, 0x93, 0xbf, 0xe2, - 0xc8, 0x19, 0xa4, 0x51, 0xbf, 0x01, 0x53, 0x0c, 0x57, 0x9a, 0x04, 0x2a, 0x3d, 0x35, 0x95, 0x18, - 0x9a, 0xdd, 0x4c, 0x91, 0x7a, 0xff, 0x01, 0x40, 0x29, 0xf0, 0x61, 0x27, 0x26, 0x61, 0x34, 0x92, - 0x4e, 0xcd, 0xbc, 0x32, 0x7f, 0x6a, 0x9a, 0x6c, 0xd2, 0xf0, 0x67, 0x60, 0xe5, 0x00, 0x93, 0x46, - 0x87, 0xb5, 0x39, 0xf5, 0x51, 0x4c, 0x70, 0x8f, 0xd5, 0x2e, 0x29, 0x43, 0x5e, 0x99, 0xcf, 0x60, - 0xb2, 0x91, 0x28, 0x15, 0x90, 0x68, 0xf4, 0xa6, 0xd5, 0x4a, 0x4f, 0x64, 0xf5, 0x5f, 0xc1, 0x1a, - 0x5c, 0x25, 0x0a, 0x81, 0xdd, 0x42, 0x62, 0x95, 0x39, 0x12, 0x8d, 0x4e, 0x50, 0x74, 0x99, 0xe2, - 0xf8, 0xa3, 0xbc, 0x97, 0xd0, 0x8a, 0x0b, 0x92, 0x42, 0x23, 0x1e, 0x3d, 0x00, 0x4b, 0x7c, 0x9f, - 0xed, 0x33, 0x0f, 0xb6, 0x9d, 0x3f, 0xd7, 0xdc, 0x0d, 0x36, 0xa2, 0x57, 0xbd, 0x86, 0xa9, 0x04, - 0x78, 0x0b, 0x49, 0x31, 0x90, 0x92, 0x3d, 0xd1, 0x22, 0xe8, 0x06, 0x59, 0xa6, 0xcf, 0xc6, 0xda, - 0xf1, 0x34, 0xbf, 0x03, 0x0b, 0xef, 0x30, 0x6d, 0x44, 0x98, 0xb2, 0x8a, 0xda, 0x38, 0xce, 0xa5, - 0xd1, 0x0d, 0xc4, 0x09, 0xa2, 0xda, 0x31, 0xa5, 0x54, 0x61, 0xce, 0xd8, 0xe6, 0x49, 0x1c, 0xcb, - 0x61, 0x70, 0xde, 0x69, 0xc3, 0xc7, 0x9a, 0x8b, 0xa6, 0xcf, 0x22, 0x3f, 0x19, 0x67, 0x96, 0x8d, - 0x7f, 0xef, 0xc9, 0x3f, 0xff, 0x3a, 0x3d, 0xf1, 0xf7, 0x4f, 0x1b, 0x13, 0x3f, 0x7d, 0xda, 0x98, - 0xf8, 0xd7, 0xa7, 0x8d, 0x89, 0x3f, 0xff, 0x7b, 0xc3, 0x01, 0x0b, 0x61, 0xd4, 0x66, 0x75, 0x7e, - 0xe7, 0x72, 0xc8, 0xfe, 0x63, 0xf0, 0x6c, 0x92, 0xfd, 0xf8, 0xe2, 0x7f, 0x01, 0x00, 0x00, 0xff, - 0xff, 0x2c, 0x3f, 0xfa, 0xa2, 0xce, 0x28, 0x00, 0x00, + // 2719 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x9a, 0xdb, 0x72, 0xdb, 0xc6, + 0x19, 0x80, 0x21, 0x5b, 0xc7, 0x55, 0x74, 0x5a, 0x49, 0x16, 0x84, 0xc8, 0x92, 0x0d, 0xcb, 0x8a, + 0x92, 0x4e, 0x55, 0x3b, 0x49, 0xe3, 0xe6, 0xd0, 0x44, 0x16, 0x15, 0x1d, 0x42, 0xa9, 0xe1, 0x90, + 0x74, 0xe2, 0x76, 0xda, 0xd1, 0xac, 0xc8, 0x15, 0xc5, 0x8a, 0x04, 0x68, 0xec, 0x92, 0x32, 0xdf, + 0xa4, 0x8f, 0xd0, 0xc7, 0xe8, 0x65, 0x2f, 0x7a, 0x91, 0xcb, 0x5e, 0x76, 0xdc, 0x99, 0x3e, 0x40, + 0x5f, 0xa0, 0x9d, 0x5d, 0x00, 0x7b, 0xc2, 0x02, 0x54, 0xae, 0x0c, 0xfe, 0xc7, 0xdd, 0x05, 0xf6, + 0xdf, 0xef, 0x5f, 0x0b, 0xbc, 0x47, 0xdb, 0x37, 0x83, 0xde, 0xe5, 0x5e, 0x2f, 0x0a, 0x69, 0x08, + 0x27, 0xe3, 0x5f, 0xde, 0x52, 0x23, 0xec, 0x45, 0x61, 0x03, 0x13, 0x12, 0x46, 0xb1, 0xca, 0x9b, + 0xbb, 0x19, 0x44, 0xbd, 0x46, 0x6a, 0xe9, 0xcd, 0x74, 0x7b, 0xbd, 0xe4, 0x71, 0x39, 0x42, 0x57, + 0xf4, 0x82, 0xe0, 0x68, 0x80, 0x23, 0xa1, 0x5f, 0x6e, 0xb6, 0x09, 0x6a, 0xb5, 0x22, 0xdc, 0x42, + 0x14, 0x37, 0x13, 0xe1, 0x4a, 0x2b, 0x6c, 0x85, 0xfc, 0xf1, 0x57, 0xec, 0x29, 0x91, 0x2e, 0x44, + 0x7d, 0x42, 0xf9, 0x63, 0x2c, 0xf0, 0xff, 0xb1, 0x04, 0x56, 0x0e, 0x10, 0x6d, 0x5c, 0x97, 0xc2, + 0x6e, 0x17, 0x05, 0x4d, 0x52, 0xc5, 0x6f, 0xfa, 0x98, 0x50, 0xb8, 0x0f, 0xa6, 0xa3, 0xf8, 0x91, + 0xb8, 0x63, 0x8f, 0xee, 0xef, 0xce, 0x7e, 0xbc, 0xbd, 0x97, 0x8c, 0xdf, 0x66, 0xbf, 0x97, 0xfc, + 0x5b, 0x15, 0x5e, 0x70, 0x0b, 0xcc, 0x26, 0xcf, 0x17, 0xed, 0x26, 0x71, 0xef, 0x3d, 0xba, 0xbf, + 0x3b, 0x5e, 0x05, 0x89, 0xe8, 0xb4, 0x49, 0xbc, 0x9f, 0x16, 0xc1, 0x54, 0x9a, 0xee, 0x03, 0x70, + 0xff, 0x18, 0x53, 0x77, 0xec, 0xd1, 0xd8, 0xee, 0xec, 0xc7, 0xcb, 0x7b, 0xe9, 0x02, 0x1c, 0x63, + 0x9a, 0x58, 0x9c, 0x38, 0x55, 0x66, 0x01, 0x3f, 0x02, 0xe3, 0xb5, 0x06, 0x0a, 0xdc, 0x7b, 0xdc, + 0x72, 0x45, 0x58, 0x32, 0xa1, 0x34, 0xe5, 0x36, 0xf0, 0x33, 0x30, 0x5d, 0x89, 0xf0, 0x6d, 0xd4, + 0xa6, 0xd8, 0xbd, 0xcf, 0xed, 0x5d, 0x61, 0x9f, 0x2a, 0xa4, 0x8f, 0xb0, 0x85, 0xcf, 0xc0, 0x24, + 0x9b, 0x5e, 0x9b, 0xba, 0xe3, 0xdc, 0xeb, 0x81, 0xf0, 0x8a, 0xc5, 0xd2, 0x27, 0xb1, 0x63, 0x1e, + 0xa7, 0xdd, 0x5e, 0x18, 0x51, 0x77, 0xc2, 0xf0, 0x88, 0xc5, 0x8a, 0x47, 0x2c, 0x80, 0x9f, 0x80, + 0xa9, 0x52, 0x07, 0xa3, 0xa0, 0xdf, 0x73, 0x27, 0xb9, 0xcb, 0x9a, 0x4c, 0x12, 0xcb, 0xa5, 0x4f, + 0x6a, 0xc9, 0x26, 0xc4, 0x17, 0x9f, 0x2d, 0xd5, 0x94, 0x31, 0xa1, 0x54, 0xa1, 0x4c, 0x28, 0x15, + 0xc1, 0x6f, 0xc1, 0x1c, 0x7f, 0xae, 0x86, 0x9d, 0xce, 0x25, 0x6a, 0xdc, 0xb8, 0xd3, 0xdc, 0xf9, + 0xa1, 0xee, 0x9c, 0x6a, 0x65, 0x04, 0xdd, 0x8b, 0xa5, 0x67, 0xeb, 0x7a, 0x16, 0x36, 0x6e, 0xdc, + 0x19, 0x23, 0x7d, 0xaa, 0x50, 0xd2, 0xa7, 0x22, 0xf8, 0x0d, 0x98, 0xad, 0x62, 0x12, 0x76, 0x06, + 0x98, 0xbb, 0x02, 0xee, 0xfa, 0xbe, 0x70, 0x55, 0x74, 0xd2, 0x5b, 0xf5, 0x80, 0xdb, 0xe0, 0xde, + 0x71, 0xc9, 0x9d, 0xe5, 0x7e, 0x50, 0x7e, 0x1c, 0x25, 0x69, 0x7e, 0xef, 0xb8, 0xc4, 0xd2, 0x1c, + 0xe2, 0x0e, 0xa6, 0xb8, 0x8a, 0x82, 0x16, 0x76, 0xdf, 0x33, 0xd2, 0x28, 0x3a, 0x25, 0x8d, 0x22, + 0x65, 0x6f, 0xb1, 0x8a, 0x6e, 0xd9, 0xe2, 0xce, 0x19, 0x6f, 0x31, 0x16, 0x2b, 0x6f, 0x31, 0x16, + 0xf0, 0x99, 0xa1, 0x5b, 0xf1, 0x4e, 0xe6, 0xcd, 0x99, 0x49, 0x9d, 0x3a, 0x33, 0x29, 0x4d, 0x52, + 0x56, 0xfa, 0xd4, 0x5d, 0xc8, 0xa6, 0xac, 0xf4, 0x8d, 0x94, 0x95, 0xbe, 0x96, 0x92, 0xb9, 0x2d, + 0xe6, 0xa4, 0xd4, 0x7c, 0x55, 0x0f, 0xf8, 0x39, 0x98, 0xa9, 0xa2, 0xdb, 0x78, 0xde, 0xee, 0x12, + 0x77, 0x5f, 0x57, 0xdd, 0x93, 0x15, 0x11, 0xce, 0xd2, 0x1a, 0x9e, 0x80, 0xf9, 0x34, 0x52, 0xe2, + 0x0f, 0xb9, 0xff, 0x66, 0x26, 0xbd, 0x19, 0xc4, 0xf0, 0x63, 0x9f, 0x7f, 0x15, 0xdd, 0xf2, 0x9d, + 0xbc, 0x6c, 0x7c, 0xfe, 0x89, 0x5c, 0xf9, 0xfc, 0x13, 0x49, 0x92, 0x5e, 0x7d, 0xc7, 0x2b, 0xd9, + 0xf4, 0xd6, 0xd7, 0x6c, 0xf8, 0xc1, 0x03, 0xf0, 0x5e, 0x3a, 0x20, 0x3e, 0x86, 0x55, 0x1e, 0x67, + 0x23, 0x33, 0x0d, 0x7d, 0x20, 0x9a, 0x0f, 0xfc, 0x0d, 0x98, 0x2d, 0xc9, 0xd2, 0xed, 0x3e, 0x48, + 0x0a, 0x92, 0x5a, 0xce, 0x95, 0x37, 0xa0, 0x98, 0xc2, 0x32, 0x58, 0xa8, 0x60, 0x42, 0xda, 0xdd, + 0x36, 0xa1, 0xed, 0x06, 0xdf, 0x13, 0x6b, 0xdc, 0x7b, 0x4b, 0x96, 0x27, 0x5d, 0x2f, 0x03, 0x99, + 0x9e, 0xf0, 0x47, 0xb0, 0xac, 0x88, 0xc4, 0x0e, 0x77, 0x79, 0xc0, 0x27, 0xb6, 0x80, 0xd9, 0x7d, + 0x6e, 0x8b, 0xc0, 0x56, 0xbb, 0x74, 0x8d, 0x1b, 0x37, 0xf5, 0xb7, 0x41, 0x8d, 0x22, 0xda, 0x27, + 0xee, 0xba, 0xb1, 0xda, 0xba, 0x5a, 0x59, 0x6d, 0x5d, 0xc1, 0x56, 0xbb, 0xfe, 0x36, 0x38, 0xc1, + 0x28, 0xa2, 0x07, 0x18, 0x51, 0xd7, 0x33, 0x56, 0x5b, 0x55, 0x2a, 0xab, 0xad, 0x8a, 0xd9, 0x34, + 0x79, 0xd4, 0x1a, 0x6e, 0x84, 0x41, 0x13, 0x45, 0x43, 0x36, 0x79, 0xe2, 0x3e, 0x36, 0xa6, 0x69, + 0xb1, 0x51, 0xa6, 0x69, 0xd1, 0x26, 0x1f, 0x95, 0xfa, 0x26, 0xfd, 0xec, 0x47, 0xa5, 0xa8, 0xf5, + 0x8f, 0x4a, 0x7d, 0xad, 0x75, 0x00, 0x8f, 0x3a, 0x88, 0x5c, 0xb3, 0xd5, 0xab, 0x87, 0x3f, 0xe0, + 0x88, 0xb4, 0xc3, 0xc0, 0x7d, 0xc2, 0xa3, 0xf9, 0x22, 0x5a, 0xd6, 0x44, 0x46, 0xb4, 0xf8, 0xc3, + 0x36, 0x58, 0xaf, 0x44, 0xb8, 0x87, 0x22, 0x6c, 0x09, 0xbe, 0xcd, 0x83, 0x7f, 0xa8, 0x9e, 0x6a, + 0x76, 0x4b, 0x99, 0x23, 0x3f, 0x1a, 0xfc, 0x25, 0x98, 0x38, 0xea, 0xf4, 0xc9, 0xb5, 0xfb, 0x94, + 0x87, 0x5d, 0x55, 0xc6, 0xdc, 0x27, 0xd7, 0x32, 0x44, 0x6c, 0xc5, 0x56, 0xee, 0xa0, 0x7f, 0x75, + 0x85, 0x23, 0x51, 0xff, 0x76, 0x8c, 0x95, 0xd3, 0xd5, 0xca, 0xca, 0xe9, 0x0a, 0xf8, 0x05, 0x98, + 0xf8, 0xb6, 0xdb, 0xa3, 0x43, 0xf7, 0x7f, 0x31, 0x00, 0x3c, 0xb6, 0xa2, 0x06, 0x37, 0x51, 0x46, + 0xc1, 0x7f, 0x1f, 0x4c, 0x80, 0xfb, 0x8d, 0x6e, 0xf3, 0xbb, 0xf1, 0xe9, 0xf7, 0x17, 0x1f, 0xfb, + 0xff, 0x81, 0x60, 0xd5, 0xc0, 0x13, 0xd2, 0x0b, 0x03, 0x82, 0xe1, 0x21, 0x98, 0x89, 0x92, 0xe7, + 0x14, 0x68, 0x76, 0x72, 0x80, 0x26, 0xb6, 0xda, 0x4b, 0x1f, 0xaa, 0xd2, 0x71, 0x24, 0xd3, 0xc0, + 0x67, 0x60, 0x85, 0x46, 0x28, 0x20, 0xec, 0x8c, 0xbf, 0xe8, 0xa0, 0x21, 0x8e, 0x2e, 0x3a, 0x21, + 0x6a, 0x72, 0xfc, 0x18, 0xaf, 0x42, 0xa1, 0x3b, 0x63, 0xaa, 0xb3, 0x10, 0x35, 0xe1, 0x37, 0x60, + 0xe1, 0x1a, 0xa3, 0x0e, 0xbd, 0xbe, 0xb8, 0xc2, 0xb8, 0xc9, 0xf7, 0x6e, 0x4a, 0x1d, 0xc9, 0xf0, + 0x4e, 0xb8, 0xfa, 0x28, 0xd1, 0x56, 0xe7, 0xaf, 0xb5, 0xdf, 0xde, 0x7f, 0x17, 0xc1, 0xb4, 0x98, + 0xe6, 0xae, 0xca, 0x51, 0x2b, 0x3a, 0x47, 0xc5, 0x26, 0x29, 0x48, 0xfd, 0x42, 0x03, 0xa9, 0x55, + 0x03, 0xa4, 0x84, 0x6d, 0x4c, 0x52, 0x2f, 0x32, 0x24, 0xb5, 0x6e, 0x21, 0x29, 0xe1, 0x24, 0x51, + 0xea, 0xb9, 0x81, 0x52, 0x6b, 0x19, 0x94, 0x12, 0x4e, 0x29, 0x4b, 0x3d, 0x37, 0x58, 0x6a, 0x2d, + 0xc3, 0x52, 0xd2, 0x25, 0x81, 0xa9, 0x4f, 0x4d, 0x98, 0x72, 0xb3, 0x30, 0x25, 0x9c, 0x04, 0x4d, + 0xbd, 0xc8, 0xd0, 0xd4, 0xba, 0x85, 0xa6, 0xe4, 0xa4, 0xc4, 0xe7, 0x7a, 0x64, 0xc7, 0xa9, 0xcd, + 0x3c, 0x9c, 0x12, 0x21, 0x0c, 0x9e, 0x7a, 0x91, 0xe1, 0xa9, 0x75, 0x0b, 0x4f, 0xc9, 0x01, 0x08, + 0xa0, 0xda, 0xb7, 0x01, 0xd5, 0x86, 0x1d, 0xa8, 0x84, 0xbb, 0x46, 0x54, 0x4f, 0x15, 0xa2, 0x5a, + 0xd6, 0x88, 0x4a, 0xd8, 0x33, 0xa4, 0xda, 0xb7, 0x21, 0xd5, 0x86, 0x1d, 0xa9, 0x64, 0x22, 0xf5, + 0xa4, 0x7d, 0x6e, 0x30, 0xd5, 0x5a, 0x86, 0xa9, 0xe4, 0xdb, 0x4c, 0xa0, 0x6a, 0xdf, 0x06, 0x55, + 0x1b, 0x76, 0xa8, 0x52, 0x66, 0xa7, 0x50, 0xd5, 0x73, 0x83, 0xaa, 0xd6, 0x32, 0x54, 0xa5, 0x25, + 0x65, 0x54, 0xb4, 0x6f, 0xc3, 0xaa, 0x0d, 0x3b, 0x56, 0x65, 0x93, 0xb2, 0x08, 0x5f, 0x64, 0xb9, + 0xca, 0xb3, 0x71, 0x95, 0xf0, 0x56, 0xc0, 0xea, 0x34, 0x07, 0xac, 0xb6, 0x72, 0xc1, 0x4a, 0x44, + 0x31, 0xc9, 0xea, 0x53, 0x93, 0xac, 0xdc, 0x2c, 0x59, 0xc9, 0xbd, 0x90, 0xa2, 0xd5, 0x69, 0x0e, + 0x5a, 0x6d, 0xe5, 0xa2, 0x95, 0x36, 0x00, 0xf5, 0x8d, 0x97, 0xac, 0x6c, 0xf5, 0x30, 0x87, 0xad, + 0x44, 0x18, 0x1d, 0xae, 0x3e, 0xb7, 0xc1, 0xd5, 0xaa, 0x01, 0x57, 0xf2, 0x3d, 0xa8, 0xc7, 0xf0, + 0x59, 0x1e, 0x5d, 0x3d, 0xca, 0xa7, 0x2b, 0x11, 0x29, 0x83, 0x57, 0xaf, 0x8b, 0xf0, 0x6a, 0xbb, + 0x18, 0xaf, 0x44, 0x54, 0x2b, 0x5f, 0x9d, 0xe6, 0xf0, 0xd5, 0x56, 0x2e, 0x5f, 0xc9, 0x25, 0x37, + 0x00, 0xab, 0x64, 0x05, 0xac, 0x87, 0x39, 0x80, 0x25, 0x97, 0x5c, 0x23, 0xac, 0xd7, 0x45, 0x84, + 0xb5, 0x5d, 0x4c, 0x58, 0x72, 0xa6, 0x36, 0xc4, 0x3a, 0xcd, 0x41, 0xac, 0xad, 0x5c, 0xc4, 0xd2, + 0x3e, 0x2e, 0xf5, 0xe5, 0xbe, 0x2a, 0x60, 0xac, 0x27, 0x85, 0x8c, 0x25, 0x42, 0xda, 0x20, 0xeb, + 0xcf, 0xa3, 0x21, 0xeb, 0xa3, 0xbb, 0x40, 0x96, 0x48, 0x52, 0x40, 0x59, 0x7b, 0x3a, 0x65, 0x3d, + 0x30, 0x29, 0x4b, 0xc4, 0x48, 0x30, 0xeb, 0x34, 0x07, 0xb3, 0xb6, 0x72, 0x31, 0x4b, 0xae, 0x9e, + 0xc1, 0x59, 0x5f, 0x1a, 0x9c, 0xe5, 0x17, 0x71, 0x96, 0x1c, 0x87, 0x05, 0xb4, 0x0e, 0xc0, 0x62, + 0x7c, 0x96, 0xa1, 0x2b, 0x7a, 0x8e, 0x09, 0x41, 0x2d, 0x0c, 0xf7, 0xc0, 0x78, 0x97, 0xb4, 0x52, + 0xba, 0xf2, 0xf6, 0xf4, 0xbb, 0x2a, 0xc5, 0xb2, 0xca, 0xed, 0xfc, 0x1a, 0x58, 0xcf, 0xe5, 0x3b, + 0xb8, 0x06, 0xa6, 0x68, 0x8c, 0x59, 0x1c, 0x66, 0xc6, 0xab, 0x93, 0x94, 0x23, 0x16, 0x7c, 0x08, + 0x40, 0x13, 0x77, 0xd0, 0xf0, 0x82, 0xb6, 0xbb, 0x98, 0xd3, 0xcb, 0x78, 0x75, 0x86, 0x4b, 0xea, + 0xed, 0x2e, 0xf6, 0x7f, 0x0d, 0xbc, 0xfc, 0xc9, 0xe4, 0x46, 0xf5, 0x23, 0x30, 0xaf, 0x63, 0x16, + 0x5c, 0x07, 0xd3, 0x84, 0x86, 0x11, 0x96, 0xb6, 0x53, 0xfc, 0xf7, 0x69, 0x13, 0xee, 0x80, 0x85, + 0x94, 0xd5, 0x2e, 0x08, 0x7e, 0x73, 0x11, 0x84, 0xc9, 0x38, 0xe6, 0x52, 0x71, 0x0d, 0xbf, 0xf9, + 0x5d, 0xc8, 0x86, 0x4a, 0x3a, 0xe1, 0xed, 0x05, 0x69, 0x84, 0x51, 0xcc, 0x4d, 0x13, 0xd5, 0x19, + 0x26, 0xa9, 0x31, 0xc1, 0xc7, 0x7f, 0xfb, 0x08, 0x8c, 0xd7, 0xdb, 0x37, 0x03, 0xf8, 0x29, 0x98, + 0x28, 0x0f, 0xd8, 0xfb, 0xb1, 0x5d, 0x7c, 0x79, 0x56, 0x8a, 0xf3, 0x1d, 0xf8, 0x02, 0x4c, 0x96, + 0x07, 0xbc, 0x58, 0x5a, 0x6f, 0xc1, 0x3c, 0x3b, 0xd2, 0xf9, 0x0e, 0x2c, 0x01, 0x50, 0x1e, 0x08, + 0x42, 0xcb, 0xbd, 0x12, 0xf3, 0xf2, 0x11, 0xcf, 0x77, 0xe0, 0x6b, 0xb0, 0x54, 0x1e, 0x98, 0xc5, + 0x72, 0x54, 0xff, 0xea, 0x8d, 0x2c, 0xc1, 0xbe, 0x03, 0x9b, 0x60, 0xb5, 0xfc, 0x83, 0xad, 0x60, + 0xde, 0xa5, 0x99, 0xf5, 0xee, 0x54, 0x92, 0x7d, 0x07, 0x7e, 0x0f, 0xe6, 0xcb, 0x03, 0xad, 0xfe, + 0x15, 0xf6, 0xa3, 0x5e, 0x71, 0x31, 0xf5, 0x1d, 0xf8, 0x0a, 0x2c, 0x96, 0x07, 0x46, 0x5d, 0x1e, + 0xd1, 0x2a, 0x7b, 0xa3, 0x4a, 0x7d, 0xb2, 0x1a, 0x03, 0x5b, 0x51, 0xbd, 0x4b, 0xcf, 0xeb, 0xdd, + 0xa9, 0x6c, 0xfb, 0x0e, 0xfc, 0x2d, 0x98, 0x2e, 0x0f, 0x12, 0xfe, 0xce, 0xb9, 0xed, 0xf4, 0xf2, + 0xd0, 0x3d, 0x75, 0x4f, 0x58, 0x3c, 0xe7, 0xea, 0xd3, 0xcb, 0xc3, 0x78, 0xdf, 0x81, 0xfb, 0x60, + 0xa6, 0x3c, 0x48, 0xa9, 0x3c, 0xef, 0x1e, 0xd4, 0xcb, 0x65, 0xfa, 0xf4, 0x93, 0x16, 0x65, 0x2e, + 0xf7, 0x52, 0xd4, 0xcb, 0x07, 0x7c, 0xdf, 0x81, 0x55, 0xb0, 0x90, 0x04, 0x11, 0x9f, 0x5c, 0xf1, + 0x0d, 0xa9, 0x37, 0x82, 0xf8, 0xd3, 0x81, 0x09, 0x6e, 0xcf, 0xbd, 0x2e, 0xf5, 0xf2, 0xc1, 0xdf, + 0x77, 0xe0, 0x19, 0x98, 0x2b, 0x0f, 0x54, 0x7a, 0x2f, 0xba, 0x3b, 0xf5, 0x0a, 0xfb, 0x00, 0xdf, + 0x81, 0xcf, 0xc1, 0x78, 0x79, 0x70, 0x5c, 0x82, 0x96, 0x8b, 0x54, 0xcf, 0xd6, 0x0a, 0xa4, 0x03, + 0x50, 0x19, 0xaf, 0xe8, 0x56, 0xd5, 0x2b, 0xec, 0x0f, 0x7c, 0x07, 0x0e, 0xc0, 0xfb, 0xbc, 0xfe, + 0xe4, 0x9c, 0x8f, 0x77, 0xbf, 0xcd, 0xf0, 0x7e, 0xc6, 0x99, 0xec, 0x3b, 0x10, 0x81, 0x95, 0xf2, + 0xc0, 0x92, 0xf0, 0x0e, 0x77, 0x33, 0xde, 0x5d, 0xd8, 0xc2, 0x77, 0xe0, 0x17, 0x60, 0x8a, 0xa5, + 0x60, 0xc7, 0xb6, 0xfd, 0xf6, 0xc4, 0xcb, 0x39, 0xee, 0xd3, 0x02, 0x62, 0x1c, 0xd8, 0x23, 0xae, + 0x52, 0xbc, 0x51, 0x0c, 0xe0, 0x3b, 0xf0, 0xcb, 0xb4, 0x01, 0x83, 0x39, 0xd7, 0xd9, 0x5e, 0x5e, + 0x4b, 0xe6, 0x3b, 0xf0, 0x3b, 0xad, 0x15, 0x83, 0x45, 0x37, 0xdb, 0x5e, 0x61, 0x87, 0x26, 0x06, + 0xc2, 0x3a, 0xa5, 0x9c, 0x4b, 0x6e, 0x2f, 0xaf, 0x4d, 0xd3, 0x07, 0xc2, 0x22, 0x14, 0xdd, 0x77, + 0x7b, 0x85, 0x5d, 0x9b, 0xef, 0xc0, 0x43, 0xa5, 0x51, 0x83, 0xf9, 0x57, 0xdf, 0x5e, 0x41, 0xf7, + 0xe6, 0x3b, 0xb0, 0x66, 0xb6, 0x6c, 0x70, 0xc4, 0x2d, 0xb8, 0x37, 0xaa, 0x99, 0xf3, 0x1d, 0xf8, + 0xb5, 0x68, 0xde, 0x60, 0xde, 0x85, 0xb8, 0x97, 0xdb, 0xcf, 0x89, 0x41, 0xa9, 0x3b, 0x75, 0xc4, + 0xdd, 0xb8, 0x37, 0xaa, 0xc1, 0xf3, 0x1d, 0x78, 0xae, 0x37, 0x74, 0xb0, 0xf0, 0x9a, 0xdc, 0x2b, + 0x6e, 0xf4, 0x44, 0xb8, 0x63, 0x4c, 0xcb, 0x78, 0x58, 0xaf, 0x9f, 0xe9, 0xe1, 0x84, 0xd8, 0x1a, + 0x4e, 0xd1, 0x8a, 0x70, 0x47, 0x60, 0x89, 0xf7, 0x08, 0x5d, 0xb6, 0xff, 0x5f, 0x06, 0xcd, 0xda, + 0x2d, 0xea, 0xe9, 0x5f, 0x58, 0xe9, 0x65, 0xcd, 0xfa, 0x85, 0x71, 0xb9, 0xf1, 0x85, 0xf1, 0x63, + 0x92, 0xf4, 0xbb, 0xfa, 0x17, 0x96, 0x4a, 0xad, 0x5f, 0x98, 0x54, 0x8a, 0x58, 0x17, 0x00, 0xbe, + 0x0a, 0x08, 0xba, 0xc2, 0x87, 0x98, 0xd0, 0x28, 0x1c, 0xc6, 0xaf, 0x42, 0xd6, 0x99, 0xac, 0x32, + 0x5b, 0x67, 0x6c, 0x36, 0x22, 0x01, 0x06, 0x2b, 0x55, 0xdc, 0x6a, 0x13, 0x8a, 0x23, 0x56, 0xdd, + 0xbf, 0xbf, 0x8c, 0x31, 0x1b, 0x6e, 0x2b, 0xb5, 0x3f, 0xab, 0x4e, 0x93, 0x3c, 0x1d, 0x61, 0x25, + 0xd2, 0xfc, 0x11, 0x2c, 0xf1, 0xd9, 0x69, 0x39, 0x1e, 0xeb, 0x4c, 0x61, 0x4b, 0xe0, 0x17, 0x99, + 0xa8, 0xab, 0x54, 0xc5, 0xdd, 0x30, 0x3e, 0xa0, 0x44, 0x78, 0x5f, 0x19, 0x9c, 0xa9, 0xcc, 0xae, + 0x92, 0xcd, 0x46, 0x24, 0xf8, 0x3d, 0x58, 0xac, 0x5c, 0x0f, 0x49, 0xbb, 0x81, 0x3a, 0xe2, 0x08, + 0x56, 0x08, 0xd4, 0x50, 0xa5, 0xc1, 0x1f, 0x17, 0x58, 0x88, 0xd0, 0x5f, 0x69, 0xf7, 0x13, 0xd0, + 0xfa, 0xdf, 0x3e, 0x9e, 0xfd, 0xbe, 0x82, 0x57, 0xa0, 0x25, 0xc5, 0xbb, 0x46, 0x23, 0x8c, 0xba, + 0x3f, 0x33, 0xc6, 0xb3, 0x31, 0x78, 0x9e, 0xf4, 0x60, 0xea, 0x40, 0xd6, 0x35, 0xf3, 0x98, 0x4a, + 0x44, 0x39, 0xb3, 0xa8, 0x94, 0x70, 0x35, 0xb3, 0x4b, 0x87, 0x23, 0xfe, 0x0b, 0xc4, 0x1b, 0xd5, + 0xbf, 0xf3, 0xa2, 0x3f, 0xce, 0x1a, 0x3f, 0x58, 0xd0, 0x0d, 0x7a, 0xcb, 0x86, 0xee, 0x30, 0x0c, + 0xb0, 0xef, 0xec, 0x8e, 0xc1, 0xaf, 0xc1, 0x8c, 0x68, 0x32, 0xa1, 0xab, 0xf5, 0xaa, 0x77, 0xf2, + 0x7f, 0x09, 0xa6, 0x6b, 0x01, 0xea, 0x91, 0xeb, 0x90, 0xd1, 0xbd, 0x6e, 0x94, 0x2a, 0x4a, 0xd7, + 0xfd, 0xe0, 0x26, 0x3f, 0x44, 0x03, 0xcc, 0xd7, 0xd1, 0x65, 0x07, 0x53, 0x11, 0x68, 0xdb, 0x30, + 0xd5, 0xd5, 0x72, 0x8b, 0x15, 0x5b, 0xa5, 0x0b, 0xb4, 0x3b, 0xf6, 0x6c, 0x8c, 0x95, 0x9e, 0x5a, + 0xaf, 0xc3, 0x88, 0xba, 0xc5, 0x78, 0x44, 0x96, 0x1e, 0x45, 0x9a, 0x2d, 0x3d, 0x9a, 0x52, 0x3b, + 0xdc, 0x30, 0x6a, 0x9e, 0x06, 0x4d, 0xfc, 0x56, 0x3d, 0xdc, 0x52, 0x99, 0xe5, 0x70, 0x93, 0x2a, + 0xb5, 0x46, 0x9f, 0x0f, 0x1a, 0x8d, 0x63, 0x4c, 0x0f, 0x86, 0x65, 0x3c, 0x54, 0x6a, 0xb4, 0x2a, + 0xce, 0xd6, 0x68, 0x5d, 0xab, 0x6e, 0x44, 0xa1, 0xa9, 0x51, 0x14, 0xd1, 0x3a, 0x51, 0x36, 0xa2, + 0xa9, 0xca, 0x6e, 0xc4, 0xac, 0x85, 0x02, 0xed, 0x73, 0x5a, 0xbf, 0x0f, 0x37, 0x8a, 0xfe, 0x4c, + 0xc5, 0x7b, 0x58, 0xf8, 0x7f, 0x3e, 0xc9, 0xfb, 0x38, 0x01, 0x0b, 0x87, 0x6d, 0xd2, 0x63, 0x16, + 0xe7, 0x95, 0x4a, 0x1d, 0x11, 0x46, 0xee, 0xdd, 0x5e, 0x6f, 0x2f, 0x95, 0x32, 0x91, 0x24, 0xf7, + 0xac, 0x46, 0x8c, 0xee, 0x00, 0xcc, 0x95, 0x50, 0xd0, 0xc0, 0x9d, 0x34, 0xce, 0x03, 0x6e, 0x1d, + 0xcb, 0xd4, 0x28, 0x6b, 0x19, 0xb9, 0x88, 0x51, 0x07, 0x0f, 0xbe, 0x25, 0x14, 0x5d, 0x76, 0xda, + 0x84, 0x0d, 0xa7, 0x14, 0x06, 0x01, 0x6e, 0xd0, 0x18, 0x5c, 0x99, 0x93, 0x5d, 0x99, 0x06, 0x86, + 0xdc, 0xe6, 0xbc, 0x52, 0x39, 0x44, 0x14, 0x55, 0x50, 0xe3, 0x06, 0x53, 0xbe, 0xdb, 0x3f, 0x03, + 0x53, 0xa7, 0xe4, 0x65, 0xa7, 0x3d, 0xc0, 0x70, 0x99, 0x9b, 0x24, 0xbf, 0xe4, 0xad, 0x83, 0x26, + 0x54, 0x46, 0xb3, 0x5c, 0xc5, 0xac, 0x7f, 0x4b, 0x66, 0x94, 0x74, 0xba, 0x1b, 0xdc, 0x3c, 0xd6, + 0x48, 0xb1, 0x5c, 0x75, 0xbb, 0x56, 0x44, 0x3d, 0x01, 0xb3, 0xf1, 0x49, 0x81, 0x51, 0x13, 0x47, + 0xca, 0x0e, 0x50, 0xa4, 0xd9, 0x1d, 0xa0, 0x29, 0x93, 0x1b, 0x9e, 0x32, 0x98, 0x3f, 0xc6, 0xb4, + 0x46, 0xc3, 0x08, 0xd7, 0xd0, 0x15, 0xae, 0xd7, 0xd4, 0xed, 0x24, 0xa5, 0x96, 0xed, 0xa4, 0x2a, + 0x93, 0x60, 0x75, 0xb0, 0x70, 0x8c, 0x29, 0x2b, 0xfd, 0x3f, 0xa2, 0x36, 0x3d, 0x0d, 0xae, 0x42, + 0xe5, 0x8a, 0xc3, 0xd0, 0x64, 0xaf, 0x38, 0x32, 0x06, 0x49, 0xd4, 0xaf, 0xc0, 0x14, 0xc7, 0x95, + 0x06, 0x85, 0x5a, 0x4f, 0xcd, 0x24, 0x96, 0x66, 0x37, 0x55, 0x24, 0xde, 0x7f, 0x02, 0x50, 0x09, + 0x7c, 0xd2, 0x26, 0x34, 0x8c, 0x86, 0xca, 0xa9, 0x99, 0x55, 0x66, 0x4f, 0x4d, 0x9b, 0x4d, 0x12, + 0xfe, 0x12, 0xac, 0x1e, 0x63, 0x5a, 0x6f, 0xf3, 0x36, 0xa7, 0x36, 0x24, 0x14, 0x77, 0x79, 0xed, + 0x52, 0x32, 0x64, 0x95, 0xd9, 0x0c, 0x36, 0x1b, 0x85, 0x52, 0x01, 0x8d, 0x86, 0x2f, 0x9b, 0xcd, + 0xe4, 0x44, 0xd6, 0xff, 0x7e, 0xad, 0x2e, 0x54, 0xb2, 0x10, 0xe4, 0x5b, 0x28, 0xac, 0x32, 0x47, + 0xa3, 0xe1, 0x39, 0x8a, 0x6e, 0x12, 0x1c, 0x7f, 0x92, 0xf5, 0x92, 0x5a, 0x79, 0x41, 0x52, 0x68, + 0x24, 0xa2, 0x07, 0x60, 0x59, 0xec, 0xb3, 0x43, 0xee, 0xc1, 0xb7, 0xf3, 0x87, 0x86, 0xbb, 0xc5, + 0x46, 0xf6, 0xaa, 0x77, 0x30, 0x55, 0x00, 0x6f, 0x31, 0x2e, 0x06, 0x4a, 0xb2, 0x1d, 0x23, 0x82, + 0x69, 0x90, 0x66, 0xfa, 0x60, 0xa4, 0x9d, 0x48, 0xf3, 0x07, 0xb0, 0x78, 0x84, 0x59, 0x23, 0xc2, + 0x95, 0x15, 0xd4, 0xc2, 0x24, 0x93, 0xc6, 0x34, 0x90, 0x27, 0x88, 0x6e, 0xc7, 0x95, 0x4a, 0x85, + 0xb9, 0xe4, 0x9b, 0x27, 0x76, 0x2c, 0x85, 0xc1, 0x55, 0xbb, 0x05, 0x9f, 0x1a, 0x2e, 0x86, 0x3e, + 0x8d, 0xbc, 0x33, 0xca, 0x2c, 0x1d, 0xff, 0xc1, 0xce, 0x3f, 0xff, 0x3a, 0x3d, 0xf6, 0xf7, 0x77, + 0x9b, 0x63, 0x3f, 0xbd, 0xdb, 0x1c, 0xfb, 0xd7, 0xbb, 0xcd, 0xb1, 0xbf, 0xfc, 0x7b, 0xd3, 0x01, + 0x8b, 0x61, 0xd4, 0xe2, 0x75, 0x7e, 0xef, 0x66, 0xc0, 0xff, 0xcc, 0xf1, 0x72, 0x92, 0xff, 0xf3, + 0xc9, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0xa9, 0x2c, 0x72, 0x91, 0x83, 0x29, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -5151,26 +5236,38 @@ func (m *BatchCommandsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.HealthFeedback != nil { + { + size, err := m.HealthFeedback.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTikvpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } if m.TransportLayerLoad != 0 { i = encodeVarintTikvpb(dAtA, i, uint64(m.TransportLayerLoad)) i-- dAtA[i] = 0x18 } if len(m.RequestIds) > 0 { - dAtA37 := make([]byte, len(m.RequestIds)*10) - var j36 int + dAtA38 := make([]byte, len(m.RequestIds)*10) + var j37 int for _, num := range m.RequestIds { for num >= 1<<7 { - dAtA37[j36] = uint8(uint64(num)&0x7f | 0x80) + dAtA38[j37] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j36++ + j37++ } - dAtA37[j36] = uint8(num) - j36++ + dAtA38[j37] = uint8(num) + j37++ } - i -= j36 - copy(dAtA[i:], dAtA37[:j36]) - i = encodeVarintTikvpb(dAtA, i, uint64(j36)) + i -= j37 + copy(dAtA[i:], dAtA38[:j37]) + i = encodeVarintTikvpb(dAtA, i, uint64(j37)) i-- dAtA[i] = 0x12 } @@ -6066,6 +6163,48 @@ func (m *BatchCommandsEmptyResponse) MarshalToSizedBuffer(dAtA []byte) (int, err return len(dAtA) - i, nil } +func (m *HealthFeedback) 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 *HealthFeedback) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *HealthFeedback) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if m.SlowScore != 0 { + i = encodeVarintTikvpb(dAtA, i, uint64(m.SlowScore)) + i-- + dAtA[i] = 0x18 + } + if m.FeedbackSeqNo != 0 { + i = encodeVarintTikvpb(dAtA, i, uint64(m.FeedbackSeqNo)) + i-- + dAtA[i] = 0x10 + } + if m.StoreId != 0 { + i = encodeVarintTikvpb(dAtA, i, uint64(m.StoreId)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func encodeVarintTikvpb(dAtA []byte, offset int, v uint64) int { offset -= sovTikvpb(v) base := offset @@ -6535,6 +6674,10 @@ func (m *BatchCommandsResponse) Size() (n int) { if m.TransportLayerLoad != 0 { n += 1 + sovTikvpb(uint64(m.TransportLayerLoad)) } + if m.HealthFeedback != nil { + l = m.HealthFeedback.Size() + n += 1 + l + sovTikvpb(uint64(l)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -7003,6 +7146,27 @@ func (m *BatchCommandsEmptyResponse) Size() (n int) { return n } +func (m *HealthFeedback) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.StoreId != 0 { + n += 1 + sovTikvpb(uint64(m.StoreId)) + } + if m.FeedbackSeqNo != 0 { + n += 1 + sovTikvpb(uint64(m.FeedbackSeqNo)) + } + if m.SlowScore != 0 { + n += 1 + sovTikvpb(uint64(m.SlowScore)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func sovTikvpb(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -8534,6 +8698,42 @@ func (m *BatchCommandsResponse) Unmarshal(dAtA []byte) error { break } } + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field HealthFeedback", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTikvpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTikvpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTikvpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.HealthFeedback == nil { + m.HealthFeedback = &HealthFeedback{} + } + if err := m.HealthFeedback.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTikvpb(dAtA[iNdEx:]) @@ -10006,6 +10206,114 @@ func (m *BatchCommandsEmptyResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *HealthFeedback) 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 ErrIntOverflowTikvpb + } + 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: HealthFeedback: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: HealthFeedback: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StoreId", wireType) + } + m.StoreId = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTikvpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StoreId |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field FeedbackSeqNo", wireType) + } + m.FeedbackSeqNo = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTikvpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.FeedbackSeqNo |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field SlowScore", wireType) + } + m.SlowScore = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTikvpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.SlowScore |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipTikvpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTikvpb + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipTikvpb(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 diff --git a/proto/tikvpb.proto b/proto/tikvpb.proto index 1fb73a002..3aec79dc6 100644 --- a/proto/tikvpb.proto +++ b/proto/tikvpb.proto @@ -197,6 +197,7 @@ message BatchCommandsResponse { repeated uint64 request_ids = 2; // 280 means TiKV gRPC cpu usage is 280%. uint64 transport_layer_load = 3; + HealthFeedback health_feedback = 4; message Response { oneof cmd { @@ -264,3 +265,17 @@ message BatchCommandsEmptyResponse { // ID of the test request. uint64 test_id = 1; } + +message HealthFeedback { + uint64 store_id = 1; + // The sequence number of the feedback message. + // It's defined as an incrementing integer, starting from the unix timestamp (milliseconds) at + // the time that the TiKV node is started. + // This can be useful for filtering out out-of-order feedback messages. + // Note that considering the possibility of system clock changing, this field doesn't guarantee + // uniqueness and monotonic if the TiKV node is restarted. + uint64 feedback_seq_no = 2; + // The slow_score calculated in raftstore module. Due to some limitations of slow score, this would + // be replaced by `SlowTrend` in the future. + int32 slow_score = 3; +} diff --git a/scripts/proto.lock b/scripts/proto.lock index 972ee9a97..8c09dc549 100644 --- a/scripts/proto.lock +++ b/scripts/proto.lock @@ -20035,6 +20035,11 @@ "id": 3, "name": "transport_layer_load", "type": "uint64" + }, + { + "id": 4, + "name": "health_feedback", + "type": "HealthFeedback" } ], "messages": [ @@ -20286,6 +20291,26 @@ "type": "uint64" } ] + }, + { + "name": "HealthFeedback", + "fields": [ + { + "id": 1, + "name": "store_id", + "type": "uint64" + }, + { + "id": 2, + "name": "feedback_seq_no", + "type": "uint64" + }, + { + "id": 3, + "name": "slow_score", + "type": "int32" + } + ] } ], "services": [