From 22d1fa063c3ee877b11a94c1225b072ccdcae717 Mon Sep 17 00:00:00 2001 From: fish <920886811@163.com> Date: Mon, 28 Nov 2022 12:54:11 +0800 Subject: [PATCH 1/8] feat: add token of guard --- js/protos/guard/guard_pb.js | 64 +++- protos/guard/guard.pb.go | 617 +++++++++++++++++++++--------------- protos/guard/guard.proto | 2 + 3 files changed, 427 insertions(+), 256 deletions(-) diff --git a/js/protos/guard/guard_pb.js b/js/protos/guard/guard_pb.js index d5ce094..9303e9c 100644 --- a/js/protos/guard/guard_pb.js +++ b/js/protos/guard/guard_pb.js @@ -3597,7 +3597,8 @@ proto.guard.Contract.toObject = function(includeInstance, msg) { challengeTimes: jspb.Message.getFieldWithDefault(msg, 14, 0), challengeWarnTimes: jspb.Message.getFieldWithDefault(msg, 15, 0), challengeSuccessTimes: jspb.Message.getFieldWithDefault(msg, 16, 0), - firstChallengeSuccess: (f = msg.getFirstChallengeSuccess()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f) + firstChallengeSuccess: (f = msg.getFirstChallengeSuccess()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f), + token: jspb.Message.getFieldWithDefault(msg, 18, "") }; if (includeInstance) { @@ -3709,6 +3710,10 @@ proto.guard.Contract.deserializeBinaryFromReader = function(msg, reader) { reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader); msg.setFirstChallengeSuccess(value); break; + case 18: + var value = /** @type {string} */ (reader.readString()); + msg.setToken(value); + break; default: reader.skipField(); break; @@ -3864,6 +3869,13 @@ proto.guard.Contract.serializeBinaryToWriter = function(message, writer) { google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter ); } + f = message.getToken(); + if (f.length > 0) { + writer.writeString( + 18, + f + ); + } }; @@ -4446,6 +4458,24 @@ proto.guard.Contract.prototype.hasFirstChallengeSuccess = function() { }; +/** + * optional string token = 18; + * @return {string} + */ +proto.guard.Contract.prototype.getToken = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 18, "")); +}; + + +/** + * @param {string} value + * @return {!proto.guard.Contract} returns this + */ +proto.guard.Contract.prototype.setToken = function(value) { + return jspb.Message.setProto3StringField(this, 18, value); +}; + + /** * List of repeated fields within this message type. @@ -4839,7 +4869,8 @@ proto.guard.FileStoreMeta.toObject = function(includeInstance, msg) { guardPid: jspb.Message.getFieldWithDefault(msg, 13, ""), warnChallengeTimesLimit: jspb.Message.getFieldWithDefault(msg, 14, 0), successChallengeTimesLimit: jspb.Message.getFieldWithDefault(msg, 15, 0), - checkFrequencyWarn: jspb.Message.getFieldWithDefault(msg, 16, 0) + checkFrequencyWarn: jspb.Message.getFieldWithDefault(msg, 16, 0), + token: jspb.Message.getFieldWithDefault(msg, 17, "") }; if (includeInstance) { @@ -4942,6 +4973,10 @@ proto.guard.FileStoreMeta.deserializeBinaryFromReader = function(msg, reader) { var value = /** @type {number} */ (reader.readInt32()); msg.setCheckFrequencyWarn(value); break; + case 17: + var value = /** @type {string} */ (reader.readString()); + msg.setToken(value); + break; default: reader.skipField(); break; @@ -5085,6 +5120,13 @@ proto.guard.FileStoreMeta.serializeBinaryToWriter = function(message, writer) { f ); } + f = message.getToken(); + if (f.length > 0) { + writer.writeString( + 17, + f + ); + } }; @@ -5414,6 +5456,24 @@ proto.guard.FileStoreMeta.prototype.setCheckFrequencyWarn = function(value) { }; +/** + * optional string token = 17; + * @return {string} + */ +proto.guard.FileStoreMeta.prototype.getToken = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, "")); +}; + + +/** + * @param {string} value + * @return {!proto.guard.FileStoreMeta} returns this + */ +proto.guard.FileStoreMeta.prototype.setToken = function(value) { + return jspb.Message.setProto3StringField(this, 17, value); +}; + + /** * List of repeated fields within this message type. diff --git a/protos/guard/guard.pb.go b/protos/guard/guard.pb.go index c33593c..b487609 100644 --- a/protos/guard/guard.pb.go +++ b/protos/guard/guard.pb.go @@ -1120,6 +1120,7 @@ type Contract struct { ChallengeWarnTimes int32 `protobuf:"varint,15,opt,name=challenge_warn_times,json=challengeWarnTimes,proto3" json:"challenge_warn_times,omitempty" pg:"challenge_warn_times"` ChallengeSuccessTimes int32 `protobuf:"varint,16,opt,name=challenge_success_times,json=challengeSuccessTimes,proto3" json:"challenge_success_times,omitempty" pg:"challenge_success_times"` FirstChallengeSuccess time.Time `protobuf:"bytes,17,opt,name=first_challenge_success,json=firstChallengeSuccess,proto3,stdtime" json:"first_challenge_success" pg:"first_challenge_success"` + Token string `protobuf:"bytes,18,opt,name=token,proto3" json:"token,omitempty" pg:"token"` XXX_NoUnkeyedLiteral struct{} `json:"-" pg:"-"` XXX_unrecognized []byte `json:"-" pg:"-"` XXX_sizecache int32 `json:"-" pg:"-"` @@ -1270,6 +1271,13 @@ func (m *Contract) GetFirstChallengeSuccess() time.Time { return time.Time{} } +func (m *Contract) GetToken() string { + if m != nil { + return m.Token + } + return "" +} + func (*Contract) XXX_MessageName() string { return "guard.Contract" } @@ -1375,6 +1383,7 @@ type FileStoreMeta struct { WarnChallengeTimesLimit int32 `protobuf:"varint,14,opt,name=warn_challenge_times_limit,json=warnChallengeTimesLimit,proto3" json:"warn_challenge_times_limit,omitempty" pg:"warn_challenge_times_limit"` SuccessChallengeTimesLimit int32 `protobuf:"varint,15,opt,name=success_challenge_times_limit,json=successChallengeTimesLimit,proto3" json:"success_challenge_times_limit,omitempty" pg:"success_challenge_times_limit"` CheckFrequencyWarn int32 `protobuf:"varint,16,opt,name=check_frequency_warn,json=checkFrequencyWarn,proto3" json:"check_frequency_warn,omitempty" pg:"check_frequency_warn"` + Token string `protobuf:"bytes,17,opt,name=token,proto3" json:"token,omitempty" pg:"token"` XXX_NoUnkeyedLiteral struct{} `json:"-" pg:"-"` XXX_unrecognized []byte `json:"-" pg:"-"` XXX_sizecache int32 `json:"-" pg:"-"` @@ -1525,6 +1534,13 @@ func (m *FileStoreMeta) GetCheckFrequencyWarn() int32 { return 0 } +func (m *FileStoreMeta) GetToken() string { + if m != nil { + return m.Token + } + return "" +} + func (*FileStoreMeta) XXX_MessageName() string { return "guard.FileStoreMeta" } @@ -3876,258 +3892,259 @@ func init() { proto.RegisterFile("protos/guard/guard.proto", fileDescriptor_ad5b func init() { golang_proto.RegisterFile("protos/guard/guard.proto", fileDescriptor_ad5b6eccdc9ebee8) } var fileDescriptor_ad5b6eccdc9ebee8 = []byte{ - // 4012 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3b, 0x4b, 0x6f, 0x23, 0xd9, - 0x5a, 0x5d, 0x7e, 0xfb, 0xf3, 0xab, 0x72, 0x3a, 0x49, 0x3b, 0xe9, 0xe9, 0xa4, 0xc7, 0x68, 0xee, - 0x74, 0xcf, 0x9d, 0xc9, 0x0c, 0x3d, 0xad, 0x41, 0x97, 0xfb, 0xc2, 0x6d, 0x57, 0x1e, 0x8d, 0xdb, - 0x4e, 0x97, 0x1d, 0x9a, 0xbe, 0x42, 0x2a, 0x55, 0xec, 0x13, 0xa7, 0xa6, 0xed, 0xaa, 0x74, 0x55, - 0xb9, 0x33, 0x7d, 0x17, 0x2c, 0xd8, 0x21, 0x24, 0xc4, 0x0a, 0xd0, 0xfd, 0x01, 0x48, 0x20, 0x24, - 0x10, 0x12, 0x2c, 0x58, 0x00, 0xcb, 0x41, 0x48, 0x70, 0xd9, 0xb0, 0xbc, 0x8f, 0xe9, 0x3f, 0x00, - 0x2b, 0xee, 0x0a, 0xa1, 0xf3, 0x9d, 0x53, 0x4f, 0x57, 0x9c, 0x38, 0xb4, 0xb8, 0xd2, 0x6c, 0xa2, - 0x9c, 0xef, 0x7c, 0xdf, 0x79, 0x7c, 0xef, 0xef, 0x3b, 0x65, 0xa8, 0x9f, 0xd9, 0x96, 0x6b, 0x39, - 0x1f, 0x8f, 0x67, 0xba, 0x3d, 0xe2, 0x7f, 0x77, 0x10, 0x44, 0xb2, 0x38, 0xd8, 0xfc, 0x64, 0x6c, - 0xb8, 0xa7, 0xb3, 0xe3, 0x9d, 0xa1, 0x35, 0xfd, 0xd8, 0xb5, 0x2d, 0xf3, 0xa3, 0x99, 0xf3, 0x31, - 0x22, 0x1c, 0xcf, 0x4e, 0x3e, 0x1e, 0x5b, 0x63, 0x0b, 0x07, 0xf8, 0x1f, 0x27, 0xdc, 0xdc, 0x1e, - 0x5b, 0xd6, 0x78, 0x42, 0x03, 0x2c, 0xd7, 0x98, 0x52, 0xc7, 0xd5, 0xa7, 0x67, 0x1c, 0xa1, 0xf1, - 0x3f, 0x12, 0x40, 0x73, 0x34, 0x35, 0xcc, 0xa7, 0x33, 0x6a, 0xbf, 0x26, 0xbf, 0x02, 0x15, 0x9b, - 0xbe, 0x9c, 0x51, 0xc7, 0xa5, 0xb6, 0x76, 0x66, 0x8c, 0xea, 0xd2, 0x5d, 0xe9, 0x5e, 0x51, 0x2d, - 0xfb, 0xc0, 0x43, 0x63, 0x44, 0x5a, 0x00, 0x2f, 0x19, 0xb6, 0x36, 0xd2, 0x5d, 0x5a, 0x4f, 0xdd, - 0x95, 0xee, 0x95, 0x1e, 0x6c, 0xee, 0xf0, 0x9d, 0x76, 0xbc, 0x9d, 0x76, 0x06, 0xde, 0x4e, 0x8f, - 0x0a, 0x5f, 0xfe, 0x64, 0xfb, 0xc6, 0x1f, 0xfd, 0x74, 0x5b, 0x52, 0x8b, 0x48, 0xd7, 0xd6, 0x5d, - 0x4a, 0xb6, 0xa1, 0xc4, 0x17, 0x19, 0x5a, 0x33, 0xd3, 0xad, 0xa7, 0xef, 0x4a, 0xf7, 0xb2, 0x2a, - 0x5f, 0xb7, 0xc5, 0x20, 0x64, 0x0f, 0xbc, 0x5d, 0x35, 0x76, 0xe8, 0x7a, 0x66, 0x89, 0x7d, 0x4a, - 0x82, 0x92, 0xcd, 0x91, 0x77, 0xa0, 0xe8, 0x18, 0x63, 0x53, 0x77, 0x67, 0x36, 0xad, 0x67, 0xef, - 0x4a, 0xf7, 0xca, 0x6a, 0x00, 0x68, 0xfc, 0x28, 0x03, 0xe5, 0xb6, 0x6e, 0x4c, 0x5e, 0xf7, 0x67, - 0xd3, 0xa9, 0x6e, 0xbf, 0x8e, 0xdd, 0x4e, 0xba, 0xde, 0xed, 0x0e, 0x18, 0x1f, 0x9d, 0x33, 0xcb, - 0x74, 0x28, 0x3f, 0xfd, 0x32, 0x5c, 0x2a, 0x7b, 0xa4, 0x78, 0xfc, 0x77, 0xa1, 0x7c, 0x66, 0xd3, - 0x33, 0xdd, 0x16, 0x12, 0x49, 0xa3, 0x44, 0x4a, 0x1e, 0x8c, 0x09, 0x24, 0x72, 0xc3, 0x4c, 0xec, - 0x86, 0xe4, 0x13, 0x58, 0x3d, 0xb7, 0xec, 0x17, 0x86, 0x39, 0xd6, 0x1c, 0xd7, 0xb2, 0xf5, 0x31, - 0xd5, 0x1c, 0xe3, 0x87, 0x9c, 0x15, 0x69, 0x95, 0x88, 0xb9, 0x3e, 0x9f, 0xea, 0x1b, 0x3f, 0xa4, - 0x4c, 0x0b, 0x4c, 0x7a, 0xae, 0x0d, 0x2d, 0xd3, 0xb5, 0xf5, 0xa1, 0xeb, 0xd4, 0x73, 0x88, 0x5a, - 0x36, 0xe9, 0x79, 0xcb, 0x83, 0x91, 0x0f, 0x81, 0x44, 0x90, 0xb4, 0x53, 0xcb, 0x71, 0xeb, 0x79, - 0xc4, 0x94, 0xc3, 0x98, 0xfb, 0x96, 0xe3, 0xb2, 0x43, 0x44, 0xb1, 0x6d, 0x6a, 0xba, 0xd4, 0xae, - 0x17, 0xf8, 0x21, 0xc2, 0xf8, 0x2a, 0xce, 0x90, 0xef, 0xc2, 0xed, 0x28, 0x85, 0xfe, 0x8a, 0xe2, - 0xe1, 0xcf, 0x6c, 0x63, 0x48, 0xeb, 0x45, 0x24, 0xac, 0x87, 0x09, 0x9b, 0x1c, 0xe1, 0x90, 0xcd, - 0x93, 0xdb, 0x50, 0x64, 0xe4, 0x27, 0xc6, 0x84, 0x3a, 0x75, 0x40, 0xe4, 0x82, 0x49, 0xcf, 0x77, - 0xd9, 0x98, 0x7c, 0x03, 0x6a, 0x6c, 0xd2, 0x39, 0xd5, 0xed, 0x91, 0xc3, 0xb9, 0x51, 0x42, 0x14, - 0x76, 0xef, 0x3e, 0x42, 0x19, 0x23, 0x1a, 0x7f, 0x99, 0x82, 0x12, 0x3b, 0xfe, 0xd7, 0x56, 0x37, - 0xde, 0x65, 0x46, 0x36, 0xb4, 0xec, 0x91, 0x30, 0xc3, 0x2c, 0x9a, 0x61, 0x89, 0xc3, 0xb8, 0x1d, - 0xde, 0x87, 0x9c, 0xe3, 0xea, 0xee, 0x8c, 0x69, 0x41, 0xfa, 0x5e, 0xe9, 0xc1, 0xca, 0x0e, 0xf7, - 0x4c, 0xc8, 0x17, 0x9c, 0x50, 0x05, 0x42, 0xe3, 0x5f, 0xd3, 0xb0, 0x32, 0xb0, 0x5c, 0x7d, 0xc2, - 0xe0, 0xf4, 0xeb, 0x6c, 0x50, 0xaf, 0xf4, 0x89, 0x31, 0xf2, 0x75, 0x33, 0xc4, 0xbc, 0xb4, 0x4a, - 0x70, 0xce, 0x53, 0x4a, 0xce, 0xc3, 0x0f, 0x81, 0xd0, 0x2f, 0x0c, 0xc7, 0xa5, 0x23, 0xae, 0x73, - 0x5c, 0xe5, 0xb8, 0x55, 0xc9, 0x62, 0x06, 0xd5, 0x0e, 0xcd, 0xef, 0x21, 0xac, 0x1b, 0x66, 0xe2, - 0x0e, 0xdc, 0xba, 0x56, 0xc5, 0x6c, 0x74, 0x8f, 0x6f, 0x40, 0x6d, 0x62, 0x39, 0x6e, 0x78, 0x03, - 0x6e, 0x5c, 0x15, 0x06, 0x0e, 0x56, 0xff, 0x00, 0x56, 0x5c, 0x26, 0x23, 0xb4, 0x57, 0xcd, 0xa6, - 0xe7, 0xba, 0x3d, 0x12, 0xd6, 0x54, 0xc3, 0x09, 0x26, 0x58, 0x15, 0xc1, 0x8d, 0x3f, 0x97, 0x00, - 0x02, 0x39, 0x93, 0x0d, 0x28, 0x20, 0x51, 0x10, 0x18, 0xf2, 0x6c, 0xcc, 0x38, 0x76, 0x1b, 0x8a, - 0xcc, 0xd4, 0xf8, 0xbe, 0x29, 0x6e, 0x6e, 0x0c, 0x80, 0x5b, 0x6e, 0x43, 0x89, 0x79, 0x19, 0x4d, - 0x9f, 0xfa, 0xbe, 0x3e, 0xad, 0x02, 0x03, 0x35, 0x11, 0x42, 0xee, 0x00, 0xf0, 0x83, 0x68, 0xc7, - 0xae, 0x8b, 0x0c, 0x4f, 0xab, 0x45, 0x0e, 0x79, 0xe4, 0xba, 0xcc, 0x1f, 0x39, 0x33, 0xe7, 0x8c, - 0x32, 0x3e, 0x9c, 0x52, 0x9d, 0x73, 0xba, 0xa0, 0x96, 0x05, 0xb0, 0xc5, 0x60, 0x8d, 0x3f, 0x90, - 0x20, 0xdd, 0xb1, 0xc6, 0x44, 0x81, 0xd2, 0xf0, 0x54, 0x37, 0xc7, 0x42, 0x4f, 0x96, 0xd1, 0x37, - 0xe0, 0x84, 0xa8, 0x25, 0xef, 0x41, 0xd5, 0xb2, 0x8d, 0xb1, 0x61, 0xea, 0xae, 0xc5, 0xf5, 0x24, - 0x85, 0x37, 0xae, 0x04, 0x50, 0x76, 0xef, 0x75, 0xc8, 0x71, 0x22, 0xa1, 0x46, 0x62, 0xd4, 0xf8, - 0x8f, 0x2c, 0x94, 0x3d, 0xf9, 0x3c, 0xa1, 0xae, 0xce, 0x78, 0xe0, 0x0b, 0xd3, 0x67, 0x1f, 0x78, - 0xa0, 0x83, 0x11, 0xe7, 0x81, 0xe9, 0xc5, 0x5d, 0xbe, 0x59, 0x91, 0x43, 0xd8, 0x46, 0x61, 0xde, - 0xa7, 0xa3, 0xbc, 0xbf, 0x03, 0xc0, 0x85, 0x7e, 0xaa, 0x3b, 0xa7, 0xc8, 0xbd, 0xa2, 0x5a, 0x44, - 0xc8, 0xbe, 0xee, 0x9c, 0xb2, 0x9d, 0xf9, 0xb4, 0x61, 0x8e, 0xe8, 0x17, 0xc2, 0xc4, 0x39, 0xc5, - 0x01, 0x83, 0x30, 0xcd, 0xe1, 0x08, 0x81, 0x04, 0xb9, 0x6a, 0x56, 0x10, 0xbc, 0xeb, 0x89, 0xd1, - 0x93, 0x31, 0x6e, 0x93, 0xc7, 0x6d, 0x50, 0xc6, 0xb8, 0x4b, 0x8b, 0x1f, 0x5f, 0x73, 0x5c, 0xdd, - 0x76, 0x51, 0xf3, 0xae, 0x6c, 0xe5, 0x8c, 0xae, 0xcf, 0xc8, 0xc8, 0xf7, 0xa1, 0x80, 0x8b, 0x50, - 0x93, 0xab, 0xe4, 0x55, 0x97, 0xc8, 0x33, 0x2a, 0xc5, 0x44, 0x35, 0x44, 0xef, 0x84, 0x6c, 0x02, - 0x7e, 0x44, 0x04, 0x08, 0x3e, 0x51, 0x67, 0x68, 0x5b, 0xe7, 0x38, 0x5b, 0xe2, 0x7c, 0xe2, 0x10, - 0x36, 0xbd, 0x0a, 0x59, 0x1e, 0x5a, 0xca, 0x78, 0x79, 0x3e, 0x60, 0x02, 0x16, 0x6a, 0x5b, 0x41, - 0xb0, 0x18, 0x91, 0x6f, 0xc2, 0xca, 0xd0, 0x9a, 0x4c, 0x74, 0x97, 0xda, 0xfa, 0xc4, 0xd3, 0xec, - 0x2a, 0xb7, 0xe8, 0x60, 0x42, 0xe8, 0xb7, 0x02, 0xb5, 0x33, 0xfd, 0xb5, 0x35, 0x73, 0x35, 0x67, - 0x78, 0x4a, 0x47, 0xb3, 0x09, 0xad, 0xd7, 0xee, 0x4a, 0xf7, 0xaa, 0x0f, 0xde, 0x11, 0xce, 0x34, - 0xac, 0x2a, 0x3b, 0x7d, 0x81, 0xa3, 0x56, 0x39, 0x91, 0x37, 0x66, 0x92, 0x34, 0x67, 0x53, 0x8d, - 0x43, 0x9d, 0xba, 0xcc, 0x25, 0x69, 0xce, 0xa6, 0x87, 0x1c, 0xc2, 0x0f, 0x65, 0xba, 0x86, 0x39, - 0x66, 0x5c, 0x14, 0x87, 0x5a, 0xf1, 0x0e, 0xe5, 0x4d, 0xf0, 0x43, 0x35, 0x1e, 0x42, 0xc1, 0x5f, - 0xb9, 0x04, 0xf9, 0x27, 0xbd, 0xee, 0x60, 0xbf, 0xf3, 0x5c, 0xbe, 0x41, 0x2a, 0x50, 0x7c, 0x7a, - 0xd4, 0x54, 0x07, 0x8a, 0xda, 0x79, 0x2e, 0x4b, 0xa4, 0x0c, 0x85, 0x66, 0xb7, 0x7b, 0xd4, 0xec, - 0x74, 0x9e, 0xcb, 0xa9, 0xc6, 0x3f, 0x16, 0xa1, 0xe0, 0x9d, 0x96, 0x7c, 0x0b, 0x0a, 0x9e, 0x06, - 0x0b, 0x43, 0xbb, 0x99, 0x70, 0x21, 0x2e, 0xa8, 0x1f, 0xff, 0x64, 0x5b, 0x52, 0x7d, 0x74, 0xf2, - 0x29, 0x64, 0x59, 0xd4, 0xe0, 0xce, 0xa2, 0xfa, 0xe0, 0x4e, 0x8c, 0xce, 0xff, 0x07, 0x43, 0x89, - 0xca, 0x71, 0xc9, 0x7d, 0x90, 0x85, 0x8d, 0x04, 0xee, 0x39, 0x8d, 0xee, 0xb9, 0xc6, 0xe1, 0x7d, - 0xdf, 0x49, 0xbf, 0x07, 0x55, 0xb4, 0x97, 0xb8, 0x1f, 0xaf, 0x30, 0x68, 0x80, 0xa6, 0x02, 0x11, - 0x3a, 0xc1, 0x10, 0xe9, 0x88, 0x3b, 0x8d, 0xec, 0x12, 0xba, 0x27, 0x73, 0xfa, 0x3e, 0x92, 0xa3, - 0xeb, 0xb8, 0x0f, 0x72, 0x68, 0x4d, 0xbe, 0x79, 0x8e, 0x9f, 0x32, 0xc0, 0xf5, 0x42, 0x89, 0xf0, - 0x39, 0xda, 0xc4, 0x1a, 0xd7, 0xf3, 0x18, 0x60, 0x41, 0xb0, 0xa2, 0x63, 0x8d, 0x1f, 0x65, 0xff, - 0xe2, 0xa7, 0xdb, 0xd2, 0x47, 0x6a, 0x91, 0x23, 0x31, 0xf7, 0xd6, 0x05, 0x79, 0xa2, 0x3b, 0xae, - 0x36, 0xb5, 0x46, 0xc6, 0xc9, 0x6b, 0x7e, 0xdc, 0x65, 0xac, 0xad, 0xca, 0xa8, 0x9f, 0x20, 0x31, - 0x1e, 0xf6, 0x7d, 0xa8, 0x71, 0x8b, 0x09, 0xce, 0x5a, 0xc4, 0xb3, 0x56, 0x11, 0xdc, 0x0f, 0xa7, - 0x0a, 0x91, 0xb0, 0x09, 0xf3, 0x61, 0xf3, 0x23, 0x20, 0x3e, 0x4a, 0xb0, 0x5c, 0x09, 0x97, 0x5b, - 0xf1, 0x66, 0x82, 0x15, 0x87, 0x70, 0x1b, 0xaf, 0xe2, 0xcc, 0x86, 0x43, 0xea, 0x38, 0xda, 0xf0, - 0x54, 0x9f, 0x4c, 0xa8, 0xef, 0xb9, 0xcb, 0x4b, 0xdc, 0xaa, 0xce, 0x16, 0xea, 0xf3, 0x75, 0x5a, - 0xde, 0x32, 0x78, 0xbf, 0x01, 0xdc, 0xc4, 0x4d, 0x62, 0x8b, 0x57, 0x96, 0x58, 0x7c, 0x85, 0x2d, - 0x10, 0x5d, 0xf5, 0x7d, 0xa8, 0x45, 0x17, 0x74, 0xd0, 0xf6, 0xb3, 0x6a, 0x75, 0x18, 0xc6, 0x73, - 0x58, 0xae, 0x10, 0x20, 0x9e, 0xeb, 0xb6, 0x29, 0xb0, 0x6b, 0x88, 0x4d, 0xfc, 0xb9, 0x67, 0xba, - 0x6d, 0x72, 0x8a, 0xcf, 0xe0, 0x56, 0x40, 0xe1, 0xb1, 0x86, 0x13, 0x71, 0x83, 0x5f, 0xf3, 0xa7, - 0xc5, 0x85, 0x39, 0xdd, 0xef, 0xc0, 0xad, 0x13, 0xc3, 0x8e, 0xdc, 0x54, 0x50, 0xa3, 0x07, 0xb8, - 0xea, 0x65, 0xd7, 0x70, 0x91, 0x56, 0x6c, 0x8b, 0xc6, 0x97, 0x12, 0x54, 0x22, 0x26, 0x49, 0x8a, - 0x90, 0x6d, 0xab, 0xcd, 0xdd, 0x81, 0x7c, 0x83, 0x00, 0xe4, 0xfa, 0x07, 0x7b, 0x5d, 0xa5, 0xcd, - 0xbd, 0xc5, 0xd1, 0x61, 0xa7, 0xd7, 0x6c, 0x2b, 0x6d, 0x39, 0x45, 0x0a, 0x90, 0xe9, 0xf4, 0xfa, - 0x03, 0x39, 0xcd, 0xe0, 0xad, 0x66, 0xb7, 0xa5, 0x74, 0x94, 0xb6, 0x9c, 0x61, 0x14, 0xad, 0x4e, - 0xaf, 0xaf, 0xb4, 0xe5, 0x2c, 0xf3, 0x3d, 0xaa, 0xd2, 0x55, 0x9e, 0x29, 0x6d, 0x39, 0xc7, 0xd0, - 0x7a, 0x8f, 0xfa, 0xbd, 0x8e, 0x32, 0x50, 0xe4, 0x3c, 0x23, 0x7f, 0xd6, 0x54, 0xbb, 0x72, 0x81, - 0x54, 0x01, 0x70, 0x37, 0x0d, 0xc7, 0x45, 0x72, 0x13, 0x6a, 0xaa, 0xd2, 0x6c, 0x3f, 0xd7, 0x5a, - 0xfb, 0xcd, 0x4e, 0x47, 0xe9, 0xee, 0x29, 0x32, 0x30, 0xc7, 0xa5, 0x2a, 0x2d, 0x55, 0x69, 0x0e, - 0x94, 0xb6, 0x5c, 0x22, 0x6b, 0xb0, 0xa2, 0x2a, 0x4f, 0x8f, 0x94, 0xfe, 0x20, 0x84, 0x55, 0x6e, - 0xfc, 0x61, 0x0a, 0xd6, 0x30, 0xa6, 0xb9, 0x96, 0x4d, 0x3b, 0x06, 0x4b, 0x76, 0x78, 0x76, 0x48, - 0x7e, 0x1d, 0xf2, 0xa2, 0x70, 0x14, 0xde, 0xec, 0xae, 0x67, 0x8a, 0x88, 0xc5, 0x1c, 0x0c, 0x23, - 0x3c, 0x30, 0x4f, 0x2c, 0x95, 0xe3, 0xa9, 0x1e, 0x01, 0x2b, 0x57, 0x87, 0x33, 0x1b, 0xa3, 0xd7, - 0xd2, 0xf9, 0x69, 0x49, 0x50, 0xa2, 0x6a, 0x7d, 0x07, 0x6a, 0x3c, 0x0e, 0xb3, 0xe3, 0x69, 0x53, - 0xea, 0xea, 0xf5, 0x34, 0xfa, 0x85, 0x55, 0x71, 0x18, 0xff, 0xec, 0xcc, 0xb7, 0xaa, 0x95, 0x93, - 0xf0, 0x90, 0x05, 0x31, 0x9e, 0x2a, 0x66, 0x50, 0x57, 0xf8, 0xe0, 0x92, 0x12, 0xf8, 0xef, 0xb2, - 0x50, 0x89, 0x2c, 0x1a, 0xcb, 0x45, 0xa4, 0x78, 0x2e, 0x12, 0x49, 0x04, 0x52, 0xb1, 0x44, 0x20, - 0x92, 0x09, 0xa6, 0x63, 0x99, 0x60, 0x34, 0x4b, 0xc8, 0xfc, 0xdf, 0xb3, 0x84, 0xec, 0x75, 0xb2, - 0x04, 0xb4, 0x5e, 0x3a, 0x7c, 0xa1, 0x9d, 0xa0, 0xf4, 0xcc, 0xe1, 0x6b, 0xf4, 0xcf, 0x68, 0xbd, - 0x74, 0xf8, 0x62, 0xd7, 0x83, 0x06, 0xe9, 0xc4, 0x09, 0xa5, 0x22, 0xf9, 0xe6, 0xe9, 0xc4, 0x2e, - 0xa5, 0xa1, 0x74, 0x82, 0xcd, 0xf2, 0x5c, 0x5b, 0xa4, 0x13, 0x6c, 0xda, 0x4f, 0xbb, 0xb8, 0x3c, - 0x8a, 0xa1, 0xb4, 0x8b, 0x27, 0xec, 0xef, 0x41, 0x75, 0x6a, 0x98, 0xc6, 0x74, 0x36, 0x15, 0x85, - 0x28, 0xba, 0xd4, 0xac, 0x5a, 0x11, 0x50, 0x5e, 0x87, 0xb2, 0x98, 0xce, 0xca, 0xb1, 0x57, 0xd4, - 0xd6, 0xdc, 0x53, 0x9b, 0x3a, 0xa7, 0xd6, 0x84, 0x27, 0x2f, 0x59, 0x55, 0x16, 0x13, 0x03, 0x0f, - 0x1e, 0x4b, 0x71, 0xca, 0xf1, 0x14, 0x27, 0x92, 0x1e, 0x55, 0x62, 0xe9, 0xd1, 0xb7, 0x61, 0x13, - 0x1d, 0x54, 0xcc, 0xb1, 0x69, 0x13, 0x63, 0x6a, 0xb8, 0xc2, 0xbd, 0xdd, 0x62, 0x18, 0x11, 0x57, - 0xe8, 0x74, 0xd8, 0x34, 0x69, 0xc2, 0x9d, 0x64, 0x37, 0xee, 0xd1, 0x73, 0x87, 0xb7, 0xe9, 0x24, - 0xf8, 0x68, 0xb1, 0x04, 0xba, 0xca, 0x88, 0x54, 0xd0, 0x61, 0x0a, 0xaf, 0x47, 0xa2, 0xa2, 0x61, - 0xfe, 0xb2, 0xf1, 0xcf, 0x39, 0xa8, 0xf9, 0x8a, 0x2b, 0x6a, 0x94, 0xdd, 0x79, 0xf3, 0xe1, 0xb6, - 0x9c, 0x68, 0x3e, 0xa1, 0xd4, 0x24, 0x66, 0x48, 0x9f, 0x45, 0xf3, 0x93, 0xbb, 0x71, 0x6a, 0xbe, - 0xdd, 0x0e, 0xc3, 0x8d, 0xa4, 0x28, 0x0f, 0xa1, 0x18, 0xf4, 0x4d, 0xb8, 0xe1, 0xd6, 0x62, 0xb9, - 0x4d, 0x10, 0xd5, 0xfd, 0x66, 0x4a, 0x52, 0x62, 0x93, 0x49, 0x4e, 0x6c, 0x54, 0x20, 0x5c, 0x86, - 0x36, 0x1d, 0x52, 0xe3, 0x15, 0xbd, 0x46, 0xc6, 0x82, 0xf4, 0x2a, 0x27, 0x47, 0x9f, 0x13, 0x4d, - 0x43, 0x72, 0x57, 0x48, 0x43, 0xe2, 0xee, 0x2e, 0x7f, 0x5d, 0x77, 0x97, 0x90, 0x7f, 0x14, 0x12, - 0xf3, 0x0f, 0x05, 0xca, 0x8c, 0x48, 0x9f, 0x68, 0x5c, 0x2e, 0x45, 0x94, 0x4b, 0xe3, 0x02, 0xb9, - 0xa8, 0x88, 0xca, 0x25, 0x53, 0xb2, 0x83, 0xc1, 0xdb, 0x4f, 0x63, 0x1a, 0x33, 0x28, 0xfa, 0x5a, - 0x10, 0x8e, 0x8a, 0x15, 0x28, 0xf2, 0x48, 0x78, 0xd0, 0xdd, 0x93, 0x25, 0x0c, 0x73, 0x47, 0xdd, - 0x2e, 0x1b, 0xa4, 0x88, 0x0c, 0xe5, 0xc3, 0xa6, 0x3a, 0x38, 0x68, 0x76, 0x34, 0x11, 0x1f, 0xbd, - 0x48, 0x99, 0x61, 0xff, 0xb5, 0x7b, 0x5d, 0x45, 0xce, 0x46, 0x62, 0x66, 0x2e, 0x1a, 0xdd, 0xf2, - 0x8d, 0x27, 0x50, 0x0a, 0x5d, 0x92, 0xe4, 0x21, 0xdd, 0x55, 0x9e, 0xc9, 0x37, 0x48, 0x0d, 0x4a, - 0xde, 0xd2, 0x0c, 0x80, 0x1b, 0x2b, 0xbf, 0x7d, 0x78, 0xa0, 0x62, 0x40, 0x2e, 0x42, 0x16, 0x83, - 0x2d, 0x8f, 0xc8, 0xde, 0x7a, 0x72, 0x86, 0x95, 0xfa, 0x2b, 0xbe, 0x55, 0x3e, 0x65, 0x21, 0xcd, - 0xb0, 0xcc, 0x58, 0x69, 0x29, 0xc5, 0x4b, 0xcb, 0x70, 0x51, 0x9a, 0x8a, 0x16, 0xa5, 0xac, 0xde, - 0x3d, 0x9d, 0x99, 0x2f, 0x44, 0xd5, 0x29, 0xfa, 0xbb, 0x08, 0xe2, 0x55, 0xe7, 0x2a, 0x64, 0x4d, - 0xcb, 0x1c, 0x52, 0x51, 0xb0, 0xf2, 0x01, 0x2b, 0xf5, 0xe9, 0x17, 0x58, 0xe9, 0xeb, 0xa6, 0x73, - 0x4e, 0x6d, 0x54, 0xec, 0xa2, 0x5a, 0xe6, 0xc0, 0x26, 0xc2, 0x1a, 0xbf, 0x97, 0x86, 0x8d, 0x43, - 0xdb, 0xb2, 0x4e, 0x7a, 0x27, 0x2a, 0x3d, 0x9b, 0x18, 0x43, 0xdd, 0xa5, 0xfe, 0xd9, 0xc9, 0xf7, - 0xa0, 0xf0, 0x52, 0x9c, 0x5f, 0x98, 0x7e, 0xdd, 0x33, 0xc0, 0xf8, 0xfd, 0xc2, 0x95, 0x89, 0x47, - 0x43, 0x7e, 0x13, 0xaa, 0xb1, 0x64, 0x71, 0x99, 0x58, 0x5e, 0x89, 0x24, 0x80, 0x51, 0x8f, 0x9b, - 0x8e, 0x79, 0xdc, 0x04, 0xdd, 0xcf, 0x24, 0xea, 0xfe, 0x36, 0x94, 0x90, 0xcf, 0x11, 0x9e, 0x00, - 0x03, 0x71, 0x8e, 0x90, 0xc7, 0xa1, 0x6a, 0x87, 0x9f, 0x39, 0xb7, 0x4c, 0x7f, 0xcc, 0xab, 0x89, - 0xbc, 0xce, 0x47, 0xac, 0x72, 0xca, 0x27, 0x54, 0x4e, 0x8d, 0xdf, 0x85, 0x75, 0x66, 0x74, 0x73, - 0x3c, 0x75, 0xa2, 0xe9, 0x81, 0x14, 0x4b, 0x0f, 0xf6, 0xbc, 0x66, 0x83, 0xc7, 0x6f, 0xa7, 0x9e, - 0x42, 0x7f, 0xb3, 0x25, 0x84, 0x84, 0x61, 0x6f, 0x7e, 0x55, 0xb5, 0x8a, 0x64, 0xfe, 0xb8, 0xf1, - 0x6f, 0x29, 0xb8, 0x75, 0x01, 0xee, 0xe2, 0x13, 0x44, 0x75, 0x3a, 0x15, 0xd7, 0xe9, 0x2b, 0xb4, - 0x07, 0xdf, 0x83, 0xaa, 0x77, 0x7a, 0x2d, 0x9c, 0x6d, 0x55, 0x3c, 0x28, 0x0f, 0xf0, 0x9f, 0x41, - 0x31, 0xb8, 0x64, 0x16, 0x2f, 0x79, 0xa1, 0x26, 0xaa, 0x01, 0x2a, 0xf3, 0xad, 0x62, 0xb7, 0xe5, - 0x45, 0xe9, 0x9d, 0x13, 0x25, 0x99, 0xec, 0xc8, 0xf2, 0x17, 0x39, 0xb2, 0x37, 0x12, 0x6c, 0xb4, - 0x30, 0xca, 0x46, 0x32, 0x4c, 0x91, 0xe0, 0x5e, 0xc6, 0xd3, 0x45, 0xcd, 0xab, 0xb9, 0x67, 0xa5, - 0x74, 0xc2, 0xb3, 0xd2, 0xff, 0xd3, 0x83, 0xcf, 0x7f, 0xa6, 0x60, 0xe3, 0xc2, 0x7c, 0xfe, 0xb2, - 0xcc, 0x77, 0xee, 0x22, 0xa9, 0x84, 0x8b, 0x7c, 0xc0, 0x32, 0x36, 0x7e, 0x91, 0x33, 0xff, 0xb5, - 0x85, 0x3b, 0xc0, 0x9a, 0x98, 0x38, 0xf4, 0x9e, 0x5a, 0x3e, 0x04, 0x12, 0xc1, 0xe5, 0xde, 0x32, - 0xe3, 0xa5, 0x77, 0x3e, 0x32, 0xf7, 0x99, 0x71, 0x16, 0x5d, 0x2d, 0xea, 0x4b, 0xf3, 0x2c, 0x4a, - 0xea, 0x22, 0xe4, 0x96, 0x58, 0x2c, 0xde, 0x45, 0x88, 0xb0, 0x3c, 0x1f, 0x67, 0xf9, 0x3f, 0x64, - 0xa0, 0xce, 0x58, 0xbe, 0x6f, 0x39, 0x6e, 0xe8, 0x99, 0x87, 0x73, 0x7c, 0x41, 0x53, 0xf9, 0x97, - 0xcc, 0xed, 0xe7, 0xb0, 0x1e, 0x67, 0x92, 0xe6, 0x18, 0x2c, 0x64, 0x2d, 0xc3, 0xf7, 0x9b, 0x51, - 0x56, 0xf5, 0xd9, 0x02, 0xa4, 0x2f, 0xba, 0x12, 0xe1, 0xa5, 0x5d, 0x6b, 0x29, 0x11, 0xc8, 0xd1, - 0x75, 0x07, 0x16, 0x69, 0x7a, 0x29, 0x6b, 0x1e, 0x53, 0xa3, 0x6f, 0x86, 0x8a, 0xd7, 0x24, 0xce, - 0xef, 0xf4, 0xe9, 0x84, 0xc6, 0x1a, 0x6c, 0x71, 0x05, 0x2b, 0x5c, 0x57, 0xc1, 0x22, 0x0a, 0x51, - 0x8c, 0x2b, 0xc4, 0x0e, 0x94, 0x42, 0x9b, 0xb3, 0xdc, 0xa5, 0xd9, 0xe9, 0xf0, 0x46, 0x42, 0xb3, - 0x35, 0x38, 0xf8, 0x2d, 0x45, 0x96, 0x42, 0x2d, 0x82, 0x54, 0xe3, 0x17, 0xa1, 0xee, 0x83, 0xc3, - 0xee, 0x43, 0xbe, 0x15, 0x2f, 0xd5, 0xb7, 0x2f, 0xb9, 0x6d, 0x50, 0xa9, 0x1f, 0x40, 0x65, 0x4c, - 0x4d, 0x6a, 0xeb, 0xee, 0x75, 0x9e, 0x92, 0x3c, 0x52, 0xe1, 0x60, 0x2f, 0x4d, 0xf6, 0xc3, 0x59, - 0xfe, 0x75, 0x8a, 0xf3, 0xbf, 0x4d, 0x41, 0x5d, 0xa5, 0xfa, 0xe8, 0xf5, 0xae, 0x65, 0xfb, 0x51, - 0xe3, 0x8a, 0xde, 0x6a, 0x61, 0x9d, 0x1e, 0x0d, 0x83, 0xe9, 0x84, 0x57, 0x83, 0xf0, 0x7b, 0x45, - 0x66, 0xee, 0xbd, 0x22, 0x6c, 0xb7, 0xd9, 0xa8, 0xdd, 0xbe, 0xb5, 0x00, 0xb6, 0xd0, 0xad, 0xb0, - 0xeb, 0x19, 0x8e, 0xc6, 0xd0, 0x0d, 0xfe, 0x90, 0x5c, 0x50, 0x0b, 0x86, 0xa3, 0xe2, 0xb8, 0xf1, - 0x5f, 0x12, 0xe3, 0x1b, 0xb2, 0x69, 0x3e, 0xad, 0x7d, 0x78, 0xf5, 0x14, 0x31, 0x94, 0x18, 0xc6, - 0xaf, 0x95, 0x7a, 0x2b, 0xd7, 0x4a, 0x2f, 0xbc, 0x56, 0x26, 0x7a, 0xad, 0xa8, 0x48, 0xb3, 0x51, - 0x91, 0x36, 0x7e, 0x3f, 0x05, 0x1b, 0x5e, 0x33, 0x6b, 0xfe, 0xd2, 0x9f, 0x40, 0x4e, 0xe4, 0x8f, - 0x97, 0x5d, 0x59, 0xe0, 0x2d, 0x4a, 0xef, 0xd1, 0x51, 0x38, 0xd6, 0xc4, 0xab, 0x3f, 0xd3, 0xcb, - 0x05, 0x6b, 0xa4, 0x9c, 0xe7, 0x45, 0x66, 0x21, 0x2f, 0xb2, 0x8b, 0x78, 0x91, 0x8b, 0xf3, 0x42, - 0x02, 0xb2, 0x6b, 0xd9, 0x43, 0xca, 0x91, 0xdf, 0x86, 0xc5, 0x6c, 0x40, 0x41, 0x9f, 0xb9, 0xa7, - 0xe1, 0x27, 0x38, 0x36, 0xbe, 0xf4, 0xc1, 0xb8, 0xf1, 0xc7, 0x12, 0xe4, 0x54, 0xea, 0xcc, 0x26, - 0x2e, 0x79, 0x1f, 0x32, 0x43, 0x6b, 0xc4, 0x9f, 0x25, 0xab, 0xfe, 0x6b, 0x89, 0x2f, 0x34, 0x6b, - 0x44, 0x55, 0x44, 0x20, 0x75, 0xc8, 0x4f, 0xa9, 0xe3, 0xe8, 0x63, 0xea, 0xb1, 0x5e, 0x0c, 0xe7, - 0x9f, 0xc2, 0xd3, 0xd7, 0x7d, 0x0a, 0x6f, 0xfc, 0x4b, 0x06, 0xaa, 0x9c, 0x3f, 0xfe, 0x93, 0xce, - 0xc2, 0x34, 0x2f, 0xfa, 0xc6, 0x2c, 0x98, 0x94, 0xbe, 0x57, 0x0c, 0xbd, 0x31, 0x5f, 0xde, 0x03, - 0x7c, 0x08, 0xeb, 0x23, 0xeb, 0xdc, 0x9c, 0x58, 0xfa, 0x48, 0x3c, 0x3f, 0x7b, 0x2f, 0x55, 0xfc, - 0xe1, 0x77, 0xd5, 0x9b, 0xe5, 0x8f, 0xd0, 0xe2, 0x09, 0xed, 0x13, 0x58, 0xe5, 0x6a, 0x10, 0xa3, - 0x11, 0x8f, 0xee, 0xb6, 0x90, 0x72, 0x88, 0x02, 0x45, 0x8d, 0x14, 0x4c, 0x60, 0x39, 0x4f, 0xd4, - 0x0c, 0xc2, 0x44, 0xd6, 0x05, 0x59, 0x4c, 0x07, 0x45, 0xd3, 0x32, 0x5d, 0x8c, 0x2a, 0xa7, 0xf6, - 0xcb, 0xa6, 0xfb, 0x91, 0xf5, 0xc2, 0x9d, 0x8c, 0x5a, 0x80, 0xe9, 0x7f, 0x40, 0xe0, 0x73, 0x20, - 0xec, 0x64, 0x8b, 0x78, 0x46, 0xe2, 0xcd, 0xb5, 0x02, 0x67, 0x8b, 0x89, 0x0b, 0x2e, 0x1e, 0xc6, - 0xe7, 0xbd, 0x0b, 0xb1, 0x6d, 0x08, 0xbb, 0x13, 0xae, 0x2b, 0xf9, 0xcd, 0x4a, 0xcb, 0x94, 0xb0, - 0x7e, 0xf5, 0x79, 0x51, 0x87, 0xa6, 0x9c, 0x54, 0xa5, 0x36, 0x7e, 0x2e, 0xc1, 0x7a, 0x54, 0x9b, - 0xfc, 0xce, 0xfa, 0xaf, 0xce, 0x3d, 0x14, 0xae, 0xf9, 0xaa, 0x1f, 0x21, 0x08, 0x1e, 0x08, 0x3b, - 0xfe, 0x77, 0x27, 0xbc, 0x03, 0xf7, 0x30, 0x99, 0x40, 0xec, 0xb0, 0x13, 0x07, 0xc4, 0x3e, 0x4d, - 0xd9, 0x85, 0xf5, 0x64, 0x0c, 0x52, 0x83, 0xd2, 0xa3, 0xde, 0x60, 0x5f, 0x13, 0x2f, 0x18, 0xd8, - 0xb7, 0x79, 0xd6, 0x3c, 0x18, 0x68, 0x9d, 0x83, 0xfe, 0x80, 0x3f, 0x68, 0xa8, 0xca, 0x63, 0xa5, - 0x35, 0xc0, 0x4c, 0xe4, 0xdf, 0xf1, 0x8e, 0x3c, 0xa3, 0x88, 0x1c, 0xe4, 0x92, 0xa2, 0x73, 0x1b, - 0x4a, 0x42, 0x80, 0x26, 0x33, 0x7f, 0x6e, 0xd2, 0x42, 0x3f, 0xbb, 0xcc, 0xde, 0x93, 0xd4, 0x31, - 0xfd, 0x96, 0xd5, 0x31, 0x93, 0xa8, 0x8e, 0x8d, 0xbf, 0x49, 0xc3, 0x2d, 0x8f, 0x29, 0x6f, 0xf7, - 0x52, 0xdf, 0xf7, 0x32, 0xd2, 0x34, 0x8a, 0xf0, 0x7e, 0xcc, 0xdd, 0xc5, 0x36, 0x13, 0xa2, 0x65, - 0x72, 0xf1, 0xf2, 0xd1, 0x1d, 0x5f, 0x09, 0x78, 0x35, 0xb8, 0x9e, 0xdc, 0xee, 0xf3, 0xc4, 0x1c, - 0x6d, 0xb7, 0x64, 0x63, 0xed, 0x96, 0x26, 0x77, 0xd2, 0xcb, 0xe7, 0x24, 0x05, 0x67, 0x81, 0x2d, - 0xe4, 0x13, 0x6d, 0x41, 0x03, 0x08, 0x6e, 0x43, 0x08, 0x54, 0x5b, 0xbd, 0xee, 0x40, 0x6d, 0xb6, - 0x06, 0x1a, 0x3e, 0x5b, 0xc9, 0x37, 0xc8, 0x1a, 0xac, 0xb4, 0x7b, 0xcf, 0xba, 0x9d, 0x5e, 0xb3, - 0xad, 0x75, 0x7b, 0x03, 0x0d, 0x7b, 0x7e, 0x12, 0x59, 0x81, 0x8a, 0xf7, 0x68, 0xd5, 0xdc, 0x6b, - 0x1e, 0x74, 0xe5, 0x14, 0xb9, 0x09, 0x35, 0x9f, 0x5a, 0xa4, 0xc4, 0xe9, 0xc6, 0x9f, 0xa5, 0x61, - 0xad, 0xa5, 0x9b, 0x43, 0x3a, 0x09, 0xf4, 0xfa, 0x6a, 0x85, 0xfa, 0xa2, 0xe6, 0x47, 0x2c, 0xeb, - 0x4b, 0x5f, 0xf2, 0x95, 0x4a, 0x66, 0xd1, 0x57, 0x2a, 0xb1, 0xa4, 0xb0, 0x09, 0x39, 0x9b, 0xea, - 0x8e, 0x65, 0x22, 0xeb, 0x03, 0x65, 0x48, 0xbc, 0x84, 0x80, 0xaa, 0x48, 0xa0, 0x0a, 0xc2, 0xa8, - 0x00, 0xf3, 0xd7, 0x12, 0x60, 0x24, 0x50, 0x17, 0xe2, 0x81, 0x5a, 0x85, 0x72, 0x78, 0x63, 0x22, - 0x43, 0x79, 0xbf, 0xd7, 0x67, 0x32, 0x43, 0x89, 0xc8, 0x37, 0x98, 0x78, 0x7c, 0xa9, 0xed, 0x36, - 0x0f, 0x3a, 0xb2, 0xc4, 0x84, 0xab, 0x2a, 0xdd, 0x81, 0xa2, 0xfa, 0x68, 0xd8, 0x66, 0xed, 0x0d, - 0xf6, 0x15, 0x55, 0x4e, 0x37, 0xfe, 0x44, 0x82, 0x9b, 0x7e, 0x8a, 0xf5, 0xd8, 0x3a, 0x0e, 0xd5, - 0xbd, 0xcc, 0x6a, 0xc2, 0x75, 0x2f, 0x1b, 0x27, 0x75, 0x42, 0x52, 0x6f, 0xa5, 0x13, 0x12, 0x4f, - 0x34, 0x1b, 0xff, 0x9d, 0x82, 0xd5, 0xe8, 0xc9, 0x84, 0xb7, 0x5e, 0x70, 0xb4, 0x3b, 0x00, 0x86, - 0xe3, 0xcc, 0xa2, 0x8d, 0x1e, 0x0e, 0x61, 0xd3, 0x6b, 0x90, 0xfb, 0xdc, 0x3a, 0x0e, 0x54, 0x27, - 0xfb, 0xb9, 0x75, 0x7c, 0x80, 0xcd, 0xe0, 0x33, 0x7d, 0xf8, 0x82, 0x95, 0xdc, 0x33, 0x7b, 0xe2, - 0x15, 0x13, 0x02, 0x74, 0x64, 0x4f, 0xc8, 0x67, 0x70, 0xcb, 0x43, 0xf0, 0xfb, 0x60, 0x91, 0x4f, - 0x12, 0xd7, 0xc4, 0xb4, 0xdf, 0xe3, 0xe3, 0x2d, 0x36, 0xa6, 0x11, 0xd4, 0x1c, 0x5d, 0xc7, 0xa4, - 0xa9, 0x39, 0xf2, 0x3e, 0x10, 0x60, 0x47, 0x3e, 0x31, 0x4c, 0xc3, 0x39, 0xd5, 0x46, 0x54, 0x1f, - 0x4d, 0x0c, 0x73, 0x39, 0xf5, 0x5a, 0xf9, 0xdc, 0x3a, 0xde, 0x45, 0xfa, 0xb6, 0x20, 0xbf, 0x44, - 0xcf, 0x7e, 0x26, 0x01, 0x89, 0x71, 0x9e, 0x25, 0x87, 0x0b, 0xf8, 0x1e, 0x30, 0x36, 0x15, 0x66, - 0xec, 0xa7, 0xcc, 0xa8, 0x18, 0xad, 0xa8, 0x3e, 0x6f, 0x27, 0x36, 0x51, 0xf9, 0xf2, 0xaa, 0x40, - 0x25, 0x0a, 0x94, 0x9c, 0xd9, 0xf1, 0xd4, 0xb8, 0x46, 0x9f, 0x0d, 0x38, 0xe1, 0x15, 0xda, 0x6c, - 0x7f, 0x2f, 0xc1, 0x6a, 0xd2, 0x29, 0xae, 0xf2, 0x11, 0xe1, 0x75, 0xea, 0xd5, 0xe4, 0xe7, 0x84, - 0x75, 0x9f, 0x3f, 0xdc, 0x1b, 0x79, 0x2c, 0x40, 0x35, 0xc6, 0xeb, 0x5b, 0x33, 0x17, 0x15, 0xa7, - 0xc0, 0xd4, 0x78, 0xc0, 0x01, 0x8d, 0xbf, 0x96, 0x80, 0xb4, 0x69, 0x8b, 0x32, 0x9f, 0x34, 0x09, - 0xda, 0xca, 0xef, 0x42, 0xea, 0xa5, 0x53, 0x97, 0x22, 0x9f, 0xc1, 0xb6, 0x83, 0xb2, 0x29, 0xf5, - 0x32, 0x54, 0xe2, 0xa7, 0xc2, 0x25, 0x3e, 0x81, 0xcc, 0x6c, 0xe6, 0x1b, 0x05, 0xfe, 0x4f, 0x64, - 0x48, 0x07, 0xb6, 0xc0, 0xfe, 0x25, 0xdf, 0x86, 0x82, 0xaf, 0xcb, 0x97, 0x77, 0x98, 0x32, 0xfc, - 0x4d, 0x5b, 0xa8, 0x71, 0xe3, 0x47, 0x12, 0x40, 0xfb, 0x97, 0xf8, 0x70, 0xb3, 0xa8, 0x30, 0xfd, - 0x60, 0x08, 0xe5, 0x70, 0x89, 0x43, 0x4a, 0x90, 0xef, 0x1f, 0xb5, 0x5a, 0x4a, 0xbf, 0x2f, 0xdf, - 0x20, 0x9b, 0xb0, 0xce, 0x72, 0xaf, 0xe6, 0xe0, 0x48, 0x55, 0xb4, 0xdd, 0x9e, 0xfa, 0xa4, 0x39, - 0xd0, 0x14, 0x55, 0xed, 0xa9, 0xb2, 0x44, 0x36, 0x60, 0xad, 0xd5, 0x7b, 0x72, 0x78, 0x34, 0x50, - 0xb4, 0x66, 0xbb, 0xad, 0x2a, 0xfd, 0xbe, 0x98, 0x4a, 0xb1, 0xbc, 0x0d, 0x5d, 0xac, 0x00, 0xac, - 0x3e, 0xf8, 0x2b, 0x80, 0xf2, 0x1e, 0x46, 0x61, 0x6a, 0xbf, 0x32, 0x86, 0x94, 0x7c, 0x07, 0x6e, - 0xf6, 0x51, 0x5d, 0xa3, 0x1f, 0x37, 0x5c, 0x90, 0x43, 0x6c, 0x56, 0x82, 0xec, 0x84, 0xa9, 0xc8, - 0x77, 0xa1, 0xd2, 0xa7, 0x66, 0xf0, 0xe0, 0x40, 0xee, 0x84, 0xe8, 0xe6, 0xdf, 0x1c, 0xe2, 0xe4, - 0x5d, 0x66, 0xe1, 0xf1, 0x5e, 0x3a, 0xb9, 0xeb, 0xd7, 0xdc, 0x17, 0xb4, 0xd9, 0x37, 0x2f, 0x38, - 0x1d, 0x69, 0xc1, 0xca, 0x5c, 0x1b, 0x88, 0x6c, 0xfb, 0x7b, 0x26, 0x37, 0x88, 0xe2, 0x87, 0xfa, - 0x35, 0x28, 0x85, 0x6a, 0x62, 0xb2, 0xe1, 0xed, 0x35, 0x57, 0x27, 0xc7, 0x09, 0x1f, 0xc3, 0xca, - 0x5c, 0x63, 0x8d, 0x5c, 0xd6, 0x72, 0xdb, 0x5c, 0x8d, 0xf5, 0xc2, 0x78, 0xeb, 0x4e, 0x05, 0x59, - 0xa5, 0xae, 0x6d, 0xd0, 0x57, 0xd4, 0xeb, 0xbe, 0x93, 0x4b, 0x3f, 0xb4, 0xd9, 0x7c, 0x27, 0xce, - 0x97, 0xc8, 0x97, 0x3b, 0x03, 0xb6, 0x66, 0xb4, 0xd9, 0x73, 0x39, 0x73, 0x02, 0x84, 0x0b, 0xda, - 0x44, 0x6d, 0xc6, 0xf3, 0x58, 0x3b, 0xc5, 0x3f, 0xea, 0x85, 0x8d, 0x96, 0x38, 0xef, 0x3a, 0xb0, - 0xca, 0xd5, 0x30, 0x56, 0x69, 0x27, 0x57, 0x40, 0x9b, 0x77, 0x16, 0xd6, 0x39, 0xe4, 0x07, 0xb0, - 0x21, 0xce, 0xbb, 0x6b, 0xd9, 0xf1, 0x6c, 0xfd, 0x4e, 0xf4, 0x46, 0xb1, 0xe9, 0xcd, 0xad, 0xc5, - 0xf9, 0x37, 0x69, 0xc1, 0xaa, 0x4a, 0xcf, 0x2c, 0xdb, 0xdd, 0xd5, 0x8d, 0xc9, 0xc0, 0x6a, 0x8b, - 0x3a, 0x94, 0xbc, 0xb3, 0x28, 0x55, 0x8b, 0x5f, 0xf7, 0xa9, 0x5f, 0x20, 0x85, 0x79, 0xfe, 0xd8, - 0x3a, 0x26, 0x9b, 0xf1, 0x86, 0x53, 0x90, 0x0d, 0x6d, 0xde, 0x4e, 0x9c, 0x13, 0x77, 0x6e, 0x43, - 0x9d, 0x73, 0x30, 0x29, 0x66, 0x26, 0x13, 0xce, 0x26, 0x73, 0x07, 0xfb, 0x1e, 0xac, 0xe2, 0x2f, - 0x9d, 0xf6, 0xa8, 0x1b, 0xf9, 0xc1, 0x8f, 0xe7, 0xc9, 0x83, 0x9f, 0x41, 0x6d, 0x7a, 0x7d, 0x99, - 0x08, 0xde, 0x23, 0xd8, 0x88, 0xd0, 0x33, 0x95, 0x77, 0x54, 0xdd, 0x7c, 0xd1, 0xa5, 0xe7, 0x49, - 0x8b, 0x90, 0xf0, 0x0f, 0x25, 0xc4, 0x1a, 0x6d, 0xb8, 0x9d, 0xbc, 0x06, 0xfe, 0x6c, 0xe2, 0xaa, - 0xab, 0xec, 0xc2, 0xad, 0xc8, 0x2a, 0xc1, 0x6f, 0x2e, 0x92, 0x56, 0xf0, 0xfa, 0x7c, 0x73, 0xbf, - 0xcc, 0x78, 0xf4, 0x1b, 0xbf, 0xf8, 0xf9, 0x96, 0xf4, 0xe5, 0x57, 0x5b, 0xd2, 0x8f, 0xbf, 0xda, - 0x92, 0x7e, 0xf6, 0xd5, 0x96, 0xf4, 0xa7, 0x6f, 0xb6, 0xa4, 0x7f, 0x7a, 0xb3, 0x25, 0x7d, 0xf9, - 0x66, 0x4b, 0x82, 0x8a, 0x61, 0xed, 0x1c, 0xbb, 0x27, 0x0e, 0x27, 0x7f, 0x04, 0xe8, 0x5b, 0x0f, - 0x59, 0x20, 0x3a, 0x94, 0x7e, 0xc0, 0x7f, 0x91, 0x76, 0x9c, 0xc3, 0xc0, 0xf4, 0xe9, 0xff, 0x06, - 0x00, 0x00, 0xff, 0xff, 0x8b, 0x86, 0x79, 0x48, 0xbb, 0x36, 0x00, 0x00, + // 4031 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3b, 0xcb, 0x6e, 0x1b, 0x59, + 0x76, 0x2e, 0xbe, 0x79, 0xf8, 0x2a, 0x5d, 0x4b, 0x32, 0x25, 0xb7, 0x25, 0x37, 0x07, 0x3d, 0x6d, + 0xf7, 0x74, 0xab, 0x3b, 0x6e, 0xa3, 0x83, 0xc9, 0xbc, 0x42, 0x93, 0xa5, 0x87, 0x43, 0x93, 0x72, + 0x91, 0x8a, 0xe3, 0x41, 0x80, 0x42, 0x89, 0xbc, 0xa2, 0xaa, 0x4d, 0x56, 0xc9, 0x55, 0x45, 0xab, + 0x3d, 0x8b, 0x2c, 0xb2, 0x0b, 0x02, 0x04, 0x59, 0x25, 0xc1, 0x7c, 0x40, 0x80, 0x09, 0x02, 0x24, + 0x08, 0x90, 0x4d, 0x16, 0x41, 0x96, 0x1d, 0x24, 0x48, 0x26, 0x8b, 0x64, 0x39, 0x8f, 0xf6, 0x0f, + 0x24, 0xab, 0xcc, 0x2a, 0x08, 0xee, 0xb9, 0xb7, 0x9e, 0x2c, 0x51, 0xa2, 0x62, 0x64, 0x80, 0xd9, + 0x08, 0xba, 0xe7, 0x9e, 0x73, 0x1f, 0xe7, 0x7d, 0xce, 0x2d, 0x42, 0xfd, 0xcc, 0xb6, 0x5c, 0xcb, + 0xf9, 0x78, 0x3c, 0xd3, 0xed, 0x11, 0xff, 0xbb, 0x83, 0x20, 0x92, 0xc5, 0xc1, 0xe6, 0x27, 0x63, + 0xc3, 0x3d, 0x9d, 0x1d, 0xef, 0x0c, 0xad, 0xe9, 0xc7, 0xae, 0x6d, 0x99, 0x1f, 0xcd, 0x9c, 0x8f, + 0x11, 0xe1, 0x78, 0x76, 0xf2, 0xf1, 0xd8, 0x1a, 0x5b, 0x38, 0xc0, 0xff, 0x38, 0xe1, 0xe6, 0xf6, + 0xd8, 0xb2, 0xc6, 0x13, 0x1a, 0x60, 0xb9, 0xc6, 0x94, 0x3a, 0xae, 0x3e, 0x3d, 0xe3, 0x08, 0x8d, + 0xff, 0x91, 0x00, 0x9a, 0xa3, 0xa9, 0x61, 0x3e, 0x9d, 0x51, 0xfb, 0x35, 0xf9, 0x1a, 0x54, 0x6c, + 0xfa, 0x72, 0x46, 0x1d, 0x97, 0xda, 0xda, 0x99, 0x31, 0xaa, 0x4b, 0x77, 0xa5, 0x7b, 0x45, 0xb5, + 0xec, 0x03, 0x0f, 0x8d, 0x11, 0x69, 0x01, 0xbc, 0x64, 0xd8, 0xda, 0x48, 0x77, 0x69, 0x3d, 0x75, + 0x57, 0xba, 0x57, 0x7a, 0xb0, 0xb9, 0xc3, 0x77, 0xda, 0xf1, 0x76, 0xda, 0x19, 0x78, 0x3b, 0x3d, + 0x2a, 0x7c, 0xf9, 0x93, 0xed, 0x1b, 0x7f, 0xfc, 0xd3, 0x6d, 0x49, 0x2d, 0x22, 0x5d, 0x5b, 0x77, + 0x29, 0xd9, 0x86, 0x12, 0x5f, 0x64, 0x68, 0xcd, 0x4c, 0xb7, 0x9e, 0xbe, 0x2b, 0xdd, 0xcb, 0xaa, + 0x7c, 0xdd, 0x16, 0x83, 0x90, 0x3d, 0xf0, 0x76, 0xd5, 0xd8, 0xa1, 0xeb, 0x99, 0x25, 0xf6, 0x29, + 0x09, 0x4a, 0x36, 0x47, 0xde, 0x81, 0xa2, 0x63, 0x8c, 0x4d, 0xdd, 0x9d, 0xd9, 0xb4, 0x9e, 0xbd, + 0x2b, 0xdd, 0x2b, 0xab, 0x01, 0xa0, 0xf1, 0xc3, 0x0c, 0x94, 0xdb, 0xba, 0x31, 0x79, 0xdd, 0x9f, + 0x4d, 0xa7, 0xba, 0xfd, 0x3a, 0x76, 0x3b, 0xe9, 0x7a, 0xb7, 0x3b, 0x60, 0x7c, 0x74, 0xce, 0x2c, + 0xd3, 0xa1, 0xfc, 0xf4, 0xcb, 0x70, 0xa9, 0xec, 0x91, 0xe2, 0xf1, 0xdf, 0x85, 0xf2, 0x99, 0x4d, + 0xcf, 0x74, 0x5b, 0x48, 0x24, 0x8d, 0x12, 0x29, 0x79, 0x30, 0x26, 0x90, 0xc8, 0x0d, 0x33, 0xb1, + 0x1b, 0x92, 0x4f, 0x60, 0xf5, 0xdc, 0xb2, 0x5f, 0x18, 0xe6, 0x58, 0x73, 0x5c, 0xcb, 0xd6, 0xc7, + 0x54, 0x73, 0x8c, 0x1f, 0x70, 0x56, 0xa4, 0x55, 0x22, 0xe6, 0xfa, 0x7c, 0xaa, 0x6f, 0xfc, 0x80, + 0x32, 0x2d, 0x30, 0xe9, 0xb9, 0x36, 0xb4, 0x4c, 0xd7, 0xd6, 0x87, 0xae, 0x53, 0xcf, 0x21, 0x6a, + 0xd9, 0xa4, 0xe7, 0x2d, 0x0f, 0x46, 0x3e, 0x04, 0x12, 0x41, 0xd2, 0x4e, 0x2d, 0xc7, 0xad, 0xe7, + 0x11, 0x53, 0x0e, 0x63, 0xee, 0x5b, 0x8e, 0xcb, 0x0e, 0x11, 0xc5, 0xb6, 0xa9, 0xe9, 0x52, 0xbb, + 0x5e, 0xe0, 0x87, 0x08, 0xe3, 0xab, 0x38, 0x43, 0xbe, 0x03, 0xb7, 0xa3, 0x14, 0xfa, 0x2b, 0x8a, + 0x87, 0x3f, 0xb3, 0x8d, 0x21, 0xad, 0x17, 0x91, 0xb0, 0x1e, 0x26, 0x6c, 0x72, 0x84, 0x43, 0x36, + 0x4f, 0x6e, 0x43, 0x91, 0x91, 0x9f, 0x18, 0x13, 0xea, 0xd4, 0x01, 0x91, 0x0b, 0x26, 0x3d, 0xdf, + 0x65, 0x63, 0xf2, 0x75, 0xa8, 0xb1, 0x49, 0xe7, 0x54, 0xb7, 0x47, 0x0e, 0xe7, 0x46, 0x09, 0x51, + 0xd8, 0xbd, 0xfb, 0x08, 0x65, 0x8c, 0x68, 0xfc, 0x65, 0x0a, 0x4a, 0xec, 0xf8, 0xbf, 0xb2, 0xba, + 0xf1, 0x2e, 0x33, 0xb2, 0xa1, 0x65, 0x8f, 0x84, 0x19, 0x66, 0xd1, 0x0c, 0x4b, 0x1c, 0xc6, 0xed, + 0xf0, 0x3e, 0xe4, 0x1c, 0x57, 0x77, 0x67, 0x4c, 0x0b, 0xd2, 0xf7, 0x4a, 0x0f, 0x56, 0x76, 0xb8, + 0x67, 0x42, 0xbe, 0xe0, 0x84, 0x2a, 0x10, 0x1a, 0xff, 0x92, 0x86, 0x95, 0x81, 0xe5, 0xea, 0x13, + 0x06, 0xa7, 0xbf, 0xca, 0x06, 0xf5, 0x4a, 0x9f, 0x18, 0x23, 0x5f, 0x37, 0x43, 0xcc, 0x4b, 0xab, + 0x04, 0xe7, 0x3c, 0xa5, 0xe4, 0x3c, 0xfc, 0x10, 0x08, 0xfd, 0xc2, 0x70, 0x5c, 0x3a, 0xe2, 0x3a, + 0xc7, 0x55, 0x8e, 0x5b, 0x95, 0x2c, 0x66, 0x50, 0xed, 0xd0, 0xfc, 0x1e, 0xc2, 0xba, 0x61, 0x26, + 0xee, 0xc0, 0xad, 0x6b, 0x55, 0xcc, 0x46, 0xf7, 0xf8, 0x3a, 0xd4, 0x26, 0x96, 0xe3, 0x86, 0x37, + 0xe0, 0xc6, 0x55, 0x61, 0xe0, 0x60, 0xf5, 0x0f, 0x60, 0xc5, 0x65, 0x32, 0x42, 0x7b, 0xd5, 0x6c, + 0x7a, 0xae, 0xdb, 0x23, 0x61, 0x4d, 0x35, 0x9c, 0x60, 0x82, 0x55, 0x11, 0xdc, 0xf8, 0x91, 0x04, + 0x10, 0xc8, 0x99, 0x6c, 0x40, 0x01, 0x89, 0x82, 0xc0, 0x90, 0x67, 0x63, 0xc6, 0xb1, 0xdb, 0x50, + 0x64, 0xa6, 0xc6, 0xf7, 0x4d, 0x71, 0x73, 0x63, 0x00, 0xdc, 0x72, 0x1b, 0x4a, 0xcc, 0xcb, 0x68, + 0xfa, 0xd4, 0xf7, 0xf5, 0x69, 0x15, 0x18, 0xa8, 0x89, 0x10, 0x72, 0x07, 0x80, 0x1f, 0x44, 0x3b, + 0x76, 0x5d, 0x64, 0x78, 0x5a, 0x2d, 0x72, 0xc8, 0x23, 0xd7, 0x65, 0xfe, 0xc8, 0x99, 0x39, 0x67, + 0x94, 0xf1, 0xe1, 0x94, 0xea, 0x9c, 0xd3, 0x05, 0xb5, 0x2c, 0x80, 0x2d, 0x06, 0x6b, 0xfc, 0xa1, + 0x04, 0xe9, 0x8e, 0x35, 0x26, 0x0a, 0x94, 0x86, 0xa7, 0xba, 0x39, 0x16, 0x7a, 0xb2, 0x8c, 0xbe, + 0x01, 0x27, 0x44, 0x2d, 0x79, 0x0f, 0xaa, 0x96, 0x6d, 0x8c, 0x0d, 0x53, 0x77, 0x2d, 0xae, 0x27, + 0x29, 0xbc, 0x71, 0x25, 0x80, 0xb2, 0x7b, 0xaf, 0x43, 0x8e, 0x13, 0x09, 0x35, 0x12, 0xa3, 0xc6, + 0x7f, 0x64, 0xa1, 0xec, 0xc9, 0xe7, 0x09, 0x75, 0x75, 0xc6, 0x03, 0x5f, 0x98, 0x3e, 0xfb, 0xc0, + 0x03, 0x1d, 0x8c, 0x38, 0x0f, 0x4c, 0x2f, 0xee, 0xf2, 0xcd, 0x8a, 0x1c, 0xc2, 0x36, 0x0a, 0xf3, + 0x3e, 0x1d, 0xe5, 0xfd, 0x1d, 0x00, 0x2e, 0xf4, 0x53, 0xdd, 0x39, 0x45, 0xee, 0x15, 0xd5, 0x22, + 0x42, 0xf6, 0x75, 0xe7, 0x94, 0xed, 0xcc, 0xa7, 0x0d, 0x73, 0x44, 0xbf, 0x10, 0x26, 0xce, 0x29, + 0x0e, 0x18, 0x84, 0x69, 0x0e, 0x47, 0x08, 0x24, 0xc8, 0x55, 0xb3, 0x82, 0xe0, 0x5d, 0x4f, 0x8c, + 0x9e, 0x8c, 0x71, 0x9b, 0x3c, 0x6e, 0x83, 0x32, 0xc6, 0x5d, 0x5a, 0xfc, 0xf8, 0x9a, 0xe3, 0xea, + 0xb6, 0x8b, 0x9a, 0x77, 0x65, 0x2b, 0x67, 0x74, 0x7d, 0x46, 0x46, 0xbe, 0x07, 0x05, 0x5c, 0x84, + 0x9a, 0x5c, 0x25, 0xaf, 0xba, 0x44, 0x9e, 0x51, 0x29, 0x26, 0xaa, 0x21, 0x7a, 0x27, 0x64, 0x13, + 0xf0, 0x23, 0x22, 0x40, 0xf0, 0x89, 0x3a, 0x43, 0xdb, 0x3a, 0xc7, 0xd9, 0x12, 0xe7, 0x13, 0x87, + 0xb0, 0xe9, 0x55, 0xc8, 0xf2, 0xd0, 0x52, 0xc6, 0xcb, 0xf3, 0x01, 0x13, 0xb0, 0x50, 0xdb, 0x0a, + 0x82, 0xc5, 0x88, 0x7c, 0x03, 0x56, 0x86, 0xd6, 0x64, 0xa2, 0xbb, 0xd4, 0xd6, 0x27, 0x9e, 0x66, + 0x57, 0xb9, 0x45, 0x07, 0x13, 0x42, 0xbf, 0x15, 0xa8, 0x9d, 0xe9, 0xaf, 0xad, 0x99, 0xab, 0x39, + 0xc3, 0x53, 0x3a, 0x9a, 0x4d, 0x68, 0xbd, 0x76, 0x57, 0xba, 0x57, 0x7d, 0xf0, 0x8e, 0x70, 0xa6, + 0x61, 0x55, 0xd9, 0xe9, 0x0b, 0x1c, 0xb5, 0xca, 0x89, 0xbc, 0x31, 0x93, 0xa4, 0x39, 0x9b, 0x6a, + 0x1c, 0xea, 0xd4, 0x65, 0x2e, 0x49, 0x73, 0x36, 0x3d, 0xe4, 0x10, 0x7e, 0x28, 0xd3, 0x35, 0xcc, + 0x31, 0xe3, 0xa2, 0x38, 0xd4, 0x8a, 0x77, 0x28, 0x6f, 0x82, 0x1f, 0xaa, 0xf1, 0x10, 0x0a, 0xfe, + 0xca, 0x25, 0xc8, 0x3f, 0xe9, 0x75, 0x07, 0xfb, 0x9d, 0xe7, 0xf2, 0x0d, 0x52, 0x81, 0xe2, 0xd3, + 0xa3, 0xa6, 0x3a, 0x50, 0xd4, 0xce, 0x73, 0x59, 0x22, 0x65, 0x28, 0x34, 0xbb, 0xdd, 0xa3, 0x66, + 0xa7, 0xf3, 0x5c, 0x4e, 0x35, 0xfe, 0xbd, 0x08, 0x05, 0xef, 0xb4, 0xe4, 0x9b, 0x50, 0xf0, 0x34, + 0x58, 0x18, 0xda, 0xcd, 0x84, 0x0b, 0x71, 0x41, 0xfd, 0xf8, 0x27, 0xdb, 0x92, 0xea, 0xa3, 0x93, + 0x4f, 0x21, 0xcb, 0xa2, 0x06, 0x77, 0x16, 0xd5, 0x07, 0x77, 0x62, 0x74, 0xfe, 0x3f, 0x18, 0x4a, + 0x54, 0x8e, 0x4b, 0xee, 0x83, 0x2c, 0x6c, 0x24, 0x70, 0xcf, 0x69, 0x74, 0xcf, 0x35, 0x0e, 0xef, + 0xfb, 0x4e, 0xfa, 0x3d, 0xa8, 0xa2, 0xbd, 0xc4, 0xfd, 0x78, 0x85, 0x41, 0x03, 0x34, 0x15, 0x88, + 0xd0, 0x09, 0x86, 0x48, 0x47, 0xdc, 0x69, 0x64, 0x97, 0xd0, 0x3d, 0x99, 0xd3, 0xf7, 0x91, 0x1c, + 0x5d, 0xc7, 0x7d, 0x90, 0x43, 0x6b, 0xf2, 0xcd, 0x73, 0xfc, 0x94, 0x01, 0xae, 0x17, 0x4a, 0x84, + 0xcf, 0xd1, 0x26, 0xd6, 0xb8, 0x9e, 0xc7, 0x00, 0x0b, 0x82, 0x15, 0x1d, 0x6b, 0xfc, 0x28, 0xfb, + 0x17, 0x3f, 0xdd, 0x96, 0x3e, 0x52, 0x8b, 0x1c, 0x89, 0xb9, 0xb7, 0x2e, 0xc8, 0x13, 0xdd, 0x71, + 0xb5, 0xa9, 0x35, 0x32, 0x4e, 0x5e, 0xf3, 0xe3, 0x2e, 0x63, 0x6d, 0x55, 0x46, 0xfd, 0x04, 0x89, + 0xf1, 0xb0, 0xef, 0x43, 0x8d, 0x5b, 0x4c, 0x70, 0xd6, 0x22, 0x9e, 0xb5, 0x8a, 0xe0, 0x7e, 0x38, + 0x55, 0x88, 0x84, 0x4d, 0x98, 0x0f, 0x9b, 0x1f, 0x01, 0xf1, 0x51, 0x82, 0xe5, 0x4a, 0xb8, 0xdc, + 0x8a, 0x37, 0x13, 0xac, 0x38, 0x84, 0xdb, 0x78, 0x15, 0x67, 0x36, 0x1c, 0x52, 0xc7, 0xd1, 0x86, + 0xa7, 0xfa, 0x64, 0x42, 0x7d, 0xcf, 0x5d, 0x5e, 0xe2, 0x56, 0x75, 0xb6, 0x50, 0x9f, 0xaf, 0xd3, + 0xf2, 0x96, 0xc1, 0xfb, 0x0d, 0xe0, 0x26, 0x6e, 0x12, 0x5b, 0xbc, 0xb2, 0xc4, 0xe2, 0x2b, 0x6c, + 0x81, 0xe8, 0xaa, 0xef, 0x43, 0x2d, 0xba, 0xa0, 0x83, 0xb6, 0x9f, 0x55, 0xab, 0xc3, 0x30, 0x9e, + 0xc3, 0x72, 0x85, 0x00, 0xf1, 0x5c, 0xb7, 0x4d, 0x81, 0x5d, 0x43, 0x6c, 0xe2, 0xcf, 0x3d, 0xd3, + 0x6d, 0x93, 0x53, 0x7c, 0x06, 0xb7, 0x02, 0x0a, 0x8f, 0x35, 0x9c, 0x88, 0x1b, 0xfc, 0x9a, 0x3f, + 0x2d, 0x2e, 0xcc, 0xe9, 0x7e, 0x17, 0x6e, 0x9d, 0x18, 0x76, 0xe4, 0xa6, 0x82, 0x1a, 0x3d, 0xc0, + 0x55, 0x2f, 0xbb, 0x86, 0x8b, 0xb4, 0x62, 0x5b, 0x30, 0xe7, 0xe8, 0x5a, 0x2f, 0xa8, 0x59, 0x27, + 0x28, 0x76, 0x3e, 0x68, 0x7c, 0x29, 0x41, 0x25, 0x62, 0xa8, 0xa4, 0x08, 0xd9, 0xb6, 0xda, 0xdc, + 0x1d, 0xc8, 0x37, 0x08, 0x40, 0xae, 0x7f, 0xb0, 0xd7, 0x55, 0xda, 0xdc, 0x87, 0x1c, 0x1d, 0x76, + 0x7a, 0xcd, 0xb6, 0xd2, 0x96, 0x53, 0xa4, 0x00, 0x99, 0x4e, 0xaf, 0x3f, 0x90, 0xd3, 0x0c, 0xde, + 0x6a, 0x76, 0x5b, 0x4a, 0x47, 0x69, 0xcb, 0x19, 0x46, 0xd1, 0xea, 0xf4, 0xfa, 0x4a, 0x5b, 0xce, + 0x32, 0x8f, 0xa4, 0x2a, 0x5d, 0xe5, 0x99, 0xd2, 0x96, 0x73, 0x0c, 0xad, 0xf7, 0xa8, 0xdf, 0xeb, + 0x28, 0x03, 0x45, 0xce, 0x33, 0xf2, 0x67, 0x4d, 0xb5, 0x2b, 0x17, 0x48, 0x15, 0x00, 0x77, 0xd3, + 0x70, 0x5c, 0x24, 0x37, 0xa1, 0xa6, 0x2a, 0xcd, 0xf6, 0x73, 0xad, 0xb5, 0xdf, 0xec, 0x74, 0x94, + 0xee, 0x9e, 0x22, 0x03, 0x73, 0x67, 0xaa, 0xd2, 0x52, 0x95, 0xe6, 0x40, 0x69, 0xcb, 0x25, 0xb2, + 0x06, 0x2b, 0xaa, 0xf2, 0xf4, 0x48, 0xe9, 0x0f, 0x42, 0x58, 0xe5, 0xc6, 0x1f, 0xa5, 0x60, 0x0d, + 0x23, 0x9d, 0x6b, 0xd9, 0xb4, 0x63, 0xb0, 0x14, 0x88, 0xe7, 0x8c, 0xe4, 0x37, 0x20, 0x2f, 0xca, + 0x49, 0xe1, 0xe3, 0xee, 0x7a, 0x06, 0x8a, 0x58, 0xcc, 0xed, 0x30, 0xc2, 0x03, 0xf3, 0xc4, 0x52, + 0x39, 0x9e, 0xea, 0x11, 0xb0, 0x22, 0x76, 0x38, 0xb3, 0x31, 0xa6, 0x2d, 0x9d, 0xb5, 0x96, 0x04, + 0x25, 0x2a, 0xdc, 0xb7, 0xa1, 0xc6, 0xa3, 0x33, 0x3b, 0x9e, 0x36, 0xa5, 0xae, 0x5e, 0x4f, 0xa3, + 0xb7, 0x58, 0x15, 0x87, 0xf1, 0xcf, 0xce, 0x3c, 0xae, 0x5a, 0x39, 0x09, 0x0f, 0x99, 0xf4, 0x78, + 0x02, 0x99, 0x41, 0x0d, 0xe2, 0x83, 0x4b, 0x0a, 0xe3, 0x7f, 0xce, 0x42, 0x25, 0xb2, 0x68, 0x2c, + 0x43, 0x91, 0xe2, 0x19, 0x4a, 0x24, 0x3d, 0x48, 0xc5, 0xd2, 0x83, 0x48, 0x7e, 0x98, 0x8e, 0xe5, + 0x87, 0xd1, 0xdc, 0x21, 0xf3, 0x7f, 0xcf, 0x1d, 0xb2, 0xd7, 0xc9, 0x1d, 0xd0, 0xa6, 0xe9, 0xf0, + 0x85, 0x76, 0x82, 0xd2, 0x33, 0x87, 0xaf, 0xd1, 0x6b, 0xa3, 0x4d, 0xd3, 0xe1, 0x8b, 0x5d, 0x0f, + 0x1a, 0x24, 0x19, 0x27, 0x94, 0x8a, 0x94, 0x9c, 0x27, 0x19, 0xbb, 0x94, 0x86, 0x92, 0x0c, 0x36, + 0xcb, 0x33, 0x70, 0x91, 0x64, 0xb0, 0x69, 0x3f, 0x19, 0xe3, 0xf2, 0x28, 0x86, 0x92, 0x31, 0x9e, + 0xc6, 0xbf, 0x07, 0xd5, 0xa9, 0x61, 0x1a, 0xd3, 0xd9, 0x54, 0x94, 0xa7, 0xe8, 0x68, 0xb3, 0x6a, + 0x45, 0x40, 0x79, 0x75, 0xca, 0x22, 0x3d, 0x2b, 0xd2, 0x5e, 0x51, 0x5b, 0x73, 0x4f, 0x6d, 0xea, + 0x9c, 0x5a, 0x13, 0x9e, 0xd2, 0x64, 0x55, 0x59, 0x4c, 0x0c, 0x3c, 0x78, 0x2c, 0xf1, 0x29, 0xc7, + 0x13, 0x9f, 0x48, 0xd2, 0x54, 0x89, 0x25, 0x4d, 0xdf, 0x82, 0x4d, 0x74, 0x5b, 0x31, 0x77, 0xa7, + 0x4d, 0x8c, 0xa9, 0xe1, 0x0a, 0xa7, 0x77, 0x8b, 0x61, 0x44, 0x1c, 0xa4, 0xd3, 0x61, 0xd3, 0xa4, + 0x09, 0x77, 0x92, 0x9d, 0xbb, 0x47, 0xcf, 0xdd, 0xe0, 0xa6, 0x93, 0xe0, 0xb9, 0xc5, 0x12, 0xe8, + 0x40, 0x23, 0x52, 0x41, 0x37, 0x2a, 0x7c, 0x21, 0x89, 0x8a, 0x86, 0x79, 0xd1, 0xc0, 0x55, 0xad, + 0x84, 0x5d, 0xd5, 0x3f, 0xe6, 0xa0, 0xe6, 0xab, 0xb3, 0xa8, 0x67, 0x76, 0xe7, 0x8d, 0x8a, 0x5b, + 0x78, 0xa2, 0x51, 0x85, 0xd2, 0x98, 0x98, 0x79, 0x7d, 0x16, 0xcd, 0x65, 0xee, 0xc6, 0xa9, 0xf9, + 0x76, 0x3b, 0x0c, 0x37, 0x92, 0xce, 0x3c, 0x84, 0x62, 0xd0, 0x63, 0xe1, 0xe6, 0x5c, 0x8b, 0xe5, + 0x41, 0x41, 0x06, 0xe0, 0x37, 0x5e, 0x92, 0x92, 0xa0, 0x4c, 0x72, 0x12, 0xa4, 0x02, 0xe1, 0x92, + 0xb5, 0xe9, 0x90, 0x1a, 0xaf, 0xe8, 0x35, 0xb2, 0x1b, 0xa4, 0x57, 0x39, 0x39, 0x7a, 0xa2, 0x68, + 0xca, 0x92, 0xbb, 0x42, 0xca, 0x12, 0x77, 0x82, 0xf9, 0xeb, 0x3a, 0xc1, 0x84, 0x5c, 0xa5, 0x90, + 0x98, 0xab, 0x28, 0x50, 0x66, 0x44, 0xfa, 0x44, 0xe3, 0x72, 0x29, 0xa2, 0x5c, 0x1a, 0x17, 0xc8, + 0x45, 0x45, 0x54, 0x2e, 0x99, 0x92, 0x1d, 0x0c, 0xde, 0x7e, 0xca, 0xd3, 0x98, 0x41, 0xd1, 0xd7, + 0x82, 0x70, 0xac, 0xac, 0x40, 0x91, 0xc7, 0xc7, 0x83, 0xee, 0x9e, 0x2c, 0x61, 0xf0, 0x3b, 0xea, + 0x76, 0xd9, 0x20, 0x45, 0x64, 0x28, 0x1f, 0x36, 0xd5, 0xc1, 0x41, 0xb3, 0xa3, 0x89, 0xa8, 0xe9, + 0xc5, 0xcf, 0x0c, 0xfb, 0xaf, 0xdd, 0xeb, 0x2a, 0x72, 0x36, 0x12, 0x49, 0x73, 0xd1, 0x98, 0x97, + 0x6f, 0x3c, 0x81, 0x52, 0xe8, 0x92, 0x24, 0x0f, 0xe9, 0xae, 0xf2, 0x4c, 0xbe, 0x41, 0x6a, 0x50, + 0xf2, 0x96, 0x66, 0x00, 0xdc, 0x58, 0xf9, 0x9d, 0xc3, 0x03, 0x15, 0xc3, 0x74, 0x11, 0xb2, 0x18, + 0x82, 0x79, 0x9c, 0xf6, 0xd6, 0x93, 0x33, 0x8d, 0x1f, 0x49, 0xb0, 0xe2, 0xdb, 0xea, 0x53, 0x16, + 0xe8, 0x0c, 0xcb, 0x8c, 0x95, 0xa1, 0x52, 0xbc, 0x0c, 0x0d, 0x17, 0xb0, 0xa9, 0x68, 0x01, 0xcb, + 0x6a, 0xe3, 0xd3, 0x99, 0xf9, 0x42, 0x54, 0xa8, 0xa2, 0x17, 0x8c, 0x20, 0x5e, 0xa1, 0xae, 0x42, + 0xd6, 0xb4, 0xcc, 0x21, 0x15, 0xc5, 0x2d, 0x1f, 0x90, 0xaf, 0x41, 0x85, 0x7e, 0x81, 0x5d, 0x01, + 0xdd, 0x74, 0xce, 0xa9, 0x8d, 0x8a, 0x5d, 0x54, 0xcb, 0x1c, 0xd8, 0x44, 0x58, 0xe3, 0xf7, 0xd3, + 0xb0, 0x71, 0x68, 0x5b, 0xd6, 0x49, 0xef, 0x44, 0xa5, 0x67, 0x13, 0x63, 0xa8, 0xbb, 0xd4, 0x3f, + 0x3b, 0xf9, 0x2e, 0x14, 0x5e, 0x8a, 0xf3, 0x0b, 0xd3, 0xaf, 0x7b, 0x06, 0x18, 0xbf, 0x5f, 0xb8, + 0x8a, 0xf1, 0x68, 0xc8, 0x6f, 0x41, 0x35, 0x96, 0x58, 0x2e, 0x13, 0xe1, 0x2b, 0x91, 0x64, 0x31, + 0xea, 0x87, 0xd3, 0x31, 0x3f, 0x9c, 0xa0, 0xfb, 0x99, 0x44, 0xdd, 0xdf, 0x86, 0x12, 0xf2, 0x39, + 0xc2, 0x13, 0x60, 0x20, 0xce, 0x11, 0xf2, 0x38, 0x54, 0x19, 0xf1, 0x33, 0xe7, 0x96, 0xe9, 0xa5, + 0x79, 0xf5, 0x93, 0xd7, 0x25, 0x89, 0x55, 0x59, 0xf9, 0x84, 0x2a, 0xab, 0xf1, 0x7b, 0xb0, 0xce, + 0x8c, 0x6e, 0x8e, 0xa7, 0x4e, 0x34, 0x69, 0x90, 0x62, 0x49, 0xc3, 0x9e, 0xd7, 0x98, 0xf0, 0xf8, + 0xed, 0xd4, 0x53, 0xe8, 0x6f, 0xb6, 0x84, 0x90, 0x30, 0x18, 0xce, 0xaf, 0xaa, 0x56, 0x91, 0xcc, + 0x1f, 0x37, 0xfe, 0x35, 0x05, 0xb7, 0x2e, 0xc0, 0x5d, 0x7c, 0x82, 0xa8, 0x4e, 0xa7, 0xe2, 0x3a, + 0x7d, 0x85, 0x56, 0xe2, 0x7b, 0x50, 0xf5, 0x4e, 0xaf, 0x85, 0x73, 0xb0, 0x8a, 0x07, 0xe5, 0x61, + 0xff, 0x33, 0x28, 0x06, 0x97, 0xcc, 0xe2, 0x25, 0x2f, 0xd4, 0x44, 0x35, 0x40, 0x65, 0xbe, 0x55, + 0xec, 0xb6, 0xbc, 0x28, 0xbd, 0x73, 0xa2, 0x24, 0x93, 0x1d, 0x59, 0xfe, 0x22, 0x47, 0xf6, 0x46, + 0x82, 0x8d, 0x16, 0xc6, 0xde, 0x48, 0xde, 0x29, 0xd2, 0xde, 0xcb, 0x78, 0xba, 0xa8, 0xd1, 0x35, + 0xf7, 0x04, 0x95, 0x4e, 0x78, 0x82, 0xfa, 0x7f, 0x7a, 0x1c, 0xfa, 0xcf, 0x14, 0x6c, 0x5c, 0x98, + 0xe5, 0x5f, 0x96, 0x0f, 0xcf, 0x5d, 0x24, 0x95, 0x70, 0x91, 0x0f, 0x58, 0x1e, 0xc7, 0x2f, 0x72, + 0xe6, 0xbf, 0xcc, 0x70, 0x07, 0x58, 0x13, 0x13, 0x87, 0xde, 0xb3, 0xcc, 0x87, 0x40, 0x22, 0xb8, + 0xdc, 0x5b, 0x66, 0xbc, 0xa4, 0xcf, 0x47, 0xe6, 0x3e, 0x33, 0xce, 0xa2, 0xab, 0x45, 0x7d, 0x69, + 0x9e, 0x45, 0x49, 0x1d, 0x87, 0xdc, 0x12, 0x8b, 0xc5, 0x3b, 0x0e, 0x11, 0x96, 0xe7, 0xe3, 0x2c, + 0xff, 0xfb, 0x0c, 0xd4, 0x19, 0xcb, 0xf7, 0x2d, 0xc7, 0x0d, 0x3d, 0x09, 0x71, 0x8e, 0x2f, 0x68, + 0x40, 0xff, 0x92, 0xb9, 0xfd, 0x1c, 0xd6, 0xe3, 0x4c, 0xd2, 0x1c, 0x83, 0x85, 0xac, 0x65, 0xf8, + 0x7e, 0x33, 0xca, 0xaa, 0x3e, 0x5b, 0x80, 0xf4, 0x45, 0x07, 0x23, 0xbc, 0xb4, 0x6b, 0x2d, 0x25, + 0x02, 0x39, 0xba, 0xee, 0xc0, 0x22, 0x4d, 0x2f, 0x65, 0xcd, 0x63, 0x6a, 0xf4, 0x8d, 0x50, 0x49, + 0x9b, 0xc4, 0xf9, 0x9d, 0x3e, 0x9d, 0xd0, 0x58, 0x33, 0x2e, 0xae, 0x60, 0x85, 0xeb, 0x2a, 0x58, + 0x44, 0x21, 0x8a, 0x71, 0x85, 0xd8, 0x81, 0x52, 0x68, 0x73, 0x96, 0xbb, 0x34, 0x3b, 0x1d, 0xde, + 0x5e, 0x68, 0xb6, 0x06, 0x07, 0xbf, 0xad, 0xc8, 0x52, 0xa8, 0x71, 0x90, 0x6a, 0xfc, 0x22, 0xd4, + 0x93, 0x70, 0xd8, 0x7d, 0xc8, 0x37, 0xe3, 0x05, 0xfc, 0xf6, 0x25, 0xb7, 0x0d, 0xea, 0xf7, 0x03, + 0xa8, 0x8c, 0xa9, 0x49, 0x6d, 0xdd, 0xbd, 0xce, 0xb3, 0x93, 0x47, 0x2a, 0x1c, 0xec, 0xa5, 0xc9, + 0x7e, 0x38, 0xcb, 0xbf, 0x4e, 0xc9, 0xfe, 0xb7, 0x29, 0xa8, 0xab, 0x54, 0x1f, 0xbd, 0xde, 0xb5, + 0x6c, 0x3f, 0x6a, 0x5c, 0xd1, 0x5b, 0x2d, 0xac, 0xde, 0xa3, 0x61, 0x30, 0x9d, 0xf0, 0xc2, 0x10, + 0x7e, 0xdb, 0xc8, 0xcc, 0xbd, 0x6d, 0x84, 0xed, 0x36, 0x1b, 0xb5, 0xdb, 0xb7, 0x16, 0xc0, 0x16, + 0xba, 0x15, 0x76, 0x3d, 0xc3, 0xd1, 0x18, 0xba, 0xc1, 0x1f, 0x9d, 0x0b, 0x6a, 0xc1, 0x70, 0x54, + 0x1c, 0x37, 0xfe, 0x4b, 0x62, 0x7c, 0x43, 0x36, 0xcd, 0xa7, 0xb5, 0x0f, 0xaf, 0x9e, 0x22, 0x86, + 0x12, 0xc3, 0xf8, 0xb5, 0x52, 0x6f, 0xe5, 0x5a, 0xe9, 0x85, 0xd7, 0xca, 0x44, 0xaf, 0x15, 0x15, + 0x69, 0x36, 0x2a, 0xd2, 0xc6, 0x1f, 0xa4, 0x60, 0xc3, 0x6b, 0x71, 0xcd, 0x5f, 0xfa, 0x13, 0xc8, + 0x89, 0xfc, 0xf1, 0xb2, 0x2b, 0x0b, 0xbc, 0x45, 0xe9, 0x3d, 0x3a, 0x0a, 0xc7, 0x9a, 0x78, 0xf5, + 0x67, 0x7a, 0xb9, 0x60, 0x8d, 0x94, 0xf3, 0xbc, 0xc8, 0x2c, 0xe4, 0x45, 0x76, 0x11, 0x2f, 0x72, + 0x71, 0x5e, 0x48, 0x40, 0x76, 0x2d, 0x7b, 0x48, 0x39, 0xf2, 0xdb, 0xb0, 0x98, 0x0d, 0x28, 0xe8, + 0x33, 0xf7, 0x34, 0xfc, 0x5c, 0xc7, 0xc6, 0x97, 0x3e, 0x2e, 0x37, 0xfe, 0x44, 0x82, 0x9c, 0x4a, + 0x9d, 0xd9, 0xc4, 0x25, 0xef, 0x43, 0x66, 0x68, 0x8d, 0xf8, 0x13, 0x66, 0xd5, 0x7f, 0x59, 0xf1, + 0x85, 0x66, 0x8d, 0xa8, 0x8a, 0x08, 0xa4, 0x0e, 0xf9, 0x29, 0x75, 0x1c, 0x7d, 0x4c, 0x3d, 0xd6, + 0x8b, 0xe1, 0xfc, 0xb3, 0x79, 0xfa, 0xba, 0xcf, 0xe6, 0x8d, 0x7f, 0xca, 0x40, 0x95, 0xf3, 0xc7, + 0x7f, 0xfe, 0x59, 0x98, 0xe6, 0x45, 0xdf, 0xa3, 0x05, 0x93, 0xd2, 0xf7, 0x8a, 0xa1, 0xf7, 0xe8, + 0xcb, 0x3b, 0x83, 0x0f, 0x61, 0x7d, 0x64, 0x9d, 0x9b, 0x13, 0x4b, 0x1f, 0x89, 0xa7, 0x6a, 0xef, + 0x55, 0x8b, 0x3f, 0x12, 0xaf, 0x7a, 0xb3, 0xfc, 0xc1, 0x5a, 0x3c, 0xb7, 0x7d, 0x02, 0xab, 0x5c, + 0x0d, 0x62, 0x34, 0xe2, 0x81, 0xde, 0x16, 0x52, 0x0e, 0x51, 0xa0, 0xa8, 0x91, 0x82, 0x09, 0x2c, + 0xe7, 0x89, 0x9a, 0x41, 0x98, 0xc8, 0xba, 0x20, 0x8b, 0xe9, 0xa0, 0x68, 0x5a, 0xa6, 0x8b, 0x51, + 0xe5, 0xd4, 0x7e, 0xd9, 0x74, 0x3f, 0xb2, 0x5e, 0xb8, 0x93, 0x51, 0x0b, 0x30, 0xfd, 0x8f, 0x0d, + 0x7c, 0x0e, 0x84, 0x9d, 0x6c, 0x11, 0xcf, 0x48, 0xbc, 0xb9, 0x56, 0xe0, 0x6c, 0x31, 0x71, 0xc1, + 0xc5, 0xc3, 0xf8, 0xbc, 0x77, 0x21, 0xb6, 0x0d, 0x61, 0x77, 0xc2, 0x75, 0x25, 0xbf, 0x59, 0x69, + 0x99, 0x12, 0xd6, 0xaf, 0x3e, 0x2f, 0xea, 0xd0, 0x94, 0x93, 0xaa, 0xd4, 0xc6, 0xcf, 0x25, 0x58, + 0x8f, 0x6a, 0x93, 0xdf, 0x6f, 0xff, 0xb5, 0xb9, 0x47, 0xc5, 0x35, 0x5f, 0xf5, 0x23, 0x04, 0xc1, + 0x63, 0x62, 0xc7, 0xff, 0x46, 0x85, 0x77, 0xe0, 0x1e, 0x26, 0x13, 0x88, 0x1d, 0x76, 0xe2, 0x80, + 0xd8, 0x67, 0x2c, 0xbb, 0xb0, 0x9e, 0x8c, 0x41, 0x6a, 0x50, 0x7a, 0xd4, 0x1b, 0xec, 0x6b, 0xe2, + 0x5d, 0x03, 0xfb, 0x36, 0xcf, 0x9a, 0x07, 0x03, 0xad, 0x73, 0xd0, 0x1f, 0xf0, 0x67, 0x0e, 0x55, + 0x79, 0xac, 0xb4, 0x06, 0x98, 0x89, 0xfc, 0x1b, 0xde, 0x91, 0x67, 0x14, 0x91, 0x83, 0x5c, 0x52, + 0x74, 0x6e, 0x43, 0x49, 0x08, 0xd0, 0x64, 0xe6, 0xcf, 0x4d, 0x5a, 0xe8, 0x67, 0x97, 0xd9, 0x7b, + 0x92, 0x3a, 0xa6, 0xdf, 0xb2, 0x3a, 0x66, 0x12, 0xd5, 0xb1, 0xf1, 0x37, 0x69, 0xb8, 0xe5, 0x31, + 0xe5, 0xed, 0x5e, 0xea, 0x7b, 0x5e, 0x46, 0x9a, 0x46, 0x11, 0xde, 0x8f, 0xb9, 0xbb, 0xd8, 0x66, + 0x42, 0xb4, 0x4c, 0x2e, 0x5e, 0x3e, 0xba, 0xe3, 0x2b, 0x01, 0xaf, 0x06, 0xd7, 0x93, 0xdb, 0x7d, + 0x9e, 0x98, 0xa3, 0xed, 0x96, 0x6c, 0xac, 0xdd, 0xd2, 0xe4, 0x4e, 0x7a, 0xf9, 0x9c, 0xa4, 0xe0, + 0x2c, 0xb0, 0x85, 0x7c, 0xa2, 0x2d, 0x68, 0x00, 0xc1, 0x6d, 0x08, 0x81, 0x6a, 0xab, 0xd7, 0x1d, + 0xa8, 0xcd, 0xd6, 0x40, 0xc3, 0xc7, 0x2c, 0xf9, 0x06, 0x59, 0x83, 0x95, 0x76, 0xef, 0x59, 0xb7, + 0xd3, 0x6b, 0xb6, 0xb5, 0x6e, 0x6f, 0xa0, 0x61, 0xcf, 0x4f, 0x22, 0x2b, 0x50, 0xf1, 0x9e, 0xb2, + 0x9a, 0x7b, 0xcd, 0x83, 0xae, 0x9c, 0x22, 0x37, 0xa1, 0xe6, 0x53, 0x8b, 0x94, 0x38, 0xdd, 0xf8, + 0xf3, 0x34, 0xac, 0xb5, 0x74, 0x73, 0x48, 0x27, 0x81, 0x5e, 0x5f, 0xad, 0x50, 0x5f, 0xd4, 0xfc, + 0x88, 0x65, 0x7d, 0xe9, 0x4b, 0xbe, 0x68, 0xc9, 0x2c, 0xfa, 0xa2, 0x25, 0x96, 0x14, 0x36, 0x21, + 0x67, 0x53, 0xdd, 0xb1, 0x4c, 0x64, 0x7d, 0xa0, 0x0c, 0x89, 0x97, 0x10, 0x50, 0x15, 0x09, 0x54, + 0x41, 0x18, 0x15, 0x60, 0xfe, 0x5a, 0x02, 0x8c, 0x04, 0xea, 0x42, 0x3c, 0x50, 0xab, 0x50, 0x0e, + 0x6f, 0x4c, 0x64, 0x28, 0xef, 0xf7, 0xfa, 0x4c, 0x66, 0x28, 0x11, 0xf9, 0x06, 0x13, 0x8f, 0x2f, + 0xb5, 0xdd, 0xe6, 0x41, 0x47, 0x96, 0x98, 0x70, 0x55, 0xa5, 0x3b, 0x50, 0x54, 0x1f, 0x0d, 0xdb, + 0xac, 0xbd, 0xc1, 0xbe, 0xa2, 0xca, 0xe9, 0xc6, 0x9f, 0x4a, 0x70, 0xd3, 0x4f, 0xb1, 0x1e, 0x5b, + 0xc7, 0xa1, 0xba, 0x97, 0x59, 0x4d, 0xb8, 0xee, 0x65, 0xe3, 0xa4, 0x4e, 0x48, 0xea, 0xad, 0x74, + 0x42, 0xe2, 0x89, 0x66, 0xe3, 0xbf, 0x53, 0xb0, 0x1a, 0x3d, 0x99, 0xf0, 0xd6, 0x0b, 0x8e, 0x76, + 0x07, 0xc0, 0x70, 0x9c, 0x59, 0xb4, 0xd1, 0xc3, 0x21, 0x6c, 0x7a, 0x0d, 0x72, 0x9f, 0x5b, 0xc7, + 0x81, 0xea, 0x64, 0x3f, 0xb7, 0x8e, 0x0f, 0xb0, 0x19, 0x7c, 0xa6, 0x0f, 0x5f, 0xb0, 0x92, 0x7b, + 0x66, 0x4f, 0xbc, 0x62, 0x42, 0x80, 0x8e, 0xec, 0x09, 0xf9, 0x0c, 0x6e, 0x79, 0x08, 0x7e, 0x1f, + 0x2c, 0xf2, 0xf9, 0xe2, 0x9a, 0x98, 0xf6, 0x7b, 0x7c, 0xbc, 0xc5, 0xc6, 0x34, 0x82, 0x9a, 0xa3, + 0xeb, 0x98, 0x34, 0x35, 0x47, 0xde, 0xc7, 0x04, 0xec, 0xc8, 0x27, 0x86, 0x69, 0x38, 0xa7, 0xda, + 0x88, 0xea, 0xa3, 0x89, 0x61, 0x2e, 0xa7, 0x5e, 0x2b, 0x9f, 0x5b, 0xc7, 0xbb, 0x48, 0xdf, 0x16, + 0xe4, 0x97, 0xe8, 0xd9, 0xcf, 0x24, 0x20, 0x31, 0xce, 0xb3, 0xe4, 0x70, 0x01, 0xdf, 0x03, 0xc6, + 0xa6, 0xc2, 0x8c, 0xfd, 0x94, 0x19, 0x15, 0xa3, 0x15, 0xd5, 0xe7, 0xed, 0xc4, 0x26, 0x2a, 0x5f, + 0x5e, 0x15, 0xa8, 0x44, 0x81, 0x92, 0x33, 0x3b, 0x9e, 0x1a, 0xd7, 0xe8, 0xb3, 0x01, 0x27, 0xbc, + 0x42, 0x9b, 0xed, 0xef, 0x24, 0x58, 0x4d, 0x3a, 0xc5, 0x55, 0x3e, 0x38, 0xbc, 0x4e, 0xbd, 0x9a, + 0xfc, 0x9c, 0xb0, 0xee, 0xf3, 0x87, 0x7b, 0x23, 0x8f, 0x05, 0xa8, 0xc6, 0x78, 0x7d, 0x6b, 0xe6, + 0xa2, 0xe2, 0x14, 0x98, 0x1a, 0x0f, 0x38, 0xa0, 0xf1, 0xd7, 0x12, 0x90, 0x36, 0x6d, 0x51, 0xe6, + 0x93, 0x26, 0x41, 0x5b, 0xf9, 0x5d, 0x48, 0xbd, 0x74, 0xea, 0x52, 0xe4, 0x93, 0xd9, 0x76, 0x50, + 0x36, 0xa5, 0x5e, 0x86, 0x4a, 0xfc, 0x54, 0xb8, 0xc4, 0x27, 0x90, 0x99, 0xcd, 0x7c, 0xa3, 0xc0, + 0xff, 0x89, 0x0c, 0xe9, 0xc0, 0x16, 0xd8, 0xbf, 0xe4, 0x5b, 0x50, 0xf0, 0x75, 0xf9, 0xf2, 0x0e, + 0x53, 0x86, 0xbf, 0x74, 0x0b, 0x35, 0x6e, 0xfc, 0x50, 0x02, 0x68, 0xff, 0x12, 0x1f, 0x6e, 0x16, + 0x15, 0xa6, 0x1f, 0x0c, 0xa1, 0x1c, 0x2e, 0x71, 0x48, 0x09, 0xf2, 0xfd, 0xa3, 0x56, 0x4b, 0xe9, + 0xf7, 0xe5, 0x1b, 0x64, 0x13, 0xd6, 0x59, 0xee, 0xd5, 0x1c, 0x1c, 0xa9, 0x8a, 0xb6, 0xdb, 0x53, + 0x9f, 0x34, 0x07, 0x9a, 0xa2, 0xaa, 0x3d, 0x55, 0x96, 0xc8, 0x06, 0xac, 0xb5, 0x7a, 0x4f, 0x0e, + 0x8f, 0x06, 0x8a, 0xd6, 0x6c, 0xb7, 0x55, 0xa5, 0xdf, 0x17, 0x53, 0x29, 0x96, 0xb7, 0xa1, 0x8b, + 0x15, 0x80, 0xd5, 0x07, 0x7f, 0x05, 0x50, 0xde, 0xc3, 0x28, 0x4c, 0xed, 0x57, 0xc6, 0x90, 0x92, + 0x6f, 0xc3, 0xcd, 0x3e, 0xaa, 0x6b, 0xf4, 0x93, 0x87, 0x0b, 0x72, 0x88, 0xcd, 0x4a, 0x90, 0x9d, + 0x30, 0x15, 0xf9, 0x0e, 0x54, 0xfa, 0xd4, 0x0c, 0x1e, 0x1c, 0xc8, 0x9d, 0x10, 0xdd, 0xfc, 0x9b, + 0x43, 0x9c, 0xbc, 0xcb, 0x2c, 0x3c, 0xde, 0x4b, 0x27, 0x77, 0xfd, 0x9a, 0xfb, 0x82, 0x36, 0xfb, + 0xe6, 0x05, 0xa7, 0x23, 0x2d, 0x58, 0x99, 0x6b, 0x03, 0x91, 0x6d, 0x7f, 0xcf, 0xe4, 0x06, 0x51, + 0xfc, 0x50, 0xbf, 0x0e, 0xa5, 0x50, 0x4d, 0x4c, 0x36, 0xbc, 0xbd, 0xe6, 0xea, 0xe4, 0x38, 0xe1, + 0x63, 0x58, 0x99, 0x6b, 0xac, 0x91, 0xcb, 0x5a, 0x6e, 0x9b, 0xab, 0xb1, 0x5e, 0x18, 0x6f, 0xdd, + 0xa9, 0x20, 0xab, 0xd4, 0xb5, 0x0d, 0xfa, 0x8a, 0x7a, 0xdd, 0x77, 0x72, 0xe9, 0xe7, 0x37, 0x9b, + 0xef, 0xc4, 0xf9, 0x12, 0xf9, 0x9e, 0x67, 0xc0, 0xd6, 0x8c, 0x36, 0x7b, 0x2e, 0x67, 0x4e, 0x80, + 0x70, 0x41, 0x9b, 0xa8, 0xcd, 0x78, 0x1e, 0x6b, 0xa7, 0xf8, 0x47, 0xbd, 0xb0, 0xd1, 0x12, 0xe7, + 0x5d, 0x07, 0x56, 0xb9, 0x1a, 0xc6, 0x2a, 0xed, 0xe4, 0x0a, 0x68, 0xf3, 0xce, 0xc2, 0x3a, 0x87, + 0x7c, 0x1f, 0x36, 0xc4, 0x79, 0x77, 0x2d, 0x3b, 0x9e, 0xad, 0xdf, 0x89, 0xde, 0x28, 0x36, 0xbd, + 0xb9, 0xb5, 0x38, 0xff, 0x26, 0x2d, 0x58, 0x55, 0xe9, 0x99, 0x65, 0xbb, 0xbb, 0xba, 0x31, 0x19, + 0x58, 0x6d, 0x51, 0x87, 0x92, 0x77, 0x16, 0xa5, 0x6a, 0xf1, 0xeb, 0x3e, 0xf5, 0x0b, 0xa4, 0x30, + 0xcf, 0x1f, 0x5b, 0xc7, 0x64, 0x33, 0xde, 0x70, 0x0a, 0xb2, 0xa1, 0xcd, 0xdb, 0x89, 0x73, 0xe2, + 0xce, 0x6d, 0xa8, 0x73, 0x0e, 0x26, 0xc5, 0xcc, 0x64, 0xc2, 0xd9, 0x64, 0xee, 0x60, 0xdf, 0x85, + 0x55, 0xfc, 0x55, 0xd4, 0x1e, 0x75, 0x23, 0x3f, 0x0e, 0xf2, 0x3c, 0x79, 0xf0, 0x93, 0xa9, 0x4d, + 0xaf, 0x2f, 0x13, 0xc1, 0x7b, 0x04, 0x1b, 0x11, 0x7a, 0xa6, 0xf2, 0x8e, 0xaa, 0x9b, 0x2f, 0xba, + 0xf4, 0x3c, 0x69, 0x11, 0x12, 0xfe, 0x51, 0x85, 0x58, 0xa3, 0x0d, 0xb7, 0x93, 0xd7, 0xc0, 0x9f, + 0x58, 0x5c, 0x75, 0x95, 0x5d, 0xb8, 0x15, 0x59, 0x25, 0xf8, 0x7d, 0x46, 0xd2, 0x0a, 0x5e, 0x9f, + 0x6f, 0xee, 0x57, 0x1c, 0x8f, 0x7e, 0xf3, 0x17, 0x3f, 0xdf, 0x92, 0xbe, 0xfc, 0x6a, 0x4b, 0xfa, + 0xf1, 0x57, 0x5b, 0xd2, 0xcf, 0xbe, 0xda, 0x92, 0xfe, 0xec, 0xcd, 0x96, 0xf4, 0x0f, 0x6f, 0xb6, + 0xa4, 0x2f, 0xdf, 0x6c, 0x49, 0x50, 0x31, 0xac, 0x9d, 0x63, 0xf7, 0xc4, 0xe1, 0xe4, 0x8f, 0x00, + 0x7d, 0xeb, 0x21, 0x0b, 0x44, 0x87, 0xd2, 0xf7, 0xf9, 0xaf, 0xd7, 0x8e, 0x73, 0x18, 0x98, 0x3e, + 0xfd, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0e, 0xe1, 0x26, 0x3a, 0xe7, 0x36, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -5406,6 +5423,15 @@ func (m *Contract) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if len(m.Token) > 0 { + i -= len(m.Token) + copy(dAtA[i:], m.Token) + i = encodeVarintGuard(dAtA, i, uint64(len(m.Token))) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x92 + } n12, err12 := github_com_tron_us_protobuf_types.StdTimeMarshalTo(m.FirstChallengeSuccess, dAtA[i-github_com_tron_us_protobuf_types.SizeOfStdTime(m.FirstChallengeSuccess):]) if err12 != nil { return 0, err12 @@ -5636,6 +5662,15 @@ func (m *FileStoreMeta) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if len(m.Token) > 0 { + i -= len(m.Token) + copy(dAtA[i:], m.Token) + i = encodeVarintGuard(dAtA, i, uint64(len(m.Token))) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x8a + } if m.CheckFrequencyWarn != 0 { i = encodeVarintGuard(dAtA, i, uint64(m.CheckFrequencyWarn)) i-- @@ -7833,8 +7868,9 @@ func NewPopulatedContract(r randyGuard, easy bool) *Contract { } v28 := github_com_tron_us_protobuf_types.NewPopulatedStdTime(r, easy) this.FirstChallengeSuccess = *v28 + this.Token = string(randStringGuard(r)) if !easy && r.Intn(10) != 0 { - this.XXX_unrecognized = randUnrecognizedGuard(r, 18) + this.XXX_unrecognized = randUnrecognizedGuard(r, 19) } return this } @@ -7918,8 +7954,9 @@ func NewPopulatedFileStoreMeta(r randyGuard, easy bool) *FileStoreMeta { if r.Intn(2) == 0 { this.CheckFrequencyWarn *= -1 } + this.Token = string(randStringGuard(r)) if !easy && r.Intn(10) != 0 { - this.XXX_unrecognized = randUnrecognizedGuard(r, 17) + this.XXX_unrecognized = randUnrecognizedGuard(r, 18) } return this } @@ -8884,6 +8921,10 @@ func (m *Contract) Size() (n int) { } l = github_com_tron_us_protobuf_types.SizeOfStdTime(m.FirstChallengeSuccess) n += 2 + l + sovGuard(uint64(l)) + l = len(m.Token) + if l > 0 { + n += 2 + l + sovGuard(uint64(l)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -8977,6 +9018,10 @@ func (m *FileStoreMeta) Size() (n int) { if m.CheckFrequencyWarn != 0 { n += 2 + sovGuard(uint64(m.CheckFrequencyWarn)) } + l = len(m.Token) + if l > 0 { + n += 2 + l + sovGuard(uint64(l)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -12226,6 +12271,38 @@ func (m *Contract) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 18: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Token", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGuard + } + 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 ErrInvalidLengthGuard + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGuard + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Token = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGuard(dAtA[iNdEx:]) @@ -12874,6 +12951,38 @@ func (m *FileStoreMeta) Unmarshal(dAtA []byte) error { break } } + case 17: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Token", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGuard + } + 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 ErrInvalidLengthGuard + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGuard + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Token = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGuard(dAtA[iNdEx:]) diff --git a/protos/guard/guard.proto b/protos/guard/guard.proto index dbc5c58..aec00ae 100644 --- a/protos/guard/guard.proto +++ b/protos/guard/guard.proto @@ -217,6 +217,7 @@ message Contract { (gogoproto.nullable) = false, (gogoproto.stdtime) = true ]; + string token = 18; } message FileStoreListResponse { @@ -254,6 +255,7 @@ message FileStoreMeta { int32 warn_challenge_times_limit = 14; //reserve: indicate how many times warn challenge will take the contract to cancel status, renter cannot set it now, use 7 as default int32 success_challenge_times_limit = 15; //reserve: indicate how many times success will take the contract from warn status back to right, renter cannot set it now, use 1 as default int32 check_frequency_warn = 16; //reserve: check frequency in days while in warn status, renter cannot set it now, use 1 as default + string token = 17; } message FileStoreStatus { From 930e447fc49e263c2a1ecdd537a6e26df849e6ef Mon Sep 17 00:00:00 2001 From: fish <920886811@163.com> Date: Mon, 5 Dec 2022 15:03:20 +0800 Subject: [PATCH 2/8] feat: add DoDailySignReportHandler of online --- js/protos/online/online_pb.js | 451 ++++++++++++++++++++-- protos/online/online.pb.go | 684 ++++++++++++++++++++++++++++++---- protos/online/online.proto | 17 +- 3 files changed, 1047 insertions(+), 105 deletions(-) diff --git a/js/protos/online/online_pb.js b/js/protos/online/online_pb.js index c4b84fa..17316e0 100644 --- a/js/protos/online/online_pb.js +++ b/js/protos/online/online_pb.js @@ -19,9 +19,11 @@ goog.object.extend(proto, github_com_tron$us_protobuf_gogoproto_gogo_pb); var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js'); goog.object.extend(proto, google_protobuf_timestamp_pb); goog.exportSymbol('proto.online.PayLoadInfo', null, global); +goog.exportSymbol('proto.online.ReqLatestSignReport', null, global); goog.exportSymbol('proto.online.ReqSignMetrics', null, global); goog.exportSymbol('proto.online.RespSignMetrics', null, global); goog.exportSymbol('proto.online.ResponseCode', null, global); +goog.exportSymbol('proto.online.Result', null, global); goog.exportSymbol('proto.online.SignedInfo', null, global); /** * Generated by JsPbCodeGenerator. @@ -33,16 +35,16 @@ goog.exportSymbol('proto.online.SignedInfo', null, global); * @extends {jspb.Message} * @constructor */ -proto.online.ReqSignMetrics = function(opt_data) { +proto.online.ReqLatestSignReport = function(opt_data) { jspb.Message.initialize(this, opt_data, 0, -1, null, null); }; -goog.inherits(proto.online.ReqSignMetrics, jspb.Message); +goog.inherits(proto.online.ReqLatestSignReport, jspb.Message); if (goog.DEBUG && !COMPILED) { /** * @public * @override */ - proto.online.ReqSignMetrics.displayName = 'proto.online.ReqSignMetrics'; + proto.online.ReqLatestSignReport.displayName = 'proto.online.ReqLatestSignReport'; } /** * Generated by JsPbCodeGenerator. @@ -107,6 +109,48 @@ if (goog.DEBUG && !COMPILED) { */ proto.online.SignedInfo.displayName = 'proto.online.SignedInfo'; } +/** + * Generated by JsPbCodeGenerator. + * @param {Array=} opt_data Optional initial data array, typically from a + * server response, or constructed directly in Javascript. The array is used + * in place and becomes part of the constructed object. It is not cloned. + * If no data is provided, the constructed object will be empty, but still + * valid. + * @extends {jspb.Message} + * @constructor + */ +proto.online.ReqSignMetrics = function(opt_data) { + jspb.Message.initialize(this, opt_data, 0, -1, null, null); +}; +goog.inherits(proto.online.ReqSignMetrics, jspb.Message); +if (goog.DEBUG && !COMPILED) { + /** + * @public + * @override + */ + proto.online.ReqSignMetrics.displayName = 'proto.online.ReqSignMetrics'; +} +/** + * Generated by JsPbCodeGenerator. + * @param {Array=} opt_data Optional initial data array, typically from a + * server response, or constructed directly in Javascript. The array is used + * in place and becomes part of the constructed object. It is not cloned. + * If no data is provided, the constructed object will be empty, but still + * valid. + * @extends {jspb.Message} + * @constructor + */ +proto.online.Result = function(opt_data) { + jspb.Message.initialize(this, opt_data, 0, -1, null, null); +}; +goog.inherits(proto.online.Result, jspb.Message); +if (goog.DEBUG && !COMPILED) { + /** + * @public + * @override + */ + proto.online.Result.displayName = 'proto.online.Result'; +} @@ -123,8 +167,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) { * http://goto/soy-param-migration * @return {!Object} */ -proto.online.ReqSignMetrics.prototype.toObject = function(opt_includeInstance) { - return proto.online.ReqSignMetrics.toObject(opt_includeInstance, this); +proto.online.ReqLatestSignReport.prototype.toObject = function(opt_includeInstance) { + return proto.online.ReqLatestSignReport.toObject(opt_includeInstance, this); }; @@ -133,11 +177,11 @@ proto.online.ReqSignMetrics.prototype.toObject = function(opt_includeInstance) { * @param {boolean|undefined} includeInstance Deprecated. Whether to include * the JSPB instance for transitional soy proto support: * http://goto/soy-param-migration - * @param {!proto.online.ReqSignMetrics} msg The msg instance to transform. + * @param {!proto.online.ReqLatestSignReport} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.ReqSignMetrics.toObject = function(includeInstance, msg) { +proto.online.ReqLatestSignReport.toObject = function(includeInstance, msg) { var f, obj = { publicKey: msg.getPublicKey_asB64(), signature: msg.getSignature_asB64(), @@ -155,23 +199,23 @@ proto.online.ReqSignMetrics.toObject = function(includeInstance, msg) { /** * Deserializes binary data (in protobuf wire format). * @param {jspb.ByteSource} bytes The bytes to deserialize. - * @return {!proto.online.ReqSignMetrics} + * @return {!proto.online.ReqLatestSignReport} */ -proto.online.ReqSignMetrics.deserializeBinary = function(bytes) { +proto.online.ReqLatestSignReport.deserializeBinary = function(bytes) { var reader = new jspb.BinaryReader(bytes); - var msg = new proto.online.ReqSignMetrics; - return proto.online.ReqSignMetrics.deserializeBinaryFromReader(msg, reader); + var msg = new proto.online.ReqLatestSignReport; + return proto.online.ReqLatestSignReport.deserializeBinaryFromReader(msg, reader); }; /** * Deserializes binary data (in protobuf wire format) from the * given reader into the given message object. - * @param {!proto.online.ReqSignMetrics} msg The message object to deserialize into. + * @param {!proto.online.ReqLatestSignReport} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. - * @return {!proto.online.ReqSignMetrics} + * @return {!proto.online.ReqLatestSignReport} */ -proto.online.ReqSignMetrics.deserializeBinaryFromReader = function(msg, reader) { +proto.online.ReqLatestSignReport.deserializeBinaryFromReader = function(msg, reader) { while (reader.nextField()) { if (reader.isEndGroup()) { break; @@ -203,9 +247,9 @@ proto.online.ReqSignMetrics.deserializeBinaryFromReader = function(msg, reader) * Serializes the message to binary data (in protobuf wire format). * @return {!Uint8Array} */ -proto.online.ReqSignMetrics.prototype.serializeBinary = function() { +proto.online.ReqLatestSignReport.prototype.serializeBinary = function() { var writer = new jspb.BinaryWriter(); - proto.online.ReqSignMetrics.serializeBinaryToWriter(this, writer); + proto.online.ReqLatestSignReport.serializeBinaryToWriter(this, writer); return writer.getResultBuffer(); }; @@ -213,11 +257,11 @@ proto.online.ReqSignMetrics.prototype.serializeBinary = function() { /** * Serializes the given message to binary data (in protobuf wire * format), writing to the given BinaryWriter. - * @param {!proto.online.ReqSignMetrics} message + * @param {!proto.online.ReqLatestSignReport} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.ReqSignMetrics.serializeBinaryToWriter = function(message, writer) { +proto.online.ReqLatestSignReport.serializeBinaryToWriter = function(message, writer) { var f = undefined; f = message.getPublicKey_asU8(); if (f.length > 0) { @@ -247,7 +291,7 @@ proto.online.ReqSignMetrics.serializeBinaryToWriter = function(message, writer) * optional bytes public_key = 1; * @return {!(string|Uint8Array)} */ -proto.online.ReqSignMetrics.prototype.getPublicKey = function() { +proto.online.ReqLatestSignReport.prototype.getPublicKey = function() { return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldWithDefault(this, 1, "")); }; @@ -257,7 +301,7 @@ proto.online.ReqSignMetrics.prototype.getPublicKey = function() { * This is a type-conversion wrapper around `getPublicKey()` * @return {string} */ -proto.online.ReqSignMetrics.prototype.getPublicKey_asB64 = function() { +proto.online.ReqLatestSignReport.prototype.getPublicKey_asB64 = function() { return /** @type {string} */ (jspb.Message.bytesAsB64( this.getPublicKey())); }; @@ -270,7 +314,7 @@ proto.online.ReqSignMetrics.prototype.getPublicKey_asB64 = function() { * This is a type-conversion wrapper around `getPublicKey()` * @return {!Uint8Array} */ -proto.online.ReqSignMetrics.prototype.getPublicKey_asU8 = function() { +proto.online.ReqLatestSignReport.prototype.getPublicKey_asU8 = function() { return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8( this.getPublicKey())); }; @@ -278,9 +322,9 @@ proto.online.ReqSignMetrics.prototype.getPublicKey_asU8 = function() { /** * @param {!(string|Uint8Array)} value - * @return {!proto.online.ReqSignMetrics} returns this + * @return {!proto.online.ReqLatestSignReport} returns this */ -proto.online.ReqSignMetrics.prototype.setPublicKey = function(value) { +proto.online.ReqLatestSignReport.prototype.setPublicKey = function(value) { return jspb.Message.setProto3BytesField(this, 1, value); }; @@ -289,7 +333,7 @@ proto.online.ReqSignMetrics.prototype.setPublicKey = function(value) { * optional bytes signature = 2; * @return {!(string|Uint8Array)} */ -proto.online.ReqSignMetrics.prototype.getSignature = function() { +proto.online.ReqLatestSignReport.prototype.getSignature = function() { return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldWithDefault(this, 2, "")); }; @@ -299,7 +343,7 @@ proto.online.ReqSignMetrics.prototype.getSignature = function() { * This is a type-conversion wrapper around `getSignature()` * @return {string} */ -proto.online.ReqSignMetrics.prototype.getSignature_asB64 = function() { +proto.online.ReqLatestSignReport.prototype.getSignature_asB64 = function() { return /** @type {string} */ (jspb.Message.bytesAsB64( this.getSignature())); }; @@ -312,7 +356,7 @@ proto.online.ReqSignMetrics.prototype.getSignature_asB64 = function() { * This is a type-conversion wrapper around `getSignature()` * @return {!Uint8Array} */ -proto.online.ReqSignMetrics.prototype.getSignature_asU8 = function() { +proto.online.ReqLatestSignReport.prototype.getSignature_asU8 = function() { return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8( this.getSignature())); }; @@ -320,9 +364,9 @@ proto.online.ReqSignMetrics.prototype.getSignature_asU8 = function() { /** * @param {!(string|Uint8Array)} value - * @return {!proto.online.ReqSignMetrics} returns this + * @return {!proto.online.ReqLatestSignReport} returns this */ -proto.online.ReqSignMetrics.prototype.setSignature = function(value) { +proto.online.ReqLatestSignReport.prototype.setSignature = function(value) { return jspb.Message.setProto3BytesField(this, 2, value); }; @@ -331,7 +375,7 @@ proto.online.ReqSignMetrics.prototype.setSignature = function(value) { * optional bytes payload = 3; * @return {!(string|Uint8Array)} */ -proto.online.ReqSignMetrics.prototype.getPayload = function() { +proto.online.ReqLatestSignReport.prototype.getPayload = function() { return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldWithDefault(this, 3, "")); }; @@ -341,7 +385,7 @@ proto.online.ReqSignMetrics.prototype.getPayload = function() { * This is a type-conversion wrapper around `getPayload()` * @return {string} */ -proto.online.ReqSignMetrics.prototype.getPayload_asB64 = function() { +proto.online.ReqLatestSignReport.prototype.getPayload_asB64 = function() { return /** @type {string} */ (jspb.Message.bytesAsB64( this.getPayload())); }; @@ -354,7 +398,7 @@ proto.online.ReqSignMetrics.prototype.getPayload_asB64 = function() { * This is a type-conversion wrapper around `getPayload()` * @return {!Uint8Array} */ -proto.online.ReqSignMetrics.prototype.getPayload_asU8 = function() { +proto.online.ReqLatestSignReport.prototype.getPayload_asU8 = function() { return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8( this.getPayload())); }; @@ -362,9 +406,9 @@ proto.online.ReqSignMetrics.prototype.getPayload_asU8 = function() { /** * @param {!(string|Uint8Array)} value - * @return {!proto.online.ReqSignMetrics} returns this + * @return {!proto.online.ReqLatestSignReport} returns this */ -proto.online.ReqSignMetrics.prototype.setPayload = function(value) { +proto.online.ReqLatestSignReport.prototype.setPayload = function(value) { return jspb.Message.setProto3BytesField(this, 3, value); }; @@ -1203,6 +1247,347 @@ proto.online.SignedInfo.prototype.setSignedTime = function(value) { }; + + + +if (jspb.Message.GENERATE_TO_OBJECT) { +/** + * Creates an object representation of this proto. + * Field names that are reserved in JavaScript and will be renamed to pb_name. + * Optional fields that are not set will be set to undefined. + * To access a reserved field use, foo.pb_, eg, foo.pb_default. + * For the list of reserved names please see: + * net/proto2/compiler/js/internal/generator.cc#kKeyword. + * @param {boolean=} opt_includeInstance Deprecated. whether to include the + * JSPB instance for transitional soy proto support: + * http://goto/soy-param-migration + * @return {!Object} + */ +proto.online.ReqSignMetrics.prototype.toObject = function(opt_includeInstance) { + return proto.online.ReqSignMetrics.toObject(opt_includeInstance, this); +}; + + +/** + * Static version of the {@see toObject} method. + * @param {boolean|undefined} includeInstance Deprecated. Whether to include + * the JSPB instance for transitional soy proto support: + * http://goto/soy-param-migration + * @param {!proto.online.ReqSignMetrics} msg The msg instance to transform. + * @return {!Object} + * @suppress {unusedLocalVariables} f is only used for nested messages + */ +proto.online.ReqSignMetrics.toObject = function(includeInstance, msg) { + var f, obj = { + nodeId: jspb.Message.getFieldWithDefault(msg, 1, "") + }; + + if (includeInstance) { + obj.$jspbMessageInstance = msg; + } + return obj; +}; +} + + +/** + * Deserializes binary data (in protobuf wire format). + * @param {jspb.ByteSource} bytes The bytes to deserialize. + * @return {!proto.online.ReqSignMetrics} + */ +proto.online.ReqSignMetrics.deserializeBinary = function(bytes) { + var reader = new jspb.BinaryReader(bytes); + var msg = new proto.online.ReqSignMetrics; + return proto.online.ReqSignMetrics.deserializeBinaryFromReader(msg, reader); +}; + + +/** + * Deserializes binary data (in protobuf wire format) from the + * given reader into the given message object. + * @param {!proto.online.ReqSignMetrics} msg The message object to deserialize into. + * @param {!jspb.BinaryReader} reader The BinaryReader to use. + * @return {!proto.online.ReqSignMetrics} + */ +proto.online.ReqSignMetrics.deserializeBinaryFromReader = function(msg, reader) { + while (reader.nextField()) { + if (reader.isEndGroup()) { + break; + } + var field = reader.getFieldNumber(); + switch (field) { + case 1: + var value = /** @type {string} */ (reader.readString()); + msg.setNodeId(value); + break; + default: + reader.skipField(); + break; + } + } + return msg; +}; + + +/** + * Serializes the message to binary data (in protobuf wire format). + * @return {!Uint8Array} + */ +proto.online.ReqSignMetrics.prototype.serializeBinary = function() { + var writer = new jspb.BinaryWriter(); + proto.online.ReqSignMetrics.serializeBinaryToWriter(this, writer); + return writer.getResultBuffer(); +}; + + +/** + * Serializes the given message to binary data (in protobuf wire + * format), writing to the given BinaryWriter. + * @param {!proto.online.ReqSignMetrics} message + * @param {!jspb.BinaryWriter} writer + * @suppress {unusedLocalVariables} f is only used for nested messages + */ +proto.online.ReqSignMetrics.serializeBinaryToWriter = function(message, writer) { + var f = undefined; + f = message.getNodeId(); + if (f.length > 0) { + writer.writeString( + 1, + f + ); + } +}; + + +/** + * optional string node_id = 1; + * @return {string} + */ +proto.online.ReqSignMetrics.prototype.getNodeId = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, "")); +}; + + +/** + * @param {string} value + * @return {!proto.online.ReqSignMetrics} returns this + */ +proto.online.ReqSignMetrics.prototype.setNodeId = function(value) { + return jspb.Message.setProto3StringField(this, 1, value); +}; + + + + + +if (jspb.Message.GENERATE_TO_OBJECT) { +/** + * Creates an object representation of this proto. + * Field names that are reserved in JavaScript and will be renamed to pb_name. + * Optional fields that are not set will be set to undefined. + * To access a reserved field use, foo.pb_, eg, foo.pb_default. + * For the list of reserved names please see: + * net/proto2/compiler/js/internal/generator.cc#kKeyword. + * @param {boolean=} opt_includeInstance Deprecated. whether to include the + * JSPB instance for transitional soy proto support: + * http://goto/soy-param-migration + * @return {!Object} + */ +proto.online.Result.prototype.toObject = function(opt_includeInstance) { + return proto.online.Result.toObject(opt_includeInstance, this); +}; + + +/** + * Static version of the {@see toObject} method. + * @param {boolean|undefined} includeInstance Deprecated. Whether to include + * the JSPB instance for transitional soy proto support: + * http://goto/soy-param-migration + * @param {!proto.online.Result} msg The msg instance to transform. + * @return {!Object} + * @suppress {unusedLocalVariables} f is only used for nested messages + */ +proto.online.Result.toObject = function(includeInstance, msg) { + var f, obj = { + code: jspb.Message.getFieldWithDefault(msg, 1, 0), + message: jspb.Message.getFieldWithDefault(msg, 2, ""), + responseTime: (f = msg.getResponseTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f) + }; + + if (includeInstance) { + obj.$jspbMessageInstance = msg; + } + return obj; +}; +} + + +/** + * Deserializes binary data (in protobuf wire format). + * @param {jspb.ByteSource} bytes The bytes to deserialize. + * @return {!proto.online.Result} + */ +proto.online.Result.deserializeBinary = function(bytes) { + var reader = new jspb.BinaryReader(bytes); + var msg = new proto.online.Result; + return proto.online.Result.deserializeBinaryFromReader(msg, reader); +}; + + +/** + * Deserializes binary data (in protobuf wire format) from the + * given reader into the given message object. + * @param {!proto.online.Result} msg The message object to deserialize into. + * @param {!jspb.BinaryReader} reader The BinaryReader to use. + * @return {!proto.online.Result} + */ +proto.online.Result.deserializeBinaryFromReader = function(msg, reader) { + while (reader.nextField()) { + if (reader.isEndGroup()) { + break; + } + var field = reader.getFieldNumber(); + switch (field) { + case 1: + var value = /** @type {!proto.online.ResponseCode} */ (reader.readEnum()); + msg.setCode(value); + break; + case 2: + var value = /** @type {string} */ (reader.readString()); + msg.setMessage(value); + break; + case 3: + var value = new google_protobuf_timestamp_pb.Timestamp; + reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader); + msg.setResponseTime(value); + break; + default: + reader.skipField(); + break; + } + } + return msg; +}; + + +/** + * Serializes the message to binary data (in protobuf wire format). + * @return {!Uint8Array} + */ +proto.online.Result.prototype.serializeBinary = function() { + var writer = new jspb.BinaryWriter(); + proto.online.Result.serializeBinaryToWriter(this, writer); + return writer.getResultBuffer(); +}; + + +/** + * Serializes the given message to binary data (in protobuf wire + * format), writing to the given BinaryWriter. + * @param {!proto.online.Result} message + * @param {!jspb.BinaryWriter} writer + * @suppress {unusedLocalVariables} f is only used for nested messages + */ +proto.online.Result.serializeBinaryToWriter = function(message, writer) { + var f = undefined; + f = message.getCode(); + if (f !== 0.0) { + writer.writeEnum( + 1, + f + ); + } + f = message.getMessage(); + if (f.length > 0) { + writer.writeString( + 2, + f + ); + } + f = message.getResponseTime(); + if (f != null) { + writer.writeMessage( + 3, + f, + google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter + ); + } +}; + + +/** + * optional ResponseCode code = 1; + * @return {!proto.online.ResponseCode} + */ +proto.online.Result.prototype.getCode = function() { + return /** @type {!proto.online.ResponseCode} */ (jspb.Message.getFieldWithDefault(this, 1, 0)); +}; + + +/** + * @param {!proto.online.ResponseCode} value + * @return {!proto.online.Result} returns this + */ +proto.online.Result.prototype.setCode = function(value) { + return jspb.Message.setProto3EnumField(this, 1, value); +}; + + +/** + * optional string message = 2; + * @return {string} + */ +proto.online.Result.prototype.getMessage = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, "")); +}; + + +/** + * @param {string} value + * @return {!proto.online.Result} returns this + */ +proto.online.Result.prototype.setMessage = function(value) { + return jspb.Message.setProto3StringField(this, 2, value); +}; + + +/** + * optional google.protobuf.Timestamp response_time = 3; + * @return {?proto.google.protobuf.Timestamp} + */ +proto.online.Result.prototype.getResponseTime = function() { + return /** @type{?proto.google.protobuf.Timestamp} */ ( + jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 3)); +}; + + +/** + * @param {?proto.google.protobuf.Timestamp|undefined} value + * @return {!proto.online.Result} returns this +*/ +proto.online.Result.prototype.setResponseTime = function(value) { + return jspb.Message.setWrapperField(this, 3, value); +}; + + +/** + * Clears the message field making it undefined. + * @return {!proto.online.Result} returns this + */ +proto.online.Result.prototype.clearResponseTime = function() { + return this.setResponseTime(undefined); +}; + + +/** + * Returns whether this field is set. + * @return {boolean} + */ +proto.online.Result.prototype.hasResponseTime = function() { + return jspb.Message.getField(this, 3) != null; +}; + + /** * @enum {number} */ diff --git a/protos/online/online.pb.go b/protos/online/online.pb.go index fbfba7c..7e8dcb2 100644 --- a/protos/online/online.pb.go +++ b/protos/online/online.pb.go @@ -68,7 +68,7 @@ func (ResponseCode) EnumDescriptor() ([]byte, []int) { return fileDescriptor_ee5923c3111b600a, []int{0} } -type ReqSignMetrics struct { +type ReqLatestSignReport struct { PublicKey []byte `protobuf:"bytes,1,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty" pg:"public_key"` Signature []byte `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty" pg:"signature"` Payload []byte `protobuf:"bytes,3,opt,name=payload,proto3" json:"payload,omitempty" pg:"payload"` @@ -77,18 +77,18 @@ type ReqSignMetrics struct { XXX_sizecache int32 `json:"-" pg:"-"` } -func (m *ReqSignMetrics) Reset() { *m = ReqSignMetrics{} } -func (m *ReqSignMetrics) String() string { return proto.CompactTextString(m) } -func (*ReqSignMetrics) ProtoMessage() {} -func (*ReqSignMetrics) Descriptor() ([]byte, []int) { +func (m *ReqLatestSignReport) Reset() { *m = ReqLatestSignReport{} } +func (m *ReqLatestSignReport) String() string { return proto.CompactTextString(m) } +func (*ReqLatestSignReport) ProtoMessage() {} +func (*ReqLatestSignReport) Descriptor() ([]byte, []int) { return fileDescriptor_ee5923c3111b600a, []int{0} } -func (m *ReqSignMetrics) XXX_Unmarshal(b []byte) error { +func (m *ReqLatestSignReport) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *ReqSignMetrics) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *ReqLatestSignReport) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_ReqSignMetrics.Marshal(b, m, deterministic) + return xxx_messageInfo_ReqLatestSignReport.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -98,41 +98,41 @@ func (m *ReqSignMetrics) XXX_Marshal(b []byte, deterministic bool) ([]byte, erro return b[:n], nil } } -func (m *ReqSignMetrics) XXX_Merge(src proto.Message) { - xxx_messageInfo_ReqSignMetrics.Merge(m, src) +func (m *ReqLatestSignReport) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReqLatestSignReport.Merge(m, src) } -func (m *ReqSignMetrics) XXX_Size() int { +func (m *ReqLatestSignReport) XXX_Size() int { return m.Size() } -func (m *ReqSignMetrics) XXX_DiscardUnknown() { - xxx_messageInfo_ReqSignMetrics.DiscardUnknown(m) +func (m *ReqLatestSignReport) XXX_DiscardUnknown() { + xxx_messageInfo_ReqLatestSignReport.DiscardUnknown(m) } -var xxx_messageInfo_ReqSignMetrics proto.InternalMessageInfo +var xxx_messageInfo_ReqLatestSignReport proto.InternalMessageInfo -func (m *ReqSignMetrics) GetPublicKey() []byte { +func (m *ReqLatestSignReport) GetPublicKey() []byte { if m != nil { return m.PublicKey } return nil } -func (m *ReqSignMetrics) GetSignature() []byte { +func (m *ReqLatestSignReport) GetSignature() []byte { if m != nil { return m.Signature } return nil } -func (m *ReqSignMetrics) GetPayload() []byte { +func (m *ReqLatestSignReport) GetPayload() []byte { if m != nil { return m.Payload } return nil } -func (*ReqSignMetrics) XXX_MessageName() string { - return "online.ReqSignMetrics" +func (*ReqLatestSignReport) XXX_MessageName() string { + return "online.ReqLatestSignReport" } type PayLoadInfo struct { @@ -383,66 +383,194 @@ func (m *SignedInfo) GetSignedTime() uint32 { func (*SignedInfo) XXX_MessageName() string { return "online.SignedInfo" } + +type ReqSignMetrics struct { + NodeId string `protobuf:"bytes,1,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty" pg:"node_id"` + XXX_NoUnkeyedLiteral struct{} `json:"-" pg:"-"` + XXX_unrecognized []byte `json:"-" pg:"-"` + XXX_sizecache int32 `json:"-" pg:"-"` +} + +func (m *ReqSignMetrics) Reset() { *m = ReqSignMetrics{} } +func (m *ReqSignMetrics) String() string { return proto.CompactTextString(m) } +func (*ReqSignMetrics) ProtoMessage() {} +func (*ReqSignMetrics) Descriptor() ([]byte, []int) { + return fileDescriptor_ee5923c3111b600a, []int{4} +} +func (m *ReqSignMetrics) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ReqSignMetrics) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ReqSignMetrics.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ReqSignMetrics) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReqSignMetrics.Merge(m, src) +} +func (m *ReqSignMetrics) XXX_Size() int { + return m.Size() +} +func (m *ReqSignMetrics) XXX_DiscardUnknown() { + xxx_messageInfo_ReqSignMetrics.DiscardUnknown(m) +} + +var xxx_messageInfo_ReqSignMetrics proto.InternalMessageInfo + +func (m *ReqSignMetrics) GetNodeId() string { + if m != nil { + return m.NodeId + } + return "" +} + +func (*ReqSignMetrics) XXX_MessageName() string { + return "online.ReqSignMetrics" +} + +type Result struct { + Code ResponseCode `protobuf:"varint,1,opt,name=code,proto3,enum=online.ResponseCode" json:"code,omitempty" pg:"code"` + Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty" pg:"message"` + ResponseTime time.Time `protobuf:"bytes,3,opt,name=response_time,json=responseTime,proto3,stdtime" json:"response_time" pg:"response_time"` + XXX_NoUnkeyedLiteral struct{} `json:"-" pg:"-"` + XXX_unrecognized []byte `json:"-" pg:"-"` + XXX_sizecache int32 `json:"-" pg:"-"` +} + +func (m *Result) Reset() { *m = Result{} } +func (m *Result) String() string { return proto.CompactTextString(m) } +func (*Result) ProtoMessage() {} +func (*Result) Descriptor() ([]byte, []int) { + return fileDescriptor_ee5923c3111b600a, []int{5} +} +func (m *Result) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Result) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Result.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Result) XXX_Merge(src proto.Message) { + xxx_messageInfo_Result.Merge(m, src) +} +func (m *Result) XXX_Size() int { + return m.Size() +} +func (m *Result) XXX_DiscardUnknown() { + xxx_messageInfo_Result.DiscardUnknown(m) +} + +var xxx_messageInfo_Result proto.InternalMessageInfo + +func (m *Result) GetCode() ResponseCode { + if m != nil { + return m.Code + } + return ResponseCode_SUCCESS +} + +func (m *Result) GetMessage() string { + if m != nil { + return m.Message + } + return "" +} + +func (m *Result) GetResponseTime() time.Time { + if m != nil { + return m.ResponseTime + } + return time.Time{} +} + +func (*Result) XXX_MessageName() string { + return "online.Result" +} func init() { proto.RegisterEnum("online.ResponseCode", ResponseCode_name, ResponseCode_value) golang_proto.RegisterEnum("online.ResponseCode", ResponseCode_name, ResponseCode_value) - proto.RegisterType((*ReqSignMetrics)(nil), "online.ReqSignMetrics") - golang_proto.RegisterType((*ReqSignMetrics)(nil), "online.ReqSignMetrics") + proto.RegisterType((*ReqLatestSignReport)(nil), "online.ReqLatestSignReport") + golang_proto.RegisterType((*ReqLatestSignReport)(nil), "online.ReqLatestSignReport") proto.RegisterType((*PayLoadInfo)(nil), "online.PayLoadInfo") golang_proto.RegisterType((*PayLoadInfo)(nil), "online.PayLoadInfo") proto.RegisterType((*RespSignMetrics)(nil), "online.RespSignMetrics") golang_proto.RegisterType((*RespSignMetrics)(nil), "online.RespSignMetrics") proto.RegisterType((*SignedInfo)(nil), "online.SignedInfo") golang_proto.RegisterType((*SignedInfo)(nil), "online.SignedInfo") + proto.RegisterType((*ReqSignMetrics)(nil), "online.ReqSignMetrics") + golang_proto.RegisterType((*ReqSignMetrics)(nil), "online.ReqSignMetrics") + proto.RegisterType((*Result)(nil), "online.Result") + golang_proto.RegisterType((*Result)(nil), "online.Result") } func init() { proto.RegisterFile("protos/online/online.proto", fileDescriptor_ee5923c3111b600a) } func init() { golang_proto.RegisterFile("protos/online/online.proto", fileDescriptor_ee5923c3111b600a) } var fileDescriptor_ee5923c3111b600a = []byte{ - // 670 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xcd, 0x6e, 0xd3, 0x4c, - 0x14, 0xed, 0xb4, 0x69, 0x5a, 0x5f, 0x37, 0x69, 0x3b, 0xea, 0xd7, 0xe6, 0x8b, 0xc0, 0x81, 0x48, - 0x48, 0x15, 0x52, 0x1d, 0x94, 0x6e, 0x58, 0x20, 0xa1, 0x34, 0x35, 0x10, 0x41, 0x9a, 0x68, 0x9c, - 0x6c, 0xd8, 0x58, 0x8e, 0x3d, 0x31, 0x16, 0x89, 0xc7, 0x78, 0x9c, 0x4a, 0x79, 0x0b, 0x96, 0x3c, - 0x02, 0x6f, 0xc0, 0x96, 0x65, 0x97, 0x3c, 0x01, 0xa0, 0x76, 0xcf, 0x33, 0xa0, 0x99, 0xb1, 0x13, - 0x23, 0xb1, 0x60, 0x93, 0xcc, 0x3d, 0xf7, 0xe7, 0xcc, 0x39, 0xd7, 0x36, 0xd4, 0xe3, 0x84, 0xa5, - 0x8c, 0xb7, 0x58, 0x34, 0x0b, 0x23, 0x9a, 0xfd, 0x99, 0x12, 0xc4, 0x65, 0x15, 0xd5, 0x9f, 0x06, - 0x61, 0xfa, 0x6e, 0x31, 0x31, 0x3d, 0x36, 0x6f, 0xa5, 0x09, 0x8b, 0xce, 0x16, 0xbc, 0x15, 0xb0, - 0xb3, 0x49, 0x3a, 0xe5, 0x67, 0x1e, 0x9b, 0xcf, 0x59, 0xd4, 0xca, 0xa6, 0x44, 0xcc, 0xa7, 0xf2, - 0x47, 0x4d, 0xa8, 0x3f, 0xf9, 0x4b, 0xa7, 0xcc, 0x4c, 0x16, 0xd3, 0x56, 0xc0, 0x02, 0x26, 0x03, - 0x79, 0xca, 0x3a, 0x1a, 0x01, 0x63, 0xc1, 0x8c, 0xae, 0xab, 0xd2, 0x70, 0x4e, 0x79, 0xea, 0xce, - 0x63, 0x55, 0xd0, 0x0c, 0xa0, 0x4a, 0xe8, 0x07, 0x3b, 0x0c, 0xa2, 0x3e, 0x4d, 0x93, 0xd0, 0xe3, - 0xf8, 0x3e, 0x40, 0xbc, 0x98, 0xcc, 0x42, 0xcf, 0x79, 0x4f, 0x97, 0x35, 0xf4, 0x00, 0x9d, 0xee, - 0x11, 0x4d, 0x21, 0xaf, 0xe9, 0x12, 0xdf, 0x03, 0x8d, 0x87, 0x41, 0xe4, 0xa6, 0x8b, 0x84, 0xd6, - 0x36, 0x55, 0x76, 0x05, 0xe0, 0x1a, 0xec, 0xc4, 0xee, 0x72, 0xc6, 0x5c, 0xbf, 0xb6, 0x25, 0x73, - 0x79, 0xd8, 0xfc, 0x85, 0x40, 0x1f, 0xba, 0xcb, 0x37, 0xcc, 0xf5, 0x7b, 0xd1, 0x94, 0xe1, 0x13, - 0xd8, 0x11, 0xca, 0x9c, 0xd0, 0x97, 0x1c, 0x1a, 0x29, 0x8b, 0xb0, 0xe7, 0x63, 0x03, 0x4a, 0xe2, - 0x24, 0x67, 0xeb, 0x6d, 0x30, 0xa5, 0xfe, 0x2b, 0xe6, 0x53, 0x22, 0x71, 0xfc, 0x0c, 0x0e, 0x66, - 0x2e, 0x4f, 0x1d, 0x41, 0x4a, 0x7d, 0x27, 0x8c, 0xa6, 0x4c, 0x72, 0xe9, 0x6d, 0x6c, 0x66, 0x7e, - 0xdb, 0x32, 0x25, 0x68, 0x48, 0x55, 0xd4, 0xae, 0x63, 0xfc, 0x08, 0xaa, 0xab, 0x6e, 0xa5, 0xa1, - 0x24, 0xd9, 0x2b, 0x79, 0x9d, 0xd2, 0xd1, 0x01, 0x4d, 0x96, 0x09, 0xbb, 0x6a, 0xdb, 0x72, 0x7a, - 0xdd, 0x54, 0x5e, 0x9a, 0xb9, 0x97, 0xe6, 0x28, 0xf7, 0xf2, 0x62, 0xf7, 0xe6, 0x7b, 0x63, 0xe3, - 0xe3, 0x8f, 0x06, 0x22, 0xbb, 0xa2, 0x4d, 0x24, 0x9a, 0x9f, 0x11, 0xec, 0x13, 0xca, 0xe3, 0xa2, - 0xb7, 0xa7, 0x50, 0xf2, 0x84, 0x36, 0xa1, 0xb8, 0xda, 0x3e, 0xca, 0xef, 0x2b, 0xca, 0x58, 0xc4, - 0x69, 0x57, 0xaa, 0x14, 0x15, 0xc2, 0xc8, 0x39, 0xe5, 0xdc, 0x0d, 0x94, 0x11, 0x1a, 0xc9, 0x43, - 0x7c, 0x0e, 0xfa, 0xbf, 0x49, 0x07, 0xbe, 0x96, 0xfd, 0xc7, 0xd6, 0x94, 0xe2, 0x35, 0xd0, 0xfc, - 0x82, 0x00, 0x0a, 0x1e, 0x61, 0x28, 0xc5, 0x94, 0x26, 0xd9, 0x5e, 0xe4, 0x19, 0x3f, 0x84, 0x3d, - 0x2f, 0xa1, 0x6e, 0x4a, 0x7d, 0xe5, 0x89, 0xb8, 0x54, 0x85, 0xe8, 0x19, 0x26, 0x04, 0x8b, 0x2b, - 0x5f, 0xd3, 0x84, 0x87, 0x2c, 0x92, 0x97, 0xd2, 0x48, 0x1e, 0xe2, 0x23, 0xd8, 0x8e, 0x58, 0xe4, - 0x29, 0xe6, 0x0a, 0x51, 0x81, 0x18, 0x39, 0x49, 0x53, 0xcf, 0x71, 0x7d, 0x3f, 0xa1, 0x9c, 0x4b, - 0x9b, 0x35, 0xa2, 0x0b, 0xac, 0xa3, 0x20, 0xdc, 0x58, 0x69, 0x95, 0xa4, 0x65, 0xd9, 0x9e, 0xe9, - 0x12, 0x9c, 0x8f, 0xaf, 0x61, 0xaf, 0x68, 0x1e, 0xd6, 0x61, 0xc7, 0x1e, 0x77, 0xbb, 0x96, 0x6d, - 0x1f, 0x6c, 0xe0, 0x3a, 0x1c, 0xdb, 0xbd, 0x97, 0x57, 0x9d, 0xd1, 0x98, 0x58, 0xce, 0x8b, 0x01, - 0xe9, 0x77, 0x46, 0x8e, 0x45, 0xc8, 0x80, 0x1c, 0x20, 0xfc, 0x3f, 0xfc, 0xd7, 0x1d, 0xf4, 0x87, - 0xe3, 0x91, 0xe5, 0x74, 0x2e, 0x2f, 0x89, 0x65, 0xdb, 0x59, 0x6a, 0x13, 0x1f, 0x42, 0x65, 0xd4, - 0xeb, 0x5b, 0x83, 0x71, 0x5e, 0xbd, 0x85, 0xf7, 0x41, 0x1f, 0x8c, 0x5e, 0x59, 0x24, 0x03, 0x8e, - 0xda, 0x63, 0xa8, 0x0c, 0xa4, 0xe1, 0x36, 0x4d, 0xae, 0x43, 0x8f, 0xe2, 0x4b, 0x38, 0x1c, 0xc7, - 0xbe, 0x9b, 0xd2, 0xe2, 0xba, 0x8f, 0xd7, 0x0b, 0x2e, 0xbe, 0x62, 0xf5, 0x93, 0xe2, 0xe2, 0x0b, - 0x89, 0x8b, 0xe7, 0x37, 0xb7, 0x06, 0xfa, 0x76, 0x6b, 0xa0, 0x9f, 0xb7, 0x06, 0xfa, 0x74, 0x67, - 0xa0, 0xaf, 0x77, 0x06, 0xba, 0xb9, 0x33, 0x10, 0x54, 0x43, 0x66, 0x8a, 0x2f, 0x44, 0xd6, 0x79, - 0xa1, 0x2b, 0xfa, 0xa1, 0x78, 0x16, 0x87, 0xe8, 0x6d, 0xf6, 0x6d, 0x99, 0x94, 0xe5, 0xc3, 0x79, - 0xfe, 0x3b, 0x00, 0x00, 0xff, 0xff, 0xc8, 0x75, 0xbf, 0xac, 0x88, 0x04, 0x00, 0x00, + // 760 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0xcb, 0x6e, 0xf3, 0x44, + 0x14, 0xfe, 0xe7, 0x6f, 0xfe, 0xb4, 0x39, 0x4e, 0xd2, 0x76, 0x5a, 0xda, 0x10, 0x20, 0x81, 0x48, + 0x48, 0x05, 0xa9, 0x0e, 0x4a, 0x37, 0x2c, 0x90, 0x50, 0x6e, 0xb4, 0x51, 0x9b, 0x26, 0x1a, 0x27, + 0x1b, 0x36, 0x96, 0x63, 0x4f, 0x8c, 0x85, 0xe3, 0x71, 0x3d, 0x93, 0x4a, 0x79, 0x0b, 0x76, 0xf0, + 0x08, 0xbc, 0x01, 0x5b, 0x96, 0x5d, 0xf2, 0x04, 0x80, 0x5a, 0x89, 0x25, 0xcf, 0x80, 0x66, 0xc6, + 0x6e, 0xcc, 0xa5, 0x12, 0x48, 0x6c, 0x92, 0x39, 0x97, 0xef, 0x9c, 0xf3, 0x7d, 0xc7, 0x3a, 0x50, + 0x8f, 0x13, 0x26, 0x18, 0x6f, 0xb3, 0x28, 0x0c, 0x22, 0x9a, 0xfe, 0x99, 0xca, 0x89, 0x8b, 0xda, + 0xaa, 0x7f, 0xea, 0x07, 0xe2, 0xab, 0xf5, 0xc2, 0x74, 0xd9, 0xaa, 0x2d, 0x12, 0x16, 0x9d, 0xaf, + 0x79, 0xdb, 0x67, 0xe7, 0x0b, 0xb1, 0xe4, 0xe7, 0x2e, 0x5b, 0xad, 0x58, 0xd4, 0x4e, 0xab, 0x44, + 0xcc, 0xa3, 0xea, 0x47, 0x57, 0xa8, 0x7f, 0xf2, 0x0f, 0x48, 0x15, 0x59, 0xac, 0x97, 0x6d, 0x9f, + 0xf9, 0x4c, 0x19, 0xea, 0x95, 0x22, 0x9a, 0x3e, 0x63, 0x7e, 0x48, 0xb7, 0x59, 0x22, 0x58, 0x51, + 0x2e, 0x9c, 0x55, 0xac, 0x13, 0x5a, 0x21, 0x1c, 0x11, 0x7a, 0x77, 0xe3, 0x08, 0xca, 0x85, 0x15, + 0xf8, 0x11, 0xa1, 0x31, 0x4b, 0x04, 0x7e, 0x0f, 0x20, 0x5e, 0x2f, 0xc2, 0xc0, 0xb5, 0xbf, 0xa6, + 0x9b, 0x1a, 0x7a, 0x1f, 0x9d, 0x95, 0x49, 0x49, 0x7b, 0xae, 0xe9, 0x06, 0xbf, 0x0b, 0x25, 0x1e, + 0xf8, 0x91, 0x23, 0xd6, 0x09, 0xad, 0xbd, 0xd6, 0xd1, 0x67, 0x07, 0xae, 0xc1, 0x6e, 0xec, 0x6c, + 0x42, 0xe6, 0x78, 0xb5, 0x1d, 0x15, 0xcb, 0xcc, 0xd6, 0xef, 0x08, 0x8c, 0xa9, 0xb3, 0xb9, 0x61, + 0x8e, 0x37, 0x8a, 0x96, 0x0c, 0x9f, 0xc2, 0xae, 0xa4, 0x67, 0x07, 0x9e, 0xea, 0x51, 0x22, 0x45, + 0x69, 0x8e, 0x3c, 0xdc, 0x80, 0x82, 0x7c, 0xa9, 0xda, 0x46, 0x07, 0x4c, 0x25, 0xc2, 0x2d, 0xf3, + 0x28, 0x51, 0x7e, 0xfc, 0x19, 0x1c, 0x84, 0x0e, 0x17, 0xb6, 0x6c, 0x4a, 0x3d, 0x3b, 0x88, 0x96, + 0x4c, 0xf5, 0x32, 0x3a, 0xd8, 0x4c, 0x45, 0xb7, 0x54, 0x48, 0xb6, 0x21, 0x55, 0x99, 0xbb, 0xb5, + 0xf1, 0x87, 0x50, 0x7d, 0x46, 0x6b, 0x0e, 0x05, 0xd5, 0xbd, 0x92, 0xe5, 0x69, 0x1e, 0x5d, 0x28, + 0xa9, 0x34, 0xa9, 0x59, 0xed, 0x8d, 0xaa, 0x5e, 0x37, 0xb5, 0xa0, 0x66, 0x26, 0xa8, 0x39, 0xcb, + 0x04, 0xed, 0xed, 0x3d, 0xfc, 0xdc, 0x7c, 0xf5, 0xcd, 0x2f, 0x4d, 0x44, 0xf6, 0x24, 0x4c, 0x06, + 0x5a, 0xdf, 0x23, 0xd8, 0x27, 0x94, 0xc7, 0xb2, 0xe8, 0x98, 0x8a, 0x24, 0x70, 0x39, 0x3e, 0x83, + 0x82, 0x2b, 0xb9, 0x49, 0xc6, 0xd5, 0xce, 0x71, 0x36, 0xaf, 0x4c, 0x63, 0x11, 0xa7, 0x7d, 0xc5, + 0x52, 0x66, 0x48, 0x21, 0x57, 0x94, 0x73, 0xc7, 0xd7, 0x42, 0x94, 0x48, 0x66, 0xe2, 0x0b, 0x30, + 0xfe, 0x1d, 0x75, 0xe0, 0x5b, 0xda, 0x7f, 0xda, 0x9a, 0x66, 0xbc, 0x75, 0xb4, 0x7e, 0x40, 0x00, + 0x39, 0x8d, 0x30, 0x14, 0x62, 0x4a, 0x93, 0x74, 0x2f, 0xea, 0x8d, 0x3f, 0x80, 0xb2, 0x9b, 0x50, + 0x47, 0x50, 0x4f, 0x6b, 0x22, 0x87, 0xaa, 0x10, 0x23, 0xf5, 0x49, 0xc2, 0x72, 0xe4, 0x7b, 0x9a, + 0xf0, 0x80, 0x45, 0x6a, 0xa8, 0x12, 0xc9, 0x4c, 0x7c, 0x0c, 0x6f, 0x22, 0x16, 0xb9, 0xba, 0x73, + 0x85, 0x68, 0x43, 0x96, 0x5c, 0x08, 0xe1, 0xda, 0x8e, 0xe7, 0x25, 0x94, 0x73, 0x25, 0x73, 0x89, + 0x18, 0xd2, 0xd7, 0xd5, 0x2e, 0xdc, 0x7c, 0xe6, 0xaa, 0x9a, 0x16, 0x15, 0x3c, 0xe5, 0xa5, 0x44, + 0xfe, 0x08, 0xaa, 0x84, 0xde, 0xe5, 0x25, 0x7e, 0xe9, 0xbb, 0x6a, 0x7d, 0x8b, 0xa0, 0x48, 0x28, + 0x5f, 0x87, 0xe2, 0x7f, 0x59, 0xc3, 0x08, 0x2a, 0x49, 0x9a, 0xaf, 0x87, 0xdb, 0xf9, 0x0f, 0x5f, + 0x49, 0x39, 0x83, 0xca, 0xe0, 0xc7, 0xf7, 0x50, 0xce, 0xb7, 0xc6, 0x06, 0xec, 0x5a, 0xf3, 0x7e, + 0x7f, 0x68, 0x59, 0x07, 0xaf, 0x70, 0x1d, 0x4e, 0xac, 0xd1, 0xe5, 0x6d, 0x77, 0x36, 0x27, 0x43, + 0xfb, 0x8b, 0x09, 0x19, 0x77, 0x67, 0xf6, 0x90, 0x90, 0x09, 0x39, 0x40, 0xf8, 0x6d, 0x78, 0xab, + 0x3f, 0x19, 0x4f, 0xe7, 0xb3, 0xa1, 0xdd, 0x1d, 0x0c, 0xc8, 0xd0, 0xb2, 0xd2, 0xd0, 0x6b, 0x7c, + 0x08, 0x95, 0xd9, 0x68, 0x3c, 0x9c, 0xcc, 0xb3, 0xec, 0x1d, 0xbc, 0x0f, 0xc6, 0x64, 0x76, 0x35, + 0x24, 0xa9, 0xe3, 0xb8, 0xf3, 0x1b, 0x82, 0xca, 0x44, 0x51, 0xb7, 0x68, 0x72, 0x1f, 0xb8, 0x14, + 0x0f, 0xe0, 0x70, 0x1e, 0x7b, 0x8e, 0xa0, 0x79, 0x45, 0x4f, 0xb6, 0xfa, 0xe4, 0x95, 0xae, 0x9f, + 0xe6, 0x75, 0xcb, 0x03, 0x7a, 0x50, 0x1b, 0xb0, 0x81, 0x13, 0x84, 0x9b, 0xed, 0x59, 0xb9, 0x72, + 0x22, 0x2f, 0xa4, 0xc9, 0x8b, 0xc5, 0xaa, 0xb9, 0x62, 0x72, 0x45, 0xd7, 0x70, 0x74, 0x49, 0xc5, + 0xdf, 0x8e, 0xd3, 0x3b, 0x39, 0xf8, 0x5f, 0x83, 0x2f, 0x0e, 0xd4, 0xfb, 0xfc, 0xe1, 0xb1, 0x81, + 0x7e, 0x7a, 0x6c, 0xa0, 0x5f, 0x1f, 0x1b, 0xe8, 0xbb, 0xa7, 0x06, 0xfa, 0xf1, 0xa9, 0x81, 0x1e, + 0x9e, 0x1a, 0x08, 0xaa, 0x01, 0x33, 0xe5, 0xf5, 0x4d, 0x91, 0x3d, 0x43, 0xeb, 0x31, 0x95, 0xcb, + 0x9b, 0xa2, 0x2f, 0xd3, 0xbb, 0xbd, 0x28, 0xaa, 0x6d, 0x5e, 0xfc, 0x11, 0x00, 0x00, 0xff, 0xff, + 0x61, 0x5a, 0xdc, 0x79, 0xe4, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -458,6 +586,8 @@ const _ = grpc.SupportPackageIsVersion4 // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. type OnlineServiceClient interface { UpdateSignMetrics(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*RespSignMetrics, error) + DoDailySignReportHandler(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*Result, error) + GetLatestSignReport(ctx context.Context, in *ReqLatestSignReport, opts ...grpc.CallOption) (*RespSignMetrics, error) } type onlineServiceClient struct { @@ -477,9 +607,29 @@ func (c *onlineServiceClient) UpdateSignMetrics(ctx context.Context, in *ReqSign return out, nil } +func (c *onlineServiceClient) DoDailySignReportHandler(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*Result, error) { + out := new(Result) + err := c.cc.Invoke(ctx, "/online.OnlineService/DoDailySignReportHandler", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *onlineServiceClient) GetLatestSignReport(ctx context.Context, in *ReqLatestSignReport, opts ...grpc.CallOption) (*RespSignMetrics, error) { + out := new(RespSignMetrics) + err := c.cc.Invoke(ctx, "/online.OnlineService/GetLatestSignReport", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // OnlineServiceServer is the server API for OnlineService service. type OnlineServiceServer interface { UpdateSignMetrics(context.Context, *ReqSignMetrics) (*RespSignMetrics, error) + DoDailySignReportHandler(context.Context, *ReqSignMetrics) (*Result, error) + GetLatestSignReport(context.Context, *ReqLatestSignReport) (*RespSignMetrics, error) } // UnimplementedOnlineServiceServer can be embedded to have forward compatible implementations. @@ -489,6 +639,12 @@ type UnimplementedOnlineServiceServer struct { func (*UnimplementedOnlineServiceServer) UpdateSignMetrics(ctx context.Context, req *ReqSignMetrics) (*RespSignMetrics, error) { return nil, status.Errorf(codes.Unimplemented, "method UpdateSignMetrics not implemented") } +func (*UnimplementedOnlineServiceServer) DoDailySignReportHandler(ctx context.Context, req *ReqSignMetrics) (*Result, error) { + return nil, status.Errorf(codes.Unimplemented, "method DoDailySignReportHandler not implemented") +} +func (*UnimplementedOnlineServiceServer) GetLatestSignReport(ctx context.Context, req *ReqLatestSignReport) (*RespSignMetrics, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetLatestSignReport not implemented") +} func RegisterOnlineServiceServer(s *grpc.Server, srv OnlineServiceServer) { s.RegisterService(&_OnlineService_serviceDesc, srv) @@ -512,6 +668,42 @@ func _OnlineService_UpdateSignMetrics_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } +func _OnlineService_DoDailySignReportHandler_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ReqSignMetrics) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(OnlineServiceServer).DoDailySignReportHandler(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/online.OnlineService/DoDailySignReportHandler", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(OnlineServiceServer).DoDailySignReportHandler(ctx, req.(*ReqSignMetrics)) + } + return interceptor(ctx, in, info, handler) +} + +func _OnlineService_GetLatestSignReport_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ReqLatestSignReport) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(OnlineServiceServer).GetLatestSignReport(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/online.OnlineService/GetLatestSignReport", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(OnlineServiceServer).GetLatestSignReport(ctx, req.(*ReqLatestSignReport)) + } + return interceptor(ctx, in, info, handler) +} + var _OnlineService_serviceDesc = grpc.ServiceDesc{ ServiceName: "online.OnlineService", HandlerType: (*OnlineServiceServer)(nil), @@ -520,12 +712,20 @@ var _OnlineService_serviceDesc = grpc.ServiceDesc{ MethodName: "UpdateSignMetrics", Handler: _OnlineService_UpdateSignMetrics_Handler, }, + { + MethodName: "DoDailySignReportHandler", + Handler: _OnlineService_DoDailySignReportHandler_Handler, + }, + { + MethodName: "GetLatestSignReport", + Handler: _OnlineService_GetLatestSignReport_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "protos/online/online.proto", } -func (m *ReqSignMetrics) Marshal() (dAtA []byte, err error) { +func (m *ReqLatestSignReport) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -535,12 +735,12 @@ func (m *ReqSignMetrics) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *ReqSignMetrics) MarshalTo(dAtA []byte) (int, error) { +func (m *ReqLatestSignReport) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *ReqSignMetrics) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *ReqLatestSignReport) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -767,6 +967,87 @@ func (m *SignedInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *ReqSignMetrics) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ReqSignMetrics) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ReqSignMetrics) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if len(m.NodeId) > 0 { + i -= len(m.NodeId) + copy(dAtA[i:], m.NodeId) + i = encodeVarintOnline(dAtA, i, uint64(len(m.NodeId))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *Result) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Result) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Result) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + n5, err5 := github_com_tron_us_protobuf_types.StdTimeMarshalTo(m.ResponseTime, dAtA[i-github_com_tron_us_protobuf_types.SizeOfStdTime(m.ResponseTime):]) + if err5 != nil { + return 0, err5 + } + i -= n5 + i = encodeVarintOnline(dAtA, i, uint64(n5)) + i-- + dAtA[i] = 0x1a + if len(m.Message) > 0 { + i -= len(m.Message) + copy(dAtA[i:], m.Message) + i = encodeVarintOnline(dAtA, i, uint64(len(m.Message))) + i-- + dAtA[i] = 0x12 + } + if m.Code != 0 { + i = encodeVarintOnline(dAtA, i, uint64(m.Code)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func encodeVarintOnline(dAtA []byte, offset int, v uint64) int { offset -= sovOnline(v) base := offset @@ -778,7 +1059,7 @@ func encodeVarintOnline(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) return base } -func (m *ReqSignMetrics) Size() (n int) { +func (m *ReqLatestSignReport) Size() (n int) { if m == nil { return 0 } @@ -892,13 +1173,50 @@ func (m *SignedInfo) Size() (n int) { return n } +func (m *ReqSignMetrics) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.NodeId) + if l > 0 { + n += 1 + l + sovOnline(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *Result) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Code != 0 { + n += 1 + sovOnline(uint64(m.Code)) + } + l = len(m.Message) + if l > 0 { + n += 1 + l + sovOnline(uint64(l)) + } + l = github_com_tron_us_protobuf_types.SizeOfStdTime(m.ResponseTime) + n += 1 + l + sovOnline(uint64(l)) + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func sovOnline(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } func sozOnline(x uint64) (n int) { return sovOnline(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } -func (m *ReqSignMetrics) Unmarshal(dAtA []byte) error { +func (m *ReqLatestSignReport) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -921,10 +1239,10 @@ func (m *ReqSignMetrics) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ReqSignMetrics: wiretype end group for non-group") + return fmt.Errorf("proto: ReqLatestSignReport: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ReqSignMetrics: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: ReqLatestSignReport: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -1657,6 +1975,230 @@ func (m *SignedInfo) Unmarshal(dAtA []byte) error { } return nil } +func (m *ReqSignMetrics) 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 ErrIntOverflowOnline + } + 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: ReqSignMetrics: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReqSignMetrics: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field NodeId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOnline + } + 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 ErrInvalidLengthOnline + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthOnline + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.NodeId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipOnline(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthOnline + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthOnline + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Result) 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 ErrIntOverflowOnline + } + 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: Result: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Result: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Code", wireType) + } + m.Code = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOnline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Code |= ResponseCode(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Message", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOnline + } + 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 ErrInvalidLengthOnline + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthOnline + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Message = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ResponseTime", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOnline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthOnline + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthOnline + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := github_com_tron_us_protobuf_types.StdTimeUnmarshal(&m.ResponseTime, dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipOnline(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthOnline + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthOnline + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipOnline(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 diff --git a/protos/online/online.proto b/protos/online/online.proto index 5d69a06..3fe6e25 100644 --- a/protos/online/online.proto +++ b/protos/online/online.proto @@ -22,9 +22,11 @@ import "google/protobuf/timestamp.proto"; service OnlineService { rpc UpdateSignMetrics(ReqSignMetrics) returns (RespSignMetrics); + rpc DoDailySignReportHandler(ReqSignMetrics) returns (Result); + rpc GetLatestSignReport(ReqLatestSignReport) returns (RespSignMetrics); } -message ReqSignMetrics { +message ReqLatestSignReport { bytes public_key = 1; bytes signature = 2; bytes payload = 3; @@ -64,3 +66,16 @@ message SignedInfo { string bttc_address = 5; uint32 signed_time = 6; } + +message ReqSignMetrics { + string node_id = 1; +} + +message Result { + ResponseCode code = 1; + string message = 2; + google.protobuf.Timestamp response_time = 3 [ + (gogoproto.nullable) = false, + (gogoproto.stdtime) = true + ]; +} From 37aa6cd790ff47143b5219460b3126153cdcc3d2 Mon Sep 17 00:00:00 2001 From: fish <920886811@163.com> Date: Mon, 5 Dec 2022 15:10:56 +0800 Subject: [PATCH 3/8] chore: mod ReqLatestSignReport --- protos/online/online.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protos/online/online.proto b/protos/online/online.proto index 3fe6e25..39e71af 100644 --- a/protos/online/online.proto +++ b/protos/online/online.proto @@ -26,7 +26,7 @@ service OnlineService { rpc GetLatestSignReport(ReqLatestSignReport) returns (RespSignMetrics); } -message ReqLatestSignReport { +message ReqSignMetrics { bytes public_key = 1; bytes signature = 2; bytes payload = 3; @@ -67,7 +67,7 @@ message SignedInfo { uint32 signed_time = 6; } -message ReqSignMetrics { +message ReqLatestSignReport { string node_id = 1; } From 89758042765cb9f66b6a4eb5b8d0364bd589eab6 Mon Sep 17 00:00:00 2001 From: fish <920886811@163.com> Date: Mon, 5 Dec 2022 15:14:34 +0800 Subject: [PATCH 4/8] chore: mod ReqLatestSignReport --- js/protos/online/online_pb.js | 108 +++++++++--------- protos/online/online.pb.go | 206 +++++++++++++++++----------------- 2 files changed, 157 insertions(+), 157 deletions(-) diff --git a/js/protos/online/online_pb.js b/js/protos/online/online_pb.js index 17316e0..f031655 100644 --- a/js/protos/online/online_pb.js +++ b/js/protos/online/online_pb.js @@ -35,16 +35,16 @@ goog.exportSymbol('proto.online.SignedInfo', null, global); * @extends {jspb.Message} * @constructor */ -proto.online.ReqLatestSignReport = function(opt_data) { +proto.online.ReqSignMetrics = function(opt_data) { jspb.Message.initialize(this, opt_data, 0, -1, null, null); }; -goog.inherits(proto.online.ReqLatestSignReport, jspb.Message); +goog.inherits(proto.online.ReqSignMetrics, jspb.Message); if (goog.DEBUG && !COMPILED) { /** * @public * @override */ - proto.online.ReqLatestSignReport.displayName = 'proto.online.ReqLatestSignReport'; + proto.online.ReqSignMetrics.displayName = 'proto.online.ReqSignMetrics'; } /** * Generated by JsPbCodeGenerator. @@ -119,16 +119,16 @@ if (goog.DEBUG && !COMPILED) { * @extends {jspb.Message} * @constructor */ -proto.online.ReqSignMetrics = function(opt_data) { +proto.online.ReqLatestSignReport = function(opt_data) { jspb.Message.initialize(this, opt_data, 0, -1, null, null); }; -goog.inherits(proto.online.ReqSignMetrics, jspb.Message); +goog.inherits(proto.online.ReqLatestSignReport, jspb.Message); if (goog.DEBUG && !COMPILED) { /** * @public * @override */ - proto.online.ReqSignMetrics.displayName = 'proto.online.ReqSignMetrics'; + proto.online.ReqLatestSignReport.displayName = 'proto.online.ReqLatestSignReport'; } /** * Generated by JsPbCodeGenerator. @@ -167,8 +167,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) { * http://goto/soy-param-migration * @return {!Object} */ -proto.online.ReqLatestSignReport.prototype.toObject = function(opt_includeInstance) { - return proto.online.ReqLatestSignReport.toObject(opt_includeInstance, this); +proto.online.ReqSignMetrics.prototype.toObject = function(opt_includeInstance) { + return proto.online.ReqSignMetrics.toObject(opt_includeInstance, this); }; @@ -177,11 +177,11 @@ proto.online.ReqLatestSignReport.prototype.toObject = function(opt_includeInstan * @param {boolean|undefined} includeInstance Deprecated. Whether to include * the JSPB instance for transitional soy proto support: * http://goto/soy-param-migration - * @param {!proto.online.ReqLatestSignReport} msg The msg instance to transform. + * @param {!proto.online.ReqSignMetrics} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.ReqLatestSignReport.toObject = function(includeInstance, msg) { +proto.online.ReqSignMetrics.toObject = function(includeInstance, msg) { var f, obj = { publicKey: msg.getPublicKey_asB64(), signature: msg.getSignature_asB64(), @@ -199,23 +199,23 @@ proto.online.ReqLatestSignReport.toObject = function(includeInstance, msg) { /** * Deserializes binary data (in protobuf wire format). * @param {jspb.ByteSource} bytes The bytes to deserialize. - * @return {!proto.online.ReqLatestSignReport} + * @return {!proto.online.ReqSignMetrics} */ -proto.online.ReqLatestSignReport.deserializeBinary = function(bytes) { +proto.online.ReqSignMetrics.deserializeBinary = function(bytes) { var reader = new jspb.BinaryReader(bytes); - var msg = new proto.online.ReqLatestSignReport; - return proto.online.ReqLatestSignReport.deserializeBinaryFromReader(msg, reader); + var msg = new proto.online.ReqSignMetrics; + return proto.online.ReqSignMetrics.deserializeBinaryFromReader(msg, reader); }; /** * Deserializes binary data (in protobuf wire format) from the * given reader into the given message object. - * @param {!proto.online.ReqLatestSignReport} msg The message object to deserialize into. + * @param {!proto.online.ReqSignMetrics} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. - * @return {!proto.online.ReqLatestSignReport} + * @return {!proto.online.ReqSignMetrics} */ -proto.online.ReqLatestSignReport.deserializeBinaryFromReader = function(msg, reader) { +proto.online.ReqSignMetrics.deserializeBinaryFromReader = function(msg, reader) { while (reader.nextField()) { if (reader.isEndGroup()) { break; @@ -247,9 +247,9 @@ proto.online.ReqLatestSignReport.deserializeBinaryFromReader = function(msg, rea * Serializes the message to binary data (in protobuf wire format). * @return {!Uint8Array} */ -proto.online.ReqLatestSignReport.prototype.serializeBinary = function() { +proto.online.ReqSignMetrics.prototype.serializeBinary = function() { var writer = new jspb.BinaryWriter(); - proto.online.ReqLatestSignReport.serializeBinaryToWriter(this, writer); + proto.online.ReqSignMetrics.serializeBinaryToWriter(this, writer); return writer.getResultBuffer(); }; @@ -257,11 +257,11 @@ proto.online.ReqLatestSignReport.prototype.serializeBinary = function() { /** * Serializes the given message to binary data (in protobuf wire * format), writing to the given BinaryWriter. - * @param {!proto.online.ReqLatestSignReport} message + * @param {!proto.online.ReqSignMetrics} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.ReqLatestSignReport.serializeBinaryToWriter = function(message, writer) { +proto.online.ReqSignMetrics.serializeBinaryToWriter = function(message, writer) { var f = undefined; f = message.getPublicKey_asU8(); if (f.length > 0) { @@ -291,7 +291,7 @@ proto.online.ReqLatestSignReport.serializeBinaryToWriter = function(message, wri * optional bytes public_key = 1; * @return {!(string|Uint8Array)} */ -proto.online.ReqLatestSignReport.prototype.getPublicKey = function() { +proto.online.ReqSignMetrics.prototype.getPublicKey = function() { return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldWithDefault(this, 1, "")); }; @@ -301,7 +301,7 @@ proto.online.ReqLatestSignReport.prototype.getPublicKey = function() { * This is a type-conversion wrapper around `getPublicKey()` * @return {string} */ -proto.online.ReqLatestSignReport.prototype.getPublicKey_asB64 = function() { +proto.online.ReqSignMetrics.prototype.getPublicKey_asB64 = function() { return /** @type {string} */ (jspb.Message.bytesAsB64( this.getPublicKey())); }; @@ -314,7 +314,7 @@ proto.online.ReqLatestSignReport.prototype.getPublicKey_asB64 = function() { * This is a type-conversion wrapper around `getPublicKey()` * @return {!Uint8Array} */ -proto.online.ReqLatestSignReport.prototype.getPublicKey_asU8 = function() { +proto.online.ReqSignMetrics.prototype.getPublicKey_asU8 = function() { return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8( this.getPublicKey())); }; @@ -322,9 +322,9 @@ proto.online.ReqLatestSignReport.prototype.getPublicKey_asU8 = function() { /** * @param {!(string|Uint8Array)} value - * @return {!proto.online.ReqLatestSignReport} returns this + * @return {!proto.online.ReqSignMetrics} returns this */ -proto.online.ReqLatestSignReport.prototype.setPublicKey = function(value) { +proto.online.ReqSignMetrics.prototype.setPublicKey = function(value) { return jspb.Message.setProto3BytesField(this, 1, value); }; @@ -333,7 +333,7 @@ proto.online.ReqLatestSignReport.prototype.setPublicKey = function(value) { * optional bytes signature = 2; * @return {!(string|Uint8Array)} */ -proto.online.ReqLatestSignReport.prototype.getSignature = function() { +proto.online.ReqSignMetrics.prototype.getSignature = function() { return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldWithDefault(this, 2, "")); }; @@ -343,7 +343,7 @@ proto.online.ReqLatestSignReport.prototype.getSignature = function() { * This is a type-conversion wrapper around `getSignature()` * @return {string} */ -proto.online.ReqLatestSignReport.prototype.getSignature_asB64 = function() { +proto.online.ReqSignMetrics.prototype.getSignature_asB64 = function() { return /** @type {string} */ (jspb.Message.bytesAsB64( this.getSignature())); }; @@ -356,7 +356,7 @@ proto.online.ReqLatestSignReport.prototype.getSignature_asB64 = function() { * This is a type-conversion wrapper around `getSignature()` * @return {!Uint8Array} */ -proto.online.ReqLatestSignReport.prototype.getSignature_asU8 = function() { +proto.online.ReqSignMetrics.prototype.getSignature_asU8 = function() { return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8( this.getSignature())); }; @@ -364,9 +364,9 @@ proto.online.ReqLatestSignReport.prototype.getSignature_asU8 = function() { /** * @param {!(string|Uint8Array)} value - * @return {!proto.online.ReqLatestSignReport} returns this + * @return {!proto.online.ReqSignMetrics} returns this */ -proto.online.ReqLatestSignReport.prototype.setSignature = function(value) { +proto.online.ReqSignMetrics.prototype.setSignature = function(value) { return jspb.Message.setProto3BytesField(this, 2, value); }; @@ -375,7 +375,7 @@ proto.online.ReqLatestSignReport.prototype.setSignature = function(value) { * optional bytes payload = 3; * @return {!(string|Uint8Array)} */ -proto.online.ReqLatestSignReport.prototype.getPayload = function() { +proto.online.ReqSignMetrics.prototype.getPayload = function() { return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldWithDefault(this, 3, "")); }; @@ -385,7 +385,7 @@ proto.online.ReqLatestSignReport.prototype.getPayload = function() { * This is a type-conversion wrapper around `getPayload()` * @return {string} */ -proto.online.ReqLatestSignReport.prototype.getPayload_asB64 = function() { +proto.online.ReqSignMetrics.prototype.getPayload_asB64 = function() { return /** @type {string} */ (jspb.Message.bytesAsB64( this.getPayload())); }; @@ -398,7 +398,7 @@ proto.online.ReqLatestSignReport.prototype.getPayload_asB64 = function() { * This is a type-conversion wrapper around `getPayload()` * @return {!Uint8Array} */ -proto.online.ReqLatestSignReport.prototype.getPayload_asU8 = function() { +proto.online.ReqSignMetrics.prototype.getPayload_asU8 = function() { return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8( this.getPayload())); }; @@ -406,9 +406,9 @@ proto.online.ReqLatestSignReport.prototype.getPayload_asU8 = function() { /** * @param {!(string|Uint8Array)} value - * @return {!proto.online.ReqLatestSignReport} returns this + * @return {!proto.online.ReqSignMetrics} returns this */ -proto.online.ReqLatestSignReport.prototype.setPayload = function(value) { +proto.online.ReqSignMetrics.prototype.setPayload = function(value) { return jspb.Message.setProto3BytesField(this, 3, value); }; @@ -1263,8 +1263,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) { * http://goto/soy-param-migration * @return {!Object} */ -proto.online.ReqSignMetrics.prototype.toObject = function(opt_includeInstance) { - return proto.online.ReqSignMetrics.toObject(opt_includeInstance, this); +proto.online.ReqLatestSignReport.prototype.toObject = function(opt_includeInstance) { + return proto.online.ReqLatestSignReport.toObject(opt_includeInstance, this); }; @@ -1273,11 +1273,11 @@ proto.online.ReqSignMetrics.prototype.toObject = function(opt_includeInstance) { * @param {boolean|undefined} includeInstance Deprecated. Whether to include * the JSPB instance for transitional soy proto support: * http://goto/soy-param-migration - * @param {!proto.online.ReqSignMetrics} msg The msg instance to transform. + * @param {!proto.online.ReqLatestSignReport} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.ReqSignMetrics.toObject = function(includeInstance, msg) { +proto.online.ReqLatestSignReport.toObject = function(includeInstance, msg) { var f, obj = { nodeId: jspb.Message.getFieldWithDefault(msg, 1, "") }; @@ -1293,23 +1293,23 @@ proto.online.ReqSignMetrics.toObject = function(includeInstance, msg) { /** * Deserializes binary data (in protobuf wire format). * @param {jspb.ByteSource} bytes The bytes to deserialize. - * @return {!proto.online.ReqSignMetrics} + * @return {!proto.online.ReqLatestSignReport} */ -proto.online.ReqSignMetrics.deserializeBinary = function(bytes) { +proto.online.ReqLatestSignReport.deserializeBinary = function(bytes) { var reader = new jspb.BinaryReader(bytes); - var msg = new proto.online.ReqSignMetrics; - return proto.online.ReqSignMetrics.deserializeBinaryFromReader(msg, reader); + var msg = new proto.online.ReqLatestSignReport; + return proto.online.ReqLatestSignReport.deserializeBinaryFromReader(msg, reader); }; /** * Deserializes binary data (in protobuf wire format) from the * given reader into the given message object. - * @param {!proto.online.ReqSignMetrics} msg The message object to deserialize into. + * @param {!proto.online.ReqLatestSignReport} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. - * @return {!proto.online.ReqSignMetrics} + * @return {!proto.online.ReqLatestSignReport} */ -proto.online.ReqSignMetrics.deserializeBinaryFromReader = function(msg, reader) { +proto.online.ReqLatestSignReport.deserializeBinaryFromReader = function(msg, reader) { while (reader.nextField()) { if (reader.isEndGroup()) { break; @@ -1333,9 +1333,9 @@ proto.online.ReqSignMetrics.deserializeBinaryFromReader = function(msg, reader) * Serializes the message to binary data (in protobuf wire format). * @return {!Uint8Array} */ -proto.online.ReqSignMetrics.prototype.serializeBinary = function() { +proto.online.ReqLatestSignReport.prototype.serializeBinary = function() { var writer = new jspb.BinaryWriter(); - proto.online.ReqSignMetrics.serializeBinaryToWriter(this, writer); + proto.online.ReqLatestSignReport.serializeBinaryToWriter(this, writer); return writer.getResultBuffer(); }; @@ -1343,11 +1343,11 @@ proto.online.ReqSignMetrics.prototype.serializeBinary = function() { /** * Serializes the given message to binary data (in protobuf wire * format), writing to the given BinaryWriter. - * @param {!proto.online.ReqSignMetrics} message + * @param {!proto.online.ReqLatestSignReport} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.ReqSignMetrics.serializeBinaryToWriter = function(message, writer) { +proto.online.ReqLatestSignReport.serializeBinaryToWriter = function(message, writer) { var f = undefined; f = message.getNodeId(); if (f.length > 0) { @@ -1363,16 +1363,16 @@ proto.online.ReqSignMetrics.serializeBinaryToWriter = function(message, writer) * optional string node_id = 1; * @return {string} */ -proto.online.ReqSignMetrics.prototype.getNodeId = function() { +proto.online.ReqLatestSignReport.prototype.getNodeId = function() { return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, "")); }; /** * @param {string} value - * @return {!proto.online.ReqSignMetrics} returns this + * @return {!proto.online.ReqLatestSignReport} returns this */ -proto.online.ReqSignMetrics.prototype.setNodeId = function(value) { +proto.online.ReqLatestSignReport.prototype.setNodeId = function(value) { return jspb.Message.setProto3StringField(this, 1, value); }; diff --git a/protos/online/online.pb.go b/protos/online/online.pb.go index 7e8dcb2..9e5e3a6 100644 --- a/protos/online/online.pb.go +++ b/protos/online/online.pb.go @@ -68,7 +68,7 @@ func (ResponseCode) EnumDescriptor() ([]byte, []int) { return fileDescriptor_ee5923c3111b600a, []int{0} } -type ReqLatestSignReport struct { +type ReqSignMetrics struct { PublicKey []byte `protobuf:"bytes,1,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty" pg:"public_key"` Signature []byte `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty" pg:"signature"` Payload []byte `protobuf:"bytes,3,opt,name=payload,proto3" json:"payload,omitempty" pg:"payload"` @@ -77,18 +77,18 @@ type ReqLatestSignReport struct { XXX_sizecache int32 `json:"-" pg:"-"` } -func (m *ReqLatestSignReport) Reset() { *m = ReqLatestSignReport{} } -func (m *ReqLatestSignReport) String() string { return proto.CompactTextString(m) } -func (*ReqLatestSignReport) ProtoMessage() {} -func (*ReqLatestSignReport) Descriptor() ([]byte, []int) { +func (m *ReqSignMetrics) Reset() { *m = ReqSignMetrics{} } +func (m *ReqSignMetrics) String() string { return proto.CompactTextString(m) } +func (*ReqSignMetrics) ProtoMessage() {} +func (*ReqSignMetrics) Descriptor() ([]byte, []int) { return fileDescriptor_ee5923c3111b600a, []int{0} } -func (m *ReqLatestSignReport) XXX_Unmarshal(b []byte) error { +func (m *ReqSignMetrics) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *ReqLatestSignReport) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *ReqSignMetrics) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_ReqLatestSignReport.Marshal(b, m, deterministic) + return xxx_messageInfo_ReqSignMetrics.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -98,41 +98,41 @@ func (m *ReqLatestSignReport) XXX_Marshal(b []byte, deterministic bool) ([]byte, return b[:n], nil } } -func (m *ReqLatestSignReport) XXX_Merge(src proto.Message) { - xxx_messageInfo_ReqLatestSignReport.Merge(m, src) +func (m *ReqSignMetrics) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReqSignMetrics.Merge(m, src) } -func (m *ReqLatestSignReport) XXX_Size() int { +func (m *ReqSignMetrics) XXX_Size() int { return m.Size() } -func (m *ReqLatestSignReport) XXX_DiscardUnknown() { - xxx_messageInfo_ReqLatestSignReport.DiscardUnknown(m) +func (m *ReqSignMetrics) XXX_DiscardUnknown() { + xxx_messageInfo_ReqSignMetrics.DiscardUnknown(m) } -var xxx_messageInfo_ReqLatestSignReport proto.InternalMessageInfo +var xxx_messageInfo_ReqSignMetrics proto.InternalMessageInfo -func (m *ReqLatestSignReport) GetPublicKey() []byte { +func (m *ReqSignMetrics) GetPublicKey() []byte { if m != nil { return m.PublicKey } return nil } -func (m *ReqLatestSignReport) GetSignature() []byte { +func (m *ReqSignMetrics) GetSignature() []byte { if m != nil { return m.Signature } return nil } -func (m *ReqLatestSignReport) GetPayload() []byte { +func (m *ReqSignMetrics) GetPayload() []byte { if m != nil { return m.Payload } return nil } -func (*ReqLatestSignReport) XXX_MessageName() string { - return "online.ReqLatestSignReport" +func (*ReqSignMetrics) XXX_MessageName() string { + return "online.ReqSignMetrics" } type PayLoadInfo struct { @@ -384,25 +384,25 @@ func (*SignedInfo) XXX_MessageName() string { return "online.SignedInfo" } -type ReqSignMetrics struct { +type ReqLatestSignReport struct { NodeId string `protobuf:"bytes,1,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty" pg:"node_id"` XXX_NoUnkeyedLiteral struct{} `json:"-" pg:"-"` XXX_unrecognized []byte `json:"-" pg:"-"` XXX_sizecache int32 `json:"-" pg:"-"` } -func (m *ReqSignMetrics) Reset() { *m = ReqSignMetrics{} } -func (m *ReqSignMetrics) String() string { return proto.CompactTextString(m) } -func (*ReqSignMetrics) ProtoMessage() {} -func (*ReqSignMetrics) Descriptor() ([]byte, []int) { +func (m *ReqLatestSignReport) Reset() { *m = ReqLatestSignReport{} } +func (m *ReqLatestSignReport) String() string { return proto.CompactTextString(m) } +func (*ReqLatestSignReport) ProtoMessage() {} +func (*ReqLatestSignReport) Descriptor() ([]byte, []int) { return fileDescriptor_ee5923c3111b600a, []int{4} } -func (m *ReqSignMetrics) XXX_Unmarshal(b []byte) error { +func (m *ReqLatestSignReport) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *ReqSignMetrics) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *ReqLatestSignReport) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_ReqSignMetrics.Marshal(b, m, deterministic) + return xxx_messageInfo_ReqLatestSignReport.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -412,27 +412,27 @@ func (m *ReqSignMetrics) XXX_Marshal(b []byte, deterministic bool) ([]byte, erro return b[:n], nil } } -func (m *ReqSignMetrics) XXX_Merge(src proto.Message) { - xxx_messageInfo_ReqSignMetrics.Merge(m, src) +func (m *ReqLatestSignReport) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReqLatestSignReport.Merge(m, src) } -func (m *ReqSignMetrics) XXX_Size() int { +func (m *ReqLatestSignReport) XXX_Size() int { return m.Size() } -func (m *ReqSignMetrics) XXX_DiscardUnknown() { - xxx_messageInfo_ReqSignMetrics.DiscardUnknown(m) +func (m *ReqLatestSignReport) XXX_DiscardUnknown() { + xxx_messageInfo_ReqLatestSignReport.DiscardUnknown(m) } -var xxx_messageInfo_ReqSignMetrics proto.InternalMessageInfo +var xxx_messageInfo_ReqLatestSignReport proto.InternalMessageInfo -func (m *ReqSignMetrics) GetNodeId() string { +func (m *ReqLatestSignReport) GetNodeId() string { if m != nil { return m.NodeId } return "" } -func (*ReqSignMetrics) XXX_MessageName() string { - return "online.ReqSignMetrics" +func (*ReqLatestSignReport) XXX_MessageName() string { + return "online.ReqLatestSignReport" } type Result struct { @@ -504,16 +504,16 @@ func (*Result) XXX_MessageName() string { func init() { proto.RegisterEnum("online.ResponseCode", ResponseCode_name, ResponseCode_value) golang_proto.RegisterEnum("online.ResponseCode", ResponseCode_name, ResponseCode_value) - proto.RegisterType((*ReqLatestSignReport)(nil), "online.ReqLatestSignReport") - golang_proto.RegisterType((*ReqLatestSignReport)(nil), "online.ReqLatestSignReport") + proto.RegisterType((*ReqSignMetrics)(nil), "online.ReqSignMetrics") + golang_proto.RegisterType((*ReqSignMetrics)(nil), "online.ReqSignMetrics") proto.RegisterType((*PayLoadInfo)(nil), "online.PayLoadInfo") golang_proto.RegisterType((*PayLoadInfo)(nil), "online.PayLoadInfo") proto.RegisterType((*RespSignMetrics)(nil), "online.RespSignMetrics") golang_proto.RegisterType((*RespSignMetrics)(nil), "online.RespSignMetrics") proto.RegisterType((*SignedInfo)(nil), "online.SignedInfo") golang_proto.RegisterType((*SignedInfo)(nil), "online.SignedInfo") - proto.RegisterType((*ReqSignMetrics)(nil), "online.ReqSignMetrics") - golang_proto.RegisterType((*ReqSignMetrics)(nil), "online.ReqSignMetrics") + proto.RegisterType((*ReqLatestSignReport)(nil), "online.ReqLatestSignReport") + golang_proto.RegisterType((*ReqLatestSignReport)(nil), "online.ReqLatestSignReport") proto.RegisterType((*Result)(nil), "online.Result") golang_proto.RegisterType((*Result)(nil), "online.Result") } @@ -522,55 +522,55 @@ func init() { proto.RegisterFile("protos/online/online.proto", fileDescriptor_ee func init() { golang_proto.RegisterFile("protos/online/online.proto", fileDescriptor_ee5923c3111b600a) } var fileDescriptor_ee5923c3111b600a = []byte{ - // 760 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0xcb, 0x6e, 0xf3, 0x44, - 0x14, 0xfe, 0xe7, 0x6f, 0xfe, 0xb4, 0x39, 0x4e, 0xd2, 0x76, 0x5a, 0xda, 0x10, 0x20, 0x81, 0x48, - 0x48, 0x05, 0xa9, 0x0e, 0x4a, 0x37, 0x2c, 0x90, 0x50, 0x6e, 0xb4, 0x51, 0x9b, 0x26, 0x1a, 0x27, - 0x1b, 0x36, 0x96, 0x63, 0x4f, 0x8c, 0x85, 0xe3, 0x71, 0x3d, 0x93, 0x4a, 0x79, 0x0b, 0x76, 0xf0, - 0x08, 0xbc, 0x01, 0x5b, 0x96, 0x5d, 0xf2, 0x04, 0x80, 0x5a, 0x89, 0x25, 0xcf, 0x80, 0x66, 0xc6, - 0x6e, 0xcc, 0xa5, 0x12, 0x48, 0x6c, 0x92, 0x39, 0x97, 0xef, 0x9c, 0xf3, 0x7d, 0xc7, 0x3a, 0x50, - 0x8f, 0x13, 0x26, 0x18, 0x6f, 0xb3, 0x28, 0x0c, 0x22, 0x9a, 0xfe, 0x99, 0xca, 0x89, 0x8b, 0xda, - 0xaa, 0x7f, 0xea, 0x07, 0xe2, 0xab, 0xf5, 0xc2, 0x74, 0xd9, 0xaa, 0x2d, 0x12, 0x16, 0x9d, 0xaf, - 0x79, 0xdb, 0x67, 0xe7, 0x0b, 0xb1, 0xe4, 0xe7, 0x2e, 0x5b, 0xad, 0x58, 0xd4, 0x4e, 0xab, 0x44, - 0xcc, 0xa3, 0xea, 0x47, 0x57, 0xa8, 0x7f, 0xf2, 0x0f, 0x48, 0x15, 0x59, 0xac, 0x97, 0x6d, 0x9f, - 0xf9, 0x4c, 0x19, 0xea, 0x95, 0x22, 0x9a, 0x3e, 0x63, 0x7e, 0x48, 0xb7, 0x59, 0x22, 0x58, 0x51, - 0x2e, 0x9c, 0x55, 0xac, 0x13, 0x5a, 0x21, 0x1c, 0x11, 0x7a, 0x77, 0xe3, 0x08, 0xca, 0x85, 0x15, - 0xf8, 0x11, 0xa1, 0x31, 0x4b, 0x04, 0x7e, 0x0f, 0x20, 0x5e, 0x2f, 0xc2, 0xc0, 0xb5, 0xbf, 0xa6, - 0x9b, 0x1a, 0x7a, 0x1f, 0x9d, 0x95, 0x49, 0x49, 0x7b, 0xae, 0xe9, 0x06, 0xbf, 0x0b, 0x25, 0x1e, - 0xf8, 0x91, 0x23, 0xd6, 0x09, 0xad, 0xbd, 0xd6, 0xd1, 0x67, 0x07, 0xae, 0xc1, 0x6e, 0xec, 0x6c, - 0x42, 0xe6, 0x78, 0xb5, 0x1d, 0x15, 0xcb, 0xcc, 0xd6, 0xef, 0x08, 0x8c, 0xa9, 0xb3, 0xb9, 0x61, - 0x8e, 0x37, 0x8a, 0x96, 0x0c, 0x9f, 0xc2, 0xae, 0xa4, 0x67, 0x07, 0x9e, 0xea, 0x51, 0x22, 0x45, - 0x69, 0x8e, 0x3c, 0xdc, 0x80, 0x82, 0x7c, 0xa9, 0xda, 0x46, 0x07, 0x4c, 0x25, 0xc2, 0x2d, 0xf3, - 0x28, 0x51, 0x7e, 0xfc, 0x19, 0x1c, 0x84, 0x0e, 0x17, 0xb6, 0x6c, 0x4a, 0x3d, 0x3b, 0x88, 0x96, - 0x4c, 0xf5, 0x32, 0x3a, 0xd8, 0x4c, 0x45, 0xb7, 0x54, 0x48, 0xb6, 0x21, 0x55, 0x99, 0xbb, 0xb5, - 0xf1, 0x87, 0x50, 0x7d, 0x46, 0x6b, 0x0e, 0x05, 0xd5, 0xbd, 0x92, 0xe5, 0x69, 0x1e, 0x5d, 0x28, - 0xa9, 0x34, 0xa9, 0x59, 0xed, 0x8d, 0xaa, 0x5e, 0x37, 0xb5, 0xa0, 0x66, 0x26, 0xa8, 0x39, 0xcb, - 0x04, 0xed, 0xed, 0x3d, 0xfc, 0xdc, 0x7c, 0xf5, 0xcd, 0x2f, 0x4d, 0x44, 0xf6, 0x24, 0x4c, 0x06, - 0x5a, 0xdf, 0x23, 0xd8, 0x27, 0x94, 0xc7, 0xb2, 0xe8, 0x98, 0x8a, 0x24, 0x70, 0x39, 0x3e, 0x83, - 0x82, 0x2b, 0xb9, 0x49, 0xc6, 0xd5, 0xce, 0x71, 0x36, 0xaf, 0x4c, 0x63, 0x11, 0xa7, 0x7d, 0xc5, - 0x52, 0x66, 0x48, 0x21, 0x57, 0x94, 0x73, 0xc7, 0xd7, 0x42, 0x94, 0x48, 0x66, 0xe2, 0x0b, 0x30, - 0xfe, 0x1d, 0x75, 0xe0, 0x5b, 0xda, 0x7f, 0xda, 0x9a, 0x66, 0xbc, 0x75, 0xb4, 0x7e, 0x40, 0x00, - 0x39, 0x8d, 0x30, 0x14, 0x62, 0x4a, 0x93, 0x74, 0x2f, 0xea, 0x8d, 0x3f, 0x80, 0xb2, 0x9b, 0x50, - 0x47, 0x50, 0x4f, 0x6b, 0x22, 0x87, 0xaa, 0x10, 0x23, 0xf5, 0x49, 0xc2, 0x72, 0xe4, 0x7b, 0x9a, - 0xf0, 0x80, 0x45, 0x6a, 0xa8, 0x12, 0xc9, 0x4c, 0x7c, 0x0c, 0x6f, 0x22, 0x16, 0xb9, 0xba, 0x73, - 0x85, 0x68, 0x43, 0x96, 0x5c, 0x08, 0xe1, 0xda, 0x8e, 0xe7, 0x25, 0x94, 0x73, 0x25, 0x73, 0x89, - 0x18, 0xd2, 0xd7, 0xd5, 0x2e, 0xdc, 0x7c, 0xe6, 0xaa, 0x9a, 0x16, 0x15, 0x3c, 0xe5, 0xa5, 0x44, - 0xfe, 0x08, 0xaa, 0x84, 0xde, 0xe5, 0x25, 0x7e, 0xe9, 0xbb, 0x6a, 0x7d, 0x8b, 0xa0, 0x48, 0x28, - 0x5f, 0x87, 0xe2, 0x7f, 0x59, 0xc3, 0x08, 0x2a, 0x49, 0x9a, 0xaf, 0x87, 0xdb, 0xf9, 0x0f, 0x5f, - 0x49, 0x39, 0x83, 0xca, 0xe0, 0xc7, 0xf7, 0x50, 0xce, 0xb7, 0xc6, 0x06, 0xec, 0x5a, 0xf3, 0x7e, - 0x7f, 0x68, 0x59, 0x07, 0xaf, 0x70, 0x1d, 0x4e, 0xac, 0xd1, 0xe5, 0x6d, 0x77, 0x36, 0x27, 0x43, - 0xfb, 0x8b, 0x09, 0x19, 0x77, 0x67, 0xf6, 0x90, 0x90, 0x09, 0x39, 0x40, 0xf8, 0x6d, 0x78, 0xab, - 0x3f, 0x19, 0x4f, 0xe7, 0xb3, 0xa1, 0xdd, 0x1d, 0x0c, 0xc8, 0xd0, 0xb2, 0xd2, 0xd0, 0x6b, 0x7c, - 0x08, 0x95, 0xd9, 0x68, 0x3c, 0x9c, 0xcc, 0xb3, 0xec, 0x1d, 0xbc, 0x0f, 0xc6, 0x64, 0x76, 0x35, - 0x24, 0xa9, 0xe3, 0xb8, 0xf3, 0x1b, 0x82, 0xca, 0x44, 0x51, 0xb7, 0x68, 0x72, 0x1f, 0xb8, 0x14, - 0x0f, 0xe0, 0x70, 0x1e, 0x7b, 0x8e, 0xa0, 0x79, 0x45, 0x4f, 0xb6, 0xfa, 0xe4, 0x95, 0xae, 0x9f, - 0xe6, 0x75, 0xcb, 0x03, 0x7a, 0x50, 0x1b, 0xb0, 0x81, 0x13, 0x84, 0x9b, 0xed, 0x59, 0xb9, 0x72, - 0x22, 0x2f, 0xa4, 0xc9, 0x8b, 0xc5, 0xaa, 0xb9, 0x62, 0x72, 0x45, 0xd7, 0x70, 0x74, 0x49, 0xc5, - 0xdf, 0x8e, 0xd3, 0x3b, 0x39, 0xf8, 0x5f, 0x83, 0x2f, 0x0e, 0xd4, 0xfb, 0xfc, 0xe1, 0xb1, 0x81, - 0x7e, 0x7a, 0x6c, 0xa0, 0x5f, 0x1f, 0x1b, 0xe8, 0xbb, 0xa7, 0x06, 0xfa, 0xf1, 0xa9, 0x81, 0x1e, - 0x9e, 0x1a, 0x08, 0xaa, 0x01, 0x33, 0xe5, 0xf5, 0x4d, 0x91, 0x3d, 0x43, 0xeb, 0x31, 0x95, 0xcb, - 0x9b, 0xa2, 0x2f, 0xd3, 0xbb, 0xbd, 0x28, 0xaa, 0x6d, 0x5e, 0xfc, 0x11, 0x00, 0x00, 0xff, 0xff, - 0x61, 0x5a, 0xdc, 0x79, 0xe4, 0x05, 0x00, 0x00, + // 757 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0xcb, 0x6e, 0xeb, 0x44, + 0x18, 0x3e, 0x73, 0x9a, 0x93, 0x36, 0xbf, 0x93, 0xb4, 0x9d, 0x96, 0x36, 0x04, 0x48, 0x20, 0x12, + 0x52, 0x85, 0x54, 0x07, 0xa5, 0x1b, 0x16, 0x48, 0x28, 0x37, 0xda, 0xa8, 0x4d, 0x13, 0x8d, 0x93, + 0x0d, 0x1b, 0xcb, 0xb1, 0x27, 0xc6, 0xc2, 0xf1, 0xb8, 0x9e, 0x49, 0xa5, 0xbc, 0x05, 0x3b, 0x78, + 0x04, 0xde, 0x80, 0x2d, 0xcb, 0x2e, 0x79, 0x02, 0x40, 0xad, 0xc4, 0x92, 0x67, 0x40, 0x33, 0x63, + 0x37, 0xe6, 0x52, 0x09, 0xa4, 0xb3, 0xb1, 0xe7, 0xbf, 0xff, 0xdf, 0xf7, 0x8d, 0x06, 0xea, 0x71, + 0xc2, 0x04, 0xe3, 0x6d, 0x16, 0x85, 0x41, 0x44, 0xd3, 0x9f, 0xa9, 0x9c, 0xb8, 0xa8, 0xad, 0xfa, + 0x67, 0x7e, 0x20, 0xbe, 0x5e, 0x2f, 0x4c, 0x97, 0xad, 0xda, 0x22, 0x61, 0xd1, 0xf9, 0x9a, 0xb7, + 0x7d, 0x76, 0xbe, 0x10, 0x4b, 0x7e, 0xee, 0xb2, 0xd5, 0x8a, 0x45, 0xed, 0xb4, 0x4b, 0xc4, 0x3c, + 0xaa, 0x3e, 0xba, 0x43, 0xfd, 0xd3, 0x7f, 0xa9, 0x54, 0x91, 0xc5, 0x7a, 0xd9, 0xf6, 0x99, 0xcf, + 0x94, 0xa1, 0x4e, 0x69, 0x45, 0xd3, 0x67, 0xcc, 0x0f, 0xe9, 0x36, 0x4b, 0x04, 0x2b, 0xca, 0x85, + 0xb3, 0x8a, 0x75, 0x42, 0xcb, 0x87, 0x2a, 0xa1, 0x77, 0x56, 0xe0, 0x47, 0x63, 0x2a, 0x92, 0xc0, + 0xe5, 0xf8, 0x03, 0x80, 0x78, 0xbd, 0x08, 0x03, 0xd7, 0xfe, 0x86, 0x6e, 0x6a, 0xe8, 0x43, 0x74, + 0x56, 0x26, 0x25, 0xed, 0xb9, 0xa6, 0x1b, 0xfc, 0x3e, 0x94, 0x78, 0xe0, 0x47, 0x8e, 0x58, 0x27, + 0xb4, 0xf6, 0x5a, 0x47, 0x9f, 0x1d, 0xb8, 0x06, 0xbb, 0xb1, 0xb3, 0x09, 0x99, 0xe3, 0xd5, 0x76, + 0x54, 0x2c, 0x33, 0x5b, 0x7f, 0x20, 0x30, 0xa6, 0xce, 0xe6, 0x86, 0x39, 0xde, 0x28, 0x5a, 0x32, + 0x7c, 0x0a, 0xbb, 0x12, 0x99, 0x1d, 0x78, 0x6a, 0x46, 0x89, 0x14, 0xa5, 0x39, 0xf2, 0x70, 0x03, + 0x0a, 0xf2, 0xa4, 0x7a, 0x1b, 0x1d, 0x30, 0x15, 0xfe, 0x5b, 0xe6, 0x51, 0xa2, 0xfc, 0xf8, 0x73, + 0x38, 0x08, 0x1d, 0x2e, 0x6c, 0x39, 0x94, 0x7a, 0x76, 0x10, 0x2d, 0x99, 0x9a, 0x65, 0x74, 0xb0, + 0x99, 0xf2, 0x6d, 0xa9, 0x90, 0x1c, 0x43, 0xaa, 0x32, 0x77, 0x6b, 0xe3, 0x8f, 0xa1, 0xfa, 0x5c, + 0xad, 0x31, 0x14, 0xd4, 0xf4, 0x4a, 0x96, 0xa7, 0x71, 0x74, 0xa1, 0xa4, 0xd2, 0x24, 0x5d, 0xb5, + 0x37, 0xaa, 0x7b, 0xdd, 0xd4, 0x5c, 0x9a, 0x19, 0x97, 0xe6, 0x2c, 0xe3, 0xb2, 0xb7, 0xf7, 0xf0, + 0x4b, 0xf3, 0xd5, 0xb7, 0xbf, 0x36, 0x11, 0xd9, 0x93, 0x65, 0x32, 0xd0, 0xfa, 0x01, 0xc1, 0x3e, + 0xa1, 0x3c, 0xce, 0x73, 0x7b, 0x06, 0x05, 0x57, 0x62, 0x93, 0x88, 0xab, 0x9d, 0xe3, 0x6c, 0x5f, + 0x99, 0xc6, 0x22, 0x4e, 0xfb, 0x0a, 0xa5, 0xcc, 0x90, 0x44, 0xae, 0x28, 0xe7, 0x8e, 0xaf, 0x89, + 0x28, 0x91, 0xcc, 0xc4, 0x17, 0x60, 0xfc, 0x37, 0xe8, 0xc0, 0xb7, 0xb0, 0xff, 0xa2, 0x9a, 0x46, + 0xbc, 0x75, 0xb4, 0x7e, 0x44, 0x00, 0x39, 0x8e, 0x30, 0x14, 0x62, 0x4a, 0x93, 0x54, 0x17, 0x75, + 0xc6, 0x1f, 0x41, 0xd9, 0x4d, 0xa8, 0x23, 0xa8, 0xa7, 0x39, 0x91, 0x4b, 0x55, 0x88, 0x91, 0xfa, + 0x24, 0x60, 0xb9, 0xf2, 0x3d, 0x4d, 0x78, 0xc0, 0x22, 0xb5, 0x54, 0x89, 0x64, 0x26, 0x3e, 0x86, + 0x37, 0x11, 0x8b, 0x5c, 0x3d, 0xb9, 0x42, 0xb4, 0x21, 0x5b, 0x2e, 0x84, 0x70, 0x6d, 0xc7, 0xf3, + 0x12, 0xca, 0xb9, 0xa2, 0xb9, 0x44, 0x0c, 0xe9, 0xeb, 0x6a, 0x17, 0x6e, 0x3e, 0x63, 0x55, 0x43, + 0x8b, 0xaa, 0x3c, 0xc5, 0xa5, 0x48, 0x36, 0xe1, 0x88, 0xd0, 0xbb, 0x1b, 0x47, 0x50, 0xad, 0x1e, + 0xa1, 0x31, 0x4b, 0xc4, 0x8b, 0x97, 0xab, 0xf5, 0x1d, 0x82, 0x22, 0xa1, 0x7c, 0x1d, 0x8a, 0xb7, + 0xa2, 0xc5, 0x08, 0x2a, 0x49, 0x9a, 0xaf, 0x37, 0xdc, 0xf9, 0x1f, 0x57, 0xa5, 0x9c, 0x95, 0xca, + 0xe0, 0x27, 0xf7, 0x50, 0xce, 0x8f, 0xc6, 0x06, 0xec, 0x5a, 0xf3, 0x7e, 0x7f, 0x68, 0x59, 0x07, + 0xaf, 0x70, 0x1d, 0x4e, 0xac, 0xd1, 0xe5, 0x6d, 0x77, 0x36, 0x27, 0x43, 0xfb, 0xcb, 0x09, 0x19, + 0x77, 0x67, 0xf6, 0x90, 0x90, 0x09, 0x39, 0x40, 0xf8, 0x5d, 0x78, 0xa7, 0x3f, 0x19, 0x4f, 0xe7, + 0xb3, 0xa1, 0xdd, 0x1d, 0x0c, 0xc8, 0xd0, 0xb2, 0xd2, 0xd0, 0x6b, 0x7c, 0x08, 0x95, 0xd9, 0x68, + 0x3c, 0x9c, 0xcc, 0xb3, 0xec, 0x1d, 0xbc, 0x0f, 0xc6, 0x64, 0x76, 0x35, 0x24, 0xa9, 0xe3, 0xb8, + 0xf3, 0x3b, 0x82, 0xca, 0x44, 0x41, 0xb7, 0x68, 0x72, 0x1f, 0xb8, 0x14, 0x0f, 0xe0, 0x70, 0x1e, + 0x7b, 0x8e, 0xa0, 0xf9, 0x9b, 0x7b, 0xb2, 0xe5, 0x27, 0xff, 0x5a, 0xd4, 0x4f, 0xf3, 0xbc, 0xe5, + 0x0b, 0x7a, 0x50, 0x1b, 0xb0, 0x81, 0x13, 0x84, 0x9b, 0xad, 0x2e, 0x57, 0x4e, 0xe4, 0x85, 0x34, + 0x79, 0xb1, 0x59, 0x35, 0xd7, 0x4c, 0x4a, 0x74, 0x0d, 0x47, 0x97, 0x54, 0xfc, 0x43, 0xdd, 0xf7, + 0x72, 0xe5, 0x7f, 0x0f, 0xbe, 0xb8, 0x50, 0xef, 0x8b, 0x87, 0xc7, 0x06, 0xfa, 0xf9, 0xb1, 0x81, + 0x7e, 0x7b, 0x6c, 0xa0, 0xef, 0x9f, 0x1a, 0xe8, 0xa7, 0xa7, 0x06, 0x7a, 0x78, 0x6a, 0x20, 0xa8, + 0x06, 0xcc, 0x94, 0xaf, 0x6f, 0x5a, 0xd9, 0x33, 0x34, 0x1f, 0x53, 0x29, 0xde, 0x14, 0x7d, 0x95, + 0xbe, 0xdb, 0x8b, 0xa2, 0x52, 0xf3, 0xe2, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9b, 0xd9, 0x02, + 0x60, 0xe4, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -725,7 +725,7 @@ var _OnlineService_serviceDesc = grpc.ServiceDesc{ Metadata: "protos/online/online.proto", } -func (m *ReqLatestSignReport) Marshal() (dAtA []byte, err error) { +func (m *ReqSignMetrics) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -735,12 +735,12 @@ func (m *ReqLatestSignReport) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *ReqLatestSignReport) MarshalTo(dAtA []byte) (int, error) { +func (m *ReqSignMetrics) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *ReqLatestSignReport) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *ReqSignMetrics) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -967,7 +967,7 @@ func (m *SignedInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *ReqSignMetrics) Marshal() (dAtA []byte, err error) { +func (m *ReqLatestSignReport) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -977,12 +977,12 @@ func (m *ReqSignMetrics) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *ReqSignMetrics) MarshalTo(dAtA []byte) (int, error) { +func (m *ReqLatestSignReport) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *ReqSignMetrics) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *ReqLatestSignReport) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -1059,7 +1059,7 @@ func encodeVarintOnline(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) return base } -func (m *ReqLatestSignReport) Size() (n int) { +func (m *ReqSignMetrics) Size() (n int) { if m == nil { return 0 } @@ -1173,7 +1173,7 @@ func (m *SignedInfo) Size() (n int) { return n } -func (m *ReqSignMetrics) Size() (n int) { +func (m *ReqLatestSignReport) Size() (n int) { if m == nil { return 0 } @@ -1216,7 +1216,7 @@ func sovOnline(x uint64) (n int) { func sozOnline(x uint64) (n int) { return sovOnline(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } -func (m *ReqLatestSignReport) Unmarshal(dAtA []byte) error { +func (m *ReqSignMetrics) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -1239,10 +1239,10 @@ func (m *ReqLatestSignReport) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ReqLatestSignReport: wiretype end group for non-group") + return fmt.Errorf("proto: ReqSignMetrics: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ReqLatestSignReport: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: ReqSignMetrics: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -1975,7 +1975,7 @@ func (m *SignedInfo) Unmarshal(dAtA []byte) error { } return nil } -func (m *ReqSignMetrics) Unmarshal(dAtA []byte) error { +func (m *ReqLatestSignReport) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -1998,10 +1998,10 @@ func (m *ReqSignMetrics) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ReqSignMetrics: wiretype end group for non-group") + return fmt.Errorf("proto: ReqLatestSignReport: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ReqSignMetrics: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: ReqLatestSignReport: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: From 2bd50b98df074cbc1e060e507e3d3a0f4e017ae8 Mon Sep 17 00:00:00 2001 From: fish <920886811@163.com> Date: Mon, 5 Dec 2022 20:45:51 +0800 Subject: [PATCH 5/8] mod: online DoDailyStatusReportHandler --- protos/online/online.proto | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/protos/online/online.proto b/protos/online/online.proto index 39e71af..f8557d6 100644 --- a/protos/online/online.proto +++ b/protos/online/online.proto @@ -22,8 +22,21 @@ import "google/protobuf/timestamp.proto"; service OnlineService { rpc UpdateSignMetrics(ReqSignMetrics) returns (RespSignMetrics); - rpc DoDailySignReportHandler(ReqSignMetrics) returns (Result); - rpc GetLatestSignReport(ReqLatestSignReport) returns (RespSignMetrics); + rpc DoDailyStatusReportHandler(ReqSignMetrics) returns (Result); + rpc GetLastDailySignedInfoHandler(ReqLastDailySignedInfo) returns (RespSignMetrics); +} + +message ReqLastDailySignedInfo { + string peer_id = 1; +} + +message Result { + ResponseCode code = 1; + string message = 2; + google.protobuf.Timestamp response_time = 3 [ + (gogoproto.nullable) = false, + (gogoproto.stdtime) = true + ]; } message ReqSignMetrics { @@ -66,16 +79,3 @@ message SignedInfo { string bttc_address = 5; uint32 signed_time = 6; } - -message ReqLatestSignReport { - string node_id = 1; -} - -message Result { - ResponseCode code = 1; - string message = 2; - google.protobuf.Timestamp response_time = 3 [ - (gogoproto.nullable) = false, - (gogoproto.stdtime) = true - ]; -} From 9d3e13275f274a369f56bb912a8b2c61e5a1a008 Mon Sep 17 00:00:00 2001 From: fish <920886811@163.com> Date: Mon, 5 Dec 2022 20:50:13 +0800 Subject: [PATCH 6/8] mod: online DoDailyStatusReportHandler --- js/protos/online/online_pb.js | 1240 ++++++++++++++++----------------- protos/online/online.pb.go | 1149 +++++++++++++++--------------- 2 files changed, 1195 insertions(+), 1194 deletions(-) diff --git a/js/protos/online/online_pb.js b/js/protos/online/online_pb.js index f031655..72b27a6 100644 --- a/js/protos/online/online_pb.js +++ b/js/protos/online/online_pb.js @@ -19,7 +19,7 @@ goog.object.extend(proto, github_com_tron$us_protobuf_gogoproto_gogo_pb); var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js'); goog.object.extend(proto, google_protobuf_timestamp_pb); goog.exportSymbol('proto.online.PayLoadInfo', null, global); -goog.exportSymbol('proto.online.ReqLatestSignReport', null, global); +goog.exportSymbol('proto.online.ReqLastDailySignedInfo', null, global); goog.exportSymbol('proto.online.ReqSignMetrics', null, global); goog.exportSymbol('proto.online.RespSignMetrics', null, global); goog.exportSymbol('proto.online.ResponseCode', null, global); @@ -35,16 +35,16 @@ goog.exportSymbol('proto.online.SignedInfo', null, global); * @extends {jspb.Message} * @constructor */ -proto.online.ReqSignMetrics = function(opt_data) { +proto.online.ReqLastDailySignedInfo = function(opt_data) { jspb.Message.initialize(this, opt_data, 0, -1, null, null); }; -goog.inherits(proto.online.ReqSignMetrics, jspb.Message); +goog.inherits(proto.online.ReqLastDailySignedInfo, jspb.Message); if (goog.DEBUG && !COMPILED) { /** * @public * @override */ - proto.online.ReqSignMetrics.displayName = 'proto.online.ReqSignMetrics'; + proto.online.ReqLastDailySignedInfo.displayName = 'proto.online.ReqLastDailySignedInfo'; } /** * Generated by JsPbCodeGenerator. @@ -56,16 +56,16 @@ if (goog.DEBUG && !COMPILED) { * @extends {jspb.Message} * @constructor */ -proto.online.PayLoadInfo = function(opt_data) { +proto.online.Result = function(opt_data) { jspb.Message.initialize(this, opt_data, 0, -1, null, null); }; -goog.inherits(proto.online.PayLoadInfo, jspb.Message); +goog.inherits(proto.online.Result, jspb.Message); if (goog.DEBUG && !COMPILED) { /** * @public * @override */ - proto.online.PayLoadInfo.displayName = 'proto.online.PayLoadInfo'; + proto.online.Result.displayName = 'proto.online.Result'; } /** * Generated by JsPbCodeGenerator. @@ -77,16 +77,16 @@ if (goog.DEBUG && !COMPILED) { * @extends {jspb.Message} * @constructor */ -proto.online.RespSignMetrics = function(opt_data) { +proto.online.ReqSignMetrics = function(opt_data) { jspb.Message.initialize(this, opt_data, 0, -1, null, null); }; -goog.inherits(proto.online.RespSignMetrics, jspb.Message); +goog.inherits(proto.online.ReqSignMetrics, jspb.Message); if (goog.DEBUG && !COMPILED) { /** * @public * @override */ - proto.online.RespSignMetrics.displayName = 'proto.online.RespSignMetrics'; + proto.online.ReqSignMetrics.displayName = 'proto.online.ReqSignMetrics'; } /** * Generated by JsPbCodeGenerator. @@ -98,16 +98,16 @@ if (goog.DEBUG && !COMPILED) { * @extends {jspb.Message} * @constructor */ -proto.online.SignedInfo = function(opt_data) { +proto.online.PayLoadInfo = function(opt_data) { jspb.Message.initialize(this, opt_data, 0, -1, null, null); }; -goog.inherits(proto.online.SignedInfo, jspb.Message); +goog.inherits(proto.online.PayLoadInfo, jspb.Message); if (goog.DEBUG && !COMPILED) { /** * @public * @override */ - proto.online.SignedInfo.displayName = 'proto.online.SignedInfo'; + proto.online.PayLoadInfo.displayName = 'proto.online.PayLoadInfo'; } /** * Generated by JsPbCodeGenerator. @@ -119,16 +119,16 @@ if (goog.DEBUG && !COMPILED) { * @extends {jspb.Message} * @constructor */ -proto.online.ReqLatestSignReport = function(opt_data) { +proto.online.RespSignMetrics = function(opt_data) { jspb.Message.initialize(this, opt_data, 0, -1, null, null); }; -goog.inherits(proto.online.ReqLatestSignReport, jspb.Message); +goog.inherits(proto.online.RespSignMetrics, jspb.Message); if (goog.DEBUG && !COMPILED) { /** * @public * @override */ - proto.online.ReqLatestSignReport.displayName = 'proto.online.ReqLatestSignReport'; + proto.online.RespSignMetrics.displayName = 'proto.online.RespSignMetrics'; } /** * Generated by JsPbCodeGenerator. @@ -140,16 +140,16 @@ if (goog.DEBUG && !COMPILED) { * @extends {jspb.Message} * @constructor */ -proto.online.Result = function(opt_data) { +proto.online.SignedInfo = function(opt_data) { jspb.Message.initialize(this, opt_data, 0, -1, null, null); }; -goog.inherits(proto.online.Result, jspb.Message); +goog.inherits(proto.online.SignedInfo, jspb.Message); if (goog.DEBUG && !COMPILED) { /** * @public * @override */ - proto.online.Result.displayName = 'proto.online.Result'; + proto.online.SignedInfo.displayName = 'proto.online.SignedInfo'; } @@ -167,8 +167,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) { * http://goto/soy-param-migration * @return {!Object} */ -proto.online.ReqSignMetrics.prototype.toObject = function(opt_includeInstance) { - return proto.online.ReqSignMetrics.toObject(opt_includeInstance, this); +proto.online.ReqLastDailySignedInfo.prototype.toObject = function(opt_includeInstance) { + return proto.online.ReqLastDailySignedInfo.toObject(opt_includeInstance, this); }; @@ -177,15 +177,13 @@ proto.online.ReqSignMetrics.prototype.toObject = function(opt_includeInstance) { * @param {boolean|undefined} includeInstance Deprecated. Whether to include * the JSPB instance for transitional soy proto support: * http://goto/soy-param-migration - * @param {!proto.online.ReqSignMetrics} msg The msg instance to transform. + * @param {!proto.online.ReqLastDailySignedInfo} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.ReqSignMetrics.toObject = function(includeInstance, msg) { +proto.online.ReqLastDailySignedInfo.toObject = function(includeInstance, msg) { var f, obj = { - publicKey: msg.getPublicKey_asB64(), - signature: msg.getSignature_asB64(), - payload: msg.getPayload_asB64() + peerId: jspb.Message.getFieldWithDefault(msg, 1, "") }; if (includeInstance) { @@ -199,23 +197,23 @@ proto.online.ReqSignMetrics.toObject = function(includeInstance, msg) { /** * Deserializes binary data (in protobuf wire format). * @param {jspb.ByteSource} bytes The bytes to deserialize. - * @return {!proto.online.ReqSignMetrics} + * @return {!proto.online.ReqLastDailySignedInfo} */ -proto.online.ReqSignMetrics.deserializeBinary = function(bytes) { +proto.online.ReqLastDailySignedInfo.deserializeBinary = function(bytes) { var reader = new jspb.BinaryReader(bytes); - var msg = new proto.online.ReqSignMetrics; - return proto.online.ReqSignMetrics.deserializeBinaryFromReader(msg, reader); + var msg = new proto.online.ReqLastDailySignedInfo; + return proto.online.ReqLastDailySignedInfo.deserializeBinaryFromReader(msg, reader); }; /** * Deserializes binary data (in protobuf wire format) from the * given reader into the given message object. - * @param {!proto.online.ReqSignMetrics} msg The message object to deserialize into. + * @param {!proto.online.ReqLastDailySignedInfo} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. - * @return {!proto.online.ReqSignMetrics} + * @return {!proto.online.ReqLastDailySignedInfo} */ -proto.online.ReqSignMetrics.deserializeBinaryFromReader = function(msg, reader) { +proto.online.ReqLastDailySignedInfo.deserializeBinaryFromReader = function(msg, reader) { while (reader.nextField()) { if (reader.isEndGroup()) { break; @@ -223,16 +221,8 @@ proto.online.ReqSignMetrics.deserializeBinaryFromReader = function(msg, reader) var field = reader.getFieldNumber(); switch (field) { case 1: - var value = /** @type {!Uint8Array} */ (reader.readBytes()); - msg.setPublicKey(value); - break; - case 2: - var value = /** @type {!Uint8Array} */ (reader.readBytes()); - msg.setSignature(value); - break; - case 3: - var value = /** @type {!Uint8Array} */ (reader.readBytes()); - msg.setPayload(value); + var value = /** @type {string} */ (reader.readString()); + msg.setPeerId(value); break; default: reader.skipField(); @@ -247,9 +237,9 @@ proto.online.ReqSignMetrics.deserializeBinaryFromReader = function(msg, reader) * Serializes the message to binary data (in protobuf wire format). * @return {!Uint8Array} */ -proto.online.ReqSignMetrics.prototype.serializeBinary = function() { +proto.online.ReqLastDailySignedInfo.prototype.serializeBinary = function() { var writer = new jspb.BinaryWriter(); - proto.online.ReqSignMetrics.serializeBinaryToWriter(this, writer); + proto.online.ReqLastDailySignedInfo.serializeBinaryToWriter(this, writer); return writer.getResultBuffer(); }; @@ -257,159 +247,37 @@ proto.online.ReqSignMetrics.prototype.serializeBinary = function() { /** * Serializes the given message to binary data (in protobuf wire * format), writing to the given BinaryWriter. - * @param {!proto.online.ReqSignMetrics} message + * @param {!proto.online.ReqLastDailySignedInfo} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.ReqSignMetrics.serializeBinaryToWriter = function(message, writer) { +proto.online.ReqLastDailySignedInfo.serializeBinaryToWriter = function(message, writer) { var f = undefined; - f = message.getPublicKey_asU8(); + f = message.getPeerId(); if (f.length > 0) { - writer.writeBytes( + writer.writeString( 1, f ); } - f = message.getSignature_asU8(); - if (f.length > 0) { - writer.writeBytes( - 2, - f - ); - } - f = message.getPayload_asU8(); - if (f.length > 0) { - writer.writeBytes( - 3, - f - ); - } -}; - - -/** - * optional bytes public_key = 1; - * @return {!(string|Uint8Array)} - */ -proto.online.ReqSignMetrics.prototype.getPublicKey = function() { - return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldWithDefault(this, 1, "")); -}; - - -/** - * optional bytes public_key = 1; - * This is a type-conversion wrapper around `getPublicKey()` - * @return {string} - */ -proto.online.ReqSignMetrics.prototype.getPublicKey_asB64 = function() { - return /** @type {string} */ (jspb.Message.bytesAsB64( - this.getPublicKey())); -}; - - -/** - * optional bytes public_key = 1; - * Note that Uint8Array is not supported on all browsers. - * @see http://caniuse.com/Uint8Array - * This is a type-conversion wrapper around `getPublicKey()` - * @return {!Uint8Array} - */ -proto.online.ReqSignMetrics.prototype.getPublicKey_asU8 = function() { - return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8( - this.getPublicKey())); -}; - - -/** - * @param {!(string|Uint8Array)} value - * @return {!proto.online.ReqSignMetrics} returns this - */ -proto.online.ReqSignMetrics.prototype.setPublicKey = function(value) { - return jspb.Message.setProto3BytesField(this, 1, value); -}; - - -/** - * optional bytes signature = 2; - * @return {!(string|Uint8Array)} - */ -proto.online.ReqSignMetrics.prototype.getSignature = function() { - return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldWithDefault(this, 2, "")); -}; - - -/** - * optional bytes signature = 2; - * This is a type-conversion wrapper around `getSignature()` - * @return {string} - */ -proto.online.ReqSignMetrics.prototype.getSignature_asB64 = function() { - return /** @type {string} */ (jspb.Message.bytesAsB64( - this.getSignature())); -}; - - -/** - * optional bytes signature = 2; - * Note that Uint8Array is not supported on all browsers. - * @see http://caniuse.com/Uint8Array - * This is a type-conversion wrapper around `getSignature()` - * @return {!Uint8Array} - */ -proto.online.ReqSignMetrics.prototype.getSignature_asU8 = function() { - return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8( - this.getSignature())); -}; - - -/** - * @param {!(string|Uint8Array)} value - * @return {!proto.online.ReqSignMetrics} returns this - */ -proto.online.ReqSignMetrics.prototype.setSignature = function(value) { - return jspb.Message.setProto3BytesField(this, 2, value); }; /** - * optional bytes payload = 3; - * @return {!(string|Uint8Array)} - */ -proto.online.ReqSignMetrics.prototype.getPayload = function() { - return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldWithDefault(this, 3, "")); -}; - - -/** - * optional bytes payload = 3; - * This is a type-conversion wrapper around `getPayload()` + * optional string peer_id = 1; * @return {string} */ -proto.online.ReqSignMetrics.prototype.getPayload_asB64 = function() { - return /** @type {string} */ (jspb.Message.bytesAsB64( - this.getPayload())); -}; - - -/** - * optional bytes payload = 3; - * Note that Uint8Array is not supported on all browsers. - * @see http://caniuse.com/Uint8Array - * This is a type-conversion wrapper around `getPayload()` - * @return {!Uint8Array} - */ -proto.online.ReqSignMetrics.prototype.getPayload_asU8 = function() { - return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8( - this.getPayload())); +proto.online.ReqLastDailySignedInfo.prototype.getPeerId = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, "")); }; /** - * @param {!(string|Uint8Array)} value - * @return {!proto.online.ReqSignMetrics} returns this + * @param {string} value + * @return {!proto.online.ReqLastDailySignedInfo} returns this */ -proto.online.ReqSignMetrics.prototype.setPayload = function(value) { - return jspb.Message.setProto3BytesField(this, 3, value); +proto.online.ReqLastDailySignedInfo.prototype.setPeerId = function(value) { + return jspb.Message.setProto3StringField(this, 1, value); }; @@ -429,8 +297,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) { * http://goto/soy-param-migration * @return {!Object} */ -proto.online.PayLoadInfo.prototype.toObject = function(opt_includeInstance) { - return proto.online.PayLoadInfo.toObject(opt_includeInstance, this); +proto.online.Result.prototype.toObject = function(opt_includeInstance) { + return proto.online.Result.toObject(opt_includeInstance, this); }; @@ -439,17 +307,15 @@ proto.online.PayLoadInfo.prototype.toObject = function(opt_includeInstance) { * @param {boolean|undefined} includeInstance Deprecated. Whether to include * the JSPB instance for transitional soy proto support: * http://goto/soy-param-migration - * @param {!proto.online.PayLoadInfo} msg The msg instance to transform. + * @param {!proto.online.Result} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.PayLoadInfo.toObject = function(includeInstance, msg) { +proto.online.Result.toObject = function(includeInstance, msg) { var f, obj = { - nodeId: jspb.Message.getFieldWithDefault(msg, 1, ""), - node: (f = msg.getNode()) && github_com_tron$us_go$btfs$common_protos_node_node_pb.Node.toObject(includeInstance, f), - lastSignedInfo: (f = msg.getLastSignedInfo()) && proto.online.SignedInfo.toObject(includeInstance, f), - lastSignature: jspb.Message.getFieldWithDefault(msg, 4, ""), - lastTime: (f = msg.getLastTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f) + code: jspb.Message.getFieldWithDefault(msg, 1, 0), + message: jspb.Message.getFieldWithDefault(msg, 2, ""), + responseTime: (f = msg.getResponseTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f) }; if (includeInstance) { @@ -463,23 +329,23 @@ proto.online.PayLoadInfo.toObject = function(includeInstance, msg) { /** * Deserializes binary data (in protobuf wire format). * @param {jspb.ByteSource} bytes The bytes to deserialize. - * @return {!proto.online.PayLoadInfo} + * @return {!proto.online.Result} */ -proto.online.PayLoadInfo.deserializeBinary = function(bytes) { +proto.online.Result.deserializeBinary = function(bytes) { var reader = new jspb.BinaryReader(bytes); - var msg = new proto.online.PayLoadInfo; - return proto.online.PayLoadInfo.deserializeBinaryFromReader(msg, reader); + var msg = new proto.online.Result; + return proto.online.Result.deserializeBinaryFromReader(msg, reader); }; /** * Deserializes binary data (in protobuf wire format) from the * given reader into the given message object. - * @param {!proto.online.PayLoadInfo} msg The message object to deserialize into. + * @param {!proto.online.Result} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. - * @return {!proto.online.PayLoadInfo} + * @return {!proto.online.Result} */ -proto.online.PayLoadInfo.deserializeBinaryFromReader = function(msg, reader) { +proto.online.Result.deserializeBinaryFromReader = function(msg, reader) { while (reader.nextField()) { if (reader.isEndGroup()) { break; @@ -487,27 +353,17 @@ proto.online.PayLoadInfo.deserializeBinaryFromReader = function(msg, reader) { var field = reader.getFieldNumber(); switch (field) { case 1: - var value = /** @type {string} */ (reader.readString()); - msg.setNodeId(value); + var value = /** @type {!proto.online.ResponseCode} */ (reader.readEnum()); + msg.setCode(value); break; case 2: - var value = new github_com_tron$us_go$btfs$common_protos_node_node_pb.Node; - reader.readMessage(value,github_com_tron$us_go$btfs$common_protos_node_node_pb.Node.deserializeBinaryFromReader); - msg.setNode(value); - break; - case 3: - var value = new proto.online.SignedInfo; - reader.readMessage(value,proto.online.SignedInfo.deserializeBinaryFromReader); - msg.setLastSignedInfo(value); - break; - case 4: var value = /** @type {string} */ (reader.readString()); - msg.setLastSignature(value); + msg.setMessage(value); break; - case 5: + case 3: var value = new google_protobuf_timestamp_pb.Timestamp; reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader); - msg.setLastTime(value); + msg.setResponseTime(value); break; default: reader.skipField(); @@ -522,9 +378,9 @@ proto.online.PayLoadInfo.deserializeBinaryFromReader = function(msg, reader) { * Serializes the message to binary data (in protobuf wire format). * @return {!Uint8Array} */ -proto.online.PayLoadInfo.prototype.serializeBinary = function() { +proto.online.Result.prototype.serializeBinary = function() { var writer = new jspb.BinaryWriter(); - proto.online.PayLoadInfo.serializeBinaryToWriter(this, writer); + proto.online.Result.serializeBinaryToWriter(this, writer); return writer.getResultBuffer(); }; @@ -532,46 +388,30 @@ proto.online.PayLoadInfo.prototype.serializeBinary = function() { /** * Serializes the given message to binary data (in protobuf wire * format), writing to the given BinaryWriter. - * @param {!proto.online.PayLoadInfo} message + * @param {!proto.online.Result} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.PayLoadInfo.serializeBinaryToWriter = function(message, writer) { +proto.online.Result.serializeBinaryToWriter = function(message, writer) { var f = undefined; - f = message.getNodeId(); - if (f.length > 0) { - writer.writeString( - 1, + f = message.getCode(); + if (f !== 0.0) { + writer.writeEnum( + 1, f ); } - f = message.getNode(); - if (f != null) { - writer.writeMessage( - 2, - f, - github_com_tron$us_go$btfs$common_protos_node_node_pb.Node.serializeBinaryToWriter - ); - } - f = message.getLastSignedInfo(); - if (f != null) { - writer.writeMessage( - 3, - f, - proto.online.SignedInfo.serializeBinaryToWriter - ); - } - f = message.getLastSignature(); + f = message.getMessage(); if (f.length > 0) { writer.writeString( - 4, + 2, f ); } - f = message.getLastTime(); + f = message.getResponseTime(); if (f != null) { writer.writeMessage( - 5, + 3, f, google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter ); @@ -580,140 +420,66 @@ proto.online.PayLoadInfo.serializeBinaryToWriter = function(message, writer) { /** - * optional string node_id = 1; - * @return {string} - */ -proto.online.PayLoadInfo.prototype.getNodeId = function() { - return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, "")); -}; - - -/** - * @param {string} value - * @return {!proto.online.PayLoadInfo} returns this - */ -proto.online.PayLoadInfo.prototype.setNodeId = function(value) { - return jspb.Message.setProto3StringField(this, 1, value); -}; - - -/** - * optional node.Node node = 2; - * @return {?proto.node.Node} - */ -proto.online.PayLoadInfo.prototype.getNode = function() { - return /** @type{?proto.node.Node} */ ( - jspb.Message.getWrapperField(this, github_com_tron$us_go$btfs$common_protos_node_node_pb.Node, 2)); -}; - - -/** - * @param {?proto.node.Node|undefined} value - * @return {!proto.online.PayLoadInfo} returns this -*/ -proto.online.PayLoadInfo.prototype.setNode = function(value) { - return jspb.Message.setWrapperField(this, 2, value); -}; - - -/** - * Clears the message field making it undefined. - * @return {!proto.online.PayLoadInfo} returns this - */ -proto.online.PayLoadInfo.prototype.clearNode = function() { - return this.setNode(undefined); -}; - - -/** - * Returns whether this field is set. - * @return {boolean} - */ -proto.online.PayLoadInfo.prototype.hasNode = function() { - return jspb.Message.getField(this, 2) != null; -}; - - -/** - * optional SignedInfo last_signed_info = 3; - * @return {?proto.online.SignedInfo} - */ -proto.online.PayLoadInfo.prototype.getLastSignedInfo = function() { - return /** @type{?proto.online.SignedInfo} */ ( - jspb.Message.getWrapperField(this, proto.online.SignedInfo, 3)); -}; - - -/** - * @param {?proto.online.SignedInfo|undefined} value - * @return {!proto.online.PayLoadInfo} returns this -*/ -proto.online.PayLoadInfo.prototype.setLastSignedInfo = function(value) { - return jspb.Message.setWrapperField(this, 3, value); -}; - - -/** - * Clears the message field making it undefined. - * @return {!proto.online.PayLoadInfo} returns this + * optional ResponseCode code = 1; + * @return {!proto.online.ResponseCode} */ -proto.online.PayLoadInfo.prototype.clearLastSignedInfo = function() { - return this.setLastSignedInfo(undefined); +proto.online.Result.prototype.getCode = function() { + return /** @type {!proto.online.ResponseCode} */ (jspb.Message.getFieldWithDefault(this, 1, 0)); }; /** - * Returns whether this field is set. - * @return {boolean} + * @param {!proto.online.ResponseCode} value + * @return {!proto.online.Result} returns this */ -proto.online.PayLoadInfo.prototype.hasLastSignedInfo = function() { - return jspb.Message.getField(this, 3) != null; +proto.online.Result.prototype.setCode = function(value) { + return jspb.Message.setProto3EnumField(this, 1, value); }; /** - * optional string last_signature = 4; + * optional string message = 2; * @return {string} */ -proto.online.PayLoadInfo.prototype.getLastSignature = function() { - return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, "")); +proto.online.Result.prototype.getMessage = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, "")); }; /** * @param {string} value - * @return {!proto.online.PayLoadInfo} returns this + * @return {!proto.online.Result} returns this */ -proto.online.PayLoadInfo.prototype.setLastSignature = function(value) { - return jspb.Message.setProto3StringField(this, 4, value); +proto.online.Result.prototype.setMessage = function(value) { + return jspb.Message.setProto3StringField(this, 2, value); }; /** - * optional google.protobuf.Timestamp last_time = 5; + * optional google.protobuf.Timestamp response_time = 3; * @return {?proto.google.protobuf.Timestamp} */ -proto.online.PayLoadInfo.prototype.getLastTime = function() { +proto.online.Result.prototype.getResponseTime = function() { return /** @type{?proto.google.protobuf.Timestamp} */ ( - jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 5)); + jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 3)); }; /** * @param {?proto.google.protobuf.Timestamp|undefined} value - * @return {!proto.online.PayLoadInfo} returns this + * @return {!proto.online.Result} returns this */ -proto.online.PayLoadInfo.prototype.setLastTime = function(value) { - return jspb.Message.setWrapperField(this, 5, value); +proto.online.Result.prototype.setResponseTime = function(value) { + return jspb.Message.setWrapperField(this, 3, value); }; /** * Clears the message field making it undefined. - * @return {!proto.online.PayLoadInfo} returns this + * @return {!proto.online.Result} returns this */ -proto.online.PayLoadInfo.prototype.clearLastTime = function() { - return this.setLastTime(undefined); +proto.online.Result.prototype.clearResponseTime = function() { + return this.setResponseTime(undefined); }; @@ -721,8 +487,8 @@ proto.online.PayLoadInfo.prototype.clearLastTime = function() { * Returns whether this field is set. * @return {boolean} */ -proto.online.PayLoadInfo.prototype.hasLastTime = function() { - return jspb.Message.getField(this, 5) != null; +proto.online.Result.prototype.hasResponseTime = function() { + return jspb.Message.getField(this, 3) != null; }; @@ -742,8 +508,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) { * http://goto/soy-param-migration * @return {!Object} */ -proto.online.RespSignMetrics.prototype.toObject = function(opt_includeInstance) { - return proto.online.RespSignMetrics.toObject(opt_includeInstance, this); +proto.online.ReqSignMetrics.prototype.toObject = function(opt_includeInstance) { + return proto.online.ReqSignMetrics.toObject(opt_includeInstance, this); }; @@ -752,16 +518,15 @@ proto.online.RespSignMetrics.prototype.toObject = function(opt_includeInstance) * @param {boolean|undefined} includeInstance Deprecated. Whether to include * the JSPB instance for transitional soy proto support: * http://goto/soy-param-migration - * @param {!proto.online.RespSignMetrics} msg The msg instance to transform. + * @param {!proto.online.ReqSignMetrics} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.RespSignMetrics.toObject = function(includeInstance, msg) { +proto.online.ReqSignMetrics.toObject = function(includeInstance, msg) { var f, obj = { - code: jspb.Message.getFieldWithDefault(msg, 1, 0), - message: jspb.Message.getFieldWithDefault(msg, 2, ""), - signedInfo: (f = msg.getSignedInfo()) && proto.online.SignedInfo.toObject(includeInstance, f), - signature: jspb.Message.getFieldWithDefault(msg, 4, "") + publicKey: msg.getPublicKey_asB64(), + signature: msg.getSignature_asB64(), + payload: msg.getPayload_asB64() }; if (includeInstance) { @@ -775,23 +540,23 @@ proto.online.RespSignMetrics.toObject = function(includeInstance, msg) { /** * Deserializes binary data (in protobuf wire format). * @param {jspb.ByteSource} bytes The bytes to deserialize. - * @return {!proto.online.RespSignMetrics} + * @return {!proto.online.ReqSignMetrics} */ -proto.online.RespSignMetrics.deserializeBinary = function(bytes) { +proto.online.ReqSignMetrics.deserializeBinary = function(bytes) { var reader = new jspb.BinaryReader(bytes); - var msg = new proto.online.RespSignMetrics; - return proto.online.RespSignMetrics.deserializeBinaryFromReader(msg, reader); + var msg = new proto.online.ReqSignMetrics; + return proto.online.ReqSignMetrics.deserializeBinaryFromReader(msg, reader); }; /** * Deserializes binary data (in protobuf wire format) from the * given reader into the given message object. - * @param {!proto.online.RespSignMetrics} msg The message object to deserialize into. + * @param {!proto.online.ReqSignMetrics} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. - * @return {!proto.online.RespSignMetrics} + * @return {!proto.online.ReqSignMetrics} */ -proto.online.RespSignMetrics.deserializeBinaryFromReader = function(msg, reader) { +proto.online.ReqSignMetrics.deserializeBinaryFromReader = function(msg, reader) { while (reader.nextField()) { if (reader.isEndGroup()) { break; @@ -799,21 +564,16 @@ proto.online.RespSignMetrics.deserializeBinaryFromReader = function(msg, reader) var field = reader.getFieldNumber(); switch (field) { case 1: - var value = /** @type {!proto.online.ResponseCode} */ (reader.readEnum()); - msg.setCode(value); + var value = /** @type {!Uint8Array} */ (reader.readBytes()); + msg.setPublicKey(value); break; case 2: - var value = /** @type {string} */ (reader.readString()); - msg.setMessage(value); + var value = /** @type {!Uint8Array} */ (reader.readBytes()); + msg.setSignature(value); break; case 3: - var value = new proto.online.SignedInfo; - reader.readMessage(value,proto.online.SignedInfo.deserializeBinaryFromReader); - msg.setSignedInfo(value); - break; - case 4: - var value = /** @type {string} */ (reader.readString()); - msg.setSignature(value); + var value = /** @type {!Uint8Array} */ (reader.readBytes()); + msg.setPayload(value); break; default: reader.skipField(); @@ -828,9 +588,9 @@ proto.online.RespSignMetrics.deserializeBinaryFromReader = function(msg, reader) * Serializes the message to binary data (in protobuf wire format). * @return {!Uint8Array} */ -proto.online.RespSignMetrics.prototype.serializeBinary = function() { +proto.online.ReqSignMetrics.prototype.serializeBinary = function() { var writer = new jspb.BinaryWriter(); - proto.online.RespSignMetrics.serializeBinaryToWriter(this, writer); + proto.online.ReqSignMetrics.serializeBinaryToWriter(this, writer); return writer.getResultBuffer(); }; @@ -838,38 +598,30 @@ proto.online.RespSignMetrics.prototype.serializeBinary = function() { /** * Serializes the given message to binary data (in protobuf wire * format), writing to the given BinaryWriter. - * @param {!proto.online.RespSignMetrics} message + * @param {!proto.online.ReqSignMetrics} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.RespSignMetrics.serializeBinaryToWriter = function(message, writer) { +proto.online.ReqSignMetrics.serializeBinaryToWriter = function(message, writer) { var f = undefined; - f = message.getCode(); - if (f !== 0.0) { - writer.writeEnum( + f = message.getPublicKey_asU8(); + if (f.length > 0) { + writer.writeBytes( 1, f ); } - f = message.getMessage(); + f = message.getSignature_asU8(); if (f.length > 0) { - writer.writeString( + writer.writeBytes( 2, f ); } - f = message.getSignedInfo(); - if (f != null) { - writer.writeMessage( - 3, - f, - proto.online.SignedInfo.serializeBinaryToWriter - ); - } - f = message.getSignature(); + f = message.getPayload_asU8(); if (f.length > 0) { - writer.writeString( - 4, + writer.writeBytes( + 3, f ); } @@ -877,93 +629,128 @@ proto.online.RespSignMetrics.serializeBinaryToWriter = function(message, writer) /** - * optional ResponseCode code = 1; - * @return {!proto.online.ResponseCode} - */ -proto.online.RespSignMetrics.prototype.getCode = function() { - return /** @type {!proto.online.ResponseCode} */ (jspb.Message.getFieldWithDefault(this, 1, 0)); -}; - - -/** - * @param {!proto.online.ResponseCode} value - * @return {!proto.online.RespSignMetrics} returns this + * optional bytes public_key = 1; + * @return {!(string|Uint8Array)} */ -proto.online.RespSignMetrics.prototype.setCode = function(value) { - return jspb.Message.setProto3EnumField(this, 1, value); +proto.online.ReqSignMetrics.prototype.getPublicKey = function() { + return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldWithDefault(this, 1, "")); }; /** - * optional string message = 2; + * optional bytes public_key = 1; + * This is a type-conversion wrapper around `getPublicKey()` * @return {string} */ -proto.online.RespSignMetrics.prototype.getMessage = function() { - return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, "")); +proto.online.ReqSignMetrics.prototype.getPublicKey_asB64 = function() { + return /** @type {string} */ (jspb.Message.bytesAsB64( + this.getPublicKey())); }; /** - * @param {string} value - * @return {!proto.online.RespSignMetrics} returns this + * optional bytes public_key = 1; + * Note that Uint8Array is not supported on all browsers. + * @see http://caniuse.com/Uint8Array + * This is a type-conversion wrapper around `getPublicKey()` + * @return {!Uint8Array} */ -proto.online.RespSignMetrics.prototype.setMessage = function(value) { - return jspb.Message.setProto3StringField(this, 2, value); +proto.online.ReqSignMetrics.prototype.getPublicKey_asU8 = function() { + return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8( + this.getPublicKey())); }; /** - * optional SignedInfo signed_info = 3; - * @return {?proto.online.SignedInfo} + * @param {!(string|Uint8Array)} value + * @return {!proto.online.ReqSignMetrics} returns this */ -proto.online.RespSignMetrics.prototype.getSignedInfo = function() { - return /** @type{?proto.online.SignedInfo} */ ( - jspb.Message.getWrapperField(this, proto.online.SignedInfo, 3)); +proto.online.ReqSignMetrics.prototype.setPublicKey = function(value) { + return jspb.Message.setProto3BytesField(this, 1, value); }; /** - * @param {?proto.online.SignedInfo|undefined} value - * @return {!proto.online.RespSignMetrics} returns this -*/ -proto.online.RespSignMetrics.prototype.setSignedInfo = function(value) { - return jspb.Message.setWrapperField(this, 3, value); + * optional bytes signature = 2; + * @return {!(string|Uint8Array)} + */ +proto.online.ReqSignMetrics.prototype.getSignature = function() { + return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldWithDefault(this, 2, "")); }; /** - * Clears the message field making it undefined. - * @return {!proto.online.RespSignMetrics} returns this + * optional bytes signature = 2; + * This is a type-conversion wrapper around `getSignature()` + * @return {string} */ -proto.online.RespSignMetrics.prototype.clearSignedInfo = function() { - return this.setSignedInfo(undefined); +proto.online.ReqSignMetrics.prototype.getSignature_asB64 = function() { + return /** @type {string} */ (jspb.Message.bytesAsB64( + this.getSignature())); }; /** - * Returns whether this field is set. - * @return {boolean} + * optional bytes signature = 2; + * Note that Uint8Array is not supported on all browsers. + * @see http://caniuse.com/Uint8Array + * This is a type-conversion wrapper around `getSignature()` + * @return {!Uint8Array} */ -proto.online.RespSignMetrics.prototype.hasSignedInfo = function() { - return jspb.Message.getField(this, 3) != null; +proto.online.ReqSignMetrics.prototype.getSignature_asU8 = function() { + return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8( + this.getSignature())); }; /** - * optional string signature = 4; + * @param {!(string|Uint8Array)} value + * @return {!proto.online.ReqSignMetrics} returns this + */ +proto.online.ReqSignMetrics.prototype.setSignature = function(value) { + return jspb.Message.setProto3BytesField(this, 2, value); +}; + + +/** + * optional bytes payload = 3; + * @return {!(string|Uint8Array)} + */ +proto.online.ReqSignMetrics.prototype.getPayload = function() { + return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldWithDefault(this, 3, "")); +}; + + +/** + * optional bytes payload = 3; + * This is a type-conversion wrapper around `getPayload()` * @return {string} */ -proto.online.RespSignMetrics.prototype.getSignature = function() { - return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, "")); +proto.online.ReqSignMetrics.prototype.getPayload_asB64 = function() { + return /** @type {string} */ (jspb.Message.bytesAsB64( + this.getPayload())); }; /** - * @param {string} value - * @return {!proto.online.RespSignMetrics} returns this + * optional bytes payload = 3; + * Note that Uint8Array is not supported on all browsers. + * @see http://caniuse.com/Uint8Array + * This is a type-conversion wrapper around `getPayload()` + * @return {!Uint8Array} */ -proto.online.RespSignMetrics.prototype.setSignature = function(value) { - return jspb.Message.setProto3StringField(this, 4, value); +proto.online.ReqSignMetrics.prototype.getPayload_asU8 = function() { + return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8( + this.getPayload())); +}; + + +/** + * @param {!(string|Uint8Array)} value + * @return {!proto.online.ReqSignMetrics} returns this + */ +proto.online.ReqSignMetrics.prototype.setPayload = function(value) { + return jspb.Message.setProto3BytesField(this, 3, value); }; @@ -983,8 +770,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) { * http://goto/soy-param-migration * @return {!Object} */ -proto.online.SignedInfo.prototype.toObject = function(opt_includeInstance) { - return proto.online.SignedInfo.toObject(opt_includeInstance, this); +proto.online.PayLoadInfo.prototype.toObject = function(opt_includeInstance) { + return proto.online.PayLoadInfo.toObject(opt_includeInstance, this); }; @@ -993,18 +780,17 @@ proto.online.SignedInfo.prototype.toObject = function(opt_includeInstance) { * @param {boolean|undefined} includeInstance Deprecated. Whether to include * the JSPB instance for transitional soy proto support: * http://goto/soy-param-migration - * @param {!proto.online.SignedInfo} msg The msg instance to transform. + * @param {!proto.online.PayLoadInfo} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.SignedInfo.toObject = function(includeInstance, msg) { +proto.online.PayLoadInfo.toObject = function(includeInstance, msg) { var f, obj = { - peer: jspb.Message.getFieldWithDefault(msg, 1, ""), - createdTime: jspb.Message.getFieldWithDefault(msg, 2, 0), - version: jspb.Message.getFieldWithDefault(msg, 3, ""), - nonce: jspb.Message.getFieldWithDefault(msg, 4, 0), - bttcAddress: jspb.Message.getFieldWithDefault(msg, 5, ""), - signedTime: jspb.Message.getFieldWithDefault(msg, 6, 0) + nodeId: jspb.Message.getFieldWithDefault(msg, 1, ""), + node: (f = msg.getNode()) && github_com_tron$us_go$btfs$common_protos_node_node_pb.Node.toObject(includeInstance, f), + lastSignedInfo: (f = msg.getLastSignedInfo()) && proto.online.SignedInfo.toObject(includeInstance, f), + lastSignature: jspb.Message.getFieldWithDefault(msg, 4, ""), + lastTime: (f = msg.getLastTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f) }; if (includeInstance) { @@ -1018,23 +804,23 @@ proto.online.SignedInfo.toObject = function(includeInstance, msg) { /** * Deserializes binary data (in protobuf wire format). * @param {jspb.ByteSource} bytes The bytes to deserialize. - * @return {!proto.online.SignedInfo} + * @return {!proto.online.PayLoadInfo} */ -proto.online.SignedInfo.deserializeBinary = function(bytes) { +proto.online.PayLoadInfo.deserializeBinary = function(bytes) { var reader = new jspb.BinaryReader(bytes); - var msg = new proto.online.SignedInfo; - return proto.online.SignedInfo.deserializeBinaryFromReader(msg, reader); + var msg = new proto.online.PayLoadInfo; + return proto.online.PayLoadInfo.deserializeBinaryFromReader(msg, reader); }; /** * Deserializes binary data (in protobuf wire format) from the * given reader into the given message object. - * @param {!proto.online.SignedInfo} msg The message object to deserialize into. + * @param {!proto.online.PayLoadInfo} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. - * @return {!proto.online.SignedInfo} + * @return {!proto.online.PayLoadInfo} */ -proto.online.SignedInfo.deserializeBinaryFromReader = function(msg, reader) { +proto.online.PayLoadInfo.deserializeBinaryFromReader = function(msg, reader) { while (reader.nextField()) { if (reader.isEndGroup()) { break; @@ -1043,27 +829,26 @@ proto.online.SignedInfo.deserializeBinaryFromReader = function(msg, reader) { switch (field) { case 1: var value = /** @type {string} */ (reader.readString()); - msg.setPeer(value); + msg.setNodeId(value); break; case 2: - var value = /** @type {number} */ (reader.readUint32()); - msg.setCreatedTime(value); + var value = new github_com_tron$us_go$btfs$common_protos_node_node_pb.Node; + reader.readMessage(value,github_com_tron$us_go$btfs$common_protos_node_node_pb.Node.deserializeBinaryFromReader); + msg.setNode(value); break; case 3: - var value = /** @type {string} */ (reader.readString()); - msg.setVersion(value); + var value = new proto.online.SignedInfo; + reader.readMessage(value,proto.online.SignedInfo.deserializeBinaryFromReader); + msg.setLastSignedInfo(value); break; case 4: - var value = /** @type {number} */ (reader.readUint32()); - msg.setNonce(value); - break; - case 5: var value = /** @type {string} */ (reader.readString()); - msg.setBttcAddress(value); + msg.setLastSignature(value); break; - case 6: - var value = /** @type {number} */ (reader.readUint32()); - msg.setSignedTime(value); + case 5: + var value = new google_protobuf_timestamp_pb.Timestamp; + reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader); + msg.setLastTime(value); break; default: reader.skipField(); @@ -1078,9 +863,9 @@ proto.online.SignedInfo.deserializeBinaryFromReader = function(msg, reader) { * Serializes the message to binary data (in protobuf wire format). * @return {!Uint8Array} */ -proto.online.SignedInfo.prototype.serializeBinary = function() { +proto.online.PayLoadInfo.prototype.serializeBinary = function() { var writer = new jspb.BinaryWriter(); - proto.online.SignedInfo.serializeBinaryToWriter(this, writer); + proto.online.PayLoadInfo.serializeBinaryToWriter(this, writer); return writer.getResultBuffer(); }; @@ -1088,162 +873,197 @@ proto.online.SignedInfo.prototype.serializeBinary = function() { /** * Serializes the given message to binary data (in protobuf wire * format), writing to the given BinaryWriter. - * @param {!proto.online.SignedInfo} message + * @param {!proto.online.PayLoadInfo} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.SignedInfo.serializeBinaryToWriter = function(message, writer) { +proto.online.PayLoadInfo.serializeBinaryToWriter = function(message, writer) { var f = undefined; - f = message.getPeer(); + f = message.getNodeId(); if (f.length > 0) { writer.writeString( 1, f ); } - f = message.getCreatedTime(); - if (f !== 0) { - writer.writeUint32( + f = message.getNode(); + if (f != null) { + writer.writeMessage( 2, - f + f, + github_com_tron$us_go$btfs$common_protos_node_node_pb.Node.serializeBinaryToWriter ); } - f = message.getVersion(); - if (f.length > 0) { - writer.writeString( + f = message.getLastSignedInfo(); + if (f != null) { + writer.writeMessage( 3, - f - ); - } - f = message.getNonce(); - if (f !== 0) { - writer.writeUint32( - 4, - f + f, + proto.online.SignedInfo.serializeBinaryToWriter ); } - f = message.getBttcAddress(); + f = message.getLastSignature(); if (f.length > 0) { writer.writeString( - 5, + 4, f ); } - f = message.getSignedTime(); - if (f !== 0) { - writer.writeUint32( - 6, - f + f = message.getLastTime(); + if (f != null) { + writer.writeMessage( + 5, + f, + google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter ); } }; /** - * optional string peer = 1; + * optional string node_id = 1; * @return {string} */ -proto.online.SignedInfo.prototype.getPeer = function() { +proto.online.PayLoadInfo.prototype.getNodeId = function() { return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, "")); }; /** * @param {string} value - * @return {!proto.online.SignedInfo} returns this + * @return {!proto.online.PayLoadInfo} returns this */ -proto.online.SignedInfo.prototype.setPeer = function(value) { +proto.online.PayLoadInfo.prototype.setNodeId = function(value) { return jspb.Message.setProto3StringField(this, 1, value); }; /** - * optional uint32 created_time = 2; - * @return {number} + * optional node.Node node = 2; + * @return {?proto.node.Node} */ -proto.online.SignedInfo.prototype.getCreatedTime = function() { - return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0)); +proto.online.PayLoadInfo.prototype.getNode = function() { + return /** @type{?proto.node.Node} */ ( + jspb.Message.getWrapperField(this, github_com_tron$us_go$btfs$common_protos_node_node_pb.Node, 2)); }; /** - * @param {number} value - * @return {!proto.online.SignedInfo} returns this - */ -proto.online.SignedInfo.prototype.setCreatedTime = function(value) { - return jspb.Message.setProto3IntField(this, 2, value); + * @param {?proto.node.Node|undefined} value + * @return {!proto.online.PayLoadInfo} returns this +*/ +proto.online.PayLoadInfo.prototype.setNode = function(value) { + return jspb.Message.setWrapperField(this, 2, value); }; /** - * optional string version = 3; - * @return {string} + * Clears the message field making it undefined. + * @return {!proto.online.PayLoadInfo} returns this */ -proto.online.SignedInfo.prototype.getVersion = function() { - return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, "")); +proto.online.PayLoadInfo.prototype.clearNode = function() { + return this.setNode(undefined); }; /** - * @param {string} value - * @return {!proto.online.SignedInfo} returns this + * Returns whether this field is set. + * @return {boolean} */ -proto.online.SignedInfo.prototype.setVersion = function(value) { - return jspb.Message.setProto3StringField(this, 3, value); +proto.online.PayLoadInfo.prototype.hasNode = function() { + return jspb.Message.getField(this, 2) != null; }; /** - * optional uint32 nonce = 4; - * @return {number} + * optional SignedInfo last_signed_info = 3; + * @return {?proto.online.SignedInfo} */ -proto.online.SignedInfo.prototype.getNonce = function() { - return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 4, 0)); +proto.online.PayLoadInfo.prototype.getLastSignedInfo = function() { + return /** @type{?proto.online.SignedInfo} */ ( + jspb.Message.getWrapperField(this, proto.online.SignedInfo, 3)); }; /** - * @param {number} value - * @return {!proto.online.SignedInfo} returns this + * @param {?proto.online.SignedInfo|undefined} value + * @return {!proto.online.PayLoadInfo} returns this +*/ +proto.online.PayLoadInfo.prototype.setLastSignedInfo = function(value) { + return jspb.Message.setWrapperField(this, 3, value); +}; + + +/** + * Clears the message field making it undefined. + * @return {!proto.online.PayLoadInfo} returns this */ -proto.online.SignedInfo.prototype.setNonce = function(value) { - return jspb.Message.setProto3IntField(this, 4, value); +proto.online.PayLoadInfo.prototype.clearLastSignedInfo = function() { + return this.setLastSignedInfo(undefined); }; /** - * optional string bttc_address = 5; + * Returns whether this field is set. + * @return {boolean} + */ +proto.online.PayLoadInfo.prototype.hasLastSignedInfo = function() { + return jspb.Message.getField(this, 3) != null; +}; + + +/** + * optional string last_signature = 4; * @return {string} */ -proto.online.SignedInfo.prototype.getBttcAddress = function() { - return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, "")); +proto.online.PayLoadInfo.prototype.getLastSignature = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, "")); }; /** * @param {string} value - * @return {!proto.online.SignedInfo} returns this + * @return {!proto.online.PayLoadInfo} returns this */ -proto.online.SignedInfo.prototype.setBttcAddress = function(value) { - return jspb.Message.setProto3StringField(this, 5, value); +proto.online.PayLoadInfo.prototype.setLastSignature = function(value) { + return jspb.Message.setProto3StringField(this, 4, value); }; /** - * optional uint32 signed_time = 6; - * @return {number} + * optional google.protobuf.Timestamp last_time = 5; + * @return {?proto.google.protobuf.Timestamp} */ -proto.online.SignedInfo.prototype.getSignedTime = function() { - return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0)); +proto.online.PayLoadInfo.prototype.getLastTime = function() { + return /** @type{?proto.google.protobuf.Timestamp} */ ( + jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 5)); }; /** - * @param {number} value - * @return {!proto.online.SignedInfo} returns this + * @param {?proto.google.protobuf.Timestamp|undefined} value + * @return {!proto.online.PayLoadInfo} returns this +*/ +proto.online.PayLoadInfo.prototype.setLastTime = function(value) { + return jspb.Message.setWrapperField(this, 5, value); +}; + + +/** + * Clears the message field making it undefined. + * @return {!proto.online.PayLoadInfo} returns this */ -proto.online.SignedInfo.prototype.setSignedTime = function(value) { - return jspb.Message.setProto3IntField(this, 6, value); +proto.online.PayLoadInfo.prototype.clearLastTime = function() { + return this.setLastTime(undefined); +}; + + +/** + * Returns whether this field is set. + * @return {boolean} + */ +proto.online.PayLoadInfo.prototype.hasLastTime = function() { + return jspb.Message.getField(this, 5) != null; }; @@ -1263,8 +1083,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) { * http://goto/soy-param-migration * @return {!Object} */ -proto.online.ReqLatestSignReport.prototype.toObject = function(opt_includeInstance) { - return proto.online.ReqLatestSignReport.toObject(opt_includeInstance, this); +proto.online.RespSignMetrics.prototype.toObject = function(opt_includeInstance) { + return proto.online.RespSignMetrics.toObject(opt_includeInstance, this); }; @@ -1273,13 +1093,16 @@ proto.online.ReqLatestSignReport.prototype.toObject = function(opt_includeInstan * @param {boolean|undefined} includeInstance Deprecated. Whether to include * the JSPB instance for transitional soy proto support: * http://goto/soy-param-migration - * @param {!proto.online.ReqLatestSignReport} msg The msg instance to transform. + * @param {!proto.online.RespSignMetrics} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.ReqLatestSignReport.toObject = function(includeInstance, msg) { +proto.online.RespSignMetrics.toObject = function(includeInstance, msg) { var f, obj = { - nodeId: jspb.Message.getFieldWithDefault(msg, 1, "") + code: jspb.Message.getFieldWithDefault(msg, 1, 0), + message: jspb.Message.getFieldWithDefault(msg, 2, ""), + signedInfo: (f = msg.getSignedInfo()) && proto.online.SignedInfo.toObject(includeInstance, f), + signature: jspb.Message.getFieldWithDefault(msg, 4, "") }; if (includeInstance) { @@ -1293,23 +1116,23 @@ proto.online.ReqLatestSignReport.toObject = function(includeInstance, msg) { /** * Deserializes binary data (in protobuf wire format). * @param {jspb.ByteSource} bytes The bytes to deserialize. - * @return {!proto.online.ReqLatestSignReport} + * @return {!proto.online.RespSignMetrics} */ -proto.online.ReqLatestSignReport.deserializeBinary = function(bytes) { +proto.online.RespSignMetrics.deserializeBinary = function(bytes) { var reader = new jspb.BinaryReader(bytes); - var msg = new proto.online.ReqLatestSignReport; - return proto.online.ReqLatestSignReport.deserializeBinaryFromReader(msg, reader); + var msg = new proto.online.RespSignMetrics; + return proto.online.RespSignMetrics.deserializeBinaryFromReader(msg, reader); }; /** * Deserializes binary data (in protobuf wire format) from the * given reader into the given message object. - * @param {!proto.online.ReqLatestSignReport} msg The message object to deserialize into. + * @param {!proto.online.RespSignMetrics} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. - * @return {!proto.online.ReqLatestSignReport} + * @return {!proto.online.RespSignMetrics} */ -proto.online.ReqLatestSignReport.deserializeBinaryFromReader = function(msg, reader) { +proto.online.RespSignMetrics.deserializeBinaryFromReader = function(msg, reader) { while (reader.nextField()) { if (reader.isEndGroup()) { break; @@ -1317,8 +1140,21 @@ proto.online.ReqLatestSignReport.deserializeBinaryFromReader = function(msg, rea var field = reader.getFieldNumber(); switch (field) { case 1: + var value = /** @type {!proto.online.ResponseCode} */ (reader.readEnum()); + msg.setCode(value); + break; + case 2: var value = /** @type {string} */ (reader.readString()); - msg.setNodeId(value); + msg.setMessage(value); + break; + case 3: + var value = new proto.online.SignedInfo; + reader.readMessage(value,proto.online.SignedInfo.deserializeBinaryFromReader); + msg.setSignedInfo(value); + break; + case 4: + var value = /** @type {string} */ (reader.readString()); + msg.setSignature(value); break; default: reader.skipField(); @@ -1333,9 +1169,9 @@ proto.online.ReqLatestSignReport.deserializeBinaryFromReader = function(msg, rea * Serializes the message to binary data (in protobuf wire format). * @return {!Uint8Array} */ -proto.online.ReqLatestSignReport.prototype.serializeBinary = function() { +proto.online.RespSignMetrics.prototype.serializeBinary = function() { var writer = new jspb.BinaryWriter(); - proto.online.ReqLatestSignReport.serializeBinaryToWriter(this, writer); + proto.online.RespSignMetrics.serializeBinaryToWriter(this, writer); return writer.getResultBuffer(); }; @@ -1343,16 +1179,38 @@ proto.online.ReqLatestSignReport.prototype.serializeBinary = function() { /** * Serializes the given message to binary data (in protobuf wire * format), writing to the given BinaryWriter. - * @param {!proto.online.ReqLatestSignReport} message + * @param {!proto.online.RespSignMetrics} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.ReqLatestSignReport.serializeBinaryToWriter = function(message, writer) { +proto.online.RespSignMetrics.serializeBinaryToWriter = function(message, writer) { var f = undefined; - f = message.getNodeId(); + f = message.getCode(); + if (f !== 0.0) { + writer.writeEnum( + 1, + f + ); + } + f = message.getMessage(); if (f.length > 0) { writer.writeString( - 1, + 2, + f + ); + } + f = message.getSignedInfo(); + if (f != null) { + writer.writeMessage( + 3, + f, + proto.online.SignedInfo.serializeBinaryToWriter + ); + } + f = message.getSignature(); + if (f.length > 0) { + writer.writeString( + 4, f ); } @@ -1360,20 +1218,93 @@ proto.online.ReqLatestSignReport.serializeBinaryToWriter = function(message, wri /** - * optional string node_id = 1; + * optional ResponseCode code = 1; + * @return {!proto.online.ResponseCode} + */ +proto.online.RespSignMetrics.prototype.getCode = function() { + return /** @type {!proto.online.ResponseCode} */ (jspb.Message.getFieldWithDefault(this, 1, 0)); +}; + + +/** + * @param {!proto.online.ResponseCode} value + * @return {!proto.online.RespSignMetrics} returns this + */ +proto.online.RespSignMetrics.prototype.setCode = function(value) { + return jspb.Message.setProto3EnumField(this, 1, value); +}; + + +/** + * optional string message = 2; * @return {string} */ -proto.online.ReqLatestSignReport.prototype.getNodeId = function() { - return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, "")); +proto.online.RespSignMetrics.prototype.getMessage = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, "")); }; /** * @param {string} value - * @return {!proto.online.ReqLatestSignReport} returns this + * @return {!proto.online.RespSignMetrics} returns this */ -proto.online.ReqLatestSignReport.prototype.setNodeId = function(value) { - return jspb.Message.setProto3StringField(this, 1, value); +proto.online.RespSignMetrics.prototype.setMessage = function(value) { + return jspb.Message.setProto3StringField(this, 2, value); +}; + + +/** + * optional SignedInfo signed_info = 3; + * @return {?proto.online.SignedInfo} + */ +proto.online.RespSignMetrics.prototype.getSignedInfo = function() { + return /** @type{?proto.online.SignedInfo} */ ( + jspb.Message.getWrapperField(this, proto.online.SignedInfo, 3)); +}; + + +/** + * @param {?proto.online.SignedInfo|undefined} value + * @return {!proto.online.RespSignMetrics} returns this +*/ +proto.online.RespSignMetrics.prototype.setSignedInfo = function(value) { + return jspb.Message.setWrapperField(this, 3, value); +}; + + +/** + * Clears the message field making it undefined. + * @return {!proto.online.RespSignMetrics} returns this + */ +proto.online.RespSignMetrics.prototype.clearSignedInfo = function() { + return this.setSignedInfo(undefined); +}; + + +/** + * Returns whether this field is set. + * @return {boolean} + */ +proto.online.RespSignMetrics.prototype.hasSignedInfo = function() { + return jspb.Message.getField(this, 3) != null; +}; + + +/** + * optional string signature = 4; + * @return {string} + */ +proto.online.RespSignMetrics.prototype.getSignature = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, "")); +}; + + +/** + * @param {string} value + * @return {!proto.online.RespSignMetrics} returns this + */ +proto.online.RespSignMetrics.prototype.setSignature = function(value) { + return jspb.Message.setProto3StringField(this, 4, value); }; @@ -1393,8 +1324,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) { * http://goto/soy-param-migration * @return {!Object} */ -proto.online.Result.prototype.toObject = function(opt_includeInstance) { - return proto.online.Result.toObject(opt_includeInstance, this); +proto.online.SignedInfo.prototype.toObject = function(opt_includeInstance) { + return proto.online.SignedInfo.toObject(opt_includeInstance, this); }; @@ -1403,15 +1334,18 @@ proto.online.Result.prototype.toObject = function(opt_includeInstance) { * @param {boolean|undefined} includeInstance Deprecated. Whether to include * the JSPB instance for transitional soy proto support: * http://goto/soy-param-migration - * @param {!proto.online.Result} msg The msg instance to transform. + * @param {!proto.online.SignedInfo} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.Result.toObject = function(includeInstance, msg) { +proto.online.SignedInfo.toObject = function(includeInstance, msg) { var f, obj = { - code: jspb.Message.getFieldWithDefault(msg, 1, 0), - message: jspb.Message.getFieldWithDefault(msg, 2, ""), - responseTime: (f = msg.getResponseTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f) + peer: jspb.Message.getFieldWithDefault(msg, 1, ""), + createdTime: jspb.Message.getFieldWithDefault(msg, 2, 0), + version: jspb.Message.getFieldWithDefault(msg, 3, ""), + nonce: jspb.Message.getFieldWithDefault(msg, 4, 0), + bttcAddress: jspb.Message.getFieldWithDefault(msg, 5, ""), + signedTime: jspb.Message.getFieldWithDefault(msg, 6, 0) }; if (includeInstance) { @@ -1425,23 +1359,23 @@ proto.online.Result.toObject = function(includeInstance, msg) { /** * Deserializes binary data (in protobuf wire format). * @param {jspb.ByteSource} bytes The bytes to deserialize. - * @return {!proto.online.Result} + * @return {!proto.online.SignedInfo} */ -proto.online.Result.deserializeBinary = function(bytes) { +proto.online.SignedInfo.deserializeBinary = function(bytes) { var reader = new jspb.BinaryReader(bytes); - var msg = new proto.online.Result; - return proto.online.Result.deserializeBinaryFromReader(msg, reader); + var msg = new proto.online.SignedInfo; + return proto.online.SignedInfo.deserializeBinaryFromReader(msg, reader); }; /** * Deserializes binary data (in protobuf wire format) from the * given reader into the given message object. - * @param {!proto.online.Result} msg The message object to deserialize into. + * @param {!proto.online.SignedInfo} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. - * @return {!proto.online.Result} + * @return {!proto.online.SignedInfo} */ -proto.online.Result.deserializeBinaryFromReader = function(msg, reader) { +proto.online.SignedInfo.deserializeBinaryFromReader = function(msg, reader) { while (reader.nextField()) { if (reader.isEndGroup()) { break; @@ -1449,17 +1383,28 @@ proto.online.Result.deserializeBinaryFromReader = function(msg, reader) { var field = reader.getFieldNumber(); switch (field) { case 1: - var value = /** @type {!proto.online.ResponseCode} */ (reader.readEnum()); - msg.setCode(value); + var value = /** @type {string} */ (reader.readString()); + msg.setPeer(value); break; case 2: - var value = /** @type {string} */ (reader.readString()); - msg.setMessage(value); + var value = /** @type {number} */ (reader.readUint32()); + msg.setCreatedTime(value); break; case 3: - var value = new google_protobuf_timestamp_pb.Timestamp; - reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader); - msg.setResponseTime(value); + var value = /** @type {string} */ (reader.readString()); + msg.setVersion(value); + break; + case 4: + var value = /** @type {number} */ (reader.readUint32()); + msg.setNonce(value); + break; + case 5: + var value = /** @type {string} */ (reader.readString()); + msg.setBttcAddress(value); + break; + case 6: + var value = /** @type {number} */ (reader.readUint32()); + msg.setSignedTime(value); break; default: reader.skipField(); @@ -1474,9 +1419,9 @@ proto.online.Result.deserializeBinaryFromReader = function(msg, reader) { * Serializes the message to binary data (in protobuf wire format). * @return {!Uint8Array} */ -proto.online.Result.prototype.serializeBinary = function() { +proto.online.SignedInfo.prototype.serializeBinary = function() { var writer = new jspb.BinaryWriter(); - proto.online.Result.serializeBinaryToWriter(this, writer); + proto.online.SignedInfo.serializeBinaryToWriter(this, writer); return writer.getResultBuffer(); }; @@ -1484,107 +1429,162 @@ proto.online.Result.prototype.serializeBinary = function() { /** * Serializes the given message to binary data (in protobuf wire * format), writing to the given BinaryWriter. - * @param {!proto.online.Result} message + * @param {!proto.online.SignedInfo} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ -proto.online.Result.serializeBinaryToWriter = function(message, writer) { +proto.online.SignedInfo.serializeBinaryToWriter = function(message, writer) { var f = undefined; - f = message.getCode(); - if (f !== 0.0) { - writer.writeEnum( + f = message.getPeer(); + if (f.length > 0) { + writer.writeString( 1, f ); } - f = message.getMessage(); - if (f.length > 0) { - writer.writeString( + f = message.getCreatedTime(); + if (f !== 0) { + writer.writeUint32( 2, f ); } - f = message.getResponseTime(); - if (f != null) { - writer.writeMessage( + f = message.getVersion(); + if (f.length > 0) { + writer.writeString( 3, - f, - google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter + f + ); + } + f = message.getNonce(); + if (f !== 0) { + writer.writeUint32( + 4, + f + ); + } + f = message.getBttcAddress(); + if (f.length > 0) { + writer.writeString( + 5, + f + ); + } + f = message.getSignedTime(); + if (f !== 0) { + writer.writeUint32( + 6, + f ); } }; /** - * optional ResponseCode code = 1; - * @return {!proto.online.ResponseCode} + * optional string peer = 1; + * @return {string} */ -proto.online.Result.prototype.getCode = function() { - return /** @type {!proto.online.ResponseCode} */ (jspb.Message.getFieldWithDefault(this, 1, 0)); +proto.online.SignedInfo.prototype.getPeer = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, "")); }; /** - * @param {!proto.online.ResponseCode} value - * @return {!proto.online.Result} returns this + * @param {string} value + * @return {!proto.online.SignedInfo} returns this */ -proto.online.Result.prototype.setCode = function(value) { - return jspb.Message.setProto3EnumField(this, 1, value); +proto.online.SignedInfo.prototype.setPeer = function(value) { + return jspb.Message.setProto3StringField(this, 1, value); }; /** - * optional string message = 2; + * optional uint32 created_time = 2; + * @return {number} + */ +proto.online.SignedInfo.prototype.getCreatedTime = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0)); +}; + + +/** + * @param {number} value + * @return {!proto.online.SignedInfo} returns this + */ +proto.online.SignedInfo.prototype.setCreatedTime = function(value) { + return jspb.Message.setProto3IntField(this, 2, value); +}; + + +/** + * optional string version = 3; * @return {string} */ -proto.online.Result.prototype.getMessage = function() { - return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, "")); +proto.online.SignedInfo.prototype.getVersion = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, "")); }; /** * @param {string} value - * @return {!proto.online.Result} returns this + * @return {!proto.online.SignedInfo} returns this */ -proto.online.Result.prototype.setMessage = function(value) { - return jspb.Message.setProto3StringField(this, 2, value); +proto.online.SignedInfo.prototype.setVersion = function(value) { + return jspb.Message.setProto3StringField(this, 3, value); }; /** - * optional google.protobuf.Timestamp response_time = 3; - * @return {?proto.google.protobuf.Timestamp} + * optional uint32 nonce = 4; + * @return {number} */ -proto.online.Result.prototype.getResponseTime = function() { - return /** @type{?proto.google.protobuf.Timestamp} */ ( - jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 3)); +proto.online.SignedInfo.prototype.getNonce = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 4, 0)); }; /** - * @param {?proto.google.protobuf.Timestamp|undefined} value - * @return {!proto.online.Result} returns this -*/ -proto.online.Result.prototype.setResponseTime = function(value) { - return jspb.Message.setWrapperField(this, 3, value); + * @param {number} value + * @return {!proto.online.SignedInfo} returns this + */ +proto.online.SignedInfo.prototype.setNonce = function(value) { + return jspb.Message.setProto3IntField(this, 4, value); }; /** - * Clears the message field making it undefined. - * @return {!proto.online.Result} returns this + * optional string bttc_address = 5; + * @return {string} */ -proto.online.Result.prototype.clearResponseTime = function() { - return this.setResponseTime(undefined); +proto.online.SignedInfo.prototype.getBttcAddress = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, "")); }; /** - * Returns whether this field is set. - * @return {boolean} + * @param {string} value + * @return {!proto.online.SignedInfo} returns this */ -proto.online.Result.prototype.hasResponseTime = function() { - return jspb.Message.getField(this, 3) != null; +proto.online.SignedInfo.prototype.setBttcAddress = function(value) { + return jspb.Message.setProto3StringField(this, 5, value); +}; + + +/** + * optional uint32 signed_time = 6; + * @return {number} + */ +proto.online.SignedInfo.prototype.getSignedTime = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0)); +}; + + +/** + * @param {number} value + * @return {!proto.online.SignedInfo} returns this + */ +proto.online.SignedInfo.prototype.setSignedTime = function(value) { + return jspb.Message.setProto3IntField(this, 6, value); }; diff --git a/protos/online/online.pb.go b/protos/online/online.pb.go index 9e5e3a6..c70465d 100644 --- a/protos/online/online.pb.go +++ b/protos/online/online.pb.go @@ -68,6 +68,124 @@ func (ResponseCode) EnumDescriptor() ([]byte, []int) { return fileDescriptor_ee5923c3111b600a, []int{0} } +type ReqLastDailySignedInfo struct { + PeerId string `protobuf:"bytes,1,opt,name=peer_id,json=peerId,proto3" json:"peer_id,omitempty" pg:"peer_id"` + XXX_NoUnkeyedLiteral struct{} `json:"-" pg:"-"` + XXX_unrecognized []byte `json:"-" pg:"-"` + XXX_sizecache int32 `json:"-" pg:"-"` +} + +func (m *ReqLastDailySignedInfo) Reset() { *m = ReqLastDailySignedInfo{} } +func (m *ReqLastDailySignedInfo) String() string { return proto.CompactTextString(m) } +func (*ReqLastDailySignedInfo) ProtoMessage() {} +func (*ReqLastDailySignedInfo) Descriptor() ([]byte, []int) { + return fileDescriptor_ee5923c3111b600a, []int{0} +} +func (m *ReqLastDailySignedInfo) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ReqLastDailySignedInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ReqLastDailySignedInfo.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ReqLastDailySignedInfo) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReqLastDailySignedInfo.Merge(m, src) +} +func (m *ReqLastDailySignedInfo) XXX_Size() int { + return m.Size() +} +func (m *ReqLastDailySignedInfo) XXX_DiscardUnknown() { + xxx_messageInfo_ReqLastDailySignedInfo.DiscardUnknown(m) +} + +var xxx_messageInfo_ReqLastDailySignedInfo proto.InternalMessageInfo + +func (m *ReqLastDailySignedInfo) GetPeerId() string { + if m != nil { + return m.PeerId + } + return "" +} + +func (*ReqLastDailySignedInfo) XXX_MessageName() string { + return "online.ReqLastDailySignedInfo" +} + +type Result struct { + Code ResponseCode `protobuf:"varint,1,opt,name=code,proto3,enum=online.ResponseCode" json:"code,omitempty" pg:"code"` + Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty" pg:"message"` + ResponseTime time.Time `protobuf:"bytes,3,opt,name=response_time,json=responseTime,proto3,stdtime" json:"response_time" pg:"response_time"` + XXX_NoUnkeyedLiteral struct{} `json:"-" pg:"-"` + XXX_unrecognized []byte `json:"-" pg:"-"` + XXX_sizecache int32 `json:"-" pg:"-"` +} + +func (m *Result) Reset() { *m = Result{} } +func (m *Result) String() string { return proto.CompactTextString(m) } +func (*Result) ProtoMessage() {} +func (*Result) Descriptor() ([]byte, []int) { + return fileDescriptor_ee5923c3111b600a, []int{1} +} +func (m *Result) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Result) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Result.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Result) XXX_Merge(src proto.Message) { + xxx_messageInfo_Result.Merge(m, src) +} +func (m *Result) XXX_Size() int { + return m.Size() +} +func (m *Result) XXX_DiscardUnknown() { + xxx_messageInfo_Result.DiscardUnknown(m) +} + +var xxx_messageInfo_Result proto.InternalMessageInfo + +func (m *Result) GetCode() ResponseCode { + if m != nil { + return m.Code + } + return ResponseCode_SUCCESS +} + +func (m *Result) GetMessage() string { + if m != nil { + return m.Message + } + return "" +} + +func (m *Result) GetResponseTime() time.Time { + if m != nil { + return m.ResponseTime + } + return time.Time{} +} + +func (*Result) XXX_MessageName() string { + return "online.Result" +} + type ReqSignMetrics struct { PublicKey []byte `protobuf:"bytes,1,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty" pg:"public_key"` Signature []byte `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty" pg:"signature"` @@ -81,7 +199,7 @@ func (m *ReqSignMetrics) Reset() { *m = ReqSignMetrics{} } func (m *ReqSignMetrics) String() string { return proto.CompactTextString(m) } func (*ReqSignMetrics) ProtoMessage() {} func (*ReqSignMetrics) Descriptor() ([]byte, []int) { - return fileDescriptor_ee5923c3111b600a, []int{0} + return fileDescriptor_ee5923c3111b600a, []int{2} } func (m *ReqSignMetrics) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -150,7 +268,7 @@ func (m *PayLoadInfo) Reset() { *m = PayLoadInfo{} } func (m *PayLoadInfo) String() string { return proto.CompactTextString(m) } func (*PayLoadInfo) ProtoMessage() {} func (*PayLoadInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_ee5923c3111b600a, []int{1} + return fileDescriptor_ee5923c3111b600a, []int{3} } func (m *PayLoadInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -232,7 +350,7 @@ func (m *RespSignMetrics) Reset() { *m = RespSignMetrics{} } func (m *RespSignMetrics) String() string { return proto.CompactTextString(m) } func (*RespSignMetrics) ProtoMessage() {} func (*RespSignMetrics) Descriptor() ([]byte, []int) { - return fileDescriptor_ee5923c3111b600a, []int{2} + return fileDescriptor_ee5923c3111b600a, []int{4} } func (m *RespSignMetrics) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -309,7 +427,7 @@ func (m *SignedInfo) Reset() { *m = SignedInfo{} } func (m *SignedInfo) String() string { return proto.CompactTextString(m) } func (*SignedInfo) ProtoMessage() {} func (*SignedInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_ee5923c3111b600a, []int{3} + return fileDescriptor_ee5923c3111b600a, []int{5} } func (m *SignedInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -383,127 +501,13 @@ func (m *SignedInfo) GetSignedTime() uint32 { func (*SignedInfo) XXX_MessageName() string { return "online.SignedInfo" } - -type ReqLatestSignReport struct { - NodeId string `protobuf:"bytes,1,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty" pg:"node_id"` - XXX_NoUnkeyedLiteral struct{} `json:"-" pg:"-"` - XXX_unrecognized []byte `json:"-" pg:"-"` - XXX_sizecache int32 `json:"-" pg:"-"` -} - -func (m *ReqLatestSignReport) Reset() { *m = ReqLatestSignReport{} } -func (m *ReqLatestSignReport) String() string { return proto.CompactTextString(m) } -func (*ReqLatestSignReport) ProtoMessage() {} -func (*ReqLatestSignReport) Descriptor() ([]byte, []int) { - return fileDescriptor_ee5923c3111b600a, []int{4} -} -func (m *ReqLatestSignReport) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ReqLatestSignReport) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_ReqLatestSignReport.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *ReqLatestSignReport) XXX_Merge(src proto.Message) { - xxx_messageInfo_ReqLatestSignReport.Merge(m, src) -} -func (m *ReqLatestSignReport) XXX_Size() int { - return m.Size() -} -func (m *ReqLatestSignReport) XXX_DiscardUnknown() { - xxx_messageInfo_ReqLatestSignReport.DiscardUnknown(m) -} - -var xxx_messageInfo_ReqLatestSignReport proto.InternalMessageInfo - -func (m *ReqLatestSignReport) GetNodeId() string { - if m != nil { - return m.NodeId - } - return "" -} - -func (*ReqLatestSignReport) XXX_MessageName() string { - return "online.ReqLatestSignReport" -} - -type Result struct { - Code ResponseCode `protobuf:"varint,1,opt,name=code,proto3,enum=online.ResponseCode" json:"code,omitempty" pg:"code"` - Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty" pg:"message"` - ResponseTime time.Time `protobuf:"bytes,3,opt,name=response_time,json=responseTime,proto3,stdtime" json:"response_time" pg:"response_time"` - XXX_NoUnkeyedLiteral struct{} `json:"-" pg:"-"` - XXX_unrecognized []byte `json:"-" pg:"-"` - XXX_sizecache int32 `json:"-" pg:"-"` -} - -func (m *Result) Reset() { *m = Result{} } -func (m *Result) String() string { return proto.CompactTextString(m) } -func (*Result) ProtoMessage() {} -func (*Result) Descriptor() ([]byte, []int) { - return fileDescriptor_ee5923c3111b600a, []int{5} -} -func (m *Result) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *Result) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_Result.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *Result) XXX_Merge(src proto.Message) { - xxx_messageInfo_Result.Merge(m, src) -} -func (m *Result) XXX_Size() int { - return m.Size() -} -func (m *Result) XXX_DiscardUnknown() { - xxx_messageInfo_Result.DiscardUnknown(m) -} - -var xxx_messageInfo_Result proto.InternalMessageInfo - -func (m *Result) GetCode() ResponseCode { - if m != nil { - return m.Code - } - return ResponseCode_SUCCESS -} - -func (m *Result) GetMessage() string { - if m != nil { - return m.Message - } - return "" -} - -func (m *Result) GetResponseTime() time.Time { - if m != nil { - return m.ResponseTime - } - return time.Time{} -} - -func (*Result) XXX_MessageName() string { - return "online.Result" -} func init() { proto.RegisterEnum("online.ResponseCode", ResponseCode_name, ResponseCode_value) golang_proto.RegisterEnum("online.ResponseCode", ResponseCode_name, ResponseCode_value) + proto.RegisterType((*ReqLastDailySignedInfo)(nil), "online.ReqLastDailySignedInfo") + golang_proto.RegisterType((*ReqLastDailySignedInfo)(nil), "online.ReqLastDailySignedInfo") + proto.RegisterType((*Result)(nil), "online.Result") + golang_proto.RegisterType((*Result)(nil), "online.Result") proto.RegisterType((*ReqSignMetrics)(nil), "online.ReqSignMetrics") golang_proto.RegisterType((*ReqSignMetrics)(nil), "online.ReqSignMetrics") proto.RegisterType((*PayLoadInfo)(nil), "online.PayLoadInfo") @@ -512,65 +516,62 @@ func init() { golang_proto.RegisterType((*RespSignMetrics)(nil), "online.RespSignMetrics") proto.RegisterType((*SignedInfo)(nil), "online.SignedInfo") golang_proto.RegisterType((*SignedInfo)(nil), "online.SignedInfo") - proto.RegisterType((*ReqLatestSignReport)(nil), "online.ReqLatestSignReport") - golang_proto.RegisterType((*ReqLatestSignReport)(nil), "online.ReqLatestSignReport") - proto.RegisterType((*Result)(nil), "online.Result") - golang_proto.RegisterType((*Result)(nil), "online.Result") } func init() { proto.RegisterFile("protos/online/online.proto", fileDescriptor_ee5923c3111b600a) } func init() { golang_proto.RegisterFile("protos/online/online.proto", fileDescriptor_ee5923c3111b600a) } var fileDescriptor_ee5923c3111b600a = []byte{ - // 757 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0xcb, 0x6e, 0xeb, 0x44, - 0x18, 0x3e, 0x73, 0x9a, 0x93, 0x36, 0xbf, 0x93, 0xb4, 0x9d, 0x96, 0x36, 0x04, 0x48, 0x20, 0x12, - 0x52, 0x85, 0x54, 0x07, 0xa5, 0x1b, 0x16, 0x48, 0x28, 0x37, 0xda, 0xa8, 0x4d, 0x13, 0x8d, 0x93, - 0x0d, 0x1b, 0xcb, 0xb1, 0x27, 0xc6, 0xc2, 0xf1, 0xb8, 0x9e, 0x49, 0xa5, 0xbc, 0x05, 0x3b, 0x78, - 0x04, 0xde, 0x80, 0x2d, 0xcb, 0x2e, 0x79, 0x02, 0x40, 0xad, 0xc4, 0x92, 0x67, 0x40, 0x33, 0x63, - 0x37, 0xe6, 0x52, 0x09, 0xa4, 0xb3, 0xb1, 0xe7, 0xbf, 0xff, 0xdf, 0xf7, 0x8d, 0x06, 0xea, 0x71, - 0xc2, 0x04, 0xe3, 0x6d, 0x16, 0x85, 0x41, 0x44, 0xd3, 0x9f, 0xa9, 0x9c, 0xb8, 0xa8, 0xad, 0xfa, - 0x67, 0x7e, 0x20, 0xbe, 0x5e, 0x2f, 0x4c, 0x97, 0xad, 0xda, 0x22, 0x61, 0xd1, 0xf9, 0x9a, 0xb7, - 0x7d, 0x76, 0xbe, 0x10, 0x4b, 0x7e, 0xee, 0xb2, 0xd5, 0x8a, 0x45, 0xed, 0xb4, 0x4b, 0xc4, 0x3c, - 0xaa, 0x3e, 0xba, 0x43, 0xfd, 0xd3, 0x7f, 0xa9, 0x54, 0x91, 0xc5, 0x7a, 0xd9, 0xf6, 0x99, 0xcf, - 0x94, 0xa1, 0x4e, 0x69, 0x45, 0xd3, 0x67, 0xcc, 0x0f, 0xe9, 0x36, 0x4b, 0x04, 0x2b, 0xca, 0x85, - 0xb3, 0x8a, 0x75, 0x42, 0xcb, 0x87, 0x2a, 0xa1, 0x77, 0x56, 0xe0, 0x47, 0x63, 0x2a, 0x92, 0xc0, - 0xe5, 0xf8, 0x03, 0x80, 0x78, 0xbd, 0x08, 0x03, 0xd7, 0xfe, 0x86, 0x6e, 0x6a, 0xe8, 0x43, 0x74, - 0x56, 0x26, 0x25, 0xed, 0xb9, 0xa6, 0x1b, 0xfc, 0x3e, 0x94, 0x78, 0xe0, 0x47, 0x8e, 0x58, 0x27, - 0xb4, 0xf6, 0x5a, 0x47, 0x9f, 0x1d, 0xb8, 0x06, 0xbb, 0xb1, 0xb3, 0x09, 0x99, 0xe3, 0xd5, 0x76, - 0x54, 0x2c, 0x33, 0x5b, 0x7f, 0x20, 0x30, 0xa6, 0xce, 0xe6, 0x86, 0x39, 0xde, 0x28, 0x5a, 0x32, - 0x7c, 0x0a, 0xbb, 0x12, 0x99, 0x1d, 0x78, 0x6a, 0x46, 0x89, 0x14, 0xa5, 0x39, 0xf2, 0x70, 0x03, - 0x0a, 0xf2, 0xa4, 0x7a, 0x1b, 0x1d, 0x30, 0x15, 0xfe, 0x5b, 0xe6, 0x51, 0xa2, 0xfc, 0xf8, 0x73, - 0x38, 0x08, 0x1d, 0x2e, 0x6c, 0x39, 0x94, 0x7a, 0x76, 0x10, 0x2d, 0x99, 0x9a, 0x65, 0x74, 0xb0, - 0x99, 0xf2, 0x6d, 0xa9, 0x90, 0x1c, 0x43, 0xaa, 0x32, 0x77, 0x6b, 0xe3, 0x8f, 0xa1, 0xfa, 0x5c, - 0xad, 0x31, 0x14, 0xd4, 0xf4, 0x4a, 0x96, 0xa7, 0x71, 0x74, 0xa1, 0xa4, 0xd2, 0x24, 0x5d, 0xb5, - 0x37, 0xaa, 0x7b, 0xdd, 0xd4, 0x5c, 0x9a, 0x19, 0x97, 0xe6, 0x2c, 0xe3, 0xb2, 0xb7, 0xf7, 0xf0, - 0x4b, 0xf3, 0xd5, 0xb7, 0xbf, 0x36, 0x11, 0xd9, 0x93, 0x65, 0x32, 0xd0, 0xfa, 0x01, 0xc1, 0x3e, - 0xa1, 0x3c, 0xce, 0x73, 0x7b, 0x06, 0x05, 0x57, 0x62, 0x93, 0x88, 0xab, 0x9d, 0xe3, 0x6c, 0x5f, - 0x99, 0xc6, 0x22, 0x4e, 0xfb, 0x0a, 0xa5, 0xcc, 0x90, 0x44, 0xae, 0x28, 0xe7, 0x8e, 0xaf, 0x89, - 0x28, 0x91, 0xcc, 0xc4, 0x17, 0x60, 0xfc, 0x37, 0xe8, 0xc0, 0xb7, 0xb0, 0xff, 0xa2, 0x9a, 0x46, - 0xbc, 0x75, 0xb4, 0x7e, 0x44, 0x00, 0x39, 0x8e, 0x30, 0x14, 0x62, 0x4a, 0x93, 0x54, 0x17, 0x75, - 0xc6, 0x1f, 0x41, 0xd9, 0x4d, 0xa8, 0x23, 0xa8, 0xa7, 0x39, 0x91, 0x4b, 0x55, 0x88, 0x91, 0xfa, - 0x24, 0x60, 0xb9, 0xf2, 0x3d, 0x4d, 0x78, 0xc0, 0x22, 0xb5, 0x54, 0x89, 0x64, 0x26, 0x3e, 0x86, - 0x37, 0x11, 0x8b, 0x5c, 0x3d, 0xb9, 0x42, 0xb4, 0x21, 0x5b, 0x2e, 0x84, 0x70, 0x6d, 0xc7, 0xf3, - 0x12, 0xca, 0xb9, 0xa2, 0xb9, 0x44, 0x0c, 0xe9, 0xeb, 0x6a, 0x17, 0x6e, 0x3e, 0x63, 0x55, 0x43, - 0x8b, 0xaa, 0x3c, 0xc5, 0xa5, 0x48, 0x36, 0xe1, 0x88, 0xd0, 0xbb, 0x1b, 0x47, 0x50, 0xad, 0x1e, - 0xa1, 0x31, 0x4b, 0xc4, 0x8b, 0x97, 0xab, 0xf5, 0x1d, 0x82, 0x22, 0xa1, 0x7c, 0x1d, 0x8a, 0xb7, - 0xa2, 0xc5, 0x08, 0x2a, 0x49, 0x9a, 0xaf, 0x37, 0xdc, 0xf9, 0x1f, 0x57, 0xa5, 0x9c, 0x95, 0xca, - 0xe0, 0x27, 0xf7, 0x50, 0xce, 0x8f, 0xc6, 0x06, 0xec, 0x5a, 0xf3, 0x7e, 0x7f, 0x68, 0x59, 0x07, - 0xaf, 0x70, 0x1d, 0x4e, 0xac, 0xd1, 0xe5, 0x6d, 0x77, 0x36, 0x27, 0x43, 0xfb, 0xcb, 0x09, 0x19, - 0x77, 0x67, 0xf6, 0x90, 0x90, 0x09, 0x39, 0x40, 0xf8, 0x5d, 0x78, 0xa7, 0x3f, 0x19, 0x4f, 0xe7, - 0xb3, 0xa1, 0xdd, 0x1d, 0x0c, 0xc8, 0xd0, 0xb2, 0xd2, 0xd0, 0x6b, 0x7c, 0x08, 0x95, 0xd9, 0x68, - 0x3c, 0x9c, 0xcc, 0xb3, 0xec, 0x1d, 0xbc, 0x0f, 0xc6, 0x64, 0x76, 0x35, 0x24, 0xa9, 0xe3, 0xb8, - 0xf3, 0x3b, 0x82, 0xca, 0x44, 0x41, 0xb7, 0x68, 0x72, 0x1f, 0xb8, 0x14, 0x0f, 0xe0, 0x70, 0x1e, - 0x7b, 0x8e, 0xa0, 0xf9, 0x9b, 0x7b, 0xb2, 0xe5, 0x27, 0xff, 0x5a, 0xd4, 0x4f, 0xf3, 0xbc, 0xe5, - 0x0b, 0x7a, 0x50, 0x1b, 0xb0, 0x81, 0x13, 0x84, 0x9b, 0xad, 0x2e, 0x57, 0x4e, 0xe4, 0x85, 0x34, - 0x79, 0xb1, 0x59, 0x35, 0xd7, 0x4c, 0x4a, 0x74, 0x0d, 0x47, 0x97, 0x54, 0xfc, 0x43, 0xdd, 0xf7, - 0x72, 0xe5, 0x7f, 0x0f, 0xbe, 0xb8, 0x50, 0xef, 0x8b, 0x87, 0xc7, 0x06, 0xfa, 0xf9, 0xb1, 0x81, - 0x7e, 0x7b, 0x6c, 0xa0, 0xef, 0x9f, 0x1a, 0xe8, 0xa7, 0xa7, 0x06, 0x7a, 0x78, 0x6a, 0x20, 0xa8, - 0x06, 0xcc, 0x94, 0xaf, 0x6f, 0x5a, 0xd9, 0x33, 0x34, 0x1f, 0x53, 0x29, 0xde, 0x14, 0x7d, 0x95, - 0xbe, 0xdb, 0x8b, 0xa2, 0x52, 0xf3, 0xe2, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9b, 0xd9, 0x02, - 0x60, 0xe4, 0x05, 0x00, 0x00, + // 774 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x4f, 0x4f, 0xe3, 0x46, + 0x14, 0x67, 0x20, 0x04, 0xf2, 0x9c, 0x04, 0x18, 0x51, 0x48, 0xa3, 0xe2, 0xd0, 0x48, 0x95, 0x50, + 0x25, 0x9c, 0x36, 0x5c, 0x7a, 0xa8, 0x54, 0x85, 0x24, 0x85, 0xa8, 0x84, 0x44, 0xe3, 0x44, 0xaa, + 0x7a, 0xb1, 0x1c, 0x7b, 0xe2, 0x5a, 0x75, 0x3c, 0xc6, 0x33, 0x41, 0xca, 0xb7, 0xe8, 0xad, 0xfd, + 0x08, 0xfd, 0x06, 0xbd, 0xf6, 0xc8, 0xb1, 0x9f, 0xa0, 0xad, 0xe0, 0xde, 0xdb, 0xde, 0x57, 0x33, + 0xb6, 0x89, 0x57, 0x02, 0x69, 0x57, 0xda, 0x4b, 0x32, 0xef, 0xcd, 0x7b, 0x6f, 0x7e, 0x7f, 0x3c, + 0x03, 0xf5, 0x28, 0x66, 0x82, 0xf1, 0x16, 0x0b, 0x03, 0x3f, 0xa4, 0xe9, 0x9f, 0xa1, 0x92, 0xb8, + 0x98, 0x44, 0xf5, 0x6f, 0x3c, 0x5f, 0xfc, 0xbc, 0x9c, 0x19, 0x0e, 0x5b, 0xb4, 0x44, 0xcc, 0xc2, + 0xf3, 0x25, 0x6f, 0x79, 0xec, 0x7c, 0x26, 0xe6, 0xfc, 0xdc, 0x61, 0x8b, 0x05, 0x0b, 0x5b, 0xe9, + 0x94, 0x90, 0xb9, 0x54, 0xfd, 0x24, 0x13, 0xea, 0x5f, 0xbd, 0xd0, 0xa9, 0x76, 0x66, 0xcb, 0x79, + 0xcb, 0x63, 0x1e, 0x53, 0x81, 0x5a, 0xa5, 0x1d, 0x0d, 0x8f, 0x31, 0x2f, 0xa0, 0xeb, 0x2a, 0xe1, + 0x2f, 0x28, 0x17, 0xf6, 0x22, 0x4a, 0x0a, 0x9a, 0x5f, 0xc3, 0x11, 0xa1, 0x77, 0x37, 0x36, 0x17, + 0x3d, 0xdb, 0x0f, 0x56, 0xa6, 0xef, 0x85, 0xd4, 0x1d, 0x84, 0x73, 0x86, 0x8f, 0x61, 0x27, 0xa2, + 0x34, 0xb6, 0x7c, 0xb7, 0x86, 0x4e, 0xd1, 0x59, 0x89, 0x14, 0x65, 0x38, 0x70, 0x9b, 0xbf, 0x21, + 0x28, 0x12, 0xca, 0x97, 0x81, 0xc0, 0x67, 0x50, 0x70, 0x98, 0x4b, 0x55, 0x41, 0xb5, 0x7d, 0x68, + 0xa4, 0x7c, 0x09, 0xe5, 0x11, 0x0b, 0x39, 0xed, 0x32, 0x97, 0x12, 0x55, 0x81, 0x6b, 0xb0, 0xb3, + 0xa0, 0x9c, 0xdb, 0x1e, 0xad, 0x6d, 0xaa, 0x69, 0x59, 0x88, 0x07, 0x50, 0x89, 0xd3, 0x7a, 0x4b, + 0xa2, 0xab, 0x6d, 0x9d, 0xa2, 0x33, 0xad, 0x5d, 0x37, 0x12, 0xe8, 0x46, 0x06, 0xdd, 0x98, 0x64, + 0xd0, 0x2f, 0x77, 0x1f, 0xfe, 0x69, 0x6c, 0xfc, 0xfa, 0x6f, 0x03, 0x91, 0x72, 0xd6, 0x2a, 0x37, + 0x9b, 0x1e, 0x54, 0x09, 0xbd, 0x93, 0x1c, 0x86, 0x54, 0xc4, 0xbe, 0xc3, 0xf1, 0x09, 0x40, 0xb4, + 0x9c, 0x05, 0xbe, 0x63, 0xfd, 0x42, 0x57, 0x0a, 0x66, 0x99, 0x94, 0x92, 0xcc, 0x0f, 0x74, 0x85, + 0x3f, 0x83, 0x12, 0xf7, 0xbd, 0xd0, 0x16, 0xcb, 0x38, 0xc1, 0x55, 0x26, 0xeb, 0x84, 0xc4, 0x1c, + 0xd9, 0xab, 0x80, 0xd9, 0xae, 0xc2, 0x54, 0x26, 0x59, 0xd8, 0xfc, 0x1f, 0x81, 0x36, 0xb6, 0x57, + 0x37, 0xcc, 0x7e, 0xd6, 0x4a, 0xda, 0x94, 0xd3, 0x4a, 0x86, 0x03, 0x17, 0xeb, 0x50, 0x90, 0x2b, + 0x35, 0x5b, 0x6b, 0x83, 0xa1, 0xcc, 0xbc, 0x55, 0xb2, 0xc8, 0x25, 0xfe, 0x16, 0xf6, 0x03, 0x9b, + 0x0b, 0x8b, 0x2b, 0xdd, 0x2d, 0x3f, 0x9c, 0xb3, 0x94, 0x3f, 0xce, 0xc4, 0x5c, 0x5b, 0x42, 0xaa, + 0xb2, 0x36, 0x67, 0xd1, 0x17, 0x50, 0x7d, 0xee, 0x4e, 0x38, 0x14, 0xd4, 0xe9, 0x95, 0xac, 0x2e, + 0xe1, 0xd1, 0x81, 0x92, 0x2a, 0x53, 0xea, 0x6e, 0x7f, 0x80, 0xba, 0xbb, 0xb2, 0x4d, 0x29, 0xfb, + 0x07, 0x82, 0x3d, 0xe9, 0x6a, 0x5e, 0xdb, 0x8f, 0x61, 0xfe, 0x05, 0x68, 0xef, 0x47, 0x1d, 0xf8, + 0x9a, 0xf6, 0x3b, 0xae, 0x25, 0x8c, 0xd7, 0x89, 0xe6, 0x9f, 0x08, 0x20, 0xa7, 0x11, 0x86, 0x82, + 0xfc, 0x6e, 0x53, 0x5f, 0xd4, 0x1a, 0x7f, 0x0e, 0x65, 0x27, 0xa6, 0xb6, 0xa0, 0x6e, 0xa2, 0x89, + 0x04, 0x55, 0x21, 0x5a, 0x9a, 0x93, 0x84, 0x25, 0xe4, 0x7b, 0x1a, 0x73, 0x9f, 0x85, 0x0a, 0x54, + 0x89, 0x64, 0x21, 0x3e, 0x84, 0xed, 0x90, 0x85, 0x4e, 0x72, 0x72, 0x85, 0x24, 0x81, 0x1c, 0x39, + 0x13, 0xc2, 0xb1, 0x6c, 0xd7, 0x8d, 0x29, 0xe7, 0x4a, 0xe6, 0x12, 0xd1, 0x64, 0xae, 0x93, 0xa4, + 0x70, 0xe3, 0x99, 0xab, 0x3a, 0xb4, 0xa8, 0xda, 0x53, 0x5e, 0xf2, 0xcc, 0x2f, 0xef, 0xa1, 0x9c, + 0x17, 0x0f, 0x6b, 0xb0, 0x63, 0x4e, 0xbb, 0xdd, 0xbe, 0x69, 0xee, 0x6f, 0xe0, 0x3a, 0x1c, 0x99, + 0x83, 0xab, 0xdb, 0xce, 0x64, 0x4a, 0xfa, 0xd6, 0xf7, 0x23, 0x32, 0xec, 0x4c, 0xac, 0x3e, 0x21, + 0x23, 0xb2, 0x8f, 0xf0, 0xa7, 0xf0, 0x49, 0x77, 0x34, 0x1c, 0x4f, 0x27, 0x7d, 0xab, 0xd3, 0xeb, + 0x91, 0xbe, 0x69, 0xa6, 0x5b, 0x9b, 0xf8, 0x00, 0x2a, 0x93, 0xc1, 0xb0, 0x3f, 0x9a, 0x66, 0xd5, + 0x5b, 0x78, 0x0f, 0xb4, 0xd1, 0xe4, 0xba, 0x4f, 0xd2, 0xc4, 0x61, 0xfb, 0x0d, 0x82, 0xca, 0x48, + 0x29, 0x6e, 0xd2, 0xf8, 0xde, 0x77, 0x28, 0xee, 0xc1, 0xc1, 0x34, 0x72, 0x6d, 0x41, 0xf3, 0x7e, + 0x1f, 0xad, 0x1d, 0xce, 0xdf, 0xb1, 0xfa, 0x71, 0xde, 0xf9, 0x7c, 0x43, 0x0f, 0xea, 0x3d, 0x96, + 0x3c, 0x2b, 0xc2, 0x16, 0x4b, 0x4e, 0x68, 0xc4, 0x62, 0x71, 0x6d, 0x87, 0x6e, 0x40, 0xe3, 0x57, + 0xc7, 0x55, 0x73, 0xe3, 0xe4, 0x1b, 0xf3, 0x23, 0x9c, 0x5c, 0x51, 0xf1, 0xc2, 0x0b, 0x95, 0x0d, + 0xd2, 0x73, 0x83, 0x5e, 0x28, 0x7b, 0x15, 0xdf, 0xe5, 0x77, 0x0f, 0x8f, 0x3a, 0xfa, 0xfb, 0x51, + 0x47, 0xff, 0x3d, 0xea, 0xe8, 0xf7, 0x27, 0x1d, 0xfd, 0xf5, 0xa4, 0xa3, 0x87, 0x27, 0x1d, 0x41, + 0xd5, 0x67, 0x86, 0x7c, 0x8f, 0xd3, 0xce, 0x4b, 0x2d, 0x91, 0x67, 0x2c, 0x2f, 0xcb, 0x18, 0xfd, + 0x94, 0xbe, 0xe4, 0xb3, 0xa2, 0xba, 0x3d, 0x17, 0x6f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x2a, 0x1b, + 0x2f, 0xfd, 0xf6, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -586,8 +587,8 @@ const _ = grpc.SupportPackageIsVersion4 // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. type OnlineServiceClient interface { UpdateSignMetrics(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*RespSignMetrics, error) - DoDailySignReportHandler(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*Result, error) - GetLatestSignReport(ctx context.Context, in *ReqLatestSignReport, opts ...grpc.CallOption) (*RespSignMetrics, error) + DoDailyStatusReportHandler(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*Result, error) + GetLastDailySignedInfoHandler(ctx context.Context, in *ReqLastDailySignedInfo, opts ...grpc.CallOption) (*RespSignMetrics, error) } type onlineServiceClient struct { @@ -607,18 +608,18 @@ func (c *onlineServiceClient) UpdateSignMetrics(ctx context.Context, in *ReqSign return out, nil } -func (c *onlineServiceClient) DoDailySignReportHandler(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*Result, error) { +func (c *onlineServiceClient) DoDailyStatusReportHandler(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*Result, error) { out := new(Result) - err := c.cc.Invoke(ctx, "/online.OnlineService/DoDailySignReportHandler", in, out, opts...) + err := c.cc.Invoke(ctx, "/online.OnlineService/DoDailyStatusReportHandler", in, out, opts...) if err != nil { return nil, err } return out, nil } -func (c *onlineServiceClient) GetLatestSignReport(ctx context.Context, in *ReqLatestSignReport, opts ...grpc.CallOption) (*RespSignMetrics, error) { +func (c *onlineServiceClient) GetLastDailySignedInfoHandler(ctx context.Context, in *ReqLastDailySignedInfo, opts ...grpc.CallOption) (*RespSignMetrics, error) { out := new(RespSignMetrics) - err := c.cc.Invoke(ctx, "/online.OnlineService/GetLatestSignReport", in, out, opts...) + err := c.cc.Invoke(ctx, "/online.OnlineService/GetLastDailySignedInfoHandler", in, out, opts...) if err != nil { return nil, err } @@ -628,8 +629,8 @@ func (c *onlineServiceClient) GetLatestSignReport(ctx context.Context, in *ReqLa // OnlineServiceServer is the server API for OnlineService service. type OnlineServiceServer interface { UpdateSignMetrics(context.Context, *ReqSignMetrics) (*RespSignMetrics, error) - DoDailySignReportHandler(context.Context, *ReqSignMetrics) (*Result, error) - GetLatestSignReport(context.Context, *ReqLatestSignReport) (*RespSignMetrics, error) + DoDailyStatusReportHandler(context.Context, *ReqSignMetrics) (*Result, error) + GetLastDailySignedInfoHandler(context.Context, *ReqLastDailySignedInfo) (*RespSignMetrics, error) } // UnimplementedOnlineServiceServer can be embedded to have forward compatible implementations. @@ -639,11 +640,11 @@ type UnimplementedOnlineServiceServer struct { func (*UnimplementedOnlineServiceServer) UpdateSignMetrics(ctx context.Context, req *ReqSignMetrics) (*RespSignMetrics, error) { return nil, status.Errorf(codes.Unimplemented, "method UpdateSignMetrics not implemented") } -func (*UnimplementedOnlineServiceServer) DoDailySignReportHandler(ctx context.Context, req *ReqSignMetrics) (*Result, error) { - return nil, status.Errorf(codes.Unimplemented, "method DoDailySignReportHandler not implemented") +func (*UnimplementedOnlineServiceServer) DoDailyStatusReportHandler(ctx context.Context, req *ReqSignMetrics) (*Result, error) { + return nil, status.Errorf(codes.Unimplemented, "method DoDailyStatusReportHandler not implemented") } -func (*UnimplementedOnlineServiceServer) GetLatestSignReport(ctx context.Context, req *ReqLatestSignReport) (*RespSignMetrics, error) { - return nil, status.Errorf(codes.Unimplemented, "method GetLatestSignReport not implemented") +func (*UnimplementedOnlineServiceServer) GetLastDailySignedInfoHandler(ctx context.Context, req *ReqLastDailySignedInfo) (*RespSignMetrics, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetLastDailySignedInfoHandler not implemented") } func RegisterOnlineServiceServer(s *grpc.Server, srv OnlineServiceServer) { @@ -668,38 +669,38 @@ func _OnlineService_UpdateSignMetrics_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } -func _OnlineService_DoDailySignReportHandler_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { +func _OnlineService_DoDailyStatusReportHandler_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ReqSignMetrics) if err := dec(in); err != nil { return nil, err } if interceptor == nil { - return srv.(OnlineServiceServer).DoDailySignReportHandler(ctx, in) + return srv.(OnlineServiceServer).DoDailyStatusReportHandler(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/online.OnlineService/DoDailySignReportHandler", + FullMethod: "/online.OnlineService/DoDailyStatusReportHandler", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(OnlineServiceServer).DoDailySignReportHandler(ctx, req.(*ReqSignMetrics)) + return srv.(OnlineServiceServer).DoDailyStatusReportHandler(ctx, req.(*ReqSignMetrics)) } return interceptor(ctx, in, info, handler) } -func _OnlineService_GetLatestSignReport_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(ReqLatestSignReport) +func _OnlineService_GetLastDailySignedInfoHandler_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ReqLastDailySignedInfo) if err := dec(in); err != nil { return nil, err } if interceptor == nil { - return srv.(OnlineServiceServer).GetLatestSignReport(ctx, in) + return srv.(OnlineServiceServer).GetLastDailySignedInfoHandler(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/online.OnlineService/GetLatestSignReport", + FullMethod: "/online.OnlineService/GetLastDailySignedInfoHandler", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(OnlineServiceServer).GetLatestSignReport(ctx, req.(*ReqLatestSignReport)) + return srv.(OnlineServiceServer).GetLastDailySignedInfoHandler(ctx, req.(*ReqLastDailySignedInfo)) } return interceptor(ctx, in, info, handler) } @@ -713,19 +714,19 @@ var _OnlineService_serviceDesc = grpc.ServiceDesc{ Handler: _OnlineService_UpdateSignMetrics_Handler, }, { - MethodName: "DoDailySignReportHandler", - Handler: _OnlineService_DoDailySignReportHandler_Handler, + MethodName: "DoDailyStatusReportHandler", + Handler: _OnlineService_DoDailyStatusReportHandler_Handler, }, { - MethodName: "GetLatestSignReport", - Handler: _OnlineService_GetLatestSignReport_Handler, + MethodName: "GetLastDailySignedInfoHandler", + Handler: _OnlineService_GetLastDailySignedInfoHandler_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "protos/online/online.proto", } -func (m *ReqSignMetrics) Marshal() (dAtA []byte, err error) { +func (m *ReqLastDailySignedInfo) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -735,12 +736,12 @@ func (m *ReqSignMetrics) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *ReqSignMetrics) MarshalTo(dAtA []byte) (int, error) { +func (m *ReqLastDailySignedInfo) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *ReqSignMetrics) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *ReqLastDailySignedInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -749,31 +750,17 @@ func (m *ReqSignMetrics) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if len(m.Payload) > 0 { - i -= len(m.Payload) - copy(dAtA[i:], m.Payload) - i = encodeVarintOnline(dAtA, i, uint64(len(m.Payload))) - i-- - dAtA[i] = 0x1a - } - if len(m.Signature) > 0 { - i -= len(m.Signature) - copy(dAtA[i:], m.Signature) - i = encodeVarintOnline(dAtA, i, uint64(len(m.Signature))) - i-- - dAtA[i] = 0x12 - } - if len(m.PublicKey) > 0 { - i -= len(m.PublicKey) - copy(dAtA[i:], m.PublicKey) - i = encodeVarintOnline(dAtA, i, uint64(len(m.PublicKey))) + if len(m.PeerId) > 0 { + i -= len(m.PeerId) + copy(dAtA[i:], m.PeerId) + i = encodeVarintOnline(dAtA, i, uint64(len(m.PeerId))) i-- dAtA[i] = 0xa } return len(dAtA) - i, nil } -func (m *PayLoadInfo) Marshal() (dAtA []byte, err error) { +func (m *Result) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -783,12 +770,12 @@ func (m *PayLoadInfo) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *PayLoadInfo) MarshalTo(dAtA []byte) (int, error) { +func (m *Result) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *PayLoadInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *Result) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -797,27 +784,122 @@ func (m *PayLoadInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - n1, err1 := github_com_tron_us_protobuf_types.StdTimeMarshalTo(m.LastTime, dAtA[i-github_com_tron_us_protobuf_types.SizeOfStdTime(m.LastTime):]) + n1, err1 := github_com_tron_us_protobuf_types.StdTimeMarshalTo(m.ResponseTime, dAtA[i-github_com_tron_us_protobuf_types.SizeOfStdTime(m.ResponseTime):]) if err1 != nil { return 0, err1 } i -= n1 i = encodeVarintOnline(dAtA, i, uint64(n1)) i-- - dAtA[i] = 0x2a - if len(m.LastSignature) > 0 { - i -= len(m.LastSignature) - copy(dAtA[i:], m.LastSignature) - i = encodeVarintOnline(dAtA, i, uint64(len(m.LastSignature))) + dAtA[i] = 0x1a + if len(m.Message) > 0 { + i -= len(m.Message) + copy(dAtA[i:], m.Message) + i = encodeVarintOnline(dAtA, i, uint64(len(m.Message))) i-- - dAtA[i] = 0x22 + dAtA[i] = 0x12 } - if m.LastSignedInfo != nil { - { - size, err := m.LastSignedInfo.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } + if m.Code != 0 { + i = encodeVarintOnline(dAtA, i, uint64(m.Code)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *ReqSignMetrics) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ReqSignMetrics) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ReqSignMetrics) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if len(m.Payload) > 0 { + i -= len(m.Payload) + copy(dAtA[i:], m.Payload) + i = encodeVarintOnline(dAtA, i, uint64(len(m.Payload))) + i-- + dAtA[i] = 0x1a + } + if len(m.Signature) > 0 { + i -= len(m.Signature) + copy(dAtA[i:], m.Signature) + i = encodeVarintOnline(dAtA, i, uint64(len(m.Signature))) + i-- + dAtA[i] = 0x12 + } + if len(m.PublicKey) > 0 { + i -= len(m.PublicKey) + copy(dAtA[i:], m.PublicKey) + i = encodeVarintOnline(dAtA, i, uint64(len(m.PublicKey))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *PayLoadInfo) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *PayLoadInfo) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *PayLoadInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + n2, err2 := github_com_tron_us_protobuf_types.StdTimeMarshalTo(m.LastTime, dAtA[i-github_com_tron_us_protobuf_types.SizeOfStdTime(m.LastTime):]) + if err2 != nil { + return 0, err2 + } + i -= n2 + i = encodeVarintOnline(dAtA, i, uint64(n2)) + i-- + dAtA[i] = 0x2a + if len(m.LastSignature) > 0 { + i -= len(m.LastSignature) + copy(dAtA[i:], m.LastSignature) + i = encodeVarintOnline(dAtA, i, uint64(len(m.LastSignature))) + i-- + dAtA[i] = 0x22 + } + if m.LastSignedInfo != nil { + { + size, err := m.LastSignedInfo.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } i -= size i = encodeVarintOnline(dAtA, i, uint64(size)) } @@ -967,98 +1049,54 @@ func (m *SignedInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *ReqLatestSignReport) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err +func encodeVarintOnline(dAtA []byte, offset int, v uint64) int { + offset -= sovOnline(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ } - return dAtA[:n], nil -} - -func (m *ReqLatestSignReport) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) + dAtA[offset] = uint8(v) + return base } - -func (m *ReqLatestSignReport) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i +func (m *ReqLastDailySignedInfo) Size() (n int) { + if m == nil { + return 0 + } var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) + l = len(m.PeerId) + if l > 0 { + n += 1 + l + sovOnline(uint64(l)) } - if len(m.NodeId) > 0 { - i -= len(m.NodeId) - copy(dAtA[i:], m.NodeId) - i = encodeVarintOnline(dAtA, i, uint64(len(m.NodeId))) - i-- - dAtA[i] = 0xa + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) } - return len(dAtA) - i, nil + return n } -func (m *Result) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err +func (m *Result) Size() (n int) { + if m == nil { + return 0 } - return dAtA[:n], nil -} - -func (m *Result) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *Result) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i var l int _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) - } - n5, err5 := github_com_tron_us_protobuf_types.StdTimeMarshalTo(m.ResponseTime, dAtA[i-github_com_tron_us_protobuf_types.SizeOfStdTime(m.ResponseTime):]) - if err5 != nil { - return 0, err5 + if m.Code != 0 { + n += 1 + sovOnline(uint64(m.Code)) } - i -= n5 - i = encodeVarintOnline(dAtA, i, uint64(n5)) - i-- - dAtA[i] = 0x1a - if len(m.Message) > 0 { - i -= len(m.Message) - copy(dAtA[i:], m.Message) - i = encodeVarintOnline(dAtA, i, uint64(len(m.Message))) - i-- - dAtA[i] = 0x12 + l = len(m.Message) + if l > 0 { + n += 1 + l + sovOnline(uint64(l)) } - if m.Code != 0 { - i = encodeVarintOnline(dAtA, i, uint64(m.Code)) - i-- - dAtA[i] = 0x8 + l = github_com_tron_us_protobuf_types.SizeOfStdTime(m.ResponseTime) + n += 1 + l + sovOnline(uint64(l)) + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) } - return len(dAtA) - i, nil + return n } -func encodeVarintOnline(dAtA []byte, offset int, v uint64) int { - offset -= sovOnline(v) - base := offset - for v >= 1<<7 { - dAtA[offset] = uint8(v&0x7f | 0x80) - v >>= 7 - offset++ - } - dAtA[offset] = uint8(v) - return base -} func (m *ReqSignMetrics) Size() (n int) { if m == nil { return 0 @@ -1173,48 +1211,235 @@ func (m *SignedInfo) Size() (n int) { return n } -func (m *ReqLatestSignReport) Size() (n int) { - if m == nil { - return 0 +func sovOnline(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozOnline(x uint64) (n int) { + return sovOnline(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *ReqLastDailySignedInfo) 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 ErrIntOverflowOnline + } + 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: ReqLastDailySignedInfo: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReqLastDailySignedInfo: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PeerId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOnline + } + 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 ErrInvalidLengthOnline + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthOnline + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.PeerId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipOnline(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthOnline + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthOnline + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } } - var l int - _ = l - l = len(m.NodeId) - if l > 0 { - n += 1 + l + sovOnline(uint64(l)) + + if iNdEx > l { + return io.ErrUnexpectedEOF } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) + return nil +} +func (m *Result) 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 ErrIntOverflowOnline + } + 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: Result: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Result: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Code", wireType) + } + m.Code = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOnline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Code |= ResponseCode(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Message", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOnline + } + 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 ErrInvalidLengthOnline + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthOnline + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Message = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ResponseTime", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOnline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthOnline + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthOnline + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := github_com_tron_us_protobuf_types.StdTimeUnmarshal(&m.ResponseTime, dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipOnline(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthOnline + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthOnline + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } } - return n -} -func (m *Result) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.Code != 0 { - n += 1 + sovOnline(uint64(m.Code)) - } - l = len(m.Message) - if l > 0 { - n += 1 + l + sovOnline(uint64(l)) - } - l = github_com_tron_us_protobuf_types.SizeOfStdTime(m.ResponseTime) - n += 1 + l + sovOnline(uint64(l)) - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) + if iNdEx > l { + return io.ErrUnexpectedEOF } - return n -} - -func sovOnline(x uint64) (n int) { - return (math_bits.Len64(x|1) + 6) / 7 -} -func sozOnline(x uint64) (n int) { - return sovOnline(uint64((x << 1) ^ uint64((int64(x) >> 63)))) + return nil } func (m *ReqSignMetrics) Unmarshal(dAtA []byte) error { l := len(dAtA) @@ -1975,230 +2200,6 @@ func (m *SignedInfo) Unmarshal(dAtA []byte) error { } return nil } -func (m *ReqLatestSignReport) 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 ErrIntOverflowOnline - } - 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: ReqLatestSignReport: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ReqLatestSignReport: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field NodeId", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowOnline - } - 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 ErrInvalidLengthOnline - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthOnline - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.NodeId = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipOnline(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthOnline - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthOnline - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *Result) 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 ErrIntOverflowOnline - } - 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: Result: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: Result: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Code", wireType) - } - m.Code = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowOnline - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.Code |= ResponseCode(b&0x7F) << shift - if b < 0x80 { - break - } - } - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Message", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowOnline - } - 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 ErrInvalidLengthOnline - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthOnline - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Message = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ResponseTime", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowOnline - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthOnline - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthOnline - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := github_com_tron_us_protobuf_types.StdTimeUnmarshal(&m.ResponseTime, dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipOnline(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthOnline - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthOnline - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} func skipOnline(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 From a5475a9dd19dee631a5dbdb4013213cb06d81fd3 Mon Sep 17 00:00:00 2001 From: fish <920886811@163.com> Date: Mon, 5 Dec 2022 22:52:17 +0800 Subject: [PATCH 7/8] mod: GetLastDailySignedInfo --- protos/online/online.pb.go | 147 ++++++++++++++++++------------------- protos/online/online.proto | 4 +- 2 files changed, 75 insertions(+), 76 deletions(-) diff --git a/protos/online/online.pb.go b/protos/online/online.pb.go index c70465d..40b4ec9 100644 --- a/protos/online/online.pb.go +++ b/protos/online/online.pb.go @@ -522,56 +522,55 @@ func init() { proto.RegisterFile("protos/online/online.proto", fileDescriptor_ee func init() { golang_proto.RegisterFile("protos/online/online.proto", fileDescriptor_ee5923c3111b600a) } var fileDescriptor_ee5923c3111b600a = []byte{ - // 774 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x4f, 0x4f, 0xe3, 0x46, - 0x14, 0x67, 0x20, 0x04, 0xf2, 0x9c, 0x04, 0x18, 0x51, 0x48, 0xa3, 0xe2, 0xd0, 0x48, 0x95, 0x50, - 0x25, 0x9c, 0x36, 0x5c, 0x7a, 0xa8, 0x54, 0x85, 0x24, 0x85, 0xa8, 0x84, 0x44, 0xe3, 0x44, 0xaa, - 0x7a, 0xb1, 0x1c, 0x7b, 0xe2, 0x5a, 0x75, 0x3c, 0xc6, 0x33, 0x41, 0xca, 0xb7, 0xe8, 0xad, 0xfd, - 0x08, 0xfd, 0x06, 0xbd, 0xf6, 0xc8, 0xb1, 0x9f, 0xa0, 0xad, 0xe0, 0xde, 0xdb, 0xde, 0x57, 0x33, - 0xb6, 0x89, 0x57, 0x02, 0x69, 0x57, 0xda, 0x4b, 0x32, 0xef, 0xcd, 0x7b, 0x6f, 0x7e, 0x7f, 0x3c, - 0x03, 0xf5, 0x28, 0x66, 0x82, 0xf1, 0x16, 0x0b, 0x03, 0x3f, 0xa4, 0xe9, 0x9f, 0xa1, 0x92, 0xb8, - 0x98, 0x44, 0xf5, 0x6f, 0x3c, 0x5f, 0xfc, 0xbc, 0x9c, 0x19, 0x0e, 0x5b, 0xb4, 0x44, 0xcc, 0xc2, - 0xf3, 0x25, 0x6f, 0x79, 0xec, 0x7c, 0x26, 0xe6, 0xfc, 0xdc, 0x61, 0x8b, 0x05, 0x0b, 0x5b, 0xe9, - 0x94, 0x90, 0xb9, 0x54, 0xfd, 0x24, 0x13, 0xea, 0x5f, 0xbd, 0xd0, 0xa9, 0x76, 0x66, 0xcb, 0x79, - 0xcb, 0x63, 0x1e, 0x53, 0x81, 0x5a, 0xa5, 0x1d, 0x0d, 0x8f, 0x31, 0x2f, 0xa0, 0xeb, 0x2a, 0xe1, - 0x2f, 0x28, 0x17, 0xf6, 0x22, 0x4a, 0x0a, 0x9a, 0x5f, 0xc3, 0x11, 0xa1, 0x77, 0x37, 0x36, 0x17, - 0x3d, 0xdb, 0x0f, 0x56, 0xa6, 0xef, 0x85, 0xd4, 0x1d, 0x84, 0x73, 0x86, 0x8f, 0x61, 0x27, 0xa2, - 0x34, 0xb6, 0x7c, 0xb7, 0x86, 0x4e, 0xd1, 0x59, 0x89, 0x14, 0x65, 0x38, 0x70, 0x9b, 0xbf, 0x21, - 0x28, 0x12, 0xca, 0x97, 0x81, 0xc0, 0x67, 0x50, 0x70, 0x98, 0x4b, 0x55, 0x41, 0xb5, 0x7d, 0x68, - 0xa4, 0x7c, 0x09, 0xe5, 0x11, 0x0b, 0x39, 0xed, 0x32, 0x97, 0x12, 0x55, 0x81, 0x6b, 0xb0, 0xb3, - 0xa0, 0x9c, 0xdb, 0x1e, 0xad, 0x6d, 0xaa, 0x69, 0x59, 0x88, 0x07, 0x50, 0x89, 0xd3, 0x7a, 0x4b, - 0xa2, 0xab, 0x6d, 0x9d, 0xa2, 0x33, 0xad, 0x5d, 0x37, 0x12, 0xe8, 0x46, 0x06, 0xdd, 0x98, 0x64, - 0xd0, 0x2f, 0x77, 0x1f, 0xfe, 0x69, 0x6c, 0xfc, 0xfa, 0x6f, 0x03, 0x91, 0x72, 0xd6, 0x2a, 0x37, - 0x9b, 0x1e, 0x54, 0x09, 0xbd, 0x93, 0x1c, 0x86, 0x54, 0xc4, 0xbe, 0xc3, 0xf1, 0x09, 0x40, 0xb4, - 0x9c, 0x05, 0xbe, 0x63, 0xfd, 0x42, 0x57, 0x0a, 0x66, 0x99, 0x94, 0x92, 0xcc, 0x0f, 0x74, 0x85, - 0x3f, 0x83, 0x12, 0xf7, 0xbd, 0xd0, 0x16, 0xcb, 0x38, 0xc1, 0x55, 0x26, 0xeb, 0x84, 0xc4, 0x1c, - 0xd9, 0xab, 0x80, 0xd9, 0xae, 0xc2, 0x54, 0x26, 0x59, 0xd8, 0xfc, 0x1f, 0x81, 0x36, 0xb6, 0x57, - 0x37, 0xcc, 0x7e, 0xd6, 0x4a, 0xda, 0x94, 0xd3, 0x4a, 0x86, 0x03, 0x17, 0xeb, 0x50, 0x90, 0x2b, - 0x35, 0x5b, 0x6b, 0x83, 0xa1, 0xcc, 0xbc, 0x55, 0xb2, 0xc8, 0x25, 0xfe, 0x16, 0xf6, 0x03, 0x9b, - 0x0b, 0x8b, 0x2b, 0xdd, 0x2d, 0x3f, 0x9c, 0xb3, 0x94, 0x3f, 0xce, 0xc4, 0x5c, 0x5b, 0x42, 0xaa, - 0xb2, 0x36, 0x67, 0xd1, 0x17, 0x50, 0x7d, 0xee, 0x4e, 0x38, 0x14, 0xd4, 0xe9, 0x95, 0xac, 0x2e, - 0xe1, 0xd1, 0x81, 0x92, 0x2a, 0x53, 0xea, 0x6e, 0x7f, 0x80, 0xba, 0xbb, 0xb2, 0x4d, 0x29, 0xfb, - 0x07, 0x82, 0x3d, 0xe9, 0x6a, 0x5e, 0xdb, 0x8f, 0x61, 0xfe, 0x05, 0x68, 0xef, 0x47, 0x1d, 0xf8, - 0x9a, 0xf6, 0x3b, 0xae, 0x25, 0x8c, 0xd7, 0x89, 0xe6, 0x9f, 0x08, 0x20, 0xa7, 0x11, 0x86, 0x82, - 0xfc, 0x6e, 0x53, 0x5f, 0xd4, 0x1a, 0x7f, 0x0e, 0x65, 0x27, 0xa6, 0xb6, 0xa0, 0x6e, 0xa2, 0x89, - 0x04, 0x55, 0x21, 0x5a, 0x9a, 0x93, 0x84, 0x25, 0xe4, 0x7b, 0x1a, 0x73, 0x9f, 0x85, 0x0a, 0x54, - 0x89, 0x64, 0x21, 0x3e, 0x84, 0xed, 0x90, 0x85, 0x4e, 0x72, 0x72, 0x85, 0x24, 0x81, 0x1c, 0x39, - 0x13, 0xc2, 0xb1, 0x6c, 0xd7, 0x8d, 0x29, 0xe7, 0x4a, 0xe6, 0x12, 0xd1, 0x64, 0xae, 0x93, 0xa4, - 0x70, 0xe3, 0x99, 0xab, 0x3a, 0xb4, 0xa8, 0xda, 0x53, 0x5e, 0xf2, 0xcc, 0x2f, 0xef, 0xa1, 0x9c, - 0x17, 0x0f, 0x6b, 0xb0, 0x63, 0x4e, 0xbb, 0xdd, 0xbe, 0x69, 0xee, 0x6f, 0xe0, 0x3a, 0x1c, 0x99, - 0x83, 0xab, 0xdb, 0xce, 0x64, 0x4a, 0xfa, 0xd6, 0xf7, 0x23, 0x32, 0xec, 0x4c, 0xac, 0x3e, 0x21, - 0x23, 0xb2, 0x8f, 0xf0, 0xa7, 0xf0, 0x49, 0x77, 0x34, 0x1c, 0x4f, 0x27, 0x7d, 0xab, 0xd3, 0xeb, - 0x91, 0xbe, 0x69, 0xa6, 0x5b, 0x9b, 0xf8, 0x00, 0x2a, 0x93, 0xc1, 0xb0, 0x3f, 0x9a, 0x66, 0xd5, - 0x5b, 0x78, 0x0f, 0xb4, 0xd1, 0xe4, 0xba, 0x4f, 0xd2, 0xc4, 0x61, 0xfb, 0x0d, 0x82, 0xca, 0x48, - 0x29, 0x6e, 0xd2, 0xf8, 0xde, 0x77, 0x28, 0xee, 0xc1, 0xc1, 0x34, 0x72, 0x6d, 0x41, 0xf3, 0x7e, - 0x1f, 0xad, 0x1d, 0xce, 0xdf, 0xb1, 0xfa, 0x71, 0xde, 0xf9, 0x7c, 0x43, 0x0f, 0xea, 0x3d, 0x96, - 0x3c, 0x2b, 0xc2, 0x16, 0x4b, 0x4e, 0x68, 0xc4, 0x62, 0x71, 0x6d, 0x87, 0x6e, 0x40, 0xe3, 0x57, - 0xc7, 0x55, 0x73, 0xe3, 0xe4, 0x1b, 0xf3, 0x23, 0x9c, 0x5c, 0x51, 0xf1, 0xc2, 0x0b, 0x95, 0x0d, - 0xd2, 0x73, 0x83, 0x5e, 0x28, 0x7b, 0x15, 0xdf, 0xe5, 0x77, 0x0f, 0x8f, 0x3a, 0xfa, 0xfb, 0x51, - 0x47, 0xff, 0x3d, 0xea, 0xe8, 0xf7, 0x27, 0x1d, 0xfd, 0xf5, 0xa4, 0xa3, 0x87, 0x27, 0x1d, 0x41, - 0xd5, 0x67, 0x86, 0x7c, 0x8f, 0xd3, 0xce, 0x4b, 0x2d, 0x91, 0x67, 0x2c, 0x2f, 0xcb, 0x18, 0xfd, - 0x94, 0xbe, 0xe4, 0xb3, 0xa2, 0xba, 0x3d, 0x17, 0x6f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x2a, 0x1b, - 0x2f, 0xfd, 0xf6, 0x05, 0x00, 0x00, + // 768 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x4f, 0x6f, 0xe2, 0x46, + 0x14, 0xcf, 0x24, 0x84, 0x84, 0x67, 0x20, 0xc9, 0x34, 0x25, 0x14, 0xb5, 0x26, 0x45, 0xaa, 0x14, + 0x55, 0x8a, 0x69, 0xc9, 0xa5, 0x87, 0x56, 0x15, 0x01, 0x9a, 0xa2, 0x86, 0x40, 0xc7, 0x70, 0xe9, + 0xc5, 0x32, 0xf6, 0xe0, 0x5a, 0x05, 0x8f, 0xe3, 0x19, 0x22, 0xf1, 0x2d, 0x7a, 0x6b, 0x3f, 0xc2, + 0x7e, 0x83, 0xbd, 0xee, 0x31, 0xc7, 0xfd, 0x04, 0xbb, 0xab, 0xe4, 0xb0, 0xb7, 0xfd, 0x0c, 0xab, + 0x19, 0xdb, 0xc1, 0x2b, 0x25, 0xd2, 0xae, 0xb4, 0x17, 0x98, 0xf7, 0xe6, 0xbd, 0x37, 0xbf, 0x3f, + 0x9e, 0x81, 0x5a, 0x18, 0x31, 0xc1, 0x78, 0x93, 0x05, 0x73, 0x3f, 0xa0, 0xc9, 0x9f, 0xa1, 0x92, + 0x38, 0x1f, 0x47, 0xb5, 0x9f, 0x3c, 0x5f, 0xfc, 0xbd, 0x9c, 0x1a, 0x0e, 0x5b, 0x34, 0x45, 0xc4, + 0x82, 0xd3, 0x25, 0x6f, 0x7a, 0xec, 0x74, 0x2a, 0x66, 0xfc, 0xd4, 0x61, 0x8b, 0x05, 0x0b, 0x9a, + 0xc9, 0x94, 0x80, 0xb9, 0x54, 0xfd, 0xc4, 0x13, 0x6a, 0x3f, 0x3c, 0xd2, 0xa9, 0x76, 0xa6, 0xcb, + 0x59, 0xd3, 0x63, 0x1e, 0x53, 0x81, 0x5a, 0x25, 0x1d, 0x75, 0x8f, 0x31, 0x6f, 0x4e, 0xd7, 0x55, + 0xc2, 0x5f, 0x50, 0x2e, 0xec, 0x45, 0x18, 0x17, 0x34, 0x7e, 0x84, 0x0a, 0xa1, 0xd7, 0x97, 0x36, + 0x17, 0x5d, 0xdb, 0x9f, 0xaf, 0x4c, 0xdf, 0x0b, 0xa8, 0xdb, 0x0f, 0x66, 0x0c, 0x1f, 0xc1, 0x4e, + 0x48, 0x69, 0x64, 0xf9, 0x6e, 0x15, 0x1d, 0xa3, 0x93, 0x02, 0xc9, 0xcb, 0xb0, 0xef, 0x36, 0xfe, + 0x43, 0x90, 0x27, 0x94, 0x2f, 0xe7, 0x02, 0x9f, 0x40, 0xce, 0x61, 0x2e, 0x55, 0x05, 0xe5, 0xd6, + 0xa1, 0x91, 0xf0, 0x25, 0x94, 0x87, 0x2c, 0xe0, 0xb4, 0xc3, 0x5c, 0x4a, 0x54, 0x05, 0xae, 0xc2, + 0xce, 0x82, 0x72, 0x6e, 0x7b, 0xb4, 0xba, 0xa9, 0xa6, 0xa5, 0x21, 0xee, 0x43, 0x29, 0x4a, 0xea, + 0x2d, 0x89, 0xae, 0xba, 0x75, 0x8c, 0x4e, 0xb4, 0x56, 0xcd, 0x88, 0xa1, 0x1b, 0x29, 0x74, 0x63, + 0x9c, 0x42, 0x3f, 0xdf, 0xbd, 0x7d, 0x55, 0xdf, 0xf8, 0xf7, 0x75, 0x1d, 0x91, 0x62, 0xda, 0x2a, + 0x37, 0x1b, 0x1e, 0x94, 0x09, 0xbd, 0x96, 0x1c, 0x06, 0x54, 0x44, 0xbe, 0xc3, 0xf1, 0x37, 0x00, + 0xe1, 0x72, 0x3a, 0xf7, 0x1d, 0xeb, 0x1f, 0xba, 0x52, 0x30, 0x8b, 0xa4, 0x10, 0x67, 0xfe, 0xa0, + 0x2b, 0xfc, 0x35, 0x14, 0xb8, 0xef, 0x05, 0xb6, 0x58, 0x46, 0x31, 0xae, 0x22, 0x59, 0x27, 0x24, + 0xe6, 0xd0, 0x5e, 0xcd, 0x99, 0xed, 0x2a, 0x4c, 0x45, 0x92, 0x86, 0x8d, 0x77, 0x08, 0xb4, 0x91, + 0xbd, 0xba, 0x64, 0xf6, 0x83, 0x56, 0xd2, 0xa6, 0x8c, 0x56, 0x32, 0xec, 0xbb, 0x58, 0x87, 0x9c, + 0x5c, 0xa9, 0xd9, 0x5a, 0x0b, 0x0c, 0x65, 0xe6, 0x95, 0x92, 0x45, 0x2e, 0xf1, 0xcf, 0xb0, 0x3f, + 0xb7, 0xb9, 0xb0, 0xb8, 0xd2, 0xdd, 0xf2, 0x83, 0x19, 0x4b, 0xf8, 0xe3, 0x54, 0xcc, 0xb5, 0x25, + 0xa4, 0x2c, 0x6b, 0x33, 0x16, 0x7d, 0x07, 0xe5, 0x87, 0xee, 0x98, 0x43, 0x4e, 0x9d, 0x5e, 0x4a, + 0xeb, 0x62, 0x1e, 0x6d, 0x28, 0xa8, 0x32, 0xa5, 0xee, 0xf6, 0x27, 0xa8, 0xbb, 0x2b, 0xdb, 0x94, + 0xb2, 0xcf, 0x10, 0xec, 0x49, 0x57, 0xb3, 0xda, 0x7e, 0x0e, 0xf3, 0xcf, 0x40, 0xfb, 0x38, 0xea, + 0xc0, 0xd7, 0xb4, 0x3f, 0x70, 0x2d, 0x66, 0xbc, 0x4e, 0x34, 0x9e, 0x23, 0x80, 0x8c, 0x46, 0x18, + 0x72, 0xf2, 0xbb, 0x4d, 0x7c, 0x51, 0x6b, 0xfc, 0x2d, 0x14, 0x9d, 0x88, 0xda, 0x82, 0xba, 0xb1, + 0x26, 0x12, 0x54, 0x89, 0x68, 0x49, 0x4e, 0x12, 0x96, 0x90, 0x6f, 0x68, 0xc4, 0x7d, 0x16, 0x28, + 0x50, 0x05, 0x92, 0x86, 0xf8, 0x10, 0xb6, 0x03, 0x16, 0x38, 0xf1, 0xc9, 0x25, 0x12, 0x07, 0x72, + 0xe4, 0x54, 0x08, 0xc7, 0xb2, 0x5d, 0x37, 0xa2, 0x9c, 0x2b, 0x99, 0x0b, 0x44, 0x93, 0xb9, 0x76, + 0x9c, 0xc2, 0xf5, 0x07, 0xae, 0xea, 0xd0, 0xbc, 0x6a, 0x4f, 0x78, 0xc9, 0x33, 0xbf, 0xbf, 0x81, + 0x62, 0x56, 0x3c, 0xac, 0xc1, 0x8e, 0x39, 0xe9, 0x74, 0x7a, 0xa6, 0xb9, 0xbf, 0x81, 0x6b, 0x50, + 0x31, 0xfb, 0x17, 0x57, 0xed, 0xf1, 0x84, 0xf4, 0xac, 0xdf, 0x86, 0x64, 0xd0, 0x1e, 0x5b, 0x3d, + 0x42, 0x86, 0x64, 0x1f, 0xe1, 0xaf, 0xe0, 0xcb, 0xce, 0x70, 0x30, 0x9a, 0x8c, 0x7b, 0x56, 0xbb, + 0xdb, 0x25, 0x3d, 0xd3, 0x4c, 0xb6, 0x36, 0xf1, 0x01, 0x94, 0xc6, 0xfd, 0x41, 0x6f, 0x38, 0x49, + 0xab, 0xb7, 0xf0, 0x1e, 0x68, 0xc3, 0xf1, 0xef, 0x3d, 0x92, 0x24, 0x0e, 0x5b, 0x6f, 0x11, 0x94, + 0x86, 0x4a, 0x71, 0x93, 0x46, 0x37, 0xbe, 0x43, 0x71, 0x17, 0x0e, 0x26, 0xa1, 0x6b, 0x0b, 0x9a, + 0xf5, 0xbb, 0xb2, 0x76, 0x38, 0x7b, 0xc7, 0x6a, 0x47, 0x59, 0xe7, 0xb3, 0x0d, 0xbf, 0xc0, 0x17, + 0x5d, 0x16, 0x3f, 0x2b, 0xc2, 0x16, 0x4b, 0x4e, 0x68, 0xc8, 0x22, 0xf1, 0xe4, 0x9c, 0x72, 0x66, + 0x8e, 0x7c, 0x5c, 0xfe, 0x84, 0xca, 0x05, 0x15, 0x8f, 0x3d, 0x4d, 0x7a, 0x66, 0xc2, 0x23, 0xfb, + 0x4f, 0x22, 0x3a, 0xff, 0xf5, 0xf6, 0x4e, 0x47, 0x2f, 0xef, 0x74, 0xf4, 0xe6, 0x4e, 0x47, 0xff, + 0xdf, 0xeb, 0xe8, 0xc5, 0xbd, 0x8e, 0x6e, 0xef, 0x75, 0x04, 0x65, 0x9f, 0x19, 0xf2, 0x05, 0x4e, + 0x3a, 0xcf, 0xb5, 0x58, 0x90, 0x91, 0xbc, 0x1e, 0x23, 0xf4, 0x57, 0xf2, 0x76, 0x4f, 0xf3, 0xea, + 0xbe, 0x9c, 0xbd, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x56, 0x2c, 0xea, 0x04, 0xe8, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -587,8 +586,8 @@ const _ = grpc.SupportPackageIsVersion4 // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. type OnlineServiceClient interface { UpdateSignMetrics(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*RespSignMetrics, error) - DoDailyStatusReportHandler(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*Result, error) - GetLastDailySignedInfoHandler(ctx context.Context, in *ReqLastDailySignedInfo, opts ...grpc.CallOption) (*RespSignMetrics, error) + DoDailyStatusReport(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*Result, error) + GetLastDailySignedInfo(ctx context.Context, in *ReqLastDailySignedInfo, opts ...grpc.CallOption) (*RespSignMetrics, error) } type onlineServiceClient struct { @@ -608,18 +607,18 @@ func (c *onlineServiceClient) UpdateSignMetrics(ctx context.Context, in *ReqSign return out, nil } -func (c *onlineServiceClient) DoDailyStatusReportHandler(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*Result, error) { +func (c *onlineServiceClient) DoDailyStatusReport(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*Result, error) { out := new(Result) - err := c.cc.Invoke(ctx, "/online.OnlineService/DoDailyStatusReportHandler", in, out, opts...) + err := c.cc.Invoke(ctx, "/online.OnlineService/DoDailyStatusReport", in, out, opts...) if err != nil { return nil, err } return out, nil } -func (c *onlineServiceClient) GetLastDailySignedInfoHandler(ctx context.Context, in *ReqLastDailySignedInfo, opts ...grpc.CallOption) (*RespSignMetrics, error) { +func (c *onlineServiceClient) GetLastDailySignedInfo(ctx context.Context, in *ReqLastDailySignedInfo, opts ...grpc.CallOption) (*RespSignMetrics, error) { out := new(RespSignMetrics) - err := c.cc.Invoke(ctx, "/online.OnlineService/GetLastDailySignedInfoHandler", in, out, opts...) + err := c.cc.Invoke(ctx, "/online.OnlineService/GetLastDailySignedInfo", in, out, opts...) if err != nil { return nil, err } @@ -629,8 +628,8 @@ func (c *onlineServiceClient) GetLastDailySignedInfoHandler(ctx context.Context, // OnlineServiceServer is the server API for OnlineService service. type OnlineServiceServer interface { UpdateSignMetrics(context.Context, *ReqSignMetrics) (*RespSignMetrics, error) - DoDailyStatusReportHandler(context.Context, *ReqSignMetrics) (*Result, error) - GetLastDailySignedInfoHandler(context.Context, *ReqLastDailySignedInfo) (*RespSignMetrics, error) + DoDailyStatusReport(context.Context, *ReqSignMetrics) (*Result, error) + GetLastDailySignedInfo(context.Context, *ReqLastDailySignedInfo) (*RespSignMetrics, error) } // UnimplementedOnlineServiceServer can be embedded to have forward compatible implementations. @@ -640,11 +639,11 @@ type UnimplementedOnlineServiceServer struct { func (*UnimplementedOnlineServiceServer) UpdateSignMetrics(ctx context.Context, req *ReqSignMetrics) (*RespSignMetrics, error) { return nil, status.Errorf(codes.Unimplemented, "method UpdateSignMetrics not implemented") } -func (*UnimplementedOnlineServiceServer) DoDailyStatusReportHandler(ctx context.Context, req *ReqSignMetrics) (*Result, error) { - return nil, status.Errorf(codes.Unimplemented, "method DoDailyStatusReportHandler not implemented") +func (*UnimplementedOnlineServiceServer) DoDailyStatusReport(ctx context.Context, req *ReqSignMetrics) (*Result, error) { + return nil, status.Errorf(codes.Unimplemented, "method DoDailyStatusReport not implemented") } -func (*UnimplementedOnlineServiceServer) GetLastDailySignedInfoHandler(ctx context.Context, req *ReqLastDailySignedInfo) (*RespSignMetrics, error) { - return nil, status.Errorf(codes.Unimplemented, "method GetLastDailySignedInfoHandler not implemented") +func (*UnimplementedOnlineServiceServer) GetLastDailySignedInfo(ctx context.Context, req *ReqLastDailySignedInfo) (*RespSignMetrics, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetLastDailySignedInfo not implemented") } func RegisterOnlineServiceServer(s *grpc.Server, srv OnlineServiceServer) { @@ -669,38 +668,38 @@ func _OnlineService_UpdateSignMetrics_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } -func _OnlineService_DoDailyStatusReportHandler_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { +func _OnlineService_DoDailyStatusReport_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ReqSignMetrics) if err := dec(in); err != nil { return nil, err } if interceptor == nil { - return srv.(OnlineServiceServer).DoDailyStatusReportHandler(ctx, in) + return srv.(OnlineServiceServer).DoDailyStatusReport(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/online.OnlineService/DoDailyStatusReportHandler", + FullMethod: "/online.OnlineService/DoDailyStatusReport", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(OnlineServiceServer).DoDailyStatusReportHandler(ctx, req.(*ReqSignMetrics)) + return srv.(OnlineServiceServer).DoDailyStatusReport(ctx, req.(*ReqSignMetrics)) } return interceptor(ctx, in, info, handler) } -func _OnlineService_GetLastDailySignedInfoHandler_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { +func _OnlineService_GetLastDailySignedInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ReqLastDailySignedInfo) if err := dec(in); err != nil { return nil, err } if interceptor == nil { - return srv.(OnlineServiceServer).GetLastDailySignedInfoHandler(ctx, in) + return srv.(OnlineServiceServer).GetLastDailySignedInfo(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/online.OnlineService/GetLastDailySignedInfoHandler", + FullMethod: "/online.OnlineService/GetLastDailySignedInfo", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(OnlineServiceServer).GetLastDailySignedInfoHandler(ctx, req.(*ReqLastDailySignedInfo)) + return srv.(OnlineServiceServer).GetLastDailySignedInfo(ctx, req.(*ReqLastDailySignedInfo)) } return interceptor(ctx, in, info, handler) } @@ -714,12 +713,12 @@ var _OnlineService_serviceDesc = grpc.ServiceDesc{ Handler: _OnlineService_UpdateSignMetrics_Handler, }, { - MethodName: "DoDailyStatusReportHandler", - Handler: _OnlineService_DoDailyStatusReportHandler_Handler, + MethodName: "DoDailyStatusReport", + Handler: _OnlineService_DoDailyStatusReport_Handler, }, { - MethodName: "GetLastDailySignedInfoHandler", - Handler: _OnlineService_GetLastDailySignedInfoHandler_Handler, + MethodName: "GetLastDailySignedInfo", + Handler: _OnlineService_GetLastDailySignedInfo_Handler, }, }, Streams: []grpc.StreamDesc{}, diff --git a/protos/online/online.proto b/protos/online/online.proto index f8557d6..5f54529 100644 --- a/protos/online/online.proto +++ b/protos/online/online.proto @@ -22,8 +22,8 @@ import "google/protobuf/timestamp.proto"; service OnlineService { rpc UpdateSignMetrics(ReqSignMetrics) returns (RespSignMetrics); - rpc DoDailyStatusReportHandler(ReqSignMetrics) returns (Result); - rpc GetLastDailySignedInfoHandler(ReqLastDailySignedInfo) returns (RespSignMetrics); + rpc DoDailyStatusReport(ReqSignMetrics) returns (Result); + rpc GetLastDailySignedInfo(ReqLastDailySignedInfo) returns (RespSignMetrics); } message ReqLastDailySignedInfo { From 4b8ddafd0ad249b703b633ea74fd471ec3e98010 Mon Sep 17 00:00:00 2001 From: fish <920886811@163.com> Date: Wed, 7 Dec 2022 20:15:45 +0800 Subject: [PATCH 8/8] mod: TotalStateSummary --- js/protos/guard/guard_pb.js | 122 ++++++- protos/guard/guard.pb.go | 668 ++++++++++++++++++++++-------------- protos/guard/guard.proto | 4 + 3 files changed, 539 insertions(+), 255 deletions(-) diff --git a/js/protos/guard/guard_pb.js b/js/protos/guard/guard_pb.js index 9303e9c..a5d7657 100644 --- a/js/protos/guard/guard_pb.js +++ b/js/protos/guard/guard_pb.js @@ -2023,7 +2023,11 @@ proto.guard.TotalStateSummary.toObject = function(includeInstance, msg) { existedShardSize: jspb.Message.getFieldWithDefault(msg, 6, 0), invalidContractCount: jspb.Message.getFieldWithDefault(msg, 7, 0), lostShardSize: jspb.Message.getFieldWithDefault(msg, 8, 0), - totalHostReward: jspb.Message.getFieldWithDefault(msg, 9, 0) + totalHostReward: jspb.Message.getFieldWithDefault(msg, 9, 0), + totalWbttReward: jspb.Message.getFieldWithDefault(msg, 10, 0), + totalTrxReward: jspb.Message.getFieldWithDefault(msg, 11, 0), + totalUsddReward: jspb.Message.getFieldWithDefault(msg, 12, 0), + totalUsdtReward: jspb.Message.getFieldWithDefault(msg, 13, 0) }; if (includeInstance) { @@ -2098,6 +2102,22 @@ proto.guard.TotalStateSummary.deserializeBinaryFromReader = function(msg, reader var value = /** @type {number} */ (reader.readInt64()); msg.setTotalHostReward(value); break; + case 10: + var value = /** @type {number} */ (reader.readInt64()); + msg.setTotalWbttReward(value); + break; + case 11: + var value = /** @type {number} */ (reader.readInt64()); + msg.setTotalTrxReward(value); + break; + case 12: + var value = /** @type {number} */ (reader.readInt64()); + msg.setTotalUsddReward(value); + break; + case 13: + var value = /** @type {number} */ (reader.readInt64()); + msg.setTotalUsdtReward(value); + break; default: reader.skipField(); break; @@ -2192,6 +2212,34 @@ proto.guard.TotalStateSummary.serializeBinaryToWriter = function(message, writer f ); } + f = message.getTotalWbttReward(); + if (f !== 0) { + writer.writeInt64( + 10, + f + ); + } + f = message.getTotalTrxReward(); + if (f !== 0) { + writer.writeInt64( + 11, + f + ); + } + f = message.getTotalUsddReward(); + if (f !== 0) { + writer.writeInt64( + 12, + f + ); + } + f = message.getTotalUsdtReward(); + if (f !== 0) { + writer.writeInt64( + 13, + f + ); + } }; @@ -2419,6 +2467,78 @@ proto.guard.TotalStateSummary.prototype.setTotalHostReward = function(value) { }; +/** + * optional int64 total_wbtt_reward = 10; + * @return {number} + */ +proto.guard.TotalStateSummary.prototype.getTotalWbttReward = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 10, 0)); +}; + + +/** + * @param {number} value + * @return {!proto.guard.TotalStateSummary} returns this + */ +proto.guard.TotalStateSummary.prototype.setTotalWbttReward = function(value) { + return jspb.Message.setProto3IntField(this, 10, value); +}; + + +/** + * optional int64 total_trx_reward = 11; + * @return {number} + */ +proto.guard.TotalStateSummary.prototype.getTotalTrxReward = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 11, 0)); +}; + + +/** + * @param {number} value + * @return {!proto.guard.TotalStateSummary} returns this + */ +proto.guard.TotalStateSummary.prototype.setTotalTrxReward = function(value) { + return jspb.Message.setProto3IntField(this, 11, value); +}; + + +/** + * optional int64 total_usdd_reward = 12; + * @return {number} + */ +proto.guard.TotalStateSummary.prototype.getTotalUsddReward = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0)); +}; + + +/** + * @param {number} value + * @return {!proto.guard.TotalStateSummary} returns this + */ +proto.guard.TotalStateSummary.prototype.setTotalUsddReward = function(value) { + return jspb.Message.setProto3IntField(this, 12, value); +}; + + +/** + * optional int64 total_usdt_reward = 13; + * @return {number} + */ +proto.guard.TotalStateSummary.prototype.getTotalUsdtReward = function() { + return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 13, 0)); +}; + + +/** + * @param {number} value + * @return {!proto.guard.TotalStateSummary} returns this + */ +proto.guard.TotalStateSummary.prototype.setTotalUsdtReward = function(value) { + return jspb.Message.setProto3IntField(this, 13, value); +}; + + diff --git a/protos/guard/guard.pb.go b/protos/guard/guard.pb.go index b487609..8a53705 100644 --- a/protos/guard/guard.pb.go +++ b/protos/guard/guard.pb.go @@ -660,6 +660,10 @@ type TotalStateSummary struct { InvalidContractCount int64 `protobuf:"varint,7,opt,name=invalid_contract_count,json=invalidContractCount,proto3" json:"invalid_contract_count,omitempty" pg:"invalid_contract_count"` LostShardSize int64 `protobuf:"varint,8,opt,name=lost_shard_size,json=lostShardSize,proto3" json:"lost_shard_size,omitempty" pg:"lost_shard_size"` TotalHostReward int64 `protobuf:"varint,9,opt,name=total_host_reward,json=totalHostReward,proto3" json:"total_host_reward,omitempty" pg:"total_host_reward"` + TotalWbttReward int64 `protobuf:"varint,10,opt,name=total_wbtt_reward,json=totalWbttReward,proto3" json:"total_wbtt_reward,omitempty" pg:"total_wbtt_reward"` + TotalTrxReward int64 `protobuf:"varint,11,opt,name=total_trx_reward,json=totalTrxReward,proto3" json:"total_trx_reward,omitempty" pg:"total_trx_reward"` + TotalUsddReward int64 `protobuf:"varint,12,opt,name=total_usdd_reward,json=totalUsddReward,proto3" json:"total_usdd_reward,omitempty" pg:"total_usdd_reward"` + TotalUsdtReward int64 `protobuf:"varint,13,opt,name=total_usdt_reward,json=totalUsdtReward,proto3" json:"total_usdt_reward,omitempty" pg:"total_usdt_reward"` XXX_NoUnkeyedLiteral struct{} `json:"-" pg:"-"` XXX_unrecognized []byte `json:"-" pg:"-"` XXX_sizecache int32 `json:"-" pg:"-"` @@ -761,6 +765,34 @@ func (m *TotalStateSummary) GetTotalHostReward() int64 { return 0 } +func (m *TotalStateSummary) GetTotalWbttReward() int64 { + if m != nil { + return m.TotalWbttReward + } + return 0 +} + +func (m *TotalStateSummary) GetTotalTrxReward() int64 { + if m != nil { + return m.TotalTrxReward + } + return 0 +} + +func (m *TotalStateSummary) GetTotalUsddReward() int64 { + if m != nil { + return m.TotalUsddReward + } + return 0 +} + +func (m *TotalStateSummary) GetTotalUsdtReward() int64 { + if m != nil { + return m.TotalUsdtReward + } + return 0 +} + func (*TotalStateSummary) XXX_MessageName() string { return "guard.TotalStateSummary" } @@ -3892,259 +3924,263 @@ func init() { proto.RegisterFile("protos/guard/guard.proto", fileDescriptor_ad5b func init() { golang_proto.RegisterFile("protos/guard/guard.proto", fileDescriptor_ad5b6eccdc9ebee8) } var fileDescriptor_ad5b6eccdc9ebee8 = []byte{ - // 4031 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3b, 0xcb, 0x6e, 0x1b, 0x59, - 0x76, 0x2e, 0xbe, 0x79, 0xf8, 0x2a, 0x5d, 0x4b, 0x32, 0x25, 0xb7, 0x25, 0x37, 0x07, 0x3d, 0x6d, - 0xf7, 0x74, 0xab, 0x3b, 0x6e, 0xa3, 0x83, 0xc9, 0xbc, 0x42, 0x93, 0xa5, 0x87, 0x43, 0x93, 0x72, - 0x91, 0x8a, 0xe3, 0x41, 0x80, 0x42, 0x89, 0xbc, 0xa2, 0xaa, 0x4d, 0x56, 0xc9, 0x55, 0x45, 0xab, - 0x3d, 0x8b, 0x2c, 0xb2, 0x0b, 0x02, 0x04, 0x59, 0x25, 0xc1, 0x7c, 0x40, 0x80, 0x09, 0x02, 0x24, - 0x08, 0x90, 0x4d, 0x16, 0x41, 0x96, 0x1d, 0x24, 0x48, 0x26, 0x8b, 0x64, 0x39, 0x8f, 0xf6, 0x0f, - 0x24, 0xab, 0xcc, 0x2a, 0x08, 0xee, 0xb9, 0xb7, 0x9e, 0x2c, 0x51, 0xa2, 0x62, 0x64, 0x80, 0xd9, - 0x08, 0xba, 0xe7, 0x9e, 0x73, 0x1f, 0xe7, 0x7d, 0xce, 0x2d, 0x42, 0xfd, 0xcc, 0xb6, 0x5c, 0xcb, - 0xf9, 0x78, 0x3c, 0xd3, 0xed, 0x11, 0xff, 0xbb, 0x83, 0x20, 0x92, 0xc5, 0xc1, 0xe6, 0x27, 0x63, - 0xc3, 0x3d, 0x9d, 0x1d, 0xef, 0x0c, 0xad, 0xe9, 0xc7, 0xae, 0x6d, 0x99, 0x1f, 0xcd, 0x9c, 0x8f, - 0x11, 0xe1, 0x78, 0x76, 0xf2, 0xf1, 0xd8, 0x1a, 0x5b, 0x38, 0xc0, 0xff, 0x38, 0xe1, 0xe6, 0xf6, - 0xd8, 0xb2, 0xc6, 0x13, 0x1a, 0x60, 0xb9, 0xc6, 0x94, 0x3a, 0xae, 0x3e, 0x3d, 0xe3, 0x08, 0x8d, - 0xff, 0x91, 0x00, 0x9a, 0xa3, 0xa9, 0x61, 0x3e, 0x9d, 0x51, 0xfb, 0x35, 0xf9, 0x1a, 0x54, 0x6c, - 0xfa, 0x72, 0x46, 0x1d, 0x97, 0xda, 0xda, 0x99, 0x31, 0xaa, 0x4b, 0x77, 0xa5, 0x7b, 0x45, 0xb5, - 0xec, 0x03, 0x0f, 0x8d, 0x11, 0x69, 0x01, 0xbc, 0x64, 0xd8, 0xda, 0x48, 0x77, 0x69, 0x3d, 0x75, - 0x57, 0xba, 0x57, 0x7a, 0xb0, 0xb9, 0xc3, 0x77, 0xda, 0xf1, 0x76, 0xda, 0x19, 0x78, 0x3b, 0x3d, - 0x2a, 0x7c, 0xf9, 0x93, 0xed, 0x1b, 0x7f, 0xfc, 0xd3, 0x6d, 0x49, 0x2d, 0x22, 0x5d, 0x5b, 0x77, - 0x29, 0xd9, 0x86, 0x12, 0x5f, 0x64, 0x68, 0xcd, 0x4c, 0xb7, 0x9e, 0xbe, 0x2b, 0xdd, 0xcb, 0xaa, - 0x7c, 0xdd, 0x16, 0x83, 0x90, 0x3d, 0xf0, 0x76, 0xd5, 0xd8, 0xa1, 0xeb, 0x99, 0x25, 0xf6, 0x29, - 0x09, 0x4a, 0x36, 0x47, 0xde, 0x81, 0xa2, 0x63, 0x8c, 0x4d, 0xdd, 0x9d, 0xd9, 0xb4, 0x9e, 0xbd, - 0x2b, 0xdd, 0x2b, 0xab, 0x01, 0xa0, 0xf1, 0xc3, 0x0c, 0x94, 0xdb, 0xba, 0x31, 0x79, 0xdd, 0x9f, - 0x4d, 0xa7, 0xba, 0xfd, 0x3a, 0x76, 0x3b, 0xe9, 0x7a, 0xb7, 0x3b, 0x60, 0x7c, 0x74, 0xce, 0x2c, - 0xd3, 0xa1, 0xfc, 0xf4, 0xcb, 0x70, 0xa9, 0xec, 0x91, 0xe2, 0xf1, 0xdf, 0x85, 0xf2, 0x99, 0x4d, - 0xcf, 0x74, 0x5b, 0x48, 0x24, 0x8d, 0x12, 0x29, 0x79, 0x30, 0x26, 0x90, 0xc8, 0x0d, 0x33, 0xb1, - 0x1b, 0x92, 0x4f, 0x60, 0xf5, 0xdc, 0xb2, 0x5f, 0x18, 0xe6, 0x58, 0x73, 0x5c, 0xcb, 0xd6, 0xc7, - 0x54, 0x73, 0x8c, 0x1f, 0x70, 0x56, 0xa4, 0x55, 0x22, 0xe6, 0xfa, 0x7c, 0xaa, 0x6f, 0xfc, 0x80, - 0x32, 0x2d, 0x30, 0xe9, 0xb9, 0x36, 0xb4, 0x4c, 0xd7, 0xd6, 0x87, 0xae, 0x53, 0xcf, 0x21, 0x6a, - 0xd9, 0xa4, 0xe7, 0x2d, 0x0f, 0x46, 0x3e, 0x04, 0x12, 0x41, 0xd2, 0x4e, 0x2d, 0xc7, 0xad, 0xe7, - 0x11, 0x53, 0x0e, 0x63, 0xee, 0x5b, 0x8e, 0xcb, 0x0e, 0x11, 0xc5, 0xb6, 0xa9, 0xe9, 0x52, 0xbb, - 0x5e, 0xe0, 0x87, 0x08, 0xe3, 0xab, 0x38, 0x43, 0xbe, 0x03, 0xb7, 0xa3, 0x14, 0xfa, 0x2b, 0x8a, - 0x87, 0x3f, 0xb3, 0x8d, 0x21, 0xad, 0x17, 0x91, 0xb0, 0x1e, 0x26, 0x6c, 0x72, 0x84, 0x43, 0x36, - 0x4f, 0x6e, 0x43, 0x91, 0x91, 0x9f, 0x18, 0x13, 0xea, 0xd4, 0x01, 0x91, 0x0b, 0x26, 0x3d, 0xdf, - 0x65, 0x63, 0xf2, 0x75, 0xa8, 0xb1, 0x49, 0xe7, 0x54, 0xb7, 0x47, 0x0e, 0xe7, 0x46, 0x09, 0x51, - 0xd8, 0xbd, 0xfb, 0x08, 0x65, 0x8c, 0x68, 0xfc, 0x65, 0x0a, 0x4a, 0xec, 0xf8, 0xbf, 0xb2, 0xba, - 0xf1, 0x2e, 0x33, 0xb2, 0xa1, 0x65, 0x8f, 0x84, 0x19, 0x66, 0xd1, 0x0c, 0x4b, 0x1c, 0xc6, 0xed, - 0xf0, 0x3e, 0xe4, 0x1c, 0x57, 0x77, 0x67, 0x4c, 0x0b, 0xd2, 0xf7, 0x4a, 0x0f, 0x56, 0x76, 0xb8, - 0x67, 0x42, 0xbe, 0xe0, 0x84, 0x2a, 0x10, 0x1a, 0xff, 0x92, 0x86, 0x95, 0x81, 0xe5, 0xea, 0x13, - 0x06, 0xa7, 0xbf, 0xca, 0x06, 0xf5, 0x4a, 0x9f, 0x18, 0x23, 0x5f, 0x37, 0x43, 0xcc, 0x4b, 0xab, - 0x04, 0xe7, 0x3c, 0xa5, 0xe4, 0x3c, 0xfc, 0x10, 0x08, 0xfd, 0xc2, 0x70, 0x5c, 0x3a, 0xe2, 0x3a, - 0xc7, 0x55, 0x8e, 0x5b, 0x95, 0x2c, 0x66, 0x50, 0xed, 0xd0, 0xfc, 0x1e, 0xc2, 0xba, 0x61, 0x26, - 0xee, 0xc0, 0xad, 0x6b, 0x55, 0xcc, 0x46, 0xf7, 0xf8, 0x3a, 0xd4, 0x26, 0x96, 0xe3, 0x86, 0x37, - 0xe0, 0xc6, 0x55, 0x61, 0xe0, 0x60, 0xf5, 0x0f, 0x60, 0xc5, 0x65, 0x32, 0x42, 0x7b, 0xd5, 0x6c, - 0x7a, 0xae, 0xdb, 0x23, 0x61, 0x4d, 0x35, 0x9c, 0x60, 0x82, 0x55, 0x11, 0xdc, 0xf8, 0x91, 0x04, - 0x10, 0xc8, 0x99, 0x6c, 0x40, 0x01, 0x89, 0x82, 0xc0, 0x90, 0x67, 0x63, 0xc6, 0xb1, 0xdb, 0x50, - 0x64, 0xa6, 0xc6, 0xf7, 0x4d, 0x71, 0x73, 0x63, 0x00, 0xdc, 0x72, 0x1b, 0x4a, 0xcc, 0xcb, 0x68, - 0xfa, 0xd4, 0xf7, 0xf5, 0x69, 0x15, 0x18, 0xa8, 0x89, 0x10, 0x72, 0x07, 0x80, 0x1f, 0x44, 0x3b, - 0x76, 0x5d, 0x64, 0x78, 0x5a, 0x2d, 0x72, 0xc8, 0x23, 0xd7, 0x65, 0xfe, 0xc8, 0x99, 0x39, 0x67, - 0x94, 0xf1, 0xe1, 0x94, 0xea, 0x9c, 0xd3, 0x05, 0xb5, 0x2c, 0x80, 0x2d, 0x06, 0x6b, 0xfc, 0xa1, - 0x04, 0xe9, 0x8e, 0x35, 0x26, 0x0a, 0x94, 0x86, 0xa7, 0xba, 0x39, 0x16, 0x7a, 0xb2, 0x8c, 0xbe, - 0x01, 0x27, 0x44, 0x2d, 0x79, 0x0f, 0xaa, 0x96, 0x6d, 0x8c, 0x0d, 0x53, 0x77, 0x2d, 0xae, 0x27, - 0x29, 0xbc, 0x71, 0x25, 0x80, 0xb2, 0x7b, 0xaf, 0x43, 0x8e, 0x13, 0x09, 0x35, 0x12, 0xa3, 0xc6, - 0x7f, 0x64, 0xa1, 0xec, 0xc9, 0xe7, 0x09, 0x75, 0x75, 0xc6, 0x03, 0x5f, 0x98, 0x3e, 0xfb, 0xc0, - 0x03, 0x1d, 0x8c, 0x38, 0x0f, 0x4c, 0x2f, 0xee, 0xf2, 0xcd, 0x8a, 0x1c, 0xc2, 0x36, 0x0a, 0xf3, - 0x3e, 0x1d, 0xe5, 0xfd, 0x1d, 0x00, 0x2e, 0xf4, 0x53, 0xdd, 0x39, 0x45, 0xee, 0x15, 0xd5, 0x22, - 0x42, 0xf6, 0x75, 0xe7, 0x94, 0xed, 0xcc, 0xa7, 0x0d, 0x73, 0x44, 0xbf, 0x10, 0x26, 0xce, 0x29, - 0x0e, 0x18, 0x84, 0x69, 0x0e, 0x47, 0x08, 0x24, 0xc8, 0x55, 0xb3, 0x82, 0xe0, 0x5d, 0x4f, 0x8c, - 0x9e, 0x8c, 0x71, 0x9b, 0x3c, 0x6e, 0x83, 0x32, 0xc6, 0x5d, 0x5a, 0xfc, 0xf8, 0x9a, 0xe3, 0xea, - 0xb6, 0x8b, 0x9a, 0x77, 0x65, 0x2b, 0x67, 0x74, 0x7d, 0x46, 0x46, 0xbe, 0x07, 0x05, 0x5c, 0x84, - 0x9a, 0x5c, 0x25, 0xaf, 0xba, 0x44, 0x9e, 0x51, 0x29, 0x26, 0xaa, 0x21, 0x7a, 0x27, 0x64, 0x13, - 0xf0, 0x23, 0x22, 0x40, 0xf0, 0x89, 0x3a, 0x43, 0xdb, 0x3a, 0xc7, 0xd9, 0x12, 0xe7, 0x13, 0x87, - 0xb0, 0xe9, 0x55, 0xc8, 0xf2, 0xd0, 0x52, 0xc6, 0xcb, 0xf3, 0x01, 0x13, 0xb0, 0x50, 0xdb, 0x0a, - 0x82, 0xc5, 0x88, 0x7c, 0x03, 0x56, 0x86, 0xd6, 0x64, 0xa2, 0xbb, 0xd4, 0xd6, 0x27, 0x9e, 0x66, - 0x57, 0xb9, 0x45, 0x07, 0x13, 0x42, 0xbf, 0x15, 0xa8, 0x9d, 0xe9, 0xaf, 0xad, 0x99, 0xab, 0x39, - 0xc3, 0x53, 0x3a, 0x9a, 0x4d, 0x68, 0xbd, 0x76, 0x57, 0xba, 0x57, 0x7d, 0xf0, 0x8e, 0x70, 0xa6, - 0x61, 0x55, 0xd9, 0xe9, 0x0b, 0x1c, 0xb5, 0xca, 0x89, 0xbc, 0x31, 0x93, 0xa4, 0x39, 0x9b, 0x6a, - 0x1c, 0xea, 0xd4, 0x65, 0x2e, 0x49, 0x73, 0x36, 0x3d, 0xe4, 0x10, 0x7e, 0x28, 0xd3, 0x35, 0xcc, - 0x31, 0xe3, 0xa2, 0x38, 0xd4, 0x8a, 0x77, 0x28, 0x6f, 0x82, 0x1f, 0xaa, 0xf1, 0x10, 0x0a, 0xfe, - 0xca, 0x25, 0xc8, 0x3f, 0xe9, 0x75, 0x07, 0xfb, 0x9d, 0xe7, 0xf2, 0x0d, 0x52, 0x81, 0xe2, 0xd3, - 0xa3, 0xa6, 0x3a, 0x50, 0xd4, 0xce, 0x73, 0x59, 0x22, 0x65, 0x28, 0x34, 0xbb, 0xdd, 0xa3, 0x66, - 0xa7, 0xf3, 0x5c, 0x4e, 0x35, 0xfe, 0xbd, 0x08, 0x05, 0xef, 0xb4, 0xe4, 0x9b, 0x50, 0xf0, 0x34, - 0x58, 0x18, 0xda, 0xcd, 0x84, 0x0b, 0x71, 0x41, 0xfd, 0xf8, 0x27, 0xdb, 0x92, 0xea, 0xa3, 0x93, - 0x4f, 0x21, 0xcb, 0xa2, 0x06, 0x77, 0x16, 0xd5, 0x07, 0x77, 0x62, 0x74, 0xfe, 0x3f, 0x18, 0x4a, - 0x54, 0x8e, 0x4b, 0xee, 0x83, 0x2c, 0x6c, 0x24, 0x70, 0xcf, 0x69, 0x74, 0xcf, 0x35, 0x0e, 0xef, - 0xfb, 0x4e, 0xfa, 0x3d, 0xa8, 0xa2, 0xbd, 0xc4, 0xfd, 0x78, 0x85, 0x41, 0x03, 0x34, 0x15, 0x88, - 0xd0, 0x09, 0x86, 0x48, 0x47, 0xdc, 0x69, 0x64, 0x97, 0xd0, 0x3d, 0x99, 0xd3, 0xf7, 0x91, 0x1c, - 0x5d, 0xc7, 0x7d, 0x90, 0x43, 0x6b, 0xf2, 0xcd, 0x73, 0xfc, 0x94, 0x01, 0xae, 0x17, 0x4a, 0x84, - 0xcf, 0xd1, 0x26, 0xd6, 0xb8, 0x9e, 0xc7, 0x00, 0x0b, 0x82, 0x15, 0x1d, 0x6b, 0xfc, 0x28, 0xfb, - 0x17, 0x3f, 0xdd, 0x96, 0x3e, 0x52, 0x8b, 0x1c, 0x89, 0xb9, 0xb7, 0x2e, 0xc8, 0x13, 0xdd, 0x71, - 0xb5, 0xa9, 0x35, 0x32, 0x4e, 0x5e, 0xf3, 0xe3, 0x2e, 0x63, 0x6d, 0x55, 0x46, 0xfd, 0x04, 0x89, - 0xf1, 0xb0, 0xef, 0x43, 0x8d, 0x5b, 0x4c, 0x70, 0xd6, 0x22, 0x9e, 0xb5, 0x8a, 0xe0, 0x7e, 0x38, - 0x55, 0x88, 0x84, 0x4d, 0x98, 0x0f, 0x9b, 0x1f, 0x01, 0xf1, 0x51, 0x82, 0xe5, 0x4a, 0xb8, 0xdc, - 0x8a, 0x37, 0x13, 0xac, 0x38, 0x84, 0xdb, 0x78, 0x15, 0x67, 0x36, 0x1c, 0x52, 0xc7, 0xd1, 0x86, - 0xa7, 0xfa, 0x64, 0x42, 0x7d, 0xcf, 0x5d, 0x5e, 0xe2, 0x56, 0x75, 0xb6, 0x50, 0x9f, 0xaf, 0xd3, - 0xf2, 0x96, 0xc1, 0xfb, 0x0d, 0xe0, 0x26, 0x6e, 0x12, 0x5b, 0xbc, 0xb2, 0xc4, 0xe2, 0x2b, 0x6c, - 0x81, 0xe8, 0xaa, 0xef, 0x43, 0x2d, 0xba, 0xa0, 0x83, 0xb6, 0x9f, 0x55, 0xab, 0xc3, 0x30, 0x9e, - 0xc3, 0x72, 0x85, 0x00, 0xf1, 0x5c, 0xb7, 0x4d, 0x81, 0x5d, 0x43, 0x6c, 0xe2, 0xcf, 0x3d, 0xd3, - 0x6d, 0x93, 0x53, 0x7c, 0x06, 0xb7, 0x02, 0x0a, 0x8f, 0x35, 0x9c, 0x88, 0x1b, 0xfc, 0x9a, 0x3f, - 0x2d, 0x2e, 0xcc, 0xe9, 0x7e, 0x17, 0x6e, 0x9d, 0x18, 0x76, 0xe4, 0xa6, 0x82, 0x1a, 0x3d, 0xc0, - 0x55, 0x2f, 0xbb, 0x86, 0x8b, 0xb4, 0x62, 0x5b, 0x30, 0xe7, 0xe8, 0x5a, 0x2f, 0xa8, 0x59, 0x27, - 0x28, 0x76, 0x3e, 0x68, 0x7c, 0x29, 0x41, 0x25, 0x62, 0xa8, 0xa4, 0x08, 0xd9, 0xb6, 0xda, 0xdc, - 0x1d, 0xc8, 0x37, 0x08, 0x40, 0xae, 0x7f, 0xb0, 0xd7, 0x55, 0xda, 0xdc, 0x87, 0x1c, 0x1d, 0x76, - 0x7a, 0xcd, 0xb6, 0xd2, 0x96, 0x53, 0xa4, 0x00, 0x99, 0x4e, 0xaf, 0x3f, 0x90, 0xd3, 0x0c, 0xde, - 0x6a, 0x76, 0x5b, 0x4a, 0x47, 0x69, 0xcb, 0x19, 0x46, 0xd1, 0xea, 0xf4, 0xfa, 0x4a, 0x5b, 0xce, - 0x32, 0x8f, 0xa4, 0x2a, 0x5d, 0xe5, 0x99, 0xd2, 0x96, 0x73, 0x0c, 0xad, 0xf7, 0xa8, 0xdf, 0xeb, - 0x28, 0x03, 0x45, 0xce, 0x33, 0xf2, 0x67, 0x4d, 0xb5, 0x2b, 0x17, 0x48, 0x15, 0x00, 0x77, 0xd3, - 0x70, 0x5c, 0x24, 0x37, 0xa1, 0xa6, 0x2a, 0xcd, 0xf6, 0x73, 0xad, 0xb5, 0xdf, 0xec, 0x74, 0x94, - 0xee, 0x9e, 0x22, 0x03, 0x73, 0x67, 0xaa, 0xd2, 0x52, 0x95, 0xe6, 0x40, 0x69, 0xcb, 0x25, 0xb2, - 0x06, 0x2b, 0xaa, 0xf2, 0xf4, 0x48, 0xe9, 0x0f, 0x42, 0x58, 0xe5, 0xc6, 0x1f, 0xa5, 0x60, 0x0d, - 0x23, 0x9d, 0x6b, 0xd9, 0xb4, 0x63, 0xb0, 0x14, 0x88, 0xe7, 0x8c, 0xe4, 0x37, 0x20, 0x2f, 0xca, - 0x49, 0xe1, 0xe3, 0xee, 0x7a, 0x06, 0x8a, 0x58, 0xcc, 0xed, 0x30, 0xc2, 0x03, 0xf3, 0xc4, 0x52, - 0x39, 0x9e, 0xea, 0x11, 0xb0, 0x22, 0x76, 0x38, 0xb3, 0x31, 0xa6, 0x2d, 0x9d, 0xb5, 0x96, 0x04, - 0x25, 0x2a, 0xdc, 0xb7, 0xa1, 0xc6, 0xa3, 0x33, 0x3b, 0x9e, 0x36, 0xa5, 0xae, 0x5e, 0x4f, 0xa3, - 0xb7, 0x58, 0x15, 0x87, 0xf1, 0xcf, 0xce, 0x3c, 0xae, 0x5a, 0x39, 0x09, 0x0f, 0x99, 0xf4, 0x78, - 0x02, 0x99, 0x41, 0x0d, 0xe2, 0x83, 0x4b, 0x0a, 0xe3, 0x7f, 0xce, 0x42, 0x25, 0xb2, 0x68, 0x2c, - 0x43, 0x91, 0xe2, 0x19, 0x4a, 0x24, 0x3d, 0x48, 0xc5, 0xd2, 0x83, 0x48, 0x7e, 0x98, 0x8e, 0xe5, - 0x87, 0xd1, 0xdc, 0x21, 0xf3, 0x7f, 0xcf, 0x1d, 0xb2, 0xd7, 0xc9, 0x1d, 0xd0, 0xa6, 0xe9, 0xf0, - 0x85, 0x76, 0x82, 0xd2, 0x33, 0x87, 0xaf, 0xd1, 0x6b, 0xa3, 0x4d, 0xd3, 0xe1, 0x8b, 0x5d, 0x0f, - 0x1a, 0x24, 0x19, 0x27, 0x94, 0x8a, 0x94, 0x9c, 0x27, 0x19, 0xbb, 0x94, 0x86, 0x92, 0x0c, 0x36, - 0xcb, 0x33, 0x70, 0x91, 0x64, 0xb0, 0x69, 0x3f, 0x19, 0xe3, 0xf2, 0x28, 0x86, 0x92, 0x31, 0x9e, - 0xc6, 0xbf, 0x07, 0xd5, 0xa9, 0x61, 0x1a, 0xd3, 0xd9, 0x54, 0x94, 0xa7, 0xe8, 0x68, 0xb3, 0x6a, - 0x45, 0x40, 0x79, 0x75, 0xca, 0x22, 0x3d, 0x2b, 0xd2, 0x5e, 0x51, 0x5b, 0x73, 0x4f, 0x6d, 0xea, - 0x9c, 0x5a, 0x13, 0x9e, 0xd2, 0x64, 0x55, 0x59, 0x4c, 0x0c, 0x3c, 0x78, 0x2c, 0xf1, 0x29, 0xc7, - 0x13, 0x9f, 0x48, 0xd2, 0x54, 0x89, 0x25, 0x4d, 0xdf, 0x82, 0x4d, 0x74, 0x5b, 0x31, 0x77, 0xa7, - 0x4d, 0x8c, 0xa9, 0xe1, 0x0a, 0xa7, 0x77, 0x8b, 0x61, 0x44, 0x1c, 0xa4, 0xd3, 0x61, 0xd3, 0xa4, - 0x09, 0x77, 0x92, 0x9d, 0xbb, 0x47, 0xcf, 0xdd, 0xe0, 0xa6, 0x93, 0xe0, 0xb9, 0xc5, 0x12, 0xe8, - 0x40, 0x23, 0x52, 0x41, 0x37, 0x2a, 0x7c, 0x21, 0x89, 0x8a, 0x86, 0x79, 0xd1, 0xc0, 0x55, 0xad, - 0x84, 0x5d, 0xd5, 0x3f, 0xe6, 0xa0, 0xe6, 0xab, 0xb3, 0xa8, 0x67, 0x76, 0xe7, 0x8d, 0x8a, 0x5b, - 0x78, 0xa2, 0x51, 0x85, 0xd2, 0x98, 0x98, 0x79, 0x7d, 0x16, 0xcd, 0x65, 0xee, 0xc6, 0xa9, 0xf9, - 0x76, 0x3b, 0x0c, 0x37, 0x92, 0xce, 0x3c, 0x84, 0x62, 0xd0, 0x63, 0xe1, 0xe6, 0x5c, 0x8b, 0xe5, - 0x41, 0x41, 0x06, 0xe0, 0x37, 0x5e, 0x92, 0x92, 0xa0, 0x4c, 0x72, 0x12, 0xa4, 0x02, 0xe1, 0x92, - 0xb5, 0xe9, 0x90, 0x1a, 0xaf, 0xe8, 0x35, 0xb2, 0x1b, 0xa4, 0x57, 0x39, 0x39, 0x7a, 0xa2, 0x68, - 0xca, 0x92, 0xbb, 0x42, 0xca, 0x12, 0x77, 0x82, 0xf9, 0xeb, 0x3a, 0xc1, 0x84, 0x5c, 0xa5, 0x90, - 0x98, 0xab, 0x28, 0x50, 0x66, 0x44, 0xfa, 0x44, 0xe3, 0x72, 0x29, 0xa2, 0x5c, 0x1a, 0x17, 0xc8, - 0x45, 0x45, 0x54, 0x2e, 0x99, 0x92, 0x1d, 0x0c, 0xde, 0x7e, 0xca, 0xd3, 0x98, 0x41, 0xd1, 0xd7, - 0x82, 0x70, 0xac, 0xac, 0x40, 0x91, 0xc7, 0xc7, 0x83, 0xee, 0x9e, 0x2c, 0x61, 0xf0, 0x3b, 0xea, - 0x76, 0xd9, 0x20, 0x45, 0x64, 0x28, 0x1f, 0x36, 0xd5, 0xc1, 0x41, 0xb3, 0xa3, 0x89, 0xa8, 0xe9, - 0xc5, 0xcf, 0x0c, 0xfb, 0xaf, 0xdd, 0xeb, 0x2a, 0x72, 0x36, 0x12, 0x49, 0x73, 0xd1, 0x98, 0x97, - 0x6f, 0x3c, 0x81, 0x52, 0xe8, 0x92, 0x24, 0x0f, 0xe9, 0xae, 0xf2, 0x4c, 0xbe, 0x41, 0x6a, 0x50, - 0xf2, 0x96, 0x66, 0x00, 0xdc, 0x58, 0xf9, 0x9d, 0xc3, 0x03, 0x15, 0xc3, 0x74, 0x11, 0xb2, 0x18, - 0x82, 0x79, 0x9c, 0xf6, 0xd6, 0x93, 0x33, 0x8d, 0x1f, 0x49, 0xb0, 0xe2, 0xdb, 0xea, 0x53, 0x16, - 0xe8, 0x0c, 0xcb, 0x8c, 0x95, 0xa1, 0x52, 0xbc, 0x0c, 0x0d, 0x17, 0xb0, 0xa9, 0x68, 0x01, 0xcb, - 0x6a, 0xe3, 0xd3, 0x99, 0xf9, 0x42, 0x54, 0xa8, 0xa2, 0x17, 0x8c, 0x20, 0x5e, 0xa1, 0xae, 0x42, - 0xd6, 0xb4, 0xcc, 0x21, 0x15, 0xc5, 0x2d, 0x1f, 0x90, 0xaf, 0x41, 0x85, 0x7e, 0x81, 0x5d, 0x01, - 0xdd, 0x74, 0xce, 0xa9, 0x8d, 0x8a, 0x5d, 0x54, 0xcb, 0x1c, 0xd8, 0x44, 0x58, 0xe3, 0xf7, 0xd3, - 0xb0, 0x71, 0x68, 0x5b, 0xd6, 0x49, 0xef, 0x44, 0xa5, 0x67, 0x13, 0x63, 0xa8, 0xbb, 0xd4, 0x3f, - 0x3b, 0xf9, 0x2e, 0x14, 0x5e, 0x8a, 0xf3, 0x0b, 0xd3, 0xaf, 0x7b, 0x06, 0x18, 0xbf, 0x5f, 0xb8, - 0x8a, 0xf1, 0x68, 0xc8, 0x6f, 0x41, 0x35, 0x96, 0x58, 0x2e, 0x13, 0xe1, 0x2b, 0x91, 0x64, 0x31, - 0xea, 0x87, 0xd3, 0x31, 0x3f, 0x9c, 0xa0, 0xfb, 0x99, 0x44, 0xdd, 0xdf, 0x86, 0x12, 0xf2, 0x39, - 0xc2, 0x13, 0x60, 0x20, 0xce, 0x11, 0xf2, 0x38, 0x54, 0x19, 0xf1, 0x33, 0xe7, 0x96, 0xe9, 0xa5, - 0x79, 0xf5, 0x93, 0xd7, 0x25, 0x89, 0x55, 0x59, 0xf9, 0x84, 0x2a, 0xab, 0xf1, 0x7b, 0xb0, 0xce, - 0x8c, 0x6e, 0x8e, 0xa7, 0x4e, 0x34, 0x69, 0x90, 0x62, 0x49, 0xc3, 0x9e, 0xd7, 0x98, 0xf0, 0xf8, - 0xed, 0xd4, 0x53, 0xe8, 0x6f, 0xb6, 0x84, 0x90, 0x30, 0x18, 0xce, 0xaf, 0xaa, 0x56, 0x91, 0xcc, - 0x1f, 0x37, 0xfe, 0x35, 0x05, 0xb7, 0x2e, 0xc0, 0x5d, 0x7c, 0x82, 0xa8, 0x4e, 0xa7, 0xe2, 0x3a, - 0x7d, 0x85, 0x56, 0xe2, 0x7b, 0x50, 0xf5, 0x4e, 0xaf, 0x85, 0x73, 0xb0, 0x8a, 0x07, 0xe5, 0x61, - 0xff, 0x33, 0x28, 0x06, 0x97, 0xcc, 0xe2, 0x25, 0x2f, 0xd4, 0x44, 0x35, 0x40, 0x65, 0xbe, 0x55, - 0xec, 0xb6, 0xbc, 0x28, 0xbd, 0x73, 0xa2, 0x24, 0x93, 0x1d, 0x59, 0xfe, 0x22, 0x47, 0xf6, 0x46, - 0x82, 0x8d, 0x16, 0xc6, 0xde, 0x48, 0xde, 0x29, 0xd2, 0xde, 0xcb, 0x78, 0xba, 0xa8, 0xd1, 0x35, - 0xf7, 0x04, 0x95, 0x4e, 0x78, 0x82, 0xfa, 0x7f, 0x7a, 0x1c, 0xfa, 0xcf, 0x14, 0x6c, 0x5c, 0x98, - 0xe5, 0x5f, 0x96, 0x0f, 0xcf, 0x5d, 0x24, 0x95, 0x70, 0x91, 0x0f, 0x58, 0x1e, 0xc7, 0x2f, 0x72, - 0xe6, 0xbf, 0xcc, 0x70, 0x07, 0x58, 0x13, 0x13, 0x87, 0xde, 0xb3, 0xcc, 0x87, 0x40, 0x22, 0xb8, - 0xdc, 0x5b, 0x66, 0xbc, 0xa4, 0xcf, 0x47, 0xe6, 0x3e, 0x33, 0xce, 0xa2, 0xab, 0x45, 0x7d, 0x69, - 0x9e, 0x45, 0x49, 0x1d, 0x87, 0xdc, 0x12, 0x8b, 0xc5, 0x3b, 0x0e, 0x11, 0x96, 0xe7, 0xe3, 0x2c, - 0xff, 0xfb, 0x0c, 0xd4, 0x19, 0xcb, 0xf7, 0x2d, 0xc7, 0x0d, 0x3d, 0x09, 0x71, 0x8e, 0x2f, 0x68, - 0x40, 0xff, 0x92, 0xb9, 0xfd, 0x1c, 0xd6, 0xe3, 0x4c, 0xd2, 0x1c, 0x83, 0x85, 0xac, 0x65, 0xf8, - 0x7e, 0x33, 0xca, 0xaa, 0x3e, 0x5b, 0x80, 0xf4, 0x45, 0x07, 0x23, 0xbc, 0xb4, 0x6b, 0x2d, 0x25, - 0x02, 0x39, 0xba, 0xee, 0xc0, 0x22, 0x4d, 0x2f, 0x65, 0xcd, 0x63, 0x6a, 0xf4, 0x8d, 0x50, 0x49, - 0x9b, 0xc4, 0xf9, 0x9d, 0x3e, 0x9d, 0xd0, 0x58, 0x33, 0x2e, 0xae, 0x60, 0x85, 0xeb, 0x2a, 0x58, - 0x44, 0x21, 0x8a, 0x71, 0x85, 0xd8, 0x81, 0x52, 0x68, 0x73, 0x96, 0xbb, 0x34, 0x3b, 0x1d, 0xde, - 0x5e, 0x68, 0xb6, 0x06, 0x07, 0xbf, 0xad, 0xc8, 0x52, 0xa8, 0x71, 0x90, 0x6a, 0xfc, 0x22, 0xd4, - 0x93, 0x70, 0xd8, 0x7d, 0xc8, 0x37, 0xe3, 0x05, 0xfc, 0xf6, 0x25, 0xb7, 0x0d, 0xea, 0xf7, 0x03, - 0xa8, 0x8c, 0xa9, 0x49, 0x6d, 0xdd, 0xbd, 0xce, 0xb3, 0x93, 0x47, 0x2a, 0x1c, 0xec, 0xa5, 0xc9, - 0x7e, 0x38, 0xcb, 0xbf, 0x4e, 0xc9, 0xfe, 0xb7, 0x29, 0xa8, 0xab, 0x54, 0x1f, 0xbd, 0xde, 0xb5, - 0x6c, 0x3f, 0x6a, 0x5c, 0xd1, 0x5b, 0x2d, 0xac, 0xde, 0xa3, 0x61, 0x30, 0x9d, 0xf0, 0xc2, 0x10, - 0x7e, 0xdb, 0xc8, 0xcc, 0xbd, 0x6d, 0x84, 0xed, 0x36, 0x1b, 0xb5, 0xdb, 0xb7, 0x16, 0xc0, 0x16, - 0xba, 0x15, 0x76, 0x3d, 0xc3, 0xd1, 0x18, 0xba, 0xc1, 0x1f, 0x9d, 0x0b, 0x6a, 0xc1, 0x70, 0x54, - 0x1c, 0x37, 0xfe, 0x4b, 0x62, 0x7c, 0x43, 0x36, 0xcd, 0xa7, 0xb5, 0x0f, 0xaf, 0x9e, 0x22, 0x86, - 0x12, 0xc3, 0xf8, 0xb5, 0x52, 0x6f, 0xe5, 0x5a, 0xe9, 0x85, 0xd7, 0xca, 0x44, 0xaf, 0x15, 0x15, - 0x69, 0x36, 0x2a, 0xd2, 0xc6, 0x1f, 0xa4, 0x60, 0xc3, 0x6b, 0x71, 0xcd, 0x5f, 0xfa, 0x13, 0xc8, - 0x89, 0xfc, 0xf1, 0xb2, 0x2b, 0x0b, 0xbc, 0x45, 0xe9, 0x3d, 0x3a, 0x0a, 0xc7, 0x9a, 0x78, 0xf5, - 0x67, 0x7a, 0xb9, 0x60, 0x8d, 0x94, 0xf3, 0xbc, 0xc8, 0x2c, 0xe4, 0x45, 0x76, 0x11, 0x2f, 0x72, - 0x71, 0x5e, 0x48, 0x40, 0x76, 0x2d, 0x7b, 0x48, 0x39, 0xf2, 0xdb, 0xb0, 0x98, 0x0d, 0x28, 0xe8, - 0x33, 0xf7, 0x34, 0xfc, 0x5c, 0xc7, 0xc6, 0x97, 0x3e, 0x2e, 0x37, 0xfe, 0x44, 0x82, 0x9c, 0x4a, - 0x9d, 0xd9, 0xc4, 0x25, 0xef, 0x43, 0x66, 0x68, 0x8d, 0xf8, 0x13, 0x66, 0xd5, 0x7f, 0x59, 0xf1, - 0x85, 0x66, 0x8d, 0xa8, 0x8a, 0x08, 0xa4, 0x0e, 0xf9, 0x29, 0x75, 0x1c, 0x7d, 0x4c, 0x3d, 0xd6, - 0x8b, 0xe1, 0xfc, 0xb3, 0x79, 0xfa, 0xba, 0xcf, 0xe6, 0x8d, 0x7f, 0xca, 0x40, 0x95, 0xf3, 0xc7, - 0x7f, 0xfe, 0x59, 0x98, 0xe6, 0x45, 0xdf, 0xa3, 0x05, 0x93, 0xd2, 0xf7, 0x8a, 0xa1, 0xf7, 0xe8, - 0xcb, 0x3b, 0x83, 0x0f, 0x61, 0x7d, 0x64, 0x9d, 0x9b, 0x13, 0x4b, 0x1f, 0x89, 0xa7, 0x6a, 0xef, - 0x55, 0x8b, 0x3f, 0x12, 0xaf, 0x7a, 0xb3, 0xfc, 0xc1, 0x5a, 0x3c, 0xb7, 0x7d, 0x02, 0xab, 0x5c, - 0x0d, 0x62, 0x34, 0xe2, 0x81, 0xde, 0x16, 0x52, 0x0e, 0x51, 0xa0, 0xa8, 0x91, 0x82, 0x09, 0x2c, - 0xe7, 0x89, 0x9a, 0x41, 0x98, 0xc8, 0xba, 0x20, 0x8b, 0xe9, 0xa0, 0x68, 0x5a, 0xa6, 0x8b, 0x51, - 0xe5, 0xd4, 0x7e, 0xd9, 0x74, 0x3f, 0xb2, 0x5e, 0xb8, 0x93, 0x51, 0x0b, 0x30, 0xfd, 0x8f, 0x0d, - 0x7c, 0x0e, 0x84, 0x9d, 0x6c, 0x11, 0xcf, 0x48, 0xbc, 0xb9, 0x56, 0xe0, 0x6c, 0x31, 0x71, 0xc1, - 0xc5, 0xc3, 0xf8, 0xbc, 0x77, 0x21, 0xb6, 0x0d, 0x61, 0x77, 0xc2, 0x75, 0x25, 0xbf, 0x59, 0x69, - 0x99, 0x12, 0xd6, 0xaf, 0x3e, 0x2f, 0xea, 0xd0, 0x94, 0x93, 0xaa, 0xd4, 0xc6, 0xcf, 0x25, 0x58, - 0x8f, 0x6a, 0x93, 0xdf, 0x6f, 0xff, 0xb5, 0xb9, 0x47, 0xc5, 0x35, 0x5f, 0xf5, 0x23, 0x04, 0xc1, - 0x63, 0x62, 0xc7, 0xff, 0x46, 0x85, 0x77, 0xe0, 0x1e, 0x26, 0x13, 0x88, 0x1d, 0x76, 0xe2, 0x80, - 0xd8, 0x67, 0x2c, 0xbb, 0xb0, 0x9e, 0x8c, 0x41, 0x6a, 0x50, 0x7a, 0xd4, 0x1b, 0xec, 0x6b, 0xe2, - 0x5d, 0x03, 0xfb, 0x36, 0xcf, 0x9a, 0x07, 0x03, 0xad, 0x73, 0xd0, 0x1f, 0xf0, 0x67, 0x0e, 0x55, - 0x79, 0xac, 0xb4, 0x06, 0x98, 0x89, 0xfc, 0x1b, 0xde, 0x91, 0x67, 0x14, 0x91, 0x83, 0x5c, 0x52, - 0x74, 0x6e, 0x43, 0x49, 0x08, 0xd0, 0x64, 0xe6, 0xcf, 0x4d, 0x5a, 0xe8, 0x67, 0x97, 0xd9, 0x7b, - 0x92, 0x3a, 0xa6, 0xdf, 0xb2, 0x3a, 0x66, 0x12, 0xd5, 0xb1, 0xf1, 0x37, 0x69, 0xb8, 0xe5, 0x31, - 0xe5, 0xed, 0x5e, 0xea, 0x7b, 0x5e, 0x46, 0x9a, 0x46, 0x11, 0xde, 0x8f, 0xb9, 0xbb, 0xd8, 0x66, - 0x42, 0xb4, 0x4c, 0x2e, 0x5e, 0x3e, 0xba, 0xe3, 0x2b, 0x01, 0xaf, 0x06, 0xd7, 0x93, 0xdb, 0x7d, - 0x9e, 0x98, 0xa3, 0xed, 0x96, 0x6c, 0xac, 0xdd, 0xd2, 0xe4, 0x4e, 0x7a, 0xf9, 0x9c, 0xa4, 0xe0, - 0x2c, 0xb0, 0x85, 0x7c, 0xa2, 0x2d, 0x68, 0x00, 0xc1, 0x6d, 0x08, 0x81, 0x6a, 0xab, 0xd7, 0x1d, - 0xa8, 0xcd, 0xd6, 0x40, 0xc3, 0xc7, 0x2c, 0xf9, 0x06, 0x59, 0x83, 0x95, 0x76, 0xef, 0x59, 0xb7, - 0xd3, 0x6b, 0xb6, 0xb5, 0x6e, 0x6f, 0xa0, 0x61, 0xcf, 0x4f, 0x22, 0x2b, 0x50, 0xf1, 0x9e, 0xb2, - 0x9a, 0x7b, 0xcd, 0x83, 0xae, 0x9c, 0x22, 0x37, 0xa1, 0xe6, 0x53, 0x8b, 0x94, 0x38, 0xdd, 0xf8, - 0xf3, 0x34, 0xac, 0xb5, 0x74, 0x73, 0x48, 0x27, 0x81, 0x5e, 0x5f, 0xad, 0x50, 0x5f, 0xd4, 0xfc, - 0x88, 0x65, 0x7d, 0xe9, 0x4b, 0xbe, 0x68, 0xc9, 0x2c, 0xfa, 0xa2, 0x25, 0x96, 0x14, 0x36, 0x21, - 0x67, 0x53, 0xdd, 0xb1, 0x4c, 0x64, 0x7d, 0xa0, 0x0c, 0x89, 0x97, 0x10, 0x50, 0x15, 0x09, 0x54, - 0x41, 0x18, 0x15, 0x60, 0xfe, 0x5a, 0x02, 0x8c, 0x04, 0xea, 0x42, 0x3c, 0x50, 0xab, 0x50, 0x0e, - 0x6f, 0x4c, 0x64, 0x28, 0xef, 0xf7, 0xfa, 0x4c, 0x66, 0x28, 0x11, 0xf9, 0x06, 0x13, 0x8f, 0x2f, - 0xb5, 0xdd, 0xe6, 0x41, 0x47, 0x96, 0x98, 0x70, 0x55, 0xa5, 0x3b, 0x50, 0x54, 0x1f, 0x0d, 0xdb, - 0xac, 0xbd, 0xc1, 0xbe, 0xa2, 0xca, 0xe9, 0xc6, 0x9f, 0x4a, 0x70, 0xd3, 0x4f, 0xb1, 0x1e, 0x5b, - 0xc7, 0xa1, 0xba, 0x97, 0x59, 0x4d, 0xb8, 0xee, 0x65, 0xe3, 0xa4, 0x4e, 0x48, 0xea, 0xad, 0x74, - 0x42, 0xe2, 0x89, 0x66, 0xe3, 0xbf, 0x53, 0xb0, 0x1a, 0x3d, 0x99, 0xf0, 0xd6, 0x0b, 0x8e, 0x76, - 0x07, 0xc0, 0x70, 0x9c, 0x59, 0xb4, 0xd1, 0xc3, 0x21, 0x6c, 0x7a, 0x0d, 0x72, 0x9f, 0x5b, 0xc7, - 0x81, 0xea, 0x64, 0x3f, 0xb7, 0x8e, 0x0f, 0xb0, 0x19, 0x7c, 0xa6, 0x0f, 0x5f, 0xb0, 0x92, 0x7b, - 0x66, 0x4f, 0xbc, 0x62, 0x42, 0x80, 0x8e, 0xec, 0x09, 0xf9, 0x0c, 0x6e, 0x79, 0x08, 0x7e, 0x1f, - 0x2c, 0xf2, 0xf9, 0xe2, 0x9a, 0x98, 0xf6, 0x7b, 0x7c, 0xbc, 0xc5, 0xc6, 0x34, 0x82, 0x9a, 0xa3, - 0xeb, 0x98, 0x34, 0x35, 0x47, 0xde, 0xc7, 0x04, 0xec, 0xc8, 0x27, 0x86, 0x69, 0x38, 0xa7, 0xda, - 0x88, 0xea, 0xa3, 0x89, 0x61, 0x2e, 0xa7, 0x5e, 0x2b, 0x9f, 0x5b, 0xc7, 0xbb, 0x48, 0xdf, 0x16, - 0xe4, 0x97, 0xe8, 0xd9, 0xcf, 0x24, 0x20, 0x31, 0xce, 0xb3, 0xe4, 0x70, 0x01, 0xdf, 0x03, 0xc6, - 0xa6, 0xc2, 0x8c, 0xfd, 0x94, 0x19, 0x15, 0xa3, 0x15, 0xd5, 0xe7, 0xed, 0xc4, 0x26, 0x2a, 0x5f, - 0x5e, 0x15, 0xa8, 0x44, 0x81, 0x92, 0x33, 0x3b, 0x9e, 0x1a, 0xd7, 0xe8, 0xb3, 0x01, 0x27, 0xbc, - 0x42, 0x9b, 0xed, 0xef, 0x24, 0x58, 0x4d, 0x3a, 0xc5, 0x55, 0x3e, 0x38, 0xbc, 0x4e, 0xbd, 0x9a, - 0xfc, 0x9c, 0xb0, 0xee, 0xf3, 0x87, 0x7b, 0x23, 0x8f, 0x05, 0xa8, 0xc6, 0x78, 0x7d, 0x6b, 0xe6, - 0xa2, 0xe2, 0x14, 0x98, 0x1a, 0x0f, 0x38, 0xa0, 0xf1, 0xd7, 0x12, 0x90, 0x36, 0x6d, 0x51, 0xe6, - 0x93, 0x26, 0x41, 0x5b, 0xf9, 0x5d, 0x48, 0xbd, 0x74, 0xea, 0x52, 0xe4, 0x93, 0xd9, 0x76, 0x50, - 0x36, 0xa5, 0x5e, 0x86, 0x4a, 0xfc, 0x54, 0xb8, 0xc4, 0x27, 0x90, 0x99, 0xcd, 0x7c, 0xa3, 0xc0, - 0xff, 0x89, 0x0c, 0xe9, 0xc0, 0x16, 0xd8, 0xbf, 0xe4, 0x5b, 0x50, 0xf0, 0x75, 0xf9, 0xf2, 0x0e, - 0x53, 0x86, 0xbf, 0x74, 0x0b, 0x35, 0x6e, 0xfc, 0x50, 0x02, 0x68, 0xff, 0x12, 0x1f, 0x6e, 0x16, - 0x15, 0xa6, 0x1f, 0x0c, 0xa1, 0x1c, 0x2e, 0x71, 0x48, 0x09, 0xf2, 0xfd, 0xa3, 0x56, 0x4b, 0xe9, - 0xf7, 0xe5, 0x1b, 0x64, 0x13, 0xd6, 0x59, 0xee, 0xd5, 0x1c, 0x1c, 0xa9, 0x8a, 0xb6, 0xdb, 0x53, - 0x9f, 0x34, 0x07, 0x9a, 0xa2, 0xaa, 0x3d, 0x55, 0x96, 0xc8, 0x06, 0xac, 0xb5, 0x7a, 0x4f, 0x0e, - 0x8f, 0x06, 0x8a, 0xd6, 0x6c, 0xb7, 0x55, 0xa5, 0xdf, 0x17, 0x53, 0x29, 0x96, 0xb7, 0xa1, 0x8b, - 0x15, 0x80, 0xd5, 0x07, 0x7f, 0x05, 0x50, 0xde, 0xc3, 0x28, 0x4c, 0xed, 0x57, 0xc6, 0x90, 0x92, - 0x6f, 0xc3, 0xcd, 0x3e, 0xaa, 0x6b, 0xf4, 0x93, 0x87, 0x0b, 0x72, 0x88, 0xcd, 0x4a, 0x90, 0x9d, - 0x30, 0x15, 0xf9, 0x0e, 0x54, 0xfa, 0xd4, 0x0c, 0x1e, 0x1c, 0xc8, 0x9d, 0x10, 0xdd, 0xfc, 0x9b, - 0x43, 0x9c, 0xbc, 0xcb, 0x2c, 0x3c, 0xde, 0x4b, 0x27, 0x77, 0xfd, 0x9a, 0xfb, 0x82, 0x36, 0xfb, - 0xe6, 0x05, 0xa7, 0x23, 0x2d, 0x58, 0x99, 0x6b, 0x03, 0x91, 0x6d, 0x7f, 0xcf, 0xe4, 0x06, 0x51, - 0xfc, 0x50, 0xbf, 0x0e, 0xa5, 0x50, 0x4d, 0x4c, 0x36, 0xbc, 0xbd, 0xe6, 0xea, 0xe4, 0x38, 0xe1, - 0x63, 0x58, 0x99, 0x6b, 0xac, 0x91, 0xcb, 0x5a, 0x6e, 0x9b, 0xab, 0xb1, 0x5e, 0x18, 0x6f, 0xdd, - 0xa9, 0x20, 0xab, 0xd4, 0xb5, 0x0d, 0xfa, 0x8a, 0x7a, 0xdd, 0x77, 0x72, 0xe9, 0xe7, 0x37, 0x9b, - 0xef, 0xc4, 0xf9, 0x12, 0xf9, 0x9e, 0x67, 0xc0, 0xd6, 0x8c, 0x36, 0x7b, 0x2e, 0x67, 0x4e, 0x80, - 0x70, 0x41, 0x9b, 0xa8, 0xcd, 0x78, 0x1e, 0x6b, 0xa7, 0xf8, 0x47, 0xbd, 0xb0, 0xd1, 0x12, 0xe7, - 0x5d, 0x07, 0x56, 0xb9, 0x1a, 0xc6, 0x2a, 0xed, 0xe4, 0x0a, 0x68, 0xf3, 0xce, 0xc2, 0x3a, 0x87, - 0x7c, 0x1f, 0x36, 0xc4, 0x79, 0x77, 0x2d, 0x3b, 0x9e, 0xad, 0xdf, 0x89, 0xde, 0x28, 0x36, 0xbd, - 0xb9, 0xb5, 0x38, 0xff, 0x26, 0x2d, 0x58, 0x55, 0xe9, 0x99, 0x65, 0xbb, 0xbb, 0xba, 0x31, 0x19, - 0x58, 0x6d, 0x51, 0x87, 0x92, 0x77, 0x16, 0xa5, 0x6a, 0xf1, 0xeb, 0x3e, 0xf5, 0x0b, 0xa4, 0x30, - 0xcf, 0x1f, 0x5b, 0xc7, 0x64, 0x33, 0xde, 0x70, 0x0a, 0xb2, 0xa1, 0xcd, 0xdb, 0x89, 0x73, 0xe2, - 0xce, 0x6d, 0xa8, 0x73, 0x0e, 0x26, 0xc5, 0xcc, 0x64, 0xc2, 0xd9, 0x64, 0xee, 0x60, 0xdf, 0x85, - 0x55, 0xfc, 0x55, 0xd4, 0x1e, 0x75, 0x23, 0x3f, 0x0e, 0xf2, 0x3c, 0x79, 0xf0, 0x93, 0xa9, 0x4d, - 0xaf, 0x2f, 0x13, 0xc1, 0x7b, 0x04, 0x1b, 0x11, 0x7a, 0xa6, 0xf2, 0x8e, 0xaa, 0x9b, 0x2f, 0xba, - 0xf4, 0x3c, 0x69, 0x11, 0x12, 0xfe, 0x51, 0x85, 0x58, 0xa3, 0x0d, 0xb7, 0x93, 0xd7, 0xc0, 0x9f, - 0x58, 0x5c, 0x75, 0x95, 0x5d, 0xb8, 0x15, 0x59, 0x25, 0xf8, 0x7d, 0x46, 0xd2, 0x0a, 0x5e, 0x9f, - 0x6f, 0xee, 0x57, 0x1c, 0x8f, 0x7e, 0xf3, 0x17, 0x3f, 0xdf, 0x92, 0xbe, 0xfc, 0x6a, 0x4b, 0xfa, - 0xf1, 0x57, 0x5b, 0xd2, 0xcf, 0xbe, 0xda, 0x92, 0xfe, 0xec, 0xcd, 0x96, 0xf4, 0x0f, 0x6f, 0xb6, - 0xa4, 0x2f, 0xdf, 0x6c, 0x49, 0x50, 0x31, 0xac, 0x9d, 0x63, 0xf7, 0xc4, 0xe1, 0xe4, 0x8f, 0x00, - 0x7d, 0xeb, 0x21, 0x0b, 0x44, 0x87, 0xd2, 0xf7, 0xf9, 0xaf, 0xd7, 0x8e, 0x73, 0x18, 0x98, 0x3e, - 0xfd, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0e, 0xe1, 0x26, 0x3a, 0xe7, 0x36, 0x00, 0x00, + // 4086 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3b, 0x4d, 0x6f, 0x1b, 0x49, + 0x76, 0x6e, 0x7e, 0x88, 0xe4, 0xe3, 0x57, 0xab, 0x2c, 0xc9, 0x94, 0x3c, 0x96, 0x3c, 0x5c, 0xcc, + 0x8e, 0x3d, 0x3b, 0xa3, 0x99, 0x78, 0x8c, 0x09, 0x36, 0xfb, 0x15, 0x9a, 0x6c, 0xd9, 0x72, 0x68, + 0x52, 0x6e, 0x52, 0x71, 0xbc, 0x08, 0xd0, 0x68, 0x91, 0x25, 0xa9, 0xc7, 0x54, 0xb7, 0xdc, 0xdd, + 0xb4, 0xec, 0x3d, 0xe4, 0x90, 0x5b, 0x10, 0x20, 0xc8, 0x29, 0x09, 0xf6, 0x07, 0x04, 0xd8, 0x20, + 0x40, 0x82, 0x00, 0xb9, 0xe4, 0x10, 0xe4, 0x38, 0x41, 0x02, 0x64, 0x73, 0x48, 0x8e, 0xfb, 0x31, + 0xf3, 0x07, 0x92, 0x53, 0xf6, 0x10, 0x04, 0x41, 0xd5, 0xab, 0xea, 0x2f, 0xb6, 0x28, 0x51, 0x31, + 0xb2, 0xc0, 0x5e, 0x04, 0xd5, 0xab, 0xf7, 0xea, 0xe3, 0x7d, 0xbf, 0x57, 0x4d, 0x68, 0x9c, 0xba, + 0x8e, 0xef, 0x78, 0x1f, 0x1f, 0x4d, 0x4d, 0x77, 0x8c, 0x7f, 0xb7, 0x39, 0x88, 0xe4, 0xf9, 0x60, + 0xe3, 0x93, 0x23, 0xcb, 0x3f, 0x9e, 0x1e, 0x6c, 0x8f, 0x9c, 0x93, 0x8f, 0x7d, 0xd7, 0xb1, 0x3f, + 0x9a, 0x7a, 0x1f, 0x73, 0x84, 0x83, 0xe9, 0xe1, 0xc7, 0x47, 0xce, 0x91, 0xc3, 0x07, 0xfc, 0x3f, + 0x24, 0xdc, 0xd8, 0x3a, 0x72, 0x9c, 0xa3, 0x09, 0x0d, 0xb1, 0x7c, 0xeb, 0x84, 0x7a, 0xbe, 0x79, + 0x72, 0x8a, 0x08, 0xcd, 0xff, 0x51, 0x00, 0x5a, 0xe3, 0x13, 0xcb, 0x7e, 0x3a, 0xa5, 0xee, 0x1b, + 0xf2, 0x35, 0xa8, 0xba, 0xf4, 0xe5, 0x94, 0x7a, 0x3e, 0x75, 0x8d, 0x53, 0x6b, 0xdc, 0x50, 0x6e, + 0x2b, 0x77, 0x4a, 0x7a, 0x25, 0x00, 0xee, 0x59, 0x63, 0xd2, 0x06, 0x78, 0xc9, 0xb0, 0x8d, 0xb1, + 0xe9, 0xd3, 0x46, 0xe6, 0xb6, 0x72, 0xa7, 0x7c, 0x6f, 0x63, 0x1b, 0x77, 0xda, 0x96, 0x3b, 0x6d, + 0x0f, 0xe5, 0x4e, 0x0f, 0x8a, 0x5f, 0xfc, 0x64, 0xeb, 0xda, 0x1f, 0xff, 0x74, 0x4b, 0xd1, 0x4b, + 0x9c, 0xae, 0x63, 0xfa, 0x94, 0x6c, 0x41, 0x19, 0x17, 0x19, 0x39, 0x53, 0xdb, 0x6f, 0x64, 0x6f, + 0x2b, 0x77, 0xf2, 0x3a, 0xae, 0xdb, 0x66, 0x10, 0xf2, 0x10, 0xe4, 0xae, 0x06, 0x3b, 0x74, 0x23, + 0xb7, 0xc0, 0x3e, 0x65, 0x41, 0xc9, 0xe6, 0xc8, 0x3b, 0x50, 0xf2, 0xac, 0x23, 0xdb, 0xf4, 0xa7, + 0x2e, 0x6d, 0xe4, 0x6f, 0x2b, 0x77, 0x2a, 0x7a, 0x08, 0x68, 0xfe, 0x30, 0x07, 0x95, 0x8e, 0x69, + 0x4d, 0xde, 0x0c, 0xa6, 0x27, 0x27, 0xa6, 0xfb, 0x26, 0x71, 0x3b, 0xe5, 0x6a, 0xb7, 0xdb, 0x65, + 0x7c, 0xf4, 0x4e, 0x1d, 0xdb, 0xa3, 0x78, 0xfa, 0x45, 0xb8, 0x54, 0x91, 0xa4, 0xfc, 0xf8, 0xef, + 0x42, 0xe5, 0xd4, 0xa5, 0xa7, 0xa6, 0x2b, 0x24, 0x92, 0xe5, 0x12, 0x29, 0x4b, 0x18, 0x13, 0x48, + 0xec, 0x86, 0xb9, 0xc4, 0x0d, 0xc9, 0x27, 0xb0, 0x72, 0xe6, 0xb8, 0x2f, 0x2c, 0xfb, 0xc8, 0xf0, + 0x7c, 0xc7, 0x35, 0x8f, 0xa8, 0xe1, 0x59, 0x3f, 0x40, 0x56, 0x64, 0x75, 0x22, 0xe6, 0x06, 0x38, + 0x35, 0xb0, 0x7e, 0x40, 0x99, 0x16, 0xd8, 0xf4, 0xcc, 0x18, 0x39, 0xb6, 0xef, 0x9a, 0x23, 0xdf, + 0x6b, 0x2c, 0x71, 0xd4, 0x8a, 0x4d, 0xcf, 0xda, 0x12, 0x46, 0x3e, 0x04, 0x12, 0x43, 0x32, 0x8e, + 0x1d, 0xcf, 0x6f, 0x14, 0x38, 0xa6, 0x1a, 0xc5, 0x7c, 0xe4, 0x78, 0x3e, 0x3b, 0x44, 0x1c, 0xdb, + 0xa5, 0xb6, 0x4f, 0xdd, 0x46, 0x11, 0x0f, 0x11, 0xc5, 0xd7, 0xf9, 0x0c, 0xf9, 0x0e, 0xdc, 0x8c, + 0x53, 0x98, 0xaf, 0x28, 0x3f, 0xfc, 0xa9, 0x6b, 0x8d, 0x68, 0xa3, 0xc4, 0x09, 0x1b, 0x51, 0xc2, + 0x16, 0x22, 0xec, 0xb1, 0x79, 0x72, 0x13, 0x4a, 0x8c, 0xfc, 0xd0, 0x9a, 0x50, 0xaf, 0x01, 0x1c, + 0xb9, 0x68, 0xd3, 0xb3, 0x1d, 0x36, 0x26, 0x5f, 0x87, 0x3a, 0x9b, 0xf4, 0x8e, 0x4d, 0x77, 0xec, + 0x21, 0x37, 0xca, 0x1c, 0x85, 0xdd, 0x7b, 0xc0, 0xa1, 0x8c, 0x11, 0xcd, 0xbf, 0xcc, 0x40, 0x99, + 0x1d, 0xff, 0x57, 0x56, 0x37, 0xde, 0x65, 0x46, 0x36, 0x72, 0xdc, 0xb1, 0x30, 0xc3, 0x3c, 0x37, + 0xc3, 0x32, 0xc2, 0xd0, 0x0e, 0xef, 0xc2, 0x92, 0xe7, 0x9b, 0xfe, 0x94, 0x69, 0x41, 0xf6, 0x4e, + 0xf9, 0xde, 0xf2, 0x36, 0x7a, 0x26, 0xce, 0x17, 0x3e, 0xa1, 0x0b, 0x84, 0xe6, 0x7f, 0xe7, 0x60, + 0x79, 0xe8, 0xf8, 0xe6, 0x84, 0xc1, 0xe9, 0xaf, 0xb2, 0x41, 0xbd, 0x32, 0x27, 0xd6, 0x38, 0xd0, + 0xcd, 0x08, 0xf3, 0xb2, 0x3a, 0xe1, 0x73, 0x52, 0x29, 0x91, 0x87, 0x1f, 0x02, 0xa1, 0xaf, 0x2d, + 0xcf, 0xa7, 0x63, 0xd4, 0x39, 0x54, 0x39, 0xb4, 0x2a, 0x55, 0xcc, 0x70, 0xb5, 0xe3, 0xe6, 0x77, + 0x1f, 0xd6, 0x2c, 0x3b, 0x75, 0x07, 0xb4, 0xae, 0x15, 0x31, 0x1b, 0xdf, 0xe3, 0xeb, 0x50, 0x9f, + 0x38, 0x9e, 0x1f, 0xdd, 0x00, 0x8d, 0xab, 0xca, 0xc0, 0xe1, 0xea, 0x1f, 0xc0, 0xb2, 0xcf, 0x64, + 0xc4, 0xed, 0xd5, 0x70, 0xe9, 0x99, 0xe9, 0x8e, 0x85, 0x35, 0xd5, 0xf9, 0x04, 0x13, 0xac, 0xce, + 0xc1, 0x21, 0xee, 0xd9, 0x81, 0x1f, 0xe0, 0x42, 0x04, 0xf7, 0xd9, 0x81, 0x2f, 0x71, 0xef, 0x80, + 0x8a, 0xb8, 0xbe, 0xfb, 0x5a, 0xa2, 0xa2, 0x51, 0xd5, 0x38, 0x7c, 0xe8, 0xbe, 0x4e, 0xae, 0x3a, + 0xf5, 0xc6, 0x63, 0x89, 0x5a, 0x89, 0xac, 0xba, 0xef, 0x8d, 0xc7, 0x29, 0xb8, 0xc1, 0x09, 0xaa, + 0x71, 0x5c, 0x71, 0x82, 0xe6, 0x8f, 0x14, 0x80, 0x50, 0x2b, 0xc9, 0x3a, 0x14, 0xf9, 0x15, 0xc3, + 0x30, 0x56, 0x60, 0x63, 0x26, 0xdf, 0x9b, 0x50, 0x62, 0x8e, 0x01, 0xb9, 0x94, 0x41, 0xe7, 0xc0, + 0x00, 0x9c, 0x41, 0x5b, 0x50, 0x66, 0x3e, 0xd1, 0x30, 0x4f, 0x82, 0xc8, 0x94, 0xd5, 0x81, 0x81, + 0x5a, 0x1c, 0x42, 0x6e, 0x01, 0xe0, 0x41, 0x8c, 0x03, 0xdf, 0xe7, 0xea, 0x91, 0xd5, 0x4b, 0x08, + 0x79, 0xe0, 0xfb, 0xcc, 0x7b, 0x7a, 0x53, 0xef, 0x94, 0x32, 0xa9, 0x1d, 0x53, 0x13, 0xf5, 0xa2, + 0xa8, 0x57, 0x04, 0xb0, 0xcd, 0x60, 0xcd, 0x3f, 0x54, 0x20, 0xdb, 0x75, 0x8e, 0x88, 0x06, 0xe5, + 0xd1, 0xb1, 0x69, 0x1f, 0x09, 0xad, 0x5e, 0xc4, 0x3a, 0x00, 0x09, 0xb9, 0x4e, 0xbf, 0x07, 0x35, + 0xc7, 0xb5, 0x8e, 0x2c, 0xdb, 0xf4, 0x1d, 0xd4, 0xea, 0x0c, 0xbf, 0x71, 0x35, 0x84, 0xb2, 0x7b, + 0xaf, 0xc1, 0x12, 0x12, 0x09, 0xa5, 0x17, 0xa3, 0xe6, 0xbf, 0xe7, 0xa1, 0x22, 0xb5, 0xe9, 0x09, + 0xf5, 0x4d, 0xc6, 0x83, 0x40, 0xf5, 0x02, 0xf6, 0x81, 0x04, 0xed, 0x8e, 0x91, 0x07, 0xb6, 0xcc, + 0x12, 0x70, 0xb3, 0x12, 0x42, 0xd8, 0x46, 0x51, 0xde, 0x67, 0xe3, 0xbc, 0xbf, 0x05, 0x80, 0x2a, + 0x7a, 0x6c, 0x7a, 0xc7, 0x9c, 0x7b, 0x25, 0xbd, 0xc4, 0x21, 0x8f, 0x4c, 0xef, 0x98, 0xed, 0x8c, + 0xd3, 0x96, 0x3d, 0xa6, 0xaf, 0x85, 0x43, 0x42, 0x8a, 0x5d, 0x06, 0x61, 0x7a, 0x8e, 0x08, 0xa1, + 0x04, 0xd1, 0x90, 0xaa, 0x1c, 0xbc, 0x23, 0xc5, 0x28, 0x65, 0xcc, 0xb7, 0x29, 0xf0, 0x6d, 0xb8, + 0x8c, 0xf9, 0x2e, 0x6d, 0x3c, 0xbe, 0xe1, 0xf9, 0xa6, 0xeb, 0x73, 0x3b, 0xb9, 0xb4, 0x4f, 0x62, + 0x74, 0x03, 0x46, 0x46, 0xbe, 0x07, 0x45, 0xbe, 0x08, 0xb5, 0xd1, 0x80, 0x2e, 0xbb, 0x44, 0x81, + 0x51, 0x69, 0x36, 0x57, 0x43, 0xee, 0x4b, 0x39, 0x9b, 0x00, 0x8f, 0xc8, 0x01, 0x82, 0x4f, 0xd4, + 0x1b, 0xb9, 0xce, 0x19, 0x9f, 0x2d, 0x23, 0x9f, 0x10, 0xc2, 0xa6, 0x57, 0x20, 0x8f, 0x81, 0x10, + 0x0d, 0x07, 0x07, 0x4c, 0xc0, 0x42, 0x6d, 0xd1, 0x46, 0xc4, 0x88, 0x7c, 0x03, 0x96, 0x47, 0xce, + 0x64, 0x62, 0xfa, 0xd4, 0x35, 0x27, 0x52, 0xb3, 0x6b, 0xe8, 0x7f, 0xc2, 0x09, 0xa1, 0xdf, 0x1a, + 0xd4, 0x4f, 0xcd, 0x37, 0xce, 0xd4, 0x37, 0xbc, 0xd1, 0x31, 0x1d, 0x4f, 0x27, 0xb4, 0x51, 0xbf, + 0xad, 0xdc, 0xa9, 0xdd, 0x7b, 0x47, 0xb8, 0xfe, 0xa8, 0xaa, 0x6c, 0x0f, 0x04, 0x8e, 0x5e, 0x43, + 0x22, 0x39, 0x66, 0x92, 0xb4, 0xa7, 0x27, 0x06, 0x42, 0xbd, 0x86, 0x8a, 0x92, 0xb4, 0xa7, 0x27, + 0x7b, 0x08, 0xc1, 0x43, 0xd9, 0xbe, 0x65, 0x1f, 0x31, 0x2e, 0x8a, 0x43, 0x2d, 0xcb, 0x43, 0xc9, + 0x09, 0x3c, 0x54, 0xf3, 0x3e, 0x14, 0x83, 0x95, 0xcb, 0x50, 0x78, 0xd2, 0xef, 0x0d, 0x1f, 0x75, + 0x9f, 0xab, 0xd7, 0x48, 0x15, 0x4a, 0x4f, 0xf7, 0x5b, 0xfa, 0x50, 0xd3, 0xbb, 0xcf, 0x55, 0x85, + 0x54, 0xa0, 0xd8, 0xea, 0xf5, 0xf6, 0x5b, 0xdd, 0xee, 0x73, 0x35, 0xd3, 0xfc, 0xb7, 0x12, 0x14, + 0xe5, 0x69, 0xc9, 0x37, 0xa1, 0x28, 0x35, 0x58, 0x18, 0xda, 0xf5, 0x94, 0x0b, 0xa1, 0xa0, 0x7e, + 0xfc, 0x93, 0x2d, 0x45, 0x0f, 0xd0, 0xc9, 0xa7, 0x90, 0x67, 0x31, 0x0e, 0x9d, 0x45, 0xed, 0xde, + 0xad, 0x04, 0x5d, 0xf0, 0x0f, 0x0f, 0x7c, 0x3a, 0xe2, 0x92, 0xbb, 0xa0, 0x0a, 0x1b, 0x09, 0x83, + 0x49, 0x96, 0x07, 0x93, 0x3a, 0xc2, 0x07, 0x41, 0x48, 0x79, 0x0f, 0x6a, 0xdc, 0x5e, 0x92, 0x51, + 0xa7, 0xca, 0xa0, 0x21, 0x9a, 0x0e, 0x44, 0xe8, 0x04, 0x43, 0xa4, 0x63, 0x74, 0x1a, 0xf9, 0x05, + 0x74, 0x4f, 0x45, 0xfa, 0x01, 0x27, 0xe7, 0xae, 0xe3, 0x2e, 0xa8, 0x91, 0x35, 0x71, 0xf3, 0x25, + 0x3c, 0x65, 0x88, 0x2b, 0x03, 0x9f, 0xf0, 0x39, 0xc6, 0xc4, 0x39, 0x6a, 0x14, 0x78, 0x3a, 0x00, + 0x82, 0x15, 0x5d, 0xe7, 0xe8, 0x41, 0xfe, 0x2f, 0x7e, 0xba, 0xa5, 0x7c, 0xa4, 0x97, 0x10, 0x89, + 0xb9, 0xb7, 0x1e, 0xa8, 0x13, 0xd3, 0xf3, 0x8d, 0x13, 0x67, 0x6c, 0x1d, 0xbe, 0xc1, 0xe3, 0x2e, + 0x62, 0x6d, 0x35, 0x46, 0xfd, 0x84, 0x13, 0xf3, 0xc3, 0xbe, 0x0f, 0x75, 0xb4, 0x98, 0xf0, 0xac, + 0x25, 0x7e, 0xd6, 0x1a, 0x07, 0x0f, 0xa2, 0x89, 0x4d, 0x2c, 0xc8, 0xc3, 0x6c, 0x90, 0xff, 0x08, + 0x48, 0x80, 0x12, 0x2e, 0x57, 0xe6, 0xcb, 0x2d, 0xcb, 0x99, 0x70, 0xc5, 0x11, 0xdc, 0xe4, 0x57, + 0xf1, 0xa6, 0xa3, 0x11, 0xf5, 0x3c, 0x63, 0x74, 0x6c, 0x4e, 0x26, 0x34, 0xf0, 0xdc, 0x95, 0x05, + 0x6e, 0xd5, 0x60, 0x0b, 0x0d, 0x70, 0x9d, 0xb6, 0x5c, 0x86, 0xdf, 0x6f, 0x08, 0xd7, 0xf9, 0x26, + 0x89, 0xc5, 0xab, 0x0b, 0x2c, 0xbe, 0xcc, 0x16, 0x88, 0xaf, 0xfa, 0x3e, 0xd4, 0xe3, 0x0b, 0x7a, + 0xdc, 0xf6, 0xf3, 0x7a, 0x6d, 0x14, 0xc5, 0xf3, 0x58, 0x66, 0x13, 0x22, 0x9e, 0x99, 0xae, 0x2d, + 0xb0, 0xeb, 0x1c, 0x9b, 0x04, 0x73, 0xcf, 0x4c, 0xd7, 0x46, 0x8a, 0xcf, 0xe0, 0x46, 0x48, 0x21, + 0x59, 0x83, 0x44, 0x68, 0xf0, 0xab, 0xc1, 0xb4, 0xb8, 0x30, 0xd2, 0xfd, 0x2e, 0xdc, 0x38, 0xb4, + 0xdc, 0xd8, 0x4d, 0x05, 0x35, 0xf7, 0x00, 0x97, 0xbd, 0xec, 0x2a, 0x5f, 0xa4, 0x9d, 0xd8, 0x82, + 0x39, 0x47, 0xdf, 0x79, 0x41, 0xed, 0x06, 0xe1, 0x62, 0xc7, 0x41, 0xf3, 0x0b, 0x05, 0xaa, 0x31, + 0x43, 0x25, 0x25, 0xc8, 0x77, 0xf4, 0xd6, 0xce, 0x50, 0xbd, 0x46, 0x00, 0x96, 0x06, 0xbb, 0x0f, + 0x7b, 0x5a, 0x07, 0x7d, 0xc8, 0xfe, 0x5e, 0xb7, 0xdf, 0xea, 0x68, 0x1d, 0x35, 0x43, 0x8a, 0x90, + 0xeb, 0xf6, 0x07, 0x43, 0x35, 0xcb, 0xe0, 0xed, 0x56, 0xaf, 0xad, 0x75, 0xb5, 0x8e, 0x9a, 0x63, + 0x14, 0xed, 0x6e, 0x7f, 0xa0, 0x75, 0xd4, 0x3c, 0xf3, 0x48, 0xba, 0xd6, 0xd3, 0x9e, 0x69, 0x1d, + 0x75, 0x89, 0xa1, 0xf5, 0x1f, 0x0c, 0xfa, 0x5d, 0x6d, 0xa8, 0xa9, 0x05, 0x46, 0xfe, 0xac, 0xa5, + 0xf7, 0xd4, 0x22, 0xa9, 0x01, 0xf0, 0xdd, 0x0c, 0x3e, 0x2e, 0x91, 0xeb, 0x50, 0xd7, 0xb5, 0x56, + 0xe7, 0xb9, 0xd1, 0x7e, 0xd4, 0xea, 0x76, 0xb5, 0xde, 0x43, 0x4d, 0x05, 0xe6, 0xce, 0x74, 0xad, + 0xad, 0x6b, 0xad, 0xa1, 0xd6, 0x51, 0xcb, 0x64, 0x15, 0x96, 0x75, 0xed, 0xe9, 0xbe, 0x36, 0x18, + 0x46, 0xb0, 0x2a, 0xcd, 0x3f, 0xca, 0xc0, 0x2a, 0x8f, 0x74, 0xbe, 0xe3, 0xd2, 0xae, 0xc5, 0x12, + 0x36, 0xcc, 0x70, 0xc9, 0x6f, 0x40, 0x41, 0x14, 0xbf, 0xc2, 0xc7, 0xdd, 0x96, 0x06, 0xca, 0xb1, + 0x98, 0xdb, 0x61, 0x84, 0xbb, 0xf6, 0xa1, 0xa3, 0x23, 0x9e, 0x2e, 0x09, 0x58, 0xc9, 0x3d, 0x9a, + 0xba, 0x3c, 0xa6, 0x2d, 0x9c, 0x63, 0x97, 0x05, 0x25, 0x57, 0xb8, 0x6f, 0x43, 0x1d, 0xa3, 0x33, + 0x3b, 0x9e, 0x71, 0x42, 0x7d, 0xb3, 0x91, 0xe5, 0xde, 0x62, 0x45, 0x1c, 0x26, 0x38, 0x3b, 0xf3, + 0xb8, 0x7a, 0xf5, 0x30, 0x3a, 0x64, 0xd2, 0xc3, 0x74, 0x37, 0xc7, 0x35, 0x08, 0x07, 0x17, 0x94, + 0xf1, 0xff, 0x9c, 0x87, 0x6a, 0x6c, 0xd1, 0x44, 0x86, 0xa2, 0x24, 0x33, 0x94, 0x58, 0x7a, 0x90, + 0x49, 0xa4, 0x07, 0xb1, 0xfc, 0x30, 0x9b, 0xc8, 0x0f, 0xe3, 0xb9, 0x43, 0xee, 0xff, 0x9e, 0x3b, + 0xe4, 0xaf, 0x92, 0x3b, 0x70, 0x9b, 0xa6, 0xa3, 0x17, 0xc6, 0x21, 0x97, 0x9e, 0x3d, 0x7a, 0xc3, + 0xbd, 0x36, 0xb7, 0x69, 0x3a, 0x7a, 0xb1, 0x23, 0xa1, 0x61, 0x92, 0x71, 0x48, 0xa9, 0x28, 0x20, + 0x30, 0xc9, 0xd8, 0xa1, 0x34, 0x92, 0x64, 0xb0, 0x59, 0xac, 0x17, 0x44, 0x92, 0xc1, 0xa6, 0x83, + 0x64, 0x0c, 0xe5, 0x51, 0x8a, 0x24, 0x63, 0x58, 0x74, 0xbc, 0x07, 0xb5, 0x13, 0xcb, 0xb6, 0x4e, + 0xa6, 0x27, 0xa2, 0x98, 0xe6, 0x8e, 0x36, 0xaf, 0x57, 0x05, 0x14, 0x6b, 0x69, 0x16, 0xe9, 0x59, + 0x49, 0xf9, 0x8a, 0xba, 0x86, 0x7f, 0xec, 0x52, 0xef, 0xd8, 0x99, 0x60, 0x4a, 0x93, 0xd7, 0x55, + 0x31, 0x31, 0x94, 0xf0, 0x44, 0xe2, 0x53, 0x49, 0x26, 0x3e, 0xb1, 0xa4, 0xa9, 0x9a, 0x48, 0x9a, + 0xbe, 0x05, 0x1b, 0xdc, 0x6d, 0x25, 0xdc, 0x9d, 0x31, 0xb1, 0x4e, 0x2c, 0x5f, 0x38, 0xbd, 0x1b, + 0x0c, 0x23, 0xe6, 0x20, 0xbd, 0x2e, 0x9b, 0x26, 0x2d, 0xb8, 0x95, 0xee, 0xdc, 0x25, 0x3d, 0xba, + 0xc1, 0x0d, 0x2f, 0xc5, 0x73, 0x8b, 0x25, 0xb8, 0x03, 0x8d, 0x49, 0x85, 0xbb, 0x51, 0xe1, 0x0b, + 0x49, 0x5c, 0x34, 0xcc, 0x8b, 0x86, 0xae, 0x6a, 0x39, 0xea, 0xaa, 0xfe, 0x71, 0x09, 0xea, 0x81, + 0x3a, 0x8b, 0x7a, 0x66, 0x67, 0xd6, 0xa8, 0xd0, 0xc2, 0x53, 0x8d, 0x2a, 0x92, 0xc6, 0x24, 0xcc, + 0xeb, 0xb3, 0x78, 0x2e, 0x73, 0x3b, 0x49, 0x8d, 0xdb, 0x6d, 0x33, 0xdc, 0x58, 0x3a, 0x73, 0x1f, + 0x4a, 0x61, 0x47, 0x08, 0xcd, 0xb9, 0x9e, 0xc8, 0x83, 0xc2, 0x0c, 0x20, 0x68, 0x13, 0xa5, 0x25, + 0x41, 0xb9, 0xf4, 0x24, 0x48, 0x07, 0x82, 0x92, 0x75, 0xe9, 0x88, 0x5a, 0xaf, 0xe8, 0x15, 0xb2, + 0x1b, 0x4e, 0xaf, 0x23, 0x39, 0xf7, 0x44, 0xf1, 0x94, 0x65, 0xe9, 0x12, 0x29, 0x4b, 0xd2, 0x09, + 0x16, 0xae, 0xea, 0x04, 0x53, 0x72, 0x95, 0x62, 0x6a, 0xae, 0xa2, 0x41, 0x85, 0x11, 0x99, 0x13, + 0x03, 0xe5, 0x52, 0xe2, 0x72, 0x69, 0x9e, 0x23, 0x17, 0x9d, 0xa3, 0xa2, 0x64, 0xca, 0x6e, 0x38, + 0x78, 0xfb, 0x29, 0x4f, 0x73, 0x0a, 0xa5, 0x40, 0x0b, 0xa2, 0xb1, 0xb2, 0x0a, 0x25, 0x8c, 0x8f, + 0xbb, 0xbd, 0x87, 0xaa, 0xc2, 0x83, 0xdf, 0x7e, 0xaf, 0xc7, 0x06, 0x19, 0xa2, 0x42, 0x65, 0xaf, + 0xa5, 0x0f, 0x77, 0x5b, 0x5d, 0x43, 0x44, 0x4d, 0x19, 0x3f, 0x73, 0xec, 0xbf, 0x4e, 0xbf, 0xa7, + 0xa9, 0xf9, 0x58, 0x24, 0x5d, 0x8a, 0xc7, 0xbc, 0x42, 0xf3, 0x09, 0x94, 0x23, 0x97, 0x24, 0x05, + 0xc8, 0xf6, 0xb4, 0x67, 0xea, 0x35, 0x52, 0x87, 0xb2, 0x5c, 0x9a, 0x01, 0xf8, 0xc6, 0xda, 0xef, + 0xec, 0xed, 0xea, 0x3c, 0x4c, 0x97, 0x20, 0xcf, 0x43, 0x30, 0xc6, 0x69, 0xb9, 0x9e, 0x9a, 0x6b, + 0xfe, 0x48, 0x81, 0xe5, 0xc0, 0x56, 0x9f, 0xb2, 0x40, 0x67, 0x39, 0x76, 0xa2, 0x0c, 0x55, 0x92, + 0x65, 0x68, 0xb4, 0x80, 0xcd, 0xc4, 0x0b, 0x58, 0x56, 0x1b, 0x1f, 0x4f, 0xed, 0x17, 0xa2, 0x42, + 0x15, 0x9d, 0x6b, 0x0e, 0xc2, 0x0a, 0x75, 0x05, 0xf2, 0xb6, 0x63, 0x8f, 0xa8, 0x28, 0x6e, 0x71, + 0x40, 0xbe, 0x06, 0x55, 0xfa, 0x9a, 0x77, 0x05, 0x4c, 0xdb, 0x3b, 0xa3, 0x2e, 0x57, 0xec, 0x92, + 0x5e, 0x41, 0x60, 0x8b, 0xc3, 0x9a, 0xbf, 0x9f, 0x85, 0xf5, 0x3d, 0xd7, 0x71, 0x0e, 0xfb, 0x87, + 0x3a, 0x3d, 0x9d, 0x58, 0x23, 0xd3, 0xa7, 0xc1, 0xd9, 0xc9, 0x77, 0xa1, 0xf8, 0x52, 0x9c, 0x5f, + 0x98, 0x7e, 0x43, 0x1a, 0x60, 0xf2, 0x7e, 0xd1, 0x2a, 0x46, 0xd2, 0x90, 0xdf, 0x82, 0x5a, 0x22, + 0xb1, 0x5c, 0x24, 0xc2, 0x57, 0x63, 0xc9, 0x62, 0xdc, 0x0f, 0x67, 0x13, 0x7e, 0x38, 0x45, 0xf7, + 0x73, 0xa9, 0xba, 0xbf, 0x05, 0x65, 0xce, 0xe7, 0x18, 0x4f, 0x80, 0x81, 0x90, 0x23, 0xe4, 0x71, + 0xa4, 0x32, 0xc2, 0x33, 0x2f, 0x2d, 0xd2, 0xf9, 0x93, 0xf5, 0x93, 0xec, 0x92, 0x24, 0xaa, 0xac, + 0x42, 0x4a, 0x95, 0xd5, 0xfc, 0x3d, 0x58, 0x63, 0x46, 0x37, 0xc3, 0x53, 0x2f, 0x9e, 0x34, 0x28, + 0x89, 0xa4, 0xe1, 0xa1, 0x6c, 0x4c, 0x48, 0x7e, 0x7b, 0x8d, 0x0c, 0xf7, 0x37, 0x9b, 0x42, 0x48, + 0x3c, 0x18, 0xce, 0xae, 0xaa, 0xd7, 0x38, 0x59, 0x30, 0x6e, 0xfe, 0x4b, 0x06, 0x6e, 0x9c, 0x83, + 0x3b, 0xff, 0x04, 0x71, 0x9d, 0xce, 0x24, 0x75, 0xfa, 0x12, 0x8d, 0xcf, 0xf7, 0xa0, 0x26, 0x4f, + 0x6f, 0x44, 0x73, 0xb0, 0xaa, 0x84, 0x62, 0xd8, 0xff, 0x0c, 0x4a, 0xe1, 0x25, 0xf3, 0xfc, 0x92, + 0xe7, 0x6a, 0xa2, 0x1e, 0xa2, 0x32, 0xdf, 0x2a, 0x76, 0x5b, 0x5c, 0x94, 0xf2, 0x9c, 0x5c, 0x92, + 0xe9, 0x8e, 0xac, 0x70, 0x9e, 0x23, 0xfb, 0x4a, 0x81, 0xf5, 0x36, 0x8f, 0xbd, 0xb1, 0xbc, 0x53, + 0xa4, 0xbd, 0x17, 0xf1, 0x74, 0x5e, 0xa3, 0x6b, 0xe6, 0xc1, 0x2c, 0x9b, 0xf2, 0x60, 0xf6, 0xff, + 0xf4, 0x94, 0xf5, 0x1f, 0x19, 0x58, 0x3f, 0x37, 0xcb, 0xbf, 0x28, 0x1f, 0x9e, 0xb9, 0x48, 0x26, + 0xe5, 0x22, 0x1f, 0xb0, 0x3c, 0x0e, 0x2f, 0x72, 0x1a, 0xbc, 0x23, 0xa1, 0x03, 0xac, 0x8b, 0x89, + 0x3d, 0xf9, 0x88, 0xf4, 0x21, 0x90, 0x18, 0x2e, 0x7a, 0xcb, 0x9c, 0x4c, 0xfa, 0x02, 0x64, 0xf4, + 0x99, 0x49, 0x16, 0x5d, 0x2e, 0xea, 0x2b, 0xb3, 0x2c, 0x4a, 0xeb, 0x38, 0x2c, 0x2d, 0xb0, 0x58, + 0xb2, 0xe3, 0x10, 0x63, 0x79, 0x21, 0xc9, 0xf2, 0xbf, 0xcf, 0x41, 0x83, 0xb1, 0xfc, 0x91, 0xe3, + 0xf9, 0x91, 0x07, 0x2c, 0xe4, 0xf8, 0x9c, 0x06, 0xf4, 0x2f, 0x99, 0xdb, 0xcf, 0x61, 0x2d, 0xc9, + 0x24, 0xc3, 0xb3, 0x58, 0xc8, 0x5a, 0x84, 0xef, 0xd7, 0xe3, 0xac, 0x1a, 0xb0, 0x05, 0xc8, 0x40, + 0x74, 0x30, 0xa2, 0x4b, 0xfb, 0xce, 0x42, 0x22, 0x50, 0xe3, 0xeb, 0x0e, 0x1d, 0xd2, 0x92, 0x29, + 0x6b, 0x81, 0xa7, 0x46, 0xdf, 0x88, 0x94, 0xb4, 0x69, 0x9c, 0xdf, 0x1e, 0xd0, 0x09, 0x4d, 0x34, + 0xe3, 0x92, 0x0a, 0x56, 0xbc, 0xaa, 0x82, 0xc5, 0x14, 0xa2, 0x94, 0x54, 0x88, 0x6d, 0x28, 0x47, + 0x36, 0x67, 0xb9, 0x4b, 0xab, 0xdb, 0xc5, 0xf6, 0x42, 0xab, 0x3d, 0xdc, 0xfd, 0x6d, 0x4d, 0x55, + 0x22, 0x8d, 0x83, 0x4c, 0xf3, 0x17, 0x91, 0x9e, 0x84, 0xc7, 0xee, 0x43, 0xbe, 0x99, 0x2c, 0xe0, + 0xb7, 0x2e, 0xb8, 0x6d, 0x58, 0xbf, 0xef, 0x42, 0xf5, 0x88, 0xda, 0xd4, 0x35, 0xfd, 0xab, 0x3c, + 0x92, 0x49, 0x52, 0xe1, 0x60, 0x2f, 0x4c, 0xf6, 0xa3, 0x59, 0xfe, 0x55, 0x4a, 0xf6, 0xbf, 0xcd, + 0x40, 0x43, 0xa7, 0xe6, 0xf8, 0xcd, 0x8e, 0xe3, 0x06, 0x51, 0xe3, 0x92, 0xde, 0x6a, 0x6e, 0xf5, + 0x1e, 0x0f, 0x83, 0xd9, 0x94, 0x17, 0x86, 0xe8, 0xdb, 0x46, 0x6e, 0xe6, 0x6d, 0x23, 0x6a, 0xb7, + 0xf9, 0xb8, 0xdd, 0xbe, 0xb5, 0x00, 0x36, 0xd7, 0xad, 0xb0, 0xeb, 0x59, 0x9e, 0xc1, 0xd0, 0x2d, + 0x7c, 0x22, 0x2f, 0xea, 0x45, 0xcb, 0xd3, 0xf9, 0xb8, 0xf9, 0x9f, 0x0a, 0xe3, 0x1b, 0x67, 0xd3, + 0x6c, 0x5a, 0x7b, 0xff, 0xf2, 0x29, 0x62, 0x24, 0x31, 0x4c, 0x5e, 0x2b, 0xf3, 0x56, 0xae, 0x95, + 0x9d, 0x7b, 0xad, 0x5c, 0xfc, 0x5a, 0x71, 0x91, 0xe6, 0xe3, 0x22, 0x6d, 0xfe, 0x41, 0x06, 0xd6, + 0x65, 0x8b, 0x6b, 0xf6, 0xd2, 0x9f, 0xc0, 0x92, 0xc8, 0x1f, 0x2f, 0xba, 0xb2, 0xc0, 0x9b, 0x97, + 0xde, 0x73, 0x47, 0xe1, 0x39, 0x13, 0x59, 0x7f, 0x66, 0x17, 0x0b, 0xd6, 0x9c, 0x72, 0x96, 0x17, + 0xb9, 0xb9, 0xbc, 0xc8, 0xcf, 0xe3, 0xc5, 0x52, 0x92, 0x17, 0x0a, 0x90, 0x1d, 0xc7, 0x1d, 0x51, + 0x44, 0x7e, 0x1b, 0x16, 0xb3, 0x0e, 0x45, 0x73, 0xea, 0x1f, 0x47, 0x9f, 0xeb, 0xd8, 0xf8, 0xc2, + 0xa7, 0xf0, 0xe6, 0x9f, 0x28, 0xb0, 0xa4, 0x53, 0x6f, 0x3a, 0xf1, 0xc9, 0xfb, 0x90, 0x1b, 0x39, + 0x63, 0x7c, 0xc2, 0xac, 0x05, 0x2f, 0x2b, 0x81, 0xd0, 0x9c, 0x31, 0xd5, 0x39, 0x02, 0x69, 0x40, + 0xe1, 0x84, 0x7a, 0x9e, 0x79, 0x44, 0x25, 0xeb, 0xc5, 0x70, 0xf6, 0x91, 0x3f, 0x7b, 0xd5, 0x47, + 0xfe, 0xe6, 0x3f, 0xe5, 0xa0, 0x86, 0xfc, 0x09, 0x9e, 0x7f, 0xe6, 0xa6, 0x79, 0xf1, 0xd7, 0x73, + 0xc1, 0xa4, 0xec, 0x9d, 0x52, 0xe4, 0xf5, 0xfc, 0xe2, 0xce, 0xe0, 0x7d, 0x58, 0x1b, 0x3b, 0x67, + 0xf6, 0xc4, 0x31, 0xe5, 0xb3, 0xb6, 0x7c, 0xd5, 0xc2, 0x47, 0xe2, 0x15, 0x39, 0x8b, 0x0f, 0xd6, + 0xe2, 0xb9, 0xed, 0x13, 0x58, 0x41, 0x35, 0x48, 0xd0, 0x88, 0xcf, 0x09, 0x5c, 0x21, 0xe5, 0x08, + 0x05, 0x17, 0x35, 0xa7, 0x60, 0x02, 0x5b, 0x92, 0xa2, 0x66, 0x10, 0x26, 0xb2, 0x1e, 0xa8, 0x62, + 0x3a, 0x2c, 0x9a, 0x16, 0xe9, 0x62, 0xd4, 0x90, 0x3a, 0x28, 0x9b, 0xee, 0xc6, 0xd6, 0x8b, 0x76, + 0x32, 0xea, 0x21, 0x66, 0xf0, 0x69, 0x44, 0xc0, 0x81, 0xa8, 0x93, 0x2d, 0xf1, 0x33, 0x12, 0x39, + 0xd7, 0x0e, 0x9d, 0x2d, 0x4f, 0x5c, 0xf8, 0xe2, 0x51, 0x7c, 0xec, 0x5d, 0x88, 0x6d, 0x23, 0xd8, + 0xdd, 0x68, 0x5d, 0x89, 0x37, 0x2b, 0x2f, 0x52, 0xc2, 0x06, 0xd5, 0xe7, 0x79, 0x1d, 0x9a, 0x4a, + 0x5a, 0x95, 0xda, 0xfc, 0xb9, 0x02, 0x6b, 0x71, 0x6d, 0x0a, 0xfa, 0xed, 0xbf, 0x36, 0xf3, 0xa8, + 0xb8, 0x1a, 0xa8, 0x7e, 0x8c, 0x20, 0x7c, 0x4c, 0xec, 0x06, 0x5f, 0xd4, 0x60, 0x07, 0xee, 0x7e, + 0x3a, 0x81, 0xd8, 0x61, 0x3b, 0x09, 0x48, 0x7c, 0x74, 0xb3, 0x03, 0x6b, 0xe9, 0x18, 0xa4, 0x0e, + 0xe5, 0x07, 0xfd, 0xe1, 0x23, 0x43, 0xbc, 0x6b, 0xf0, 0xbe, 0xcd, 0xb3, 0xd6, 0xee, 0xd0, 0xe8, + 0xee, 0x0e, 0x86, 0xf8, 0xcc, 0xa1, 0x6b, 0x8f, 0xb5, 0xf6, 0x90, 0x67, 0x22, 0xff, 0xca, 0xef, + 0x88, 0x19, 0x45, 0xec, 0x20, 0x17, 0x14, 0x9d, 0x5b, 0x50, 0x16, 0x02, 0xb4, 0x99, 0xf9, 0xa3, + 0x49, 0x0b, 0xfd, 0xec, 0x31, 0x7b, 0x4f, 0x53, 0xc7, 0xec, 0x5b, 0x56, 0xc7, 0x5c, 0xaa, 0x3a, + 0x36, 0xff, 0x26, 0x0b, 0x37, 0x24, 0x53, 0xde, 0xee, 0xa5, 0xbe, 0x27, 0x33, 0xd2, 0x2c, 0x17, + 0xe1, 0xdd, 0x84, 0xbb, 0x4b, 0x6c, 0x26, 0x44, 0xcb, 0xe4, 0x22, 0xf3, 0xd1, 0xed, 0x40, 0x09, + 0xb0, 0x1a, 0x5c, 0x4b, 0x6f, 0xf7, 0x49, 0x31, 0xc7, 0xdb, 0x2d, 0xf9, 0x44, 0xbb, 0xa5, 0x85, + 0x4e, 0x7a, 0xf1, 0x9c, 0xa4, 0xe8, 0xcd, 0xb1, 0x85, 0x42, 0xaa, 0x2d, 0x18, 0x00, 0xe1, 0x6d, + 0x08, 0x81, 0x5a, 0xbb, 0xdf, 0x1b, 0xea, 0xad, 0xf6, 0xd0, 0xe0, 0x8f, 0x59, 0xea, 0x35, 0xb2, + 0x0a, 0xcb, 0x9d, 0xfe, 0xb3, 0x5e, 0xb7, 0xdf, 0xea, 0x18, 0xbd, 0xfe, 0xd0, 0xe0, 0x3d, 0x3f, + 0x85, 0x2c, 0x43, 0x55, 0x3e, 0x65, 0xb5, 0x1e, 0xb6, 0x76, 0x7b, 0x6a, 0x86, 0x5c, 0x87, 0x7a, + 0x40, 0x2d, 0x52, 0xe2, 0x6c, 0xf3, 0xcf, 0xb3, 0xb0, 0xda, 0x36, 0xed, 0x11, 0x9d, 0x84, 0x7a, + 0x7d, 0xb9, 0x42, 0x7d, 0x5e, 0xf3, 0x23, 0x91, 0xf5, 0x65, 0x2f, 0xf8, 0xa2, 0x25, 0x37, 0xef, + 0x8b, 0x96, 0x44, 0x52, 0xd8, 0x82, 0x25, 0x97, 0x9a, 0x9e, 0x63, 0x73, 0xd6, 0x87, 0xca, 0x90, + 0x7a, 0x09, 0x01, 0xd5, 0x39, 0x81, 0x2e, 0x08, 0xe3, 0x02, 0x2c, 0x5c, 0x49, 0x80, 0xb1, 0x40, + 0x5d, 0x4c, 0x06, 0x6a, 0x1d, 0x2a, 0xd1, 0x8d, 0x89, 0x0a, 0x95, 0x47, 0xfd, 0x01, 0x93, 0x19, + 0x97, 0x88, 0x7a, 0x8d, 0x89, 0x27, 0x90, 0xda, 0x4e, 0x6b, 0xb7, 0xab, 0x2a, 0x4c, 0xb8, 0xba, + 0xd6, 0x1b, 0x6a, 0x7a, 0x80, 0xc6, 0xdb, 0xac, 0xfd, 0xe1, 0x23, 0x4d, 0x57, 0xb3, 0xcd, 0x3f, + 0x55, 0xe0, 0x7a, 0x90, 0x62, 0x3d, 0x76, 0x0e, 0x22, 0x75, 0x2f, 0xb3, 0x9a, 0x68, 0xdd, 0xcb, + 0xc6, 0x69, 0x9d, 0x90, 0xcc, 0x5b, 0xe9, 0x84, 0x24, 0x13, 0xcd, 0xe6, 0x7f, 0x65, 0x60, 0x25, + 0x7e, 0x32, 0xe1, 0xad, 0xe7, 0x1c, 0xed, 0x16, 0x80, 0xe5, 0x79, 0xd3, 0x78, 0xa3, 0x07, 0x21, + 0x6c, 0x7a, 0x15, 0x96, 0x3e, 0x77, 0x0e, 0x42, 0xd5, 0xc9, 0x7f, 0xee, 0x1c, 0xec, 0xf2, 0x66, + 0xf0, 0xa9, 0x39, 0x7a, 0xc1, 0x4a, 0xee, 0xa9, 0x3b, 0x91, 0xc5, 0x84, 0x00, 0xed, 0xbb, 0x13, + 0xf2, 0x19, 0xdc, 0x90, 0x08, 0x41, 0x1f, 0x2c, 0xf6, 0xb1, 0xe5, 0xaa, 0x98, 0x0e, 0x7a, 0x7c, + 0xd8, 0x62, 0x63, 0x1a, 0x41, 0xed, 0xf1, 0x55, 0x4c, 0x9a, 0xda, 0x63, 0xf9, 0x31, 0x01, 0x3b, + 0xf2, 0xa1, 0x65, 0x5b, 0xde, 0xb1, 0x31, 0xa6, 0xe6, 0x78, 0x62, 0xd9, 0x8b, 0xa9, 0xd7, 0xf2, + 0xe7, 0xce, 0xc1, 0x0e, 0xa7, 0xef, 0x08, 0xf2, 0x0b, 0xf4, 0xec, 0x67, 0x0a, 0x90, 0x04, 0xe7, + 0x59, 0x72, 0x38, 0x87, 0xef, 0x21, 0x63, 0x33, 0x51, 0xc6, 0x7e, 0xca, 0x8c, 0x8a, 0xd1, 0x8a, + 0xea, 0xf3, 0x66, 0x6a, 0x13, 0x15, 0x97, 0xd7, 0x05, 0x2a, 0xd1, 0xa0, 0xec, 0x4d, 0x0f, 0x4e, + 0xac, 0x2b, 0xf4, 0xd9, 0x00, 0x09, 0x2f, 0xd1, 0x66, 0xfb, 0x3b, 0x05, 0x56, 0xd2, 0x4e, 0x71, + 0x99, 0x0f, 0x0e, 0xaf, 0x52, 0xaf, 0xa6, 0x3f, 0x27, 0xac, 0x05, 0xfc, 0x41, 0x6f, 0x24, 0x59, + 0xc0, 0xd5, 0x98, 0x5f, 0xdf, 0x99, 0xfa, 0x5c, 0x71, 0x8a, 0x4c, 0x8d, 0x87, 0x08, 0x68, 0xfe, + 0xb5, 0x02, 0xa4, 0x43, 0xdb, 0x94, 0xf9, 0xa4, 0x49, 0xd8, 0x56, 0x7e, 0x17, 0x32, 0x2f, 0xbd, + 0x86, 0x12, 0xfb, 0xc0, 0xb7, 0x13, 0x96, 0x4d, 0x99, 0x97, 0x91, 0x12, 0x3f, 0x13, 0x2d, 0xf1, + 0x09, 0xe4, 0xa6, 0xd3, 0xc0, 0x28, 0xf8, 0xff, 0x44, 0x85, 0x6c, 0x68, 0x0b, 0xec, 0x5f, 0xf2, + 0x2d, 0x28, 0x06, 0xba, 0x7c, 0x71, 0x87, 0x29, 0x87, 0x2f, 0xdd, 0x42, 0x8d, 0x9b, 0x3f, 0x54, + 0x00, 0x3a, 0xbf, 0xc4, 0x87, 0x9b, 0x79, 0x85, 0xe9, 0x07, 0x23, 0xa8, 0x44, 0x4b, 0x1c, 0x52, + 0x86, 0xc2, 0x60, 0xbf, 0xdd, 0xd6, 0x06, 0x03, 0xf5, 0x1a, 0xd9, 0x80, 0x35, 0x96, 0x7b, 0xb5, + 0x86, 0xfb, 0xba, 0x66, 0xec, 0xf4, 0xf5, 0x27, 0xad, 0xa1, 0xa1, 0xe9, 0x7a, 0x5f, 0x57, 0x15, + 0xb2, 0x0e, 0xab, 0xed, 0xfe, 0x93, 0xbd, 0xfd, 0xa1, 0x66, 0xb4, 0x3a, 0x1d, 0x5d, 0x1b, 0x0c, + 0xc4, 0x54, 0x86, 0xe5, 0x6d, 0xdc, 0xc5, 0x0a, 0xc0, 0xca, 0xbd, 0xbf, 0x02, 0xa8, 0x3c, 0xe4, + 0x51, 0x98, 0xba, 0xaf, 0xac, 0x11, 0x25, 0xdf, 0x86, 0xeb, 0x03, 0xae, 0xae, 0xf1, 0x4f, 0x1e, + 0xce, 0xc9, 0x21, 0x36, 0xaa, 0x61, 0x76, 0xc2, 0x54, 0xe4, 0x3b, 0x50, 0x1d, 0x50, 0x3b, 0x7c, + 0x70, 0x20, 0xb7, 0x22, 0x74, 0xb3, 0x6f, 0x0e, 0x49, 0xf2, 0x1e, 0xb3, 0xf0, 0x64, 0x2f, 0x9d, + 0xdc, 0x0e, 0x6a, 0xee, 0x73, 0xda, 0xec, 0x1b, 0xe7, 0x9c, 0x8e, 0xb4, 0x61, 0x79, 0xa6, 0x0d, + 0x44, 0xb6, 0x82, 0x3d, 0xd3, 0x1b, 0x44, 0xc9, 0x43, 0xfd, 0x3a, 0x94, 0x23, 0x35, 0x31, 0x59, + 0x97, 0x7b, 0xcd, 0xd4, 0xc9, 0x49, 0xc2, 0xc7, 0xb0, 0x3c, 0xd3, 0x58, 0x23, 0x17, 0xb5, 0xdc, + 0x36, 0x56, 0x12, 0xbd, 0x30, 0x6c, 0xdd, 0xe9, 0xa0, 0xea, 0xd4, 0x77, 0x2d, 0xfa, 0x8a, 0xca, + 0xee, 0x3b, 0xb9, 0xf0, 0xf3, 0x9b, 0x8d, 0x77, 0x92, 0x7c, 0x89, 0x7d, 0xcf, 0x33, 0x64, 0x6b, + 0xc6, 0x9b, 0x3d, 0x17, 0x33, 0x27, 0x44, 0x38, 0xa7, 0x4d, 0xd4, 0x61, 0x3c, 0x4f, 0xb4, 0x53, + 0x82, 0xa3, 0x9e, 0xdb, 0x68, 0x49, 0xf2, 0xae, 0x0b, 0x2b, 0xa8, 0x86, 0x89, 0x4a, 0x3b, 0xbd, + 0x02, 0xda, 0xb8, 0x35, 0xb7, 0xce, 0x21, 0xdf, 0x87, 0x75, 0x71, 0xde, 0x1d, 0xc7, 0x4d, 0x66, + 0xeb, 0xb7, 0xe2, 0x37, 0x4a, 0x4c, 0x6f, 0x6c, 0xce, 0xcf, 0xbf, 0x49, 0x1b, 0x56, 0x74, 0x7a, + 0xea, 0xb8, 0xfe, 0x8e, 0x69, 0x4d, 0x86, 0x4e, 0x47, 0xd4, 0xa1, 0xe4, 0x9d, 0x79, 0xa9, 0x5a, + 0xf2, 0xba, 0x4f, 0x83, 0x02, 0x29, 0xca, 0xf3, 0xc7, 0xce, 0x01, 0xd9, 0x48, 0x36, 0x9c, 0xc2, + 0x6c, 0x68, 0xe3, 0x66, 0xea, 0x9c, 0xb8, 0x73, 0x07, 0x1a, 0xc8, 0xc1, 0xb4, 0x98, 0x99, 0x4e, + 0x38, 0x9d, 0xcc, 0x1c, 0xec, 0xbb, 0xb0, 0xc2, 0x7f, 0xc3, 0xf5, 0x90, 0xfa, 0xb1, 0x9f, 0x32, + 0x49, 0x4f, 0x1e, 0xfe, 0xc0, 0x6b, 0x43, 0xf6, 0x65, 0x62, 0x78, 0x0f, 0x60, 0x3d, 0x46, 0xcf, + 0x54, 0xde, 0xd3, 0x4d, 0xfb, 0x45, 0x8f, 0x9e, 0xa5, 0x2d, 0x42, 0xa2, 0x3f, 0x01, 0x11, 0x6b, + 0x74, 0xe0, 0x66, 0xfa, 0x1a, 0xfc, 0x07, 0x21, 0x97, 0x5d, 0x65, 0x07, 0x6e, 0xc4, 0x56, 0x09, + 0x7f, 0x4d, 0x92, 0xb6, 0x82, 0xec, 0xf3, 0xcd, 0xfc, 0xe6, 0xe4, 0xc1, 0x6f, 0xfe, 0xe2, 0xe7, + 0x9b, 0xca, 0x17, 0x5f, 0x6e, 0x2a, 0x3f, 0xfe, 0x72, 0x53, 0xf9, 0xd9, 0x97, 0x9b, 0xca, 0x9f, + 0x7d, 0xb5, 0xa9, 0xfc, 0xc3, 0x57, 0x9b, 0xca, 0x17, 0x5f, 0x6d, 0x2a, 0x50, 0xb5, 0x9c, 0xed, + 0x03, 0xff, 0xd0, 0x43, 0xf2, 0x07, 0xc0, 0x7d, 0xeb, 0x1e, 0x0b, 0x44, 0x7b, 0xca, 0xf7, 0xf1, + 0xb7, 0x76, 0x07, 0x4b, 0x3c, 0x30, 0x7d, 0xfa, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x71, 0x7a, + 0xdf, 0x8e, 0x95, 0x37, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -5097,6 +5133,26 @@ func (m *TotalStateSummary) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.TotalUsdtReward != 0 { + i = encodeVarintGuard(dAtA, i, uint64(m.TotalUsdtReward)) + i-- + dAtA[i] = 0x68 + } + if m.TotalUsddReward != 0 { + i = encodeVarintGuard(dAtA, i, uint64(m.TotalUsddReward)) + i-- + dAtA[i] = 0x60 + } + if m.TotalTrxReward != 0 { + i = encodeVarintGuard(dAtA, i, uint64(m.TotalTrxReward)) + i-- + dAtA[i] = 0x58 + } + if m.TotalWbttReward != 0 { + i = encodeVarintGuard(dAtA, i, uint64(m.TotalWbttReward)) + i-- + dAtA[i] = 0x50 + } if m.TotalHostReward != 0 { i = encodeVarintGuard(dAtA, i, uint64(m.TotalHostReward)) i-- @@ -7720,8 +7776,24 @@ func NewPopulatedTotalStateSummary(r randyGuard, easy bool) *TotalStateSummary { if r.Intn(2) == 0 { this.TotalHostReward *= -1 } + this.TotalWbttReward = int64(r.Int63()) + if r.Intn(2) == 0 { + this.TotalWbttReward *= -1 + } + this.TotalTrxReward = int64(r.Int63()) + if r.Intn(2) == 0 { + this.TotalTrxReward *= -1 + } + this.TotalUsddReward = int64(r.Int63()) + if r.Intn(2) == 0 { + this.TotalUsddReward *= -1 + } + this.TotalUsdtReward = int64(r.Int63()) + if r.Intn(2) == 0 { + this.TotalUsdtReward *= -1 + } if !easy && r.Intn(10) != 0 { - this.XXX_unrecognized = randUnrecognizedGuard(r, 10) + this.XXX_unrecognized = randUnrecognizedGuard(r, 14) } return this } @@ -8737,6 +8809,18 @@ func (m *TotalStateSummary) Size() (n int) { if m.TotalHostReward != 0 { n += 1 + sovGuard(uint64(m.TotalHostReward)) } + if m.TotalWbttReward != 0 { + n += 1 + sovGuard(uint64(m.TotalWbttReward)) + } + if m.TotalTrxReward != 0 { + n += 1 + sovGuard(uint64(m.TotalTrxReward)) + } + if m.TotalUsddReward != 0 { + n += 1 + sovGuard(uint64(m.TotalUsddReward)) + } + if m.TotalUsdtReward != 0 { + n += 1 + sovGuard(uint64(m.TotalUsdtReward)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -10897,6 +10981,82 @@ func (m *TotalStateSummary) Unmarshal(dAtA []byte) error { break } } + case 10: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalWbttReward", wireType) + } + m.TotalWbttReward = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGuard + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.TotalWbttReward |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 11: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalTrxReward", wireType) + } + m.TotalTrxReward = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGuard + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.TotalTrxReward |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 12: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalUsddReward", wireType) + } + m.TotalUsddReward = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGuard + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.TotalUsddReward |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 13: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalUsdtReward", wireType) + } + m.TotalUsdtReward = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGuard + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.TotalUsdtReward |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipGuard(dAtA[iNdEx:]) diff --git a/protos/guard/guard.proto b/protos/guard/guard.proto index aec00ae..84804dc 100644 --- a/protos/guard/guard.proto +++ b/protos/guard/guard.proto @@ -108,6 +108,10 @@ message TotalStateSummary { int64 invalid_contract_count = 7; int64 lost_shard_size = 8; int64 total_host_reward = 9; + int64 total_wbtt_reward = 10; + int64 total_trx_reward = 11; + int64 total_usdd_reward = 12; + int64 total_usdt_reward = 13; } message HostStatus {