diff --git a/js/protos/guard/guard_pb.js b/js/protos/guard/guard_pb.js index d5ce094..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); +}; + + @@ -3597,7 +3717,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 +3830,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 +3989,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 +4578,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 +4989,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 +5093,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 +5240,13 @@ proto.guard.FileStoreMeta.serializeBinaryToWriter = function(message, writer) { f ); } + f = message.getToken(); + if (f.length > 0) { + writer.writeString( + 17, + f + ); + } }; @@ -5414,6 +5576,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/js/protos/online/online_pb.js b/js/protos/online/online_pb.js index c4b84fa..72b27a6 100644 --- a/js/protos/online/online_pb.js +++ b/js/protos/online/online_pb.js @@ -19,10 +19,54 @@ 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.ReqLastDailySignedInfo', 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. + * @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.ReqLastDailySignedInfo = function(opt_data) { + jspb.Message.initialize(this, opt_data, 0, -1, null, null); +}; +goog.inherits(proto.online.ReqLastDailySignedInfo, jspb.Message); +if (goog.DEBUG && !COMPILED) { + /** + * @public + * @override + */ + proto.online.ReqLastDailySignedInfo.displayName = 'proto.online.ReqLastDailySignedInfo'; +} +/** + * 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'; +} /** * Generated by JsPbCodeGenerator. * @param {Array=} opt_data Optional initial data array, typically from a @@ -110,6 +154,347 @@ if (goog.DEBUG && !COMPILED) { +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.ReqLastDailySignedInfo.prototype.toObject = function(opt_includeInstance) { + return proto.online.ReqLastDailySignedInfo.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.ReqLastDailySignedInfo} msg The msg instance to transform. + * @return {!Object} + * @suppress {unusedLocalVariables} f is only used for nested messages + */ +proto.online.ReqLastDailySignedInfo.toObject = function(includeInstance, msg) { + var f, obj = { + peerId: 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.ReqLastDailySignedInfo} + */ +proto.online.ReqLastDailySignedInfo.deserializeBinary = function(bytes) { + var reader = new jspb.BinaryReader(bytes); + 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.ReqLastDailySignedInfo} msg The message object to deserialize into. + * @param {!jspb.BinaryReader} reader The BinaryReader to use. + * @return {!proto.online.ReqLastDailySignedInfo} + */ +proto.online.ReqLastDailySignedInfo.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.setPeerId(value); + break; + default: + reader.skipField(); + break; + } + } + return msg; +}; + + +/** + * Serializes the message to binary data (in protobuf wire format). + * @return {!Uint8Array} + */ +proto.online.ReqLastDailySignedInfo.prototype.serializeBinary = function() { + var writer = new jspb.BinaryWriter(); + proto.online.ReqLastDailySignedInfo.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.ReqLastDailySignedInfo} message + * @param {!jspb.BinaryWriter} writer + * @suppress {unusedLocalVariables} f is only used for nested messages + */ +proto.online.ReqLastDailySignedInfo.serializeBinaryToWriter = function(message, writer) { + var f = undefined; + f = message.getPeerId(); + if (f.length > 0) { + writer.writeString( + 1, + f + ); + } +}; + + +/** + * optional string peer_id = 1; + * @return {string} + */ +proto.online.ReqLastDailySignedInfo.prototype.getPeerId = function() { + return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, "")); +}; + + +/** + * @param {string} value + * @return {!proto.online.ReqLastDailySignedInfo} returns this + */ +proto.online.ReqLastDailySignedInfo.prototype.setPeerId = 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; +}; + + + + + if (jspb.Message.GENERATE_TO_OBJECT) { /** * Creates an object representation of this proto. diff --git a/protos/guard/guard.pb.go b/protos/guard/guard.pb.go index c33593c..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" } @@ -1120,6 +1152,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 +1303,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 +1415,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 +1566,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 +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{ - // 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, + // 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. @@ -5080,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-- @@ -5406,6 +5479,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 +5718,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-- @@ -7685,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 } @@ -7833,8 +7940,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 +8026,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 } @@ -8700,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) } @@ -8884,6 +9005,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 +9102,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) } @@ -10852,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:]) @@ -12226,6 +12431,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 +13111,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..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 { @@ -217,6 +221,7 @@ message Contract { (gogoproto.nullable) = false, (gogoproto.stdtime) = true ]; + string token = 18; } message FileStoreListResponse { @@ -254,6 +259,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 { diff --git a/protos/online/online.pb.go b/protos/online/online.pb.go index fbfba7c..40b4ec9 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) @@ -386,6 +504,10 @@ func (*SignedInfo) XXX_MessageName() string { 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") @@ -400,49 +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{ - // 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, + // 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. @@ -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) + 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 { @@ -477,9 +607,29 @@ func (c *onlineServiceClient) UpdateSignMetrics(ctx context.Context, in *ReqSign return out, nil } +func (c *onlineServiceClient) DoDailyStatusReport(ctx context.Context, in *ReqSignMetrics, opts ...grpc.CallOption) (*Result, error) { + out := new(Result) + err := c.cc.Invoke(ctx, "/online.OnlineService/DoDailyStatusReport", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *onlineServiceClient) GetLastDailySignedInfo(ctx context.Context, in *ReqLastDailySignedInfo, opts ...grpc.CallOption) (*RespSignMetrics, error) { + out := new(RespSignMetrics) + err := c.cc.Invoke(ctx, "/online.OnlineService/GetLastDailySignedInfo", 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) + DoDailyStatusReport(context.Context, *ReqSignMetrics) (*Result, error) + GetLastDailySignedInfo(context.Context, *ReqLastDailySignedInfo) (*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) DoDailyStatusReport(ctx context.Context, req *ReqSignMetrics) (*Result, error) { + return nil, status.Errorf(codes.Unimplemented, "method DoDailyStatusReport 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) { 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_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).DoDailyStatusReport(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/online.OnlineService/DoDailyStatusReport", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(OnlineServiceServer).DoDailyStatusReport(ctx, req.(*ReqSignMetrics)) + } + return interceptor(ctx, in, info, handler) +} + +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).GetLastDailySignedInfo(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/online.OnlineService/GetLastDailySignedInfo", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(OnlineServiceServer).GetLastDailySignedInfo(ctx, req.(*ReqLastDailySignedInfo)) + } + return interceptor(ctx, in, info, handler) +} + var _OnlineService_serviceDesc = grpc.ServiceDesc{ ServiceName: "online.OnlineService", HandlerType: (*OnlineServiceServer)(nil), @@ -520,11 +712,100 @@ var _OnlineService_serviceDesc = grpc.ServiceDesc{ MethodName: "UpdateSignMetrics", Handler: _OnlineService_UpdateSignMetrics_Handler, }, + { + MethodName: "DoDailyStatusReport", + Handler: _OnlineService_DoDailyStatusReport_Handler, + }, + { + MethodName: "GetLastDailySignedInfo", + Handler: _OnlineService_GetLastDailySignedInfo_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "protos/online/online.proto", } +func (m *ReqLastDailySignedInfo) 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 *ReqLastDailySignedInfo) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ReqLastDailySignedInfo) 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.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 *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) + } + 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] = 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 (m *ReqSignMetrics) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -597,12 +878,12 @@ 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):]) - if err1 != nil { - return 0, err1 + 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 -= n1 - i = encodeVarintOnline(dAtA, i, uint64(n1)) + i -= n2 + i = encodeVarintOnline(dAtA, i, uint64(n2)) i-- dAtA[i] = 0x2a if len(m.LastSignature) > 0 { @@ -778,6 +1059,43 @@ func encodeVarintOnline(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) return base } +func (m *ReqLastDailySignedInfo) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.PeerId) + 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 (m *ReqSignMetrics) Size() (n int) { if m == nil { return 0 @@ -898,6 +1216,230 @@ func sovOnline(x uint64) (n int) { 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 + } + } + + 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 (m *ReqSignMetrics) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/protos/online/online.proto b/protos/online/online.proto index 5d69a06..5f54529 100644 --- a/protos/online/online.proto +++ b/protos/online/online.proto @@ -22,6 +22,21 @@ import "google/protobuf/timestamp.proto"; service OnlineService { rpc UpdateSignMetrics(ReqSignMetrics) returns (RespSignMetrics); + rpc DoDailyStatusReport(ReqSignMetrics) returns (Result); + rpc GetLastDailySignedInfo(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 {