functional-tester/rpcpb: include "Member" in "Response"

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
This commit is contained in:
Gyuho Lee 2018-04-05 14:15:50 -07:00
parent b70f9e1639
commit 6ceb71efb1
2 changed files with 481 additions and 150 deletions

View File

@ -286,6 +286,18 @@ type Member struct {
EtcdClientEndpoint string `protobuf:"bytes,204,opt,name=EtcdClientEndpoint,proto3" json:"EtcdClientEndpoint,omitempty" yaml:"etcd-client-endpoint"`
// Etcd defines etcd binary configuration flags.
Etcd *Etcd `protobuf:"bytes,301,opt,name=Etcd" json:"Etcd,omitempty" yaml:"etcd"`
// ClientCertData contains cert file contents from this member's etcd server.
ClientCertData string `protobuf:"bytes,401,opt,name=ClientCertData,proto3" json:"ClientCertData,omitempty" yaml:"client-cert-data"`
// ClientKeyData contains key file contents from this member's etcd server.
ClientKeyData string `protobuf:"bytes,402,opt,name=ClientKeyData,proto3" json:"ClientKeyData,omitempty" yaml:"client-key-data"`
// ClientTrustedCAData contains trusted CA file contents from this member's etcd server.
ClientTrustedCAData string `protobuf:"bytes,403,opt,name=ClientTrustedCAData,proto3" json:"ClientTrustedCAData,omitempty" yaml:"client-trusted-ca-data"`
// PeerCertData contains cert file contents from this member's etcd server.
PeerCertData string `protobuf:"bytes,501,opt,name=PeerCertData,proto3" json:"PeerCertData,omitempty" yaml:"peer-cert-data"`
// PeerKeyData contains key file contents from this member's etcd server.
PeerKeyData string `protobuf:"bytes,502,opt,name=PeerKeyData,proto3" json:"PeerKeyData,omitempty" yaml:"peer-key-data"`
// PeerTrustedCAData contains trusted CA file contents from this member's etcd server.
PeerTrustedCAData string `protobuf:"bytes,503,opt,name=PeerTrustedCAData,proto3" json:"PeerTrustedCAData,omitempty" yaml:"peer-trusted-ca-data"`
}
func (m *Member) Reset() { *m = Member{} }
@ -356,8 +368,10 @@ func (*Tester) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{2}
type Request struct {
Operation Operation `protobuf:"varint,1,opt,name=Operation,proto3,enum=rpcpb.Operation" json:"Operation,omitempty"`
Member *Member `protobuf:"bytes,2,opt,name=Member" json:"Member,omitempty"`
Tester *Tester `protobuf:"bytes,3,opt,name=Tester" json:"Tester,omitempty"`
// Member contains the same Member object from tester configuration.
Member *Member `protobuf:"bytes,2,opt,name=Member" json:"Member,omitempty"`
// Tester contains tester configuration.
Tester *Tester `protobuf:"bytes,3,opt,name=Tester" json:"Tester,omitempty"`
}
func (m *Request) Reset() { *m = Request{} }
@ -368,6 +382,8 @@ func (*Request) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{3
type Response struct {
Success bool `protobuf:"varint,1,opt,name=Success,proto3" json:"Success,omitempty"`
Status string `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
// Member contains the same Member object from tester request.
Member *Member `protobuf:"bytes,3,opt,name=Member" json:"Member,omitempty"`
}
func (m *Response) Reset() { *m = Response{} }
@ -867,6 +883,54 @@ func (m *Member) MarshalTo(dAtA []byte) (int, error) {
}
i += n1
}
if len(m.ClientCertData) > 0 {
dAtA[i] = 0x8a
i++
dAtA[i] = 0x19
i++
i = encodeVarintRpc(dAtA, i, uint64(len(m.ClientCertData)))
i += copy(dAtA[i:], m.ClientCertData)
}
if len(m.ClientKeyData) > 0 {
dAtA[i] = 0x92
i++
dAtA[i] = 0x19
i++
i = encodeVarintRpc(dAtA, i, uint64(len(m.ClientKeyData)))
i += copy(dAtA[i:], m.ClientKeyData)
}
if len(m.ClientTrustedCAData) > 0 {
dAtA[i] = 0x9a
i++
dAtA[i] = 0x19
i++
i = encodeVarintRpc(dAtA, i, uint64(len(m.ClientTrustedCAData)))
i += copy(dAtA[i:], m.ClientTrustedCAData)
}
if len(m.PeerCertData) > 0 {
dAtA[i] = 0xaa
i++
dAtA[i] = 0x1f
i++
i = encodeVarintRpc(dAtA, i, uint64(len(m.PeerCertData)))
i += copy(dAtA[i:], m.PeerCertData)
}
if len(m.PeerKeyData) > 0 {
dAtA[i] = 0xb2
i++
dAtA[i] = 0x1f
i++
i = encodeVarintRpc(dAtA, i, uint64(len(m.PeerKeyData)))
i += copy(dAtA[i:], m.PeerKeyData)
}
if len(m.PeerTrustedCAData) > 0 {
dAtA[i] = 0xba
i++
dAtA[i] = 0x1f
i++
i = encodeVarintRpc(dAtA, i, uint64(len(m.PeerTrustedCAData)))
i += copy(dAtA[i:], m.PeerTrustedCAData)
}
return i, nil
}
@ -1167,6 +1231,16 @@ func (m *Response) MarshalTo(dAtA []byte) (int, error) {
i = encodeVarintRpc(dAtA, i, uint64(len(m.Status)))
i += copy(dAtA[i:], m.Status)
}
if m.Member != nil {
dAtA[i] = 0x1a
i++
i = encodeVarintRpc(dAtA, i, uint64(m.Member.Size()))
n4, err := m.Member.MarshalTo(dAtA[i:])
if err != nil {
return 0, err
}
i += n4
}
return i, nil
}
@ -1327,6 +1401,30 @@ func (m *Member) Size() (n int) {
l = m.Etcd.Size()
n += 2 + l + sovRpc(uint64(l))
}
l = len(m.ClientCertData)
if l > 0 {
n += 2 + l + sovRpc(uint64(l))
}
l = len(m.ClientKeyData)
if l > 0 {
n += 2 + l + sovRpc(uint64(l))
}
l = len(m.ClientTrustedCAData)
if l > 0 {
n += 2 + l + sovRpc(uint64(l))
}
l = len(m.PeerCertData)
if l > 0 {
n += 2 + l + sovRpc(uint64(l))
}
l = len(m.PeerKeyData)
if l > 0 {
n += 2 + l + sovRpc(uint64(l))
}
l = len(m.PeerTrustedCAData)
if l > 0 {
n += 2 + l + sovRpc(uint64(l))
}
return n
}
@ -1445,6 +1543,10 @@ func (m *Response) Size() (n int) {
if l > 0 {
n += 1 + l + sovRpc(uint64(l))
}
if m.Member != nil {
l = m.Member.Size()
n += 1 + l + sovRpc(uint64(l))
}
return n
}
@ -2467,6 +2569,180 @@ func (m *Member) Unmarshal(dAtA []byte) error {
return err
}
iNdEx = postIndex
case 401:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ClientCertData", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowRpc
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthRpc
}
postIndex := iNdEx + intStringLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ClientCertData = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 402:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ClientKeyData", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowRpc
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthRpc
}
postIndex := iNdEx + intStringLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ClientKeyData = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 403:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ClientTrustedCAData", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowRpc
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthRpc
}
postIndex := iNdEx + intStringLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ClientTrustedCAData = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 501:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field PeerCertData", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowRpc
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthRpc
}
postIndex := iNdEx + intStringLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.PeerCertData = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 502:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field PeerKeyData", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowRpc
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthRpc
}
postIndex := iNdEx + intStringLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.PeerKeyData = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 503:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field PeerTrustedCAData", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowRpc
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthRpc
}
postIndex := iNdEx + intStringLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.PeerTrustedCAData = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipRpc(dAtA[iNdEx:])
@ -3262,6 +3538,39 @@ func (m *Response) Unmarshal(dAtA []byte) error {
}
m.Status = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Member", 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.Member == nil {
m.Member = &Member{}
}
if err := m.Member.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipRpc(dAtA[iNdEx:])
@ -3391,149 +3700,156 @@ var (
func init() { proto.RegisterFile("rpcpb/rpc.proto", fileDescriptorRpc) }
var fileDescriptorRpc = []byte{
// 2291 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x58, 0x5d, 0x5b, 0xdb, 0xc8,
0xf5, 0x47, 0x10, 0x08, 0x0c, 0x6f, 0x66, 0x08, 0x41, 0x79, 0x59, 0x44, 0x94, 0x4d, 0xfe, 0x2c,
0xff, 0x8a, 0xb4, 0xc9, 0x3e, 0x6d, 0x93, 0x66, 0x9b, 0x18, 0xa3, 0x04, 0x17, 0x61, 0x3b, 0x63,
0x91, 0x64, 0xaf, 0x5c, 0x21, 0x8f, 0xb1, 0x8a, 0x90, 0x1c, 0x69, 0xcc, 0x9a, 0xfd, 0x02, 0x7d,
0x7a, 0xd7, 0xcb, 0x7e, 0x88, 0xee, 0xf7, 0xc8, 0xbe, 0xb4, 0xdd, 0xb6, 0x77, 0xbd, 0x70, 0xdb,
0xf4, 0xe9, 0x17, 0xf0, 0xd3, 0x9b, 0xde, 0xf5, 0x99, 0x17, 0xe1, 0x91, 0x6c, 0x93, 0xdc, 0x31,
0xe7, 0xfc, 0x7e, 0x3f, 0xcd, 0x9c, 0x33, 0x73, 0xce, 0x31, 0x60, 0x31, 0x6a, 0xb9, 0xad, 0xc3,
0x7b, 0x51, 0xcb, 0xdd, 0x6a, 0x45, 0x21, 0x09, 0xe1, 0x24, 0x33, 0x5c, 0x37, 0x8e, 0x3c, 0xd2,
0x6c, 0x1f, 0x6e, 0xb9, 0xe1, 0xc9, 0xbd, 0xa3, 0xf0, 0x28, 0xbc, 0xc7, 0xbc, 0x87, 0xed, 0x06,
0x5b, 0xb1, 0x05, 0xfb, 0x8b, 0xb3, 0xf4, 0xff, 0xce, 0x83, 0x4b, 0x26, 0x71, 0xeb, 0xf0, 0x36,
0xb8, 0x54, 0x72, 0x4e, 0xb0, 0xaa, 0xac, 0x2b, 0x1b, 0x33, 0xdb, 0x8b, 0xbd, 0xae, 0x36, 0x7b,
0xe6, 0x9c, 0xf8, 0x8f, 0xf4, 0xc0, 0x39, 0xc1, 0x3a, 0x62, 0x4e, 0x68, 0x80, 0xcb, 0x3b, 0x0e,
0x71, 0x76, 0xbc, 0x48, 0x1d, 0x67, 0xb8, 0xe5, 0x5e, 0x57, 0x5b, 0xe4, 0xb8, 0xba, 0x43, 0x1c,
0xa3, 0xee, 0x45, 0x3a, 0x4a, 0x30, 0x70, 0x13, 0x4c, 0xbd, 0xca, 0x5b, 0x14, 0x3d, 0xc1, 0xd0,
0xb0, 0xd7, 0xd5, 0x16, 0x38, 0xfa, 0x0b, 0xc7, 0xe7, 0x60, 0x81, 0x80, 0x65, 0xb0, 0xbc, 0x8b,
0x9d, 0x88, 0x1c, 0x62, 0x87, 0x14, 0x03, 0x82, 0xa3, 0x53, 0xc7, 0xdf, 0x8f, 0xd5, 0xd9, 0x75,
0x65, 0x63, 0x62, 0xfb, 0xa3, 0x5e, 0x57, 0xbb, 0xc6, 0x89, 0xcd, 0x04, 0x64, 0x78, 0x02, 0xa5,
0xa3, 0x61, 0x4c, 0x58, 0x04, 0x4b, 0xa6, 0x8f, 0x5d, 0xe2, 0x85, 0x81, 0xed, 0x9d, 0xe0, 0xb0,
0x4d, 0xf6, 0x63, 0x75, 0x8e, 0xc9, 0xdd, 0xe8, 0x75, 0xb5, 0x55, 0x2e, 0x87, 0x05, 0xc4, 0x20,
0x1c, 0xa3, 0xa3, 0x41, 0x16, 0x2c, 0x82, 0x9c, 0xe5, 0xc5, 0x04, 0x07, 0x05, 0xdf, 0xc3, 0x01,
0x39, 0x40, 0x56, 0xac, 0xae, 0xac, 0x4f, 0x6c, 0xcc, 0xc8, 0x1b, 0xf3, 0x19, 0xc2, 0x70, 0x19,
0xc4, 0x68, 0x47, 0x7e, 0xac, 0xa3, 0x01, 0x1a, 0x44, 0x60, 0x39, 0x5f, 0x3f, 0xc5, 0x11, 0xf1,
0x62, 0x2c, 0xa9, 0x5d, 0x65, 0x6a, 0xeb, 0xbd, 0xae, 0x76, 0x93, 0xab, 0x39, 0x09, 0x28, 0x2d,
0x38, 0x8c, 0x0c, 0x1f, 0x82, 0x79, 0xbe, 0xca, 0xb7, 0x49, 0x68, 0x5b, 0x55, 0x75, 0x75, 0x5d,
0xd9, 0x98, 0x96, 0x73, 0xe3, 0xb4, 0x49, 0x68, 0x10, 0x2a, 0x90, 0x46, 0xc2, 0x02, 0x58, 0xe0,
0x86, 0x02, 0x8e, 0xa8, 0xb1, 0xa9, 0xaa, 0x8c, 0x2b, 0x45, 0x48, 0x7c, 0xdf, 0xc5, 0x11, 0x31,
0x9c, 0x36, 0x69, 0xea, 0x28, 0x43, 0x81, 0x8f, 0x65, 0x91, 0x67, 0x9e, 0x8f, 0xd5, 0x6b, 0x2c,
0xdd, 0x57, 0x7a, 0x5d, 0x2d, 0x27, 0x44, 0x28, 0xbb, 0xe1, 0xf9, 0x38, 0xc5, 0xa6, 0xd8, 0xfe,
0xee, 0xf7, 0xf0, 0x19, 0x23, 0x5f, 0xcf, 0xde, 0xac, 0x63, 0x7c, 0x26, 0xb8, 0x69, 0x24, 0xb4,
0xc0, 0x32, 0x37, 0xd8, 0x51, 0x3b, 0x26, 0xb8, 0x5e, 0xc8, 0x33, 0x81, 0x1b, 0x4c, 0xe0, 0x7a,
0xaf, 0xab, 0x5d, 0xe5, 0x02, 0x84, 0xbb, 0x0d, 0xd7, 0x11, 0x3a, 0xc3, 0x68, 0x34, 0x16, 0x3c,
0x5d, 0x15, 0x8c, 0x23, 0x96, 0x15, 0x8d, 0x65, 0x45, 0x8a, 0x85, 0xc8, 0x71, 0x0b, 0xe3, 0x48,
0x24, 0x24, 0x43, 0x81, 0x36, 0x58, 0x3a, 0x4f, 0xd1, 0xb9, 0xce, 0x3a, 0xd3, 0xb9, 0xdb, 0xeb,
0x6a, 0x3a, 0xd7, 0xf1, 0x02, 0x8f, 0x78, 0x8e, 0x6f, 0xf4, 0xb3, 0x2c, 0x49, 0x0e, 0x0a, 0xc0,
0x47, 0x60, 0x96, 0xfe, 0x9d, 0xe4, 0xf7, 0x16, 0xcb, 0x91, 0xda, 0xeb, 0x6a, 0x57, 0xb8, 0x1e,
0x63, 0xf7, 0x93, 0x2c, 0x83, 0x61, 0x05, 0x40, 0xba, 0xcc, 0xa4, 0x59, 0x67, 0x12, 0xd2, 0x85,
0x63, 0x12, 0x83, 0xb9, 0x1e, 0xc2, 0x85, 0x9f, 0x81, 0x39, 0x66, 0x4d, 0xb2, 0x7d, 0x9b, 0xc5,
0xfb, 0x5a, 0xaf, 0xab, 0xad, 0xc8, 0x5a, 0xfd, 0x94, 0xa7, 0xe0, 0xc9, 0x61, 0x92, 0x74, 0x7f,
0xcc, 0xd8, 0xd9, 0xc3, 0xf4, 0x73, 0x2e, 0x83, 0xe1, 0x3e, 0x58, 0xa2, 0xcb, 0x74, 0xbe, 0xef,
0x30, 0x05, 0xad, 0xd7, 0xd5, 0x6e, 0x48, 0x0a, 0x03, 0x49, 0x1f, 0x64, 0xc2, 0x6d, 0xb0, 0x50,
0xe4, 0xa9, 0x28, 0xf8, 0xd4, 0x1e, 0xa9, 0x9f, 0x64, 0xef, 0x4e, 0x92, 0x2a, 0x97, 0x03, 0x74,
0x94, 0x61, 0xd0, 0x17, 0x9d, 0xb6, 0x54, 0x89, 0x43, 0xb0, 0xba, 0xc9, 0x84, 0xa4, 0x00, 0x67,
0x84, 0x8c, 0x98, 0xc2, 0x74, 0x34, 0x8c, 0x3c, 0xa8, 0x69, 0x87, 0xc7, 0x38, 0x50, 0xff, 0xff,
0x7d, 0x9a, 0x84, 0xc2, 0x06, 0x34, 0x19, 0x19, 0x3e, 0x01, 0xf3, 0xd5, 0xc0, 0x69, 0xc5, 0xcd,
0x90, 0x14, 0xc2, 0x76, 0x40, 0xd4, 0x07, 0xac, 0x16, 0x4a, 0x69, 0x8b, 0x85, 0xdb, 0x70, 0xa9,
0x5f, 0x47, 0x69, 0x3c, 0xb4, 0xc0, 0xd2, 0x8b, 0x76, 0x48, 0x9c, 0x6d, 0xc7, 0x3d, 0xc6, 0x41,
0x7d, 0xfb, 0x8c, 0xe0, 0x58, 0xfd, 0x94, 0x89, 0xac, 0xf5, 0xba, 0xda, 0x75, 0x2e, 0xf2, 0x86,
0x42, 0x8c, 0x43, 0x8e, 0x31, 0x0e, 0x29, 0x48, 0x47, 0x83, 0x44, 0xda, 0x4a, 0x2a, 0x11, 0x7e,
0x19, 0x12, 0xac, 0x3e, 0xc9, 0x96, 0xab, 0x56, 0x84, 0x8d, 0xd3, 0x90, 0x46, 0x27, 0xc1, 0xc8,
0x11, 0x09, 0xa3, 0xa8, 0xdd, 0x22, 0x85, 0x26, 0x76, 0x8f, 0xd5, 0xa7, 0xd9, 0x6b, 0x7c, 0x1e,
0x11, 0x8e, 0x32, 0x5c, 0x0a, 0x93, 0x22, 0x22, 0x91, 0xf5, 0xdf, 0x4c, 0x82, 0xa9, 0x7d, 0x7c,
0x72, 0x88, 0x23, 0x7a, 0xa5, 0x69, 0x17, 0x34, 0x3b, 0xd8, 0xad, 0x38, 0xa4, 0x29, 0xba, 0xa0,
0x14, 0x1b, 0x4c, 0xdc, 0xba, 0x81, 0x3b, 0xd8, 0x35, 0x5a, 0x0e, 0x7d, 0x17, 0x29, 0x38, 0x7c,
0x00, 0x66, 0xf2, 0x47, 0xb4, 0xac, 0xd6, 0xeb, 0x11, 0x6b, 0x59, 0x33, 0xdb, 0x2b, 0xbd, 0xae,
0xb6, 0x24, 0xaa, 0x2f, 0x75, 0x19, 0x4e, 0xbd, 0x1e, 0xe9, 0xa8, 0x8f, 0xa3, 0xf1, 0x7c, 0xe6,
0x78, 0x7e, 0x2b, 0xf4, 0x02, 0xb2, 0x6b, 0xdb, 0x15, 0x46, 0x9e, 0x63, 0x64, 0x29, 0x9e, 0x8d,
0x04, 0x62, 0x34, 0x09, 0x69, 0x09, 0x95, 0x41, 0x22, 0x8d, 0xe7, 0xb6, 0x13, 0x63, 0xda, 0x6c,
0x71, 0xb6, 0x80, 0x1e, 0x3a, 0x31, 0x16, 0xad, 0x59, 0x60, 0xe8, 0x23, 0xa4, 0x27, 0xb0, 0xc2,
0x23, 0x76, 0xde, 0x46, 0xf6, 0x11, 0xb2, 0xf3, 0xfa, 0xe1, 0x91, 0x38, 0xae, 0x0c, 0x86, 0x79,
0x30, 0x4f, 0x97, 0xa2, 0x86, 0x5a, 0x55, 0xf5, 0x6b, 0x85, 0xa5, 0x41, 0x7a, 0x35, 0x8c, 0x2e,
0xaa, 0x09, 0xef, 0x3b, 0x29, 0x06, 0x7c, 0x0e, 0x16, 0xfb, 0x86, 0x4a, 0x14, 0x76, 0xce, 0xd4,
0x6f, 0xb8, 0xc8, 0xcd, 0x5e, 0x57, 0x53, 0x07, 0x45, 0x5a, 0x14, 0xa3, 0xa3, 0x2c, 0x2b, 0xd9,
0x0b, 0x7d, 0xda, 0x5c, 0xe6, 0xdb, 0xe1, 0x7b, 0x61, 0x25, 0x41, 0x88, 0xa4, 0x19, 0xb4, 0x40,
0xf6, 0x55, 0xcd, 0xa0, 0xce, 0xe2, 0xaa, 0x7e, 0xa7, 0x64, 0xab, 0x8a, 0xbc, 0x1d, 0x2c, 0x60,
0x3a, 0x1a, 0xc2, 0x85, 0x3f, 0xe2, 0x33, 0x95, 0xfa, 0x15, 0x1d, 0x92, 0x66, 0xef, 0xcf, 0x6e,
0xb1, 0xd1, 0x6c, 0x8b, 0xda, 0xe4, 0xc9, 0x8a, 0x0a, 0xea, 0x88, 0x41, 0xf5, 0xbf, 0xcd, 0x81,
0x29, 0x1b, 0xb3, 0x82, 0xf2, 0x04, 0xcc, 0xf3, 0xbf, 0x4a, 0x98, 0x7c, 0x11, 0x46, 0xc7, 0x83,
0x97, 0x91, 0x30, 0xb7, 0x11, 0x70, 0xbf, 0x8e, 0xd2, 0x78, 0xf8, 0x63, 0x00, 0xb8, 0x81, 0xdd,
0x28, 0x3e, 0xa8, 0x5d, 0xed, 0x75, 0x35, 0x98, 0x62, 0xf3, 0x9b, 0x24, 0x21, 0x69, 0x03, 0xdc,
0xc1, 0xbe, 0x73, 0x66, 0x39, 0x04, 0x07, 0xee, 0x99, 0x98, 0xbe, 0xe6, 0xe5, 0x06, 0x58, 0xa7,
0x7e, 0xc3, 0xe7, 0x00, 0xe3, 0x84, 0x36, 0xc0, 0x34, 0x05, 0xfe, 0x02, 0xe4, 0xd2, 0x16, 0x74,
0xca, 0x2e, 0xf5, 0xbc, 0x7c, 0xa9, 0xb3, 0x32, 0x46, 0x74, 0xaa, 0xa3, 0x01, 0x1e, 0xfc, 0x1c,
0xac, 0x1c, 0xb4, 0xea, 0x0e, 0xc1, 0xf5, 0xcc, 0xbe, 0xe6, 0x99, 0xe0, 0xed, 0x5e, 0x57, 0xd3,
0xb8, 0x60, 0x9b, 0xc3, 0x8c, 0xc1, 0xfd, 0x0d, 0x57, 0xa0, 0x31, 0x42, 0x61, 0x3b, 0xa8, 0x5b,
0xde, 0x89, 0x47, 0xd4, 0x95, 0x75, 0x65, 0x63, 0x52, 0x8e, 0x51, 0x44, 0x7d, 0x86, 0x4f, 0x9d,
0x3a, 0x92, 0x90, 0xf0, 0x29, 0x98, 0x37, 0x3b, 0x1e, 0x29, 0x07, 0xf4, 0x05, 0xb6, 0x23, 0xac,
0x5e, 0x1d, 0xb8, 0x6e, 0x1d, 0x8f, 0x18, 0x61, 0x60, 0x34, 0x38, 0x80, 0x5e, 0x37, 0x99, 0x00,
0x77, 0x41, 0xae, 0x10, 0x06, 0x31, 0x1b, 0x1b, 0xdc, 0x33, 0x5e, 0xc6, 0x56, 0xb3, 0x57, 0xdf,
0xed, 0x23, 0x92, 0x12, 0x36, 0xc0, 0x82, 0x0f, 0xc1, 0xac, 0x19, 0x38, 0x87, 0x3e, 0xae, 0xb4,
0xa2, 0xb0, 0x21, 0x26, 0xb7, 0xd5, 0x5e, 0x57, 0x5b, 0x16, 0x3b, 0x61, 0x4e, 0xa3, 0x45, 0xbd,
0xf4, 0x09, 0xf7, 0xb1, 0xf0, 0x31, 0x98, 0x13, 0xfb, 0x29, 0x38, 0x31, 0x4e, 0x26, 0x1d, 0xe9,
0xfd, 0x8b, 0xdd, 0x1b, 0x2e, 0x75, 0xeb, 0x28, 0x85, 0xa6, 0x17, 0x45, 0xac, 0x59, 0x54, 0xf7,
0xe9, 0x84, 0x93, 0xb9, 0x28, 0x09, 0x9f, 0x27, 0x84, 0x5d, 0x94, 0x34, 0x85, 0xf6, 0x5e, 0x61,
0xa9, 0x36, 0xdb, 0x8d, 0x86, 0x8f, 0xc5, 0x58, 0x23, 0x85, 0x32, 0x11, 0x89, 0x39, 0xa0, 0xaf,
0x21, 0x18, 0x70, 0x4f, 0x2a, 0xa1, 0x85, 0xf0, 0xe4, 0xc4, 0x09, 0xea, 0xb1, 0xaa, 0x67, 0x27,
0xf3, 0x7e, 0x09, 0x75, 0x05, 0x46, 0xae, 0xa0, 0x09, 0x8f, 0x9e, 0x0a, 0xb5, 0x83, 0x00, 0x47,
0xe7, 0x5d, 0x80, 0x0f, 0x03, 0xd2, 0xa9, 0x22, 0xe6, 0x97, 0xfb, 0x40, 0x86, 0x42, 0x7f, 0x2a,
0x98, 0x1d, 0x82, 0xa3, 0xc0, 0xf1, 0xcf, 0x65, 0xf8, 0x28, 0x20, 0x6d, 0x08, 0x0b, 0x84, 0x2c,
0x34, 0x40, 0xa3, 0xe9, 0xad, 0x92, 0x08, 0xc7, 0xb1, 0x7d, 0xd6, 0xc2, 0xb1, 0x8a, 0xd9, 0xb1,
0xa4, 0xf4, 0xc6, 0xcc, 0x69, 0x10, 0xea, 0xd5, 0x91, 0x8c, 0xa5, 0xb7, 0x94, 0x2f, 0xf7, 0xf0,
0x59, 0xd5, 0xfb, 0x12, 0xb3, 0xfa, 0x3e, 0x29, 0x87, 0x56, 0x90, 0xe9, 0x98, 0x15, 0x7b, 0x5f,
0xd2, 0x5b, 0x9a, 0x22, 0xd0, 0xa2, 0x98, 0x32, 0x58, 0x4e, 0x74, 0x84, 0xd5, 0x23, 0x26, 0x23,
0xb5, 0xdb, 0x8c, 0x8c, 0xe1, 0x53, 0x98, 0x8e, 0x86, 0x70, 0xe1, 0x4b, 0x70, 0xa5, 0x6f, 0x6d,
0x37, 0x1a, 0x5e, 0x07, 0x39, 0xc1, 0x11, 0x56, 0x9b, 0x4c, 0x53, 0xef, 0x75, 0xb5, 0xb5, 0x41,
0x4d, 0x86, 0x33, 0x22, 0x0a, 0xd4, 0xd1, 0x50, 0x3e, 0xfc, 0x25, 0x58, 0x1d, 0x66, 0xb7, 0x3b,
0x81, 0xea, 0x31, 0x69, 0x69, 0xee, 0x1e, 0x21, 0x6d, 0x90, 0x4e, 0xa0, 0xa3, 0x51, 0x32, 0xb4,
0x59, 0x9d, 0xbb, 0xec, 0x4e, 0x50, 0x6e, 0xc5, 0xea, 0xaf, 0x98, 0xb2, 0x94, 0x52, 0x49, 0x99,
0x74, 0x02, 0x23, 0x6c, 0xc5, 0x3a, 0xca, 0xb2, 0xfa, 0x69, 0xe1, 0xfd, 0x22, 0xe6, 0x8d, 0x73,
0x32, 0x35, 0x83, 0x71, 0x1d, 0xde, 0x66, 0xe2, 0xf3, 0xb4, 0x08, 0x02, 0xfc, 0x14, 0xcc, 0x70,
0xc3, 0x8b, 0x4a, 0x95, 0x77, 0xcc, 0x49, 0x79, 0xd2, 0x10, 0xec, 0x37, 0xf4, 0xeb, 0x7d, 0xa0,
0xfe, 0x6b, 0x05, 0x5c, 0x46, 0xf8, 0x4d, 0x1b, 0xc7, 0x04, 0x6e, 0x81, 0x99, 0x72, 0x0b, 0x47,
0x0e, 0xfd, 0x85, 0xcb, 0x3a, 0xcb, 0xc2, 0xfd, 0x9c, 0xe8, 0x4f, 0xe7, 0x76, 0xd4, 0x87, 0xc0,
0x3b, 0xc9, 0x8c, 0xa4, 0xf2, 0x66, 0x36, 0x2f, 0xc0, 0xdc, 0x88, 0x92, 0x01, 0xea, 0x4e, 0xd2,
0xbe, 0xd8, 0x4f, 0xfd, 0x3e, 0x8c, 0x1b, 0x91, 0x70, 0xea, 0x8f, 0xc1, 0x34, 0xc2, 0x71, 0x2b,
0x0c, 0x62, 0x0c, 0x55, 0x70, 0xb9, 0xda, 0x76, 0x5d, 0x1c, 0xc7, 0x6c, 0x1f, 0xd3, 0x28, 0x59,
0xc2, 0xab, 0x60, 0x8a, 0xce, 0xc1, 0xed, 0x98, 0x37, 0x2f, 0x24, 0x56, 0x9b, 0x7f, 0x57, 0xa4,
0xcd, 0xc3, 0x05, 0x00, 0x4a, 0x21, 0xa9, 0x12, 0x27, 0x22, 0xb8, 0x9e, 0x1b, 0x83, 0x57, 0x40,
0x4e, 0x4c, 0x79, 0xcc, 0x46, 0xdb, 0x6a, 0x4e, 0x81, 0x8b, 0x60, 0x16, 0xe1, 0xf8, 0xdc, 0x30,
0x0e, 0xe7, 0xc0, 0xf4, 0x9e, 0xe7, 0xfb, 0x6c, 0x35, 0x41, 0xdd, 0xb4, 0x12, 0xe4, 0x23, 0xb7,
0xe9, 0x9d, 0xe2, 0xdc, 0x25, 0xaa, 0xb2, 0x83, 0x63, 0x12, 0x85, 0x67, 0x14, 0xc1, 0xa6, 0xb5,
0xdc, 0x24, 0xbc, 0x06, 0x56, 0xb6, 0x7d, 0xc7, 0x3d, 0x6e, 0x86, 0x3e, 0xfb, 0x55, 0x56, 0x09,
0x23, 0x62, 0x77, 0x50, 0x27, 0x57, 0x87, 0x37, 0xc0, 0xea, 0x41, 0x70, 0x38, 0xd4, 0x89, 0xe1,
0x0a, 0x58, 0x62, 0xf5, 0x2e, 0x65, 0x6e, 0xc0, 0x55, 0xb0, 0x7c, 0x10, 0xd4, 0x07, 0x1c, 0x47,
0x9b, 0xff, 0x9e, 0xe6, 0xfb, 0x11, 0xa5, 0x96, 0xf2, 0xf7, 0x8a, 0x96, 0x55, 0x2b, 0x97, 0xcc,
0xda, 0xb3, 0xb2, 0x65, 0x95, 0x5f, 0x99, 0x28, 0x37, 0x06, 0x7f, 0x00, 0x36, 0x06, 0xcc, 0xb5,
0x83, 0x92, 0x5d, 0xb4, 0x6a, 0x36, 0x2a, 0x3e, 0x7f, 0x6e, 0xa2, 0x5a, 0xb5, 0x94, 0xaf, 0x54,
0x77, 0xcb, 0x36, 0x0f, 0x01, 0x43, 0x5b, 0x66, 0x7e, 0xc7, 0x44, 0xb9, 0x71, 0x78, 0x17, 0xe8,
0x92, 0x61, 0x14, 0x71, 0xe2, 0x9c, 0xf8, 0xe2, 0xa0, 0x8c, 0x0e, 0xf6, 0x73, 0x97, 0x58, 0xec,
0xa8, 0x21, 0x6f, 0x59, 0xb9, 0x49, 0xb8, 0x09, 0xee, 0x6e, 0x5b, 0xf9, 0xc2, 0xde, 0x6e, 0xd9,
0x32, 0x6b, 0x15, 0xd3, 0x44, 0xb5, 0x4a, 0x19, 0xd9, 0x35, 0xfb, 0x75, 0x0d, 0xbd, 0x4e, 0xef,
0xb8, 0x0e, 0xf3, 0xe0, 0xb3, 0x0f, 0xc3, 0x8e, 0xda, 0x0d, 0x86, 0x1f, 0x83, 0xf5, 0xd1, 0x12,
0xe2, 0x6c, 0x0d, 0xf8, 0x33, 0xf0, 0x93, 0xf7, 0xa1, 0x46, 0x7d, 0xe2, 0xe8, 0xe2, 0x4f, 0x88,
0x28, 0x34, 0xe1, 0x2d, 0xf0, 0xd1, 0x68, 0x14, 0x0d, 0x8d, 0x07, 0xff, 0x0f, 0xe8, 0x3b, 0xa6,
0x95, 0xff, 0xfc, 0xe2, 0xb0, 0xbc, 0x55, 0xe0, 0x16, 0xf8, 0x04, 0xe5, 0x4b, 0x3b, 0xe5, 0xfd,
0xda, 0x07, 0xe0, 0xbf, 0x56, 0xe0, 0xcf, 0xc1, 0xc3, 0xf7, 0x03, 0x47, 0x1d, 0xf0, 0x1b, 0x05,
0x9a, 0xe0, 0xe9, 0x07, 0x7f, 0x6f, 0x94, 0xcc, 0xb7, 0x0a, 0xbc, 0x05, 0x6e, 0x0e, 0xe7, 0x8b,
0x3c, 0x7c, 0xa7, 0xc0, 0x0d, 0x70, 0xfb, 0xc2, 0x2f, 0x09, 0xe4, 0x1f, 0x14, 0xf8, 0x53, 0xf0,
0xe0, 0x22, 0xc8, 0xa8, 0x6d, 0xfc, 0x51, 0x81, 0x4f, 0xc0, 0xa3, 0x0f, 0xf8, 0xc6, 0x28, 0x81,
0x3f, 0x5d, 0x70, 0x0e, 0x91, 0xec, 0xef, 0xdf, 0x7f, 0x0e, 0x81, 0xfc, 0xb3, 0x02, 0xd7, 0xc0,
0xb5, 0xe1, 0x10, 0x7a, 0x27, 0xfe, 0xa2, 0xc0, 0x3b, 0x60, 0xfd, 0x42, 0x25, 0x0a, 0xfb, 0xab,
0x02, 0x55, 0xb0, 0x5c, 0x2a, 0xd7, 0x9e, 0xe5, 0x8b, 0x56, 0xed, 0x55, 0xd1, 0xde, 0xad, 0x55,
0x6d, 0x64, 0x56, 0xab, 0xb9, 0xdf, 0x8f, 0xd3, 0xad, 0xa4, 0x3c, 0xa5, 0xb2, 0x70, 0xd6, 0x9e,
0x95, 0x51, 0xcd, 0x2a, 0xbe, 0x34, 0x4b, 0x14, 0xf9, 0xd5, 0x38, 0x5c, 0x04, 0x80, 0xc2, 0x2a,
0xe5, 0x62, 0xc9, 0xae, 0xe6, 0x7e, 0x3b, 0x01, 0xe7, 0xc1, 0xb4, 0xf9, 0xda, 0x36, 0x51, 0x29,
0x6f, 0xe5, 0xfe, 0x33, 0xb1, 0x19, 0x02, 0xd0, 0x9f, 0x17, 0xe0, 0x14, 0x18, 0xdf, 0x7b, 0x99,
0x1b, 0x83, 0x33, 0x60, 0xd2, 0x32, 0xf3, 0x55, 0x33, 0xa7, 0xc0, 0x65, 0xb0, 0x68, 0x5a, 0x66,
0xc1, 0x2e, 0x96, 0x4b, 0x35, 0x74, 0x50, 0x2a, 0xb1, 0xba, 0x91, 0x03, 0x73, 0xaf, 0xf2, 0x76,
0x61, 0x37, 0xb1, 0x4c, 0xd0, 0xfa, 0x64, 0x95, 0x0b, 0x7b, 0x35, 0x94, 0x2f, 0x98, 0x28, 0x31,
0x5f, 0xa2, 0x40, 0x26, 0x94, 0x58, 0x26, 0xef, 0x3f, 0x01, 0x33, 0x76, 0xe4, 0x04, 0x71, 0x2b,
0x8c, 0x08, 0xbc, 0x2f, 0x2f, 0x16, 0x44, 0xa7, 0x10, 0x0d, 0xea, 0xfa, 0xe2, 0xf9, 0x9a, 0xf7,
0x09, 0x7d, 0x6c, 0x43, 0xf9, 0xa1, 0xb2, 0x7d, 0xe5, 0xed, 0x3f, 0xd7, 0xc6, 0xde, 0xbe, 0x5b,
0x53, 0xbe, 0x7f, 0xb7, 0xa6, 0xfc, 0xe3, 0xdd, 0x9a, 0xf2, 0xbb, 0x7f, 0xad, 0x8d, 0x1d, 0x4e,
0xb1, 0xff, 0x62, 0x3f, 0xf8, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x95, 0x9d, 0x8e, 0x65, 0x0e,
0x17, 0x00, 0x00,
// 2404 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x59, 0xcb, 0x76, 0xdb, 0xc8,
0xd1, 0x16, 0x44, 0x4b, 0x23, 0xb5, 0x6e, 0x54, 0xcb, 0xb2, 0x60, 0x7b, 0x46, 0x94, 0xe1, 0xf1,
0xfc, 0x1a, 0xfd, 0x81, 0x9c, 0xd8, 0x73, 0x92, 0xd8, 0x73, 0xb1, 0x29, 0x0a, 0xb6, 0x18, 0x41,
0x24, 0xdd, 0x84, 0x6c, 0xcf, 0x8a, 0x81, 0xc0, 0xa6, 0x88, 0x08, 0x02, 0x68, 0xa0, 0xa9, 0xa1,
0xe6, 0x05, 0xb2, 0xcd, 0x65, 0x93, 0x87, 0xc8, 0x2c, 0xf3, 0x0e, 0x9e, 0x4b, 0x92, 0x49, 0xb2,
0xcb, 0x82, 0x49, 0x9c, 0x93, 0x17, 0xe0, 0xc9, 0xe5, 0x64, 0x97, 0xd3, 0x17, 0x90, 0x0d, 0x90,
0x94, 0xbd, 0x63, 0x57, 0x7d, 0xdf, 0x87, 0xee, 0xaa, 0x46, 0x55, 0x41, 0x02, 0x4b, 0x61, 0xcb,
0x69, 0x1d, 0xdd, 0x0e, 0x5b, 0xce, 0x76, 0x2b, 0x0c, 0x48, 0x00, 0xa7, 0x98, 0xe1, 0x9a, 0x7e,
0xec, 0x92, 0x66, 0xfb, 0x68, 0xdb, 0x09, 0x4e, 0x6f, 0x1f, 0x07, 0xc7, 0xc1, 0x6d, 0xe6, 0x3d,
0x6a, 0x37, 0xd8, 0x8a, 0x2d, 0xd8, 0x2f, 0xce, 0xd2, 0xfe, 0xbb, 0x00, 0x2e, 0x19, 0xc4, 0xa9,
0xc3, 0x9b, 0xe0, 0x52, 0xc9, 0x3e, 0xc5, 0xaa, 0xb2, 0xa1, 0x6c, 0xce, 0xee, 0x2c, 0xf5, 0xba,
0xb9, 0xb9, 0x73, 0xfb, 0xd4, 0xbb, 0xaf, 0xf9, 0xf6, 0x29, 0xd6, 0x10, 0x73, 0x42, 0x1d, 0xbc,
0xb5, 0x6b, 0x13, 0x7b, 0xd7, 0x0d, 0xd5, 0x49, 0x86, 0x5b, 0xe9, 0x75, 0x73, 0x4b, 0x1c, 0x57,
0xb7, 0x89, 0xad, 0xd7, 0xdd, 0x50, 0x43, 0x31, 0x06, 0x6e, 0x81, 0xe9, 0x67, 0x79, 0x93, 0xa2,
0x33, 0x0c, 0x0d, 0x7b, 0xdd, 0xdc, 0x22, 0x47, 0x7f, 0x66, 0x7b, 0x1c, 0x2c, 0x10, 0xb0, 0x0c,
0x56, 0xf6, 0xb0, 0x1d, 0x92, 0x23, 0x6c, 0x93, 0xa2, 0x4f, 0x70, 0x78, 0x66, 0x7b, 0x07, 0x91,
0x3a, 0xb7, 0xa1, 0x6c, 0x66, 0x76, 0xde, 0xe9, 0x75, 0x73, 0x57, 0x39, 0xb1, 0x19, 0x83, 0x74,
0x57, 0xa0, 0x34, 0x34, 0x8a, 0x09, 0x8b, 0x60, 0xd9, 0xf0, 0xb0, 0x43, 0xdc, 0xc0, 0xb7, 0xdc,
0x53, 0x1c, 0xb4, 0xc9, 0x41, 0xa4, 0xce, 0x33, 0xb9, 0xeb, 0xbd, 0x6e, 0x6e, 0x8d, 0xcb, 0x61,
0x01, 0xd1, 0x09, 0xc7, 0x68, 0x68, 0x98, 0x05, 0x8b, 0x20, 0x6b, 0xba, 0x11, 0xc1, 0x7e, 0xc1,
0x73, 0xb1, 0x4f, 0x0e, 0x91, 0x19, 0xa9, 0xab, 0x1b, 0x99, 0xcd, 0x59, 0x79, 0x63, 0x1e, 0x43,
0xe8, 0x0e, 0x83, 0xe8, 0xed, 0xd0, 0x8b, 0x34, 0x34, 0x44, 0x83, 0x08, 0xac, 0xe4, 0xeb, 0x67,
0x38, 0x24, 0x6e, 0x84, 0x25, 0xb5, 0x2b, 0x4c, 0x6d, 0xa3, 0xd7, 0xcd, 0xbd, 0xcd, 0xd5, 0xec,
0x18, 0x94, 0x14, 0x1c, 0x45, 0x86, 0xf7, 0xc0, 0x02, 0x5f, 0xe5, 0xdb, 0x24, 0xb0, 0xcc, 0xaa,
0xba, 0xb6, 0xa1, 0x6c, 0xce, 0xc8, 0xb9, 0xb1, 0xdb, 0x24, 0xd0, 0x09, 0x15, 0x48, 0x22, 0x61,
0x01, 0x2c, 0x72, 0x43, 0x01, 0x87, 0xd4, 0xd8, 0x54, 0x55, 0xc6, 0x95, 0x22, 0x24, 0x9e, 0xef,
0xe0, 0x90, 0xe8, 0x76, 0x9b, 0x34, 0x35, 0x94, 0xa2, 0xc0, 0x8f, 0x64, 0x91, 0x47, 0xae, 0x87,
0xd5, 0xab, 0x2c, 0xdd, 0x97, 0x7b, 0xdd, 0x5c, 0x56, 0x88, 0x50, 0x76, 0xc3, 0xf5, 0x70, 0x82,
0x4d, 0xb1, 0x83, 0xdd, 0xef, 0xe3, 0x73, 0x46, 0xbe, 0x96, 0xbe, 0x59, 0x27, 0xf8, 0x5c, 0x70,
0x93, 0x48, 0x68, 0x82, 0x15, 0x6e, 0xb0, 0xc2, 0x76, 0x44, 0x70, 0xbd, 0x90, 0x67, 0x02, 0xd7,
0x99, 0xc0, 0xb5, 0x5e, 0x37, 0x77, 0x85, 0x0b, 0x10, 0xee, 0xd6, 0x1d, 0x5b, 0xe8, 0x8c, 0xa2,
0xd1, 0x58, 0xf0, 0x74, 0x55, 0x30, 0x0e, 0x59, 0x56, 0x72, 0x2c, 0x2b, 0x52, 0x2c, 0x44, 0x8e,
0x5b, 0x18, 0x87, 0x22, 0x21, 0x29, 0x0a, 0xb4, 0xc0, 0x72, 0x3f, 0x45, 0x7d, 0x9d, 0x0d, 0xa6,
0xf3, 0x5e, 0xaf, 0x9b, 0xd3, 0xb8, 0x8e, 0xeb, 0xbb, 0xc4, 0xb5, 0x3d, 0x7d, 0x90, 0x65, 0x49,
0x72, 0x58, 0x00, 0xde, 0x07, 0x73, 0xf4, 0x77, 0x9c, 0xdf, 0x1b, 0x2c, 0x47, 0x6a, 0xaf, 0x9b,
0xbb, 0xcc, 0xf5, 0x18, 0x7b, 0x90, 0x64, 0x19, 0x0c, 0x2b, 0x00, 0xd2, 0x65, 0x2a, 0xcd, 0x1a,
0x93, 0x90, 0x2e, 0x1c, 0x93, 0x18, 0xce, 0xf5, 0x08, 0x2e, 0xfc, 0x18, 0xcc, 0x33, 0x6b, 0x9c,
0xed, 0x9b, 0x2c, 0xde, 0x57, 0x7b, 0xdd, 0xdc, 0xaa, 0xac, 0x35, 0x48, 0x79, 0x02, 0x1e, 0x1f,
0x26, 0x4e, 0xf7, 0xbb, 0x8c, 0x9d, 0x3e, 0xcc, 0x20, 0xe7, 0x32, 0x18, 0x1e, 0x80, 0x65, 0xba,
0x4c, 0xe6, 0xfb, 0x16, 0x53, 0xc8, 0xf5, 0xba, 0xb9, 0xeb, 0x92, 0xc2, 0x50, 0xd2, 0x87, 0x99,
0x70, 0x07, 0x2c, 0x16, 0x79, 0x2a, 0x0a, 0x1e, 0xb5, 0x87, 0xea, 0xfb, 0xe9, 0xbb, 0x13, 0xa7,
0xca, 0xe1, 0x00, 0x0d, 0xa5, 0x18, 0xf4, 0x8d, 0x4e, 0x5a, 0xaa, 0xc4, 0x26, 0x58, 0xdd, 0x62,
0x42, 0x52, 0x80, 0x53, 0x42, 0x7a, 0x44, 0x61, 0x1a, 0x1a, 0x45, 0x1e, 0xd6, 0xb4, 0x82, 0x13,
0xec, 0xab, 0xff, 0xff, 0x3a, 0x4d, 0x42, 0x61, 0x43, 0x9a, 0x8c, 0x0c, 0x1f, 0x80, 0x85, 0xaa,
0x6f, 0xb7, 0xa2, 0x66, 0x40, 0x0a, 0x41, 0xdb, 0x27, 0xea, 0x5d, 0x56, 0x0b, 0xa5, 0xb4, 0x45,
0xc2, 0xad, 0x3b, 0xd4, 0xaf, 0xa1, 0x24, 0x1e, 0x9a, 0x60, 0xf9, 0x49, 0x3b, 0x20, 0xf6, 0x8e,
0xed, 0x9c, 0x60, 0xbf, 0xbe, 0x73, 0x4e, 0x70, 0xa4, 0x7e, 0xc0, 0x44, 0xd6, 0x7b, 0xdd, 0xdc,
0x35, 0x2e, 0xf2, 0x82, 0x42, 0xf4, 0x23, 0x8e, 0xd1, 0x8f, 0x28, 0x48, 0x43, 0xc3, 0x44, 0xda,
0x4a, 0x2a, 0x21, 0x7e, 0x1a, 0x10, 0xac, 0x3e, 0x48, 0x97, 0xab, 0x56, 0x88, 0xf5, 0xb3, 0x80,
0x46, 0x27, 0xc6, 0xc8, 0x11, 0x09, 0xc2, 0xb0, 0xdd, 0x22, 0x85, 0x26, 0x76, 0x4e, 0xd4, 0x87,
0xe9, 0x6b, 0xdc, 0x8f, 0x08, 0x47, 0xe9, 0x0e, 0x85, 0x49, 0x11, 0x91, 0xc8, 0xda, 0x6f, 0x66,
0xc0, 0xf4, 0x01, 0x3e, 0x3d, 0xc2, 0x21, 0xbd, 0xd2, 0xb4, 0x0b, 0x1a, 0x1d, 0xec, 0x54, 0x6c,
0xd2, 0x14, 0x5d, 0x50, 0x8a, 0x0d, 0x26, 0x4e, 0x5d, 0xc7, 0x1d, 0xec, 0xe8, 0x2d, 0x9b, 0xbe,
0x17, 0x09, 0x38, 0xbc, 0x0b, 0x66, 0xf3, 0xc7, 0xb4, 0xac, 0xd6, 0xeb, 0x21, 0x6b, 0x59, 0xb3,
0x3b, 0xab, 0xbd, 0x6e, 0x6e, 0x59, 0x54, 0x5f, 0xea, 0xd2, 0xed, 0x7a, 0x3d, 0xd4, 0xd0, 0x00,
0x47, 0xe3, 0xf9, 0xc8, 0x76, 0xbd, 0x56, 0xe0, 0xfa, 0x64, 0xcf, 0xb2, 0x2a, 0x8c, 0x3c, 0xcf,
0xc8, 0x52, 0x3c, 0x1b, 0x31, 0x44, 0x6f, 0x12, 0xd2, 0x12, 0x2a, 0xc3, 0x44, 0x1a, 0xcf, 0x1d,
0x3b, 0xc2, 0xb4, 0xd9, 0xe2, 0x74, 0x01, 0x3d, 0xb2, 0x23, 0x2c, 0x5a, 0xb3, 0xc0, 0xd0, 0x97,
0x90, 0x9e, 0xc0, 0x0c, 0x8e, 0xd9, 0x79, 0x1b, 0xe9, 0x97, 0x90, 0x9d, 0xd7, 0x0b, 0x8e, 0xc5,
0x71, 0x65, 0x30, 0xcc, 0x83, 0x05, 0xba, 0x14, 0x35, 0xd4, 0xac, 0xaa, 0x5f, 0x2a, 0x2c, 0x0d,
0xd2, 0x5b, 0xc3, 0xe8, 0xa2, 0x9a, 0xf0, 0xbe, 0x93, 0x60, 0xc0, 0xc7, 0x60, 0x69, 0x60, 0xa8,
0x84, 0x41, 0xe7, 0x5c, 0xfd, 0x8a, 0x8b, 0xbc, 0xdd, 0xeb, 0xe6, 0xd4, 0x61, 0x91, 0x16, 0xc5,
0x68, 0x28, 0xcd, 0x8a, 0xf7, 0x42, 0x5f, 0x6d, 0x2e, 0xf3, 0xf5, 0xe8, 0xbd, 0xb0, 0x92, 0x20,
0x44, 0x92, 0x0c, 0x5a, 0x20, 0x07, 0xaa, 0x86, 0x5f, 0x67, 0x71, 0x55, 0xbf, 0x51, 0xd2, 0x55,
0x45, 0xde, 0x0e, 0x16, 0x30, 0x0d, 0x8d, 0xe0, 0xc2, 0xef, 0xf1, 0x99, 0x4a, 0xfd, 0x82, 0x0e,
0x49, 0x73, 0x77, 0xe6, 0xb6, 0xd9, 0x68, 0xb6, 0x4d, 0x6d, 0xf2, 0x64, 0x45, 0x05, 0x35, 0xc4,
0xc7, 0xaf, 0x5d, 0xb9, 0x87, 0xd2, 0xf9, 0x49, 0xfd, 0x39, 0x9f, 0x99, 0xc6, 0x74, 0x62, 0x3a,
0x6d, 0x25, 0x7a, 0x29, 0xe5, 0xd0, 0x68, 0xf4, 0x3b, 0x24, 0x13, 0xf9, 0x45, 0x26, 0x5d, 0xcf,
0x84, 0x08, 0xad, 0xaf, 0x5c, 0x23, 0xc9, 0x80, 0xd6, 0x50, 0x4f, 0x65, 0x42, 0xbf, 0xe4, 0x42,
0x37, 0x7a, 0xdd, 0xdc, 0x3b, 0x09, 0x21, 0xa9, 0xcc, 0x72, 0xbd, 0x51, 0x74, 0xf8, 0xc9, 0xa0,
0x65, 0x30, 0xb9, 0x7f, 0x65, 0xc6, 0xf7, 0x0c, 0x2e, 0x93, 0xc0, 0xc3, 0x0f, 0xfb, 0x3d, 0x83,
0xd1, 0xff, 0x9d, 0x19, 0xdb, 0x34, 0x38, 0x5b, 0x46, 0xc3, 0x52, 0xaa, 0x69, 0x30, 0x89, 0xff,
0x64, 0x5e, 0xd7, 0x35, 0xb8, 0xd2, 0x30, 0x55, 0xfb, 0xf3, 0x3c, 0x98, 0xb6, 0x30, 0x2b, 0xfe,
0x0f, 0xc0, 0x02, 0xff, 0x55, 0xc2, 0xe4, 0xb3, 0x20, 0x3c, 0x19, 0x2e, 0x1c, 0x84, 0xb9, 0x75,
0x9f, 0xfb, 0x35, 0x94, 0xc4, 0xc3, 0xef, 0x03, 0xc0, 0x0d, 0xec, 0xed, 0xe7, 0x43, 0xf5, 0x95,
0x5e, 0x37, 0x07, 0x13, 0x6c, 0xfe, 0xd6, 0x4b, 0x48, 0x3a, 0xac, 0xec, 0x62, 0xcf, 0x3e, 0x37,
0x6d, 0x82, 0x7d, 0xe7, 0x5c, 0x4c, 0xca, 0x0b, 0xf2, 0x75, 0xa9, 0x53, 0xbf, 0xee, 0x71, 0x80,
0x7e, 0x4a, 0x87, 0x95, 0x24, 0x05, 0xfe, 0x08, 0x64, 0x93, 0x16, 0x74, 0xc6, 0x0a, 0xd0, 0x82,
0x5c, 0x80, 0xd2, 0x32, 0x7a, 0x78, 0xa6, 0xa1, 0x21, 0x1e, 0xfc, 0x14, 0xac, 0x1e, 0xb6, 0xea,
0x36, 0xc1, 0xf5, 0xd4, 0xbe, 0x16, 0x98, 0xe0, 0xcd, 0x5e, 0x37, 0x97, 0xe3, 0x82, 0x6d, 0x0e,
0xd3, 0x87, 0xf7, 0x37, 0x5a, 0x81, 0xc6, 0x08, 0x05, 0x6d, 0xbf, 0x6e, 0xba, 0xa7, 0x2e, 0x51,
0x57, 0x37, 0x94, 0xcd, 0x29, 0x39, 0x46, 0x21, 0xf5, 0xe9, 0x1e, 0x75, 0x6a, 0x48, 0x42, 0xc2,
0x87, 0x60, 0xc1, 0xe8, 0xb8, 0xa4, 0xec, 0xd3, 0x6a, 0xd9, 0x0e, 0xb1, 0x7a, 0x65, 0xa8, 0x34,
0x74, 0x5c, 0xa2, 0x07, 0xbe, 0xde, 0xe0, 0x00, 0x5a, 0x1a, 0x64, 0x02, 0xdc, 0x03, 0xd9, 0x42,
0xe0, 0x47, 0x6c, 0xc4, 0x73, 0xce, 0x79, 0xcb, 0x59, 0x4b, 0x97, 0x29, 0x67, 0x80, 0x88, 0xdb,
0xcd, 0x10, 0x0b, 0xde, 0x03, 0x73, 0x86, 0x6f, 0x1f, 0x79, 0xb8, 0xd2, 0x0a, 0x83, 0x86, 0x98,
0xb2, 0xd7, 0x7a, 0xdd, 0xdc, 0x8a, 0xd8, 0x09, 0x73, 0xea, 0x2d, 0xea, 0xa5, 0xe5, 0x76, 0x80,
0x85, 0x1f, 0x81, 0x79, 0xb1, 0x9f, 0x82, 0x1d, 0xe1, 0x78, 0x2a, 0x95, 0xee, 0xbe, 0xd8, 0xbd,
0xee, 0x50, 0xb7, 0x86, 0x12, 0x68, 0x7a, 0x51, 0xc4, 0x9a, 0x45, 0xf5, 0x80, 0x4e, 0xa3, 0xa9,
0x8b, 0x12, 0xf3, 0x79, 0x42, 0xd8, 0x45, 0x49, 0x52, 0xe8, 0x9c, 0x24, 0x2c, 0xd5, 0x66, 0xbb,
0xd1, 0xf0, 0xb0, 0x18, 0x41, 0xa5, 0x50, 0xc6, 0x22, 0x11, 0x07, 0x0c, 0x34, 0x04, 0x03, 0xee,
0x4b, 0xed, 0xae, 0x10, 0x9c, 0x9e, 0xda, 0x7e, 0x3d, 0x52, 0xb5, 0xf4, 0x57, 0xd4, 0xa0, 0xdd,
0x39, 0x02, 0x23, 0x77, 0xbb, 0x98, 0x47, 0x4f, 0x85, 0xda, 0xbe, 0x8f, 0xc3, 0x7e, 0xc7, 0x7e,
0x3f, 0x5d, 0x2d, 0x43, 0xe6, 0x97, 0x7b, 0x76, 0x8a, 0x42, 0x3f, 0xeb, 0x8c, 0x0e, 0xc1, 0xa1,
0x6f, 0x7b, 0x7d, 0x19, 0x3e, 0xb6, 0x49, 0x1b, 0xc2, 0x02, 0x21, 0x0b, 0x0d, 0xd1, 0x68, 0x7a,
0xab, 0x24, 0xc4, 0x51, 0x64, 0x9d, 0xb7, 0x70, 0xa4, 0x62, 0x76, 0x2c, 0x29, 0xbd, 0x11, 0x73,
0xea, 0x84, 0x7a, 0x35, 0x24, 0x63, 0xe9, 0x2d, 0xe5, 0xcb, 0x7d, 0x7c, 0x5e, 0x75, 0x3f, 0xc7,
0xac, 0x17, 0x4f, 0xc9, 0xa1, 0x15, 0x64, 0x5a, 0xdd, 0x22, 0xf7, 0x73, 0x7a, 0x4b, 0x13, 0x04,
0xda, 0xc0, 0x12, 0x06, 0xd3, 0x0e, 0x8f, 0xb1, 0x7a, 0xcc, 0x64, 0xa4, 0xd1, 0x28, 0x25, 0xa3,
0x7b, 0x14, 0xa6, 0xa1, 0x11, 0x5c, 0xf8, 0x14, 0x5c, 0x1e, 0x58, 0xdb, 0x8d, 0x86, 0xdb, 0x41,
0xb6, 0x7f, 0x8c, 0xd5, 0x26, 0xd3, 0xd4, 0x7a, 0xdd, 0xdc, 0xfa, 0xb0, 0x26, 0xc3, 0xe9, 0x21,
0x05, 0x6a, 0x68, 0x24, 0x1f, 0xfe, 0x18, 0xac, 0x8d, 0xb2, 0x5b, 0x1d, 0x5f, 0x75, 0x99, 0xb4,
0xf4, 0x8d, 0x34, 0x46, 0x5a, 0x27, 0x1d, 0x5f, 0x43, 0xe3, 0x64, 0xe8, 0x60, 0xd1, 0x77, 0x59,
0x1d, 0xbf, 0xdc, 0x8a, 0xd4, 0x9f, 0x30, 0x65, 0x29, 0xa5, 0x92, 0x32, 0xe9, 0xf8, 0x7a, 0xd0,
0x8a, 0x34, 0x94, 0x66, 0x0d, 0xd2, 0xc2, 0xdb, 0x59, 0xc4, 0x87, 0x9c, 0xa9, 0xc4, 0xbc, 0xcc,
0x75, 0x78, 0x23, 0x8c, 0xfa, 0x69, 0x11, 0x04, 0xf8, 0x01, 0x98, 0xe5, 0x86, 0x27, 0x95, 0x2a,
0x9f, 0x6e, 0xa6, 0xe4, 0xa9, 0x50, 0xb0, 0x5f, 0xd0, 0xa7, 0x0f, 0x80, 0xda, 0x4f, 0x15, 0xf0,
0x16, 0xc2, 0x2f, 0xda, 0x38, 0x22, 0x70, 0x1b, 0xcc, 0x96, 0x5b, 0x38, 0xb4, 0x89, 0x1b, 0xf8,
0xac, 0xb3, 0x2c, 0xde, 0xc9, 0x8a, 0x59, 0xa2, 0x6f, 0x47, 0x03, 0x08, 0xbc, 0x15, 0xcf, 0xb3,
0x2a, 0x1f, 0x3c, 0x16, 0x04, 0x98, 0x1b, 0x51, 0x3c, 0xec, 0xde, 0x8a, 0xdb, 0x17, 0xfb, 0xb3,
0xcc, 0x00, 0xc6, 0x8d, 0x48, 0x38, 0x35, 0x07, 0xcc, 0x20, 0x1c, 0xb5, 0x02, 0x3f, 0xc2, 0x50,
0x05, 0x6f, 0x55, 0xdb, 0x8e, 0x83, 0xa3, 0x88, 0xed, 0x63, 0x06, 0xc5, 0x4b, 0x78, 0x05, 0x4c,
0xd3, 0x6f, 0x96, 0x76, 0xc4, 0x9b, 0x17, 0x12, 0x2b, 0x69, 0x2f, 0x99, 0x0b, 0xf6, 0xb2, 0xf5,
0x17, 0x45, 0x3a, 0x23, 0x5c, 0x04, 0xa0, 0x14, 0x90, 0x2a, 0xb1, 0x43, 0x82, 0xeb, 0xd9, 0x09,
0x78, 0x19, 0x64, 0xc5, 0xe0, 0xce, 0x6c, 0x74, 0x52, 0xca, 0x2a, 0x70, 0x09, 0xcc, 0x21, 0x1c,
0xf5, 0x0d, 0x93, 0x70, 0x1e, 0xcc, 0xec, 0xbb, 0x9e, 0xc7, 0x56, 0x19, 0xea, 0xa6, 0x05, 0x23,
0x1f, 0x3a, 0x4d, 0xf7, 0x0c, 0x67, 0x2f, 0x51, 0x95, 0x5d, 0x1c, 0x91, 0x30, 0x38, 0xa7, 0x08,
0x36, 0x80, 0x67, 0xa7, 0xe0, 0x55, 0xb0, 0xba, 0xe3, 0xd9, 0xce, 0x49, 0x33, 0xf0, 0xd8, 0x87,
0x76, 0x25, 0x08, 0x89, 0xd5, 0x41, 0x9d, 0x6c, 0x1d, 0x5e, 0x07, 0x6b, 0x87, 0xfe, 0xd1, 0x48,
0x27, 0x86, 0xab, 0x60, 0x99, 0x95, 0xc5, 0x84, 0xb9, 0x01, 0xd7, 0xc0, 0xca, 0xa1, 0x5f, 0x1f,
0x72, 0x1c, 0x6f, 0xfd, 0x63, 0x86, 0xef, 0x47, 0x54, 0x64, 0xca, 0xdf, 0x2f, 0x9a, 0x66, 0xad,
0x5c, 0x32, 0x6a, 0x8f, 0xca, 0xa6, 0x59, 0x7e, 0x66, 0xa0, 0xec, 0x04, 0xfc, 0x0e, 0xd8, 0x1c,
0x32, 0xd7, 0x0e, 0x4b, 0x56, 0xd1, 0xac, 0x59, 0xa8, 0xf8, 0xf8, 0xb1, 0x81, 0x6a, 0xd5, 0x52,
0xbe, 0x52, 0xdd, 0x2b, 0x5b, 0x3c, 0x04, 0x0c, 0x6d, 0x1a, 0xf9, 0x5d, 0x03, 0x65, 0x27, 0xe1,
0x7b, 0x40, 0x93, 0x0c, 0xe3, 0x88, 0x99, 0x3e, 0xf1, 0xc9, 0x61, 0x19, 0x1d, 0x1e, 0x64, 0x2f,
0xb1, 0xd8, 0x51, 0x43, 0xde, 0x34, 0xb3, 0x53, 0x70, 0x0b, 0xbc, 0xb7, 0x63, 0xe6, 0x0b, 0xfb,
0x7b, 0x65, 0xd3, 0xa8, 0x55, 0x0c, 0x03, 0xd5, 0x2a, 0x65, 0x64, 0xd5, 0xac, 0xe7, 0x35, 0xf4,
0x3c, 0xb9, 0xe3, 0x3a, 0xcc, 0x83, 0x8f, 0xdf, 0x0c, 0x3b, 0x6e, 0x37, 0x18, 0xbe, 0x0b, 0x36,
0xc6, 0x4b, 0x88, 0xb3, 0x35, 0xe0, 0x87, 0xe0, 0x07, 0xaf, 0x43, 0x8d, 0x7b, 0xc4, 0xf1, 0xc5,
0x8f, 0x10, 0x51, 0x68, 0xc2, 0x1b, 0xe0, 0x9d, 0xf1, 0x28, 0x1a, 0x1a, 0x17, 0xfe, 0x1f, 0xd0,
0x76, 0x0d, 0x33, 0xff, 0xe9, 0xc5, 0x61, 0x79, 0xa9, 0xc0, 0x6d, 0xf0, 0x3e, 0xca, 0x97, 0x76,
0xcb, 0x07, 0xb5, 0x37, 0xc0, 0x7f, 0xa9, 0xc0, 0x4f, 0xc0, 0xbd, 0xd7, 0x03, 0xc7, 0x1d, 0xf0,
0x2b, 0x05, 0x1a, 0xe0, 0xe1, 0x1b, 0x3f, 0x6f, 0x9c, 0xcc, 0xd7, 0x0a, 0xbc, 0x01, 0xde, 0x1e,
0xcd, 0x17, 0x79, 0xf8, 0x46, 0x81, 0x9b, 0xe0, 0xe6, 0x85, 0x4f, 0x12, 0xc8, 0xdf, 0x2a, 0xf0,
0x87, 0xe0, 0xee, 0x45, 0x90, 0x71, 0xdb, 0xf8, 0x9d, 0x02, 0x1f, 0x80, 0xfb, 0x6f, 0xf0, 0x8c,
0x71, 0x02, 0xbf, 0xbf, 0xe0, 0x1c, 0x22, 0xd9, 0xdf, 0xbe, 0xfe, 0x1c, 0x02, 0xf9, 0x07, 0x05,
0xae, 0x83, 0xab, 0xa3, 0x21, 0xf4, 0x4e, 0xfc, 0x51, 0x81, 0xb7, 0xc0, 0xc6, 0x85, 0x4a, 0x14,
0xf6, 0x27, 0x05, 0xaa, 0x60, 0xa5, 0x54, 0xae, 0x3d, 0xca, 0x17, 0xcd, 0xda, 0xb3, 0xa2, 0xb5,
0x57, 0xab, 0x5a, 0xc8, 0xa8, 0x56, 0xb3, 0xbf, 0x9e, 0xa4, 0x5b, 0x49, 0x78, 0x4a, 0x65, 0xe1,
0xac, 0x3d, 0x2a, 0xa3, 0x9a, 0x59, 0x7c, 0x6a, 0x94, 0x28, 0xf2, 0x8b, 0x49, 0xb8, 0x04, 0x00,
0x85, 0x55, 0xca, 0xc5, 0x92, 0x55, 0xcd, 0xfe, 0x2c, 0x03, 0x17, 0xc0, 0x8c, 0xf1, 0xdc, 0x32,
0x50, 0x29, 0x6f, 0x66, 0xff, 0x99, 0xd9, 0x0a, 0x00, 0x18, 0x8c, 0x15, 0x70, 0x1a, 0x4c, 0xee,
0x3f, 0xcd, 0x4e, 0xc0, 0x59, 0x30, 0x65, 0x1a, 0xf9, 0xaa, 0x91, 0x55, 0xe0, 0x0a, 0x58, 0x32,
0x4c, 0xa3, 0x60, 0x15, 0xcb, 0xa5, 0x1a, 0x3a, 0x2c, 0x95, 0x58, 0xdd, 0xc8, 0x82, 0xf9, 0x67,
0x79, 0xab, 0xb0, 0x17, 0x5b, 0x32, 0xb4, 0x3e, 0x99, 0xe5, 0xc2, 0x7e, 0x0d, 0xe5, 0x0b, 0x06,
0x8a, 0xcd, 0x97, 0x28, 0x90, 0x09, 0xc5, 0x96, 0xa9, 0x3b, 0x0f, 0xc0, 0xac, 0x15, 0xda, 0x7e,
0xd4, 0x0a, 0x42, 0x02, 0xef, 0xc8, 0x8b, 0x45, 0x51, 0xeb, 0x45, 0x1f, 0xbb, 0xb6, 0xd4, 0x5f,
0xf3, 0x76, 0xa2, 0x4d, 0x6c, 0x2a, 0xdf, 0x55, 0x76, 0x2e, 0xbf, 0xfc, 0xdb, 0xfa, 0xc4, 0xcb,
0x57, 0xeb, 0xca, 0xb7, 0xaf, 0xd6, 0x95, 0xbf, 0xbe, 0x5a, 0x57, 0x7e, 0xf5, 0xf7, 0xf5, 0x89,
0xa3, 0x69, 0xf6, 0x8f, 0x89, 0xbb, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x9e, 0x8b, 0x82, 0xf1,
0xe1, 0x18, 0x00, 0x00,
}

View File

@ -102,6 +102,20 @@ message Member {
// Etcd defines etcd binary configuration flags.
Etcd Etcd = 301 [(gogoproto.moretags) = "yaml:\"etcd\""];
// ClientCertData contains cert file contents from this member's etcd server.
string ClientCertData = 401 [(gogoproto.moretags) = "yaml:\"client-cert-data\""];
// ClientKeyData contains key file contents from this member's etcd server.
string ClientKeyData = 402 [(gogoproto.moretags) = "yaml:\"client-key-data\""];
// ClientTrustedCAData contains trusted CA file contents from this member's etcd server.
string ClientTrustedCAData = 403 [(gogoproto.moretags) = "yaml:\"client-trusted-ca-data\""];
// PeerCertData contains cert file contents from this member's etcd server.
string PeerCertData = 501 [(gogoproto.moretags) = "yaml:\"peer-cert-data\""];
// PeerKeyData contains key file contents from this member's etcd server.
string PeerKeyData = 502 [(gogoproto.moretags) = "yaml:\"peer-key-data\""];
// PeerTrustedCAData contains trusted CA file contents from this member's etcd server.
string PeerTrustedCAData = 503 [(gogoproto.moretags) = "yaml:\"peer-trusted-ca-data\""];
}
enum FailureCase {
@ -216,14 +230,15 @@ message Tester {
message Request {
Operation Operation = 1;
// Member contains the same Member object from tester configuration.
Member Member = 2;
// Tester contains tester configuration.
Tester Tester = 3;
}
message Response {
bool Success = 1;
string Status = 2;
// TODO: support TLS
// Member contains the same Member object from tester request.
Member Member = 3;
}