diff --git a/Documentation/dev-guide/api_reference_v3.md b/Documentation/dev-guide/api_reference_v3.md index 5984dc6a3..e37bdbfe8 100644 --- a/Documentation/dev-guide/api_reference_v3.md +++ b/Documentation/dev-guide/api_reference_v3.md @@ -75,6 +75,7 @@ This is a generated documentation. Please read the proto files for more. | HashKV | HashKVRequest | HashKVResponse | HashKV computes the hash of all MVCC keys up to a given revision. It only iterates "key" bucket in backend storage. | | Snapshot | SnapshotRequest | SnapshotResponse | Snapshot sends a snapshot of the entire backend from a member over a stream to a client. | | MoveLeader | MoveLeaderRequest | MoveLeaderResponse | MoveLeader requests current leader node to transfer its leadership to transferee. | +| Downgrade | DowngradeRequest | DowngradeResponse | Downgrade requests downgrade, cancel downgrade on the cluster version. | @@ -462,6 +463,24 @@ Empty field. +##### message `DowngradeRequest` (etcdserver/etcdserverpb/rpc.proto) + +| Field | Description | Type | +| ----- | ----------- | ---- | +| action | action is the kind of downgrade request to issue. The action may VALIDATE the target version, DOWNGRADE the cluster version, or CANCEL the current downgrading job. | DowngradeAction | +| version | version is the target version to downgrade. | string | + + + +##### message `DowngradeResponse` (etcdserver/etcdserverpb/rpc.proto) + +| Field | Description | Type | +| ----- | ----------- | ---- | +| header | | ResponseHeader | +| version | version is the current cluster version. | string | + + + ##### message `HashKVRequest` (etcdserver/etcdserverpb/rpc.proto) | Field | Description | Type | diff --git a/Documentation/dev-guide/apispec/swagger/rpc.swagger.json b/Documentation/dev-guide/apispec/swagger/rpc.swagger.json index 7b5400691..2c2a2fcbc 100644 --- a/Documentation/dev-guide/apispec/swagger/rpc.swagger.json +++ b/Documentation/dev-guide/apispec/swagger/rpc.swagger.json @@ -1242,6 +1242,39 @@ } } }, + "/v3/maintenance/downgrade": { + "post": { + "tags": [ + "Maintenance" + ], + "summary": "Downgrade requests downgrade, cancel downgrade on the cluster version.", + "operationId": "Downgrade", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/etcdserverpbDowngradeRequest" + } + } + ], + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/etcdserverpbDowngradeResponse" + } + }, + "default": { + "description": "An unexpected error response", + "schema": { + "$ref": "#/definitions/runtimeError" + } + } + } + } + }, "/v3/maintenance/hash": { "post": { "tags": [ @@ -1458,6 +1491,15 @@ "LEASE" ] }, + "DowngradeRequestDowngradeAction": { + "type": "string", + "default": "VALIDATE", + "enum": [ + "VALIDATE", + "ENABLE", + "CANCEL" + ] + }, "EventEventType": { "type": "string", "default": "PUT", @@ -2030,6 +2072,31 @@ } } }, + "etcdserverpbDowngradeRequest": { + "type": "object", + "properties": { + "action": { + "description": "action is the kind of downgrade request to issue. The action may\nVALIDATE the target version, DOWNGRADE the cluster version,\nor CANCEL the current downgrading job.", + "$ref": "#/definitions/DowngradeRequestDowngradeAction" + }, + "version": { + "description": "version is the target version to downgrade.", + "type": "string" + } + } + }, + "etcdserverpbDowngradeResponse": { + "type": "object", + "properties": { + "header": { + "$ref": "#/definitions/etcdserverpbResponseHeader" + }, + "version": { + "description": "version is the current cluster version.", + "type": "string" + } + } + }, "etcdserverpbHashKVRequest": { "type": "object", "properties": { diff --git a/clientv3/retry.go b/clientv3/retry.go index f419958f4..7a66ac819 100644 --- a/clientv3/retry.go +++ b/clientv3/retry.go @@ -222,6 +222,10 @@ func (rmc *retryMaintenanceClient) Defragment(ctx context.Context, in *pb.Defrag return rmc.mc.Defragment(ctx, in, opts...) } +func (rmc *retryMaintenanceClient) Downgrade(ctx context.Context, in *pb.DowngradeRequest, opts ...grpc.CallOption) (resp *pb.DowngradeResponse, err error) { + return rmc.mc.Downgrade(ctx, in, opts...) +} + type retryAuthClient struct { ac pb.AuthClient } diff --git a/etcdserver/api/membership/membershippb/membership.pb.go b/etcdserver/api/membership/membershippb/membership.pb.go index 57242a123..21fda37dc 100644 --- a/etcdserver/api/membership/membershippb/membership.pb.go +++ b/etcdserver/api/membership/membershippb/membership.pb.go @@ -13,6 +13,7 @@ Member ClusterVersionSetRequest ClusterMemberAttrSetRequest + DowngradeInfoSetRequest */ package membershippb @@ -97,12 +98,25 @@ func (*ClusterMemberAttrSetRequest) Descriptor() ([]byte, []int) { return fileDescriptorMembership, []int{4} } +type DowngradeInfoSetRequest struct { + Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"` + Ver string `protobuf:"bytes,2,opt,name=ver,proto3" json:"ver,omitempty"` +} + +func (m *DowngradeInfoSetRequest) Reset() { *m = DowngradeInfoSetRequest{} } +func (m *DowngradeInfoSetRequest) String() string { return proto.CompactTextString(m) } +func (*DowngradeInfoSetRequest) ProtoMessage() {} +func (*DowngradeInfoSetRequest) Descriptor() ([]byte, []int) { + return fileDescriptorMembership, []int{5} +} + func init() { proto.RegisterType((*RaftAttributes)(nil), "membershippb.RaftAttributes") proto.RegisterType((*Attributes)(nil), "membershippb.Attributes") proto.RegisterType((*Member)(nil), "membershippb.Member") proto.RegisterType((*ClusterVersionSetRequest)(nil), "membershippb.ClusterVersionSetRequest") proto.RegisterType((*ClusterMemberAttrSetRequest)(nil), "membershippb.ClusterMemberAttrSetRequest") + proto.RegisterType((*DowngradeInfoSetRequest)(nil), "membershippb.DowngradeInfoSetRequest") } func (m *RaftAttributes) Marshal() (dAtA []byte, err error) { size := m.Size() @@ -286,6 +300,40 @@ func (m *ClusterMemberAttrSetRequest) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *DowngradeInfoSetRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *DowngradeInfoSetRequest) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if m.Enabled { + dAtA[i] = 0x8 + i++ + if m.Enabled { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i++ + } + if len(m.Ver) > 0 { + dAtA[i] = 0x12 + i++ + i = encodeVarintMembership(dAtA, i, uint64(len(m.Ver))) + i += copy(dAtA[i:], m.Ver) + } + return i, nil +} + func encodeVarintMembership(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) @@ -366,6 +414,19 @@ func (m *ClusterMemberAttrSetRequest) Size() (n int) { return n } +func (m *DowngradeInfoSetRequest) Size() (n int) { + var l int + _ = l + if m.Enabled { + n += 2 + } + l = len(m.Ver) + if l > 0 { + n += 1 + l + sovMembership(uint64(l)) + } + return n +} + func sovMembership(x uint64) (n int) { for { n++ @@ -902,6 +963,105 @@ func (m *ClusterMemberAttrSetRequest) Unmarshal(dAtA []byte) error { } return nil } +func (m *DowngradeInfoSetRequest) 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 ErrIntOverflowMembership + } + 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: DowngradeInfoSetRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: DowngradeInfoSetRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Enabled", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowMembership + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.Enabled = bool(v != 0) + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Ver", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowMembership + } + 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 ErrInvalidLengthMembership + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Ver = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipMembership(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthMembership + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipMembership(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 @@ -1010,26 +1170,28 @@ var ( func init() { proto.RegisterFile("membership.proto", fileDescriptorMembership) } var fileDescriptorMembership = []byte{ - // 333 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x41, 0x4e, 0xc2, 0x40, - 0x14, 0x86, 0x99, 0x42, 0x08, 0x7d, 0x18, 0xc4, 0x09, 0x8b, 0x46, 0xb4, 0x92, 0xae, 0x58, 0x18, - 0x4c, 0xf4, 0x04, 0x28, 0x2c, 0x48, 0x60, 0x33, 0x46, 0xb7, 0xa4, 0x35, 0x0f, 0x6c, 0x52, 0xda, - 0xfa, 0x66, 0xea, 0xde, 0x5b, 0x78, 0x02, 0xcf, 0xc2, 0xd2, 0x23, 0x28, 0x5e, 0xc4, 0x74, 0xa6, - 0x81, 0x36, 0x71, 0xe3, 0xee, 0xe5, 0xef, 0xff, 0xbe, 0xf7, 0xff, 0xcd, 0x40, 0x77, 0x83, 0x9b, - 0x00, 0x49, 0x3e, 0x87, 0xe9, 0x28, 0xa5, 0x44, 0x25, 0xfc, 0xe8, 0xa0, 0xa4, 0xc1, 0x69, 0x6f, - 0x9d, 0xac, 0x13, 0xfd, 0xe1, 0x2a, 0x9f, 0x8c, 0xc7, 0x9b, 0x43, 0x47, 0xf8, 0x2b, 0x35, 0x56, - 0x8a, 0xc2, 0x20, 0x53, 0x28, 0x79, 0x1f, 0xec, 0x14, 0x91, 0x96, 0x19, 0x45, 0xd2, 0x61, 0x83, - 0xfa, 0xd0, 0x16, 0xad, 0x5c, 0x78, 0xa0, 0x48, 0xf2, 0x73, 0x80, 0x50, 0x2e, 0x23, 0xf4, 0x29, - 0x46, 0x72, 0xac, 0x01, 0x1b, 0xb6, 0x84, 0x1d, 0xca, 0xb9, 0x11, 0xbc, 0x31, 0x40, 0x89, 0xc4, - 0xa1, 0x11, 0xfb, 0x1b, 0x74, 0xd8, 0x80, 0x0d, 0x6d, 0xa1, 0x67, 0x7e, 0x01, 0xed, 0xa7, 0x28, - 0xc4, 0x58, 0x19, 0xbe, 0xa5, 0xf9, 0x60, 0xa4, 0xfc, 0x82, 0xf7, 0xc1, 0xa0, 0xb9, 0xd0, 0xb9, - 0x79, 0x07, 0xac, 0xd9, 0x44, 0x6f, 0x37, 0x84, 0x35, 0x9b, 0xf0, 0x29, 0x1c, 0x93, 0xbf, 0x52, - 0x4b, 0x7f, 0x7f, 0x42, 0x27, 0x68, 0x5f, 0x9f, 0x8d, 0xca, 0x4d, 0x47, 0xd5, 0x42, 0xa2, 0x43, - 0xd5, 0x82, 0x53, 0x38, 0x31, 0xf6, 0x32, 0xa8, 0xae, 0x41, 0x4e, 0x15, 0x54, 0x82, 0x14, 0x7f, - 0xf7, 0xa0, 0x78, 0x97, 0xe0, 0xdc, 0x45, 0x99, 0x54, 0x48, 0x8f, 0x48, 0x32, 0x4c, 0xe2, 0x7b, - 0x54, 0x02, 0x5f, 0x32, 0x94, 0x8a, 0x77, 0xa1, 0xfe, 0x8a, 0x54, 0x14, 0xcf, 0x47, 0xef, 0x8d, - 0x41, 0xbf, 0xb0, 0x2f, 0xf6, 0xa4, 0xd2, 0x46, 0x1f, 0xec, 0x22, 0xd4, 0xbe, 0x72, 0xcb, 0x08, - 0xba, 0xf8, 0x1f, 0x89, 0xad, 0xff, 0x26, 0xbe, 0xed, 0x6d, 0xbf, 0xdd, 0xda, 0x76, 0xe7, 0xb2, - 0xcf, 0x9d, 0xcb, 0xbe, 0x76, 0x2e, 0x7b, 0xff, 0x71, 0x6b, 0x41, 0x53, 0x3f, 0x84, 0x9b, 0xdf, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x24, 0x78, 0x39, 0x52, 0x40, 0x02, 0x00, 0x00, + // 367 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0xc1, 0x4e, 0xf2, 0x40, + 0x14, 0x85, 0x99, 0x42, 0xf8, 0xdb, 0xcb, 0x1f, 0xc4, 0x09, 0x89, 0x8d, 0x68, 0x25, 0x5d, 0xb1, + 0x30, 0x98, 0xe8, 0x13, 0xa0, 0xb0, 0x20, 0x81, 0xcd, 0x18, 0xdd, 0x92, 0x56, 0x2e, 0xd8, 0xa4, + 0x74, 0xea, 0xcc, 0x54, 0xd7, 0xbe, 0x85, 0x4f, 0xe0, 0xb3, 0xb0, 0xf4, 0x11, 0x14, 0x5f, 0xc4, + 0x74, 0x5a, 0x4a, 0x49, 0xdc, 0xb8, 0xbb, 0x3d, 0xbd, 0xf7, 0x9c, 0xf3, 0x35, 0x85, 0xd6, 0x0a, + 0x57, 0x3e, 0x0a, 0xf9, 0x18, 0xc4, 0xfd, 0x58, 0x70, 0xc5, 0xe9, 0xff, 0x9d, 0x12, 0xfb, 0xc7, + 0xed, 0x25, 0x5f, 0x72, 0xfd, 0xe2, 0x22, 0x9d, 0xb2, 0x1d, 0x77, 0x02, 0x4d, 0xe6, 0x2d, 0xd4, + 0x40, 0x29, 0x11, 0xf8, 0x89, 0x42, 0x49, 0x3b, 0x60, 0xc5, 0x88, 0x62, 0x96, 0x88, 0x50, 0xda, + 0xa4, 0x5b, 0xed, 0x59, 0xcc, 0x4c, 0x85, 0x3b, 0x11, 0x4a, 0x7a, 0x0a, 0x10, 0xc8, 0x59, 0x88, + 0x9e, 0x88, 0x50, 0xd8, 0x46, 0x97, 0xf4, 0x4c, 0x66, 0x05, 0x72, 0x92, 0x09, 0xee, 0x00, 0xa0, + 0xe4, 0x44, 0xa1, 0x16, 0x79, 0x2b, 0xb4, 0x49, 0x97, 0xf4, 0x2c, 0xa6, 0x67, 0x7a, 0x06, 0x8d, + 0x87, 0x30, 0xc0, 0x48, 0x65, 0xfe, 0x86, 0xf6, 0x87, 0x4c, 0x4a, 0x13, 0xdc, 0x77, 0x02, 0xf5, + 0xa9, 0xee, 0x4d, 0x9b, 0x60, 0x8c, 0x87, 0xfa, 0xba, 0xc6, 0x8c, 0xf1, 0x90, 0x8e, 0xe0, 0x40, + 0x78, 0x0b, 0x35, 0xf3, 0x8a, 0x08, 0xdd, 0xa0, 0x71, 0x79, 0xd2, 0x2f, 0x93, 0xf6, 0xf7, 0x81, + 0x58, 0x53, 0xec, 0x03, 0x8e, 0xe0, 0x30, 0x5b, 0x2f, 0x1b, 0x55, 0xb5, 0x91, 0xbd, 0x6f, 0x54, + 0x32, 0xc9, 0xbf, 0xee, 0x4e, 0x71, 0xcf, 0xc1, 0xbe, 0x09, 0x13, 0xa9, 0x50, 0xdc, 0xa3, 0x90, + 0x01, 0x8f, 0x6e, 0x51, 0x31, 0x7c, 0x4a, 0x50, 0x2a, 0xda, 0x82, 0xea, 0x33, 0x8a, 0x1c, 0x3c, + 0x1d, 0xdd, 0x57, 0x02, 0x9d, 0x7c, 0x7d, 0x5a, 0x38, 0x95, 0x2e, 0x3a, 0x60, 0xe5, 0xa5, 0x0a, + 0x64, 0x33, 0x13, 0x34, 0xf8, 0x2f, 0x8d, 0x8d, 0x3f, 0x37, 0x1e, 0xc1, 0xd1, 0x90, 0xbf, 0x44, + 0x4b, 0xe1, 0xcd, 0x71, 0x1c, 0x2d, 0x78, 0x29, 0xde, 0x86, 0x7f, 0x18, 0x79, 0x7e, 0x88, 0x73, + 0x1d, 0x6e, 0xb2, 0xed, 0xe3, 0x16, 0xc5, 0x28, 0x50, 0xae, 0xdb, 0xeb, 0x2f, 0xa7, 0xb2, 0xde, + 0x38, 0xe4, 0x63, 0xe3, 0x90, 0xcf, 0x8d, 0x43, 0xde, 0xbe, 0x9d, 0x8a, 0x5f, 0xd7, 0xff, 0xd3, + 0xd5, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xdc, 0x93, 0x7d, 0x0b, 0x87, 0x02, 0x00, 0x00, } diff --git a/etcdserver/api/membership/membershippb/membership.proto b/etcdserver/api/membership/membershippb/membership.proto index 9f555c028..e63e9ecc9 100644 --- a/etcdserver/api/membership/membershippb/membership.proto +++ b/etcdserver/api/membership/membershippb/membership.proto @@ -36,3 +36,8 @@ message ClusterMemberAttrSetRequest { uint64 member_ID = 1; Attributes member_attributes = 2; } + +message DowngradeInfoSetRequest { + bool enabled = 1; + string ver = 2; +} \ No newline at end of file diff --git a/etcdserver/etcdserverpb/etcdserver.pb.go b/etcdserver/etcdserverpb/etcdserver.pb.go index 1e0a28185..6e0b76c2e 100644 --- a/etcdserver/etcdserverpb/etcdserver.pb.go +++ b/etcdserver/etcdserverpb/etcdserver.pb.go @@ -73,6 +73,8 @@ AlarmRequest AlarmMember AlarmResponse + DowngradeRequest + DowngradeResponse StatusRequest StatusResponse AuthEnableRequest diff --git a/etcdserver/etcdserverpb/gw/rpc.pb.gw.go b/etcdserver/etcdserverpb/gw/rpc.pb.gw.go index 8726e71d8..c61108772 100644 --- a/etcdserver/etcdserverpb/gw/rpc.pb.gw.go +++ b/etcdserver/etcdserverpb/gw/rpc.pb.gw.go @@ -453,6 +453,19 @@ func request_Maintenance_MoveLeader_0(ctx context.Context, marshaler runtime.Mar } +func request_Maintenance_Downgrade_0(ctx context.Context, marshaler runtime.Marshaler, client etcdserverpb.MaintenanceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq etcdserverpb.DowngradeRequest + var metadata runtime.ServerMetadata + + if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && err != io.EOF { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := client.Downgrade(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + func request_Auth_AuthEnable_0(ctx context.Context, marshaler runtime.Marshaler, client etcdserverpb.AuthClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { var protoReq etcdserverpb.AuthEnableRequest var metadata runtime.ServerMetadata @@ -1722,6 +1735,35 @@ func RegisterMaintenanceHandlerClient(ctx context.Context, mux *runtime.ServeMux }) + mux.Handle("POST", pattern_Maintenance_Downgrade_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + if cn, ok := w.(http.CloseNotifier); ok { + go func(done <-chan struct{}, closed <-chan bool) { + select { + case <-done: + case <-closed: + cancel() + } + }(ctx.Done(), cn.CloseNotify()) + } + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Maintenance_Downgrade_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Maintenance_Downgrade_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -1739,6 +1781,8 @@ var ( pattern_Maintenance_Snapshot_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v3", "maintenance", "snapshot"}, "")) pattern_Maintenance_MoveLeader_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v3", "maintenance", "transfer-leadership"}, "")) + + pattern_Maintenance_Downgrade_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v3", "maintenance", "downgrade"}, "")) ) var ( @@ -1755,6 +1799,8 @@ var ( forward_Maintenance_Snapshot_0 = runtime.ForwardResponseStream forward_Maintenance_MoveLeader_0 = runtime.ForwardResponseMessage + + forward_Maintenance_Downgrade_0 = runtime.ForwardResponseMessage ) // RegisterAuthHandlerFromEndpoint is same as RegisterAuthHandler but diff --git a/etcdserver/etcdserverpb/raft_internal.pb.go b/etcdserver/etcdserverpb/raft_internal.pb.go index 15c06c5f5..d5bad7e47 100644 --- a/etcdserver/etcdserverpb/raft_internal.pb.go +++ b/etcdserver/etcdserverpb/raft_internal.pb.go @@ -69,6 +69,7 @@ type InternalRaftRequest struct { AuthRoleRevokePermission *AuthRoleRevokePermissionRequest `protobuf:"bytes,1204,opt,name=auth_role_revoke_permission,json=authRoleRevokePermission" json:"auth_role_revoke_permission,omitempty"` ClusterVersionSet *membershippb.ClusterVersionSetRequest `protobuf:"bytes,1300,opt,name=cluster_version_set,json=clusterVersionSet" json:"cluster_version_set,omitempty"` ClusterMemberAttrSet *membershippb.ClusterMemberAttrSetRequest `protobuf:"bytes,1301,opt,name=cluster_member_attr_set,json=clusterMemberAttrSet" json:"cluster_member_attr_set,omitempty"` + DowngradeInfoSet *membershippb.DowngradeInfoSetRequest `protobuf:"bytes,1302,opt,name=downgrade_info_set,json=downgradeInfoSet" json:"downgrade_info_set,omitempty"` } func (m *InternalRaftRequest) Reset() { *m = InternalRaftRequest{} } @@ -501,6 +502,18 @@ func (m *InternalRaftRequest) MarshalTo(dAtA []byte) (int, error) { } i += n30 } + if m.DowngradeInfoSet != nil { + dAtA[i] = 0xb2 + i++ + dAtA[i] = 0x51 + i++ + i = encodeVarintRaftInternal(dAtA, i, uint64(m.DowngradeInfoSet.Size())) + n31, err := m.DowngradeInfoSet.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n31 + } return i, nil } @@ -709,6 +722,10 @@ func (m *InternalRaftRequest) Size() (n int) { l = m.ClusterMemberAttrSet.Size() n += 2 + l + sovRaftInternal(uint64(l)) } + if m.DowngradeInfoSet != nil { + l = m.DowngradeInfoSet.Size() + n += 2 + l + sovRaftInternal(uint64(l)) + } return n } @@ -1904,6 +1921,39 @@ func (m *InternalRaftRequest) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 1302: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DowngradeInfoSet", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRaftInternal + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRaftInternal + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.DowngradeInfoSet == nil { + m.DowngradeInfoSet = &membershippb.DowngradeInfoSetRequest{} + } + if err := m.DowngradeInfoSet.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRaftInternal(dAtA[iNdEx:]) @@ -2220,67 +2270,69 @@ var ( func init() { proto.RegisterFile("raft_internal.proto", fileDescriptorRaftInternal) } var fileDescriptorRaftInternal = []byte{ - // 978 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x96, 0x49, 0x73, 0x1b, 0x45, - 0x14, 0xc7, 0x23, 0xc7, 0x71, 0xac, 0x96, 0xed, 0xd8, 0x6d, 0x87, 0x34, 0x72, 0x95, 0x70, 0x1c, - 0x96, 0xb0, 0xd9, 0x94, 0x73, 0xa5, 0x0a, 0x84, 0xe4, 0x72, 0x5c, 0x15, 0x82, 0x6b, 0x12, 0x96, - 0x2a, 0x0e, 0x43, 0x6b, 0xe6, 0x45, 0x1a, 0x3c, 0x1b, 0xdd, 0x2d, 0x61, 0xbe, 0x07, 0x54, 0xf1, - 0x31, 0xd8, 0xce, 0x9c, 0x73, 0x60, 0x09, 0xf0, 0x05, 0xc0, 0x5c, 0xb8, 0x03, 0xf7, 0x54, 0x2f, - 0xd3, 0x33, 0x23, 0xb5, 0x7c, 0x1b, 0xfd, 0xdf, 0xff, 0xfd, 0x5e, 0xf7, 0xf4, 0x7b, 0xa3, 0x46, - 0x9b, 0x8c, 0x3e, 0x12, 0x7e, 0x94, 0x0a, 0x60, 0x29, 0x8d, 0xf7, 0x72, 0x96, 0x89, 0x0c, 0xaf, - 0x80, 0x08, 0x42, 0x0e, 0x6c, 0x02, 0x2c, 0x1f, 0xb4, 0xb7, 0x86, 0xd9, 0x30, 0x53, 0x81, 0x7d, - 0xf9, 0xa4, 0x3d, 0xed, 0xf5, 0xd2, 0x63, 0x94, 0x26, 0xcb, 0x03, 0xf3, 0xf8, 0xa6, 0x0c, 0xee, - 0x97, 0x8e, 0x7d, 0x9a, 0x47, 0xfb, 0x09, 0x24, 0x03, 0x60, 0x7c, 0x14, 0xe5, 0x95, 0xc7, 0x7c, - 0x50, 0xf9, 0xa1, 0xb3, 0x77, 0x3f, 0x41, 0xab, 0x1e, 0x7c, 0x36, 0x06, 0x2e, 0xee, 0x02, 0x0d, - 0x81, 0xe1, 0x35, 0xb4, 0x70, 0xdc, 0x27, 0x8d, 0x9d, 0xc6, 0xed, 0x45, 0x6f, 0xe1, 0xb8, 0x8f, - 0xdb, 0x68, 0x79, 0xcc, 0xe5, 0x82, 0x13, 0x20, 0x0b, 0x3b, 0x8d, 0xdb, 0x4d, 0xcf, 0xfe, 0xc6, - 0xb7, 0xd0, 0x2a, 0x1d, 0x8b, 0x91, 0xcf, 0x60, 0x12, 0xf1, 0x28, 0x4b, 0xc9, 0x65, 0x95, 0xb6, - 0x22, 0x45, 0xcf, 0x68, 0xbb, 0x3f, 0x6e, 0xa0, 0xcd, 0x63, 0xb3, 0x67, 0x8f, 0x3e, 0x12, 0xa6, - 0xdc, 0x4c, 0xa1, 0x17, 0xd0, 0xc2, 0xe4, 0x40, 0x95, 0x68, 0x1d, 0x5c, 0xdf, 0xab, 0xbe, 0x95, - 0x3d, 0x93, 0xe2, 0x2d, 0x4c, 0x0e, 0xf0, 0x1b, 0xe8, 0x0a, 0xa3, 0xe9, 0x10, 0x54, 0xad, 0xd6, - 0x41, 0x7b, 0xca, 0x29, 0x43, 0x85, 0x5d, 0x1b, 0xf1, 0x2b, 0xe8, 0x72, 0x3e, 0x16, 0x64, 0x51, - 0xf9, 0x49, 0xdd, 0x7f, 0x32, 0x2e, 0xd6, 0xe3, 0x49, 0x13, 0xee, 0xa1, 0x95, 0x10, 0x62, 0x10, - 0xe0, 0xeb, 0x22, 0x57, 0x54, 0xd2, 0x4e, 0x3d, 0xa9, 0xaf, 0x1c, 0xb5, 0x52, 0xad, 0xb0, 0xd4, - 0x64, 0x41, 0x71, 0x96, 0x92, 0x25, 0x57, 0xc1, 0x87, 0x67, 0xa9, 0x2d, 0x28, 0xce, 0x52, 0xfc, - 0x16, 0x42, 0x41, 0x96, 0xe4, 0x34, 0x10, 0xf2, 0xfd, 0x5d, 0x55, 0x29, 0xcf, 0xd5, 0x53, 0x7a, - 0x36, 0x5e, 0x64, 0x56, 0x52, 0xf0, 0xdb, 0xa8, 0x15, 0x03, 0xe5, 0xe0, 0x0f, 0x19, 0x4d, 0x05, - 0x59, 0x76, 0x11, 0xee, 0x49, 0xc3, 0x91, 0x8c, 0x5b, 0x42, 0x6c, 0x25, 0xb9, 0x67, 0x4d, 0x60, - 0x30, 0xc9, 0x4e, 0x81, 0x34, 0x5d, 0x7b, 0x56, 0x08, 0x4f, 0x19, 0xec, 0x9e, 0xe3, 0x52, 0x93, - 0xc7, 0x42, 0x63, 0xca, 0x12, 0x82, 0x5c, 0xc7, 0xd2, 0x95, 0x21, 0x7b, 0x2c, 0xca, 0x88, 0xdf, - 0x43, 0xeb, 0xba, 0x6c, 0x30, 0x82, 0xe0, 0x34, 0xcf, 0xa2, 0x54, 0x90, 0x96, 0x4a, 0x7e, 0xde, - 0x51, 0xba, 0x67, 0x4d, 0x05, 0xe6, 0x5a, 0x5c, 0xd7, 0xf1, 0x1d, 0xb4, 0x34, 0x52, 0x3d, 0x4c, - 0x42, 0x85, 0xd9, 0x76, 0x36, 0x91, 0x6e, 0x73, 0xcf, 0x58, 0x71, 0x17, 0xb5, 0x54, 0x0b, 0x43, - 0x4a, 0x07, 0x31, 0x90, 0x7f, 0x9c, 0x27, 0xd0, 0x1d, 0x8b, 0xd1, 0xa1, 0x32, 0xd8, 0xf7, 0x47, - 0xad, 0x84, 0xfb, 0x48, 0x35, 0xbc, 0x1f, 0x46, 0x5c, 0x31, 0xfe, 0xbd, 0xea, 0x7a, 0x81, 0x92, - 0xd1, 0xd7, 0x0e, 0xfb, 0x02, 0x69, 0xa9, 0xe1, 0xfb, 0x9a, 0x02, 0xa9, 0x88, 0x02, 0x2a, 0x80, - 0xfc, 0xa7, 0x29, 0x2f, 0xd7, 0x29, 0xc5, 0x20, 0x75, 0x2b, 0xd6, 0x02, 0x57, 0xcb, 0xb7, 0x1b, - 0xe3, 0x82, 0x8a, 0x31, 0x27, 0xff, 0xcf, 0xdd, 0xd8, 0x03, 0x65, 0xa8, 0x6d, 0x4c, 0x4b, 0xf8, - 0xd0, 0x8c, 0xb7, 0x9c, 0x77, 0x9f, 0x86, 0x21, 0xf9, 0x69, 0x79, 0xde, 0xce, 0xde, 0xe7, 0xc0, - 0xba, 0x61, 0x58, 0xdb, 0x99, 0xd1, 0xf0, 0x7d, 0xb4, 0x5e, 0x62, 0xf4, 0x9c, 0x90, 0x9f, 0x35, - 0xe9, 0x96, 0x9b, 0x64, 0x06, 0xcc, 0xc0, 0xd6, 0x68, 0x4d, 0xae, 0x2f, 0x6b, 0x08, 0x82, 0xfc, - 0x72, 0xe1, 0xb2, 0x8e, 0x40, 0xcc, 0x2c, 0xeb, 0x08, 0x04, 0x1e, 0xa2, 0x67, 0x4b, 0x4c, 0x30, - 0x92, 0x93, 0xeb, 0xe7, 0x94, 0xf3, 0xcf, 0x33, 0x16, 0x92, 0x5f, 0x35, 0xf2, 0x55, 0x37, 0xb2, - 0xa7, 0xdc, 0x27, 0xc6, 0x5c, 0xd0, 0x9f, 0xa1, 0xce, 0x30, 0xfe, 0x08, 0x6d, 0x55, 0xd6, 0x2b, - 0x47, 0xce, 0x67, 0x59, 0x0c, 0xe4, 0x89, 0xae, 0xf1, 0xe2, 0x9c, 0x65, 0xab, 0x71, 0xcd, 0xca, - 0x6e, 0xd9, 0xa0, 0xd3, 0x11, 0xfc, 0x31, 0xba, 0x5e, 0x92, 0xf5, 0xf4, 0x6a, 0xf4, 0x6f, 0x1a, - 0xfd, 0x92, 0x1b, 0x6d, 0xc6, 0xb8, 0xc2, 0xc6, 0x74, 0x26, 0x84, 0xef, 0xa2, 0xb5, 0x12, 0x1e, - 0x47, 0x5c, 0x90, 0xdf, 0x35, 0xf5, 0xa6, 0x9b, 0x7a, 0x2f, 0xe2, 0xa2, 0xd6, 0x8a, 0x85, 0x68, - 0x49, 0x72, 0x69, 0x9a, 0xf4, 0xc7, 0x5c, 0x92, 0x2c, 0x3d, 0x43, 0x2a, 0x44, 0x7b, 0xf4, 0x8a, - 0x24, 0x3b, 0xf2, 0x9b, 0xe6, 0xbc, 0xa3, 0x97, 0x39, 0xd3, 0x1d, 0x69, 0x34, 0xdb, 0x91, 0x0a, - 0x63, 0x3a, 0xf2, 0xdb, 0xe6, 0xbc, 0x8e, 0x94, 0x59, 0x8e, 0x8e, 0x2c, 0xe5, 0xfa, 0xb2, 0x64, - 0x47, 0x7e, 0x77, 0xe1, 0xb2, 0xa6, 0x3b, 0xd2, 0x68, 0xf8, 0x53, 0xd4, 0xae, 0x60, 0x54, 0xa3, - 0xe4, 0xc0, 0x92, 0x88, 0xab, 0xff, 0xd6, 0xef, 0x35, 0xf3, 0xb5, 0x39, 0x4c, 0x69, 0x3f, 0xb1, - 0xee, 0x82, 0x7f, 0x83, 0xba, 0xe3, 0x38, 0x41, 0xdb, 0x65, 0x2d, 0xd3, 0x3a, 0x95, 0x62, 0x3f, - 0xe8, 0x62, 0xaf, 0xbb, 0x8b, 0xe9, 0x2e, 0x99, 0xad, 0x46, 0xe8, 0x1c, 0x03, 0xfe, 0x10, 0x6d, - 0x06, 0xf1, 0x98, 0x0b, 0x60, 0xfe, 0x04, 0x98, 0x94, 0x7c, 0x0e, 0x82, 0x7c, 0x89, 0xcc, 0x08, - 0x54, 0x2f, 0x29, 0x7b, 0x3d, 0xed, 0xfc, 0x40, 0x1b, 0x1f, 0x94, 0x6f, 0x6b, 0x23, 0x98, 0x8e, - 0x60, 0x8a, 0x6e, 0x14, 0x60, 0xcd, 0xf0, 0xa9, 0x10, 0x4c, 0xc1, 0xbf, 0x42, 0xe6, 0x0b, 0xea, - 0x82, 0xbf, 0xab, 0xb4, 0xae, 0x10, 0xac, 0xc2, 0xdf, 0x0a, 0x1c, 0xc1, 0xdd, 0x6b, 0x68, 0xf5, - 0x30, 0xc9, 0xc5, 0x17, 0x1e, 0xf0, 0x3c, 0x4b, 0x39, 0xec, 0xe6, 0x68, 0xfb, 0x82, 0xef, 0x30, - 0xc6, 0x68, 0x51, 0xdd, 0x96, 0x1a, 0xea, 0xb6, 0xa4, 0x9e, 0xe5, 0x2d, 0xca, 0x7e, 0x5b, 0xcc, - 0x2d, 0xaa, 0xf8, 0x8d, 0x6f, 0xa2, 0x15, 0x1e, 0x25, 0x79, 0x0c, 0xbe, 0xc8, 0x4e, 0x41, 0x5f, - 0xa2, 0x9a, 0x5e, 0x4b, 0x6b, 0x0f, 0xa5, 0xf4, 0xce, 0xd6, 0xe3, 0xbf, 0x3a, 0x97, 0x1e, 0x9f, - 0x77, 0x1a, 0x4f, 0xce, 0x3b, 0x8d, 0x3f, 0xcf, 0x3b, 0x8d, 0xaf, 0xff, 0xee, 0x5c, 0x1a, 0x2c, - 0xa9, 0x2b, 0xdc, 0x9d, 0xa7, 0x01, 0x00, 0x00, 0xff, 0xff, 0x82, 0x70, 0x91, 0x6b, 0x58, 0x0a, + // 1010 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x96, 0x5b, 0x73, 0xdb, 0x44, + 0x14, 0xc7, 0x6b, 0x37, 0x4d, 0xe3, 0x75, 0x92, 0xa6, 0x9b, 0x94, 0x2e, 0xce, 0x8c, 0x49, 0x53, + 0x0a, 0xe5, 0x96, 0x30, 0xe9, 0x2b, 0x33, 0x60, 0xec, 0x4c, 0x9a, 0x99, 0x52, 0x32, 0x6a, 0xb8, + 0xcc, 0xf0, 0x20, 0xd6, 0xd2, 0x89, 0x2d, 0x22, 0x4b, 0x62, 0x77, 0xed, 0x86, 0xef, 0x51, 0x18, + 0x3e, 0x06, 0xb7, 0x0f, 0xd1, 0x07, 0x2e, 0x05, 0xbe, 0x00, 0x84, 0x17, 0xde, 0x81, 0x77, 0x66, + 0x2f, 0x5a, 0x49, 0xf6, 0x3a, 0x6f, 0xf2, 0xff, 0xfc, 0xcf, 0xef, 0xec, 0x6a, 0xcf, 0x91, 0x17, + 0xad, 0x33, 0x7a, 0x22, 0xfc, 0x28, 0x11, 0xc0, 0x12, 0x1a, 0xef, 0x64, 0x2c, 0x15, 0x29, 0x5e, + 0x06, 0x11, 0x84, 0x1c, 0xd8, 0x04, 0x58, 0xd6, 0x6f, 0x6d, 0x0c, 0xd2, 0x41, 0xaa, 0x02, 0xbb, + 0xf2, 0x49, 0x7b, 0x5a, 0x6b, 0x85, 0xc7, 0x28, 0x0d, 0x96, 0x05, 0xe6, 0xf1, 0x2d, 0x19, 0xdc, + 0x2d, 0x1c, 0xbb, 0x34, 0x8b, 0x76, 0x47, 0x30, 0xea, 0x03, 0xe3, 0xc3, 0x28, 0x2b, 0x3d, 0x66, + 0xfd, 0xd2, 0x0f, 0x9d, 0xbd, 0xfd, 0x29, 0x5a, 0xf1, 0xe0, 0xf3, 0x31, 0x70, 0x71, 0x1f, 0x68, + 0x08, 0x0c, 0xaf, 0xa2, 0xfa, 0x61, 0x8f, 0xd4, 0xb6, 0x6a, 0x77, 0x17, 0xbc, 0xfa, 0x61, 0x0f, + 0xb7, 0xd0, 0xd2, 0x98, 0xcb, 0x05, 0x8f, 0x80, 0xd4, 0xb7, 0x6a, 0x77, 0x1b, 0x9e, 0xfd, 0x8d, + 0x6f, 0xa3, 0x15, 0x3a, 0x16, 0x43, 0x9f, 0xc1, 0x24, 0xe2, 0x51, 0x9a, 0x90, 0xcb, 0x2a, 0x6d, + 0x59, 0x8a, 0x9e, 0xd1, 0xb6, 0x9f, 0x60, 0xb4, 0x7e, 0x68, 0xf6, 0xec, 0xd1, 0x13, 0x61, 0xca, + 0xcd, 0x14, 0xba, 0x83, 0xea, 0x93, 0x3d, 0x55, 0xa2, 0xb9, 0x77, 0x63, 0xa7, 0xfc, 0x56, 0x76, + 0x4c, 0x8a, 0x57, 0x9f, 0xec, 0xe1, 0x37, 0xd1, 0x15, 0x46, 0x93, 0x01, 0xa8, 0x5a, 0xcd, 0xbd, + 0xd6, 0x94, 0x53, 0x86, 0x72, 0xbb, 0x36, 0xe2, 0x57, 0xd1, 0xe5, 0x6c, 0x2c, 0xc8, 0x82, 0xf2, + 0x93, 0xaa, 0xff, 0x68, 0x9c, 0xaf, 0xc7, 0x93, 0x26, 0xdc, 0x45, 0xcb, 0x21, 0xc4, 0x20, 0xc0, + 0xd7, 0x45, 0xae, 0xa8, 0xa4, 0xad, 0x6a, 0x52, 0x4f, 0x39, 0x2a, 0xa5, 0x9a, 0x61, 0xa1, 0xc9, + 0x82, 0xe2, 0x2c, 0x21, 0x8b, 0xae, 0x82, 0xc7, 0x67, 0x89, 0x2d, 0x28, 0xce, 0x12, 0xfc, 0x36, + 0x42, 0x41, 0x3a, 0xca, 0x68, 0x20, 0xe4, 0xfb, 0xbb, 0xaa, 0x52, 0x5e, 0xa8, 0xa6, 0x74, 0x6d, + 0x3c, 0xcf, 0x2c, 0xa5, 0xe0, 0x77, 0x50, 0x33, 0x06, 0xca, 0xc1, 0x1f, 0x30, 0x9a, 0x08, 0xb2, + 0xe4, 0x22, 0x3c, 0x90, 0x86, 0x03, 0x19, 0xb7, 0x84, 0xd8, 0x4a, 0x72, 0xcf, 0x9a, 0xc0, 0x60, + 0x92, 0x9e, 0x02, 0x69, 0xb8, 0xf6, 0xac, 0x10, 0x9e, 0x32, 0xd8, 0x3d, 0xc7, 0x85, 0x26, 0x8f, + 0x85, 0xc6, 0x94, 0x8d, 0x08, 0x72, 0x1d, 0x4b, 0x47, 0x86, 0xec, 0xb1, 0x28, 0x23, 0x7e, 0x1f, + 0xad, 0xe9, 0xb2, 0xc1, 0x10, 0x82, 0xd3, 0x2c, 0x8d, 0x12, 0x41, 0x9a, 0x2a, 0xf9, 0x45, 0x47, + 0xe9, 0xae, 0x35, 0xe5, 0x98, 0x6b, 0x71, 0x55, 0xc7, 0xf7, 0xd0, 0xe2, 0x50, 0xf5, 0x30, 0x09, + 0x15, 0x66, 0xd3, 0xd9, 0x44, 0xba, 0xcd, 0x3d, 0x63, 0xc5, 0x1d, 0xd4, 0x54, 0x2d, 0x0c, 0x09, + 0xed, 0xc7, 0x40, 0xfe, 0x76, 0x9e, 0x40, 0x67, 0x2c, 0x86, 0xfb, 0xca, 0x60, 0xdf, 0x1f, 0xb5, + 0x12, 0xee, 0x21, 0xd5, 0xf0, 0x7e, 0x18, 0x71, 0xc5, 0xf8, 0xe7, 0xaa, 0xeb, 0x05, 0x4a, 0x46, + 0x4f, 0x3b, 0xec, 0x0b, 0xa4, 0x85, 0x86, 0x1f, 0x6a, 0x0a, 0x24, 0x22, 0x0a, 0xa8, 0x00, 0xf2, + 0xaf, 0xa6, 0xbc, 0x52, 0xa5, 0xe4, 0x83, 0xd4, 0x29, 0x59, 0x73, 0x5c, 0x25, 0xdf, 0x6e, 0x8c, + 0x0b, 0x2a, 0xc6, 0x9c, 0xfc, 0x37, 0x77, 0x63, 0x8f, 0x94, 0xa1, 0xb2, 0x31, 0x2d, 0xe1, 0x7d, + 0x33, 0xde, 0x72, 0xde, 0x7d, 0x1a, 0x86, 0xe4, 0xc7, 0xa5, 0x79, 0x3b, 0xfb, 0x80, 0x03, 0xeb, + 0x84, 0x61, 0x65, 0x67, 0x46, 0xc3, 0x0f, 0xd1, 0x5a, 0x81, 0xd1, 0x73, 0x42, 0x7e, 0xd2, 0xa4, + 0xdb, 0x6e, 0x92, 0x19, 0x30, 0x03, 0x5b, 0xa5, 0x15, 0xb9, 0xba, 0xac, 0x01, 0x08, 0xf2, 0xf3, + 0x85, 0xcb, 0x3a, 0x00, 0x31, 0xb3, 0xac, 0x03, 0x10, 0x78, 0x80, 0x9e, 0x2f, 0x30, 0xc1, 0x50, + 0x4e, 0xae, 0x9f, 0x51, 0xce, 0x1f, 0xa7, 0x2c, 0x24, 0xbf, 0x68, 0xe4, 0x6b, 0x6e, 0x64, 0x57, + 0xb9, 0x8f, 0x8c, 0x39, 0xa7, 0x3f, 0x47, 0x9d, 0x61, 0xfc, 0x31, 0xda, 0x28, 0xad, 0x57, 0x8e, + 0x9c, 0xcf, 0xd2, 0x18, 0xc8, 0x33, 0x5d, 0xe3, 0xa5, 0x39, 0xcb, 0x56, 0xe3, 0x9a, 0x16, 0xdd, + 0x72, 0x9d, 0x4e, 0x47, 0xf0, 0x27, 0xe8, 0x46, 0x41, 0xd6, 0xd3, 0xab, 0xd1, 0xbf, 0x6a, 0xf4, + 0xcb, 0x6e, 0xb4, 0x19, 0xe3, 0x12, 0x1b, 0xd3, 0x99, 0x10, 0xbe, 0x8f, 0x56, 0x0b, 0x78, 0x1c, + 0x71, 0x41, 0x7e, 0xd3, 0xd4, 0x5b, 0x6e, 0xea, 0x83, 0x88, 0x8b, 0x4a, 0x2b, 0xe6, 0xa2, 0x25, + 0xc9, 0xa5, 0x69, 0xd2, 0xef, 0x73, 0x49, 0xb2, 0xf4, 0x0c, 0x29, 0x17, 0xed, 0xd1, 0x2b, 0x92, + 0xec, 0xc8, 0x6f, 0x1a, 0xf3, 0x8e, 0x5e, 0xe6, 0x4c, 0x77, 0xa4, 0xd1, 0x6c, 0x47, 0x2a, 0x8c, + 0xe9, 0xc8, 0x6f, 0x1b, 0xf3, 0x3a, 0x52, 0x66, 0x39, 0x3a, 0xb2, 0x90, 0xab, 0xcb, 0x92, 0x1d, + 0xf9, 0xdd, 0x85, 0xcb, 0x9a, 0xee, 0x48, 0xa3, 0xe1, 0xcf, 0x50, 0xab, 0x84, 0x51, 0x8d, 0x92, + 0x01, 0x1b, 0x45, 0x5c, 0xfd, 0xb7, 0x7e, 0xaf, 0x99, 0xaf, 0xcf, 0x61, 0x4a, 0xfb, 0x91, 0x75, + 0xe7, 0xfc, 0x9b, 0xd4, 0x1d, 0xc7, 0x23, 0xb4, 0x59, 0xd4, 0x32, 0xad, 0x53, 0x2a, 0xf6, 0x83, + 0x2e, 0xf6, 0x86, 0xbb, 0x98, 0xee, 0x92, 0xd9, 0x6a, 0x84, 0xce, 0x31, 0xe0, 0x8f, 0xd0, 0x7a, + 0x10, 0x8f, 0xb9, 0x00, 0xe6, 0x4f, 0x80, 0x49, 0xc9, 0xe7, 0x20, 0xc8, 0x13, 0x64, 0x46, 0xa0, + 0x7c, 0x49, 0xd9, 0xe9, 0x6a, 0xe7, 0x87, 0xda, 0xf8, 0xa8, 0x78, 0x5b, 0xd7, 0x83, 0xe9, 0x08, + 0xa6, 0xe8, 0x66, 0x0e, 0xd6, 0x0c, 0x9f, 0x0a, 0xc1, 0x14, 0xfc, 0x4b, 0x64, 0xbe, 0xa0, 0x2e, + 0xf8, 0x7b, 0x4a, 0xeb, 0x08, 0xc1, 0x4a, 0xfc, 0x8d, 0xc0, 0x11, 0xc4, 0xc7, 0x08, 0x87, 0xe9, + 0xe3, 0x64, 0xc0, 0x68, 0x08, 0x7e, 0x94, 0x9c, 0xa4, 0x8a, 0xfe, 0x95, 0xa6, 0xdf, 0xa9, 0xd2, + 0x7b, 0xb9, 0xf1, 0x30, 0x39, 0x49, 0x4b, 0xe4, 0xb5, 0x70, 0x2a, 0xb0, 0x7d, 0x0d, 0xad, 0xec, + 0x8f, 0x32, 0xf1, 0x85, 0x07, 0x3c, 0x4b, 0x13, 0x0e, 0xdb, 0x19, 0xda, 0xbc, 0xe0, 0xeb, 0x8e, + 0x31, 0x5a, 0x50, 0x77, 0xb0, 0x9a, 0xba, 0x83, 0xa9, 0x67, 0x79, 0x37, 0xb3, 0x5f, 0x2c, 0x73, + 0x37, 0xcb, 0x7f, 0xe3, 0x5b, 0x68, 0x99, 0x47, 0xa3, 0x2c, 0x06, 0x5f, 0xa4, 0xa7, 0xa0, 0xaf, + 0x66, 0x0d, 0xaf, 0xa9, 0xb5, 0x63, 0x29, 0xbd, 0xbb, 0xf1, 0xf4, 0xcf, 0xf6, 0xa5, 0xa7, 0xe7, + 0xed, 0xda, 0xb3, 0xf3, 0x76, 0xed, 0x8f, 0xf3, 0x76, 0xed, 0xeb, 0xbf, 0xda, 0x97, 0xfa, 0x8b, + 0xea, 0x62, 0x78, 0xef, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xbd, 0x24, 0x2a, 0xcc, 0xae, 0x0a, 0x00, 0x00, } diff --git a/etcdserver/etcdserverpb/raft_internal.proto b/etcdserver/etcdserverpb/raft_internal.proto index 24a0da972..b7f2f311f 100644 --- a/etcdserver/etcdserverpb/raft_internal.proto +++ b/etcdserver/etcdserverpb/raft_internal.proto @@ -63,6 +63,7 @@ message InternalRaftRequest { membershippb.ClusterVersionSetRequest cluster_version_set = 1300; membershippb.ClusterMemberAttrSetRequest cluster_member_attr_set = 1301; + membershippb.DowngradeInfoSetRequest downgrade_info_set = 1302; } message EmptyResponse { diff --git a/etcdserver/etcdserverpb/rpc.pb.go b/etcdserver/etcdserverpb/rpc.pb.go index 95baaac2c..ed7e26dac 100644 --- a/etcdserver/etcdserverpb/rpc.pb.go +++ b/etcdserver/etcdserverpb/rpc.pb.go @@ -214,6 +214,32 @@ func (AlarmRequest_AlarmAction) EnumDescriptor() ([]byte, []int) { return fileDescriptorRpc, []int{54, 0} } +type DowngradeRequest_DowngradeAction int32 + +const ( + DowngradeRequest_VALIDATE DowngradeRequest_DowngradeAction = 0 + DowngradeRequest_ENABLE DowngradeRequest_DowngradeAction = 1 + DowngradeRequest_CANCEL DowngradeRequest_DowngradeAction = 2 +) + +var DowngradeRequest_DowngradeAction_name = map[int32]string{ + 0: "VALIDATE", + 1: "ENABLE", + 2: "CANCEL", +} +var DowngradeRequest_DowngradeAction_value = map[string]int32{ + "VALIDATE": 0, + "ENABLE": 1, + "CANCEL": 2, +} + +func (x DowngradeRequest_DowngradeAction) String() string { + return proto.EnumName(DowngradeRequest_DowngradeAction_name, int32(x)) +} +func (DowngradeRequest_DowngradeAction) EnumDescriptor() ([]byte, []int) { + return fileDescriptorRpc, []int{57, 0} +} + type ResponseHeader struct { // cluster_id is the ID of the cluster which sent the response. ClusterId uint64 `protobuf:"varint,1,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` @@ -2604,13 +2630,66 @@ func (m *AlarmResponse) GetAlarms() []*AlarmMember { return nil } +type DowngradeRequest struct { + // action is the kind of downgrade request to issue. The action may + // VALIDATE the target version, DOWNGRADE the cluster version, + // or CANCEL the current downgrading job. + Action DowngradeRequest_DowngradeAction `protobuf:"varint,1,opt,name=action,proto3,enum=etcdserverpb.DowngradeRequest_DowngradeAction" json:"action,omitempty"` + // version is the target version to downgrade. + Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"` +} + +func (m *DowngradeRequest) Reset() { *m = DowngradeRequest{} } +func (m *DowngradeRequest) String() string { return proto.CompactTextString(m) } +func (*DowngradeRequest) ProtoMessage() {} +func (*DowngradeRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{57} } + +func (m *DowngradeRequest) GetAction() DowngradeRequest_DowngradeAction { + if m != nil { + return m.Action + } + return DowngradeRequest_VALIDATE +} + +func (m *DowngradeRequest) GetVersion() string { + if m != nil { + return m.Version + } + return "" +} + +type DowngradeResponse struct { + Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"` + // version is the current cluster version. + Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"` +} + +func (m *DowngradeResponse) Reset() { *m = DowngradeResponse{} } +func (m *DowngradeResponse) String() string { return proto.CompactTextString(m) } +func (*DowngradeResponse) ProtoMessage() {} +func (*DowngradeResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{58} } + +func (m *DowngradeResponse) GetHeader() *ResponseHeader { + if m != nil { + return m.Header + } + return nil +} + +func (m *DowngradeResponse) GetVersion() string { + if m != nil { + return m.Version + } + return "" +} + type StatusRequest struct { } func (m *StatusRequest) Reset() { *m = StatusRequest{} } func (m *StatusRequest) String() string { return proto.CompactTextString(m) } func (*StatusRequest) ProtoMessage() {} -func (*StatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{57} } +func (*StatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{59} } type StatusResponse struct { Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"` @@ -2637,7 +2716,7 @@ type StatusResponse struct { func (m *StatusResponse) Reset() { *m = StatusResponse{} } func (m *StatusResponse) String() string { return proto.CompactTextString(m) } func (*StatusResponse) ProtoMessage() {} -func (*StatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{58} } +func (*StatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{60} } func (m *StatusResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2715,7 +2794,7 @@ type AuthEnableRequest struct { func (m *AuthEnableRequest) Reset() { *m = AuthEnableRequest{} } func (m *AuthEnableRequest) String() string { return proto.CompactTextString(m) } func (*AuthEnableRequest) ProtoMessage() {} -func (*AuthEnableRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{59} } +func (*AuthEnableRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{61} } type AuthDisableRequest struct { } @@ -2723,7 +2802,7 @@ type AuthDisableRequest struct { func (m *AuthDisableRequest) Reset() { *m = AuthDisableRequest{} } func (m *AuthDisableRequest) String() string { return proto.CompactTextString(m) } func (*AuthDisableRequest) ProtoMessage() {} -func (*AuthDisableRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{60} } +func (*AuthDisableRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{62} } type AuthStatusRequest struct { } @@ -2731,7 +2810,7 @@ type AuthStatusRequest struct { func (m *AuthStatusRequest) Reset() { *m = AuthStatusRequest{} } func (m *AuthStatusRequest) String() string { return proto.CompactTextString(m) } func (*AuthStatusRequest) ProtoMessage() {} -func (*AuthStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{61} } +func (*AuthStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{63} } type AuthenticateRequest struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` @@ -2741,7 +2820,7 @@ type AuthenticateRequest struct { func (m *AuthenticateRequest) Reset() { *m = AuthenticateRequest{} } func (m *AuthenticateRequest) String() string { return proto.CompactTextString(m) } func (*AuthenticateRequest) ProtoMessage() {} -func (*AuthenticateRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{62} } +func (*AuthenticateRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{64} } func (m *AuthenticateRequest) GetName() string { if m != nil { @@ -2766,7 +2845,7 @@ type AuthUserAddRequest struct { func (m *AuthUserAddRequest) Reset() { *m = AuthUserAddRequest{} } func (m *AuthUserAddRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserAddRequest) ProtoMessage() {} -func (*AuthUserAddRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{63} } +func (*AuthUserAddRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{65} } func (m *AuthUserAddRequest) GetName() string { if m != nil { @@ -2796,7 +2875,7 @@ type AuthUserGetRequest struct { func (m *AuthUserGetRequest) Reset() { *m = AuthUserGetRequest{} } func (m *AuthUserGetRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserGetRequest) ProtoMessage() {} -func (*AuthUserGetRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{64} } +func (*AuthUserGetRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{66} } func (m *AuthUserGetRequest) GetName() string { if m != nil { @@ -2813,7 +2892,7 @@ type AuthUserDeleteRequest struct { func (m *AuthUserDeleteRequest) Reset() { *m = AuthUserDeleteRequest{} } func (m *AuthUserDeleteRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserDeleteRequest) ProtoMessage() {} -func (*AuthUserDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{65} } +func (*AuthUserDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{67} } func (m *AuthUserDeleteRequest) GetName() string { if m != nil { @@ -2833,7 +2912,7 @@ func (m *AuthUserChangePasswordRequest) Reset() { *m = AuthUserChangePas func (m *AuthUserChangePasswordRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserChangePasswordRequest) ProtoMessage() {} func (*AuthUserChangePasswordRequest) Descriptor() ([]byte, []int) { - return fileDescriptorRpc, []int{66} + return fileDescriptorRpc, []int{68} } func (m *AuthUserChangePasswordRequest) GetName() string { @@ -2860,7 +2939,7 @@ type AuthUserGrantRoleRequest struct { func (m *AuthUserGrantRoleRequest) Reset() { *m = AuthUserGrantRoleRequest{} } func (m *AuthUserGrantRoleRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserGrantRoleRequest) ProtoMessage() {} -func (*AuthUserGrantRoleRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{67} } +func (*AuthUserGrantRoleRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{69} } func (m *AuthUserGrantRoleRequest) GetUser() string { if m != nil { @@ -2884,7 +2963,7 @@ type AuthUserRevokeRoleRequest struct { func (m *AuthUserRevokeRoleRequest) Reset() { *m = AuthUserRevokeRoleRequest{} } func (m *AuthUserRevokeRoleRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserRevokeRoleRequest) ProtoMessage() {} -func (*AuthUserRevokeRoleRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{68} } +func (*AuthUserRevokeRoleRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{70} } func (m *AuthUserRevokeRoleRequest) GetName() string { if m != nil { @@ -2908,7 +2987,7 @@ type AuthRoleAddRequest struct { func (m *AuthRoleAddRequest) Reset() { *m = AuthRoleAddRequest{} } func (m *AuthRoleAddRequest) String() string { return proto.CompactTextString(m) } func (*AuthRoleAddRequest) ProtoMessage() {} -func (*AuthRoleAddRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{69} } +func (*AuthRoleAddRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{71} } func (m *AuthRoleAddRequest) GetName() string { if m != nil { @@ -2924,7 +3003,7 @@ type AuthRoleGetRequest struct { func (m *AuthRoleGetRequest) Reset() { *m = AuthRoleGetRequest{} } func (m *AuthRoleGetRequest) String() string { return proto.CompactTextString(m) } func (*AuthRoleGetRequest) ProtoMessage() {} -func (*AuthRoleGetRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{70} } +func (*AuthRoleGetRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{72} } func (m *AuthRoleGetRequest) GetRole() string { if m != nil { @@ -2939,7 +3018,7 @@ type AuthUserListRequest struct { func (m *AuthUserListRequest) Reset() { *m = AuthUserListRequest{} } func (m *AuthUserListRequest) String() string { return proto.CompactTextString(m) } func (*AuthUserListRequest) ProtoMessage() {} -func (*AuthUserListRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{71} } +func (*AuthUserListRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{73} } type AuthRoleListRequest struct { } @@ -2947,7 +3026,7 @@ type AuthRoleListRequest struct { func (m *AuthRoleListRequest) Reset() { *m = AuthRoleListRequest{} } func (m *AuthRoleListRequest) String() string { return proto.CompactTextString(m) } func (*AuthRoleListRequest) ProtoMessage() {} -func (*AuthRoleListRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{72} } +func (*AuthRoleListRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{74} } type AuthRoleDeleteRequest struct { Role string `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"` @@ -2956,7 +3035,7 @@ type AuthRoleDeleteRequest struct { func (m *AuthRoleDeleteRequest) Reset() { *m = AuthRoleDeleteRequest{} } func (m *AuthRoleDeleteRequest) String() string { return proto.CompactTextString(m) } func (*AuthRoleDeleteRequest) ProtoMessage() {} -func (*AuthRoleDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{73} } +func (*AuthRoleDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{75} } func (m *AuthRoleDeleteRequest) GetRole() string { if m != nil { @@ -2976,7 +3055,7 @@ func (m *AuthRoleGrantPermissionRequest) Reset() { *m = AuthRoleGrantPer func (m *AuthRoleGrantPermissionRequest) String() string { return proto.CompactTextString(m) } func (*AuthRoleGrantPermissionRequest) ProtoMessage() {} func (*AuthRoleGrantPermissionRequest) Descriptor() ([]byte, []int) { - return fileDescriptorRpc, []int{74} + return fileDescriptorRpc, []int{76} } func (m *AuthRoleGrantPermissionRequest) GetName() string { @@ -3003,7 +3082,7 @@ func (m *AuthRoleRevokePermissionRequest) Reset() { *m = AuthRoleRevokeP func (m *AuthRoleRevokePermissionRequest) String() string { return proto.CompactTextString(m) } func (*AuthRoleRevokePermissionRequest) ProtoMessage() {} func (*AuthRoleRevokePermissionRequest) Descriptor() ([]byte, []int) { - return fileDescriptorRpc, []int{75} + return fileDescriptorRpc, []int{77} } func (m *AuthRoleRevokePermissionRequest) GetRole() string { @@ -3034,7 +3113,7 @@ type AuthEnableResponse struct { func (m *AuthEnableResponse) Reset() { *m = AuthEnableResponse{} } func (m *AuthEnableResponse) String() string { return proto.CompactTextString(m) } func (*AuthEnableResponse) ProtoMessage() {} -func (*AuthEnableResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{76} } +func (*AuthEnableResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{78} } func (m *AuthEnableResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3050,7 +3129,7 @@ type AuthDisableResponse struct { func (m *AuthDisableResponse) Reset() { *m = AuthDisableResponse{} } func (m *AuthDisableResponse) String() string { return proto.CompactTextString(m) } func (*AuthDisableResponse) ProtoMessage() {} -func (*AuthDisableResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{77} } +func (*AuthDisableResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{79} } func (m *AuthDisableResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3069,7 +3148,7 @@ type AuthStatusResponse struct { func (m *AuthStatusResponse) Reset() { *m = AuthStatusResponse{} } func (m *AuthStatusResponse) String() string { return proto.CompactTextString(m) } func (*AuthStatusResponse) ProtoMessage() {} -func (*AuthStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{78} } +func (*AuthStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{80} } func (m *AuthStatusResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3101,7 +3180,7 @@ type AuthenticateResponse struct { func (m *AuthenticateResponse) Reset() { *m = AuthenticateResponse{} } func (m *AuthenticateResponse) String() string { return proto.CompactTextString(m) } func (*AuthenticateResponse) ProtoMessage() {} -func (*AuthenticateResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{79} } +func (*AuthenticateResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{81} } func (m *AuthenticateResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3124,7 +3203,7 @@ type AuthUserAddResponse struct { func (m *AuthUserAddResponse) Reset() { *m = AuthUserAddResponse{} } func (m *AuthUserAddResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserAddResponse) ProtoMessage() {} -func (*AuthUserAddResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{80} } +func (*AuthUserAddResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{82} } func (m *AuthUserAddResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3141,7 +3220,7 @@ type AuthUserGetResponse struct { func (m *AuthUserGetResponse) Reset() { *m = AuthUserGetResponse{} } func (m *AuthUserGetResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserGetResponse) ProtoMessage() {} -func (*AuthUserGetResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{81} } +func (*AuthUserGetResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{83} } func (m *AuthUserGetResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3164,7 +3243,7 @@ type AuthUserDeleteResponse struct { func (m *AuthUserDeleteResponse) Reset() { *m = AuthUserDeleteResponse{} } func (m *AuthUserDeleteResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserDeleteResponse) ProtoMessage() {} -func (*AuthUserDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{82} } +func (*AuthUserDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{84} } func (m *AuthUserDeleteResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3181,7 +3260,7 @@ func (m *AuthUserChangePasswordResponse) Reset() { *m = AuthUserChangePa func (m *AuthUserChangePasswordResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserChangePasswordResponse) ProtoMessage() {} func (*AuthUserChangePasswordResponse) Descriptor() ([]byte, []int) { - return fileDescriptorRpc, []int{83} + return fileDescriptorRpc, []int{85} } func (m *AuthUserChangePasswordResponse) GetHeader() *ResponseHeader { @@ -3198,7 +3277,7 @@ type AuthUserGrantRoleResponse struct { func (m *AuthUserGrantRoleResponse) Reset() { *m = AuthUserGrantRoleResponse{} } func (m *AuthUserGrantRoleResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserGrantRoleResponse) ProtoMessage() {} -func (*AuthUserGrantRoleResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{84} } +func (*AuthUserGrantRoleResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{86} } func (m *AuthUserGrantRoleResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3214,7 +3293,7 @@ type AuthUserRevokeRoleResponse struct { func (m *AuthUserRevokeRoleResponse) Reset() { *m = AuthUserRevokeRoleResponse{} } func (m *AuthUserRevokeRoleResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserRevokeRoleResponse) ProtoMessage() {} -func (*AuthUserRevokeRoleResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{85} } +func (*AuthUserRevokeRoleResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{87} } func (m *AuthUserRevokeRoleResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3230,7 +3309,7 @@ type AuthRoleAddResponse struct { func (m *AuthRoleAddResponse) Reset() { *m = AuthRoleAddResponse{} } func (m *AuthRoleAddResponse) String() string { return proto.CompactTextString(m) } func (*AuthRoleAddResponse) ProtoMessage() {} -func (*AuthRoleAddResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{86} } +func (*AuthRoleAddResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{88} } func (m *AuthRoleAddResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3247,7 +3326,7 @@ type AuthRoleGetResponse struct { func (m *AuthRoleGetResponse) Reset() { *m = AuthRoleGetResponse{} } func (m *AuthRoleGetResponse) String() string { return proto.CompactTextString(m) } func (*AuthRoleGetResponse) ProtoMessage() {} -func (*AuthRoleGetResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{87} } +func (*AuthRoleGetResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{89} } func (m *AuthRoleGetResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3271,7 +3350,7 @@ type AuthRoleListResponse struct { func (m *AuthRoleListResponse) Reset() { *m = AuthRoleListResponse{} } func (m *AuthRoleListResponse) String() string { return proto.CompactTextString(m) } func (*AuthRoleListResponse) ProtoMessage() {} -func (*AuthRoleListResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{88} } +func (*AuthRoleListResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{90} } func (m *AuthRoleListResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3295,7 +3374,7 @@ type AuthUserListResponse struct { func (m *AuthUserListResponse) Reset() { *m = AuthUserListResponse{} } func (m *AuthUserListResponse) String() string { return proto.CompactTextString(m) } func (*AuthUserListResponse) ProtoMessage() {} -func (*AuthUserListResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{89} } +func (*AuthUserListResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{91} } func (m *AuthUserListResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3318,7 +3397,7 @@ type AuthRoleDeleteResponse struct { func (m *AuthRoleDeleteResponse) Reset() { *m = AuthRoleDeleteResponse{} } func (m *AuthRoleDeleteResponse) String() string { return proto.CompactTextString(m) } func (*AuthRoleDeleteResponse) ProtoMessage() {} -func (*AuthRoleDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{90} } +func (*AuthRoleDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{92} } func (m *AuthRoleDeleteResponse) GetHeader() *ResponseHeader { if m != nil { @@ -3335,7 +3414,7 @@ func (m *AuthRoleGrantPermissionResponse) Reset() { *m = AuthRoleGrantPe func (m *AuthRoleGrantPermissionResponse) String() string { return proto.CompactTextString(m) } func (*AuthRoleGrantPermissionResponse) ProtoMessage() {} func (*AuthRoleGrantPermissionResponse) Descriptor() ([]byte, []int) { - return fileDescriptorRpc, []int{91} + return fileDescriptorRpc, []int{93} } func (m *AuthRoleGrantPermissionResponse) GetHeader() *ResponseHeader { @@ -3353,7 +3432,7 @@ func (m *AuthRoleRevokePermissionResponse) Reset() { *m = AuthRoleRevoke func (m *AuthRoleRevokePermissionResponse) String() string { return proto.CompactTextString(m) } func (*AuthRoleRevokePermissionResponse) ProtoMessage() {} func (*AuthRoleRevokePermissionResponse) Descriptor() ([]byte, []int) { - return fileDescriptorRpc, []int{92} + return fileDescriptorRpc, []int{94} } func (m *AuthRoleRevokePermissionResponse) GetHeader() *ResponseHeader { @@ -3421,6 +3500,8 @@ func init() { proto.RegisterType((*AlarmRequest)(nil), "etcdserverpb.AlarmRequest") proto.RegisterType((*AlarmMember)(nil), "etcdserverpb.AlarmMember") proto.RegisterType((*AlarmResponse)(nil), "etcdserverpb.AlarmResponse") + proto.RegisterType((*DowngradeRequest)(nil), "etcdserverpb.DowngradeRequest") + proto.RegisterType((*DowngradeResponse)(nil), "etcdserverpb.DowngradeResponse") proto.RegisterType((*StatusRequest)(nil), "etcdserverpb.StatusRequest") proto.RegisterType((*StatusResponse)(nil), "etcdserverpb.StatusResponse") proto.RegisterType((*AuthEnableRequest)(nil), "etcdserverpb.AuthEnableRequest") @@ -3464,6 +3545,7 @@ func init() { proto.RegisterEnum("etcdserverpb.Compare_CompareTarget", Compare_CompareTarget_name, Compare_CompareTarget_value) proto.RegisterEnum("etcdserverpb.WatchCreateRequest_FilterType", WatchCreateRequest_FilterType_name, WatchCreateRequest_FilterType_value) proto.RegisterEnum("etcdserverpb.AlarmRequest_AlarmAction", AlarmRequest_AlarmAction_name, AlarmRequest_AlarmAction_value) + proto.RegisterEnum("etcdserverpb.DowngradeRequest_DowngradeAction", DowngradeRequest_DowngradeAction_name, DowngradeRequest_DowngradeAction_value) } // Reference imports to suppress errors if they are not otherwise used. @@ -4278,6 +4360,8 @@ type MaintenanceClient interface { Snapshot(ctx context.Context, in *SnapshotRequest, opts ...grpc.CallOption) (Maintenance_SnapshotClient, error) // MoveLeader requests current leader node to transfer its leadership to transferee. MoveLeader(ctx context.Context, in *MoveLeaderRequest, opts ...grpc.CallOption) (*MoveLeaderResponse, error) + // Downgrade requests downgrade, cancel downgrade on the cluster version. + Downgrade(ctx context.Context, in *DowngradeRequest, opts ...grpc.CallOption) (*DowngradeResponse, error) } type maintenanceClient struct { @@ -4374,6 +4458,15 @@ func (c *maintenanceClient) MoveLeader(ctx context.Context, in *MoveLeaderReques return out, nil } +func (c *maintenanceClient) Downgrade(ctx context.Context, in *DowngradeRequest, opts ...grpc.CallOption) (*DowngradeResponse, error) { + out := new(DowngradeResponse) + err := grpc.Invoke(ctx, "/etcdserverpb.Maintenance/Downgrade", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // Server API for Maintenance service type MaintenanceServer interface { @@ -4397,6 +4490,8 @@ type MaintenanceServer interface { Snapshot(*SnapshotRequest, Maintenance_SnapshotServer) error // MoveLeader requests current leader node to transfer its leadership to transferee. MoveLeader(context.Context, *MoveLeaderRequest) (*MoveLeaderResponse, error) + // Downgrade requests downgrade, cancel downgrade on the cluster version. + Downgrade(context.Context, *DowngradeRequest) (*DowngradeResponse, error) } func RegisterMaintenanceServer(s *grpc.Server, srv MaintenanceServer) { @@ -4532,6 +4627,24 @@ func _Maintenance_MoveLeader_Handler(srv interface{}, ctx context.Context, dec f return interceptor(ctx, in, info, handler) } +func _Maintenance_Downgrade_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DowngradeRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(MaintenanceServer).Downgrade(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/etcdserverpb.Maintenance/Downgrade", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(MaintenanceServer).Downgrade(ctx, req.(*DowngradeRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Maintenance_serviceDesc = grpc.ServiceDesc{ ServiceName: "etcdserverpb.Maintenance", HandlerType: (*MaintenanceServer)(nil), @@ -4560,6 +4673,10 @@ var _Maintenance_serviceDesc = grpc.ServiceDesc{ MethodName: "MoveLeader", Handler: _Maintenance_MoveLeader_Handler, }, + { + MethodName: "Downgrade", + Handler: _Maintenance_Downgrade_Handler, + }, }, Streams: []grpc.StreamDesc{ { @@ -7499,6 +7616,69 @@ func (m *AlarmResponse) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *DowngradeRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *DowngradeRequest) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if m.Action != 0 { + dAtA[i] = 0x8 + i++ + i = encodeVarintRpc(dAtA, i, uint64(m.Action)) + } + if len(m.Version) > 0 { + dAtA[i] = 0x12 + i++ + i = encodeVarintRpc(dAtA, i, uint64(len(m.Version))) + i += copy(dAtA[i:], m.Version) + } + return i, nil +} + +func (m *DowngradeResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *DowngradeResponse) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if m.Header != nil { + dAtA[i] = 0xa + i++ + i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) + n43, err := m.Header.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n43 + } + if len(m.Version) > 0 { + dAtA[i] = 0x12 + i++ + i = encodeVarintRpc(dAtA, i, uint64(len(m.Version))) + i += copy(dAtA[i:], m.Version) + } + return i, nil +} + func (m *StatusRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -7536,11 +7716,11 @@ func (m *StatusResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n43, err := m.Header.MarshalTo(dAtA[i:]) + n44, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n43 + i += n44 } if len(m.Version) > 0 { dAtA[i] = 0x12 @@ -7721,11 +7901,11 @@ func (m *AuthUserAddRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintRpc(dAtA, i, uint64(m.Options.Size())) - n44, err := m.Options.MarshalTo(dAtA[i:]) + n45, err := m.Options.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n44 + i += n45 } return i, nil } @@ -8001,11 +8181,11 @@ func (m *AuthRoleGrantPermissionRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintRpc(dAtA, i, uint64(m.Perm.Size())) - n45, err := m.Perm.MarshalTo(dAtA[i:]) + n46, err := m.Perm.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n45 + i += n46 } return i, nil } @@ -8065,11 +8245,11 @@ func (m *AuthEnableResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n46, err := m.Header.MarshalTo(dAtA[i:]) + n47, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n46 + i += n47 } return i, nil } @@ -8093,11 +8273,11 @@ func (m *AuthDisableResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n47, err := m.Header.MarshalTo(dAtA[i:]) + n48, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n47 + i += n48 } return i, nil } @@ -8121,11 +8301,11 @@ func (m *AuthStatusResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n48, err := m.Header.MarshalTo(dAtA[i:]) + n49, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n48 + i += n49 } if m.Enabled { dAtA[i] = 0x10 @@ -8164,11 +8344,11 @@ func (m *AuthenticateResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n49, err := m.Header.MarshalTo(dAtA[i:]) + n50, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n49 + i += n50 } if len(m.Token) > 0 { dAtA[i] = 0x12 @@ -8198,11 +8378,11 @@ func (m *AuthUserAddResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n50, err := m.Header.MarshalTo(dAtA[i:]) + n51, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n50 + i += n51 } return i, nil } @@ -8226,11 +8406,11 @@ func (m *AuthUserGetResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n51, err := m.Header.MarshalTo(dAtA[i:]) + n52, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n51 + i += n52 } if len(m.Roles) > 0 { for _, s := range m.Roles { @@ -8269,11 +8449,11 @@ func (m *AuthUserDeleteResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n52, err := m.Header.MarshalTo(dAtA[i:]) + n53, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n52 + i += n53 } return i, nil } @@ -8297,11 +8477,11 @@ func (m *AuthUserChangePasswordResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n53, err := m.Header.MarshalTo(dAtA[i:]) + n54, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n53 + i += n54 } return i, nil } @@ -8325,11 +8505,11 @@ func (m *AuthUserGrantRoleResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n54, err := m.Header.MarshalTo(dAtA[i:]) + n55, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n54 + i += n55 } return i, nil } @@ -8353,11 +8533,11 @@ func (m *AuthUserRevokeRoleResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n55, err := m.Header.MarshalTo(dAtA[i:]) + n56, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n55 + i += n56 } return i, nil } @@ -8381,11 +8561,11 @@ func (m *AuthRoleAddResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n56, err := m.Header.MarshalTo(dAtA[i:]) + n57, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n56 + i += n57 } return i, nil } @@ -8409,11 +8589,11 @@ func (m *AuthRoleGetResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n57, err := m.Header.MarshalTo(dAtA[i:]) + n58, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n57 + i += n58 } if len(m.Perm) > 0 { for _, msg := range m.Perm { @@ -8449,11 +8629,11 @@ func (m *AuthRoleListResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n58, err := m.Header.MarshalTo(dAtA[i:]) + n59, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n58 + i += n59 } if len(m.Roles) > 0 { for _, s := range m.Roles { @@ -8492,11 +8672,11 @@ func (m *AuthUserListResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n59, err := m.Header.MarshalTo(dAtA[i:]) + n60, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n59 + i += n60 } if len(m.Users) > 0 { for _, s := range m.Users { @@ -8535,11 +8715,11 @@ func (m *AuthRoleDeleteResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n60, err := m.Header.MarshalTo(dAtA[i:]) + n61, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n60 + i += n61 } return i, nil } @@ -8563,11 +8743,11 @@ func (m *AuthRoleGrantPermissionResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n61, err := m.Header.MarshalTo(dAtA[i:]) + n62, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n61 + i += n62 } return i, nil } @@ -8591,11 +8771,11 @@ func (m *AuthRoleRevokePermissionResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n62, err := m.Header.MarshalTo(dAtA[i:]) + n63, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n62 + i += n63 } return i, nil } @@ -9594,6 +9774,33 @@ func (m *AlarmResponse) Size() (n int) { return n } +func (m *DowngradeRequest) Size() (n int) { + var l int + _ = l + if m.Action != 0 { + n += 1 + sovRpc(uint64(m.Action)) + } + l = len(m.Version) + if l > 0 { + n += 1 + l + sovRpc(uint64(l)) + } + return n +} + +func (m *DowngradeResponse) Size() (n int) { + var l int + _ = l + if m.Header != nil { + l = m.Header.Size() + n += 1 + l + sovRpc(uint64(l)) + } + l = len(m.Version) + if l > 0 { + n += 1 + l + sovRpc(uint64(l)) + } + return n +} + func (m *StatusRequest) Size() (n int) { var l int _ = l @@ -16668,6 +16875,216 @@ func (m *AlarmResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *DowngradeRequest) 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 ErrIntOverflowRpc + } + 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: DowngradeRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: DowngradeRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Action", wireType) + } + m.Action = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Action |= (DowngradeRequest_DowngradeAction(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + 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 ErrInvalidLengthRpc + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Version = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRpc(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRpc + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *DowngradeResponse) 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 ErrIntOverflowRpc + } + 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: DowngradeResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: DowngradeResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Header", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Header == nil { + m.Header = &ResponseHeader{} + } + if err := m.Header.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + 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 ErrInvalidLengthRpc + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Version = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRpc(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRpc + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *StatusRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -20169,254 +20586,260 @@ var ( func init() { proto.RegisterFile("rpc.proto", fileDescriptorRpc) } var fileDescriptorRpc = []byte{ - // 3977 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5b, 0x5b, 0x73, 0x23, 0xc7, - 0x75, 0xe6, 0x00, 0xc4, 0xed, 0xe0, 0x42, 0xb0, 0x79, 0x59, 0x2c, 0x76, 0x97, 0x4b, 0xf5, 0x6a, - 0x25, 0x6a, 0x57, 0x22, 0x64, 0xda, 0x4e, 0xaa, 0x36, 0x89, 0x63, 0x2e, 0x09, 0xed, 0x52, 0xe4, - 0x12, 0xd4, 0x10, 0xbb, 0xba, 0x94, 0x2b, 0xac, 0x21, 0xd0, 0x24, 0x27, 0x04, 0x66, 0xe0, 0x99, - 0x01, 0x44, 0x2a, 0x17, 0xa7, 0x5c, 0x8e, 0x2b, 0xc9, 0xa3, 0x5d, 0x95, 0x4a, 0x1e, 0xf2, 0x94, - 0x4a, 0xb9, 0xfc, 0x90, 0xe7, 0xfc, 0x85, 0x3c, 0xe5, 0x52, 0xf9, 0x03, 0x29, 0xc5, 0x2f, 0xc9, - 0xaf, 0x48, 0xf5, 0x6d, 0xa6, 0xe7, 0x06, 0xae, 0x05, 0x49, 0x2f, 0xe4, 0xf4, 0xe9, 0xd3, 0xe7, - 0x9c, 0x3e, 0xdd, 0x7d, 0x4e, 0xf7, 0xd7, 0x0d, 0x28, 0x39, 0xa3, 0xde, 0xe6, 0xc8, 0xb1, 0x3d, - 0x1b, 0x55, 0x88, 0xd7, 0xeb, 0xbb, 0xc4, 0x99, 0x10, 0x67, 0x74, 0xda, 0x5c, 0x3e, 0xb7, 0xcf, - 0x6d, 0x56, 0xd1, 0xa2, 0x5f, 0x9c, 0xa7, 0x79, 0x9b, 0xf2, 0xb4, 0x86, 0x93, 0x5e, 0x8f, 0xfd, - 0x19, 0x9d, 0xb6, 0x2e, 0x27, 0xa2, 0xea, 0x0e, 0xab, 0x32, 0xc6, 0xde, 0x05, 0xfb, 0x33, 0x3a, - 0x65, 0xff, 0x44, 0xe5, 0xdd, 0x73, 0xdb, 0x3e, 0x1f, 0x90, 0x96, 0x31, 0x32, 0x5b, 0x86, 0x65, - 0xd9, 0x9e, 0xe1, 0x99, 0xb6, 0xe5, 0xf2, 0x5a, 0xfc, 0x97, 0x1a, 0xd4, 0x74, 0xe2, 0x8e, 0x6c, - 0xcb, 0x25, 0xcf, 0x89, 0xd1, 0x27, 0x0e, 0xba, 0x07, 0xd0, 0x1b, 0x8c, 0x5d, 0x8f, 0x38, 0x27, - 0x66, 0xbf, 0xa1, 0xad, 0x6b, 0x1b, 0xf3, 0x7a, 0x49, 0x50, 0xf6, 0xfa, 0xe8, 0x0e, 0x94, 0x86, - 0x64, 0x78, 0xca, 0x6b, 0x33, 0xac, 0xb6, 0xc8, 0x09, 0x7b, 0x7d, 0xd4, 0x84, 0xa2, 0x43, 0x26, - 0xa6, 0x6b, 0xda, 0x56, 0x23, 0xbb, 0xae, 0x6d, 0x64, 0x75, 0xbf, 0x4c, 0x1b, 0x3a, 0xc6, 0x99, - 0x77, 0xe2, 0x11, 0x67, 0xd8, 0x98, 0xe7, 0x0d, 0x29, 0xa1, 0x4b, 0x9c, 0x21, 0xfe, 0x59, 0x0e, - 0x2a, 0xba, 0x61, 0x9d, 0x13, 0x9d, 0xfc, 0x78, 0x4c, 0x5c, 0x0f, 0xd5, 0x21, 0x7b, 0x49, 0xae, - 0x99, 0xfa, 0x8a, 0x4e, 0x3f, 0x79, 0x7b, 0xeb, 0x9c, 0x9c, 0x10, 0x8b, 0x2b, 0xae, 0xd0, 0xf6, - 0xd6, 0x39, 0x69, 0x5b, 0x7d, 0xb4, 0x0c, 0xb9, 0x81, 0x39, 0x34, 0x3d, 0xa1, 0x95, 0x17, 0x42, - 0xe6, 0xcc, 0x47, 0xcc, 0xd9, 0x01, 0x70, 0x6d, 0xc7, 0x3b, 0xb1, 0x9d, 0x3e, 0x71, 0x1a, 0xb9, - 0x75, 0x6d, 0xa3, 0xb6, 0xf5, 0xe6, 0xa6, 0x3a, 0x10, 0x9b, 0xaa, 0x41, 0x9b, 0xc7, 0xb6, 0xe3, - 0x75, 0x28, 0xaf, 0x5e, 0x72, 0xe5, 0x27, 0xfa, 0x00, 0xca, 0x4c, 0x88, 0x67, 0x38, 0xe7, 0xc4, - 0x6b, 0xe4, 0x99, 0x94, 0x87, 0x37, 0x48, 0xe9, 0x32, 0x66, 0x9d, 0xa9, 0xe7, 0xdf, 0x08, 0x43, - 0xc5, 0x25, 0x8e, 0x69, 0x0c, 0xcc, 0x2f, 0x8c, 0xd3, 0x01, 0x69, 0x14, 0xd6, 0xb5, 0x8d, 0xa2, - 0x1e, 0xa2, 0xd1, 0xfe, 0x5f, 0x92, 0x6b, 0xf7, 0xc4, 0xb6, 0x06, 0xd7, 0x8d, 0x22, 0x63, 0x28, - 0x52, 0x42, 0xc7, 0x1a, 0x5c, 0xb3, 0x41, 0xb3, 0xc7, 0x96, 0xc7, 0x6b, 0x4b, 0xac, 0xb6, 0xc4, - 0x28, 0xac, 0x7a, 0x03, 0xea, 0x43, 0xd3, 0x3a, 0x19, 0xda, 0xfd, 0x13, 0xdf, 0x21, 0xc0, 0x1c, - 0x52, 0x1b, 0x9a, 0xd6, 0x0b, 0xbb, 0xaf, 0x4b, 0xb7, 0x50, 0x4e, 0xe3, 0x2a, 0xcc, 0x59, 0x16, - 0x9c, 0xc6, 0x95, 0xca, 0xb9, 0x09, 0x4b, 0x54, 0x66, 0xcf, 0x21, 0x86, 0x47, 0x02, 0xe6, 0x0a, - 0x63, 0x5e, 0x1c, 0x9a, 0xd6, 0x0e, 0xab, 0x09, 0xf1, 0x1b, 0x57, 0x31, 0xfe, 0xaa, 0xe0, 0x37, - 0xae, 0xc2, 0xfc, 0x78, 0x13, 0x4a, 0xbe, 0xcf, 0x51, 0x11, 0xe6, 0x0f, 0x3b, 0x87, 0xed, 0xfa, - 0x1c, 0x02, 0xc8, 0x6f, 0x1f, 0xef, 0xb4, 0x0f, 0x77, 0xeb, 0x1a, 0x2a, 0x43, 0x61, 0xb7, 0xcd, - 0x0b, 0x19, 0xfc, 0x14, 0x20, 0xf0, 0x2e, 0x2a, 0x40, 0x76, 0xbf, 0xfd, 0x69, 0x7d, 0x8e, 0xf2, - 0xbc, 0x6a, 0xeb, 0xc7, 0x7b, 0x9d, 0xc3, 0xba, 0x46, 0x1b, 0xef, 0xe8, 0xed, 0xed, 0x6e, 0xbb, - 0x9e, 0xa1, 0x1c, 0x2f, 0x3a, 0xbb, 0xf5, 0x2c, 0x2a, 0x41, 0xee, 0xd5, 0xf6, 0xc1, 0xcb, 0x76, - 0x7d, 0x1e, 0xff, 0x52, 0x83, 0xaa, 0x18, 0x2f, 0xbe, 0x26, 0xd0, 0xf7, 0x20, 0x7f, 0xc1, 0xd6, - 0x05, 0x9b, 0x8a, 0xe5, 0xad, 0xbb, 0x91, 0xc1, 0x0d, 0xad, 0x1d, 0x5d, 0xf0, 0x22, 0x0c, 0xd9, - 0xcb, 0x89, 0xdb, 0xc8, 0xac, 0x67, 0x37, 0xca, 0x5b, 0xf5, 0x4d, 0xbe, 0x60, 0x37, 0xf7, 0xc9, - 0xf5, 0x2b, 0x63, 0x30, 0x26, 0x3a, 0xad, 0x44, 0x08, 0xe6, 0x87, 0xb6, 0x43, 0xd8, 0x8c, 0x2d, - 0xea, 0xec, 0x9b, 0x4e, 0x63, 0x36, 0x68, 0x62, 0xb6, 0xf2, 0x02, 0xfe, 0xb5, 0x06, 0x70, 0x34, - 0xf6, 0xd2, 0x97, 0xc6, 0x32, 0xe4, 0x26, 0x54, 0xb0, 0x58, 0x16, 0xbc, 0xc0, 0xd6, 0x04, 0x31, - 0x5c, 0xe2, 0xaf, 0x09, 0x5a, 0x40, 0xb7, 0xa0, 0x30, 0x72, 0xc8, 0xe4, 0xe4, 0x72, 0xc2, 0x94, - 0x14, 0xf5, 0x3c, 0x2d, 0xee, 0x4f, 0xd0, 0x1b, 0x50, 0x31, 0xcf, 0x2d, 0xdb, 0x21, 0x27, 0x5c, - 0x56, 0x8e, 0xd5, 0x96, 0x39, 0x8d, 0xd9, 0xad, 0xb0, 0x70, 0xc1, 0x79, 0x95, 0xe5, 0x80, 0x92, - 0xb0, 0x05, 0x65, 0x66, 0xea, 0x4c, 0xee, 0x7b, 0x27, 0xb0, 0x31, 0xc3, 0x9a, 0xc5, 0x5d, 0x28, - 0xac, 0xc6, 0x3f, 0x02, 0xb4, 0x4b, 0x06, 0xc4, 0x23, 0xb3, 0x44, 0x0f, 0xc5, 0x27, 0x59, 0xd5, - 0x27, 0xf8, 0x17, 0x1a, 0x2c, 0x85, 0xc4, 0xcf, 0xd4, 0xad, 0x06, 0x14, 0xfa, 0x4c, 0x18, 0xb7, - 0x20, 0xab, 0xcb, 0x22, 0x7a, 0x0c, 0x45, 0x61, 0x80, 0xdb, 0xc8, 0xa6, 0x4c, 0x9a, 0x02, 0xb7, - 0xc9, 0xc5, 0xbf, 0xce, 0x40, 0x49, 0x74, 0xb4, 0x33, 0x42, 0xdb, 0x50, 0x75, 0x78, 0xe1, 0x84, - 0xf5, 0x47, 0x58, 0xd4, 0x4c, 0x0f, 0x42, 0xcf, 0xe7, 0xf4, 0x8a, 0x68, 0xc2, 0xc8, 0xe8, 0xf7, - 0xa0, 0x2c, 0x45, 0x8c, 0xc6, 0x9e, 0x70, 0x79, 0x23, 0x2c, 0x20, 0x98, 0x7f, 0xcf, 0xe7, 0x74, - 0x10, 0xec, 0x47, 0x63, 0x0f, 0x75, 0x61, 0x59, 0x36, 0xe6, 0xbd, 0x11, 0x66, 0x64, 0x99, 0x94, - 0xf5, 0xb0, 0x94, 0xf8, 0x50, 0x3d, 0x9f, 0xd3, 0x91, 0x68, 0xaf, 0x54, 0xaa, 0x26, 0x79, 0x57, - 0x3c, 0x78, 0xc7, 0x4c, 0xea, 0x5e, 0x59, 0x71, 0x93, 0xba, 0x57, 0xd6, 0xd3, 0x12, 0x14, 0x44, - 0x09, 0xff, 0x4b, 0x06, 0x40, 0x8e, 0x46, 0x67, 0x84, 0x76, 0xa1, 0xe6, 0x88, 0x52, 0xc8, 0x5b, - 0x77, 0x12, 0xbd, 0x25, 0x06, 0x71, 0x4e, 0xaf, 0xca, 0x46, 0xdc, 0xb8, 0x1f, 0x40, 0xc5, 0x97, - 0x12, 0x38, 0xec, 0x76, 0x82, 0xc3, 0x7c, 0x09, 0x65, 0xd9, 0x80, 0xba, 0xec, 0x63, 0x58, 0xf1, - 0xdb, 0x27, 0xf8, 0xec, 0x8d, 0x29, 0x3e, 0xf3, 0x05, 0x2e, 0x49, 0x09, 0xaa, 0xd7, 0x54, 0xc3, - 0x02, 0xb7, 0xdd, 0x4e, 0x70, 0x5b, 0xdc, 0x30, 0xea, 0x38, 0xa0, 0xf9, 0x92, 0x17, 0xf1, 0xff, - 0x66, 0xa1, 0xb0, 0x63, 0x0f, 0x47, 0x86, 0x43, 0x47, 0x23, 0xef, 0x10, 0x77, 0x3c, 0xf0, 0x98, - 0xbb, 0x6a, 0x5b, 0x0f, 0xc2, 0x12, 0x05, 0x9b, 0xfc, 0xaf, 0x33, 0x56, 0x5d, 0x34, 0xa1, 0x8d, - 0x45, 0x7a, 0xcc, 0xbc, 0x46, 0x63, 0x91, 0x1c, 0x45, 0x13, 0xb9, 0x90, 0xb3, 0xc1, 0x42, 0x6e, - 0x42, 0x61, 0x42, 0x9c, 0x20, 0xa5, 0x3f, 0x9f, 0xd3, 0x25, 0x01, 0xbd, 0x03, 0x0b, 0xd1, 0xf4, - 0x92, 0x13, 0x3c, 0xb5, 0x5e, 0x38, 0x1b, 0x3d, 0x80, 0x4a, 0x28, 0xc7, 0xe5, 0x05, 0x5f, 0x79, - 0xa8, 0xa4, 0xb8, 0x55, 0x19, 0x57, 0x69, 0x3e, 0xae, 0x3c, 0x9f, 0x93, 0x91, 0x75, 0x55, 0x46, - 0xd6, 0xa2, 0x68, 0x25, 0x62, 0x6b, 0x28, 0xc8, 0xfc, 0x30, 0x1c, 0x64, 0xf0, 0x0f, 0xa1, 0x1a, - 0x72, 0x10, 0xcd, 0x3b, 0xed, 0x8f, 0x5e, 0x6e, 0x1f, 0xf0, 0x24, 0xf5, 0x8c, 0xe5, 0x25, 0xbd, - 0xae, 0xd1, 0x5c, 0x77, 0xd0, 0x3e, 0x3e, 0xae, 0x67, 0x50, 0x15, 0x4a, 0x87, 0x9d, 0xee, 0x09, - 0xe7, 0xca, 0xe2, 0x67, 0xbe, 0x04, 0x91, 0xe4, 0x94, 0xdc, 0x36, 0xa7, 0xe4, 0x36, 0x4d, 0xe6, - 0xb6, 0x4c, 0x90, 0xdb, 0x58, 0x9a, 0x3b, 0x68, 0x6f, 0x1f, 0xb7, 0xeb, 0xf3, 0x4f, 0x6b, 0x50, - 0xe1, 0xfe, 0x3d, 0x19, 0x5b, 0x34, 0xd5, 0xfe, 0xa3, 0x06, 0x10, 0xac, 0x26, 0xd4, 0x82, 0x42, - 0x8f, 0xeb, 0x69, 0x68, 0x2c, 0x18, 0xad, 0x24, 0x0e, 0x99, 0x2e, 0xb9, 0xd0, 0x77, 0xa0, 0xe0, - 0x8e, 0x7b, 0x3d, 0xe2, 0xca, 0x94, 0x77, 0x2b, 0x1a, 0x0f, 0x45, 0xb4, 0xd2, 0x25, 0x1f, 0x6d, - 0x72, 0x66, 0x98, 0x83, 0x31, 0x4b, 0x80, 0xd3, 0x9b, 0x08, 0x3e, 0xfc, 0xf7, 0x1a, 0x94, 0x95, - 0xc9, 0xfb, 0x15, 0x83, 0xf0, 0x5d, 0x28, 0x31, 0x1b, 0x48, 0x5f, 0x84, 0xe1, 0xa2, 0x1e, 0x10, - 0xd0, 0xef, 0x40, 0x49, 0xae, 0x00, 0x19, 0x89, 0x1b, 0xc9, 0x62, 0x3b, 0x23, 0x3d, 0x60, 0xc5, - 0xfb, 0xb0, 0xc8, 0xbc, 0xd2, 0xa3, 0x9b, 0x6b, 0xe9, 0x47, 0x75, 0xfb, 0xa9, 0x45, 0xb6, 0x9f, - 0x4d, 0x28, 0x8e, 0x2e, 0xae, 0x5d, 0xb3, 0x67, 0x0c, 0x84, 0x15, 0x7e, 0x19, 0x7f, 0x08, 0x48, - 0x15, 0x36, 0x4b, 0x77, 0x71, 0x15, 0xca, 0xcf, 0x0d, 0xf7, 0x42, 0x98, 0x84, 0x1f, 0x43, 0x95, - 0x16, 0xf7, 0x5f, 0xbd, 0x86, 0x8d, 0xec, 0x70, 0x20, 0xb9, 0x67, 0xf2, 0x39, 0x82, 0xf9, 0x0b, - 0xc3, 0xbd, 0x60, 0x1d, 0xad, 0xea, 0xec, 0x1b, 0xbd, 0x03, 0xf5, 0x1e, 0xef, 0xe4, 0x49, 0xe4, - 0xc8, 0xb0, 0x20, 0xe8, 0xfe, 0x4e, 0xf0, 0x13, 0xa8, 0xf0, 0x3e, 0x7c, 0xdd, 0x46, 0xe0, 0x45, - 0x58, 0x38, 0xb6, 0x8c, 0x91, 0x7b, 0x61, 0xcb, 0xec, 0x46, 0x3b, 0x5d, 0x0f, 0x68, 0x33, 0x69, - 0x7c, 0x1b, 0x16, 0x1c, 0x32, 0x34, 0x4c, 0xcb, 0xb4, 0xce, 0x4f, 0x4e, 0xaf, 0x3d, 0xe2, 0x8a, - 0x03, 0x53, 0xcd, 0x27, 0x3f, 0xa5, 0x54, 0x6a, 0xda, 0xe9, 0xc0, 0x3e, 0x15, 0x61, 0x8e, 0x7d, - 0xe3, 0x9f, 0x67, 0xa0, 0xf2, 0xb1, 0xe1, 0xf5, 0xe4, 0xd0, 0xa1, 0x3d, 0xa8, 0xf9, 0xc1, 0x8d, - 0x51, 0x84, 0x2d, 0x91, 0x14, 0xcb, 0xda, 0xc8, 0xad, 0xb4, 0xcc, 0x8e, 0xd5, 0x9e, 0x4a, 0x60, - 0xa2, 0x0c, 0xab, 0x47, 0x06, 0xbe, 0xa8, 0x4c, 0xba, 0x28, 0xc6, 0xa8, 0x8a, 0x52, 0x09, 0xa8, - 0x03, 0xf5, 0x91, 0x63, 0x9f, 0x3b, 0xc4, 0x75, 0x7d, 0x61, 0x3c, 0x8d, 0xe1, 0x04, 0x61, 0x47, - 0x82, 0x35, 0x10, 0xb7, 0x30, 0x0a, 0x93, 0x9e, 0x2e, 0x04, 0xfb, 0x19, 0x1e, 0x9c, 0xfe, 0x33, - 0x03, 0x28, 0xde, 0xa9, 0xdf, 0x76, 0x8b, 0xf7, 0x10, 0x6a, 0xae, 0x67, 0x38, 0xb1, 0xc9, 0x56, - 0x65, 0x54, 0x3f, 0xe2, 0xbf, 0x0d, 0xbe, 0x41, 0x27, 0x96, 0xed, 0x99, 0x67, 0xd7, 0x62, 0x97, - 0x5c, 0x93, 0xe4, 0x43, 0x46, 0x45, 0x6d, 0x28, 0x9c, 0x99, 0x03, 0x8f, 0x38, 0x6e, 0x23, 0xb7, - 0x9e, 0xdd, 0xa8, 0x6d, 0x3d, 0xbe, 0x69, 0x18, 0x36, 0x3f, 0x60, 0xfc, 0xdd, 0xeb, 0x11, 0xd1, - 0x65, 0x5b, 0x75, 0xe7, 0x99, 0x0f, 0xed, 0xc6, 0x6f, 0x43, 0xf1, 0x73, 0x2a, 0x82, 0x9e, 0xb2, - 0x0b, 0x7c, 0xb3, 0xc8, 0xca, 0xfc, 0x90, 0x7d, 0xe6, 0x18, 0xe7, 0x43, 0x62, 0x79, 0xf2, 0x1c, - 0x28, 0xcb, 0xf8, 0x21, 0x40, 0xa0, 0x86, 0x86, 0xfc, 0xc3, 0xce, 0xd1, 0xcb, 0x6e, 0x7d, 0x0e, - 0x55, 0xa0, 0x78, 0xd8, 0xd9, 0x6d, 0x1f, 0xb4, 0x69, 0x7e, 0xc0, 0x2d, 0xe9, 0xd2, 0xd0, 0x58, - 0xaa, 0x3a, 0xb5, 0x90, 0x4e, 0xbc, 0x0a, 0xcb, 0x49, 0x03, 0x48, 0xf7, 0xa2, 0x55, 0x31, 0x4b, - 0x67, 0x5a, 0x2a, 0xaa, 0xea, 0x4c, 0xb8, 0xbb, 0x0d, 0x28, 0xf0, 0xd9, 0xdb, 0x17, 0x9b, 0x73, - 0x59, 0xa4, 0x8e, 0xe0, 0x93, 0x91, 0xf4, 0xc5, 0x28, 0xf9, 0xe5, 0xc4, 0xf0, 0x92, 0x4b, 0x0c, - 0x2f, 0xe8, 0x01, 0x54, 0xfd, 0xd5, 0x60, 0xb8, 0x62, 0x2f, 0x50, 0xd2, 0x2b, 0x72, 0xa2, 0x53, - 0x5a, 0xc8, 0xe9, 0x85, 0xb0, 0xd3, 0xd1, 0x43, 0xc8, 0x93, 0x09, 0xb1, 0x3c, 0xb7, 0x51, 0x66, - 0x19, 0xa3, 0x2a, 0xf7, 0xee, 0x6d, 0x4a, 0xd5, 0x45, 0x25, 0xfe, 0x3e, 0x2c, 0xb2, 0x33, 0xd2, - 0x33, 0xc7, 0xb0, 0xd4, 0xc3, 0x5c, 0xb7, 0x7b, 0x20, 0xdc, 0x4d, 0x3f, 0x51, 0x0d, 0x32, 0x7b, - 0xbb, 0xc2, 0x09, 0x99, 0xbd, 0x5d, 0xfc, 0x53, 0x0d, 0x90, 0xda, 0x6e, 0x26, 0x3f, 0x47, 0x84, - 0x4b, 0xf5, 0xd9, 0x40, 0xfd, 0x32, 0xe4, 0x88, 0xe3, 0xd8, 0x0e, 0xf3, 0x68, 0x49, 0xe7, 0x05, - 0xfc, 0xa6, 0xb0, 0x41, 0x27, 0x13, 0xfb, 0xd2, 0x5f, 0x83, 0x5c, 0x9a, 0xe6, 0x9b, 0xba, 0x0f, - 0x4b, 0x21, 0xae, 0x99, 0x32, 0xd7, 0x07, 0xb0, 0xc0, 0x84, 0xed, 0x5c, 0x90, 0xde, 0xe5, 0xc8, - 0x36, 0xad, 0x98, 0x3e, 0x3a, 0x72, 0x41, 0x80, 0xa5, 0xfd, 0xe0, 0x1d, 0xab, 0xf8, 0xc4, 0x6e, - 0xf7, 0x00, 0x7f, 0x0a, 0xab, 0x11, 0x39, 0xd2, 0xfc, 0x3f, 0x84, 0x72, 0xcf, 0x27, 0xba, 0x62, - 0xaf, 0x73, 0x2f, 0x6c, 0x5c, 0xb4, 0xa9, 0xda, 0x02, 0x77, 0xe0, 0x56, 0x4c, 0xf4, 0x4c, 0x7d, - 0x7e, 0x1b, 0x56, 0x98, 0xc0, 0x7d, 0x42, 0x46, 0xdb, 0x03, 0x73, 0x92, 0xea, 0xe9, 0x91, 0xe8, - 0x94, 0xc2, 0xf8, 0xcd, 0xce, 0x0b, 0xfc, 0xfb, 0x42, 0x63, 0xd7, 0x1c, 0x92, 0xae, 0x7d, 0x90, - 0x6e, 0x1b, 0xcd, 0x66, 0x97, 0xe4, 0xda, 0x15, 0xdb, 0x1a, 0xf6, 0x8d, 0xff, 0x49, 0x13, 0xae, - 0x52, 0x9b, 0x7f, 0xc3, 0x33, 0x79, 0x0d, 0xe0, 0x9c, 0x2e, 0x19, 0xd2, 0xa7, 0x15, 0x1c, 0x51, - 0x51, 0x28, 0xbe, 0x9d, 0x34, 0x7e, 0x57, 0x84, 0x9d, 0xcb, 0x62, 0x9e, 0xb3, 0x3f, 0x7e, 0x94, - 0xbb, 0x07, 0x65, 0x46, 0x38, 0xf6, 0x0c, 0x6f, 0xec, 0xc6, 0x06, 0xe3, 0xcf, 0xc5, 0xb4, 0x97, - 0x8d, 0x66, 0xea, 0xd7, 0x77, 0x20, 0xcf, 0x0e, 0x13, 0x72, 0x2b, 0x7d, 0x3b, 0x61, 0x3e, 0x72, - 0x3b, 0x74, 0xc1, 0x88, 0x7f, 0xae, 0x41, 0xfe, 0x05, 0x83, 0x60, 0x15, 0xd3, 0xe6, 0xe5, 0x58, - 0x58, 0xc6, 0x90, 0x03, 0x43, 0x25, 0x9d, 0x7d, 0xb3, 0xad, 0x27, 0x21, 0xce, 0x4b, 0xfd, 0x80, - 0x6f, 0x71, 0x4b, 0xba, 0x5f, 0xa6, 0x3e, 0xeb, 0x0d, 0x4c, 0x62, 0x79, 0xac, 0x76, 0x9e, 0xd5, - 0x2a, 0x14, 0xba, 0x7b, 0x36, 0xdd, 0x03, 0x62, 0x38, 0x96, 0x00, 0x4d, 0x8b, 0x7a, 0x40, 0xc0, - 0x07, 0x50, 0xe7, 0x76, 0x6c, 0xf7, 0xfb, 0xca, 0x06, 0xd3, 0xd7, 0xa6, 0x45, 0xb4, 0x85, 0xa4, - 0x65, 0xa2, 0xd2, 0x7e, 0xa5, 0xc1, 0xa2, 0x22, 0x6e, 0x26, 0xaf, 0xbe, 0x0b, 0x79, 0x0e, 0x52, - 0x8b, 0x9d, 0xce, 0x72, 0xb8, 0x15, 0x57, 0xa3, 0x0b, 0x1e, 0xb4, 0x09, 0x05, 0xfe, 0x25, 0xcf, - 0x00, 0xc9, 0xec, 0x92, 0x09, 0x3f, 0x84, 0x25, 0x41, 0x22, 0x43, 0x3b, 0x69, 0x61, 0xb0, 0xc1, - 0xc0, 0x7f, 0x0a, 0xcb, 0x61, 0xb6, 0x99, 0xba, 0xa4, 0x18, 0x99, 0x79, 0x1d, 0x23, 0xb7, 0xa5, - 0x91, 0x2f, 0x47, 0x7d, 0x65, 0x1f, 0x15, 0x9d, 0x31, 0xea, 0x78, 0x65, 0xc2, 0xe3, 0x15, 0x74, - 0x40, 0x8a, 0xf8, 0x56, 0x3b, 0xb0, 0x24, 0xa7, 0xc3, 0x81, 0xe9, 0xfa, 0xdb, 0xf5, 0x2f, 0x00, - 0xa9, 0xc4, 0x6f, 0xd5, 0xa0, 0xb7, 0xa4, 0x3b, 0x8e, 0x1c, 0x7b, 0x68, 0xa7, 0xba, 0x14, 0xff, - 0x19, 0xac, 0x44, 0xf8, 0xbe, 0x6d, 0xbf, 0xed, 0x12, 0xb9, 0x59, 0x91, 0x7e, 0xfb, 0x10, 0x90, - 0x4a, 0x9c, 0x29, 0x6b, 0xb5, 0x60, 0xf1, 0x85, 0x3d, 0xa1, 0xe1, 0x8f, 0x52, 0x83, 0x75, 0xcf, - 0x31, 0x06, 0xdf, 0x15, 0x7e, 0x99, 0x2a, 0x57, 0x1b, 0xcc, 0xa4, 0xfc, 0xdf, 0x35, 0xa8, 0x6c, - 0x0f, 0x0c, 0x67, 0x28, 0x15, 0xff, 0x00, 0xf2, 0xfc, 0xe4, 0x2c, 0xc0, 0xaa, 0xb7, 0xc2, 0x62, - 0x54, 0x5e, 0x5e, 0xd8, 0xe6, 0xe7, 0x6c, 0xd1, 0x8a, 0x1a, 0x2e, 0xee, 0xb3, 0x76, 0x23, 0xf7, - 0x5b, 0xbb, 0xe8, 0x3d, 0xc8, 0x19, 0xb4, 0x09, 0x4b, 0x33, 0xb5, 0x28, 0x66, 0xc1, 0xa4, 0xb1, - 0xfd, 0x3d, 0xe7, 0xc2, 0xdf, 0x83, 0xb2, 0xa2, 0x01, 0x15, 0x20, 0xfb, 0xac, 0x2d, 0x36, 0xe3, - 0xdb, 0x3b, 0xdd, 0xbd, 0x57, 0x1c, 0xac, 0xa9, 0x01, 0xec, 0xb6, 0xfd, 0x72, 0x06, 0x7f, 0x22, - 0x5a, 0x89, 0x90, 0xae, 0xda, 0xa3, 0xa5, 0xd9, 0x93, 0x79, 0x2d, 0x7b, 0xae, 0xa0, 0x2a, 0xba, - 0x3f, 0x6b, 0x8a, 0x62, 0xf2, 0x52, 0x52, 0x94, 0x62, 0xbc, 0x2e, 0x18, 0xf1, 0x02, 0x54, 0x45, - 0xd2, 0x12, 0xf3, 0xef, 0xdf, 0x32, 0x50, 0x93, 0x94, 0x59, 0x41, 0x75, 0x89, 0x07, 0xf2, 0x24, - 0xe7, 0xa3, 0x81, 0xab, 0x90, 0xef, 0x9f, 0x1e, 0x9b, 0x5f, 0xc8, 0x0b, 0x10, 0x51, 0xa2, 0xf4, - 0x01, 0xd7, 0xc3, 0x6f, 0x21, 0x45, 0x89, 0x66, 0x23, 0xc7, 0x38, 0xf3, 0xf6, 0xac, 0x3e, 0xb9, - 0x62, 0xb9, 0x6d, 0x5e, 0x0f, 0x08, 0x0c, 0x28, 0x11, 0xb7, 0x95, 0xec, 0x80, 0xa0, 0xdc, 0x5e, - 0xa2, 0x47, 0x50, 0xa7, 0xdf, 0xdb, 0xa3, 0xd1, 0xc0, 0x24, 0x7d, 0x2e, 0xa0, 0xc0, 0x78, 0x62, - 0x74, 0xaa, 0x9d, 0x6d, 0xa9, 0xdd, 0x46, 0x91, 0x45, 0x57, 0x51, 0x42, 0xeb, 0x50, 0xe6, 0xf6, - 0xed, 0x59, 0x2f, 0x5d, 0xc2, 0xae, 0xf0, 0xb2, 0xba, 0x4a, 0x0a, 0x67, 0x4b, 0x88, 0x66, 0xcb, - 0x25, 0x58, 0xdc, 0x1e, 0x7b, 0x17, 0x6d, 0xcb, 0x38, 0x1d, 0xc8, 0x48, 0x44, 0xb7, 0x33, 0x94, - 0xb8, 0x6b, 0xba, 0x2a, 0x55, 0xb0, 0x86, 0x07, 0xa4, 0x0d, 0x4b, 0x94, 0x48, 0x2c, 0xcf, 0xec, - 0x29, 0xe9, 0x41, 0x6e, 0x20, 0xb4, 0xc8, 0x06, 0xc2, 0x70, 0xdd, 0xcf, 0x6d, 0xa7, 0x2f, 0x7c, - 0xee, 0x97, 0xf1, 0x84, 0x6b, 0x7c, 0xe9, 0x86, 0x36, 0x01, 0xbf, 0xa5, 0x14, 0xf4, 0x3e, 0x14, - 0xec, 0x11, 0xbb, 0xa7, 0x16, 0x60, 0xc2, 0xea, 0x26, 0xbf, 0xd9, 0xde, 0x14, 0x82, 0x3b, 0xbc, - 0x56, 0x97, 0x6c, 0x78, 0x23, 0xd0, 0xfb, 0x8c, 0x78, 0x53, 0xf4, 0xe2, 0xc7, 0xb0, 0x22, 0x39, - 0x05, 0x76, 0x3e, 0x85, 0xb9, 0x03, 0xf7, 0x24, 0xf3, 0xce, 0x85, 0x61, 0x9d, 0x93, 0x23, 0x61, - 0xe2, 0x57, 0xf5, 0xcf, 0x53, 0x68, 0xf8, 0x76, 0xb2, 0xf3, 0x9c, 0x3d, 0x50, 0x0d, 0x18, 0xbb, - 0x62, 0xfa, 0x97, 0x74, 0xf6, 0x4d, 0x69, 0x8e, 0x3d, 0xf0, 0x37, 0x70, 0xf4, 0x1b, 0xef, 0xc0, - 0x6d, 0x29, 0x43, 0x9c, 0xb4, 0xc2, 0x42, 0x62, 0x06, 0x25, 0x09, 0x11, 0x0e, 0xa3, 0x4d, 0xa7, - 0x0f, 0x94, 0xca, 0x19, 0x76, 0x2d, 0x93, 0xa9, 0x29, 0x32, 0x57, 0xf8, 0x1c, 0xa2, 0x86, 0xa9, - 0x39, 0x5a, 0x90, 0xa9, 0x00, 0x95, 0x2c, 0x06, 0x82, 0x92, 0x63, 0x03, 0x11, 0x13, 0xfd, 0x23, - 0x58, 0xf3, 0x8d, 0xa0, 0x7e, 0x3b, 0x22, 0xce, 0xd0, 0x74, 0x5d, 0x05, 0x6d, 0x4d, 0xea, 0xf8, - 0x5b, 0x30, 0x3f, 0x22, 0x22, 0x3c, 0x96, 0xb7, 0x90, 0x9c, 0x44, 0x4a, 0x63, 0x56, 0x8f, 0xfb, - 0x70, 0x5f, 0x4a, 0xe7, 0x1e, 0x4d, 0x14, 0x1f, 0x35, 0x4a, 0x62, 0x50, 0x99, 0x14, 0x0c, 0x2a, - 0x1b, 0xb9, 0x01, 0xf8, 0x90, 0x3b, 0x52, 0x2e, 0xd1, 0x99, 0xd2, 0xde, 0x3e, 0xf7, 0xa9, 0xbf, - 0xb2, 0x67, 0x12, 0xf6, 0x57, 0x1a, 0xb7, 0xec, 0xeb, 0x0a, 0xc8, 0x84, 0xf5, 0x50, 0xc2, 0xeb, - 0xb2, 0x88, 0x30, 0x54, 0xe8, 0x00, 0xe8, 0x2a, 0x02, 0x37, 0xaf, 0x87, 0x68, 0xf8, 0x14, 0x96, - 0xc3, 0x61, 0x68, 0x26, 0x5b, 0x96, 0x21, 0xe7, 0xd9, 0x97, 0x44, 0xa6, 0x06, 0x5e, 0x90, 0xbe, - 0xf3, 0x63, 0xd4, 0x4c, 0xbe, 0x33, 0x02, 0x61, 0x6c, 0x75, 0xcc, 0x6a, 0x2f, 0x9d, 0x58, 0x72, - 0xe7, 0xcd, 0x0b, 0xf8, 0x10, 0x56, 0xa3, 0x11, 0x6b, 0x26, 0x93, 0x5f, 0xf1, 0xb5, 0x94, 0x14, - 0xd4, 0x66, 0x92, 0xfb, 0x51, 0x10, 0x97, 0x94, 0xd8, 0x36, 0x93, 0x48, 0x1d, 0x9a, 0x49, 0xa1, - 0xee, 0xeb, 0x58, 0x3a, 0x7e, 0xe4, 0x9b, 0x49, 0x98, 0x1b, 0x08, 0x9b, 0x7d, 0xf8, 0x83, 0x70, - 0x95, 0x9d, 0x1a, 0xae, 0xc4, 0x22, 0x09, 0x02, 0xea, 0x37, 0x30, 0xe9, 0x84, 0x8e, 0x20, 0x96, - 0xcf, 0xaa, 0x83, 0xa6, 0x33, 0x5f, 0x07, 0x2b, 0xc8, 0x89, 0xad, 0x66, 0x80, 0x99, 0x06, 0xe3, - 0xe3, 0x20, 0x8c, 0xc7, 0x92, 0xc4, 0x4c, 0x82, 0x3f, 0x81, 0xf5, 0xf4, 0xfc, 0x30, 0x8b, 0xe4, - 0x47, 0x2d, 0x28, 0xf9, 0xdb, 0x74, 0xe5, 0x95, 0x53, 0x19, 0x0a, 0x87, 0x9d, 0xe3, 0xa3, 0xed, - 0x9d, 0x36, 0x7f, 0xe6, 0xb4, 0xd3, 0xd1, 0xf5, 0x97, 0x47, 0xdd, 0x7a, 0x66, 0xeb, 0x37, 0x59, - 0xc8, 0xec, 0xbf, 0x42, 0x9f, 0x42, 0x8e, 0xdf, 0xf9, 0x4f, 0x79, 0xe8, 0xd1, 0x9c, 0xf6, 0xac, - 0x01, 0xdf, 0xfa, 0xe9, 0x7f, 0xfd, 0xe6, 0x97, 0x99, 0x45, 0x5c, 0x69, 0x4d, 0xbe, 0xdb, 0xba, - 0x9c, 0xb4, 0x58, 0x9a, 0x7a, 0xa2, 0x3d, 0x42, 0x1f, 0x41, 0xf6, 0x68, 0xec, 0xa1, 0xd4, 0x07, - 0x20, 0xcd, 0xf4, 0x97, 0x0e, 0x78, 0x85, 0x09, 0x5d, 0xc0, 0x20, 0x84, 0x8e, 0xc6, 0x1e, 0x15, - 0xf9, 0x63, 0x28, 0xab, 0xef, 0x14, 0x6e, 0x7c, 0x15, 0xd2, 0xbc, 0xf9, 0x0d, 0x04, 0xbe, 0xc7, - 0x54, 0xdd, 0xc2, 0x48, 0xa8, 0xe2, 0x2f, 0x29, 0xd4, 0x5e, 0x74, 0xaf, 0x2c, 0x94, 0xfa, 0x66, - 0xa4, 0x99, 0xfe, 0x2c, 0x22, 0xd6, 0x0b, 0xef, 0xca, 0xa2, 0x22, 0xff, 0x58, 0xbc, 0x88, 0xe8, - 0x79, 0xe8, 0x7e, 0xc2, 0x8d, 0xb8, 0x7a, 0xf7, 0xdb, 0x5c, 0x4f, 0x67, 0x10, 0x4a, 0xee, 0x32, - 0x25, 0xab, 0x78, 0x51, 0x28, 0xe9, 0xf9, 0x2c, 0x4f, 0xb4, 0x47, 0x5b, 0x3d, 0xc8, 0xb1, 0x7b, - 0x15, 0xf4, 0x99, 0xfc, 0x68, 0x26, 0x5c, 0x30, 0xa5, 0x0c, 0x74, 0xe8, 0x46, 0x06, 0x2f, 0x33, - 0x45, 0x35, 0x5c, 0xa2, 0x8a, 0xd8, 0xad, 0xca, 0x13, 0xed, 0xd1, 0x86, 0xf6, 0xbe, 0xb6, 0xf5, - 0xcf, 0x39, 0xc8, 0x31, 0x40, 0x11, 0x5d, 0x02, 0x04, 0x77, 0x0c, 0xd1, 0xde, 0xc5, 0x6e, 0x2d, - 0xa2, 0xbd, 0x8b, 0x5f, 0x4f, 0xe0, 0x26, 0x53, 0xba, 0x8c, 0x17, 0xa8, 0x52, 0x86, 0x53, 0xb6, - 0x18, 0xf4, 0x4a, 0xfd, 0xf8, 0xd7, 0x9a, 0xc0, 0x53, 0xf9, 0x5a, 0x42, 0x49, 0xd2, 0x42, 0x17, - 0x0d, 0xd1, 0xe9, 0x90, 0x70, 0xc9, 0x80, 0xbf, 0xcf, 0x14, 0xb6, 0x70, 0x3d, 0x50, 0xe8, 0x30, - 0x8e, 0x27, 0xda, 0xa3, 0xcf, 0x1a, 0x78, 0x49, 0x78, 0x39, 0x52, 0x83, 0x7e, 0x02, 0xb5, 0x30, - 0x90, 0x8e, 0x1e, 0x24, 0xe8, 0x8a, 0xe2, 0xf1, 0xcd, 0x37, 0xa7, 0x33, 0x09, 0x9b, 0xd6, 0x98, - 0x4d, 0x42, 0x39, 0xd7, 0x7c, 0x49, 0xc8, 0xc8, 0xa0, 0x4c, 0x62, 0x0c, 0xd0, 0x3f, 0x68, 0xe2, - 0x9e, 0x23, 0x40, 0xc6, 0x51, 0x92, 0xf4, 0x18, 0xee, 0xde, 0x7c, 0x78, 0x03, 0x97, 0x30, 0xe2, - 0x0f, 0x98, 0x11, 0xbf, 0x8b, 0x97, 0x03, 0x23, 0x3c, 0x73, 0x48, 0x3c, 0x5b, 0x58, 0xf1, 0xd9, - 0x5d, 0x7c, 0x2b, 0xe4, 0x9c, 0x50, 0x6d, 0x30, 0x58, 0x1c, 0xdd, 0x4e, 0x1c, 0xac, 0x10, 0x5a, - 0x9e, 0x38, 0x58, 0x61, 0x68, 0x3c, 0x69, 0xb0, 0x38, 0x96, 0x9d, 0x34, 0x58, 0x7e, 0xcd, 0xd6, - 0xff, 0xcd, 0x43, 0x61, 0x87, 0xbf, 0x44, 0x46, 0x36, 0x94, 0x7c, 0x70, 0x18, 0xad, 0x25, 0x21, - 0x60, 0xc1, 0xb1, 0xa6, 0x79, 0x3f, 0xb5, 0x5e, 0x18, 0xf4, 0x06, 0x33, 0xe8, 0x0e, 0x5e, 0xa5, - 0x9a, 0xc5, 0x63, 0xe7, 0x16, 0x87, 0x59, 0x5a, 0x46, 0xbf, 0x4f, 0x1d, 0xf1, 0x27, 0x50, 0x51, - 0xd1, 0x5b, 0xf4, 0x46, 0x22, 0xea, 0xa6, 0x02, 0xc0, 0x4d, 0x3c, 0x8d, 0x45, 0x68, 0x7e, 0x93, - 0x69, 0x5e, 0xc3, 0xb7, 0x13, 0x34, 0x3b, 0x8c, 0x35, 0xa4, 0x9c, 0x23, 0xaf, 0xc9, 0xca, 0x43, - 0xc0, 0x6e, 0xb2, 0xf2, 0x30, 0x70, 0x3b, 0x55, 0xf9, 0x98, 0xb1, 0x52, 0xe5, 0x2e, 0x40, 0x80, - 0xb1, 0xa2, 0x44, 0x5f, 0x2a, 0xe7, 0xba, 0x68, 0x70, 0x88, 0xc3, 0xb3, 0x18, 0x33, 0xb5, 0x62, - 0xde, 0x45, 0xd4, 0x0e, 0x4c, 0xd7, 0xe3, 0x0b, 0xb3, 0x1a, 0x02, 0x4d, 0x51, 0x62, 0x7f, 0xc2, - 0xc8, 0x6b, 0xf3, 0xc1, 0x54, 0x1e, 0xa1, 0xfd, 0x21, 0xd3, 0x7e, 0x1f, 0x37, 0x13, 0xb4, 0x8f, - 0x38, 0x2f, 0x9d, 0x6c, 0x7f, 0x93, 0x87, 0xf2, 0x0b, 0xc3, 0xb4, 0x3c, 0x62, 0x19, 0x56, 0x8f, - 0xa0, 0x53, 0xc8, 0xb1, 0x4c, 0x1d, 0x0d, 0xc4, 0x2a, 0xa0, 0x18, 0x0d, 0xc4, 0x21, 0xb4, 0x0d, - 0xaf, 0x33, 0xc5, 0x4d, 0xbc, 0x42, 0x15, 0x0f, 0x03, 0xd1, 0x2d, 0x06, 0x92, 0xd1, 0x4e, 0x9f, - 0x41, 0x5e, 0xdc, 0x31, 0x45, 0x04, 0x85, 0xb0, 0x9a, 0xe6, 0xdd, 0xe4, 0xca, 0xa4, 0xb9, 0xac, - 0xaa, 0x71, 0x19, 0x1f, 0xd5, 0x33, 0x01, 0x08, 0xd0, 0xdf, 0xe8, 0x88, 0xc6, 0xc0, 0xe2, 0xe6, - 0x7a, 0x3a, 0x43, 0x92, 0x4f, 0x55, 0x9d, 0x7d, 0x9f, 0x97, 0xea, 0xfd, 0x23, 0x98, 0x7f, 0x6e, - 0xb8, 0x17, 0x28, 0x92, 0x7b, 0x95, 0x17, 0x4a, 0xcd, 0x66, 0x52, 0x95, 0xd0, 0x72, 0x9f, 0x69, - 0xb9, 0xcd, 0x43, 0x99, 0xaa, 0xe5, 0xc2, 0x70, 0x69, 0x52, 0x43, 0x7d, 0xc8, 0xf3, 0x07, 0x4b, - 0x51, 0xff, 0x85, 0x1e, 0x3d, 0x45, 0xfd, 0x17, 0x7e, 0xe3, 0x74, 0xb3, 0x96, 0x11, 0x14, 0xe5, - 0x0b, 0x21, 0x14, 0xb9, 0x2e, 0x8e, 0xbc, 0x26, 0x6a, 0xae, 0xa5, 0x55, 0x0b, 0x5d, 0x0f, 0x98, - 0xae, 0x7b, 0xb8, 0x11, 0x1b, 0x2b, 0xc1, 0xf9, 0x44, 0x7b, 0xf4, 0xbe, 0x86, 0x7e, 0x02, 0x10, - 0x00, 0xe6, 0xb1, 0x15, 0x18, 0xc5, 0xde, 0x63, 0x2b, 0x30, 0x86, 0xb5, 0xe3, 0x4d, 0xa6, 0x77, - 0x03, 0x3f, 0x88, 0xea, 0xf5, 0x1c, 0xc3, 0x72, 0xcf, 0x88, 0xf3, 0x1e, 0x07, 0x45, 0xdd, 0x0b, - 0x73, 0x44, 0x17, 0xc3, 0xaf, 0xea, 0x30, 0x4f, 0x77, 0xc0, 0x74, 0xa3, 0x10, 0x60, 0x18, 0x51, - 0x4b, 0x62, 0x00, 0x64, 0xd4, 0x92, 0x38, 0xfc, 0x11, 0xde, 0x28, 0xb0, 0xdf, 0xb0, 0x70, 0xb8, - 0x80, 0x3a, 0xda, 0x86, 0xb2, 0x02, 0x72, 0xa0, 0x04, 0x61, 0x61, 0x64, 0x33, 0x9a, 0x7a, 0x12, - 0x10, 0x12, 0x7c, 0x87, 0xe9, 0x5b, 0xe1, 0xa9, 0x87, 0xe9, 0xeb, 0x73, 0x0e, 0xaa, 0x50, 0xf4, - 0x4e, 0xac, 0xc1, 0x84, 0xde, 0x85, 0xd7, 0xe1, 0x7a, 0x3a, 0x43, 0x6a, 0xef, 0x82, 0x45, 0xf8, - 0x39, 0x54, 0x54, 0xa8, 0x03, 0x25, 0x18, 0x1f, 0x41, 0x63, 0xa3, 0x31, 0x3d, 0x09, 0x29, 0x09, - 0x47, 0x19, 0xff, 0x47, 0x41, 0x92, 0x8d, 0x2a, 0x1e, 0x40, 0x41, 0x60, 0x1f, 0x49, 0x2e, 0x0d, - 0x43, 0xb7, 0x49, 0x2e, 0x8d, 0x00, 0x27, 0xe1, 0x9d, 0x2c, 0xd3, 0x48, 0x8f, 0x77, 0x32, 0x6f, - 0x0a, 0x6d, 0xcf, 0x88, 0x97, 0xa6, 0x2d, 0x40, 0x15, 0xd3, 0xb4, 0x29, 0x47, 0xeb, 0x34, 0x6d, - 0xe7, 0xc4, 0x13, 0x6b, 0x53, 0x1e, 0x59, 0x51, 0x8a, 0x30, 0x35, 0x57, 0xe1, 0x69, 0x2c, 0x49, - 0x07, 0x8d, 0x40, 0xa1, 0x4c, 0x54, 0x57, 0x00, 0x01, 0x32, 0x13, 0xdd, 0x3d, 0x26, 0x22, 0xcd, - 0xd1, 0xdd, 0x63, 0x32, 0xb8, 0x13, 0x8e, 0x43, 0x81, 0x5e, 0x7e, 0xce, 0xa1, 0x9a, 0x7f, 0xa1, - 0x01, 0x8a, 0x83, 0x38, 0xe8, 0x71, 0xb2, 0xf4, 0x44, 0xfc, 0xba, 0xf9, 0xee, 0xeb, 0x31, 0x27, - 0xa5, 0x96, 0xc0, 0xa4, 0x1e, 0xe3, 0x1e, 0x7d, 0x4e, 0x8d, 0xfa, 0x0b, 0x0d, 0xaa, 0x21, 0x04, - 0x08, 0xbd, 0x95, 0x32, 0xa6, 0x11, 0xf8, 0xbb, 0xf9, 0xf6, 0x8d, 0x7c, 0x49, 0xdb, 0x6a, 0x65, - 0x06, 0xc8, 0xf3, 0xc5, 0xcf, 0x34, 0xa8, 0x85, 0x11, 0x23, 0x94, 0x22, 0x3b, 0x06, 0x9f, 0x37, - 0x37, 0x6e, 0x66, 0x9c, 0x3e, 0x3c, 0xc1, 0xd1, 0x62, 0x00, 0x05, 0x81, 0x31, 0x25, 0x4d, 0xfc, - 0x30, 0xf0, 0x9e, 0x34, 0xf1, 0x23, 0x00, 0x55, 0xc2, 0xc4, 0x77, 0xec, 0x01, 0x51, 0x96, 0x99, - 0x00, 0xa1, 0xd2, 0xb4, 0x4d, 0x5f, 0x66, 0x11, 0x04, 0x2b, 0x4d, 0x5b, 0xb0, 0xcc, 0x24, 0xfa, - 0x84, 0x52, 0x84, 0xdd, 0xb0, 0xcc, 0xa2, 0xe0, 0x55, 0xc2, 0x32, 0x63, 0x0a, 0x95, 0x65, 0x16, - 0xe0, 0x44, 0x49, 0xcb, 0x2c, 0x76, 0x8f, 0x90, 0xb4, 0xcc, 0xe2, 0x50, 0x53, 0xc2, 0x38, 0x32, - 0xbd, 0xa1, 0x65, 0xb6, 0x94, 0x00, 0x29, 0xa1, 0x77, 0x53, 0x9c, 0x98, 0x78, 0x3d, 0xd1, 0x7c, - 0xef, 0x35, 0xb9, 0x53, 0xe7, 0x38, 0x77, 0xbf, 0x9c, 0xe3, 0x7f, 0xab, 0xc1, 0x72, 0x12, 0x1c, - 0x85, 0x52, 0xf4, 0xa4, 0x5c, 0x6b, 0x34, 0x37, 0x5f, 0x97, 0x7d, 0xba, 0xb7, 0xfc, 0x59, 0xff, - 0xb4, 0xfe, 0xaf, 0x5f, 0xae, 0x69, 0xff, 0xf1, 0xe5, 0x9a, 0xf6, 0xdf, 0x5f, 0xae, 0x69, 0x7f, - 0xf7, 0x3f, 0x6b, 0x73, 0xa7, 0x79, 0xf6, 0x53, 0xd3, 0xef, 0xfe, 0x7f, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x15, 0xe9, 0x99, 0xb4, 0xf1, 0x3a, 0x00, 0x00, + // 4072 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5b, 0x5b, 0x73, 0x1b, 0xc9, + 0x75, 0xe6, 0x00, 0xc4, 0xed, 0xe0, 0x42, 0xb0, 0x79, 0x11, 0x04, 0x49, 0x14, 0xb7, 0xb5, 0xda, + 0xe5, 0x4a, 0xbb, 0xc4, 0x9a, 0xb6, 0xe3, 0x2a, 0x25, 0x71, 0x0c, 0x91, 0x58, 0x89, 0x4b, 0x8a, + 0xe0, 0x0e, 0x21, 0xed, 0xa5, 0x5c, 0x61, 0x0d, 0x81, 0x16, 0x39, 0x21, 0x30, 0x03, 0xcf, 0x0c, + 0x20, 0x72, 0x73, 0x71, 0xca, 0xe5, 0xb8, 0x92, 0x57, 0xbb, 0x2a, 0x95, 0x3c, 0xe4, 0x29, 0x95, + 0x72, 0xf9, 0xc1, 0xcf, 0xf9, 0x0b, 0x79, 0xca, 0xa5, 0xf2, 0x07, 0x52, 0x1b, 0xbf, 0x24, 0x3f, + 0x22, 0x95, 0xea, 0xdb, 0x4c, 0xcf, 0x8d, 0x94, 0x8d, 0xd5, 0xbe, 0x90, 0xd3, 0xa7, 0x4f, 0x9f, + 0xef, 0xf4, 0xe9, 0xee, 0x73, 0xba, 0x4f, 0x37, 0xa0, 0xe4, 0x8c, 0xfb, 0x9b, 0x63, 0xc7, 0xf6, + 0x6c, 0x54, 0x21, 0x5e, 0x7f, 0xe0, 0x12, 0x67, 0x4a, 0x9c, 0xf1, 0x49, 0x73, 0xf9, 0xd4, 0x3e, + 0xb5, 0x59, 0x45, 0x8b, 0x7e, 0x71, 0x9e, 0xe6, 0x4d, 0xca, 0xd3, 0x1a, 0x4d, 0xfb, 0x7d, 0xf6, + 0x67, 0x7c, 0xd2, 0x3a, 0x9f, 0x8a, 0xaa, 0x5b, 0xac, 0xca, 0x98, 0x78, 0x67, 0xec, 0xcf, 0xf8, + 0x84, 0xfd, 0x13, 0x95, 0xb7, 0x4f, 0x6d, 0xfb, 0x74, 0x48, 0x5a, 0xc6, 0xd8, 0x6c, 0x19, 0x96, + 0x65, 0x7b, 0x86, 0x67, 0xda, 0x96, 0xcb, 0x6b, 0xf1, 0x5f, 0x69, 0x50, 0xd3, 0x89, 0x3b, 0xb6, + 0x2d, 0x97, 0x3c, 0x25, 0xc6, 0x80, 0x38, 0xe8, 0x0e, 0x40, 0x7f, 0x38, 0x71, 0x3d, 0xe2, 0x1c, + 0x9b, 0x83, 0x86, 0xb6, 0xae, 0x6d, 0xcc, 0xeb, 0x25, 0x41, 0xd9, 0x1d, 0xa0, 0x5b, 0x50, 0x1a, + 0x91, 0xd1, 0x09, 0xaf, 0xcd, 0xb0, 0xda, 0x22, 0x27, 0xec, 0x0e, 0x50, 0x13, 0x8a, 0x0e, 0x99, + 0x9a, 0xae, 0x69, 0x5b, 0x8d, 0xec, 0xba, 0xb6, 0x91, 0xd5, 0xfd, 0x32, 0x6d, 0xe8, 0x18, 0x2f, + 0xbd, 0x63, 0x8f, 0x38, 0xa3, 0xc6, 0x3c, 0x6f, 0x48, 0x09, 0x3d, 0xe2, 0x8c, 0xf0, 0x4f, 0x73, + 0x50, 0xd1, 0x0d, 0xeb, 0x94, 0xe8, 0xe4, 0x47, 0x13, 0xe2, 0x7a, 0xa8, 0x0e, 0xd9, 0x73, 0x72, + 0xc9, 0xe0, 0x2b, 0x3a, 0xfd, 0xe4, 0xed, 0xad, 0x53, 0x72, 0x4c, 0x2c, 0x0e, 0x5c, 0xa1, 0xed, + 0xad, 0x53, 0xd2, 0xb1, 0x06, 0x68, 0x19, 0x72, 0x43, 0x73, 0x64, 0x7a, 0x02, 0x95, 0x17, 0x42, + 0xea, 0xcc, 0x47, 0xd4, 0xd9, 0x06, 0x70, 0x6d, 0xc7, 0x3b, 0xb6, 0x9d, 0x01, 0x71, 0x1a, 0xb9, + 0x75, 0x6d, 0xa3, 0xb6, 0xf5, 0xf6, 0xa6, 0x3a, 0x10, 0x9b, 0xaa, 0x42, 0x9b, 0x47, 0xb6, 0xe3, + 0x75, 0x29, 0xaf, 0x5e, 0x72, 0xe5, 0x27, 0xfa, 0x08, 0xca, 0x4c, 0x88, 0x67, 0x38, 0xa7, 0xc4, + 0x6b, 0xe4, 0x99, 0x94, 0xfb, 0xd7, 0x48, 0xe9, 0x31, 0x66, 0x9d, 0xc1, 0xf3, 0x6f, 0x84, 0xa1, + 0xe2, 0x12, 0xc7, 0x34, 0x86, 0xe6, 0x97, 0xc6, 0xc9, 0x90, 0x34, 0x0a, 0xeb, 0xda, 0x46, 0x51, + 0x0f, 0xd1, 0x68, 0xff, 0xcf, 0xc9, 0xa5, 0x7b, 0x6c, 0x5b, 0xc3, 0xcb, 0x46, 0x91, 0x31, 0x14, + 0x29, 0xa1, 0x6b, 0x0d, 0x2f, 0xd9, 0xa0, 0xd9, 0x13, 0xcb, 0xe3, 0xb5, 0x25, 0x56, 0x5b, 0x62, + 0x14, 0x56, 0xbd, 0x01, 0xf5, 0x91, 0x69, 0x1d, 0x8f, 0xec, 0xc1, 0xb1, 0x6f, 0x10, 0x60, 0x06, + 0xa9, 0x8d, 0x4c, 0xeb, 0x99, 0x3d, 0xd0, 0xa5, 0x59, 0x28, 0xa7, 0x71, 0x11, 0xe6, 0x2c, 0x0b, + 0x4e, 0xe3, 0x42, 0xe5, 0xdc, 0x84, 0x25, 0x2a, 0xb3, 0xef, 0x10, 0xc3, 0x23, 0x01, 0x73, 0x85, + 0x31, 0x2f, 0x8e, 0x4c, 0x6b, 0x9b, 0xd5, 0x84, 0xf8, 0x8d, 0x8b, 0x18, 0x7f, 0x55, 0xf0, 0x1b, + 0x17, 0x61, 0x7e, 0xbc, 0x09, 0x25, 0xdf, 0xe6, 0xa8, 0x08, 0xf3, 0x07, 0xdd, 0x83, 0x4e, 0x7d, + 0x0e, 0x01, 0xe4, 0xdb, 0x47, 0xdb, 0x9d, 0x83, 0x9d, 0xba, 0x86, 0xca, 0x50, 0xd8, 0xe9, 0xf0, + 0x42, 0x06, 0x3f, 0x06, 0x08, 0xac, 0x8b, 0x0a, 0x90, 0xdd, 0xeb, 0x7c, 0x5e, 0x9f, 0xa3, 0x3c, + 0x2f, 0x3a, 0xfa, 0xd1, 0x6e, 0xf7, 0xa0, 0xae, 0xd1, 0xc6, 0xdb, 0x7a, 0xa7, 0xdd, 0xeb, 0xd4, + 0x33, 0x94, 0xe3, 0x59, 0x77, 0xa7, 0x9e, 0x45, 0x25, 0xc8, 0xbd, 0x68, 0xef, 0x3f, 0xef, 0xd4, + 0xe7, 0xf1, 0x2f, 0x34, 0xa8, 0x8a, 0xf1, 0xe2, 0x6b, 0x02, 0x7d, 0x07, 0xf2, 0x67, 0x6c, 0x5d, + 0xb0, 0xa9, 0x58, 0xde, 0xba, 0x1d, 0x19, 0xdc, 0xd0, 0xda, 0xd1, 0x05, 0x2f, 0xc2, 0x90, 0x3d, + 0x9f, 0xba, 0x8d, 0xcc, 0x7a, 0x76, 0xa3, 0xbc, 0x55, 0xdf, 0xe4, 0x0b, 0x76, 0x73, 0x8f, 0x5c, + 0xbe, 0x30, 0x86, 0x13, 0xa2, 0xd3, 0x4a, 0x84, 0x60, 0x7e, 0x64, 0x3b, 0x84, 0xcd, 0xd8, 0xa2, + 0xce, 0xbe, 0xe9, 0x34, 0x66, 0x83, 0x26, 0x66, 0x2b, 0x2f, 0xe0, 0x5f, 0x69, 0x00, 0x87, 0x13, + 0x2f, 0x7d, 0x69, 0x2c, 0x43, 0x6e, 0x4a, 0x05, 0x8b, 0x65, 0xc1, 0x0b, 0x6c, 0x4d, 0x10, 0xc3, + 0x25, 0xfe, 0x9a, 0xa0, 0x05, 0x74, 0x03, 0x0a, 0x63, 0x87, 0x4c, 0x8f, 0xcf, 0xa7, 0x0c, 0xa4, + 0xa8, 0xe7, 0x69, 0x71, 0x6f, 0x8a, 0xde, 0x82, 0x8a, 0x79, 0x6a, 0xd9, 0x0e, 0x39, 0xe6, 0xb2, + 0x72, 0xac, 0xb6, 0xcc, 0x69, 0x4c, 0x6f, 0x85, 0x85, 0x0b, 0xce, 0xab, 0x2c, 0xfb, 0x94, 0x84, + 0x2d, 0x28, 0x33, 0x55, 0x67, 0x32, 0xdf, 0x7b, 0x81, 0x8e, 0x19, 0xd6, 0x2c, 0x6e, 0x42, 0xa1, + 0x35, 0xfe, 0x21, 0xa0, 0x1d, 0x32, 0x24, 0x1e, 0x99, 0xc5, 0x7b, 0x28, 0x36, 0xc9, 0xaa, 0x36, + 0xc1, 0x3f, 0xd7, 0x60, 0x29, 0x24, 0x7e, 0xa6, 0x6e, 0x35, 0xa0, 0x30, 0x60, 0xc2, 0xb8, 0x06, + 0x59, 0x5d, 0x16, 0xd1, 0x43, 0x28, 0x0a, 0x05, 0xdc, 0x46, 0x36, 0x65, 0xd2, 0x14, 0xb8, 0x4e, + 0x2e, 0xfe, 0x55, 0x06, 0x4a, 0xa2, 0xa3, 0xdd, 0x31, 0x6a, 0x43, 0xd5, 0xe1, 0x85, 0x63, 0xd6, + 0x1f, 0xa1, 0x51, 0x33, 0xdd, 0x09, 0x3d, 0x9d, 0xd3, 0x2b, 0xa2, 0x09, 0x23, 0xa3, 0xdf, 0x87, + 0xb2, 0x14, 0x31, 0x9e, 0x78, 0xc2, 0xe4, 0x8d, 0xb0, 0x80, 0x60, 0xfe, 0x3d, 0x9d, 0xd3, 0x41, + 0xb0, 0x1f, 0x4e, 0x3c, 0xd4, 0x83, 0x65, 0xd9, 0x98, 0xf7, 0x46, 0xa8, 0x91, 0x65, 0x52, 0xd6, + 0xc3, 0x52, 0xe2, 0x43, 0xf5, 0x74, 0x4e, 0x47, 0xa2, 0xbd, 0x52, 0xa9, 0xaa, 0xe4, 0x5d, 0x70, + 0xe7, 0x1d, 0x53, 0xa9, 0x77, 0x61, 0xc5, 0x55, 0xea, 0x5d, 0x58, 0x8f, 0x4b, 0x50, 0x10, 0x25, + 0xfc, 0xcf, 0x19, 0x00, 0x39, 0x1a, 0xdd, 0x31, 0xda, 0x81, 0x9a, 0x23, 0x4a, 0x21, 0x6b, 0xdd, + 0x4a, 0xb4, 0x96, 0x18, 0xc4, 0x39, 0xbd, 0x2a, 0x1b, 0x71, 0xe5, 0xbe, 0x0f, 0x15, 0x5f, 0x4a, + 0x60, 0xb0, 0x9b, 0x09, 0x06, 0xf3, 0x25, 0x94, 0x65, 0x03, 0x6a, 0xb2, 0x4f, 0x61, 0xc5, 0x6f, + 0x9f, 0x60, 0xb3, 0xb7, 0xae, 0xb0, 0x99, 0x2f, 0x70, 0x49, 0x4a, 0x50, 0xad, 0xa6, 0x2a, 0x16, + 0x98, 0xed, 0x66, 0x82, 0xd9, 0xe2, 0x8a, 0x51, 0xc3, 0x01, 0x8d, 0x97, 0xbc, 0x88, 0xff, 0x27, + 0x0b, 0x85, 0x6d, 0x7b, 0x34, 0x36, 0x1c, 0x3a, 0x1a, 0x79, 0x87, 0xb8, 0x93, 0xa1, 0xc7, 0xcc, + 0x55, 0xdb, 0xba, 0x17, 0x96, 0x28, 0xd8, 0xe4, 0x7f, 0x9d, 0xb1, 0xea, 0xa2, 0x09, 0x6d, 0x2c, + 0xc2, 0x63, 0xe6, 0x35, 0x1a, 0x8b, 0xe0, 0x28, 0x9a, 0xc8, 0x85, 0x9c, 0x0d, 0x16, 0x72, 0x13, + 0x0a, 0x53, 0xe2, 0x04, 0x21, 0xfd, 0xe9, 0x9c, 0x2e, 0x09, 0xe8, 0x3d, 0x58, 0x88, 0x86, 0x97, + 0x9c, 0xe0, 0xa9, 0xf5, 0xc3, 0xd1, 0xe8, 0x1e, 0x54, 0x42, 0x31, 0x2e, 0x2f, 0xf8, 0xca, 0x23, + 0x25, 0xc4, 0xad, 0x4a, 0xbf, 0x4a, 0xe3, 0x71, 0xe5, 0xe9, 0x9c, 0xf4, 0xac, 0xab, 0xd2, 0xb3, + 0x16, 0x45, 0x2b, 0xe1, 0x5b, 0x43, 0x4e, 0xe6, 0x07, 0x61, 0x27, 0x83, 0x7f, 0x00, 0xd5, 0x90, + 0x81, 0x68, 0xdc, 0xe9, 0x7c, 0xf2, 0xbc, 0xbd, 0xcf, 0x83, 0xd4, 0x13, 0x16, 0x97, 0xf4, 0xba, + 0x46, 0x63, 0xdd, 0x7e, 0xe7, 0xe8, 0xa8, 0x9e, 0x41, 0x55, 0x28, 0x1d, 0x74, 0x7b, 0xc7, 0x9c, + 0x2b, 0x8b, 0x9f, 0xf8, 0x12, 0x44, 0x90, 0x53, 0x62, 0xdb, 0x9c, 0x12, 0xdb, 0x34, 0x19, 0xdb, + 0x32, 0x41, 0x6c, 0x63, 0x61, 0x6e, 0xbf, 0xd3, 0x3e, 0xea, 0xd4, 0xe7, 0x1f, 0xd7, 0xa0, 0xc2, + 0xed, 0x7b, 0x3c, 0xb1, 0x68, 0xa8, 0xfd, 0x47, 0x0d, 0x20, 0x58, 0x4d, 0xa8, 0x05, 0x85, 0x3e, + 0xc7, 0x69, 0x68, 0xcc, 0x19, 0xad, 0x24, 0x0e, 0x99, 0x2e, 0xb9, 0xd0, 0xb7, 0xa0, 0xe0, 0x4e, + 0xfa, 0x7d, 0xe2, 0xca, 0x90, 0x77, 0x23, 0xea, 0x0f, 0x85, 0xb7, 0xd2, 0x25, 0x1f, 0x6d, 0xf2, + 0xd2, 0x30, 0x87, 0x13, 0x16, 0x00, 0xaf, 0x6e, 0x22, 0xf8, 0xf0, 0xdf, 0x6b, 0x50, 0x56, 0x26, + 0xef, 0xef, 0xe8, 0x84, 0x6f, 0x43, 0x89, 0xe9, 0x40, 0x06, 0xc2, 0x0d, 0x17, 0xf5, 0x80, 0x80, + 0x7e, 0x0f, 0x4a, 0x72, 0x05, 0x48, 0x4f, 0xdc, 0x48, 0x16, 0xdb, 0x1d, 0xeb, 0x01, 0x2b, 0xde, + 0x83, 0x45, 0x66, 0x95, 0x3e, 0xdd, 0x5c, 0x4b, 0x3b, 0xaa, 0xdb, 0x4f, 0x2d, 0xb2, 0xfd, 0x6c, + 0x42, 0x71, 0x7c, 0x76, 0xe9, 0x9a, 0x7d, 0x63, 0x28, 0xb4, 0xf0, 0xcb, 0xf8, 0x63, 0x40, 0xaa, + 0xb0, 0x59, 0xba, 0x8b, 0xab, 0x50, 0x7e, 0x6a, 0xb8, 0x67, 0x42, 0x25, 0xfc, 0x10, 0xaa, 0xb4, + 0xb8, 0xf7, 0xe2, 0x35, 0x74, 0x64, 0x87, 0x03, 0xc9, 0x3d, 0x93, 0xcd, 0x11, 0xcc, 0x9f, 0x19, + 0xee, 0x19, 0xeb, 0x68, 0x55, 0x67, 0xdf, 0xe8, 0x3d, 0xa8, 0xf7, 0x79, 0x27, 0x8f, 0x23, 0x47, + 0x86, 0x05, 0x41, 0xf7, 0x77, 0x82, 0x9f, 0x41, 0x85, 0xf7, 0xe1, 0xeb, 0x56, 0x02, 0x2f, 0xc2, + 0xc2, 0x91, 0x65, 0x8c, 0xdd, 0x33, 0x5b, 0x46, 0x37, 0xda, 0xe9, 0x7a, 0x40, 0x9b, 0x09, 0xf1, + 0x5d, 0x58, 0x70, 0xc8, 0xc8, 0x30, 0x2d, 0xd3, 0x3a, 0x3d, 0x3e, 0xb9, 0xf4, 0x88, 0x2b, 0x0e, + 0x4c, 0x35, 0x9f, 0xfc, 0x98, 0x52, 0xa9, 0x6a, 0x27, 0x43, 0xfb, 0x44, 0xb8, 0x39, 0xf6, 0x8d, + 0x7f, 0x96, 0x81, 0xca, 0xa7, 0x86, 0xd7, 0x97, 0x43, 0x87, 0x76, 0xa1, 0xe6, 0x3b, 0x37, 0x46, + 0x11, 0xba, 0x44, 0x42, 0x2c, 0x6b, 0x23, 0xb7, 0xd2, 0x32, 0x3a, 0x56, 0xfb, 0x2a, 0x81, 0x89, + 0x32, 0xac, 0x3e, 0x19, 0xfa, 0xa2, 0x32, 0xe9, 0xa2, 0x18, 0xa3, 0x2a, 0x4a, 0x25, 0xa0, 0x2e, + 0xd4, 0xc7, 0x8e, 0x7d, 0xea, 0x10, 0xd7, 0xf5, 0x85, 0xf1, 0x30, 0x86, 0x13, 0x84, 0x1d, 0x0a, + 0xd6, 0x40, 0xdc, 0xc2, 0x38, 0x4c, 0x7a, 0xbc, 0x10, 0xec, 0x67, 0xb8, 0x73, 0xfa, 0x8f, 0x0c, + 0xa0, 0x78, 0xa7, 0x7e, 0xdb, 0x2d, 0xde, 0x7d, 0xa8, 0xb9, 0x9e, 0xe1, 0xc4, 0x26, 0x5b, 0x95, + 0x51, 0x7d, 0x8f, 0xff, 0x2e, 0xf8, 0x0a, 0x1d, 0x5b, 0xb6, 0x67, 0xbe, 0xbc, 0x14, 0xbb, 0xe4, + 0x9a, 0x24, 0x1f, 0x30, 0x2a, 0xea, 0x40, 0xe1, 0xa5, 0x39, 0xf4, 0x88, 0xe3, 0x36, 0x72, 0xeb, + 0xd9, 0x8d, 0xda, 0xd6, 0xc3, 0xeb, 0x86, 0x61, 0xf3, 0x23, 0xc6, 0xdf, 0xbb, 0x1c, 0x13, 0x5d, + 0xb6, 0x55, 0x77, 0x9e, 0xf9, 0xd0, 0x6e, 0xfc, 0x26, 0x14, 0x5f, 0x51, 0x11, 0xf4, 0x94, 0x5d, + 0xe0, 0x9b, 0x45, 0x56, 0xe6, 0x87, 0xec, 0x97, 0x8e, 0x71, 0x3a, 0x22, 0x96, 0x27, 0xcf, 0x81, + 0xb2, 0x8c, 0xef, 0x03, 0x04, 0x30, 0xd4, 0xe5, 0x1f, 0x74, 0x0f, 0x9f, 0xf7, 0xea, 0x73, 0xa8, + 0x02, 0xc5, 0x83, 0xee, 0x4e, 0x67, 0xbf, 0x43, 0xe3, 0x03, 0x6e, 0x49, 0x93, 0x86, 0xc6, 0x52, + 0xc5, 0xd4, 0x42, 0x98, 0x78, 0x15, 0x96, 0x93, 0x06, 0x90, 0xee, 0x45, 0xab, 0x62, 0x96, 0xce, + 0xb4, 0x54, 0x54, 0xe8, 0x4c, 0xb8, 0xbb, 0x0d, 0x28, 0xf0, 0xd9, 0x3b, 0x10, 0x9b, 0x73, 0x59, + 0xa4, 0x86, 0xe0, 0x93, 0x91, 0x0c, 0xc4, 0x28, 0xf9, 0xe5, 0x44, 0xf7, 0x92, 0x4b, 0x74, 0x2f, + 0xe8, 0x1e, 0x54, 0xfd, 0xd5, 0x60, 0xb8, 0x62, 0x2f, 0x50, 0xd2, 0x2b, 0x72, 0xa2, 0x53, 0x5a, + 0xc8, 0xe8, 0x85, 0xb0, 0xd1, 0xd1, 0x7d, 0xc8, 0x93, 0x29, 0xb1, 0x3c, 0xb7, 0x51, 0x66, 0x11, + 0xa3, 0x2a, 0xf7, 0xee, 0x1d, 0x4a, 0xd5, 0x45, 0x25, 0xfe, 0x2e, 0x2c, 0xb2, 0x33, 0xd2, 0x13, + 0xc7, 0xb0, 0xd4, 0xc3, 0x5c, 0xaf, 0xb7, 0x2f, 0xcc, 0x4d, 0x3f, 0x51, 0x0d, 0x32, 0xbb, 0x3b, + 0xc2, 0x08, 0x99, 0xdd, 0x1d, 0xfc, 0x13, 0x0d, 0x90, 0xda, 0x6e, 0x26, 0x3b, 0x47, 0x84, 0x4b, + 0xf8, 0x6c, 0x00, 0xbf, 0x0c, 0x39, 0xe2, 0x38, 0xb6, 0xc3, 0x2c, 0x5a, 0xd2, 0x79, 0x01, 0xbf, + 0x2d, 0x74, 0xd0, 0xc9, 0xd4, 0x3e, 0xf7, 0xd7, 0x20, 0x97, 0xa6, 0xf9, 0xaa, 0xee, 0xc1, 0x52, + 0x88, 0x6b, 0xa6, 0xc8, 0xf5, 0x11, 0x2c, 0x30, 0x61, 0xdb, 0x67, 0xa4, 0x7f, 0x3e, 0xb6, 0x4d, + 0x2b, 0x86, 0x47, 0x47, 0x2e, 0x70, 0xb0, 0xb4, 0x1f, 0xbc, 0x63, 0x15, 0x9f, 0xd8, 0xeb, 0xed, + 0xe3, 0xcf, 0x61, 0x35, 0x22, 0x47, 0xaa, 0xff, 0x47, 0x50, 0xee, 0xfb, 0x44, 0x57, 0xec, 0x75, + 0xee, 0x84, 0x95, 0x8b, 0x36, 0x55, 0x5b, 0xe0, 0x2e, 0xdc, 0x88, 0x89, 0x9e, 0xa9, 0xcf, 0xef, + 0xc2, 0x0a, 0x13, 0xb8, 0x47, 0xc8, 0xb8, 0x3d, 0x34, 0xa7, 0xa9, 0x96, 0x1e, 0x8b, 0x4e, 0x29, + 0x8c, 0x6f, 0x76, 0x5e, 0xe0, 0x3f, 0x10, 0x88, 0x3d, 0x73, 0x44, 0x7a, 0xf6, 0x7e, 0xba, 0x6e, + 0x34, 0x9a, 0x9d, 0x93, 0x4b, 0x57, 0x6c, 0x6b, 0xd8, 0x37, 0xfe, 0x27, 0x4d, 0x98, 0x4a, 0x6d, + 0xfe, 0x86, 0x67, 0xf2, 0x1a, 0xc0, 0x29, 0x5d, 0x32, 0x64, 0x40, 0x2b, 0x78, 0x46, 0x45, 0xa1, + 0xf8, 0x7a, 0x52, 0xff, 0x5d, 0x11, 0x7a, 0x2e, 0x8b, 0x79, 0xce, 0xfe, 0xf8, 0x5e, 0xee, 0x0e, + 0x94, 0x19, 0xe1, 0xc8, 0x33, 0xbc, 0x89, 0x1b, 0x1b, 0x8c, 0xbf, 0x10, 0xd3, 0x5e, 0x36, 0x9a, + 0xa9, 0x5f, 0xdf, 0x82, 0x3c, 0x3b, 0x4c, 0xc8, 0xad, 0xf4, 0xcd, 0x84, 0xf9, 0xc8, 0xf5, 0xd0, + 0x05, 0x23, 0xfe, 0x99, 0x06, 0xf9, 0x67, 0x2c, 0x05, 0xab, 0xa8, 0x36, 0x2f, 0xc7, 0xc2, 0x32, + 0x46, 0x3c, 0x31, 0x54, 0xd2, 0xd9, 0x37, 0xdb, 0x7a, 0x12, 0xe2, 0x3c, 0xd7, 0xf7, 0xf9, 0x16, + 0xb7, 0xa4, 0xfb, 0x65, 0x6a, 0xb3, 0xfe, 0xd0, 0x24, 0x96, 0xc7, 0x6a, 0xe7, 0x59, 0xad, 0x42, + 0xa1, 0xbb, 0x67, 0xd3, 0xdd, 0x27, 0x86, 0x63, 0x89, 0xa4, 0x69, 0x51, 0x0f, 0x08, 0x78, 0x1f, + 0xea, 0x5c, 0x8f, 0xf6, 0x60, 0xa0, 0x6c, 0x30, 0x7d, 0x34, 0x2d, 0x82, 0x16, 0x92, 0x96, 0x89, + 0x4a, 0xfb, 0xa5, 0x06, 0x8b, 0x8a, 0xb8, 0x99, 0xac, 0xfa, 0x3e, 0xe4, 0x79, 0x92, 0x5a, 0xec, + 0x74, 0x96, 0xc3, 0xad, 0x38, 0x8c, 0x2e, 0x78, 0xd0, 0x26, 0x14, 0xf8, 0x97, 0x3c, 0x03, 0x24, + 0xb3, 0x4b, 0x26, 0x7c, 0x1f, 0x96, 0x04, 0x89, 0x8c, 0xec, 0xa4, 0x85, 0xc1, 0x06, 0x03, 0xff, + 0x19, 0x2c, 0x87, 0xd9, 0x66, 0xea, 0x92, 0xa2, 0x64, 0xe6, 0x75, 0x94, 0x6c, 0x4b, 0x25, 0x9f, + 0x8f, 0x07, 0xca, 0x3e, 0x2a, 0x3a, 0x63, 0xd4, 0xf1, 0xca, 0x84, 0xc7, 0x2b, 0xe8, 0x80, 0x14, + 0xf1, 0x8d, 0x76, 0x60, 0x49, 0x4e, 0x87, 0x7d, 0xd3, 0xf5, 0xb7, 0xeb, 0x5f, 0x02, 0x52, 0x89, + 0xdf, 0xa8, 0x42, 0xef, 0x48, 0x73, 0x1c, 0x3a, 0xf6, 0xc8, 0x4e, 0x35, 0x29, 0xfe, 0x73, 0x58, + 0x89, 0xf0, 0x7d, 0xd3, 0x76, 0xdb, 0x21, 0x72, 0xb3, 0x22, 0xed, 0xf6, 0x31, 0x20, 0x95, 0x38, + 0x53, 0xd4, 0x6a, 0xc1, 0xe2, 0x33, 0x7b, 0x4a, 0xdd, 0x1f, 0xa5, 0x06, 0xeb, 0x9e, 0xe7, 0x18, + 0x7c, 0x53, 0xf8, 0x65, 0x0a, 0xae, 0x36, 0x98, 0x09, 0xfc, 0xdf, 0x34, 0xa8, 0xb4, 0x87, 0x86, + 0x33, 0x92, 0xc0, 0xdf, 0x87, 0x3c, 0x3f, 0x39, 0x8b, 0x64, 0xd5, 0x3b, 0x61, 0x31, 0x2a, 0x2f, + 0x2f, 0xb4, 0xf9, 0x39, 0x5b, 0xb4, 0xa2, 0x8a, 0x8b, 0xfb, 0xac, 0x9d, 0xc8, 0xfd, 0xd6, 0x0e, + 0xfa, 0x00, 0x72, 0x06, 0x6d, 0xc2, 0xc2, 0x4c, 0x2d, 0x9a, 0xb3, 0x60, 0xd2, 0xd8, 0xfe, 0x9e, + 0x73, 0xe1, 0xef, 0x40, 0x59, 0x41, 0x40, 0x05, 0xc8, 0x3e, 0xe9, 0x88, 0xcd, 0x78, 0x7b, 0xbb, + 0xb7, 0xfb, 0x82, 0x27, 0x6b, 0x6a, 0x00, 0x3b, 0x1d, 0xbf, 0x9c, 0xc1, 0x9f, 0x89, 0x56, 0xc2, + 0xa5, 0xab, 0xfa, 0x68, 0x69, 0xfa, 0x64, 0x5e, 0x4b, 0x9f, 0x0b, 0xa8, 0x8a, 0xee, 0xcf, 0x1a, + 0xa2, 0x98, 0xbc, 0x94, 0x10, 0xa5, 0x28, 0xaf, 0x0b, 0x46, 0xfc, 0x6b, 0x0d, 0xea, 0x3b, 0xf6, + 0x2b, 0xeb, 0xd4, 0x31, 0x06, 0xfe, 0x3a, 0xf9, 0x28, 0x32, 0x52, 0x9b, 0x91, 0xc4, 0x67, 0x84, + 0x3f, 0x20, 0x44, 0x46, 0xac, 0x11, 0xa4, 0x04, 0x79, 0x9c, 0x93, 0x45, 0xfc, 0x3d, 0x58, 0x88, + 0x34, 0xa2, 0xb6, 0x7f, 0xd1, 0xde, 0xdf, 0xdd, 0xa1, 0xb6, 0x66, 0x49, 0xb3, 0xce, 0x41, 0xfb, + 0xf1, 0x7e, 0x47, 0x5c, 0x0e, 0xb5, 0x0f, 0xb6, 0x3b, 0xfb, 0xf5, 0x0c, 0xee, 0xc3, 0xa2, 0x02, + 0x3f, 0x6b, 0xd6, 0x3f, 0x45, 0xbb, 0x05, 0xa8, 0x8a, 0x48, 0x2e, 0x16, 0xe5, 0xbf, 0x66, 0xa0, + 0x26, 0x29, 0x6f, 0x06, 0x13, 0xad, 0x42, 0x7e, 0x70, 0x72, 0x64, 0x7e, 0x29, 0x6f, 0x85, 0x44, + 0x89, 0xd2, 0x87, 0x1c, 0x87, 0x5f, 0xcd, 0x8a, 0x12, 0x0d, 0xd1, 0x8e, 0xf1, 0xd2, 0xdb, 0xb5, + 0x06, 0xe4, 0x82, 0x05, 0xfc, 0x79, 0x3d, 0x20, 0xb0, 0xec, 0x91, 0xb8, 0xc2, 0x65, 0xa7, 0x26, + 0xe5, 0x4a, 0x17, 0x3d, 0x80, 0x3a, 0xfd, 0x6e, 0x8f, 0xc7, 0x43, 0x93, 0x0c, 0xb8, 0x80, 0x02, + 0xe3, 0x89, 0xd1, 0x29, 0x3a, 0x3b, 0x67, 0xb8, 0x8d, 0x22, 0x0b, 0x39, 0xa2, 0x84, 0xd6, 0xa1, + 0xcc, 0xf5, 0xdb, 0xb5, 0x9e, 0xbb, 0x84, 0xdd, 0x6b, 0x66, 0x75, 0x95, 0x14, 0xde, 0x42, 0x40, + 0x74, 0x0b, 0xb1, 0x04, 0x8b, 0xed, 0x89, 0x77, 0xd6, 0xb1, 0x8c, 0x93, 0xa1, 0x9c, 0x46, 0x74, + 0x8f, 0x47, 0x89, 0x3b, 0xa6, 0xab, 0x52, 0x05, 0x6b, 0x78, 0x40, 0x3a, 0xb0, 0x44, 0x89, 0xc4, + 0xf2, 0xcc, 0xbe, 0x12, 0x33, 0xe5, 0xae, 0x4a, 0x8b, 0xec, 0xaa, 0x0c, 0xd7, 0x7d, 0x65, 0x3b, + 0x03, 0x61, 0x73, 0xbf, 0x8c, 0xa7, 0x1c, 0xf1, 0xb9, 0x1b, 0xda, 0x19, 0xfd, 0x96, 0x52, 0xd0, + 0x87, 0x50, 0xb0, 0xc7, 0xec, 0xf2, 0x5e, 0x64, 0x58, 0x56, 0x37, 0xf9, 0x75, 0xff, 0xa6, 0x10, + 0xdc, 0xe5, 0xb5, 0xba, 0x64, 0xc3, 0x1b, 0x01, 0xee, 0x13, 0xe2, 0x5d, 0x81, 0x8b, 0x1f, 0xc2, + 0x8a, 0xe4, 0x14, 0x17, 0x0a, 0x57, 0x30, 0x77, 0xe1, 0x8e, 0x64, 0xde, 0x3e, 0x33, 0xac, 0x53, + 0x72, 0x28, 0x54, 0xfc, 0x5d, 0xed, 0xf3, 0x18, 0x1a, 0xbe, 0x9e, 0xec, 0x90, 0x6b, 0x0f, 0x55, + 0x05, 0x26, 0xae, 0x98, 0xfe, 0x25, 0x9d, 0x7d, 0x53, 0x9a, 0x63, 0x0f, 0xfd, 0x5d, 0x2d, 0xfd, + 0xc6, 0xdb, 0x70, 0x53, 0xca, 0x10, 0xc7, 0xcf, 0xb0, 0x90, 0x98, 0x42, 0x49, 0x42, 0x84, 0xc1, + 0x68, 0xd3, 0xab, 0x07, 0x4a, 0xe5, 0x0c, 0x9b, 0x96, 0xc9, 0xd4, 0x14, 0x99, 0x2b, 0x7c, 0x0e, + 0x51, 0xc5, 0xd4, 0x8d, 0x8b, 0x20, 0x53, 0x01, 0x2a, 0x59, 0x0c, 0x04, 0x25, 0xc7, 0x06, 0x22, + 0x26, 0xfa, 0x87, 0xb0, 0xe6, 0x2b, 0x41, 0xed, 0x76, 0x48, 0x9c, 0x91, 0xe9, 0xba, 0x4a, 0x0a, + 0x3a, 0xa9, 0xe3, 0xef, 0xc0, 0xfc, 0x98, 0x88, 0x98, 0x51, 0xde, 0x42, 0x72, 0x12, 0x29, 0x8d, + 0x59, 0x3d, 0x1e, 0xc0, 0x5d, 0x29, 0x9d, 0x5b, 0x34, 0x51, 0x7c, 0x54, 0x29, 0x99, 0x98, 0xcb, + 0xa4, 0x24, 0xe6, 0xb2, 0x91, 0x6b, 0x91, 0x8f, 0xb9, 0x21, 0xe5, 0x12, 0x9d, 0x69, 0x2f, 0xb0, + 0xc7, 0x6d, 0xea, 0xaf, 0xec, 0x99, 0x84, 0xfd, 0xb5, 0xc6, 0x35, 0xfb, 0xba, 0x1c, 0x32, 0x61, + 0x3d, 0x94, 0x77, 0x0e, 0xb2, 0x88, 0x30, 0x54, 0xe8, 0x00, 0xe8, 0x6a, 0x5a, 0x72, 0x5e, 0x0f, + 0xd1, 0xf0, 0x09, 0x2c, 0x87, 0xdd, 0xd0, 0x4c, 0xba, 0x2c, 0x43, 0xce, 0xb3, 0xcf, 0x89, 0x0c, + 0x0d, 0xbc, 0x20, 0x6d, 0xe7, 0xfb, 0xa8, 0x99, 0x6c, 0x67, 0x04, 0xc2, 0xd8, 0xea, 0x98, 0x55, + 0x5f, 0x3a, 0xb1, 0xe4, 0x71, 0x84, 0x17, 0xf0, 0x01, 0xac, 0x46, 0x3d, 0xd6, 0x4c, 0x2a, 0xbf, + 0xe0, 0x6b, 0x29, 0xc9, 0xa9, 0xcd, 0x24, 0xf7, 0x93, 0xc0, 0x2f, 0x29, 0xbe, 0x6d, 0x26, 0x91, + 0x3a, 0x34, 0x93, 0x5c, 0xdd, 0xd7, 0xb1, 0x74, 0x7c, 0xcf, 0x37, 0x93, 0x30, 0x37, 0x10, 0x36, + 0xfb, 0xf0, 0x07, 0xee, 0x2a, 0x7b, 0xa5, 0xbb, 0x12, 0x8b, 0x24, 0x70, 0xa8, 0x6f, 0x60, 0xd2, + 0x09, 0x8c, 0xc0, 0x97, 0xcf, 0x8a, 0x41, 0xc3, 0x99, 0x8f, 0xc1, 0x0a, 0x72, 0x62, 0xab, 0x11, + 0x60, 0xa6, 0xc1, 0xf8, 0x34, 0x70, 0xe3, 0xb1, 0x20, 0x31, 0x93, 0xe0, 0xcf, 0x60, 0x3d, 0x3d, + 0x3e, 0xcc, 0x22, 0xf9, 0x41, 0x0b, 0x4a, 0xfe, 0xd9, 0x45, 0x79, 0xfa, 0x55, 0x86, 0xc2, 0x41, + 0xf7, 0xe8, 0xb0, 0xbd, 0xdd, 0xe1, 0x6f, 0xbf, 0xb6, 0xbb, 0xba, 0xfe, 0xfc, 0xb0, 0x57, 0xcf, + 0x6c, 0xfd, 0x26, 0x0b, 0x99, 0xbd, 0x17, 0xe8, 0x73, 0xc8, 0xf1, 0x87, 0x10, 0x57, 0xbc, 0x7e, + 0x69, 0x5e, 0xf5, 0xd6, 0x03, 0xdf, 0xf8, 0xc9, 0x7f, 0xfe, 0xe6, 0x17, 0x99, 0x45, 0x5c, 0x69, + 0x4d, 0xbf, 0xdd, 0x3a, 0x9f, 0xb6, 0x58, 0x98, 0x7a, 0xa4, 0x3d, 0x40, 0x9f, 0x40, 0xf6, 0x70, + 0xe2, 0xa1, 0xd4, 0x57, 0x31, 0xcd, 0xf4, 0xe7, 0x1f, 0x78, 0x85, 0x09, 0x5d, 0xc0, 0x20, 0x84, + 0x8e, 0x27, 0x1e, 0x15, 0xf9, 0x23, 0x28, 0xab, 0x8f, 0x37, 0xae, 0x7d, 0x2a, 0xd3, 0xbc, 0xfe, + 0x61, 0x08, 0xbe, 0xc3, 0xa0, 0x6e, 0x60, 0x24, 0xa0, 0xf8, 0xf3, 0x12, 0xb5, 0x17, 0xbd, 0x0b, + 0x0b, 0xa5, 0x3e, 0xa4, 0x69, 0xa6, 0xbf, 0x15, 0x89, 0xf5, 0xc2, 0xbb, 0xb0, 0xa8, 0xc8, 0x3f, + 0x11, 0xcf, 0x44, 0xfa, 0x1e, 0xba, 0x9b, 0xf0, 0x4c, 0x40, 0xbd, 0x10, 0x6f, 0xae, 0xa7, 0x33, + 0x08, 0x90, 0xdb, 0x0c, 0x64, 0x15, 0x2f, 0x0a, 0x90, 0xbe, 0xcf, 0xf2, 0x48, 0x7b, 0xb0, 0xd5, + 0x87, 0x1c, 0xbb, 0x6c, 0x42, 0x5f, 0xc8, 0x8f, 0x66, 0xc2, 0xad, 0x5b, 0xca, 0x40, 0x87, 0xae, + 0xa9, 0xf0, 0x32, 0x03, 0xaa, 0xe1, 0x12, 0x05, 0x62, 0x57, 0x4d, 0x8f, 0xb4, 0x07, 0x1b, 0xda, + 0x87, 0xda, 0xd6, 0xaf, 0x73, 0x90, 0x63, 0x59, 0x56, 0x74, 0x0e, 0x10, 0x5c, 0xbc, 0x44, 0x7b, + 0x17, 0xbb, 0xca, 0x89, 0xf6, 0x2e, 0x7e, 0x67, 0x83, 0x9b, 0x0c, 0x74, 0x19, 0x2f, 0x50, 0x50, + 0x96, 0xbc, 0x6d, 0xb1, 0x7c, 0x34, 0xb5, 0xe3, 0xdf, 0x68, 0x22, 0xc9, 0xcc, 0xd7, 0x12, 0x4a, + 0x92, 0x16, 0xba, 0x7d, 0x89, 0x4e, 0x87, 0x84, 0x9b, 0x17, 0xfc, 0x5d, 0x06, 0xd8, 0xc2, 0xf5, + 0x00, 0xd0, 0x61, 0x1c, 0x8f, 0xb4, 0x07, 0x5f, 0x34, 0xf0, 0x92, 0xb0, 0x72, 0xa4, 0x06, 0xfd, + 0x18, 0x6a, 0xe1, 0xdb, 0x05, 0x74, 0x2f, 0x01, 0x2b, 0x7a, 0x49, 0xd1, 0x7c, 0xfb, 0x6a, 0x26, + 0xa1, 0xd3, 0x1a, 0xd3, 0x49, 0x80, 0x73, 0xe4, 0x73, 0x42, 0xc6, 0x06, 0x65, 0x12, 0x63, 0x80, + 0xfe, 0x41, 0x13, 0x97, 0x3f, 0xc1, 0x75, 0x01, 0x4a, 0x92, 0x1e, 0xbb, 0x8c, 0x68, 0xde, 0xbf, + 0x86, 0x4b, 0x28, 0xf1, 0x87, 0x4c, 0x89, 0xef, 0xe1, 0xe5, 0x40, 0x09, 0xcf, 0x1c, 0x11, 0xcf, + 0x16, 0x5a, 0x7c, 0x71, 0x1b, 0xdf, 0x08, 0x19, 0x27, 0x54, 0x1b, 0x0c, 0x16, 0x4f, 0xf9, 0x27, + 0x0e, 0x56, 0xe8, 0x0a, 0x21, 0x71, 0xb0, 0xc2, 0xf7, 0x05, 0x49, 0x83, 0xc5, 0x13, 0xfc, 0x49, + 0x83, 0xe5, 0xd7, 0x6c, 0xfd, 0xef, 0x3c, 0x14, 0xb6, 0xf9, 0xf3, 0x6c, 0x64, 0x43, 0xc9, 0xcf, + 0x98, 0xa3, 0xb5, 0xa4, 0xb4, 0x60, 0x70, 0xac, 0x69, 0xde, 0x4d, 0xad, 0x17, 0x0a, 0xbd, 0xc5, + 0x14, 0xba, 0x85, 0x57, 0x29, 0xb2, 0x78, 0x01, 0xde, 0xe2, 0xb9, 0xa7, 0x96, 0x31, 0x18, 0x50, + 0x43, 0xfc, 0x29, 0x54, 0xd4, 0x94, 0x36, 0x7a, 0x2b, 0x31, 0x15, 0xa9, 0x66, 0xc5, 0x9b, 0xf8, + 0x2a, 0x16, 0x81, 0xfc, 0x36, 0x43, 0x5e, 0xc3, 0x37, 0x13, 0x90, 0x1d, 0xc6, 0x1a, 0x02, 0xe7, + 0xe9, 0xe8, 0x64, 0xf0, 0x50, 0xb6, 0x3b, 0x19, 0x3c, 0x9c, 0xcd, 0xbe, 0x12, 0x7c, 0xc2, 0x58, + 0x29, 0xb8, 0x0b, 0x10, 0x24, 0x9e, 0x51, 0xa2, 0x2d, 0x95, 0x73, 0x5d, 0xd4, 0x39, 0xc4, 0x73, + 0xd6, 0x18, 0x33, 0x58, 0x31, 0xef, 0x22, 0xb0, 0x43, 0xd3, 0xf5, 0xf8, 0xc2, 0xac, 0x86, 0x32, + 0xc9, 0x28, 0xb1, 0x3f, 0xe1, 0x74, 0x74, 0xf3, 0xde, 0x95, 0x3c, 0x02, 0xfd, 0x3e, 0x43, 0xbf, + 0x8b, 0x9b, 0x09, 0xe8, 0x63, 0xce, 0x4b, 0x27, 0xdb, 0xff, 0xe5, 0xa1, 0xfc, 0xcc, 0x30, 0x2d, + 0x8f, 0x58, 0x86, 0xd5, 0x27, 0xe8, 0x04, 0x72, 0x2c, 0x52, 0x47, 0x1d, 0xb1, 0x9a, 0x65, 0x8d, + 0x3a, 0xe2, 0x50, 0x0a, 0x12, 0xaf, 0x33, 0xe0, 0x26, 0x5e, 0xa1, 0xc0, 0xa3, 0x40, 0x74, 0x8b, + 0x65, 0x0e, 0x69, 0xa7, 0x5f, 0x42, 0x5e, 0x5c, 0xbc, 0x45, 0x04, 0x85, 0x72, 0x35, 0xcd, 0xdb, + 0xc9, 0x95, 0x49, 0x73, 0x59, 0x85, 0x71, 0x19, 0x1f, 0xc5, 0x99, 0x02, 0x04, 0x29, 0xf1, 0xe8, + 0x88, 0xc6, 0x32, 0xe8, 0xcd, 0xf5, 0x74, 0x86, 0x24, 0x9b, 0xaa, 0x98, 0x03, 0x9f, 0x97, 0xe2, + 0xfe, 0x31, 0xcc, 0x3f, 0x35, 0xdc, 0x33, 0x14, 0x89, 0xbd, 0xca, 0xb3, 0xad, 0x66, 0x33, 0xa9, + 0x4a, 0xa0, 0xdc, 0x65, 0x28, 0x37, 0xb9, 0x2b, 0x53, 0x51, 0xce, 0x0c, 0x97, 0x06, 0x35, 0x34, + 0x80, 0x3c, 0x7f, 0xc5, 0x15, 0xb5, 0x5f, 0xe8, 0x25, 0x58, 0xd4, 0x7e, 0xe1, 0x87, 0x5f, 0xd7, + 0xa3, 0x8c, 0xa1, 0x28, 0x9f, 0x4d, 0xa1, 0xc8, 0x1d, 0x7a, 0xe4, 0x89, 0x55, 0x73, 0x2d, 0xad, + 0x5a, 0x60, 0xdd, 0x63, 0x58, 0x77, 0x70, 0x23, 0x36, 0x56, 0x82, 0xf3, 0x91, 0xf6, 0xe0, 0x43, + 0x0d, 0xfd, 0x18, 0x20, 0xb8, 0x45, 0x88, 0xad, 0xc0, 0xe8, 0x85, 0x44, 0x6c, 0x05, 0xc6, 0x2e, + 0x20, 0xf0, 0x26, 0xc3, 0xdd, 0xc0, 0xf7, 0xa2, 0xb8, 0x9e, 0x63, 0x58, 0xee, 0x4b, 0xe2, 0x7c, + 0xc0, 0x93, 0xa2, 0xee, 0x99, 0x39, 0xa6, 0x5d, 0x76, 0xa0, 0xe4, 0x27, 0x89, 0xa3, 0xde, 0x36, + 0x9a, 0xbc, 0x8e, 0x7a, 0xdb, 0x58, 0x76, 0x39, 0xec, 0x76, 0x42, 0xb3, 0x45, 0xb2, 0xd2, 0x05, + 0xf8, 0xcb, 0x3a, 0xcc, 0xd3, 0x5d, 0x37, 0xdd, 0x9c, 0x04, 0x79, 0x93, 0x68, 0xef, 0x63, 0x49, + 0xcf, 0x68, 0xef, 0xe3, 0x29, 0x97, 0xf0, 0xe6, 0x84, 0xfd, 0x98, 0x88, 0xa7, 0x28, 0x68, 0x4f, + 0x6d, 0x28, 0x2b, 0x89, 0x15, 0x94, 0x20, 0x2c, 0x9c, 0x4d, 0x8d, 0x86, 0xbb, 0x84, 0xac, 0x0c, + 0xbe, 0xc5, 0xf0, 0x56, 0x78, 0xb8, 0x63, 0x78, 0x03, 0xce, 0x41, 0x01, 0x45, 0xef, 0xc4, 0xba, + 0x4f, 0xe8, 0x5d, 0x78, 0xed, 0xaf, 0xa7, 0x33, 0xa4, 0xf6, 0x2e, 0x58, 0xf8, 0xaf, 0xa0, 0xa2, + 0xa6, 0x57, 0x50, 0x82, 0xf2, 0x91, 0x0c, 0x70, 0x34, 0x8e, 0x24, 0x65, 0x67, 0xc2, 0x9e, 0xcd, + 0xff, 0x75, 0x96, 0x64, 0xa3, 0xc0, 0x43, 0x28, 0x88, 0x7c, 0x4b, 0x92, 0x49, 0xc3, 0xe9, 0xe2, + 0x24, 0x93, 0x46, 0x92, 0x35, 0xe1, 0xdd, 0x33, 0x43, 0xa4, 0x47, 0x4a, 0x19, 0xab, 0x05, 0xda, + 0x13, 0xe2, 0xa5, 0xa1, 0x05, 0x99, 0xcc, 0x34, 0x34, 0xe5, 0x38, 0x9f, 0x86, 0x76, 0x4a, 0x3c, + 0xe1, 0x0f, 0xe4, 0x31, 0x19, 0xa5, 0x08, 0x53, 0xe3, 0x23, 0xbe, 0x8a, 0x25, 0xe9, 0x70, 0x13, + 0x00, 0xca, 0xe0, 0x78, 0x01, 0x10, 0x64, 0x83, 0xa2, 0x3b, 0xd6, 0xc4, 0xec, 0x76, 0x74, 0xc7, + 0x9a, 0x9c, 0x50, 0x0a, 0xfb, 0xbe, 0x00, 0x97, 0x9f, 0xad, 0x28, 0xf2, 0xcf, 0x35, 0x40, 0xf1, + 0xc4, 0x11, 0x7a, 0x98, 0x2c, 0x3d, 0x31, 0x67, 0xde, 0x7c, 0xff, 0xf5, 0x98, 0x93, 0xc2, 0x59, + 0xa0, 0x52, 0x9f, 0x71, 0x8f, 0x5f, 0x51, 0xa5, 0xfe, 0x52, 0x83, 0x6a, 0x28, 0xeb, 0x84, 0xde, + 0x49, 0x19, 0xd3, 0x48, 0xca, 0xbd, 0xf9, 0xee, 0xb5, 0x7c, 0x49, 0x5b, 0x79, 0x65, 0x06, 0xc8, + 0x33, 0xcd, 0x4f, 0x35, 0xa8, 0x85, 0xb3, 0x54, 0x28, 0x45, 0x76, 0x2c, 0x65, 0xdf, 0xdc, 0xb8, + 0x9e, 0xf1, 0xea, 0xe1, 0x09, 0x8e, 0x33, 0x43, 0x28, 0x88, 0xbc, 0x56, 0xd2, 0xc4, 0x0f, 0x27, + 0xfb, 0x93, 0x26, 0x7e, 0x24, 0x29, 0x96, 0x30, 0xf1, 0x1d, 0x7b, 0x48, 0x94, 0x65, 0x26, 0x12, + 0x5f, 0x69, 0x68, 0x57, 0x2f, 0xb3, 0x48, 0xd6, 0x2c, 0x0d, 0x2d, 0x58, 0x66, 0x32, 0xe3, 0x85, + 0x52, 0x84, 0x5d, 0xb3, 0xcc, 0xa2, 0x09, 0xb3, 0x84, 0x65, 0xc6, 0x00, 0x95, 0x65, 0x16, 0xe4, + 0xa6, 0x92, 0x96, 0x59, 0xec, 0xee, 0x22, 0x69, 0x99, 0xc5, 0xd3, 0x5b, 0x09, 0xe3, 0xc8, 0x70, + 0x43, 0xcb, 0x6c, 0x29, 0x21, 0x8d, 0x85, 0xde, 0x4f, 0x31, 0x62, 0xe2, 0x95, 0x48, 0xf3, 0x83, + 0xd7, 0xe4, 0x4e, 0x9d, 0xe3, 0xdc, 0xfc, 0x72, 0x8e, 0xff, 0xad, 0x06, 0xcb, 0x49, 0x29, 0x30, + 0x94, 0x82, 0x93, 0x72, 0x95, 0xd2, 0xdc, 0x7c, 0x5d, 0xf6, 0xab, 0xad, 0xe5, 0xcf, 0xfa, 0xc7, + 0xf5, 0x7f, 0xf9, 0x6a, 0x4d, 0xfb, 0xf7, 0xaf, 0xd6, 0xb4, 0xff, 0xfa, 0x6a, 0x4d, 0xfb, 0xbb, + 0xff, 0x5e, 0x9b, 0x3b, 0xc9, 0xb3, 0xdf, 0xfc, 0x7e, 0xfb, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, + 0x23, 0xc9, 0xdb, 0xbf, 0x7a, 0x3c, 0x00, 0x00, } diff --git a/etcdserver/etcdserverpb/rpc.proto b/etcdserver/etcdserverpb/rpc.proto index 1a7294adf..421caf1bf 100644 --- a/etcdserver/etcdserverpb/rpc.proto +++ b/etcdserver/etcdserverpb/rpc.proto @@ -237,6 +237,14 @@ service Maintenance { body: "*" }; } + + // Downgrade requests downgrade, cancel downgrade on the cluster version. + rpc Downgrade(DowngradeRequest) returns (DowngradeResponse) { + option (google.api.http) = { + post: "/v3/maintenance/downgrade" + body: "*" + }; + } } service Auth { @@ -977,6 +985,27 @@ message AlarmResponse { repeated AlarmMember alarms = 2; } +message DowngradeRequest { + enum DowngradeAction { + VALIDATE = 0; + ENABLE = 1; + CANCEL = 2; + } + + // action is the kind of downgrade request to issue. The action may + // VALIDATE the target version, DOWNGRADE the cluster version, + // or CANCEL the current downgrading job. + DowngradeAction action = 1; + // version is the target version to downgrade. + string version = 2; +} + +message DowngradeResponse { + ResponseHeader header = 1; + // version is the current cluster version. + string version = 2; +} + message StatusRequest { } diff --git a/proxy/grpcproxy/adapter/maintenance_client_adapter.go b/proxy/grpcproxy/adapter/maintenance_client_adapter.go index 4a8781b13..4c7d22699 100644 --- a/proxy/grpcproxy/adapter/maintenance_client_adapter.go +++ b/proxy/grpcproxy/adapter/maintenance_client_adapter.go @@ -52,6 +52,10 @@ func (s *mts2mtc) MoveLeader(ctx context.Context, r *pb.MoveLeaderRequest, opts return s.mts.MoveLeader(ctx, r) } +func (s *mts2mtc) Downgrade(ctx context.Context, r *pb.DowngradeRequest, opts ...grpc.CallOption) (*pb.DowngradeResponse, error) { + return s.mts.Downgrade(ctx, r) +} + func (s *mts2mtc) Snapshot(ctx context.Context, in *pb.SnapshotRequest, opts ...grpc.CallOption) (pb.Maintenance_SnapshotClient, error) { cs := newPipeStream(ctx, func(ss chanServerStream) error { return s.mts.Snapshot(in, &ss2scServerStream{ss}) diff --git a/proxy/grpcproxy/maintenance.go b/proxy/grpcproxy/maintenance.go index 5e1e75176..ab32cdbfa 100644 --- a/proxy/grpcproxy/maintenance.go +++ b/proxy/grpcproxy/maintenance.go @@ -88,3 +88,8 @@ func (mp *maintenanceProxy) MoveLeader(ctx context.Context, r *pb.MoveLeaderRequ conn := mp.client.ActiveConnection() return pb.NewMaintenanceClient(conn).MoveLeader(ctx, r) } + +func (mp *maintenanceProxy) Downgrade(ctx context.Context, r *pb.DowngradeRequest) (*pb.DowngradeResponse, error) { + conn := mp.client.ActiveConnection() + return pb.NewMaintenanceClient(conn).Downgrade(ctx, r) +}