remove tags from CheckTx

add value_type field to KVPair
This commit is contained in:
Anton Kaliaev 2017-11-20 18:21:59 -06:00
parent 02399071ff
commit fc7db13fa8
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
8 changed files with 170 additions and 142 deletions

View File

@ -85,7 +85,7 @@ func (app *localClient) CheckTxAsync(tx []byte) *ReqRes {
app.mtx.Unlock()
return app.callback(
types.ToRequestCheckTx(tx),
types.ToResponseCheckTx(res.Code, res.Data, res.Log, res.Tags),
types.ToResponseCheckTx(res.Code, res.Data, res.Log),
)
}

View File

@ -179,7 +179,7 @@ func (s *SocketServer) handleRequest(req *types.Request, responses chan<- *types
responses <- types.ToResponseDeliverTx(res.Code, res.Data, res.Log, res.Tags)
case *types.Request_CheckTx:
res := s.app.CheckTx(r.CheckTx.Tx)
responses <- types.ToResponseCheckTx(res.Code, res.Data, res.Log, res.Tags)
responses <- types.ToResponseCheckTx(res.Code, res.Data, res.Log)
case *types.Request_Commit:
res := s.app.Commit()
responses <- types.ToResponseCommit(res.Code, res.Data, res.Log)

View File

@ -58,7 +58,7 @@ func (app *GRPCApplication) DeliverTx(ctx context.Context, req *RequestDeliverTx
func (app *GRPCApplication) CheckTx(ctx context.Context, req *RequestCheckTx) (*ResponseCheckTx, error) {
r := app.app.CheckTx(req.Tx)
return &ResponseCheckTx{r.Code, r.Data, r.Log, r.Tags}, nil
return &ResponseCheckTx{r.Code, r.Data, r.Log}, nil
}
func (app *GRPCApplication) Query(ctx context.Context, req *RequestQuery) (*ResponseQuery, error) {

View File

@ -7,36 +7,36 @@ func NewBaseApplication() *BaseApplication {
return &BaseApplication{}
}
func (app *BaseApplication) Info(req RequestInfo) (resInfo ResponseInfo) {
return
func (BaseApplication) Info(req RequestInfo) ResponseInfo {
return ResponseInfo{}
}
func (app *BaseApplication) SetOption(key string, value string) (log string) {
func (BaseApplication) SetOption(key string, value string) (log string) {
return ""
}
func (app *BaseApplication) DeliverTx(tx []byte) Result {
func (BaseApplication) DeliverTx(tx []byte) Result {
return NewResultOK(nil, "")
}
func (app *BaseApplication) CheckTx(tx []byte) Result {
func (BaseApplication) CheckTx(tx []byte) Result {
return NewResultOK(nil, "")
}
func (app *BaseApplication) Commit() Result {
func (BaseApplication) Commit() Result {
return NewResultOK([]byte("nil"), "")
}
func (app *BaseApplication) Query(req RequestQuery) (resQuery ResponseQuery) {
return
func (BaseApplication) Query(req RequestQuery) ResponseQuery {
return ResponseQuery{}
}
func (app *BaseApplication) InitChain(req RequestInitChain) {
func (BaseApplication) InitChain(req RequestInitChain) {
}
func (app *BaseApplication) BeginBlock(req RequestBeginBlock) {
func (BaseApplication) BeginBlock(req RequestBeginBlock) {
}
func (app *BaseApplication) EndBlock(height uint64) (resEndBlock ResponseEndBlock) {
return
func (BaseApplication) EndBlock(height uint64) ResponseEndBlock {
return ResponseEndBlock{}
}

View File

@ -111,9 +111,9 @@ func ToResponseDeliverTx(code CodeType, data []byte, log string, tags []*KVPair)
}
}
func ToResponseCheckTx(code CodeType, data []byte, log string, tags []*KVPair) *Response {
func ToResponseCheckTx(code CodeType, data []byte, log string) *Response {
return &Response{
Value: &Response_CheckTx{&ResponseCheckTx{code, data, log, tags}},
Value: &Response_CheckTx{&ResponseCheckTx{code, data, log}},
}
}

View File

@ -103,7 +103,6 @@ func (r *ResponseCheckTx) Result() Result {
Code: r.Code,
Data: r.Data,
Log: r.Log,
Tags: r.Tags,
}
}

View File

@ -169,6 +169,27 @@ func (x CodeType) String() string {
}
func (CodeType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
type KVPair_Type int32
const (
KVPair_STRING KVPair_Type = 0
KVPair_INT KVPair_Type = 1
)
var KVPair_Type_name = map[int32]string{
0: "STRING",
1: "INT",
}
var KVPair_Type_value = map[string]int32{
"STRING": 0,
"INT": 1,
}
func (x KVPair_Type) String() string {
return proto.EnumName(KVPair_Type_name, int32(x))
}
func (KVPair_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{29, 0} }
type Request struct {
// Types that are valid to be assigned to Value:
// *Request_Echo
@ -1337,10 +1358,9 @@ func (m *ResponseDeliverTx) GetTags() []*KVPair {
}
type ResponseCheckTx struct {
Code CodeType `protobuf:"varint,1,opt,name=code,enum=types.CodeType" json:"code,omitempty"`
Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
Log string `protobuf:"bytes,3,opt,name=log" json:"log,omitempty"`
Tags []*KVPair `protobuf:"bytes,4,rep,name=tags" json:"tags,omitempty"`
Code CodeType `protobuf:"varint,1,opt,name=code,enum=types.CodeType" json:"code,omitempty"`
Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
Log string `protobuf:"bytes,3,opt,name=log" json:"log,omitempty"`
}
func (m *ResponseCheckTx) Reset() { *m = ResponseCheckTx{} }
@ -1369,13 +1389,6 @@ func (m *ResponseCheckTx) GetLog() string {
return ""
}
func (m *ResponseCheckTx) GetTags() []*KVPair {
if m != nil {
return m.Tags
}
return nil
}
type ResponseQuery struct {
Code CodeType `protobuf:"varint,1,opt,name=code,enum=types.CodeType" json:"code,omitempty"`
Index int64 `protobuf:"varint,2,opt,name=index" json:"index,omitempty"`
@ -1657,9 +1670,10 @@ func (m *Validator) GetPower() uint64 {
}
type KVPair struct {
Key string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
ValueString string `protobuf:"bytes,2,opt,name=value_string,json=valueString" json:"value_string,omitempty"`
ValueInt int64 `protobuf:"varint,3,opt,name=value_int,json=valueInt" json:"value_int,omitempty"`
Key string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
ValueType KVPair_Type `protobuf:"varint,2,opt,name=value_type,json=valueType,enum=types.KVPair_Type" json:"value_type,omitempty"`
ValueString string `protobuf:"bytes,3,opt,name=value_string,json=valueString" json:"value_string,omitempty"`
ValueInt int64 `protobuf:"varint,4,opt,name=value_int,json=valueInt" json:"value_int,omitempty"`
}
func (m *KVPair) Reset() { *m = KVPair{} }
@ -1674,6 +1688,13 @@ func (m *KVPair) GetKey() string {
return ""
}
func (m *KVPair) GetValueType() KVPair_Type {
if m != nil {
return m.ValueType
}
return KVPair_STRING
}
func (m *KVPair) GetValueString() string {
if m != nil {
return m.ValueString
@ -1720,6 +1741,7 @@ func init() {
proto.RegisterType((*Validator)(nil), "types.Validator")
proto.RegisterType((*KVPair)(nil), "types.KVPair")
proto.RegisterEnum("types.CodeType", CodeType_name, CodeType_value)
proto.RegisterEnum("types.KVPair_Type", KVPair_Type_name, KVPair_Type_value)
}
// Reference imports to suppress errors if they are not otherwise used.
@ -2127,111 +2149,114 @@ var _ABCIApplication_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("types/types.proto", fileDescriptor0) }
var fileDescriptor0 = []byte{
// 1691 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0x49, 0x6f, 0x1b, 0xc9,
0x15, 0x56, 0x73, 0xe7, 0x13, 0x45, 0xb5, 0x4a, 0x94, 0x44, 0x31, 0x39, 0xd8, 0x1d, 0x38, 0x96,
0x1c, 0xc7, 0x0e, 0x64, 0x38, 0xb0, 0xe2, 0x20, 0x80, 0x36, 0x4b, 0x84, 0x11, 0x5b, 0x69, 0x2f,
0x87, 0xe4, 0x40, 0xb4, 0xd8, 0x45, 0xb2, 0x22, 0xb2, 0xaa, 0xdd, 0x5d, 0x2d, 0x53, 0xb9, 0x04,
0xb9, 0xfb, 0x9e, 0x9f, 0x30, 0xf7, 0x01, 0xe6, 0x2f, 0x0c, 0x30, 0xfb, 0xf2, 0x8b, 0x06, 0xb5,
0xf4, 0xaa, 0xa6, 0x31, 0x87, 0xc1, 0x5c, 0x88, 0x7e, 0x5b, 0x55, 0xbd, 0x57, 0xef, 0x7d, 0xef,
0x15, 0x61, 0x8d, 0x5f, 0x7b, 0x38, 0x78, 0x28, 0x7f, 0x1f, 0x78, 0x3e, 0xe3, 0x0c, 0x55, 0x25,
0x61, 0x7d, 0x5e, 0x81, 0xba, 0x8d, 0xdf, 0x85, 0x38, 0xe0, 0x68, 0x07, 0x2a, 0x78, 0x38, 0x61,
0x5d, 0xe3, 0x96, 0xb1, 0xb3, 0xbc, 0x87, 0x1e, 0x28, 0x75, 0x2d, 0x3d, 0x19, 0x4e, 0xd8, 0xd9,
0x92, 0x2d, 0x35, 0xd0, 0x1f, 0xa0, 0x3a, 0x9a, 0x86, 0xc1, 0xa4, 0x5b, 0x92, 0xaa, 0xeb, 0x59,
0xd5, 0x67, 0x42, 0x74, 0xb6, 0x64, 0x2b, 0x1d, 0xb1, 0x2c, 0xa1, 0x23, 0xd6, 0x2d, 0x17, 0x2d,
0xdb, 0xa7, 0x23, 0xb9, 0xac, 0xd0, 0x40, 0x4f, 0x00, 0x02, 0xcc, 0x07, 0xcc, 0xe3, 0x84, 0xd1,
0x6e, 0x45, 0xea, 0x6f, 0x65, 0xf5, 0x5f, 0x61, 0xfe, 0x52, 0x8a, 0xcf, 0x96, 0xec, 0x66, 0x10,
0x11, 0xc2, 0xd2, 0xc5, 0x53, 0x72, 0x85, 0xfd, 0x01, 0x9f, 0x77, 0xab, 0x45, 0x96, 0xc7, 0x4a,
0xfe, 0x7a, 0x2e, 0x2c, 0xdd, 0x88, 0x40, 0x7b, 0xd0, 0x18, 0x4e, 0xf0, 0xf0, 0x52, 0xd8, 0xd5,
0xa4, 0xdd, 0x46, 0xd6, 0xee, 0x48, 0x48, 0xa5, 0x55, 0x7d, 0xa8, 0x3e, 0xd1, 0x03, 0xa8, 0x0d,
0xd9, 0x6c, 0x46, 0x78, 0xb7, 0x2e, 0x2d, 0x3a, 0x39, 0x0b, 0x29, 0x3b, 0x5b, 0xb2, 0xb5, 0x96,
0x08, 0xd7, 0xbb, 0x10, 0xfb, 0xd7, 0xdd, 0x46, 0x51, 0xb8, 0xfe, 0x21, 0x44, 0x22, 0x5c, 0x52,
0x47, 0xb8, 0x42, 0x28, 0xe1, 0x83, 0xe1, 0xc4, 0x21, 0xb4, 0xdb, 0x2c, 0x72, 0xa5, 0x4f, 0x09,
0x3f, 0x12, 0x62, 0xe1, 0x0a, 0x89, 0x08, 0xf4, 0x14, 0x96, 0x2f, 0xf0, 0x98, 0xd0, 0xc1, 0xc5,
0x94, 0x0d, 0x2f, 0xbb, 0x20, 0x4d, 0xbb, 0x59, 0xd3, 0x43, 0xa1, 0x70, 0x28, 0xe4, 0x67, 0x4b,
0x36, 0x5c, 0xc4, 0x14, 0x7a, 0x0c, 0x4d, 0x4c, 0x5d, 0x6d, 0xba, 0x2c, 0x4d, 0x37, 0x73, 0x19,
0x40, 0xdd, 0xc8, 0xb0, 0x81, 0xf5, 0xf7, 0x61, 0x1d, 0xaa, 0x57, 0xce, 0x34, 0xc4, 0xd6, 0x5d,
0x58, 0x4e, 0x65, 0x0a, 0xea, 0x42, 0x7d, 0x86, 0x83, 0xc0, 0x19, 0x63, 0x99, 0x4e, 0x4d, 0x3b,
0x22, 0xad, 0x36, 0xb4, 0xd2, 0x79, 0x92, 0x32, 0x14, 0xb9, 0x20, 0x0c, 0xaf, 0xb0, 0x1f, 0x88,
0x04, 0xd0, 0x86, 0x9a, 0xb4, 0xfe, 0x02, 0x66, 0x3e, 0x09, 0x90, 0x09, 0xe5, 0x4b, 0x7c, 0xad,
0x35, 0xc5, 0x27, 0xea, 0xe8, 0x03, 0xc9, 0xd4, 0x6c, 0xda, 0xfa, 0x74, 0x56, 0x6c, 0x1b, 0xa7,
0x01, 0x6a, 0x43, 0x89, 0xcf, 0xa5, 0x69, 0xcb, 0x2e, 0xf1, 0xb9, 0x75, 0x0b, 0xda, 0xd9, 0x2b,
0xbf, 0xa1, 0xe1, 0xc6, 0x47, 0x97, 0x77, 0x86, 0x10, 0x54, 0x5c, 0x87, 0x3b, 0x5a, 0x43, 0x7e,
0x0b, 0x9e, 0xe7, 0xf0, 0x89, 0xde, 0x5e, 0x7e, 0xa3, 0x4d, 0xa8, 0x4d, 0x30, 0x19, 0x4f, 0xb8,
0xac, 0x81, 0x8a, 0xad, 0x29, 0x71, 0x56, 0xcf, 0x67, 0x57, 0x58, 0xa6, 0x7a, 0xc3, 0x56, 0x84,
0xb5, 0x0a, 0x2b, 0x99, 0x44, 0xb2, 0x8e, 0xe3, 0xc3, 0xc7, 0x17, 0x8f, 0xfe, 0x04, 0x70, 0xe5,
0x4c, 0x89, 0xeb, 0x70, 0xe6, 0x07, 0x5d, 0xe3, 0x56, 0x79, 0x67, 0x79, 0xcf, 0xd4, 0xf7, 0xf5,
0x36, 0x12, 0xd8, 0x29, 0x1d, 0xeb, 0x05, 0xac, 0xdd, 0xc8, 0x01, 0x71, 0xda, 0x89, 0x13, 0x4c,
0x22, 0x0f, 0xc4, 0x37, 0xba, 0x23, 0x4e, 0xeb, 0xb8, 0xd8, 0xd7, 0xd5, 0xbd, 0xa2, 0x97, 0x3d,
0x93, 0x4c, 0x5b, 0x0b, 0xad, 0x5d, 0x58, 0xcd, 0x25, 0x46, 0xca, 0x4f, 0x23, 0xed, 0xa7, 0xf5,
0xa1, 0x0a, 0x0d, 0x1b, 0x07, 0x1e, 0xa3, 0x01, 0x46, 0x4f, 0xa0, 0x89, 0xe7, 0x43, 0xac, 0x6a,
0xdc, 0xc8, 0xe5, 0xa8, 0xd2, 0x39, 0x89, 0xe4, 0x22, 0xbf, 0x63, 0x65, 0xb4, 0xab, 0xf1, 0x29,
0x0f, 0x3a, 0xda, 0x28, 0x0d, 0x50, 0xf7, 0x23, 0x80, 0x2a, 0xe7, 0x0a, 0x54, 0xe9, 0xe6, 0x10,
0x6a, 0x57, 0x23, 0x54, 0xa5, 0x70, 0xe1, 0x0c, 0x44, 0xed, 0x67, 0x20, 0xaa, 0x5a, 0x78, 0xfc,
0x05, 0x18, 0xb5, 0x9f, 0xc1, 0xa8, 0x5a, 0xa1, 0xe9, 0x02, 0x90, 0x7a, 0x94, 0x02, 0xa9, 0x7a,
0xae, 0x36, 0x95, 0x61, 0x01, 0x4a, 0x3d, 0x8c, 0x51, 0xaa, 0x91, 0xc3, 0x35, 0x6d, 0x92, 0x87,
0xa9, 0xfb, 0x11, 0x4c, 0x35, 0x0b, 0x83, 0x96, 0xc3, 0xa9, 0xfd, 0x0c, 0x4e, 0x41, 0xa1, 0x3b,
0x0b, 0x80, 0xea, 0xaf, 0x59, 0xa0, 0x52, 0x68, 0xb3, 0x9d, 0xb3, 0x5d, 0x88, 0x54, 0x7f, 0x4e,
0x23, 0x55, 0x2b, 0x87, 0x8f, 0x3a, 0x17, 0x3e, 0x0a, 0x55, 0xbb, 0xa2, 0x12, 0x72, 0x99, 0x26,
0x6a, 0x11, 0xfb, 0x3e, 0xf3, 0x35, 0x96, 0x28, 0xc2, 0xda, 0x11, 0x15, 0x9f, 0xe4, 0xd7, 0x47,
0x60, 0x4d, 0x56, 0x6d, 0x2a, 0xbb, 0xac, 0xff, 0x1b, 0x89, 0xad, 0x44, 0xb6, 0x34, 0x5a, 0x34,
0x35, 0x5a, 0xa4, 0xd0, 0xae, 0x94, 0x41, 0x3b, 0x74, 0x0f, 0xd6, 0xa6, 0x4e, 0xc0, 0x95, 0x9b,
0x83, 0x0c, 0x7c, 0xac, 0x0a, 0x81, 0xf2, 0x4f, 0xe1, 0xc8, 0x1f, 0x61, 0x3d, 0xa5, 0xeb, 0x78,
0xde, 0x40, 0x16, 0x75, 0x45, 0x16, 0xb5, 0x19, 0x6b, 0x1f, 0x78, 0xde, 0x99, 0x13, 0x4c, 0xac,
0x3b, 0x89, 0xff, 0x19, 0x24, 0x9d, 0xb2, 0x71, 0x84, 0xa4, 0x53, 0x36, 0xb6, 0xfe, 0x67, 0x24,
0x7a, 0x09, 0x6a, 0xfe, 0x0e, 0x2a, 0x43, 0xe6, 0x2a, 0xf7, 0xdb, 0x7b, 0xab, 0x3a, 0xf0, 0x47,
0xcc, 0xc5, 0xaf, 0xaf, 0x3d, 0x6c, 0x4b, 0x61, 0xec, 0x6a, 0x29, 0x05, 0x8c, 0x7a, 0x83, 0x72,
0xbc, 0x01, 0xba, 0x0d, 0x15, 0xee, 0x8c, 0x83, 0x6e, 0x45, 0xa2, 0x57, 0x04, 0x33, 0xcf, 0xdf,
0x9e, 0x3b, 0xc4, 0xb7, 0xa5, 0xc8, 0xfa, 0xaf, 0x00, 0x99, 0x4c, 0x86, 0xff, 0xca, 0x07, 0xf8,
0xd4, 0x48, 0xee, 0x55, 0x81, 0xfe, 0xcf, 0xda, 0xbf, 0x03, 0x55, 0x42, 0x5d, 0x3c, 0x97, 0x07,
0x28, 0xdb, 0x8a, 0x88, 0xba, 0x55, 0x59, 0x1e, 0x2a, 0xdb, 0xad, 0xd4, 0x5d, 0x29, 0x42, 0xf7,
0x05, 0x36, 0x92, 0xf8, 0xd2, 0xb2, 0x15, 0x91, 0x42, 0xd7, 0x5a, 0xa6, 0x8b, 0x68, 0xbf, 0xea,
0xc9, 0xcd, 0xfd, 0x4b, 0x74, 0xb2, 0x74, 0x91, 0xff, 0x82, 0x41, 0xb3, 0xd6, 0x93, 0xac, 0x88,
0xcb, 0xdb, 0xea, 0x00, 0xba, 0x59, 0xb7, 0xaa, 0x63, 0x67, 0x2b, 0x12, 0xfd, 0x1e, 0xaa, 0x2e,
0x19, 0x8d, 0x16, 0xf7, 0x2c, 0x25, 0xb6, 0x3e, 0x29, 0x41, 0x4d, 0x75, 0x1c, 0xb4, 0x2d, 0xd0,
0xcf, 0x21, 0x74, 0x40, 0xdc, 0xa8, 0xea, 0x24, 0xdd, 0x77, 0x53, 0x31, 0x29, 0x65, 0x62, 0x82,
0xa0, 0xc2, 0xc9, 0x0c, 0xeb, 0x82, 0x91, 0xdf, 0x68, 0x0b, 0xea, 0x34, 0x9c, 0x0d, 0xf8, 0x3c,
0x90, 0xd1, 0xae, 0xd8, 0x35, 0x1a, 0xce, 0x5e, 0xcf, 0x03, 0xb4, 0x07, 0x2b, 0xa9, 0xf2, 0x21,
0xae, 0x86, 0xf5, 0xb6, 0x3e, 0x9a, 0x3c, 0x77, 0xff, 0xd8, 0x5e, 0x8e, 0x0b, 0xa9, 0xef, 0xa2,
0x1d, 0x90, 0x75, 0x35, 0x50, 0xd0, 0xa9, 0xea, 0xad, 0x26, 0xe3, 0xd6, 0x16, 0x7c, 0x8d, 0xad,
0xa2, 0x9d, 0xfe, 0x06, 0x9a, 0x22, 0x92, 0x4a, 0xa5, 0x2e, 0x55, 0x1a, 0x82, 0x21, 0x85, 0x77,
0x61, 0x35, 0x69, 0xd1, 0x4a, 0xa5, 0xa1, 0x56, 0x49, 0xd8, 0x52, 0x71, 0x1b, 0x1a, 0x71, 0x5d,
0x37, 0xa5, 0x46, 0xdd, 0xd1, 0xe5, 0xdc, 0x87, 0xba, 0x3e, 0x62, 0x61, 0x3b, 0xbf, 0x07, 0x55,
0xcf, 0xf1, 0x79, 0xa0, 0xdb, 0x66, 0x84, 0xea, 0xe7, 0x8e, 0x2f, 0xe6, 0x28, 0xdd, 0xd4, 0x95,
0x8a, 0xb5, 0x0f, 0x2b, 0x19, 0xbe, 0xc8, 0x44, 0xce, 0xb8, 0x33, 0xd5, 0x0d, 0x5d, 0x11, 0xf1,
0x36, 0xa5, 0x64, 0x1b, 0x6b, 0x1f, 0x9a, 0xf1, 0x1d, 0x8a, 0x6b, 0xf1, 0xc2, 0x8b, 0xe7, 0x7a,
0x32, 0x6b, 0xd9, 0x9a, 0x92, 0x89, 0xcd, 0xde, 0xeb, 0xc9, 0xa2, 0x62, 0x2b, 0xc2, 0xfa, 0x27,
0xd4, 0x54, 0xcd, 0x15, 0x8c, 0x73, 0xb7, 0xa1, 0x25, 0x6b, 0x62, 0x10, 0x70, 0x9f, 0xd0, 0xb1,
0x46, 0xc9, 0x65, 0xc9, 0x7b, 0x25, 0x59, 0x22, 0xc0, 0x4a, 0x85, 0x50, 0x85, 0x90, 0x65, 0xbb,
0x21, 0x19, 0x7d, 0xca, 0xef, 0x7d, 0x56, 0x85, 0x46, 0x94, 0xe6, 0xa8, 0x06, 0xa5, 0x97, 0xcf,
0xcd, 0x25, 0xb4, 0x06, 0x2b, 0x7d, 0xca, 0xb1, 0x4f, 0x9d, 0xe9, 0x89, 0x80, 0x79, 0xd3, 0x10,
0xac, 0x13, 0x3a, 0x64, 0x2e, 0xa1, 0x63, 0xc5, 0x2a, 0xa1, 0x16, 0x34, 0x0e, 0x1d, 0xf7, 0x05,
0xa3, 0x43, 0x6c, 0x96, 0x91, 0x09, 0xad, 0x37, 0xd4, 0x09, 0xf9, 0x84, 0xf9, 0xe4, 0x3f, 0xd8,
0x35, 0x2b, 0x68, 0x03, 0xd6, 0xfa, 0x34, 0x08, 0x47, 0x23, 0x32, 0x24, 0x98, 0xf2, 0x67, 0x21,
0x75, 0x03, 0xb3, 0x8a, 0x10, 0xb4, 0xdf, 0xd0, 0x4b, 0xca, 0xde, 0x53, 0x3d, 0x1e, 0x99, 0x35,
0xd4, 0x85, 0xce, 0xa1, 0x13, 0xe0, 0xe3, 0xd0, 0x9b, 0x92, 0xa1, 0xc3, 0xf1, 0x81, 0xeb, 0xfa,
0x38, 0x08, 0x4c, 0x2c, 0x16, 0x11, 0x92, 0xec, 0xde, 0xa3, 0xc8, 0x20, 0xb3, 0x3e, 0xc6, 0x81,
0x39, 0x46, 0xdb, 0xb0, 0x71, 0x43, 0x22, 0x77, 0x9e, 0xa0, 0xdf, 0x42, 0x37, 0x2f, 0x3a, 0x75,
0x82, 0x73, 0x9f, 0x0c, 0xb1, 0x49, 0x50, 0x07, 0x4c, 0x25, 0x95, 0x99, 0xd5, 0xa7, 0x5e, 0xc8,
0xcd, 0x7f, 0x47, 0xfb, 0x6b, 0xee, 0xcb, 0x90, 0x0b, 0xf6, 0x65, 0x8e, 0x7d, 0x2e, 0x6f, 0xcf,
0x9c, 0xa2, 0x2d, 0x58, 0x4f, 0xb1, 0x5f, 0x09, 0xff, 0x44, 0x74, 0x66, 0xc9, 0x79, 0x95, 0x80,
0x8c, 0xa9, 0xc3, 0x43, 0x1f, 0x9b, 0x14, 0x6d, 0x02, 0x12, 0x12, 0x1d, 0x92, 0xc8, 0x71, 0x16,
0xed, 0xa0, 0xf9, 0x7a, 0x07, 0x2f, 0xcf, 0x9e, 0x86, 0x63, 0x42, 0xcd, 0x77, 0x68, 0x03, 0xcc,
0x53, 0x76, 0xa5, 0xb9, 0x27, 0x94, 0x13, 0x7e, 0x6d, 0x7e, 0x61, 0xa0, 0x0e, 0xac, 0x26, 0xec,
0x53, 0x9f, 0x85, 0x9e, 0xf9, 0xa5, 0x81, 0xb6, 0x00, 0x25, 0xdc, 0x73, 0x9f, 0x79, 0x2c, 0x70,
0xa6, 0xe6, 0x57, 0x06, 0xda, 0x84, 0xb5, 0x53, 0x76, 0x15, 0xdf, 0x82, 0x32, 0xf8, 0x3a, 0x32,
0x88, 0xf9, 0x7f, 0xc7, 0xb3, 0x0b, 0xec, 0x9b, 0xdf, 0x18, 0x68, 0x1b, 0x3a, 0x69, 0x41, 0xbc,
0xd6, 0xb7, 0x86, 0x3e, 0x51, 0x2c, 0x7a, 0xcb, 0x38, 0x36, 0xbf, 0x8b, 0xd8, 0x3a, 0x0e, 0x7a,
0xa1, 0xef, 0x0d, 0xb4, 0x0e, 0xed, 0x84, 0x2d, 0x75, 0x7f, 0x30, 0x50, 0x0f, 0x36, 0x32, 0x4c,
0x42, 0xc7, 0xe7, 0xa2, 0x20, 0xcc, 0x1f, 0x8d, 0xbd, 0x0f, 0x55, 0x58, 0x3d, 0x38, 0x3c, 0xea,
0x1f, 0x78, 0x6a, 0x03, 0xd1, 0xa2, 0x1f, 0x42, 0x45, 0x0e, 0x21, 0x05, 0x2f, 0xf3, 0x5e, 0xd1,
0x34, 0x8c, 0xf6, 0xa0, 0x2a, 0x67, 0x11, 0x54, 0xf4, 0x40, 0xef, 0x15, 0x0e, 0xc5, 0x62, 0x13,
0x35, 0xad, 0xdc, 0x7c, 0xa7, 0xf7, 0x8a, 0x26, 0x63, 0xf4, 0x37, 0x68, 0x26, 0x53, 0xc4, 0xa2,
0xd7, 0x7a, 0x6f, 0xe1, 0x8c, 0x2c, 0xec, 0x93, 0xe9, 0x62, 0xd1, 0x9b, 0xbd, 0xb7, 0x70, 0x50,
0x46, 0x4f, 0xa0, 0x1e, 0x8d, 0x06, 0xc5, 0x2f, 0xf7, 0xde, 0x82, 0x59, 0x59, 0x84, 0x47, 0xb5,
0xf4, 0xa2, 0x07, 0x79, 0xaf, 0x70, 0xfc, 0x45, 0x8f, 0xa1, 0xa6, 0x5b, 0x6a, 0xe1, 0xa3, 0xbf,
0x57, 0x3c, 0x64, 0x0b, 0x27, 0x93, 0xb7, 0xdb, 0xa2, 0xd7, 0x7c, 0x6f, 0xe1, 0xf8, 0x8c, 0x0e,
0x00, 0x52, 0xaf, 0xb6, 0x85, 0x6f, 0xfa, 0xde, 0xe2, 0x21, 0x1a, 0x3d, 0x85, 0x46, 0xf2, 0x50,
0x2b, 0x7e, 0xd9, 0xf7, 0x16, 0xcd, 0xd1, 0x17, 0x35, 0xf9, 0xa7, 0xd1, 0xa3, 0x9f, 0x02, 0x00,
0x00, 0xff, 0xff, 0x37, 0x8d, 0xa7, 0x8f, 0x49, 0x12, 0x00, 0x00,
// 1736 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0xcb, 0x6e, 0xdb, 0xcc,
0x15, 0x36, 0x25, 0xea, 0x76, 0x2c, 0xcb, 0xf4, 0x58, 0xb6, 0x65, 0xa5, 0x8b, 0x84, 0x45, 0x1a,
0x3b, 0x4d, 0x9d, 0xd6, 0x41, 0x8a, 0xb8, 0x29, 0x0a, 0xf8, 0x16, 0x5b, 0x08, 0xea, 0xb8, 0xb4,
0x93, 0x4d, 0x0b, 0x08, 0xb4, 0x38, 0x92, 0xa6, 0x96, 0x86, 0x0c, 0x39, 0x74, 0xe4, 0xee, 0xba,
0xcf, 0xbe, 0x8f, 0x50, 0xa0, 0xcb, 0x02, 0x7d, 0x85, 0x02, 0xff, 0xfd, 0xf2, 0x44, 0x3f, 0xe6,
0xc2, 0xab, 0xa9, 0xe0, 0x5f, 0x64, 0x23, 0xf0, 0x5c, 0xbe, 0x99, 0x33, 0x33, 0xe7, 0x7c, 0x73,
0x46, 0xb0, 0xc2, 0x6e, 0x3d, 0x1c, 0x3c, 0x15, 0xbf, 0x3b, 0x9e, 0xef, 0x32, 0x17, 0x55, 0x84,
0x60, 0xfe, 0x5f, 0x87, 0x9a, 0x85, 0xdf, 0x87, 0x38, 0x60, 0x68, 0x0b, 0x74, 0x3c, 0x18, 0xbb,
0x1d, 0xed, 0xbe, 0xb6, 0xb5, 0xb8, 0x8b, 0x76, 0xa4, 0xbb, 0xb2, 0x1e, 0x0f, 0xc6, 0xee, 0xe9,
0x82, 0x25, 0x3c, 0xd0, 0xaf, 0xa1, 0x32, 0x9c, 0x84, 0xc1, 0xb8, 0x53, 0x12, 0xae, 0xab, 0x59,
0xd7, 0x57, 0xdc, 0x74, 0xba, 0x60, 0x49, 0x1f, 0x3e, 0x2c, 0xa1, 0x43, 0xb7, 0x53, 0x2e, 0x1a,
0xb6, 0x47, 0x87, 0x62, 0x58, 0xee, 0x81, 0x5e, 0x00, 0x04, 0x98, 0xf5, 0x5d, 0x8f, 0x11, 0x97,
0x76, 0x74, 0xe1, 0xbf, 0x91, 0xf5, 0xbf, 0xc0, 0xec, 0x8d, 0x30, 0x9f, 0x2e, 0x58, 0x8d, 0x20,
0x12, 0x38, 0xd2, 0xc1, 0x13, 0x72, 0x83, 0xfd, 0x3e, 0x9b, 0x75, 0x2a, 0x45, 0xc8, 0x23, 0x69,
0xbf, 0x9c, 0x71, 0xa4, 0x13, 0x09, 0x68, 0x17, 0xea, 0x83, 0x31, 0x1e, 0x5c, 0x73, 0x5c, 0x55,
0xe0, 0xd6, 0xb2, 0xb8, 0x43, 0x6e, 0x15, 0xa8, 0xda, 0x40, 0x7e, 0xa2, 0x1d, 0xa8, 0x0e, 0xdc,
0xe9, 0x94, 0xb0, 0x4e, 0x4d, 0x20, 0xda, 0x39, 0x84, 0xb0, 0x9d, 0x2e, 0x58, 0xca, 0x8b, 0x6f,
0xd7, 0xfb, 0x10, 0xfb, 0xb7, 0x9d, 0x7a, 0xd1, 0x76, 0xfd, 0x85, 0x9b, 0xf8, 0x76, 0x09, 0x1f,
0xbe, 0x14, 0x42, 0x09, 0xeb, 0x0f, 0xc6, 0x36, 0xa1, 0x9d, 0x46, 0xd1, 0x52, 0x7a, 0x94, 0xb0,
0x43, 0x6e, 0xe6, 0x4b, 0x21, 0x91, 0x80, 0x5e, 0xc2, 0xe2, 0x15, 0x1e, 0x11, 0xda, 0xbf, 0x9a,
0xb8, 0x83, 0xeb, 0x0e, 0x08, 0x68, 0x27, 0x0b, 0x3d, 0xe0, 0x0e, 0x07, 0xdc, 0x7e, 0xba, 0x60,
0xc1, 0x55, 0x2c, 0xa1, 0xe7, 0xd0, 0xc0, 0xd4, 0x51, 0xd0, 0x45, 0x01, 0x5d, 0xcf, 0x65, 0x00,
0x75, 0x22, 0x60, 0x1d, 0xab, 0xef, 0x83, 0x1a, 0x54, 0x6e, 0xec, 0x49, 0x88, 0xcd, 0x47, 0xb0,
0x98, 0xca, 0x14, 0xd4, 0x81, 0xda, 0x14, 0x07, 0x81, 0x3d, 0xc2, 0x22, 0x9d, 0x1a, 0x56, 0x24,
0x9a, 0x2d, 0x68, 0xa6, 0xf3, 0x24, 0x05, 0xe4, 0xb9, 0xc0, 0x81, 0x37, 0xd8, 0x0f, 0x78, 0x02,
0x28, 0xa0, 0x12, 0xcd, 0x3f, 0x80, 0x91, 0x4f, 0x02, 0x64, 0x40, 0xf9, 0x1a, 0xdf, 0x2a, 0x4f,
0xfe, 0x89, 0xda, 0x2a, 0x20, 0x91, 0x9a, 0x0d, 0x4b, 0x45, 0x67, 0xc6, 0xd8, 0x38, 0x0d, 0x50,
0x0b, 0x4a, 0x6c, 0x26, 0xa0, 0x4d, 0xab, 0xc4, 0x66, 0xe6, 0x7d, 0x68, 0x65, 0x8f, 0xfc, 0x8e,
0x87, 0x13, 0x87, 0x2e, 0xce, 0x0c, 0x21, 0xd0, 0x1d, 0x9b, 0xd9, 0xca, 0x43, 0x7c, 0x73, 0x9d,
0x67, 0xb3, 0xb1, 0x9a, 0x5e, 0x7c, 0xa3, 0x75, 0xa8, 0x8e, 0x31, 0x19, 0x8d, 0x99, 0xa8, 0x01,
0xdd, 0x52, 0x12, 0x8f, 0xd5, 0xf3, 0xdd, 0x1b, 0x2c, 0x52, 0xbd, 0x6e, 0x49, 0xc1, 0x5c, 0x86,
0xa5, 0x4c, 0x22, 0x99, 0x47, 0x71, 0xf0, 0xf1, 0xc1, 0xa3, 0xdf, 0x02, 0xdc, 0xd8, 0x13, 0xe2,
0xd8, 0xcc, 0xf5, 0x83, 0x8e, 0x76, 0xbf, 0xbc, 0xb5, 0xb8, 0x6b, 0xa8, 0xf3, 0x7a, 0x17, 0x19,
0xac, 0x94, 0x8f, 0x79, 0x06, 0x2b, 0x77, 0x72, 0x80, 0x47, 0x3b, 0xb6, 0x83, 0x71, 0xb4, 0x02,
0xfe, 0x8d, 0x1e, 0xf2, 0x68, 0x6d, 0x07, 0xfb, 0xaa, 0xba, 0x97, 0xd4, 0xb0, 0xa7, 0x42, 0x69,
0x29, 0xa3, 0xb9, 0x0d, 0xcb, 0xb9, 0xc4, 0x48, 0xad, 0x53, 0x4b, 0xaf, 0xd3, 0xfc, 0x58, 0x81,
0xba, 0x85, 0x03, 0xcf, 0xa5, 0x01, 0x46, 0x2f, 0xa0, 0x81, 0x67, 0x03, 0x2c, 0x6b, 0x5c, 0xcb,
0xe5, 0xa8, 0xf4, 0x39, 0x8e, 0xec, 0x3c, 0xbf, 0x63, 0x67, 0xb4, 0xad, 0xf8, 0x29, 0x4f, 0x3a,
0x0a, 0x94, 0x26, 0xa8, 0x27, 0x11, 0x41, 0x95, 0x73, 0x05, 0x2a, 0x7d, 0x73, 0x0c, 0xb5, 0xad,
0x18, 0x4a, 0x2f, 0x1c, 0x38, 0x43, 0x51, 0x7b, 0x19, 0x8a, 0xaa, 0x14, 0x86, 0x3f, 0x87, 0xa3,
0xf6, 0x32, 0x1c, 0x55, 0x2d, 0x84, 0xce, 0x21, 0xa9, 0x67, 0x29, 0x92, 0xaa, 0xe5, 0x6a, 0x53,
0x02, 0x0b, 0x58, 0xea, 0x69, 0xcc, 0x52, 0xf5, 0x1c, 0xaf, 0x29, 0x48, 0x9e, 0xa6, 0x9e, 0x44,
0x34, 0xd5, 0x28, 0xdc, 0xb4, 0x1c, 0x4f, 0xed, 0x65, 0x78, 0x0a, 0x0a, 0x97, 0x33, 0x87, 0xa8,
0xfe, 0x98, 0x25, 0x2a, 0xc9, 0x36, 0x9b, 0x39, 0xec, 0x5c, 0xa6, 0xfa, 0x7d, 0x9a, 0xa9, 0x9a,
0x39, 0x7e, 0x54, 0xb9, 0xf0, 0x49, 0xaa, 0xda, 0xe6, 0x95, 0x90, 0xcb, 0x34, 0x5e, 0x8b, 0xd8,
0xf7, 0x5d, 0x5f, 0x71, 0x89, 0x14, 0xcc, 0x2d, 0x5e, 0xf1, 0x49, 0x7e, 0x7d, 0x82, 0xd6, 0x44,
0xd5, 0xa6, 0xb2, 0xcb, 0xfc, 0x97, 0x96, 0x60, 0x05, 0xb3, 0xa5, 0xd9, 0xa2, 0xa1, 0xd8, 0x22,
0xc5, 0x76, 0xa5, 0x0c, 0xdb, 0xa1, 0xc7, 0xb0, 0x32, 0xb1, 0x03, 0x26, 0x97, 0xd9, 0xcf, 0xd0,
0xc7, 0x32, 0x37, 0xc8, 0xf5, 0x49, 0x1e, 0xf9, 0x0d, 0xac, 0xa6, 0x7c, 0x6d, 0xcf, 0xeb, 0x8b,
0xa2, 0xd6, 0x45, 0x51, 0x1b, 0xb1, 0xf7, 0xbe, 0xe7, 0x9d, 0xda, 0xc1, 0xd8, 0x7c, 0x98, 0xac,
0x3f, 0xc3, 0xa4, 0x13, 0x77, 0x14, 0x31, 0xe9, 0xc4, 0x1d, 0x99, 0xff, 0xd4, 0x12, 0xbf, 0x84,
0x35, 0x7f, 0x09, 0xfa, 0xc0, 0x75, 0xe4, 0xf2, 0x5b, 0xbb, 0xcb, 0x6a, 0xe3, 0x0f, 0x5d, 0x07,
0x5f, 0xde, 0x7a, 0xd8, 0x12, 0xc6, 0x78, 0xa9, 0xa5, 0x14, 0x31, 0xaa, 0x09, 0xca, 0xf1, 0x04,
0xe8, 0x01, 0xe8, 0xcc, 0x1e, 0x05, 0x1d, 0x5d, 0xb0, 0x57, 0x44, 0x33, 0xaf, 0xdf, 0x9d, 0xdb,
0xc4, 0xb7, 0x84, 0xc9, 0xfc, 0x1b, 0x27, 0x99, 0x4c, 0x86, 0x7f, 0xc6, 0x00, 0xcc, 0xff, 0x6a,
0xc9, 0xa1, 0x49, 0x46, 0xff, 0x59, 0x83, 0xb7, 0xa1, 0x42, 0xa8, 0x83, 0x67, 0x62, 0xf4, 0xb2,
0x25, 0x85, 0xe8, 0x2a, 0x2a, 0x8b, 0x19, 0xb3, 0x57, 0x91, 0x3c, 0x08, 0x29, 0x28, 0xd2, 0x77,
0x87, 0x82, 0x3c, 0x9a, 0x96, 0x14, 0x52, 0xd4, 0x59, 0xcd, 0x5c, 0x11, 0x2a, 0xe8, 0x5a, 0x12,
0xf4, 0x5f, 0xf9, 0x35, 0x95, 0xae, 0xe0, 0xcf, 0xb9, 0x23, 0xab, 0xc9, 0x91, 0xc7, 0xb5, 0x6b,
0xb6, 0x01, 0xdd, 0x2d, 0x4a, 0x79, 0x1d, 0x67, 0xcb, 0x0d, 0xfd, 0x0a, 0x2a, 0x0e, 0x19, 0x0e,
0xe7, 0x5f, 0x48, 0xd2, 0x6c, 0xfe, 0xbb, 0x04, 0x55, 0x79, 0x9d, 0xa0, 0x4d, 0x4e, 0x6d, 0x36,
0xa1, 0x7d, 0xe2, 0x44, 0x25, 0x25, 0xe4, 0x9e, 0x93, 0xda, 0x93, 0x52, 0x66, 0x4f, 0x10, 0xe8,
0x8c, 0x4c, 0xb1, 0xaa, 0x06, 0xf1, 0x8d, 0x36, 0xa0, 0x46, 0xc3, 0x69, 0x9f, 0xcd, 0x02, 0xb1,
0xdb, 0xba, 0x55, 0xa5, 0xe1, 0xf4, 0x72, 0x16, 0xa0, 0x5d, 0x58, 0x4a, 0xd5, 0x06, 0x71, 0x14,
0x67, 0xb7, 0x54, 0x68, 0x22, 0xee, 0xde, 0x91, 0xb5, 0x18, 0x57, 0x49, 0xcf, 0x41, 0x5b, 0x20,
0x8a, 0xa6, 0x2f, 0x79, 0x51, 0x16, 0x53, 0x55, 0xec, 0x5b, 0x8b, 0xeb, 0x15, 0x71, 0xf2, 0xbb,
0xf2, 0x1e, 0x34, 0xf8, 0x4e, 0x4a, 0x97, 0x9a, 0x70, 0xa9, 0x73, 0x85, 0x30, 0x3e, 0x82, 0xe5,
0xe4, 0xfe, 0x95, 0x2e, 0x75, 0x39, 0x4a, 0xa2, 0x16, 0x8e, 0x9b, 0x50, 0x8f, 0x8b, 0xb6, 0x21,
0x3c, 0x6a, 0xb6, 0xaa, 0xd5, 0x1e, 0xd4, 0x54, 0x88, 0x85, 0x77, 0xf5, 0x63, 0xa8, 0x78, 0xb6,
0xcf, 0x02, 0x75, 0x27, 0x46, 0x94, 0x7d, 0x6e, 0xfb, 0xbc, 0x49, 0x52, 0x37, 0xb6, 0x74, 0x31,
0xf7, 0x60, 0x29, 0xa3, 0xe7, 0x99, 0xc8, 0x5c, 0x66, 0x4f, 0xd4, 0x6d, 0x2d, 0x85, 0x78, 0x9a,
0x52, 0x32, 0x8d, 0xb9, 0x07, 0x8d, 0xf8, 0x0c, 0xf9, 0xb1, 0x78, 0xe1, 0xd5, 0x6b, 0xd5, 0x76,
0x35, 0x2d, 0x25, 0x89, 0xc4, 0x76, 0x3f, 0xa8, 0xb6, 0x41, 0xb7, 0xa4, 0x60, 0xfe, 0x47, 0x83,
0xaa, 0x2c, 0xe9, 0x82, 0x66, 0xed, 0x77, 0xa2, 0x8b, 0x09, 0x71, 0x9f, 0x87, 0x2d, 0x70, 0xad,
0xf8, 0x81, 0x20, 0x41, 0x3b, 0x22, 0x85, 0x1b, 0xc2, 0x8b, 0x7f, 0xa2, 0x07, 0xd0, 0x94, 0x90,
0x80, 0xf9, 0x84, 0x46, 0xc9, 0xbb, 0x28, 0x74, 0x17, 0x42, 0xc5, 0x0f, 0x45, 0xba, 0x10, 0xca,
0x44, 0x36, 0x94, 0xad, 0xba, 0x50, 0xf4, 0x28, 0x33, 0xef, 0x81, 0x2e, 0xc6, 0x01, 0xa8, 0x5e,
0x5c, 0x5a, 0xbd, 0xb3, 0x13, 0x63, 0x01, 0xd5, 0xa0, 0xdc, 0x3b, 0xbb, 0x34, 0xb4, 0xc7, 0xff,
0xab, 0x40, 0x3d, 0xaa, 0x1b, 0x54, 0x85, 0xd2, 0x9b, 0xd7, 0xc6, 0x02, 0x5a, 0x81, 0xa5, 0x1e,
0x65, 0xd8, 0xa7, 0xf6, 0xe4, 0x98, 0x5f, 0x0a, 0x86, 0xc6, 0x55, 0xc7, 0x74, 0xe0, 0x3a, 0x84,
0x8e, 0xa4, 0xaa, 0x84, 0x9a, 0x50, 0x3f, 0xb0, 0x9d, 0x33, 0x97, 0x0e, 0xb0, 0x51, 0x46, 0x06,
0x34, 0xdf, 0x52, 0x3b, 0x64, 0x63, 0xd7, 0x27, 0xff, 0xc0, 0x8e, 0xa1, 0xa3, 0x35, 0x58, 0xe9,
0xd1, 0x20, 0x1c, 0x0e, 0xc9, 0x80, 0x60, 0xca, 0x5e, 0x85, 0xd4, 0x09, 0x8c, 0x0a, 0x42, 0xd0,
0x7a, 0x4b, 0xaf, 0xa9, 0xfb, 0x81, 0xaa, 0x66, 0xca, 0xa8, 0xa2, 0x0e, 0xb4, 0x0f, 0xec, 0x00,
0x1f, 0x85, 0xde, 0x84, 0x0c, 0x6c, 0x86, 0xf7, 0x1d, 0xc7, 0xc7, 0x41, 0x60, 0x60, 0x3e, 0x08,
0xb7, 0x64, 0xe7, 0x1e, 0x46, 0x80, 0xcc, 0xf8, 0x18, 0x07, 0xc6, 0x08, 0x6d, 0xc2, 0xda, 0x1d,
0x8b, 0x98, 0x79, 0x8c, 0x7e, 0x01, 0x9d, 0xbc, 0xe9, 0xc4, 0x0e, 0xce, 0x7d, 0x32, 0xc0, 0x06,
0x41, 0x6d, 0x30, 0xa4, 0x55, 0xa4, 0x6a, 0x8f, 0x7a, 0x21, 0x33, 0xfe, 0x1e, 0xcd, 0xaf, 0xb4,
0x6f, 0x42, 0xc6, 0xd5, 0xd7, 0x39, 0xf5, 0xb9, 0x48, 0x07, 0x63, 0x82, 0x36, 0x60, 0x35, 0xa5,
0xbe, 0xe0, 0xeb, 0xe3, 0xbb, 0x33, 0x4d, 0xe2, 0x95, 0x06, 0x32, 0xa2, 0x36, 0x0b, 0x7d, 0x6c,
0x50, 0xb4, 0x0e, 0x88, 0x5b, 0xd4, 0x96, 0x44, 0x0b, 0x77, 0xa3, 0x19, 0x94, 0x5e, 0xcd, 0xe0,
0xe5, 0xd5, 0x93, 0x70, 0x44, 0xa8, 0xf1, 0x1e, 0xad, 0x81, 0x71, 0xe2, 0xde, 0x28, 0xed, 0x31,
0x65, 0x84, 0xdd, 0x1a, 0x5f, 0x68, 0xa8, 0x0d, 0xcb, 0x89, 0xfa, 0xc4, 0x77, 0x43, 0xcf, 0xf8,
0x52, 0x43, 0x1b, 0x80, 0x12, 0xed, 0xb9, 0xef, 0x7a, 0x6e, 0x60, 0x4f, 0x8c, 0xaf, 0x34, 0xb4,
0x0e, 0x2b, 0x27, 0xee, 0x4d, 0x7c, 0x0a, 0x12, 0xf0, 0x75, 0x04, 0x88, 0xf5, 0x7f, 0xc6, 0xd3,
0x2b, 0xec, 0x1b, 0xdf, 0x68, 0x68, 0x13, 0xda, 0x69, 0x43, 0x3c, 0xd6, 0xb7, 0x9a, 0x8a, 0x28,
0x36, 0xbd, 0x73, 0x19, 0x36, 0xbe, 0x8b, 0xd4, 0x6a, 0x1f, 0xd4, 0x40, 0xdf, 0x6b, 0x68, 0x15,
0x5a, 0x89, 0x5a, 0xf8, 0xfe, 0xa0, 0xa1, 0x2e, 0xac, 0x65, 0x94, 0x84, 0x8e, 0xce, 0x79, 0x85,
0x19, 0x3f, 0x6a, 0xbb, 0x1f, 0x2b, 0xb0, 0xbc, 0x7f, 0x70, 0xd8, 0xdb, 0xf7, 0xe4, 0x04, 0xfc,
0x42, 0x7f, 0x0a, 0xba, 0x68, 0x59, 0x0a, 0xde, 0xf1, 0xdd, 0xa2, 0xde, 0x19, 0xed, 0x42, 0x45,
0x74, 0x2e, 0xa8, 0xe8, 0x39, 0xdf, 0x2d, 0x6c, 0xa1, 0xf9, 0x24, 0xb2, 0xb7, 0xb9, 0xfb, 0xaa,
0xef, 0x16, 0xf5, 0xd1, 0xe8, 0x4f, 0xd0, 0x48, 0x7a, 0x8e, 0x79, 0x6f, 0xfb, 0xee, 0xdc, 0x8e,
0x9a, 0xe3, 0x93, 0x5e, 0x64, 0xde, 0x0b, 0xbf, 0x3b, 0xb7, 0xad, 0x46, 0x2f, 0xa0, 0x16, 0x35,
0x12, 0xc5, 0xef, 0xfc, 0xee, 0x9c, 0xce, 0x9a, 0x6f, 0x8f, 0xec, 0x11, 0x8a, 0x9e, 0xef, 0xdd,
0xc2, 0x66, 0x19, 0x3d, 0x87, 0xaa, 0xba, 0xa3, 0x0b, 0xff, 0x22, 0xe8, 0x16, 0xb7, 0xe4, 0x7c,
0x91, 0xc9, 0x4b, 0x6f, 0xde, 0xdb, 0xbf, 0x3b, 0xb7, 0xd9, 0x46, 0xfb, 0x00, 0xa9, 0x37, 0xde,
0xdc, 0x7f, 0x00, 0xba, 0xf3, 0x5b, 0x6e, 0xf4, 0x12, 0xea, 0xc9, 0xb3, 0xae, 0xf8, 0x7f, 0x80,
0xee, 0xbc, 0xae, 0xfb, 0xaa, 0x2a, 0xfe, 0x62, 0x7a, 0xf6, 0x53, 0x00, 0x00, 0x00, 0xff, 0xff,
0x59, 0xf7, 0xaf, 0xdb, 0x77, 0x12, 0x00, 0x00,
}

View File

@ -166,7 +166,6 @@ message ResponseCheckTx{
CodeType code = 1;
bytes data = 2;
string log = 3;
repeated KVPair tags = 4;
}
message ResponseQuery{
@ -231,8 +230,13 @@ message Validator {
message KVPair {
string key = 1;
string value_string = 2;
int64 value_int = 3;
enum Type {
STRING = 0;
INT = 1;
}
Type value_type = 2;
string value_string = 3;
int64 value_int = 4;
}
//----------------------------------------