diff --git a/vendor/github.com/coreos/etcd/clientv3/concurrency/stm.go b/vendor/github.com/coreos/etcd/clientv3/concurrency/stm.go index bba058665..8d0a64bac 100644 --- a/vendor/github.com/coreos/etcd/clientv3/concurrency/stm.go +++ b/vendor/github.com/coreos/etcd/clientv3/concurrency/stm.go @@ -193,11 +193,12 @@ func (rs readSet) add(keys []string, txnresp *v3.TxnResponse) { } } +// first returns the store revision from the first fetch func (rs readSet) first() int64 { ret := int64(math.MaxInt64 - 1) for _, resp := range rs { - if len(resp.Kvs) > 0 && resp.Kvs[0].ModRevision < ret { - ret = resp.Kvs[0].ModRevision + if rev := resp.Header.Revision; rev < ret { + ret = rev } } return ret diff --git a/vendor/github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes/error.go b/vendor/github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes/error.go index 719ad8157..cc8ebbdb8 100644 --- a/vendor/github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes/error.go +++ b/vendor/github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes/error.go @@ -66,6 +66,7 @@ var ( ErrGRPCTimeoutDueToLeaderFail = grpc.Errorf(codes.Unavailable, "etcdserver: request timed out, possibly due to previous leader failure") ErrGRPCTimeoutDueToConnectionLost = grpc.Errorf(codes.Unavailable, "etcdserver: request timed out, possibly due to connection lost") ErrGRPCUnhealthy = grpc.Errorf(codes.Unavailable, "etcdserver: unhealthy cluster") + ErrGRPCCorrupt = grpc.Errorf(codes.DataLoss, "etcdserver: corrupt cluster") errStringToError = map[string]error{ grpc.ErrorDesc(ErrGRPCEmptyKey): ErrGRPCEmptyKey, @@ -114,6 +115,7 @@ var ( grpc.ErrorDesc(ErrGRPCTimeoutDueToLeaderFail): ErrGRPCTimeoutDueToLeaderFail, grpc.ErrorDesc(ErrGRPCTimeoutDueToConnectionLost): ErrGRPCTimeoutDueToConnectionLost, grpc.ErrorDesc(ErrGRPCUnhealthy): ErrGRPCUnhealthy, + grpc.ErrorDesc(ErrGRPCCorrupt): ErrGRPCCorrupt, } // client-side error @@ -162,6 +164,7 @@ var ( ErrTimeoutDueToLeaderFail = Error(ErrGRPCTimeoutDueToLeaderFail) ErrTimeoutDueToConnectionLost = Error(ErrGRPCTimeoutDueToConnectionLost) ErrUnhealthy = Error(ErrGRPCUnhealthy) + ErrCorrupt = Error(ErrGRPCCorrupt) ) // EtcdError defines gRPC server errors. diff --git a/vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/etcdserver.pb.go b/vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/etcdserver.pb.go index b0d00e26f..e4007f5de 100644 --- a/vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/etcdserver.pb.go +++ b/vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/etcdserver.pb.go @@ -49,6 +49,9 @@ LeaseKeepAliveResponse LeaseTimeToLiveRequest LeaseTimeToLiveResponse + LeaseLeasesRequest + LeaseStatus + LeaseLeasesResponse Member MemberAddRequest MemberAddResponse diff --git a/vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/rpc.pb.go b/vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/rpc.pb.go index 8bde0d08c..97e0c4c49 100644 --- a/vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/rpc.pb.go +++ b/vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/rpc.pb.go @@ -32,15 +32,18 @@ type AlarmType int32 const ( AlarmType_NONE AlarmType = 0 AlarmType_NOSPACE AlarmType = 1 + AlarmType_CORRUPT AlarmType = 2 ) var AlarmType_name = map[int32]string{ 0: "NONE", 1: "NOSPACE", + 2: "CORRUPT", } var AlarmType_value = map[string]int32{ "NONE": 0, "NOSPACE": 1, + "CORRUPT": 2, } func (x AlarmType) String() string { @@ -136,6 +139,7 @@ const ( Compare_CREATE Compare_CompareTarget = 1 Compare_MOD Compare_CompareTarget = 2 Compare_VALUE Compare_CompareTarget = 3 + Compare_LEASE Compare_CompareTarget = 4 ) var Compare_CompareTarget_name = map[int32]string{ @@ -143,12 +147,14 @@ var Compare_CompareTarget_name = map[int32]string{ 1: "CREATE", 2: "MOD", 3: "VALUE", + 4: "LEASE", } var Compare_CompareTarget_value = map[string]int32{ "VERSION": 0, "CREATE": 1, "MOD": 2, "VALUE": 3, + "LEASE": 4, } func (x Compare_CompareTarget) String() string { @@ -204,7 +210,7 @@ func (x AlarmRequest_AlarmAction) String() string { return proto.EnumName(AlarmRequest_AlarmAction_name, int32(x)) } func (AlarmRequest_AlarmAction) EnumDescriptor() ([]byte, []int) { - return fileDescriptorRpc, []int{45, 0} + return fileDescriptorRpc, []int{48, 0} } type ResponseHeader struct { @@ -987,10 +993,11 @@ type Compare struct { // *Compare_CreateRevision // *Compare_ModRevision // *Compare_Value + // *Compare_Lease TargetUnion isCompare_TargetUnion `protobuf_oneof:"target_union"` // range_end compares the given target to all keys in the range [key, range_end). // See RangeRequest for more details on key ranges. - RangeEnd []byte `protobuf:"bytes,8,opt,name=range_end,json=rangeEnd,proto3" json:"range_end,omitempty"` + RangeEnd []byte `protobuf:"bytes,64,opt,name=range_end,json=rangeEnd,proto3" json:"range_end,omitempty"` } func (m *Compare) Reset() { *m = Compare{} } @@ -1016,11 +1023,15 @@ type Compare_ModRevision struct { type Compare_Value struct { Value []byte `protobuf:"bytes,7,opt,name=value,proto3,oneof"` } +type Compare_Lease struct { + Lease int64 `protobuf:"varint,8,opt,name=lease,proto3,oneof"` +} func (*Compare_Version) isCompare_TargetUnion() {} func (*Compare_CreateRevision) isCompare_TargetUnion() {} func (*Compare_ModRevision) isCompare_TargetUnion() {} func (*Compare_Value) isCompare_TargetUnion() {} +func (*Compare_Lease) isCompare_TargetUnion() {} func (m *Compare) GetTargetUnion() isCompare_TargetUnion { if m != nil { @@ -1078,6 +1089,13 @@ func (m *Compare) GetValue() []byte { return nil } +func (m *Compare) GetLease() int64 { + if x, ok := m.GetTargetUnion().(*Compare_Lease); ok { + return x.Lease + } + return 0 +} + func (m *Compare) GetRangeEnd() []byte { if m != nil { return m.RangeEnd @@ -1092,6 +1110,7 @@ func (*Compare) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error (*Compare_CreateRevision)(nil), (*Compare_ModRevision)(nil), (*Compare_Value)(nil), + (*Compare_Lease)(nil), } } @@ -1111,6 +1130,9 @@ func _Compare_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { case *Compare_Value: _ = b.EncodeVarint(7<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Value) + case *Compare_Lease: + _ = b.EncodeVarint(8<<3 | proto.WireVarint) + _ = b.EncodeVarint(uint64(x.Lease)) case nil: default: return fmt.Errorf("Compare.TargetUnion has unexpected type %T", x) @@ -1149,6 +1171,13 @@ func _Compare_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer x, err := b.DecodeRawBytes(true) m.TargetUnion = &Compare_Value{x} return true, err + case 8: // target_union.lease + if wire != proto.WireVarint { + return true, proto.ErrInternalBadWireType + } + x, err := b.DecodeVarint() + m.TargetUnion = &Compare_Lease{int64(x)} + return true, err default: return false, nil } @@ -1171,6 +1200,9 @@ func _Compare_OneofSizer(msg proto.Message) (n int) { n += proto.SizeVarint(7<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Value))) n += len(x.Value) + case *Compare_Lease: + n += proto.SizeVarint(8<<3 | proto.WireVarint) + n += proto.SizeVarint(uint64(x.Lease)) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) @@ -1963,6 +1995,54 @@ func (m *LeaseTimeToLiveResponse) GetKeys() [][]byte { return nil } +type LeaseLeasesRequest struct { +} + +func (m *LeaseLeasesRequest) Reset() { *m = LeaseLeasesRequest{} } +func (m *LeaseLeasesRequest) String() string { return proto.CompactTextString(m) } +func (*LeaseLeasesRequest) ProtoMessage() {} +func (*LeaseLeasesRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{32} } + +type LeaseStatus struct { + ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"` +} + +func (m *LeaseStatus) Reset() { *m = LeaseStatus{} } +func (m *LeaseStatus) String() string { return proto.CompactTextString(m) } +func (*LeaseStatus) ProtoMessage() {} +func (*LeaseStatus) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{33} } + +func (m *LeaseStatus) GetID() int64 { + if m != nil { + return m.ID + } + return 0 +} + +type LeaseLeasesResponse struct { + Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"` + Leases []*LeaseStatus `protobuf:"bytes,2,rep,name=leases" json:"leases,omitempty"` +} + +func (m *LeaseLeasesResponse) Reset() { *m = LeaseLeasesResponse{} } +func (m *LeaseLeasesResponse) String() string { return proto.CompactTextString(m) } +func (*LeaseLeasesResponse) ProtoMessage() {} +func (*LeaseLeasesResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{34} } + +func (m *LeaseLeasesResponse) GetHeader() *ResponseHeader { + if m != nil { + return m.Header + } + return nil +} + +func (m *LeaseLeasesResponse) GetLeases() []*LeaseStatus { + if m != nil { + return m.Leases + } + return nil +} + type Member struct { // ID is the member ID for this member. ID uint64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"` @@ -1977,7 +2057,7 @@ type Member struct { func (m *Member) Reset() { *m = Member{} } func (m *Member) String() string { return proto.CompactTextString(m) } func (*Member) ProtoMessage() {} -func (*Member) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{32} } +func (*Member) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{35} } func (m *Member) GetID() uint64 { if m != nil { @@ -2015,7 +2095,7 @@ type MemberAddRequest struct { func (m *MemberAddRequest) Reset() { *m = MemberAddRequest{} } func (m *MemberAddRequest) String() string { return proto.CompactTextString(m) } func (*MemberAddRequest) ProtoMessage() {} -func (*MemberAddRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{33} } +func (*MemberAddRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{36} } func (m *MemberAddRequest) GetPeerURLs() []string { if m != nil { @@ -2035,7 +2115,7 @@ type MemberAddResponse struct { func (m *MemberAddResponse) Reset() { *m = MemberAddResponse{} } func (m *MemberAddResponse) String() string { return proto.CompactTextString(m) } func (*MemberAddResponse) ProtoMessage() {} -func (*MemberAddResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{34} } +func (*MemberAddResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{37} } func (m *MemberAddResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2066,7 +2146,7 @@ type MemberRemoveRequest struct { func (m *MemberRemoveRequest) Reset() { *m = MemberRemoveRequest{} } func (m *MemberRemoveRequest) String() string { return proto.CompactTextString(m) } func (*MemberRemoveRequest) ProtoMessage() {} -func (*MemberRemoveRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{35} } +func (*MemberRemoveRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{38} } func (m *MemberRemoveRequest) GetID() uint64 { if m != nil { @@ -2084,7 +2164,7 @@ type MemberRemoveResponse struct { func (m *MemberRemoveResponse) Reset() { *m = MemberRemoveResponse{} } func (m *MemberRemoveResponse) String() string { return proto.CompactTextString(m) } func (*MemberRemoveResponse) ProtoMessage() {} -func (*MemberRemoveResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{36} } +func (*MemberRemoveResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{39} } func (m *MemberRemoveResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2110,7 +2190,7 @@ type MemberUpdateRequest struct { func (m *MemberUpdateRequest) Reset() { *m = MemberUpdateRequest{} } func (m *MemberUpdateRequest) String() string { return proto.CompactTextString(m) } func (*MemberUpdateRequest) ProtoMessage() {} -func (*MemberUpdateRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{37} } +func (*MemberUpdateRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{40} } func (m *MemberUpdateRequest) GetID() uint64 { if m != nil { @@ -2135,7 +2215,7 @@ type MemberUpdateResponse struct { func (m *MemberUpdateResponse) Reset() { *m = MemberUpdateResponse{} } func (m *MemberUpdateResponse) String() string { return proto.CompactTextString(m) } func (*MemberUpdateResponse) ProtoMessage() {} -func (*MemberUpdateResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{38} } +func (*MemberUpdateResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{41} } func (m *MemberUpdateResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2157,7 +2237,7 @@ type MemberListRequest struct { func (m *MemberListRequest) Reset() { *m = MemberListRequest{} } func (m *MemberListRequest) String() string { return proto.CompactTextString(m) } func (*MemberListRequest) ProtoMessage() {} -func (*MemberListRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{39} } +func (*MemberListRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{42} } type MemberListResponse struct { Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"` @@ -2168,7 +2248,7 @@ type MemberListResponse struct { func (m *MemberListResponse) Reset() { *m = MemberListResponse{} } func (m *MemberListResponse) String() string { return proto.CompactTextString(m) } func (*MemberListResponse) ProtoMessage() {} -func (*MemberListResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{40} } +func (*MemberListResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{43} } func (m *MemberListResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2190,7 +2270,7 @@ type DefragmentRequest struct { func (m *DefragmentRequest) Reset() { *m = DefragmentRequest{} } func (m *DefragmentRequest) String() string { return proto.CompactTextString(m) } func (*DefragmentRequest) ProtoMessage() {} -func (*DefragmentRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{41} } +func (*DefragmentRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{44} } type DefragmentResponse struct { Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"` @@ -2199,7 +2279,7 @@ type DefragmentResponse struct { func (m *DefragmentResponse) Reset() { *m = DefragmentResponse{} } func (m *DefragmentResponse) String() string { return proto.CompactTextString(m) } func (*DefragmentResponse) ProtoMessage() {} -func (*DefragmentResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{42} } +func (*DefragmentResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{45} } func (m *DefragmentResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2216,7 +2296,7 @@ type MoveLeaderRequest struct { func (m *MoveLeaderRequest) Reset() { *m = MoveLeaderRequest{} } func (m *MoveLeaderRequest) String() string { return proto.CompactTextString(m) } func (*MoveLeaderRequest) ProtoMessage() {} -func (*MoveLeaderRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{43} } +func (*MoveLeaderRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{46} } func (m *MoveLeaderRequest) GetTargetID() uint64 { if m != nil { @@ -2232,7 +2312,7 @@ type MoveLeaderResponse struct { func (m *MoveLeaderResponse) Reset() { *m = MoveLeaderResponse{} } func (m *MoveLeaderResponse) String() string { return proto.CompactTextString(m) } func (*MoveLeaderResponse) ProtoMessage() {} -func (*MoveLeaderResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{44} } +func (*MoveLeaderResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{47} } func (m *MoveLeaderResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2256,7 +2336,7 @@ type AlarmRequest struct { func (m *AlarmRequest) Reset() { *m = AlarmRequest{} } func (m *AlarmRequest) String() string { return proto.CompactTextString(m) } func (*AlarmRequest) ProtoMessage() {} -func (*AlarmRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{45} } +func (*AlarmRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{48} } func (m *AlarmRequest) GetAction() AlarmRequest_AlarmAction { if m != nil { @@ -2289,7 +2369,7 @@ type AlarmMember struct { func (m *AlarmMember) Reset() { *m = AlarmMember{} } func (m *AlarmMember) String() string { return proto.CompactTextString(m) } func (*AlarmMember) ProtoMessage() {} -func (*AlarmMember) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{46} } +func (*AlarmMember) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{49} } func (m *AlarmMember) GetMemberID() uint64 { if m != nil { @@ -2314,7 +2394,7 @@ type AlarmResponse struct { func (m *AlarmResponse) Reset() { *m = AlarmResponse{} } func (m *AlarmResponse) String() string { return proto.CompactTextString(m) } func (*AlarmResponse) ProtoMessage() {} -func (*AlarmResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{47} } +func (*AlarmResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{50} } func (m *AlarmResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2336,7 +2416,7 @@ 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{48} } +func (*StatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{51} } type StatusResponse struct { Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"` @@ -2355,7 +2435,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{49} } +func (*StatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{52} } func (m *StatusResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2405,7 +2485,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{50} } +func (*AuthEnableRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{53} } type AuthDisableRequest struct { } @@ -2413,7 +2493,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{51} } +func (*AuthDisableRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{54} } type AuthenticateRequest struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` @@ -2423,7 +2503,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{52} } +func (*AuthenticateRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{55} } func (m *AuthenticateRequest) GetName() string { if m != nil { @@ -2447,7 +2527,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{53} } +func (*AuthUserAddRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{56} } func (m *AuthUserAddRequest) GetName() string { if m != nil { @@ -2470,7 +2550,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{54} } +func (*AuthUserGetRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{57} } func (m *AuthUserGetRequest) GetName() string { if m != nil { @@ -2487,7 +2567,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{55} } +func (*AuthUserDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{58} } func (m *AuthUserDeleteRequest) GetName() string { if m != nil { @@ -2507,7 +2587,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{56} + return fileDescriptorRpc, []int{59} } func (m *AuthUserChangePasswordRequest) GetName() string { @@ -2534,7 +2614,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{57} } +func (*AuthUserGrantRoleRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{60} } func (m *AuthUserGrantRoleRequest) GetUser() string { if m != nil { @@ -2558,7 +2638,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{58} } +func (*AuthUserRevokeRoleRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{61} } func (m *AuthUserRevokeRoleRequest) GetName() string { if m != nil { @@ -2582,7 +2662,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{59} } +func (*AuthRoleAddRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{62} } func (m *AuthRoleAddRequest) GetName() string { if m != nil { @@ -2598,7 +2678,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{60} } +func (*AuthRoleGetRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{63} } func (m *AuthRoleGetRequest) GetRole() string { if m != nil { @@ -2613,7 +2693,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{61} } +func (*AuthUserListRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{64} } type AuthRoleListRequest struct { } @@ -2621,7 +2701,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{62} } +func (*AuthRoleListRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{65} } type AuthRoleDeleteRequest struct { Role string `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"` @@ -2630,7 +2710,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{63} } +func (*AuthRoleDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{66} } func (m *AuthRoleDeleteRequest) GetRole() string { if m != nil { @@ -2650,7 +2730,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{64} + return fileDescriptorRpc, []int{67} } func (m *AuthRoleGrantPermissionRequest) GetName() string { @@ -2677,7 +2757,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{65} + return fileDescriptorRpc, []int{68} } func (m *AuthRoleRevokePermissionRequest) GetRole() string { @@ -2708,7 +2788,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{66} } +func (*AuthEnableResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{69} } func (m *AuthEnableResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2724,7 +2804,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{67} } +func (*AuthDisableResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{70} } func (m *AuthDisableResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2742,7 +2822,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{68} } +func (*AuthenticateResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{71} } func (m *AuthenticateResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2765,7 +2845,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{69} } +func (*AuthUserAddResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{72} } func (m *AuthUserAddResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2782,7 +2862,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{70} } +func (*AuthUserGetResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{73} } func (m *AuthUserGetResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2805,7 +2885,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{71} } +func (*AuthUserDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{74} } func (m *AuthUserDeleteResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2822,7 +2902,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{72} + return fileDescriptorRpc, []int{75} } func (m *AuthUserChangePasswordResponse) GetHeader() *ResponseHeader { @@ -2839,7 +2919,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{73} } +func (*AuthUserGrantRoleResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{76} } func (m *AuthUserGrantRoleResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2855,7 +2935,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{74} } +func (*AuthUserRevokeRoleResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{77} } func (m *AuthUserRevokeRoleResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2871,7 +2951,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{75} } +func (*AuthRoleAddResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{78} } func (m *AuthRoleAddResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2888,7 +2968,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{76} } +func (*AuthRoleGetResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{79} } func (m *AuthRoleGetResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2912,7 +2992,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{77} } +func (*AuthRoleListResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{80} } func (m *AuthRoleListResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2936,7 +3016,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{78} } +func (*AuthUserListResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{81} } func (m *AuthUserListResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2959,7 +3039,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{79} } +func (*AuthRoleDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{82} } func (m *AuthRoleDeleteResponse) GetHeader() *ResponseHeader { if m != nil { @@ -2976,7 +3056,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{80} + return fileDescriptorRpc, []int{83} } func (m *AuthRoleGrantPermissionResponse) GetHeader() *ResponseHeader { @@ -2994,7 +3074,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{81} + return fileDescriptorRpc, []int{84} } func (m *AuthRoleRevokePermissionResponse) GetHeader() *ResponseHeader { @@ -3037,6 +3117,9 @@ func init() { proto.RegisterType((*LeaseKeepAliveResponse)(nil), "etcdserverpb.LeaseKeepAliveResponse") proto.RegisterType((*LeaseTimeToLiveRequest)(nil), "etcdserverpb.LeaseTimeToLiveRequest") proto.RegisterType((*LeaseTimeToLiveResponse)(nil), "etcdserverpb.LeaseTimeToLiveResponse") + proto.RegisterType((*LeaseLeasesRequest)(nil), "etcdserverpb.LeaseLeasesRequest") + proto.RegisterType((*LeaseStatus)(nil), "etcdserverpb.LeaseStatus") + proto.RegisterType((*LeaseLeasesResponse)(nil), "etcdserverpb.LeaseLeasesResponse") proto.RegisterType((*Member)(nil), "etcdserverpb.Member") proto.RegisterType((*MemberAddRequest)(nil), "etcdserverpb.MemberAddRequest") proto.RegisterType((*MemberAddResponse)(nil), "etcdserverpb.MemberAddResponse") @@ -3448,6 +3531,8 @@ type LeaseClient interface { LeaseKeepAlive(ctx context.Context, opts ...grpc.CallOption) (Lease_LeaseKeepAliveClient, error) // LeaseTimeToLive retrieves lease information. LeaseTimeToLive(ctx context.Context, in *LeaseTimeToLiveRequest, opts ...grpc.CallOption) (*LeaseTimeToLiveResponse, error) + // LeaseLeases lists all existing leases. + LeaseLeases(ctx context.Context, in *LeaseLeasesRequest, opts ...grpc.CallOption) (*LeaseLeasesResponse, error) } type leaseClient struct { @@ -3516,6 +3601,15 @@ func (c *leaseClient) LeaseTimeToLive(ctx context.Context, in *LeaseTimeToLiveRe return out, nil } +func (c *leaseClient) LeaseLeases(ctx context.Context, in *LeaseLeasesRequest, opts ...grpc.CallOption) (*LeaseLeasesResponse, error) { + out := new(LeaseLeasesResponse) + err := grpc.Invoke(ctx, "/etcdserverpb.Lease/LeaseLeases", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // Server API for Lease service type LeaseServer interface { @@ -3530,6 +3624,8 @@ type LeaseServer interface { LeaseKeepAlive(Lease_LeaseKeepAliveServer) error // LeaseTimeToLive retrieves lease information. LeaseTimeToLive(context.Context, *LeaseTimeToLiveRequest) (*LeaseTimeToLiveResponse, error) + // LeaseLeases lists all existing leases. + LeaseLeases(context.Context, *LeaseLeasesRequest) (*LeaseLeasesResponse, error) } func RegisterLeaseServer(s *grpc.Server, srv LeaseServer) { @@ -3616,6 +3712,24 @@ func _Lease_LeaseTimeToLive_Handler(srv interface{}, ctx context.Context, dec fu return interceptor(ctx, in, info, handler) } +func _Lease_LeaseLeases_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(LeaseLeasesRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(LeaseServer).LeaseLeases(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/etcdserverpb.Lease/LeaseLeases", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(LeaseServer).LeaseLeases(ctx, req.(*LeaseLeasesRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Lease_serviceDesc = grpc.ServiceDesc{ ServiceName: "etcdserverpb.Lease", HandlerType: (*LeaseServer)(nil), @@ -3632,6 +3746,10 @@ var _Lease_serviceDesc = grpc.ServiceDesc{ MethodName: "LeaseTimeToLive", Handler: _Lease_LeaseTimeToLive_Handler, }, + { + MethodName: "LeaseLeases", + Handler: _Lease_LeaseLeases_Handler, + }, }, Streams: []grpc.StreamDesc{ { @@ -5296,7 +5414,9 @@ func (m *Compare) MarshalTo(dAtA []byte) (int, error) { i += nn15 } if len(m.RangeEnd) > 0 { - dAtA[i] = 0x42 + dAtA[i] = 0x82 + i++ + dAtA[i] = 0x4 i++ i = encodeVarintRpc(dAtA, i, uint64(len(m.RangeEnd))) i += copy(dAtA[i:], m.RangeEnd) @@ -5335,6 +5455,13 @@ func (m *Compare_Value) MarshalTo(dAtA []byte) (int, error) { } return i, nil } +func (m *Compare_Lease) MarshalTo(dAtA []byte) (int, error) { + i := 0 + dAtA[i] = 0x40 + i++ + i = encodeVarintRpc(dAtA, i, uint64(m.Lease)) + return i, nil +} func (m *TxnRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6161,6 +6288,87 @@ func (m *LeaseTimeToLiveResponse) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *LeaseLeasesRequest) 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 *LeaseLeasesRequest) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + return i, nil +} + +func (m *LeaseStatus) 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 *LeaseStatus) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if m.ID != 0 { + dAtA[i] = 0x8 + i++ + i = encodeVarintRpc(dAtA, i, uint64(m.ID)) + } + return i, nil +} + +func (m *LeaseLeasesResponse) 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 *LeaseLeasesResponse) 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())) + n31, err := m.Header.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n31 + } + if len(m.Leases) > 0 { + for _, msg := range m.Leases { + dAtA[i] = 0x12 + i++ + i = encodeVarintRpc(dAtA, i, uint64(msg.Size())) + n, err := msg.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n + } + } + return i, nil +} + func (m *Member) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6272,21 +6480,21 @@ func (m *MemberAddResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n31, err := m.Header.MarshalTo(dAtA[i:]) + n32, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n31 + i += n32 } if m.Member != nil { dAtA[i] = 0x12 i++ i = encodeVarintRpc(dAtA, i, uint64(m.Member.Size())) - n32, err := m.Member.MarshalTo(dAtA[i:]) + n33, err := m.Member.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n32 + i += n33 } if len(m.Members) > 0 { for _, msg := range m.Members { @@ -6345,11 +6553,11 @@ func (m *MemberRemoveResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n33, err := m.Header.MarshalTo(dAtA[i:]) + n34, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n33 + i += n34 } if len(m.Members) > 0 { for _, msg := range m.Members { @@ -6423,11 +6631,11 @@ func (m *MemberUpdateResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n34, err := m.Header.MarshalTo(dAtA[i:]) + n35, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n34 + i += n35 } if len(m.Members) > 0 { for _, msg := range m.Members { @@ -6481,11 +6689,11 @@ func (m *MemberListResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n35, err := m.Header.MarshalTo(dAtA[i:]) + n36, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n35 + i += n36 } if len(m.Members) > 0 { for _, msg := range m.Members { @@ -6539,11 +6747,11 @@ func (m *DefragmentResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n36, err := m.Header.MarshalTo(dAtA[i:]) + n37, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n36 + i += n37 } return i, nil } @@ -6590,11 +6798,11 @@ func (m *MoveLeaderResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n37, err := m.Header.MarshalTo(dAtA[i:]) + n38, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n37 + i += n38 } return i, nil } @@ -6679,11 +6887,11 @@ func (m *AlarmResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n38, err := m.Header.MarshalTo(dAtA[i:]) + n39, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n38 + i += n39 } if len(m.Alarms) > 0 { for _, msg := range m.Alarms { @@ -6737,11 +6945,11 @@ func (m *StatusResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n39, err := m.Header.MarshalTo(dAtA[i:]) + n40, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n39 + i += n40 } if len(m.Version) > 0 { dAtA[i] = 0x12 @@ -7139,11 +7347,11 @@ func (m *AuthRoleGrantPermissionRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintRpc(dAtA, i, uint64(m.Perm.Size())) - n40, err := m.Perm.MarshalTo(dAtA[i:]) + n41, err := m.Perm.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n40 + i += n41 } return i, nil } @@ -7203,11 +7411,11 @@ func (m *AuthEnableResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n41, err := m.Header.MarshalTo(dAtA[i:]) + n42, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n41 + i += n42 } return i, nil } @@ -7231,11 +7439,11 @@ func (m *AuthDisableResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n42, err := m.Header.MarshalTo(dAtA[i:]) + n43, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n42 + i += n43 } return i, nil } @@ -7259,11 +7467,11 @@ func (m *AuthenticateResponse) 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.Token) > 0 { dAtA[i] = 0x12 @@ -7293,11 +7501,11 @@ func (m *AuthUserAddResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n44, err := m.Header.MarshalTo(dAtA[i:]) + n45, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n44 + i += n45 } return i, nil } @@ -7321,11 +7529,11 @@ func (m *AuthUserGetResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintRpc(dAtA, i, uint64(m.Header.Size())) - n45, err := m.Header.MarshalTo(dAtA[i:]) + n46, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n45 + i += n46 } if len(m.Roles) > 0 { for _, s := range m.Roles { @@ -7364,11 +7572,11 @@ func (m *AuthUserDeleteResponse) 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 } @@ -7392,11 +7600,11 @@ func (m *AuthUserChangePasswordResponse) 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 } @@ -7420,11 +7628,11 @@ func (m *AuthUserGrantRoleResponse) 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 } return i, nil } @@ -7448,11 +7656,11 @@ func (m *AuthUserRevokeRoleResponse) 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 } return i, nil } @@ -7476,11 +7684,11 @@ func (m *AuthRoleAddResponse) 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 } @@ -7504,11 +7712,11 @@ func (m *AuthRoleGetResponse) 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.Perm) > 0 { for _, msg := range m.Perm { @@ -7544,11 +7752,11 @@ func (m *AuthRoleListResponse) 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 } if len(m.Roles) > 0 { for _, s := range m.Roles { @@ -7587,11 +7795,11 @@ func (m *AuthUserListResponse) 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 } if len(m.Users) > 0 { for _, s := range m.Users { @@ -7630,11 +7838,11 @@ func (m *AuthRoleDeleteResponse) 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 } @@ -7658,11 +7866,11 @@ func (m *AuthRoleGrantPermissionResponse) 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 } @@ -7686,11 +7894,11 @@ func (m *AuthRoleRevokePermissionResponse) 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 } @@ -7993,7 +8201,7 @@ func (m *Compare) Size() (n int) { } l = len(m.RangeEnd) if l > 0 { - n += 1 + l + sovRpc(uint64(l)) + n += 2 + l + sovRpc(uint64(l)) } return n } @@ -8025,6 +8233,12 @@ func (m *Compare_Value) Size() (n int) { } return n } +func (m *Compare_Lease) Size() (n int) { + var l int + _ = l + n += 1 + sovRpc(uint64(m.Lease)) + return n +} func (m *TxnRequest) Size() (n int) { var l int _ = l @@ -8368,6 +8582,37 @@ func (m *LeaseTimeToLiveResponse) Size() (n int) { return n } +func (m *LeaseLeasesRequest) Size() (n int) { + var l int + _ = l + return n +} + +func (m *LeaseStatus) Size() (n int) { + var l int + _ = l + if m.ID != 0 { + n += 1 + sovRpc(uint64(m.ID)) + } + return n +} + +func (m *LeaseLeasesResponse) Size() (n int) { + var l int + _ = l + if m.Header != nil { + l = m.Header.Size() + n += 1 + l + sovRpc(uint64(l)) + } + if len(m.Leases) > 0 { + for _, e := range m.Leases { + l = e.Size() + n += 1 + l + sovRpc(uint64(l)) + } + } + return n +} + func (m *Member) Size() (n int) { var l int _ = l @@ -10710,6 +10955,26 @@ func (m *Compare) Unmarshal(dAtA []byte) error { m.TargetUnion = &Compare_Value{v} iNdEx = postIndex case 8: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Lease", wireType) + } + var v int64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (int64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.TargetUnion = &Compare_Lease{v} + case 64: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field RangeEnd", wireType) } @@ -13210,6 +13475,239 @@ func (m *LeaseTimeToLiveResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *LeaseLeasesRequest) 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: LeaseLeasesRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: LeaseLeasesRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + 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 *LeaseStatus) 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: LeaseStatus: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: LeaseStatus: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ID", wireType) + } + m.ID = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ID |= (int64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + 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 *LeaseLeasesResponse) 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: LeaseLeasesResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: LeaseLeasesResponse: 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 Leases", 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 + } + m.Leases = append(m.Leases, &LeaseStatus{}) + if err := m.Leases[len(m.Leases)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + 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 *Member) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -17950,230 +18448,235 @@ var ( func init() { proto.RegisterFile("rpc.proto", fileDescriptorRpc) } var fileDescriptorRpc = []byte{ - // 3587 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5b, 0xdd, 0x6f, 0x1b, 0xc7, - 0x11, 0xd7, 0x91, 0x22, 0x29, 0x0e, 0x3f, 0x44, 0xad, 0x64, 0x9b, 0xa2, 0x6d, 0x59, 0x5e, 0x7f, - 0xc9, 0x76, 0x2c, 0x25, 0x4a, 0xda, 0x07, 0x37, 0x08, 0x2a, 0x4b, 0x8c, 0xa5, 0x48, 0x96, 0x9c, - 0x93, 0xac, 0xa4, 0x40, 0x50, 0xe2, 0x44, 0xae, 0xa5, 0x83, 0xc8, 0x3b, 0xe6, 0xee, 0x48, 0x4b, - 0x69, 0x0a, 0x14, 0x69, 0x82, 0xa2, 0x05, 0xfa, 0xd2, 0x3c, 0xf4, 0xeb, 0xb1, 0x28, 0x8a, 0xbc, - 0xf4, 0xad, 0xe8, 0x7f, 0x50, 0x14, 0x7d, 0x69, 0x81, 0xfe, 0x03, 0x45, 0xda, 0x7f, 0xa3, 0x68, - 0xb1, 0x5f, 0x77, 0x7b, 0xc7, 0x3b, 0x4a, 0x09, 0x93, 0xbc, 0x58, 0xb7, 0xb3, 0xb3, 0xf3, 0x9b, - 0x9d, 0xdd, 0x99, 0xd9, 0x9d, 0xa5, 0x21, 0xef, 0x74, 0x9b, 0x8b, 0x5d, 0xc7, 0xf6, 0x6c, 0x54, - 0x24, 0x5e, 0xb3, 0xe5, 0x12, 0xa7, 0x4f, 0x9c, 0xee, 0x41, 0x6d, 0xe6, 0xd0, 0x3e, 0xb4, 0x59, - 0xc7, 0x12, 0xfd, 0xe2, 0x3c, 0xb5, 0x59, 0xca, 0xb3, 0xd4, 0xe9, 0x37, 0x9b, 0xec, 0x9f, 0xee, - 0xc1, 0xd2, 0x71, 0x5f, 0x74, 0x5d, 0x66, 0x5d, 0x46, 0xcf, 0x3b, 0x62, 0xff, 0x74, 0x0f, 0xd8, - 0x1f, 0xd1, 0x79, 0xe5, 0xd0, 0xb6, 0x0f, 0xdb, 0x64, 0xc9, 0xe8, 0x9a, 0x4b, 0x86, 0x65, 0xd9, - 0x9e, 0xe1, 0x99, 0xb6, 0xe5, 0xf2, 0x5e, 0xfc, 0x89, 0x06, 0x65, 0x9d, 0xb8, 0x5d, 0xdb, 0x72, - 0xc9, 0x3a, 0x31, 0x5a, 0xc4, 0x41, 0x57, 0x01, 0x9a, 0xed, 0x9e, 0xeb, 0x11, 0xa7, 0x61, 0xb6, - 0xaa, 0xda, 0xbc, 0xb6, 0x30, 0xae, 0xe7, 0x05, 0x65, 0xa3, 0x85, 0x2e, 0x43, 0xbe, 0x43, 0x3a, - 0x07, 0xbc, 0x37, 0xc5, 0x7a, 0x27, 0x38, 0x61, 0xa3, 0x85, 0x6a, 0x30, 0xe1, 0x90, 0xbe, 0xe9, - 0x9a, 0xb6, 0x55, 0x4d, 0xcf, 0x6b, 0x0b, 0x69, 0xdd, 0x6f, 0xd3, 0x81, 0x8e, 0xf1, 0xdc, 0x6b, - 0x78, 0xc4, 0xe9, 0x54, 0xc7, 0xf9, 0x40, 0x4a, 0xd8, 0x23, 0x4e, 0x07, 0x7f, 0x9c, 0x81, 0xa2, - 0x6e, 0x58, 0x87, 0x44, 0x27, 0xef, 0xf7, 0x88, 0xeb, 0xa1, 0x0a, 0xa4, 0x8f, 0xc9, 0x29, 0x83, - 0x2f, 0xea, 0xf4, 0x93, 0x8f, 0xb7, 0x0e, 0x49, 0x83, 0x58, 0x1c, 0xb8, 0x48, 0xc7, 0x5b, 0x87, - 0xa4, 0x6e, 0xb5, 0xd0, 0x0c, 0x64, 0xda, 0x66, 0xc7, 0xf4, 0x04, 0x2a, 0x6f, 0x84, 0xd4, 0x19, - 0x8f, 0xa8, 0xb3, 0x0a, 0xe0, 0xda, 0x8e, 0xd7, 0xb0, 0x9d, 0x16, 0x71, 0xaa, 0x99, 0x79, 0x6d, - 0xa1, 0xbc, 0x7c, 0x73, 0x51, 0x5d, 0x88, 0x45, 0x55, 0xa1, 0xc5, 0x5d, 0xdb, 0xf1, 0x76, 0x28, - 0xaf, 0x9e, 0x77, 0xe5, 0x27, 0x7a, 0x13, 0x0a, 0x4c, 0x88, 0x67, 0x38, 0x87, 0xc4, 0xab, 0x66, - 0x99, 0x94, 0x5b, 0x67, 0x48, 0xd9, 0x63, 0xcc, 0x3a, 0x83, 0xe7, 0xdf, 0x08, 0x43, 0xd1, 0x25, - 0x8e, 0x69, 0xb4, 0xcd, 0x0f, 0x8c, 0x83, 0x36, 0xa9, 0xe6, 0xe6, 0xb5, 0x85, 0x09, 0x3d, 0x44, - 0xa3, 0xf3, 0x3f, 0x26, 0xa7, 0x6e, 0xc3, 0xb6, 0xda, 0xa7, 0xd5, 0x09, 0xc6, 0x30, 0x41, 0x09, - 0x3b, 0x56, 0xfb, 0x94, 0x2d, 0x9a, 0xdd, 0xb3, 0x3c, 0xde, 0x9b, 0x67, 0xbd, 0x79, 0x46, 0x61, - 0xdd, 0x0b, 0x50, 0xe9, 0x98, 0x56, 0xa3, 0x63, 0xb7, 0x1a, 0xbe, 0x41, 0x80, 0x19, 0xa4, 0xdc, - 0x31, 0xad, 0x27, 0x76, 0x4b, 0x97, 0x66, 0xa1, 0x9c, 0xc6, 0x49, 0x98, 0xb3, 0x20, 0x38, 0x8d, - 0x13, 0x95, 0x73, 0x11, 0xa6, 0xa9, 0xcc, 0xa6, 0x43, 0x0c, 0x8f, 0x04, 0xcc, 0x45, 0xc6, 0x3c, - 0xd5, 0x31, 0xad, 0x55, 0xd6, 0x13, 0xe2, 0x37, 0x4e, 0x06, 0xf8, 0x4b, 0x82, 0xdf, 0x38, 0x09, - 0xf3, 0xe3, 0x45, 0xc8, 0xfb, 0x36, 0x47, 0x13, 0x30, 0xbe, 0xbd, 0xb3, 0x5d, 0xaf, 0x8c, 0x21, - 0x80, 0xec, 0xca, 0xee, 0x6a, 0x7d, 0x7b, 0xad, 0xa2, 0xa1, 0x02, 0xe4, 0xd6, 0xea, 0xbc, 0x91, - 0xc2, 0x8f, 0x00, 0x02, 0xeb, 0xa2, 0x1c, 0xa4, 0x37, 0xeb, 0xdf, 0xab, 0x8c, 0x51, 0x9e, 0xfd, - 0xba, 0xbe, 0xbb, 0xb1, 0xb3, 0x5d, 0xd1, 0xe8, 0xe0, 0x55, 0xbd, 0xbe, 0xb2, 0x57, 0xaf, 0xa4, - 0x28, 0xc7, 0x93, 0x9d, 0xb5, 0x4a, 0x1a, 0xe5, 0x21, 0xb3, 0xbf, 0xb2, 0xf5, 0xac, 0x5e, 0x19, - 0xc7, 0x9f, 0x6a, 0x50, 0x12, 0xeb, 0xc5, 0x7d, 0x02, 0xbd, 0x06, 0xd9, 0x23, 0xe6, 0x17, 0x6c, - 0x2b, 0x16, 0x96, 0xaf, 0x44, 0x16, 0x37, 0xe4, 0x3b, 0xba, 0xe0, 0x45, 0x18, 0xd2, 0xc7, 0x7d, - 0xb7, 0x9a, 0x9a, 0x4f, 0x2f, 0x14, 0x96, 0x2b, 0x8b, 0xdc, 0x61, 0x17, 0x37, 0xc9, 0xe9, 0xbe, - 0xd1, 0xee, 0x11, 0x9d, 0x76, 0x22, 0x04, 0xe3, 0x1d, 0xdb, 0x21, 0x6c, 0xc7, 0x4e, 0xe8, 0xec, - 0x9b, 0x6e, 0x63, 0xb6, 0x68, 0x62, 0xb7, 0xf2, 0x06, 0xfe, 0x4c, 0x03, 0x78, 0xda, 0xf3, 0x92, - 0x5d, 0x63, 0x06, 0x32, 0x7d, 0x2a, 0x58, 0xb8, 0x05, 0x6f, 0x30, 0x9f, 0x20, 0x86, 0x4b, 0x7c, - 0x9f, 0xa0, 0x0d, 0x74, 0x09, 0x72, 0x5d, 0x87, 0xf4, 0x1b, 0xc7, 0x7d, 0x06, 0x32, 0xa1, 0x67, - 0x69, 0x73, 0xb3, 0x8f, 0xae, 0x43, 0xd1, 0x3c, 0xb4, 0x6c, 0x87, 0x34, 0xb8, 0xac, 0x0c, 0xeb, - 0x2d, 0x70, 0x1a, 0xd3, 0x5b, 0x61, 0xe1, 0x82, 0xb3, 0x2a, 0xcb, 0x16, 0x25, 0x61, 0x0b, 0x0a, - 0x4c, 0xd5, 0x91, 0xcc, 0x77, 0x37, 0xd0, 0x31, 0xc5, 0x86, 0x0d, 0x9a, 0x50, 0x68, 0x8d, 0xdf, - 0x03, 0xb4, 0x46, 0xda, 0xc4, 0x23, 0xa3, 0x44, 0x0f, 0xc5, 0x26, 0x69, 0xd5, 0x26, 0xf8, 0x17, - 0x1a, 0x4c, 0x87, 0xc4, 0x8f, 0x34, 0xad, 0x2a, 0xe4, 0x5a, 0x4c, 0x18, 0xd7, 0x20, 0xad, 0xcb, - 0x26, 0xba, 0x0f, 0x13, 0x42, 0x01, 0xb7, 0x9a, 0x4e, 0xd8, 0x34, 0x39, 0xae, 0x93, 0x8b, 0x3f, - 0x4b, 0x41, 0x5e, 0x4c, 0x74, 0xa7, 0x8b, 0x56, 0xa0, 0xe4, 0xf0, 0x46, 0x83, 0xcd, 0x47, 0x68, - 0x54, 0x4b, 0x0e, 0x42, 0xeb, 0x63, 0x7a, 0x51, 0x0c, 0x61, 0x64, 0xf4, 0x1d, 0x28, 0x48, 0x11, - 0xdd, 0x9e, 0x27, 0x4c, 0x5e, 0x0d, 0x0b, 0x08, 0xf6, 0xdf, 0xfa, 0x98, 0x0e, 0x82, 0xfd, 0x69, - 0xcf, 0x43, 0x7b, 0x30, 0x23, 0x07, 0xf3, 0xd9, 0x08, 0x35, 0xd2, 0x4c, 0xca, 0x7c, 0x58, 0xca, - 0xe0, 0x52, 0xad, 0x8f, 0xe9, 0x48, 0x8c, 0x57, 0x3a, 0x55, 0x95, 0xbc, 0x13, 0x1e, 0xbc, 0x07, - 0x54, 0xda, 0x3b, 0xb1, 0x06, 0x55, 0xda, 0x3b, 0xb1, 0x1e, 0xe5, 0x21, 0x27, 0x5a, 0xf8, 0xcf, - 0x29, 0x00, 0xb9, 0x1a, 0x3b, 0x5d, 0xb4, 0x06, 0x65, 0x47, 0xb4, 0x42, 0xd6, 0xba, 0x1c, 0x6b, - 0x2d, 0xb1, 0x88, 0x63, 0x7a, 0x49, 0x0e, 0xe2, 0xca, 0xbd, 0x01, 0x45, 0x5f, 0x4a, 0x60, 0xb0, - 0xd9, 0x18, 0x83, 0xf9, 0x12, 0x0a, 0x72, 0x00, 0x35, 0xd9, 0x3b, 0x70, 0xc1, 0x1f, 0x1f, 0x63, - 0xb3, 0xeb, 0x43, 0x6c, 0xe6, 0x0b, 0x9c, 0x96, 0x12, 0x54, 0xab, 0xa9, 0x8a, 0x05, 0x66, 0x9b, - 0x8d, 0x31, 0xdb, 0xa0, 0x62, 0xd4, 0x70, 0x40, 0xf3, 0x25, 0x6f, 0xe2, 0xbf, 0xa4, 0x21, 0xb7, - 0x6a, 0x77, 0xba, 0x86, 0x43, 0x57, 0x23, 0xeb, 0x10, 0xb7, 0xd7, 0xf6, 0x98, 0xb9, 0xca, 0xcb, - 0x37, 0xc2, 0x12, 0x05, 0x9b, 0xfc, 0xab, 0x33, 0x56, 0x5d, 0x0c, 0xa1, 0x83, 0x45, 0x7a, 0x4c, - 0x9d, 0x63, 0xb0, 0x48, 0x8e, 0x62, 0x88, 0x74, 0xe4, 0x74, 0xe0, 0xc8, 0x35, 0xc8, 0xf5, 0x89, - 0x13, 0xa4, 0xf4, 0xf5, 0x31, 0x5d, 0x12, 0xd0, 0x5d, 0x98, 0x8c, 0xa6, 0x97, 0x8c, 0xe0, 0x29, - 0x37, 0xc3, 0xd9, 0xe8, 0x06, 0x14, 0x43, 0x39, 0x2e, 0x2b, 0xf8, 0x0a, 0x1d, 0x25, 0xc5, 0x5d, - 0x94, 0x71, 0x95, 0xe6, 0xe3, 0xe2, 0xfa, 0x98, 0x8c, 0xac, 0xa1, 0x60, 0x32, 0x11, 0x0e, 0x26, - 0xf8, 0xbb, 0x50, 0x0a, 0x19, 0x82, 0xe6, 0x97, 0xfa, 0xdb, 0xcf, 0x56, 0xb6, 0x78, 0x32, 0x7a, - 0xcc, 0xf2, 0x8f, 0x5e, 0xd1, 0x68, 0x4e, 0xdb, 0xaa, 0xef, 0xee, 0x56, 0x52, 0xa8, 0x04, 0xf9, - 0xed, 0x9d, 0xbd, 0x06, 0xe7, 0x4a, 0xe3, 0xd7, 0x7d, 0x09, 0x22, 0x99, 0x29, 0x39, 0x6c, 0x4c, - 0xc9, 0x61, 0x9a, 0xcc, 0x61, 0xa9, 0x20, 0x87, 0xa5, 0x1f, 0x95, 0xa1, 0xc8, 0x8d, 0xd7, 0xe8, - 0x59, 0x34, 0x8f, 0xfe, 0x4e, 0x03, 0x08, 0x5c, 0x05, 0x2d, 0x41, 0xae, 0xc9, 0x85, 0x57, 0x35, - 0x16, 0x69, 0x2e, 0xc4, 0xae, 0x87, 0x2e, 0xb9, 0xd0, 0x2b, 0x90, 0x73, 0x7b, 0xcd, 0x26, 0x71, - 0x65, 0x3e, 0xbb, 0x14, 0x0d, 0x76, 0x22, 0x14, 0xe9, 0x92, 0x8f, 0x0e, 0x79, 0x6e, 0x98, 0xed, - 0x1e, 0xcb, 0x6e, 0xc3, 0x87, 0x08, 0x3e, 0xfc, 0x6b, 0x0d, 0x0a, 0xca, 0xce, 0xfc, 0x92, 0x11, - 0xf6, 0x0a, 0xe4, 0x99, 0x0e, 0xa4, 0x25, 0x62, 0xec, 0x84, 0x1e, 0x10, 0xd0, 0xb7, 0x21, 0x2f, - 0xb7, 0xb7, 0x0c, 0xb3, 0xd5, 0x78, 0xb1, 0x3b, 0x5d, 0x3d, 0x60, 0xc5, 0x9b, 0x30, 0xc5, 0xac, - 0xd2, 0xa4, 0x27, 0x67, 0x69, 0x47, 0xf5, 0x6c, 0xa9, 0x45, 0xce, 0x96, 0x35, 0x98, 0xe8, 0x1e, - 0x9d, 0xba, 0x66, 0xd3, 0x68, 0x0b, 0x2d, 0xfc, 0x36, 0x7e, 0x0b, 0x90, 0x2a, 0x6c, 0x94, 0xe9, - 0xe2, 0x12, 0x14, 0xd6, 0x0d, 0xf7, 0x48, 0xa8, 0x84, 0xef, 0x43, 0x89, 0x36, 0x37, 0xf7, 0xcf, - 0xa1, 0x23, 0x3b, 0xf9, 0x4b, 0xee, 0x91, 0x6c, 0x8e, 0x60, 0xfc, 0xc8, 0x70, 0x8f, 0xd8, 0x44, - 0x4b, 0x3a, 0xfb, 0x46, 0x77, 0xa1, 0xd2, 0xe4, 0x93, 0x6c, 0x44, 0xee, 0x03, 0x93, 0x82, 0xee, - 0x1f, 0xf3, 0xde, 0x85, 0x22, 0x9f, 0xc3, 0x57, 0xad, 0x04, 0x9e, 0x82, 0xc9, 0x5d, 0xcb, 0xe8, - 0xba, 0x47, 0xb6, 0x4c, 0x5d, 0x74, 0xd2, 0x95, 0x80, 0x36, 0x12, 0xe2, 0x1d, 0x98, 0x74, 0x48, - 0xc7, 0x30, 0x2d, 0xd3, 0x3a, 0x6c, 0x1c, 0x9c, 0x7a, 0xc4, 0x15, 0xb7, 0xa1, 0xb2, 0x4f, 0x7e, - 0x44, 0xa9, 0x54, 0xb5, 0x83, 0xb6, 0x7d, 0x20, 0x62, 0x18, 0xfb, 0xc6, 0x7f, 0xd2, 0xa0, 0xf8, - 0x8e, 0xe1, 0x35, 0xe5, 0xd2, 0xa1, 0x0d, 0x28, 0xfb, 0x91, 0x8b, 0x51, 0x84, 0x2e, 0x91, 0xfc, - 0xc9, 0xc6, 0xc8, 0x73, 0xb2, 0x4c, 0x7d, 0xa5, 0xa6, 0x4a, 0x60, 0xa2, 0x0c, 0xab, 0x49, 0xda, - 0xbe, 0xa8, 0x54, 0xb2, 0x28, 0xc6, 0xa8, 0x8a, 0x52, 0x09, 0x8f, 0x26, 0x83, 0xb3, 0x05, 0x8f, - 0x25, 0xbf, 0x49, 0x01, 0x1a, 0xd4, 0xe1, 0x8b, 0x1e, 0xb7, 0x6e, 0x41, 0xd9, 0xf5, 0x0c, 0x67, - 0x60, 0x6f, 0x94, 0x18, 0xd5, 0x8f, 0xbe, 0x77, 0x60, 0xb2, 0xeb, 0xd8, 0x87, 0x0e, 0x71, 0xdd, - 0x86, 0x65, 0x7b, 0xe6, 0xf3, 0x53, 0x71, 0x62, 0x2d, 0x4b, 0xf2, 0x36, 0xa3, 0xa2, 0x3a, 0xe4, - 0x9e, 0x9b, 0x6d, 0x8f, 0x38, 0x6e, 0x35, 0x33, 0x9f, 0x5e, 0x28, 0x2f, 0xdf, 0x3f, 0xcb, 0x6a, - 0x8b, 0x6f, 0x32, 0xfe, 0xbd, 0xd3, 0x2e, 0xd1, 0xe5, 0x58, 0xf5, 0x14, 0x98, 0x0d, 0x9d, 0x02, - 0x6f, 0x01, 0x04, 0xfc, 0x34, 0xd4, 0x6e, 0xef, 0x3c, 0x7d, 0xb6, 0x57, 0x19, 0x43, 0x45, 0x98, - 0xd8, 0xde, 0x59, 0xab, 0x6f, 0xd5, 0x69, 0x30, 0xc6, 0x4b, 0xd2, 0x36, 0xaa, 0x0d, 0xd1, 0x2c, - 0x4c, 0xbc, 0xa0, 0x54, 0x79, 0x99, 0x4e, 0xeb, 0x39, 0xd6, 0xde, 0x68, 0xe1, 0x9f, 0xa7, 0xa0, - 0x24, 0x76, 0xc1, 0x48, 0x5b, 0x51, 0x85, 0x48, 0x85, 0x20, 0xe8, 0x91, 0x93, 0xef, 0x8e, 0x96, - 0x38, 0xd9, 0xca, 0x26, 0x8d, 0x0d, 0x7c, 0xb1, 0x49, 0x4b, 0x98, 0xd5, 0x6f, 0xc7, 0xba, 0x6f, - 0x26, 0xd6, 0x7d, 0xd1, 0x0d, 0x28, 0xf9, 0xbb, 0xcd, 0x70, 0x45, 0x22, 0xcd, 0xeb, 0x45, 0xb9, - 0x91, 0x28, 0x0d, 0xdd, 0x82, 0x2c, 0xe9, 0x13, 0xcb, 0x73, 0xab, 0x05, 0x16, 0x75, 0x4b, 0xf2, - 0x70, 0x5b, 0xa7, 0x54, 0x5d, 0x74, 0xe2, 0x6f, 0xc1, 0x14, 0xbb, 0x44, 0x3c, 0x76, 0x0c, 0x4b, - 0xbd, 0xed, 0xec, 0xed, 0x6d, 0x09, 0xd3, 0xd1, 0x4f, 0x54, 0x86, 0xd4, 0xc6, 0x9a, 0x98, 0x68, - 0x6a, 0x63, 0x0d, 0x7f, 0xa4, 0x01, 0x52, 0xc7, 0x8d, 0x64, 0xcb, 0x88, 0x70, 0x09, 0x9f, 0x0e, - 0xe0, 0x67, 0x20, 0x43, 0x1c, 0xc7, 0x76, 0x98, 0xd5, 0xf2, 0x3a, 0x6f, 0xe0, 0x9b, 0x42, 0x07, - 0x9d, 0xf4, 0xed, 0x63, 0xdf, 0x31, 0xb8, 0x34, 0xcd, 0x57, 0x75, 0x13, 0xa6, 0x43, 0x5c, 0x23, - 0x45, 0xff, 0x3b, 0x70, 0x81, 0x09, 0xdb, 0x24, 0xa4, 0xbb, 0xd2, 0x36, 0xfb, 0x89, 0xa8, 0x5d, - 0xb8, 0x18, 0x65, 0xfc, 0x7a, 0x6d, 0x84, 0x5f, 0x17, 0x88, 0x7b, 0x66, 0x87, 0xec, 0xd9, 0x5b, - 0xc9, 0xba, 0xd1, 0xe8, 0x78, 0x4c, 0x4e, 0x5d, 0x91, 0x26, 0xd9, 0x37, 0xfe, 0xbd, 0x06, 0x97, - 0x06, 0x86, 0x7f, 0xcd, 0xab, 0x3a, 0x07, 0x70, 0x48, 0xb7, 0x0f, 0x69, 0xd1, 0x0e, 0x7e, 0xfd, - 0x56, 0x28, 0xbe, 0x9e, 0x34, 0xc0, 0x14, 0x85, 0x9e, 0x47, 0x90, 0x7d, 0xc2, 0x2a, 0x5f, 0xca, - 0xac, 0xc6, 0xe5, 0xac, 0x2c, 0xa3, 0xc3, 0xef, 0xe3, 0x79, 0x9d, 0x7d, 0xb3, 0x43, 0x01, 0x21, - 0xce, 0x33, 0x7d, 0x8b, 0x1f, 0x3e, 0xf2, 0xba, 0xdf, 0xa6, 0xe8, 0xcd, 0xb6, 0x49, 0x2c, 0x8f, - 0xf5, 0x8e, 0xb3, 0x5e, 0x85, 0x82, 0x17, 0xa1, 0xc2, 0x91, 0x56, 0x5a, 0x2d, 0x25, 0xb9, 0xfb, - 0xf2, 0xb4, 0xb0, 0x3c, 0xfc, 0x07, 0x0d, 0xa6, 0x94, 0x01, 0x23, 0xd9, 0xee, 0x25, 0xc8, 0xf2, - 0xfa, 0x9e, 0xc8, 0x23, 0x33, 0xe1, 0x51, 0x1c, 0x46, 0x17, 0x3c, 0x68, 0x11, 0x72, 0xfc, 0x4b, - 0x9e, 0xb0, 0xe2, 0xd9, 0x25, 0x13, 0xbe, 0x05, 0xd3, 0x82, 0x44, 0x3a, 0x76, 0xdc, 0x36, 0x61, - 0x06, 0xc5, 0x1f, 0xc2, 0x4c, 0x98, 0x6d, 0xa4, 0x29, 0x29, 0x4a, 0xa6, 0xce, 0xa3, 0xe4, 0x8a, - 0x54, 0xf2, 0x59, 0xb7, 0xa5, 0xa4, 0xbd, 0xe8, 0xaa, 0xab, 0x2b, 0x92, 0x8a, 0xac, 0x88, 0x3f, - 0x01, 0x29, 0xe2, 0x1b, 0x9d, 0xc0, 0xb4, 0xdc, 0x0e, 0x5b, 0xa6, 0xeb, 0x1f, 0x86, 0x3e, 0x00, - 0xa4, 0x12, 0xbf, 0x69, 0x85, 0xd6, 0xc8, 0x73, 0xc7, 0x38, 0xec, 0x10, 0x3f, 0xd4, 0xd3, 0xa3, - 0xb1, 0x4a, 0x1c, 0x29, 0x38, 0x2e, 0xc1, 0xd4, 0x13, 0xbb, 0x4f, 0xb6, 0x38, 0x35, 0x70, 0x19, - 0x7e, 0x35, 0xf2, 0x97, 0xcd, 0x6f, 0x53, 0x70, 0x75, 0xc0, 0x48, 0xe0, 0x7f, 0xd7, 0xa0, 0xb8, - 0xd2, 0x36, 0x9c, 0x8e, 0x04, 0x7e, 0x03, 0xb2, 0xfc, 0xc0, 0x2f, 0x2e, 0xd0, 0xb7, 0xc3, 0x62, - 0x54, 0x5e, 0xde, 0x58, 0xe1, 0xd7, 0x03, 0x31, 0x8a, 0x2a, 0x2e, 0x6a, 0xec, 0x6b, 0x91, 0x9a, - 0xfb, 0x1a, 0x7a, 0x00, 0x19, 0x83, 0x0e, 0x61, 0xd1, 0xac, 0x1c, 0xbd, 0x6a, 0x31, 0x69, 0xec, - 0x9c, 0xc3, 0xb9, 0xf0, 0x6b, 0x50, 0x50, 0x10, 0xe8, 0x0d, 0xf2, 0x71, 0x5d, 0x9c, 0x65, 0x56, - 0x56, 0xf7, 0x36, 0xf6, 0xf9, 0xc5, 0xb2, 0x0c, 0xb0, 0x56, 0xf7, 0xdb, 0x29, 0xfc, 0xae, 0x18, - 0x25, 0xe2, 0x9d, 0xaa, 0x8f, 0x96, 0xa4, 0x4f, 0xea, 0x5c, 0xfa, 0x9c, 0x40, 0x49, 0x4c, 0x7f, - 0xa4, 0x0d, 0xf8, 0x0a, 0x64, 0x99, 0x3c, 0xb9, 0xff, 0x66, 0x63, 0x60, 0x65, 0xa8, 0xe2, 0x8c, - 0x78, 0x12, 0x4a, 0xbb, 0x9e, 0xe1, 0xf5, 0x5c, 0xb9, 0xff, 0xfe, 0xa6, 0x41, 0x59, 0x52, 0x46, - 0x2d, 0xf4, 0xc9, 0x1a, 0x05, 0xcf, 0x00, 0x7e, 0x85, 0xe2, 0x22, 0x64, 0x5b, 0x07, 0xbb, 0xe6, - 0x07, 0xb2, 0x28, 0x2b, 0x5a, 0x94, 0xde, 0xe6, 0x38, 0xfc, 0x65, 0x44, 0xb4, 0xe8, 0x85, 0xd6, - 0x31, 0x9e, 0x7b, 0x1b, 0x56, 0x8b, 0x9c, 0xb0, 0x23, 0xd8, 0xb8, 0x1e, 0x10, 0xd8, 0xfd, 0x4e, - 0xbc, 0xa0, 0xb0, 0x73, 0x97, 0xfa, 0xa2, 0x32, 0x0d, 0x53, 0x2b, 0x3d, 0xef, 0xa8, 0x6e, 0x19, - 0x07, 0x6d, 0x19, 0xb1, 0xf0, 0x0c, 0x20, 0x4a, 0x5c, 0x33, 0x5d, 0x95, 0x5a, 0x87, 0x69, 0x4a, - 0x25, 0x96, 0x67, 0x36, 0x95, 0xf0, 0x26, 0x93, 0x98, 0x16, 0x49, 0x62, 0x86, 0xeb, 0xbe, 0xb0, - 0x9d, 0x96, 0x98, 0x9a, 0xdf, 0xc6, 0x6b, 0x5c, 0xf8, 0x33, 0x37, 0x94, 0xa6, 0xbe, 0xa8, 0x94, - 0x85, 0x40, 0xca, 0x63, 0xe2, 0x0d, 0x91, 0x82, 0xef, 0xc3, 0x05, 0xc9, 0x29, 0x8a, 0x60, 0x43, - 0x98, 0x77, 0xe0, 0xaa, 0x64, 0x5e, 0x3d, 0xa2, 0x17, 0x91, 0xa7, 0x02, 0xf0, 0xcb, 0xea, 0xf9, - 0x08, 0xaa, 0xbe, 0x9e, 0xec, 0xdc, 0x69, 0xb7, 0x55, 0x05, 0x7a, 0xae, 0xd8, 0x33, 0x79, 0x9d, - 0x7d, 0x53, 0x9a, 0x63, 0xb7, 0xfd, 0x23, 0x01, 0xfd, 0xc6, 0xab, 0x30, 0x2b, 0x65, 0x88, 0x13, - 0x61, 0x58, 0xc8, 0x80, 0x42, 0x71, 0x42, 0x84, 0xc1, 0xe8, 0xd0, 0xe1, 0x66, 0x57, 0x39, 0xc3, - 0xa6, 0x65, 0x32, 0x35, 0x45, 0xe6, 0x05, 0xbe, 0x23, 0xa8, 0x62, 0x6a, 0xc6, 0x10, 0x64, 0x2a, - 0x40, 0x25, 0x8b, 0x85, 0xa0, 0xe4, 0x81, 0x85, 0x18, 0x10, 0xfd, 0x1e, 0xcc, 0xf9, 0x4a, 0x50, - 0xbb, 0x3d, 0x25, 0x4e, 0xc7, 0x74, 0x5d, 0xa5, 0xb2, 0x12, 0x37, 0xf1, 0xdb, 0x30, 0xde, 0x25, - 0x22, 0xa6, 0x14, 0x96, 0xd1, 0x22, 0x7f, 0xe7, 0x5c, 0x54, 0x06, 0xb3, 0x7e, 0xdc, 0x82, 0x6b, - 0x52, 0x3a, 0xb7, 0x68, 0xac, 0xf8, 0xa8, 0x52, 0xf2, 0x02, 0xcb, 0xcd, 0x3a, 0x78, 0x81, 0x4d, - 0xf3, 0xb5, 0xf7, 0x4b, 0x7c, 0x6f, 0x71, 0x43, 0x4a, 0xdf, 0x1a, 0x29, 0x57, 0x6c, 0x72, 0x9b, - 0xfa, 0x2e, 0x39, 0x92, 0xb0, 0x03, 0x98, 0x09, 0x7b, 0xf2, 0x48, 0x61, 0x6c, 0x06, 0x32, 0x9e, - 0x7d, 0x4c, 0x64, 0x10, 0xe3, 0x0d, 0xa9, 0xb0, 0xef, 0xe6, 0x23, 0x29, 0x6c, 0x04, 0xc2, 0xd8, - 0x96, 0x1c, 0x55, 0x5f, 0xba, 0x9a, 0xf2, 0xf0, 0xc5, 0x1b, 0x78, 0x1b, 0x2e, 0x46, 0xc3, 0xc4, - 0x48, 0x2a, 0xef, 0xf3, 0x0d, 0x1c, 0x17, 0x49, 0x46, 0x92, 0xfb, 0x76, 0x10, 0x0c, 0x94, 0x80, - 0x32, 0x92, 0x48, 0x1d, 0x6a, 0x71, 0xf1, 0xe5, 0xab, 0xd8, 0xaf, 0x7e, 0xb8, 0x19, 0x49, 0x98, - 0x1b, 0x08, 0x1b, 0x7d, 0xf9, 0x83, 0x18, 0x91, 0x1e, 0x1a, 0x23, 0x84, 0x93, 0x04, 0x51, 0xec, - 0x6b, 0xd8, 0x74, 0x02, 0x23, 0x08, 0xa0, 0xa3, 0x62, 0xd0, 0x1c, 0xe2, 0x63, 0xb0, 0x86, 0xdc, - 0xd8, 0x6a, 0xd8, 0x1d, 0x69, 0x31, 0xde, 0x09, 0x62, 0xe7, 0x40, 0x64, 0x1e, 0x49, 0xf0, 0xbb, - 0x30, 0x9f, 0x1c, 0x94, 0x47, 0x91, 0x7c, 0x0f, 0x43, 0xde, 0x3f, 0x50, 0x2a, 0xbf, 0x11, 0x28, - 0x40, 0x6e, 0x7b, 0x67, 0xf7, 0xe9, 0xca, 0x6a, 0xbd, 0xa2, 0x2d, 0xff, 0x37, 0x0d, 0xa9, 0xcd, - 0x7d, 0xf4, 0x7d, 0xc8, 0xf0, 0x47, 0xb2, 0x21, 0x2f, 0xa3, 0xb5, 0x61, 0xef, 0x80, 0xf8, 0xca, - 0x47, 0xff, 0xfc, 0xcf, 0xa7, 0xa9, 0x8b, 0x78, 0x6a, 0xa9, 0xff, 0xaa, 0xd1, 0xee, 0x1e, 0x19, - 0x4b, 0xc7, 0xfd, 0x25, 0x96, 0x13, 0x1e, 0x6a, 0xf7, 0xd0, 0x3e, 0xa4, 0x9f, 0xf6, 0x3c, 0x94, - 0xf8, 0x6c, 0x5a, 0x4b, 0x7e, 0x1f, 0xc4, 0x35, 0x26, 0x79, 0x06, 0x4f, 0xaa, 0x92, 0xbb, 0x3d, - 0x8f, 0xca, 0xed, 0x43, 0x41, 0x7d, 0xe2, 0x3b, 0xf3, 0x41, 0xb5, 0x76, 0xf6, 0xf3, 0x21, 0xc6, - 0x0c, 0xef, 0x0a, 0xbe, 0xa4, 0xe2, 0xf1, 0x97, 0x48, 0x75, 0x3e, 0x7b, 0x27, 0x16, 0x4a, 0x7c, - 0x73, 0xad, 0x25, 0x3f, 0x2b, 0xc6, 0xcf, 0xc7, 0x3b, 0xb1, 0xa8, 0x5c, 0x5b, 0x3c, 0x2b, 0x36, - 0x3d, 0x74, 0x2d, 0xe6, 0xe5, 0x49, 0x7d, 0x63, 0xa9, 0xcd, 0x27, 0x33, 0x08, 0xa4, 0xeb, 0x0c, - 0xe9, 0x32, 0xbe, 0xa8, 0x22, 0x35, 0x7d, 0xbe, 0x87, 0xda, 0xbd, 0xe5, 0x23, 0xc8, 0xb0, 0x22, - 0x2b, 0x6a, 0xc8, 0x8f, 0x5a, 0x4c, 0x79, 0x38, 0x61, 0x07, 0x84, 0xca, 0xb3, 0x78, 0x96, 0xa1, - 0x4d, 0xe3, 0xb2, 0x8f, 0xc6, 0xea, 0xac, 0x0f, 0xb5, 0x7b, 0x0b, 0xda, 0xcb, 0xda, 0xf2, 0x8f, - 0xc7, 0x21, 0xc3, 0xea, 0x56, 0xa8, 0x0b, 0x10, 0x54, 0x24, 0xa3, 0xf3, 0x1c, 0xa8, 0x71, 0x46, - 0xe7, 0x39, 0x58, 0xcc, 0xc4, 0xd7, 0x18, 0xf2, 0x2c, 0x9e, 0xf1, 0x91, 0xd9, 0x2f, 0x30, 0x96, - 0x58, 0x85, 0x8a, 0x9a, 0xf5, 0x05, 0x14, 0x94, 0xca, 0x22, 0x8a, 0x93, 0x18, 0x2a, 0x4d, 0x46, - 0xb7, 0x49, 0x4c, 0x59, 0x12, 0xdf, 0x60, 0xa0, 0x57, 0x71, 0x55, 0x35, 0x2e, 0xc7, 0x75, 0x18, - 0x27, 0x05, 0xfe, 0x58, 0x83, 0x72, 0xb8, 0xba, 0x88, 0x6e, 0xc4, 0x88, 0x8e, 0x16, 0x29, 0x6b, - 0x37, 0x87, 0x33, 0x25, 0xaa, 0xc0, 0xf1, 0x8f, 0x09, 0xe9, 0x1a, 0x94, 0x53, 0xd8, 0x1e, 0xfd, - 0x44, 0x83, 0xc9, 0x48, 0xcd, 0x10, 0xc5, 0x41, 0x0c, 0x54, 0x24, 0x6b, 0xb7, 0xce, 0xe0, 0x12, - 0x9a, 0xdc, 0x61, 0x9a, 0x5c, 0xc7, 0x57, 0x06, 0x8d, 0xe1, 0x99, 0x1d, 0xe2, 0xd9, 0x42, 0x9b, - 0xe5, 0xff, 0xa5, 0x21, 0xb7, 0xca, 0x7f, 0x2e, 0x87, 0x3c, 0xc8, 0xfb, 0x65, 0x38, 0x34, 0x17, - 0x57, 0x12, 0x09, 0x8e, 0xec, 0xb5, 0x6b, 0x89, 0xfd, 0x42, 0x85, 0xdb, 0x4c, 0x85, 0x79, 0x7c, - 0xd9, 0x57, 0x41, 0xfc, 0x2c, 0x6f, 0x89, 0x5f, 0xbe, 0x97, 0x8c, 0x56, 0x8b, 0x2e, 0xc9, 0x8f, - 0x34, 0x28, 0xaa, 0xd5, 0x32, 0x74, 0x3d, 0xb6, 0x18, 0xa3, 0x16, 0xdc, 0x6a, 0x78, 0x18, 0x8b, - 0xc0, 0xbf, 0xcb, 0xf0, 0x6f, 0xe0, 0xb9, 0x24, 0x7c, 0x87, 0xf1, 0x87, 0x55, 0xe0, 0xf5, 0xae, - 0x78, 0x15, 0x42, 0xe5, 0xb4, 0x78, 0x15, 0xc2, 0xe5, 0xb2, 0xb3, 0x55, 0xe8, 0x31, 0x7e, 0xaa, - 0xc2, 0x09, 0x40, 0x50, 0xde, 0x42, 0xb1, 0xc6, 0x55, 0x2e, 0x31, 0x51, 0x1f, 0x1c, 0xac, 0x8c, - 0xc5, 0xec, 0x80, 0x08, 0x76, 0xdb, 0x74, 0xa9, 0x2f, 0x2e, 0xff, 0x31, 0x0b, 0x85, 0x27, 0x86, - 0x69, 0x79, 0xc4, 0x32, 0xac, 0x26, 0x41, 0x87, 0x90, 0x61, 0x59, 0x2a, 0x1a, 0x78, 0xd4, 0xb2, - 0x4f, 0x34, 0xf0, 0x84, 0x6a, 0x22, 0xf8, 0x16, 0x83, 0xbe, 0x86, 0x6b, 0x3e, 0x74, 0x27, 0x90, - 0xbf, 0xc4, 0xea, 0x19, 0x74, 0xca, 0xc7, 0x90, 0xe5, 0xf5, 0x0b, 0x14, 0x91, 0x16, 0xaa, 0x73, - 0xd4, 0xae, 0xc4, 0x77, 0x26, 0xee, 0x32, 0x15, 0xcb, 0x65, 0xcc, 0x14, 0xec, 0x07, 0x00, 0x41, - 0xb5, 0x2e, 0x6a, 0xdf, 0x81, 0xe2, 0x5e, 0x6d, 0x3e, 0x99, 0x41, 0x00, 0xdf, 0x63, 0xc0, 0x37, - 0xf1, 0xb5, 0x58, 0xe0, 0x96, 0x3f, 0x80, 0x82, 0x37, 0x61, 0x7c, 0xdd, 0x70, 0x8f, 0x50, 0x24, - 0x09, 0x29, 0xaf, 0xe1, 0xb5, 0x5a, 0x5c, 0x97, 0x80, 0xba, 0xc9, 0xa0, 0xe6, 0xf0, 0x6c, 0x2c, - 0xd4, 0x91, 0xe1, 0xd2, 0x98, 0x8e, 0x4c, 0xc8, 0xf2, 0x17, 0xf2, 0xa8, 0x39, 0x43, 0xaf, 0xec, - 0x51, 0x73, 0x86, 0x1f, 0xd5, 0xcf, 0x09, 0xd5, 0x83, 0x09, 0xf9, 0x2e, 0x8d, 0xae, 0x46, 0x96, - 0x27, 0xfc, 0x86, 0x5d, 0x9b, 0x4b, 0xea, 0x16, 0x80, 0x0b, 0x0c, 0x10, 0xe3, 0xab, 0xf1, 0xeb, - 0x27, 0xd8, 0x1f, 0x6a, 0xf7, 0x5e, 0xd6, 0x68, 0xf0, 0x86, 0xa0, 0xea, 0x39, 0xe0, 0x24, 0xd1, - 0x02, 0xea, 0x80, 0x93, 0x0c, 0x14, 0x4c, 0xf1, 0xab, 0x0c, 0xfd, 0x01, 0x5e, 0x88, 0x45, 0xf7, - 0x1c, 0xc3, 0x72, 0x9f, 0x13, 0xe7, 0x01, 0x2f, 0x6f, 0xb9, 0x47, 0x66, 0x97, 0x3a, 0xcc, 0xcf, - 0x2a, 0x30, 0x4e, 0x4f, 0x88, 0x34, 0x6f, 0x06, 0x17, 0xeb, 0xa8, 0x3a, 0x03, 0xe5, 0xac, 0xa8, - 0x3a, 0x83, 0x77, 0xf2, 0x98, 0xbc, 0xc9, 0x7e, 0x26, 0x4d, 0x18, 0x17, 0x35, 0xbc, 0x07, 0x05, - 0xe5, 0xfa, 0x8d, 0x62, 0x24, 0x86, 0x8b, 0x65, 0xd1, 0xbc, 0x19, 0x73, 0x77, 0xc7, 0xf3, 0x0c, - 0xb4, 0x86, 0x2f, 0x84, 0x41, 0x5b, 0x9c, 0x8d, 0xa2, 0x7e, 0x08, 0x45, 0xf5, 0x9e, 0x8e, 0x62, - 0x84, 0x46, 0xaa, 0x71, 0xd1, 0xe8, 0x18, 0x77, 0xcd, 0x8f, 0x09, 0x13, 0xfe, 0x8f, 0xc2, 0x25, - 0x2f, 0x45, 0x7f, 0x1f, 0x72, 0xe2, 0xf6, 0x1e, 0x37, 0xdf, 0x70, 0xfd, 0x2e, 0x6e, 0xbe, 0x91, - 0xab, 0x7f, 0xcc, 0x21, 0x8c, 0xc1, 0xd2, 0x5b, 0x8a, 0x4c, 0x49, 0x02, 0xf2, 0x31, 0xf1, 0x92, - 0x20, 0x83, 0x8a, 0x54, 0x12, 0xa4, 0x72, 0x43, 0x1c, 0x0a, 0x79, 0x48, 0x3c, 0xe1, 0x52, 0xf2, - 0xfa, 0x85, 0x12, 0x24, 0xaa, 0xf1, 0x1f, 0x0f, 0x63, 0x49, 0x3c, 0x37, 0x07, 0xa8, 0x22, 0xf8, - 0xa3, 0x1f, 0x02, 0x04, 0xa5, 0x86, 0xe8, 0x51, 0x28, 0xb6, 0x5e, 0x19, 0x3d, 0x0a, 0xc5, 0x57, - 0x2b, 0x62, 0x02, 0x49, 0x00, 0xce, 0xcf, 0xee, 0x14, 0xfe, 0x97, 0x1a, 0xa0, 0xc1, 0xd2, 0x04, - 0xba, 0x1f, 0x0f, 0x11, 0x5b, 0x0a, 0xad, 0xbd, 0x74, 0x3e, 0xe6, 0xc4, 0x7c, 0x11, 0xe8, 0xd5, - 0x64, 0x43, 0xba, 0x2f, 0xa8, 0x66, 0x9f, 0x68, 0x50, 0x0a, 0x15, 0x37, 0xd0, 0xed, 0x84, 0x75, - 0x8e, 0x94, 0x53, 0x6b, 0x77, 0xce, 0xe4, 0x4b, 0x3c, 0x2d, 0x2a, 0xbb, 0x42, 0x9e, 0x94, 0x7f, - 0xaa, 0x41, 0x39, 0x5c, 0x11, 0x41, 0x09, 0x00, 0x03, 0x35, 0xd9, 0xda, 0xc2, 0xd9, 0x8c, 0xe7, - 0x58, 0xad, 0xe0, 0xf0, 0xfc, 0x3e, 0xe4, 0x44, 0x21, 0x25, 0xce, 0x2d, 0xc2, 0x25, 0xdd, 0x38, - 0xb7, 0x88, 0x54, 0x61, 0x92, 0xdc, 0xc2, 0xb1, 0xdb, 0x44, 0xf1, 0x44, 0x51, 0x6e, 0x49, 0x82, - 0x1c, 0xee, 0x89, 0x91, 0x5a, 0xcd, 0x50, 0xc8, 0xc0, 0x13, 0x65, 0xb1, 0x05, 0x25, 0x48, 0x3c, - 0xc3, 0x13, 0xa3, 0xb5, 0x9a, 0x24, 0x4f, 0x64, 0xa8, 0x8a, 0x27, 0x06, 0xb5, 0x91, 0x38, 0x4f, - 0x1c, 0x28, 0x58, 0xc7, 0x79, 0xe2, 0x60, 0x79, 0x25, 0x69, 0x6d, 0x19, 0x78, 0xc8, 0x13, 0xa7, - 0x63, 0x6a, 0x29, 0xe8, 0xa5, 0x04, 0x9b, 0xc6, 0x16, 0xc3, 0x6b, 0x0f, 0xce, 0xc9, 0x3d, 0xdc, - 0x03, 0xf8, 0x6a, 0x48, 0x0f, 0xf8, 0xad, 0x06, 0x33, 0x71, 0xc5, 0x18, 0x94, 0x00, 0x96, 0x50, - 0x49, 0xaf, 0x2d, 0x9e, 0x97, 0xfd, 0x1c, 0x76, 0xf3, 0x7d, 0xe2, 0x51, 0xe5, 0xaf, 0x9f, 0xcf, - 0x69, 0xff, 0xf8, 0x7c, 0x4e, 0xfb, 0xd7, 0xe7, 0x73, 0xda, 0xaf, 0xfe, 0x3d, 0x37, 0x76, 0x90, - 0x65, 0xff, 0x57, 0xe9, 0xd5, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0x1d, 0x79, 0x2f, 0xad, 0x32, - 0x35, 0x00, 0x00, + // 3674 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5b, 0x5b, 0x6f, 0x1b, 0xc7, + 0x77, 0xd7, 0x92, 0x22, 0x29, 0x1e, 0x5e, 0x44, 0x8d, 0x64, 0x9b, 0xa2, 0x6d, 0x59, 0x1e, 0xdf, + 0x64, 0x3b, 0x16, 0xff, 0x7f, 0x25, 0xed, 0x83, 0x5b, 0x04, 0x91, 0x25, 0xc6, 0x52, 0x24, 0x4b, + 0xca, 0x8a, 0x56, 0x52, 0x20, 0x28, 0xb1, 0x22, 0xc7, 0xd2, 0x42, 0xe4, 0x2e, 0xb3, 0xbb, 0xa4, + 0xa5, 0x34, 0x2d, 0x8a, 0x20, 0x41, 0xd1, 0x02, 0x7d, 0x69, 0x1e, 0x7a, 0x7b, 0x2c, 0x8a, 0x22, + 0x2f, 0x7d, 0x2b, 0xfa, 0x15, 0x8a, 0xbe, 0xb4, 0x40, 0xbf, 0x40, 0x91, 0xf6, 0xa5, 0xdf, 0xa1, + 0x45, 0xff, 0x98, 0xdb, 0xee, 0xec, 0x72, 0x97, 0x52, 0xc2, 0x24, 0x2f, 0xf2, 0xce, 0x99, 0x33, + 0xe7, 0x9c, 0x39, 0x33, 0xe7, 0x9c, 0x99, 0xdf, 0xd0, 0x90, 0x77, 0xfa, 0xed, 0xd5, 0xbe, 0x63, + 0x7b, 0x36, 0x2a, 0x12, 0xaf, 0xdd, 0x71, 0x89, 0x33, 0x24, 0x4e, 0xff, 0xb8, 0xb6, 0x70, 0x62, + 0x9f, 0xd8, 0xac, 0xa3, 0x4e, 0xbf, 0x38, 0x4f, 0x6d, 0x91, 0xf2, 0xd4, 0x7b, 0xc3, 0x76, 0x9b, + 0xfd, 0xe9, 0x1f, 0xd7, 0xcf, 0x86, 0xa2, 0xeb, 0x26, 0xeb, 0x32, 0x06, 0xde, 0x29, 0xfb, 0xd3, + 0x3f, 0x66, 0xff, 0x88, 0xce, 0x5b, 0x27, 0xb6, 0x7d, 0xd2, 0x25, 0x75, 0xa3, 0x6f, 0xd6, 0x0d, + 0xcb, 0xb2, 0x3d, 0xc3, 0x33, 0x6d, 0xcb, 0xe5, 0xbd, 0xf8, 0x1b, 0x0d, 0xca, 0x3a, 0x71, 0xfb, + 0xb6, 0xe5, 0x92, 0x2d, 0x62, 0x74, 0x88, 0x83, 0x6e, 0x03, 0xb4, 0xbb, 0x03, 0xd7, 0x23, 0x4e, + 0xcb, 0xec, 0x54, 0xb5, 0x65, 0x6d, 0x65, 0x5a, 0xcf, 0x0b, 0xca, 0x76, 0x07, 0xdd, 0x84, 0x7c, + 0x8f, 0xf4, 0x8e, 0x79, 0x6f, 0x8a, 0xf5, 0xce, 0x70, 0xc2, 0x76, 0x07, 0xd5, 0x60, 0xc6, 0x21, + 0x43, 0xd3, 0x35, 0x6d, 0xab, 0x9a, 0x5e, 0xd6, 0x56, 0xd2, 0xba, 0xdf, 0xa6, 0x03, 0x1d, 0xe3, + 0x8d, 0xd7, 0xf2, 0x88, 0xd3, 0xab, 0x4e, 0xf3, 0x81, 0x94, 0xd0, 0x24, 0x4e, 0x0f, 0x7f, 0x9d, + 0x81, 0xa2, 0x6e, 0x58, 0x27, 0x44, 0x27, 0x9f, 0x0f, 0x88, 0xeb, 0xa1, 0x0a, 0xa4, 0xcf, 0xc8, + 0x05, 0x53, 0x5f, 0xd4, 0xe9, 0x27, 0x1f, 0x6f, 0x9d, 0x90, 0x16, 0xb1, 0xb8, 0xe2, 0x22, 0x1d, + 0x6f, 0x9d, 0x90, 0x86, 0xd5, 0x41, 0x0b, 0x90, 0xe9, 0x9a, 0x3d, 0xd3, 0x13, 0x5a, 0x79, 0x23, + 0x64, 0xce, 0x74, 0xc4, 0x9c, 0x0d, 0x00, 0xd7, 0x76, 0xbc, 0x96, 0xed, 0x74, 0x88, 0x53, 0xcd, + 0x2c, 0x6b, 0x2b, 0xe5, 0xb5, 0xfb, 0xab, 0xea, 0x42, 0xac, 0xaa, 0x06, 0xad, 0x1e, 0xda, 0x8e, + 0xb7, 0x4f, 0x79, 0xf5, 0xbc, 0x2b, 0x3f, 0xd1, 0x87, 0x50, 0x60, 0x42, 0x3c, 0xc3, 0x39, 0x21, + 0x5e, 0x35, 0xcb, 0xa4, 0x3c, 0xb8, 0x44, 0x4a, 0x93, 0x31, 0xeb, 0x4c, 0x3d, 0xff, 0x46, 0x18, + 0x8a, 0x2e, 0x71, 0x4c, 0xa3, 0x6b, 0x7e, 0x61, 0x1c, 0x77, 0x49, 0x35, 0xb7, 0xac, 0xad, 0xcc, + 0xe8, 0x21, 0x1a, 0x9d, 0xff, 0x19, 0xb9, 0x70, 0x5b, 0xb6, 0xd5, 0xbd, 0xa8, 0xce, 0x30, 0x86, + 0x19, 0x4a, 0xd8, 0xb7, 0xba, 0x17, 0x6c, 0xd1, 0xec, 0x81, 0xe5, 0xf1, 0xde, 0x3c, 0xeb, 0xcd, + 0x33, 0x0a, 0xeb, 0x5e, 0x81, 0x4a, 0xcf, 0xb4, 0x5a, 0x3d, 0xbb, 0xd3, 0xf2, 0x1d, 0x02, 0xcc, + 0x21, 0xe5, 0x9e, 0x69, 0xbd, 0xb2, 0x3b, 0xba, 0x74, 0x0b, 0xe5, 0x34, 0xce, 0xc3, 0x9c, 0x05, + 0xc1, 0x69, 0x9c, 0xab, 0x9c, 0xab, 0x30, 0x4f, 0x65, 0xb6, 0x1d, 0x62, 0x78, 0x24, 0x60, 0x2e, + 0x32, 0xe6, 0xb9, 0x9e, 0x69, 0x6d, 0xb0, 0x9e, 0x10, 0xbf, 0x71, 0x3e, 0xc2, 0x5f, 0x12, 0xfc, + 0xc6, 0x79, 0x98, 0x1f, 0xaf, 0x42, 0xde, 0xf7, 0x39, 0x9a, 0x81, 0xe9, 0xbd, 0xfd, 0xbd, 0x46, + 0x65, 0x0a, 0x01, 0x64, 0xd7, 0x0f, 0x37, 0x1a, 0x7b, 0x9b, 0x15, 0x0d, 0x15, 0x20, 0xb7, 0xd9, + 0xe0, 0x8d, 0x14, 0x7e, 0x01, 0x10, 0x78, 0x17, 0xe5, 0x20, 0xbd, 0xd3, 0xf8, 0xbd, 0xca, 0x14, + 0xe5, 0x39, 0x6a, 0xe8, 0x87, 0xdb, 0xfb, 0x7b, 0x15, 0x8d, 0x0e, 0xde, 0xd0, 0x1b, 0xeb, 0xcd, + 0x46, 0x25, 0x45, 0x39, 0x5e, 0xed, 0x6f, 0x56, 0xd2, 0x28, 0x0f, 0x99, 0xa3, 0xf5, 0xdd, 0xd7, + 0x8d, 0xca, 0x34, 0xfe, 0x56, 0x83, 0x92, 0x58, 0x2f, 0x1e, 0x13, 0xe8, 0x3d, 0xc8, 0x9e, 0xb2, + 0xb8, 0x60, 0x5b, 0xb1, 0xb0, 0x76, 0x2b, 0xb2, 0xb8, 0xa1, 0xd8, 0xd1, 0x05, 0x2f, 0xc2, 0x90, + 0x3e, 0x1b, 0xba, 0xd5, 0xd4, 0x72, 0x7a, 0xa5, 0xb0, 0x56, 0x59, 0xe5, 0x01, 0xbb, 0xba, 0x43, + 0x2e, 0x8e, 0x8c, 0xee, 0x80, 0xe8, 0xb4, 0x13, 0x21, 0x98, 0xee, 0xd9, 0x0e, 0x61, 0x3b, 0x76, + 0x46, 0x67, 0xdf, 0x74, 0x1b, 0xb3, 0x45, 0x13, 0xbb, 0x95, 0x37, 0xf0, 0x77, 0x1a, 0xc0, 0xc1, + 0xc0, 0x4b, 0x0e, 0x8d, 0x05, 0xc8, 0x0c, 0xa9, 0x60, 0x11, 0x16, 0xbc, 0xc1, 0x62, 0x82, 0x18, + 0x2e, 0xf1, 0x63, 0x82, 0x36, 0xd0, 0x0d, 0xc8, 0xf5, 0x1d, 0x32, 0x6c, 0x9d, 0x0d, 0x99, 0x92, + 0x19, 0x3d, 0x4b, 0x9b, 0x3b, 0x43, 0x74, 0x17, 0x8a, 0xe6, 0x89, 0x65, 0x3b, 0xa4, 0xc5, 0x65, + 0x65, 0x58, 0x6f, 0x81, 0xd3, 0x98, 0xdd, 0x0a, 0x0b, 0x17, 0x9c, 0x55, 0x59, 0x76, 0x29, 0x09, + 0x5b, 0x50, 0x60, 0xa6, 0x4e, 0xe4, 0xbe, 0xc7, 0x81, 0x8d, 0x29, 0x36, 0x6c, 0xd4, 0x85, 0xc2, + 0x6a, 0xfc, 0x19, 0xa0, 0x4d, 0xd2, 0x25, 0x1e, 0x99, 0x24, 0x7b, 0x28, 0x3e, 0x49, 0xab, 0x3e, + 0xc1, 0x7f, 0xa1, 0xc1, 0x7c, 0x48, 0xfc, 0x44, 0xd3, 0xaa, 0x42, 0xae, 0xc3, 0x84, 0x71, 0x0b, + 0xd2, 0xba, 0x6c, 0xa2, 0xa7, 0x30, 0x23, 0x0c, 0x70, 0xab, 0xe9, 0x84, 0x4d, 0x93, 0xe3, 0x36, + 0xb9, 0xf8, 0xbb, 0x14, 0xe4, 0xc5, 0x44, 0xf7, 0xfb, 0x68, 0x1d, 0x4a, 0x0e, 0x6f, 0xb4, 0xd8, + 0x7c, 0x84, 0x45, 0xb5, 0xe4, 0x24, 0xb4, 0x35, 0xa5, 0x17, 0xc5, 0x10, 0x46, 0x46, 0xbf, 0x03, + 0x05, 0x29, 0xa2, 0x3f, 0xf0, 0x84, 0xcb, 0xab, 0x61, 0x01, 0xc1, 0xfe, 0xdb, 0x9a, 0xd2, 0x41, + 0xb0, 0x1f, 0x0c, 0x3c, 0xd4, 0x84, 0x05, 0x39, 0x98, 0xcf, 0x46, 0x98, 0x91, 0x66, 0x52, 0x96, + 0xc3, 0x52, 0x46, 0x97, 0x6a, 0x6b, 0x4a, 0x47, 0x62, 0xbc, 0xd2, 0xa9, 0x9a, 0xe4, 0x9d, 0xf3, + 0xe4, 0x3d, 0x62, 0x52, 0xf3, 0xdc, 0x1a, 0x35, 0xa9, 0x79, 0x6e, 0xbd, 0xc8, 0x43, 0x4e, 0xb4, + 0xf0, 0x3f, 0xa7, 0x00, 0xe4, 0x6a, 0xec, 0xf7, 0xd1, 0x26, 0x94, 0x1d, 0xd1, 0x0a, 0x79, 0xeb, + 0x66, 0xac, 0xb7, 0xc4, 0x22, 0x4e, 0xe9, 0x25, 0x39, 0x88, 0x1b, 0xf7, 0x3e, 0x14, 0x7d, 0x29, + 0x81, 0xc3, 0x16, 0x63, 0x1c, 0xe6, 0x4b, 0x28, 0xc8, 0x01, 0xd4, 0x65, 0x9f, 0xc0, 0x35, 0x7f, + 0x7c, 0x8c, 0xcf, 0xee, 0x8e, 0xf1, 0x99, 0x2f, 0x70, 0x5e, 0x4a, 0x50, 0xbd, 0xa6, 0x1a, 0x16, + 0xb8, 0x6d, 0x31, 0xc6, 0x6d, 0xa3, 0x86, 0x51, 0xc7, 0x01, 0xad, 0x97, 0xbc, 0x89, 0xff, 0x27, + 0x0d, 0xb9, 0x0d, 0xbb, 0xd7, 0x37, 0x1c, 0xba, 0x1a, 0x59, 0x87, 0xb8, 0x83, 0xae, 0xc7, 0xdc, + 0x55, 0x5e, 0xbb, 0x17, 0x96, 0x28, 0xd8, 0xe4, 0xbf, 0x3a, 0x63, 0xd5, 0xc5, 0x10, 0x3a, 0x58, + 0x94, 0xc7, 0xd4, 0x15, 0x06, 0x8b, 0xe2, 0x28, 0x86, 0xc8, 0x40, 0x4e, 0x07, 0x81, 0x5c, 0x83, + 0xdc, 0x90, 0x38, 0x41, 0x49, 0xdf, 0x9a, 0xd2, 0x25, 0x01, 0x3d, 0x86, 0xd9, 0x68, 0x79, 0xc9, + 0x08, 0x9e, 0x72, 0x3b, 0x5c, 0x8d, 0xee, 0x41, 0x31, 0x54, 0xe3, 0xb2, 0x82, 0xaf, 0xd0, 0x53, + 0x4a, 0xdc, 0x75, 0x99, 0x57, 0x69, 0x3d, 0x2e, 0x6e, 0x4d, 0xc9, 0xcc, 0x7a, 0x5d, 0x66, 0xd6, + 0x19, 0x31, 0x4a, 0xe4, 0xd6, 0x50, 0x92, 0xf9, 0x20, 0x9c, 0x64, 0xf0, 0x07, 0x50, 0x0a, 0x39, + 0x88, 0xd6, 0x9d, 0xc6, 0xc7, 0xaf, 0xd7, 0x77, 0x79, 0x91, 0x7a, 0xc9, 0xea, 0x92, 0x5e, 0xd1, + 0x68, 0xad, 0xdb, 0x6d, 0x1c, 0x1e, 0x56, 0x52, 0xa8, 0x04, 0xf9, 0xbd, 0xfd, 0x66, 0x8b, 0x73, + 0xa5, 0xf1, 0x4b, 0x5f, 0x82, 0x28, 0x72, 0x4a, 0x6d, 0x9b, 0x52, 0x6a, 0x9b, 0x26, 0x6b, 0x5b, + 0x2a, 0xa8, 0x6d, 0xac, 0xcc, 0xed, 0x36, 0xd6, 0x0f, 0x1b, 0x95, 0xe9, 0x17, 0x65, 0x28, 0x72, + 0xff, 0xb6, 0x06, 0x16, 0x2d, 0xb5, 0x7f, 0xa7, 0x01, 0x04, 0xd1, 0x84, 0xea, 0x90, 0x6b, 0x73, + 0x3d, 0x55, 0x8d, 0x25, 0xa3, 0x6b, 0xb1, 0x4b, 0xa6, 0x4b, 0x2e, 0xf4, 0x6b, 0xc8, 0xb9, 0x83, + 0x76, 0x9b, 0xb8, 0xb2, 0xe4, 0xdd, 0x88, 0xe6, 0x43, 0x91, 0xad, 0x74, 0xc9, 0x47, 0x87, 0xbc, + 0x31, 0xcc, 0xee, 0x80, 0x15, 0xc0, 0xf1, 0x43, 0x04, 0x1f, 0xfe, 0x6b, 0x0d, 0x0a, 0xca, 0xe6, + 0xfd, 0x91, 0x49, 0xf8, 0x16, 0xe4, 0x99, 0x0d, 0xa4, 0x23, 0xd2, 0xf0, 0x8c, 0x1e, 0x10, 0xd0, + 0x6f, 0x43, 0x5e, 0x46, 0x80, 0xcc, 0xc4, 0xd5, 0x78, 0xb1, 0xfb, 0x7d, 0x3d, 0x60, 0xc5, 0x3b, + 0x30, 0xc7, 0xbc, 0xd2, 0xa6, 0x87, 0x6b, 0xe9, 0x47, 0xf5, 0xf8, 0xa9, 0x45, 0x8e, 0x9f, 0x35, + 0x98, 0xe9, 0x9f, 0x5e, 0xb8, 0x66, 0xdb, 0xe8, 0x0a, 0x2b, 0xfc, 0x36, 0xfe, 0x08, 0x90, 0x2a, + 0x6c, 0x92, 0xe9, 0xe2, 0x12, 0x14, 0xb6, 0x0c, 0xf7, 0x54, 0x98, 0x84, 0x9f, 0x42, 0x89, 0x36, + 0x77, 0x8e, 0xae, 0x60, 0x23, 0xbb, 0x1c, 0x48, 0xee, 0x89, 0x7c, 0x8e, 0x60, 0xfa, 0xd4, 0x70, + 0x4f, 0xd9, 0x44, 0x4b, 0x3a, 0xfb, 0x46, 0x8f, 0xa1, 0xd2, 0xe6, 0x93, 0x6c, 0x45, 0xae, 0x0c, + 0xb3, 0x82, 0xee, 0x9f, 0x04, 0x3f, 0x85, 0x22, 0x9f, 0xc3, 0x4f, 0x6d, 0x04, 0x9e, 0x83, 0xd9, + 0x43, 0xcb, 0xe8, 0xbb, 0xa7, 0xb6, 0xac, 0x6e, 0x74, 0xd2, 0x95, 0x80, 0x36, 0x91, 0xc6, 0x47, + 0x30, 0xeb, 0x90, 0x9e, 0x61, 0x5a, 0xa6, 0x75, 0xd2, 0x3a, 0xbe, 0xf0, 0x88, 0x2b, 0x2e, 0x4c, + 0x65, 0x9f, 0xfc, 0x82, 0x52, 0xa9, 0x69, 0xc7, 0x5d, 0xfb, 0x58, 0xa4, 0x39, 0xf6, 0x8d, 0xff, + 0x49, 0x83, 0xe2, 0x27, 0x86, 0xd7, 0x96, 0x4b, 0x87, 0xb6, 0xa1, 0xec, 0x27, 0x37, 0x46, 0x11, + 0xb6, 0x44, 0x4a, 0x2c, 0x1b, 0x23, 0x8f, 0xd2, 0xb2, 0x3a, 0x96, 0xda, 0x2a, 0x81, 0x89, 0x32, + 0xac, 0x36, 0xe9, 0xfa, 0xa2, 0x52, 0xc9, 0xa2, 0x18, 0xa3, 0x2a, 0x4a, 0x25, 0xbc, 0x98, 0x0d, + 0x8e, 0x1f, 0x3c, 0x97, 0xfc, 0x4d, 0x0a, 0xd0, 0xa8, 0x0d, 0x3f, 0xf4, 0x44, 0xf6, 0x00, 0xca, + 0xae, 0x67, 0x38, 0x23, 0x7b, 0xa3, 0xc4, 0xa8, 0x7e, 0x82, 0x7e, 0x04, 0xb3, 0x7d, 0xc7, 0x3e, + 0x71, 0x88, 0xeb, 0xb6, 0x2c, 0xdb, 0x33, 0xdf, 0x5c, 0x88, 0x43, 0x6d, 0x59, 0x92, 0xf7, 0x18, + 0x15, 0x35, 0x20, 0xf7, 0xc6, 0xec, 0x7a, 0xc4, 0x71, 0xab, 0x99, 0xe5, 0xf4, 0x4a, 0x79, 0xed, + 0xe9, 0x65, 0x5e, 0x5b, 0xfd, 0x90, 0xf1, 0x37, 0x2f, 0xfa, 0x44, 0x97, 0x63, 0xd5, 0x83, 0x62, + 0x36, 0x74, 0x50, 0x7c, 0x00, 0x10, 0xf0, 0xd3, 0x54, 0xbb, 0xb7, 0x7f, 0xf0, 0xba, 0x59, 0x99, + 0x42, 0x45, 0x98, 0xd9, 0xdb, 0xdf, 0x6c, 0xec, 0x36, 0x68, 0x5e, 0xc6, 0x75, 0xe9, 0x1b, 0xd5, + 0x87, 0x68, 0x11, 0x66, 0xde, 0x52, 0xaa, 0xbc, 0x6f, 0xa7, 0xf5, 0x1c, 0x6b, 0x6f, 0x77, 0xf0, + 0x9f, 0xa7, 0xa0, 0x24, 0x76, 0xc1, 0x44, 0x5b, 0x51, 0x55, 0x91, 0x0a, 0xa9, 0xa0, 0xa7, 0x52, + 0xbe, 0x3b, 0x3a, 0xe2, 0xf0, 0x2b, 0x9b, 0x34, 0x37, 0xf0, 0xc5, 0x26, 0x1d, 0xe1, 0x56, 0xbf, + 0x1d, 0x1b, 0xbe, 0x99, 0xd8, 0xf0, 0x45, 0xf7, 0xa0, 0xe4, 0xef, 0x36, 0xc3, 0x15, 0xb5, 0x36, + 0xaf, 0x17, 0xe5, 0x46, 0xa2, 0x34, 0xf4, 0x00, 0xb2, 0x64, 0x48, 0x2c, 0xcf, 0xad, 0x16, 0x58, + 0xd6, 0x2d, 0xc9, 0xf3, 0x6f, 0x83, 0x52, 0x75, 0xd1, 0x89, 0x7f, 0x0b, 0xe6, 0xd8, 0x3d, 0xe3, + 0xa5, 0x63, 0x58, 0xea, 0x85, 0xa8, 0xd9, 0xdc, 0x15, 0xae, 0xa3, 0x9f, 0xa8, 0x0c, 0xa9, 0xed, + 0x4d, 0x31, 0xd1, 0xd4, 0xf6, 0x26, 0xfe, 0x4a, 0x03, 0xa4, 0x8e, 0x9b, 0xc8, 0x97, 0x11, 0xe1, + 0x52, 0x7d, 0x3a, 0x50, 0xbf, 0x00, 0x19, 0xe2, 0x38, 0xb6, 0xc3, 0xbc, 0x96, 0xd7, 0x79, 0x03, + 0xdf, 0x17, 0x36, 0xe8, 0x64, 0x68, 0x9f, 0xf9, 0x81, 0xc1, 0xa5, 0x69, 0xbe, 0xa9, 0x3b, 0x30, + 0x1f, 0xe2, 0x9a, 0x28, 0xfb, 0x3f, 0x82, 0x6b, 0x4c, 0xd8, 0x0e, 0x21, 0xfd, 0xf5, 0xae, 0x39, + 0x4c, 0xd4, 0xda, 0x87, 0xeb, 0x51, 0xc6, 0x9f, 0xd7, 0x47, 0xf8, 0x77, 0x85, 0xc6, 0xa6, 0xd9, + 0x23, 0x4d, 0x7b, 0x37, 0xd9, 0x36, 0x9a, 0x1d, 0xcf, 0xc8, 0x85, 0x2b, 0xca, 0x24, 0xfb, 0xc6, + 0x7f, 0xaf, 0xc1, 0x8d, 0x91, 0xe1, 0x3f, 0xf3, 0xaa, 0x2e, 0x01, 0x9c, 0xd0, 0xed, 0x43, 0x3a, + 0xb4, 0x83, 0xdf, 0xd0, 0x15, 0x8a, 0x6f, 0x27, 0x4d, 0x30, 0x45, 0x61, 0xe7, 0x82, 0x58, 0x73, + 0xf6, 0xc7, 0x95, 0x35, 0xe6, 0x36, 0x14, 0x18, 0xe1, 0xd0, 0x33, 0xbc, 0x81, 0x3b, 0xb2, 0x18, + 0x7f, 0x24, 0xb6, 0x80, 0x1c, 0x34, 0xd1, 0xbc, 0x7e, 0x0d, 0x59, 0x76, 0x38, 0x95, 0x47, 0xb3, + 0xc8, 0x6d, 0x40, 0xb1, 0x43, 0x17, 0x8c, 0xf8, 0x14, 0xb2, 0xaf, 0x18, 0xa2, 0xa7, 0x58, 0x36, + 0x2d, 0x97, 0xc2, 0x32, 0x7a, 0x1c, 0x67, 0xc8, 0xeb, 0xec, 0x9b, 0x9d, 0x64, 0x08, 0x71, 0x5e, + 0xeb, 0xbb, 0xfc, 0xc4, 0x94, 0xd7, 0xfd, 0x36, 0x75, 0x59, 0xbb, 0x6b, 0x12, 0xcb, 0x63, 0xbd, + 0xd3, 0xac, 0x57, 0xa1, 0xe0, 0x55, 0xa8, 0x70, 0x4d, 0xeb, 0x9d, 0x8e, 0x72, 0x22, 0xf1, 0xe5, + 0x69, 0x61, 0x79, 0xf8, 0x1f, 0x34, 0x98, 0x53, 0x06, 0x4c, 0xe4, 0x98, 0x77, 0x20, 0xcb, 0x71, + 0x4b, 0x51, 0xfc, 0x16, 0xc2, 0xa3, 0xb8, 0x1a, 0x5d, 0xf0, 0xa0, 0x55, 0xc8, 0xf1, 0x2f, 0x79, + 0x2c, 0x8c, 0x67, 0x97, 0x4c, 0xf8, 0x01, 0xcc, 0x0b, 0x12, 0xe9, 0xd9, 0x71, 0x7b, 0x9b, 0x39, + 0x14, 0x7f, 0x09, 0x0b, 0x61, 0xb6, 0x89, 0xa6, 0xa4, 0x18, 0x99, 0xba, 0x8a, 0x91, 0xeb, 0xd2, + 0xc8, 0xd7, 0xfd, 0x8e, 0x52, 0xab, 0xa3, 0xab, 0xae, 0xae, 0x48, 0x2a, 0xb2, 0x22, 0xfe, 0x04, + 0xa4, 0x88, 0x5f, 0x74, 0x02, 0xf3, 0x72, 0x3b, 0xec, 0x9a, 0xae, 0x7f, 0x82, 0xfb, 0x02, 0x90, + 0x4a, 0xfc, 0xa5, 0x0d, 0xda, 0x24, 0x6f, 0x1c, 0xe3, 0xa4, 0x47, 0xfc, 0xfa, 0x44, 0xcf, 0xf3, + 0x2a, 0x71, 0xa2, 0x8c, 0x5e, 0x87, 0xb9, 0x57, 0xf6, 0x90, 0xa6, 0x06, 0x4a, 0x0d, 0x42, 0x86, + 0xdf, 0xe7, 0xfc, 0x65, 0xf3, 0xdb, 0x54, 0xb9, 0x3a, 0x60, 0x22, 0xe5, 0xff, 0xa6, 0x41, 0x71, + 0xbd, 0x6b, 0x38, 0x3d, 0xa9, 0xf8, 0x7d, 0xc8, 0xf2, 0x5b, 0x8a, 0x00, 0x06, 0x1e, 0x86, 0xc5, + 0xa8, 0xbc, 0xbc, 0xb1, 0xce, 0xef, 0x34, 0x62, 0x14, 0x35, 0x5c, 0xbc, 0x1d, 0x6c, 0x46, 0xde, + 0x12, 0x36, 0xd1, 0x33, 0xc8, 0x18, 0x74, 0x08, 0x4b, 0xc1, 0xe5, 0xe8, 0xfd, 0x90, 0x49, 0x63, + 0x87, 0x33, 0xce, 0x85, 0xdf, 0x83, 0x82, 0xa2, 0x81, 0xde, 0x80, 0x5f, 0x36, 0xc4, 0x01, 0x6c, + 0x7d, 0xa3, 0xb9, 0x7d, 0xc4, 0x2f, 0xc6, 0x65, 0x80, 0xcd, 0x86, 0xdf, 0x4e, 0xe1, 0x4f, 0xc5, + 0x28, 0x91, 0xef, 0x54, 0x7b, 0xb4, 0x24, 0x7b, 0x52, 0x57, 0xb2, 0xe7, 0x1c, 0x4a, 0x62, 0xfa, + 0x93, 0xa6, 0x6f, 0x26, 0x2f, 0x21, 0x7d, 0x2b, 0xc6, 0xeb, 0x82, 0x11, 0xcf, 0x42, 0x49, 0x24, + 0x74, 0xb1, 0xff, 0xfe, 0x55, 0x83, 0xb2, 0xa4, 0x4c, 0x0a, 0x60, 0x4a, 0xec, 0x85, 0x57, 0x00, + 0x1f, 0x79, 0xb9, 0x0e, 0xd9, 0xce, 0xf1, 0xa1, 0xf9, 0x85, 0x04, 0x9b, 0x45, 0x8b, 0xd2, 0xbb, + 0x5c, 0x0f, 0x7f, 0xf1, 0x11, 0x2d, 0x7a, 0x0b, 0x77, 0x8c, 0x37, 0xde, 0xb6, 0xd5, 0x21, 0xe7, + 0xec, 0xdc, 0x38, 0xad, 0x07, 0x04, 0x76, 0x29, 0x15, 0x2f, 0x43, 0xec, 0xb0, 0xa8, 0xbe, 0x14, + 0xcd, 0xc3, 0xdc, 0xfa, 0xc0, 0x3b, 0x6d, 0x58, 0xc6, 0x71, 0x57, 0x66, 0x2c, 0x5a, 0x66, 0x29, + 0x71, 0xd3, 0x74, 0x55, 0x6a, 0x03, 0xe6, 0x29, 0x95, 0x58, 0x9e, 0xd9, 0x56, 0xd2, 0x9b, 0x2c, + 0x62, 0x5a, 0xa4, 0x88, 0x19, 0xae, 0xfb, 0xd6, 0x76, 0x3a, 0x62, 0x6a, 0x7e, 0x1b, 0x6f, 0x72, + 0xe1, 0xaf, 0xdd, 0x50, 0x99, 0xfa, 0xa1, 0x52, 0x56, 0x02, 0x29, 0x2f, 0x89, 0x37, 0x46, 0x0a, + 0x7e, 0x0a, 0xd7, 0x24, 0xa7, 0x00, 0xf7, 0xc6, 0x30, 0xef, 0xc3, 0x6d, 0xc9, 0xbc, 0x71, 0x4a, + 0x6f, 0x4f, 0x07, 0x42, 0xe1, 0x8f, 0xb5, 0xf3, 0x05, 0x54, 0x7d, 0x3b, 0xd9, 0x61, 0xd9, 0xee, + 0xaa, 0x06, 0x0c, 0x5c, 0xb1, 0x67, 0xf2, 0x3a, 0xfb, 0xa6, 0x34, 0xc7, 0xee, 0xfa, 0x47, 0x02, + 0xfa, 0x8d, 0x37, 0x60, 0x51, 0xca, 0x10, 0xc7, 0xd8, 0xb0, 0x90, 0x11, 0x83, 0xe2, 0x84, 0x08, + 0x87, 0xd1, 0xa1, 0xe3, 0xdd, 0xae, 0x72, 0x86, 0x5d, 0xcb, 0x64, 0x6a, 0x8a, 0xcc, 0x6b, 0x7c, + 0x47, 0x50, 0xc3, 0xd4, 0x8a, 0x21, 0xc8, 0x54, 0x80, 0x4a, 0x16, 0x0b, 0x41, 0xc9, 0x23, 0x0b, + 0x31, 0x22, 0xfa, 0x33, 0x58, 0xf2, 0x8d, 0xa0, 0x7e, 0x3b, 0x20, 0x4e, 0xcf, 0x74, 0x5d, 0x05, + 0x0e, 0x8a, 0x9b, 0xf8, 0x43, 0x98, 0xee, 0x13, 0x91, 0x53, 0x0a, 0x6b, 0x68, 0x95, 0xbf, 0xdf, + 0xae, 0x2a, 0x83, 0x59, 0x3f, 0xee, 0xc0, 0x1d, 0x29, 0x9d, 0x7b, 0x34, 0x56, 0x7c, 0xd4, 0x28, + 0x79, 0xeb, 0xe6, 0x6e, 0x1d, 0xbd, 0x75, 0xa7, 0xf9, 0xda, 0xfb, 0x10, 0xe5, 0x47, 0xdc, 0x91, + 0x32, 0xb6, 0x26, 0xaa, 0x15, 0x3b, 0xdc, 0xa7, 0x7e, 0x48, 0x4e, 0x24, 0xec, 0x18, 0x16, 0xc2, + 0x91, 0x3c, 0x51, 0x1a, 0x5b, 0x80, 0x8c, 0x67, 0x9f, 0x11, 0x99, 0xc4, 0x78, 0x43, 0x1a, 0xec, + 0x87, 0xf9, 0x44, 0x06, 0x1b, 0x81, 0x30, 0xb6, 0x25, 0x27, 0xb5, 0x97, 0xae, 0xa6, 0x3c, 0x7c, + 0xf1, 0x06, 0xde, 0x83, 0xeb, 0xd1, 0x34, 0x31, 0x91, 0xc9, 0x47, 0x7c, 0x03, 0xc7, 0x65, 0x92, + 0x89, 0xe4, 0x7e, 0x1c, 0x24, 0x03, 0x25, 0xa1, 0x4c, 0x24, 0x52, 0x87, 0x5a, 0x5c, 0x7e, 0xf9, + 0x29, 0xf6, 0xab, 0x9f, 0x6e, 0x26, 0x12, 0xe6, 0x06, 0xc2, 0x26, 0x5f, 0xfe, 0x20, 0x47, 0xa4, + 0xc7, 0xe6, 0x08, 0x11, 0x24, 0x41, 0x16, 0xfb, 0x19, 0x36, 0x9d, 0xd0, 0x11, 0x24, 0xd0, 0x49, + 0x75, 0xd0, 0x1a, 0xe2, 0xeb, 0x60, 0x0d, 0xb9, 0xb1, 0xd5, 0xb4, 0x3b, 0xd1, 0x62, 0x7c, 0x12, + 0xe4, 0xce, 0x91, 0xcc, 0x3c, 0x91, 0xe0, 0x4f, 0x61, 0x39, 0x39, 0x29, 0x4f, 0x22, 0xf9, 0x49, + 0x1d, 0xf2, 0xfe, 0x81, 0x52, 0xf9, 0xed, 0x43, 0x01, 0x72, 0x7b, 0xfb, 0x87, 0x07, 0xeb, 0x1b, + 0x0d, 0xfe, 0xe3, 0x87, 0x8d, 0x7d, 0x5d, 0x7f, 0x7d, 0xd0, 0xac, 0xa4, 0xd6, 0xfe, 0x2f, 0x0d, + 0xa9, 0x9d, 0x23, 0xf4, 0xfb, 0x90, 0xe1, 0x2f, 0x81, 0x63, 0x9e, 0x7f, 0x6b, 0xe3, 0x1e, 0x3b, + 0xf1, 0xad, 0xaf, 0xfe, 0xe3, 0xbf, 0xbf, 0x4d, 0x5d, 0xc7, 0x73, 0xf5, 0xe1, 0xbb, 0x46, 0xb7, + 0x7f, 0x6a, 0xd4, 0xcf, 0x86, 0x75, 0x56, 0x20, 0x9e, 0x6b, 0x4f, 0xd0, 0x11, 0xa4, 0x0f, 0x06, + 0x1e, 0x4a, 0x7c, 0x1b, 0xae, 0x25, 0x3f, 0x82, 0xe2, 0x1a, 0x93, 0xbc, 0x80, 0x67, 0x55, 0xc9, + 0xfd, 0x81, 0x47, 0xe5, 0x0e, 0xa1, 0xa0, 0xbe, 0x63, 0x5e, 0xfa, 0x6a, 0x5c, 0xbb, 0xfc, 0x8d, + 0x14, 0x63, 0xa6, 0xef, 0x16, 0xbe, 0xa1, 0xea, 0xe3, 0xcf, 0xad, 0xea, 0x7c, 0x9a, 0xe7, 0x16, + 0x4a, 0x7c, 0x58, 0xae, 0x25, 0xbf, 0x9d, 0xc6, 0xcf, 0xc7, 0x3b, 0xb7, 0xa8, 0x5c, 0x5b, 0xbc, + 0x9d, 0xb6, 0x3d, 0x74, 0x27, 0xe6, 0xed, 0x4c, 0x7d, 0x25, 0xaa, 0x2d, 0x27, 0x33, 0x08, 0x4d, + 0x77, 0x99, 0xa6, 0x9b, 0xf8, 0xba, 0xaa, 0xa9, 0xed, 0xf3, 0x3d, 0xd7, 0x9e, 0xac, 0x9d, 0x42, + 0x86, 0xc1, 0xc4, 0xa8, 0x25, 0x3f, 0x6a, 0x31, 0x00, 0x77, 0xc2, 0x0e, 0x08, 0x01, 0xcc, 0x78, + 0x91, 0x69, 0x9b, 0xc7, 0x65, 0x5f, 0x1b, 0x43, 0x8a, 0x9f, 0x6b, 0x4f, 0x56, 0xb4, 0x5f, 0x69, + 0x6b, 0xff, 0x3b, 0x0d, 0x19, 0x06, 0x1a, 0xa1, 0x3e, 0x40, 0x80, 0xa9, 0x46, 0xe7, 0x39, 0x82, + 0xd2, 0x46, 0xe7, 0x39, 0x0a, 0xc7, 0xe2, 0x3b, 0x4c, 0xf3, 0x22, 0x5e, 0xf0, 0x35, 0x33, 0x40, + 0xaa, 0xce, 0x30, 0x36, 0xea, 0xd6, 0xb7, 0x02, 0x37, 0xe3, 0xd1, 0x86, 0xe2, 0x24, 0x86, 0xc0, + 0xd5, 0xe8, 0x36, 0x89, 0x01, 0x56, 0xf1, 0x3d, 0xa6, 0xf4, 0x36, 0xae, 0xaa, 0xce, 0xe5, 0x7a, + 0x1d, 0xc6, 0x49, 0x15, 0x7f, 0xad, 0x41, 0x39, 0x8c, 0x8f, 0xa2, 0x7b, 0x31, 0xa2, 0xa3, 0x30, + 0x6b, 0xed, 0xfe, 0x78, 0xa6, 0x44, 0x13, 0xb8, 0xfe, 0x33, 0x42, 0xfa, 0x06, 0xe5, 0x14, 0xbe, + 0x47, 0x7f, 0xa2, 0xc1, 0x6c, 0x04, 0xf5, 0x44, 0x71, 0x2a, 0x46, 0x30, 0xd5, 0xda, 0x83, 0x4b, + 0xb8, 0x84, 0x25, 0x8f, 0x98, 0x25, 0x77, 0xf1, 0xad, 0x51, 0x67, 0x78, 0x66, 0x8f, 0x78, 0xb6, + 0xb0, 0xc6, 0x5f, 0x09, 0x0e, 0x51, 0xc6, 0xae, 0x44, 0x08, 0xf2, 0x8c, 0x5d, 0x89, 0x30, 0xbe, + 0x39, 0x6e, 0x25, 0x38, 0x30, 0x49, 0x37, 0xfa, 0xff, 0xa7, 0x21, 0xb7, 0xc1, 0x7f, 0x8c, 0x88, + 0x3c, 0xc8, 0xfb, 0x60, 0x20, 0x5a, 0x8a, 0x03, 0x66, 0x82, 0x8b, 0x43, 0xed, 0x4e, 0x62, 0xbf, + 0x50, 0xff, 0x90, 0xa9, 0x5f, 0xc6, 0x37, 0x7d, 0xf5, 0xe2, 0x47, 0x8f, 0x75, 0x0e, 0x01, 0xd4, + 0x8d, 0x4e, 0x87, 0x4e, 0xfd, 0x8f, 0x35, 0x28, 0xaa, 0x98, 0x1d, 0xba, 0x1b, 0x0b, 0x09, 0xa9, + 0xb0, 0x5f, 0x0d, 0x8f, 0x63, 0x11, 0xfa, 0x1f, 0x33, 0xfd, 0xf7, 0xf0, 0x52, 0x92, 0x7e, 0x87, + 0xf1, 0x87, 0x4d, 0xe0, 0xa8, 0x5b, 0xbc, 0x09, 0x21, 0x50, 0x2f, 0xde, 0x84, 0x30, 0x68, 0x77, + 0xb9, 0x09, 0x03, 0xc6, 0x4f, 0x4d, 0x38, 0x07, 0x08, 0x40, 0x36, 0x14, 0xeb, 0x5c, 0xe5, 0x2a, + 0x15, 0x0d, 0xfe, 0x51, 0x7c, 0x2e, 0x66, 0xeb, 0x45, 0x74, 0x77, 0x4d, 0x97, 0x26, 0x81, 0xb5, + 0x7f, 0xcc, 0x42, 0xe1, 0x95, 0x61, 0x5a, 0x1e, 0xb1, 0x0c, 0xab, 0x4d, 0xd0, 0x09, 0x64, 0x58, + 0xad, 0x8c, 0x66, 0x3c, 0x15, 0x7c, 0x8a, 0x66, 0xbc, 0x10, 0x32, 0x83, 0x1f, 0x30, 0xd5, 0x77, + 0x70, 0xcd, 0x57, 0xdd, 0x0b, 0xe4, 0xd7, 0x19, 0xaa, 0x42, 0xa7, 0x7c, 0x06, 0x59, 0x01, 0xd8, + 0x47, 0xa4, 0x85, 0xd0, 0x96, 0xda, 0xad, 0xf8, 0xce, 0xc4, 0x5d, 0xa6, 0xea, 0x72, 0x19, 0x33, + 0x55, 0xf6, 0x07, 0x00, 0x01, 0x66, 0x18, 0xf5, 0xef, 0x08, 0xc4, 0x58, 0x5b, 0x4e, 0x66, 0x10, + 0x8a, 0x9f, 0x30, 0xc5, 0xf7, 0xf1, 0x9d, 0x58, 0xc5, 0x1d, 0x7f, 0x00, 0x55, 0xde, 0x86, 0xe9, + 0x2d, 0xc3, 0x3d, 0x45, 0x91, 0xea, 0xa7, 0xfc, 0x90, 0xa0, 0x56, 0x8b, 0xeb, 0x12, 0xaa, 0xee, + 0x33, 0x55, 0x4b, 0x78, 0x31, 0x56, 0xd5, 0xa9, 0xe1, 0xd2, 0x62, 0x82, 0x4c, 0xc8, 0xf2, 0x1f, + 0x17, 0x44, 0xdd, 0x19, 0xfa, 0x81, 0x42, 0xd4, 0x9d, 0xe1, 0xdf, 0x23, 0x5c, 0x51, 0xd5, 0x00, + 0x66, 0xe4, 0x93, 0x3e, 0xba, 0x1d, 0x59, 0x9e, 0xf0, 0xf3, 0x7f, 0x6d, 0x29, 0xa9, 0x5b, 0x28, + 0x5c, 0x61, 0x0a, 0x31, 0xbe, 0x1d, 0xbf, 0x7e, 0x82, 0xfd, 0xb9, 0xf6, 0xe4, 0x57, 0x1a, 0xad, + 0x1a, 0x10, 0x60, 0xaf, 0x23, 0x41, 0x12, 0x85, 0x71, 0x47, 0x82, 0x64, 0x04, 0xb6, 0xc5, 0xef, + 0x32, 0xed, 0xcf, 0xf0, 0x4a, 0xac, 0x76, 0xcf, 0x31, 0x2c, 0xf7, 0x0d, 0x71, 0x9e, 0x71, 0x90, + 0xcd, 0x3d, 0x35, 0xfb, 0x34, 0x60, 0xfe, 0xac, 0x02, 0xd3, 0xf4, 0x9c, 0x4a, 0x0b, 0x76, 0x70, + 0xbd, 0x8f, 0x9a, 0x33, 0x02, 0xaa, 0x45, 0xcd, 0x19, 0x45, 0x06, 0x62, 0x0a, 0x36, 0xfb, 0x11, + 0x3a, 0x61, 0x5c, 0xd4, 0xf1, 0x1e, 0x14, 0x14, 0x10, 0x00, 0xc5, 0x48, 0x0c, 0x43, 0x76, 0xd1, + 0x32, 0x11, 0x83, 0x20, 0xe0, 0x65, 0xa6, 0xb4, 0x86, 0xaf, 0x85, 0x95, 0x76, 0x38, 0x1b, 0xd5, + 0xfa, 0x25, 0x14, 0x55, 0xb4, 0x00, 0xc5, 0x08, 0x8d, 0x60, 0x82, 0xd1, 0xec, 0x18, 0x07, 0x36, + 0xc4, 0xa4, 0x09, 0xff, 0x27, 0xf7, 0x92, 0x97, 0x6a, 0xff, 0x1c, 0x72, 0x02, 0x43, 0x88, 0x9b, + 0x6f, 0x18, 0x45, 0x8c, 0x9b, 0x6f, 0x04, 0x80, 0x88, 0x39, 0xfd, 0x31, 0xb5, 0xf4, 0xae, 0x24, + 0x4b, 0x92, 0x50, 0xf9, 0x92, 0x78, 0x49, 0x2a, 0x03, 0x5c, 0x2c, 0x49, 0xa5, 0x72, 0x4f, 0x1d, + 0xab, 0xf2, 0x84, 0x78, 0x22, 0xa4, 0xe4, 0x25, 0x10, 0x25, 0x48, 0x54, 0xf3, 0x3f, 0x1e, 0xc7, + 0x92, 0x78, 0x60, 0x0f, 0xb4, 0x8a, 0xe4, 0x8f, 0xfe, 0x10, 0x20, 0x00, 0x3c, 0xa2, 0x67, 0xb0, + 0x58, 0xd4, 0x34, 0x7a, 0x06, 0x8b, 0xc7, 0x4c, 0x62, 0x12, 0x49, 0xa0, 0x9c, 0x5f, 0x1a, 0xa8, + 0xfa, 0xbf, 0xd4, 0x00, 0x8d, 0x02, 0x24, 0xe8, 0x69, 0xbc, 0x8a, 0x58, 0x40, 0xb6, 0xf6, 0xce, + 0xd5, 0x98, 0x13, 0xeb, 0x45, 0x60, 0x57, 0x9b, 0x0d, 0xe9, 0xbf, 0xa5, 0x96, 0x7d, 0xa3, 0x41, + 0x29, 0x04, 0xb1, 0xa0, 0x87, 0x09, 0xeb, 0x1c, 0x01, 0x75, 0x6b, 0x8f, 0x2e, 0xe5, 0x4b, 0x3c, + 0x9f, 0x29, 0xbb, 0x42, 0x1e, 0xd1, 0xff, 0x54, 0x83, 0x72, 0x18, 0x97, 0x41, 0x09, 0x0a, 0x46, + 0x90, 0xe1, 0xda, 0xca, 0xe5, 0x8c, 0x57, 0x58, 0xad, 0xe0, 0xd4, 0xfe, 0x39, 0xe4, 0x04, 0x9c, + 0x13, 0x17, 0x16, 0x61, 0x60, 0x39, 0x2e, 0x2c, 0x22, 0x58, 0x50, 0x52, 0x58, 0x38, 0x76, 0x97, + 0x28, 0x91, 0x28, 0x40, 0x9f, 0x24, 0x95, 0xe3, 0x23, 0x31, 0x82, 0x18, 0x8d, 0x55, 0x19, 0x44, + 0xa2, 0x84, 0x7c, 0x50, 0x82, 0xc4, 0x4b, 0x22, 0x31, 0x8a, 0x18, 0x25, 0x45, 0x22, 0xd3, 0xaa, + 0x44, 0x62, 0x80, 0xd0, 0xc4, 0x45, 0xe2, 0x08, 0x6c, 0x1e, 0x17, 0x89, 0xa3, 0x20, 0x4f, 0xd2, + 0xda, 0x32, 0xe5, 0xa1, 0x48, 0x9c, 0x8f, 0x41, 0x74, 0xd0, 0x3b, 0x09, 0x3e, 0x8d, 0x85, 0xe4, + 0x6b, 0xcf, 0xae, 0xc8, 0x3d, 0x3e, 0x02, 0xf8, 0x6a, 0xc8, 0x08, 0xf8, 0x5b, 0x0d, 0x16, 0xe2, + 0x20, 0x21, 0x94, 0xa0, 0x2c, 0x01, 0xcf, 0xaf, 0xad, 0x5e, 0x95, 0xfd, 0x0a, 0x7e, 0xf3, 0x63, + 0xe2, 0x45, 0xe5, 0x5f, 0xbe, 0x5f, 0xd2, 0xfe, 0xfd, 0xfb, 0x25, 0xed, 0x3f, 0xbf, 0x5f, 0xd2, + 0xfe, 0xea, 0xbf, 0x96, 0xa6, 0x8e, 0xb3, 0xec, 0x7f, 0x82, 0xbd, 0xfb, 0x9b, 0x00, 0x00, 0x00, + 0xff, 0xff, 0xdd, 0x84, 0xb6, 0xd7, 0x90, 0x36, 0x00, 0x00, } diff --git a/vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/rpc.proto b/vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/rpc.proto index bda48e025..2c18ce101 100644 --- a/vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/rpc.proto +++ b/vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/rpc.proto @@ -112,7 +112,13 @@ service Lease { }; } - // TODO(xiangli) List all existing Leases? + // LeaseLeases lists all existing leases. + rpc LeaseLeases(LeaseLeasesRequest) returns (LeaseLeasesResponse) { + option (google.api.http) = { + post: "/v3alpha/kv/lease/leases" + body: "*" + }; + } } service Cluster { @@ -184,7 +190,7 @@ service Maintenance { }; } - // HashKV computes the hash of all MVCC keys up to a given revision. + // HashKV computes the hash of all MVCC keys up to a given revision. rpc HashKV(HashKVRequest) returns (HashKVResponse) { option (google.api.http) = { post: "/v3alpha/maintenance/hash" @@ -511,6 +517,7 @@ message Compare { CREATE = 1; MOD = 2; VALUE= 3; + LEASE = 4; } // result is logical comparison operation for this comparison. CompareResult result = 1; @@ -527,10 +534,14 @@ message Compare { int64 mod_revision = 6; // value is the value of the given key, in bytes. bytes value = 7; + // lease is the lease id of the given key. + int64 lease = 8; + // leave room for more target_union field tags, jump to 64 } + // range_end compares the given target to all keys in the range [key, range_end). // See RangeRequest for more details on key ranges. - bytes range_end = 8; + bytes range_end = 64; // TODO: fill out with most of the rest of RangeRequest fields when needed. } @@ -752,6 +763,19 @@ message LeaseTimeToLiveResponse { repeated bytes keys = 5; } +message LeaseLeasesRequest { +} + +message LeaseStatus { + int64 ID = 1; + // TODO: int64 TTL = 2; +} + +message LeaseLeasesResponse { + ResponseHeader header = 1; + repeated LeaseStatus leases = 2; +} + message Member { // ID is the member ID for this member. uint64 ID = 1; @@ -828,6 +852,7 @@ message MoveLeaderResponse { enum AlarmType { NONE = 0; // default, used to query if any alarm is active NOSPACE = 1; // space quota is exhausted + CORRUPT = 2; // kv store corruption detected } message AlarmRequest { diff --git a/vendor/vendor.json b/vendor/vendor.json index ba4128568..d3ad965f7 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -912,6 +912,12 @@ "revision": "c914be64f07d9998f52bf0d598ec26d457168c0f", "revisionTime": "2016-11-06T04:23:43Z" }, + { + "checksumSHA1": "7BC2/27NId9xaPDB5w3nWN2mn9A=", + "path": "github.com/coreos/etcd/auth/authpb", + "revision": "6930e471ed55ef89641a658b9fcb777295d5055b", + "revisionTime": "2017-09-08T03:04:28Z" + }, { "checksumSHA1": "vHgur8rFMm8ewYO5tqJXXXE/XnA=", "comment": "v2.3.0-alpha.0-652-ge552791", @@ -921,18 +927,36 @@ { "checksumSHA1": "sUY/zcJDOG367WcDYCPRyreB4sI=", "path": "github.com/coreos/etcd/clientv3", - "revision": "c31bec0f29facff13f7c3e3d948e55dd6689ed42", - "revisionTime": "2017-07-19T15:37:30Z", - "version": "v3.2.4", - "versionExact": "v3.2.4" + "revision": "bb66589f8cf18960c7f3d56b1b83753caeed9c7a", + "revisionTime": "2017-09-01T16:15:15Z", + "version": "v3.2.7", + "versionExact": "v3.2.7" }, { - "checksumSHA1": "HWGjJoAdeVaq4dqkSKF6iYQj1aY=", + "checksumSHA1": "YuRZDQchOMiceil5cZ2+7NWeRKE=", "path": "github.com/coreos/etcd/clientv3/concurrency", - "revision": "c31bec0f29facff13f7c3e3d948e55dd6689ed42", - "revisionTime": "2017-07-19T15:37:30Z", - "version": "v3.2.4", - "versionExact": "v3.2.4" + "revision": "bb66589f8cf18960c7f3d56b1b83753caeed9c7a", + "revisionTime": "2017-09-01T16:15:15Z", + "version": "v3.2.7", + "versionExact": "v3.2.7" + }, + { + "checksumSHA1": "P9fegjOukUL4pPOCCY5K7/DQmTM=", + "path": "github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes", + "revision": "6930e471ed55ef89641a658b9fcb777295d5055b", + "revisionTime": "2017-09-08T03:04:28Z" + }, + { + "checksumSHA1": "c0ltvGUOnk8qaEshFwc0PDH5nbc=", + "path": "github.com/coreos/etcd/etcdserver/etcdserverpb", + "revision": "6930e471ed55ef89641a658b9fcb777295d5055b", + "revisionTime": "2017-09-08T03:04:28Z" + }, + { + "checksumSHA1": "JAkX9DfIBrSe0vUa07xl5cikxVQ=", + "path": "github.com/coreos/etcd/mvcc/mvccpb", + "revision": "6930e471ed55ef89641a658b9fcb777295d5055b", + "revisionTime": "2017-09-08T03:04:28Z" }, { "checksumSHA1": "mKIXx1kDwmVmdIpZ3pJtRBuUKso=",