@ -25,15 +25,39 @@ type StonehengePrivilege int32
const (
StonehengePrivilege_StonehengePrivilege_Noll StonehengePrivilege = 0
StonehengePrivilege_StonehengePrivilege_1 StonehengePrivilege = 1 //解锁“事件商店”中,复活事件
StonehengePrivilege_StonehengePrivilege_2 StonehengePrivilege = 2 //解锁“事件商店”中,支援事件
StonehengePrivilege_StonehengePrivilege_3 StonehengePrivilege = 3 //解锁“事件商店”中,更换buff事件
StonehengePrivilege_StonehengePrivilege_4 StonehengePrivilege = 4 //累计选择3个关卡开局所选类型的buff后, 可额外触发一次随机buff三选一事件
StonehengePrivilege_StonehengePrivilege_5 StonehengePrivilege = 5 //累计选择6个关卡开局所选类型的buff后, 可额外触发一次随机buff三选一事件
StonehengePrivilege_StonehengePrivilege_6 StonehengePrivilege = 6 //累计选择10个所选类型的buff后, 可额外触发一次随机buff三选一事件
StonehengePrivilege_StonehengePrivilege_7 StonehengePrivilege = 7 //随机buff三选一事件,新增重置功能
StonehengePrivilege_StonehengePrivilege_8 StonehengePrivilege = 8 //每次进入关卡时,玩家会增加指定数量的道具(必定为item类型)
)
// Enum value maps for StonehengePrivilege.
var (
StonehengePrivilege_name = map [ int32 ] string {
0 : "StonehengePrivilege_Noll" ,
1 : "StonehengePrivilege_1" ,
2 : "StonehengePrivilege_2" ,
3 : "StonehengePrivilege_3" ,
4 : "StonehengePrivilege_4" ,
5 : "StonehengePrivilege_5" ,
6 : "StonehengePrivilege_6" ,
7 : "StonehengePrivilege_7" ,
8 : "StonehengePrivilege_8" ,
}
StonehengePrivilege_value = map [ string ] int32 {
"StonehengePrivilege_Noll" : 0 ,
"StonehengePrivilege_1" : 1 ,
"StonehengePrivilege_2" : 2 ,
"StonehengePrivilege_3" : 3 ,
"StonehengePrivilege_4" : 4 ,
"StonehengePrivilege_5" : 5 ,
"StonehengePrivilege_6" : 6 ,
"StonehengePrivilege_7" : 7 ,
"StonehengePrivilege_8" : 8 ,
}
)
@ -74,15 +98,15 @@ type RoomData struct {
Portal [ ] int32 ` protobuf:"varint,2,rep,packed,name=portal,proto3" json:"portal" ` // 传送门id
Selectbuff [ ] int32 ` protobuf:"varint,3,rep,packed,name=selectbuff,proto3" json:"selectbuff" ` // 给前端显示的buff 组
// map<int32,int32> group = 4; // 事件组
Complete bool ` protobuf:"varint,5,opt,name=complete,proto3" json:"complete" ` // 房间是否通关
Index int32 ` protobuf:"varint,6,opt,name=index,proto3" json:"index" ` // 房间索引
Roomid int32 ` protobuf:"varint,7,opt,name=roomid,proto3" json:"roomid" ` // 房间id
Hero [ ] string ` protobuf:"bytes,8,rep,name=hero,proto3" json:"hero" ` //上阵英雄 继承血量用
Box map [ int32 ] int32 ` protobuf:"bytes,9,rep,name=box,proto3" json:"box" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` // 宝箱事件
Story int32 ` protobuf:"varint,10,opt,name=story,proto3" json:"story" ` // 剧情id
Shop map [ int32 ] int32 ` protobuf:"bytes,11,rep,name=shop,proto3" json:"shop" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` // 商店
Passive map [ int32 ] int32 ` protobuf:"bytes,12,rep,name=passive,proto3" json:"passive" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` // 被动事件
Selec tcount int32 ` protobuf:"varint,13,opt,name= selec tcount,proto3" json:"selec tcount"` //三选一事件 次数
Complete bool ` protobuf:"varint,5,opt,name=complete,proto3" json:"complete" ` // 房间是否通关
Index int32 ` protobuf:"varint,6,opt,name=index,proto3" json:"index" ` // 房间索引
Roomid int32 ` protobuf:"varint,7,opt,name=roomid,proto3" json:"roomid" ` // 房间id
Hero [ ] string ` protobuf:"bytes,8,rep,name=hero,proto3" json:"hero" ` //上阵英雄 继承血量用
Box map [ int32 ] int32 ` protobuf:"bytes,9,rep,name=box,proto3" json:"box" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` // 宝箱事件
Story int32 ` protobuf:"varint,10,opt,name=story,proto3" json:"story" ` // 剧情id
Shop map [ int32 ] int32 ` protobuf:"bytes,11,rep,name=shop,proto3" json:"shop" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` // 商店
Passive map [ int32 ] int32 ` protobuf:"bytes,12,rep,name=passive,proto3" json:"passive" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` // 被动事件
Rese tcount int32 ` protobuf:"varint,13,opt,name= re setcount,proto3" json:"re setcount"` //三选一事件 重置 次数
}
func ( x * RoomData ) Reset ( ) {
@ -194,9 +218,9 @@ func (x *RoomData) GetPassive() map[int32]int32 {
return nil
}
func ( x * RoomData ) Get Selec tcount( ) int32 {
func ( x * RoomData ) Get Rese tcount( ) int32 {
if x != nil {
return x . Selec tcount
return x . Rese tcount
}
return 0
}
@ -208,22 +232,24 @@ type DBStonehenge struct {
Id string ` protobuf:"bytes,1,opt,name=id,proto3" json:"id" bson:"_id" ` //ID
Uid string ` protobuf:"bytes,2,opt,name=uid,proto3" json:"uid" `
StageID int32 ` protobuf:"varint,3,opt,name=stageID,proto3" json:"stageID" ` // 关卡id
CurRoomIndes int32 ` protobuf:"varint,4,opt,name=curRoomIndes,proto3" json:"curRoomIndes" ` // 当前房间索引 初始 0 每通关一次+1
Rooms * RoomData ` protobuf:"bytes,5,opt,name=rooms,proto3" json:"rooms" ` // 当前房间信息
Webuff [ ] int32 ` protobuf:"varint,6,rep,packed,name=webuff,proto3" json:"webuff" ` // 我方环境buff 不能被更改
Enemybuff [ ] int32 ` protobuf:"varint,7,rep,packed,name=enemybuff,proto3" json:"enemybuff" ` // 地方环境buff 不能被更改
Userbuff map [ int32 ] int32 ` protobuf:"bytes,8,rep,name=userbuff,proto3" json:"userbuff" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` // 玩家获得的buff key:buffid value:0
Hero map [ string ] * BattleRole ` protobuf:"bytes,9,rep,name=hero,proto3" json:"hero" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" ` // 英雄信息
Reward map [ int32 ] bool ` protobuf:"bytes,10,rep,name=reward,proto3" json:"reward" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` // 是否首通 key:stageid
Addweight map [ int32 ] int32 ` protobuf:"bytes,11,rep,name=addweight,proto3" json:"addweight" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` // 选择buff权重增加 key 类型
Etime int64 ` protobuf:"varint,12,opt,name=etime,proto3" json:"etime" ` // 结算时间
Talent map [ int32 ] bool ` protobuf:"bytes,13,rep,name=talent,proto3" json:"talent" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` //天赋树
Talentproperty map [ string ] int32 ` protobuf:"bytes,14,rep,name=talentproperty,proto3" json:"talentproperty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` //天赋属性
Privilege [ ] StonehengePrivilege ` protobuf:"varint,15,rep,packed,name=privilege,proto3,enum=StonehengePrivilege" json:"privilege" ` //解锁特权
Integral int32 ` protobuf:"varint,16,opt,name=integral,proto3" json:"integral" ` //积分
Weeklyreward map [ int32 ] bool ` protobuf:"bytes,17,rep,name=weeklyreward,proto3" json:"weeklyreward" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` //周长奖励领取
Task map [ int32 ] bool ` protobuf:"bytes,18,rep,name=task,proto3" json:"task" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` //已领取的任务
StageID int32 ` protobuf:"varint,3,opt,name=stageID,proto3" json:"stageID" ` // 关卡id
CurRoomIndes int32 ` protobuf:"varint,4,opt,name=curRoomIndes,proto3" json:"curRoomIndes" ` // 当前房间索引 初始 0 每通关一次+1
Rooms * RoomData ` protobuf:"bytes,5,opt,name=rooms,proto3" json:"rooms" ` // 当前房间信息
Webuff [ ] int32 ` protobuf:"varint,6,rep,packed,name=webuff,proto3" json:"webuff" ` // 我方环境buff 不能被更改
Enemybuff [ ] int32 ` protobuf:"varint,7,rep,packed,name=enemybuff,proto3" json:"enemybuff" ` // 地方环境buff 不能被更改
Userbuff map [ int32 ] int32 ` protobuf:"bytes,8,rep,name=userbuff,proto3" json:"userbuff" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` // 玩家获得的buff key:buffid value:0
Hero map [ string ] * BattleRole ` protobuf:"bytes,9,rep,name=hero,proto3" json:"hero" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" ` // 英雄信息
Reward map [ int32 ] bool ` protobuf:"bytes,10,rep,name=reward,proto3" json:"reward" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` // 是否首通 key:stageid
Addweight map [ int32 ] int32 ` protobuf:"bytes,11,rep,name=addweight,proto3" json:"addweight" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` // 选择buff权重增加 key 类型
Etime int64 ` protobuf:"varint,12,opt,name=etime,proto3" json:"etime" ` // 结算时间
Talent map [ int32 ] bool ` protobuf:"bytes,13,rep,name=talent,proto3" json:"talent" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` //天赋树
Talentproperty map [ string ] int32 ` protobuf:"bytes,14,rep,name=talentproperty,proto3" json:"talentproperty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` //天赋属性
Privilege [ ] StonehengePrivilege ` protobuf:"varint,15,rep,packed,name=privilege,proto3,enum=StonehengePrivilege" json:"privilege" ` //解锁特权
Integral int32 ` protobuf:"varint,16,opt,name=integral,proto3" json:"integral" ` //积分
Weeklyreward map [ int32 ] bool ` protobuf:"bytes,17,rep,name=weeklyreward,proto3" json:"weeklyreward" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` //周长奖励领取
Task map [ int32 ] bool ` protobuf:"bytes,18,rep,name=task,proto3" json:"task" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` //已领取的任务
Privilegeevent map [ int32 ] int32 ` protobuf:"bytes,19,rep,name=privilegeevent,proto3" json:"privilegeevent" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3" ` // 记录特权完成情况
Selectcount int32 ` protobuf:"varint,20,opt,name=selectcount,proto3" json:"selectcount" ` //三选一事件次数
}
func ( x * DBStonehenge ) Reset ( ) {
@ -384,6 +410,20 @@ func (x *DBStonehenge) GetTask() map[int32]bool {
return nil
}
func ( x * DBStonehenge ) GetPrivilegeevent ( ) map [ int32 ] int32 {
if x != nil {
return x . Privilegeevent
}
return nil
}
func ( x * DBStonehenge ) GetSelectcount ( ) int32 {
if x != nil {
return x . Selectcount
}
return 0
}
type StageData struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
@ -636,7 +676,7 @@ var file_stonehenge_stonehenge_db_proto_rawDesc = []byte{
0x0a , 0x1e , 0x73 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x2f , 0x73 , 0x74 , 0x6f ,
0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x5f , 0x64 , 0x62 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f ,
0x1a , 0x16 , 0x62 , 0x61 , 0x74 , 0x74 , 0x6c , 0x65 , 0x2f , 0x62 , 0x61 , 0x74 , 0x74 , 0x6c , 0x65 , 0x5f ,
0x64 , 0x62 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x22 , 0xf 4 , 0x04 , 0x0a , 0x08 , 0x52 , 0x6f , 0x6f ,
0x64 , 0x62 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x22 , 0xf 2 , 0x04 , 0x0a , 0x08 , 0x52 , 0x6f , 0x6f ,
0x6d , 0x44 , 0x61 , 0x74 , 0x61 , 0x12 , 0x30 , 0x0a , 0x07 , 0x65 , 0x76 , 0x65 , 0x6e , 0x74 , 0x69 , 0x64 ,
0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e , 0x52 , 0x6f , 0x6f , 0x6d , 0x44 , 0x61 , 0x74 ,
0x61 , 0x2e , 0x45 , 0x76 , 0x65 , 0x6e , 0x74 , 0x69 , 0x64 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x07 ,
@ -659,146 +699,171 @@ var file_stonehenge_stonehenge_db_proto_rawDesc = []byte{
0x6f , 0x70 , 0x12 , 0x30 , 0x0a , 0x07 , 0x70 , 0x61 , 0x73 , 0x73 , 0x69 , 0x76 , 0x65 , 0x18 , 0x0c , 0x20 ,
0x03 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e , 0x52 , 0x6f , 0x6f , 0x6d , 0x44 , 0x61 , 0x74 , 0x61 , 0x2e , 0x50 ,
0x61 , 0x73 , 0x73 , 0x69 , 0x76 , 0x65 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x07 , 0x70 , 0x61 , 0x73 ,
0x73 , 0x69 , 0x76 , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x73 , 0x65 , 0x6c , 0x65 , 0x63 , 0x74 , 0x63 , 0x6f ,
0x75 , 0x6e , 0x74 , 0x18 , 0x0d , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x0b , 0x73 , 0x65 , 0x6c , 0x65 , 0x63 ,
0x74 , 0x63 , 0x6f , 0x75 , 0x6e , 0x74 , 0x1a , 0x3a , 0x0a , 0x0c , 0x45 , 0x76 , 0x65 , 0x6e , 0x74 , 0x69 ,
0x64 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 ,
0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 ,
0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 ,
0x38 , 0x01 , 0x1a , 0x36 , 0x0a , 0x08 , 0x42 , 0x6f , 0x78 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 ,
0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 ,
0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 ,
0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x37 , 0x0a , 0x09 , 0x53 , 0x68 ,
0x6f , 0x70 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 ,
0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c ,
0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a ,
0x02 , 0x38 , 0x01 , 0x1a , 0x3a , 0x0a , 0x0c , 0x50 , 0x61 , 0x73 , 0x73 , 0x69 , 0x76 , 0x65 , 0x45 , 0x6e ,
0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 ,
0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 ,
0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x22 ,
0xe4 , 0x09 , 0x0a , 0x0c , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 ,
0x12 , 0x0e , 0x0a , 0x02 , 0x69 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x02 , 0x69 , 0x64 ,
0x12 , 0x10 , 0x0a , 0x03 , 0x75 , 0x69 , 0x64 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x75 ,
0x69 , 0x64 , 0x12 , 0x18 , 0x0a , 0x07 , 0x73 , 0x74 , 0x61 , 0x67 , 0x65 , 0x49 , 0x44 , 0x18 , 0x03 , 0x20 ,
0x01 , 0x28 , 0x05 , 0x52 , 0x07 , 0x73 , 0x74 , 0x61 , 0x67 , 0x65 , 0x49 , 0x44 , 0x12 , 0x22 , 0x0a , 0x0c ,
0x63 , 0x75 , 0x72 , 0x52 , 0x6f , 0x6f , 0x6d , 0x49 , 0x6e , 0x64 , 0x65 , 0x73 , 0x18 , 0x04 , 0x20 , 0x01 ,
0x28 , 0x05 , 0x52 , 0x0c , 0x63 , 0x75 , 0x72 , 0x52 , 0x6f , 0x6f , 0x6d , 0x49 , 0x6e , 0x64 , 0x65 , 0x73 ,
0x12 , 0x1f , 0x0a , 0x05 , 0x72 , 0x6f , 0x6f , 0x6d , 0x73 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 ,
0x09 , 0x2e , 0x52 , 0x6f , 0x6f , 0x6d , 0x44 , 0x61 , 0x74 , 0x61 , 0x52 , 0x05 , 0x72 , 0x6f , 0x6f , 0x6d ,
0x73 , 0x12 , 0x16 , 0x0a , 0x06 , 0x77 , 0x65 , 0x62 , 0x75 , 0x66 , 0x66 , 0x18 , 0x06 , 0x20 , 0x03 , 0x28 ,
0x05 , 0x52 , 0x06 , 0x77 , 0x65 , 0x62 , 0x75 , 0x66 , 0x66 , 0x12 , 0x1c , 0x0a , 0x09 , 0x65 , 0x6e , 0x65 ,
0x6d , 0x79 , 0x62 , 0x75 , 0x66 , 0x66 , 0x18 , 0x07 , 0x20 , 0x03 , 0x28 , 0x05 , 0x52 , 0x09 , 0x65 , 0x6e ,
0x65 , 0x6d , 0x79 , 0x62 , 0x75 , 0x66 , 0x66 , 0x12 , 0x37 , 0x0a , 0x08 , 0x75 , 0x73 , 0x65 , 0x72 , 0x62 ,
0x75 , 0x66 , 0x66 , 0x18 , 0x08 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x1b , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 ,
0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x2e , 0x55 , 0x73 , 0x65 , 0x72 , 0x62 , 0x75 , 0x66 ,
0x66 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x08 , 0x75 , 0x73 , 0x65 , 0x72 , 0x62 , 0x75 , 0x66 , 0x66 ,
0x12 , 0x2b , 0x0a , 0x04 , 0x68 , 0x65 , 0x72 , 0x6f , 0x18 , 0x09 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x17 ,
0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x2e , 0x48 , 0x65 ,
0x72 , 0x6f , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x04 , 0x68 , 0x65 , 0x72 , 0x6f , 0x12 , 0x31 , 0x0a ,
0x06 , 0x72 , 0x65 , 0x77 , 0x61 , 0x72 , 0x64 , 0x18 , 0x0a , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x19 , 0x2e ,
0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x2e , 0x52 , 0x65 , 0x77 ,
0x61 , 0x72 , 0x64 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x06 , 0x72 , 0x65 , 0x77 , 0x61 , 0x72 , 0x64 ,
0x12 , 0x3a , 0x0a , 0x09 , 0x61 , 0x64 , 0x64 , 0x77 , 0x65 , 0x69 , 0x67 , 0x68 , 0x74 , 0x18 , 0x0b , 0x20 ,
0x03 , 0x28 , 0x0b , 0x32 , 0x1c , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e ,
0x67 , 0x65 , 0x2e , 0x41 , 0x64 , 0x64 , 0x77 , 0x65 , 0x69 , 0x67 , 0x68 , 0x74 , 0x45 , 0x6e , 0x74 , 0x72 ,
0x79 , 0x52 , 0x09 , 0x61 , 0x64 , 0x64 , 0x77 , 0x65 , 0x69 , 0x67 , 0x68 , 0x74 , 0x12 , 0x14 , 0x0a , 0x05 ,
0x65 , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 , 0x0c , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x05 , 0x65 , 0x74 , 0x69 ,
0x6d , 0x65 , 0x12 , 0x31 , 0x0a , 0x06 , 0x74 , 0x61 , 0x6c , 0x65 , 0x6e , 0x74 , 0x18 , 0x0d , 0x20 , 0x03 ,
0x28 , 0x0b , 0x32 , 0x19 , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 ,
0x65 , 0x2e , 0x54 , 0x61 , 0x6c , 0x65 , 0x6e , 0x74 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x06 , 0x74 ,
0x61 , 0x6c , 0x65 , 0x6e , 0x74 , 0x12 , 0x49 , 0x0a , 0x0e , 0x74 , 0x61 , 0x6c , 0x65 , 0x6e , 0x74 , 0x70 ,
0x72 , 0x6f , 0x70 , 0x65 , 0x72 , 0x74 , 0x79 , 0x18 , 0x0e , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x21 , 0x2e ,
0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x2e , 0x54 , 0x61 , 0x6c ,
0x65 , 0x6e , 0x74 , 0x70 , 0x72 , 0x6f , 0x70 , 0x65 , 0x72 , 0x74 , 0x79 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 ,
0x52 , 0x0e , 0x74 , 0x61 , 0x6c , 0x65 , 0x6e , 0x74 , 0x70 , 0x72 , 0x6f , 0x70 , 0x65 , 0x72 , 0x74 , 0x79 ,
0x12 , 0x32 , 0x0a , 0x09 , 0x70 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x18 , 0x0f , 0x20 ,
0x03 , 0x28 , 0x0e , 0x32 , 0x14 , 0x2e , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 ,
0x50 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x52 , 0x09 , 0x70 , 0x72 , 0x69 , 0x76 , 0x69 ,
0x6c , 0x65 , 0x67 , 0x65 , 0x12 , 0x1a , 0x0a , 0x08 , 0x69 , 0x6e , 0x74 , 0x65 , 0x67 , 0x72 , 0x61 , 0x6c ,
0x18 , 0x10 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x08 , 0x69 , 0x6e , 0x74 , 0x65 , 0x67 , 0x72 , 0x61 , 0x6c ,
0x12 , 0x43 , 0x0a , 0x0c , 0x77 , 0x65 , 0x65 , 0x6b , 0x6c , 0x79 , 0x72 , 0x65 , 0x77 , 0x61 , 0x72 , 0x64 ,
0x18 , 0x11 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x1f , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 ,
0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x2e , 0x57 , 0x65 , 0x65 , 0x6b , 0x6c , 0x79 , 0x72 , 0x65 , 0x77 , 0x61 ,
0x72 , 0x64 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x0c , 0x77 , 0x65 , 0x65 , 0x6b , 0x6c , 0x79 , 0x72 ,
0x65 , 0x77 , 0x61 , 0x72 , 0x64 , 0x12 , 0x2b , 0x0a , 0x04 , 0x74 , 0x61 , 0x73 , 0x6b , 0x18 , 0x12 , 0x20 ,
0x03 , 0x28 , 0x0b , 0x32 , 0x17 , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e ,
0x67 , 0x65 , 0x2e , 0x54 , 0x61 , 0x73 , 0x6b , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x04 , 0x74 , 0x61 ,
0x73 , 0x6b , 0x1a , 0x3b , 0x0a , 0x0d , 0x55 , 0x73 , 0x65 , 0x72 , 0x62 , 0x75 , 0x66 , 0x66 , 0x45 , 0x6e ,
0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 ,
0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 ,
0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a ,
0x44 , 0x0a , 0x09 , 0x48 , 0x65 , 0x72 , 0x6f , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 ,
0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x21 ,
0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x0b , 0x2e ,
0x42 , 0x61 , 0x74 , 0x74 , 0x6c , 0x65 , 0x52 , 0x6f , 0x6c , 0x65 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 ,
0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x39 , 0x0a , 0x0b , 0x52 , 0x65 , 0x77 , 0x61 , 0x72 , 0x64 , 0x45 ,
0x73 , 0x69 , 0x76 , 0x65 , 0x12 , 0x1e , 0x0a , 0x0a , 0x72 , 0x65 , 0x73 , 0x65 , 0x74 , 0x63 , 0x6f , 0x75 ,
0x6e , 0x74 , 0x18 , 0x0d , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x0a , 0x72 , 0x65 , 0x73 , 0x65 , 0x74 , 0x63 ,
0x6f , 0x75 , 0x6e , 0x74 , 0x1a , 0x3a , 0x0a , 0x0c , 0x45 , 0x76 , 0x65 , 0x6e , 0x74 , 0x69 , 0x64 , 0x45 ,
0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 ,
0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 ,
0x02 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 ,
0x1a , 0x3c , 0x0a , 0x0e , 0x41 , 0x64 , 0x64 , 0x77 , 0x65 , 0x69 , 0x67 , 0x68 , 0x74 , 0x45 , 0x6e , 0x74 ,
0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 ,
0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 ,
0x01 , 0x28 , 0x05 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x39 ,
0x0a , 0x0b , 0x54 , 0x61 , 0x6c , 0x65 , 0x6e , 0x74 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a ,
0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 ,
0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x05 ,
0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x41 , 0x0a , 0x13 , 0x54 , 0x61 , 0x6c ,
0x65 , 0x6e , 0x74 , 0x70 , 0x72 , 0x6f , 0x70 , 0x65 , 0x72 , 0x74 , 0x79 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 ,
0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b ,
0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 ,
0x05 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x3f , 0x0a , 0x11 ,
0x57 , 0x65 , 0x65 , 0x6b , 0x6c , 0x79 , 0x72 , 0x65 , 0x77 , 0x61 , 0x72 , 0x64 , 0x45 , 0x6e , 0x74 , 0x72 ,
0x1a , 0x36 , 0x0a , 0x08 , 0x42 , 0x6f , 0x78 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 ,
0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 ,
0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x05 , 0x76 ,
0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x37 , 0x0a , 0x09 , 0x53 , 0x68 , 0x6f , 0x70 ,
0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 ,
0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 ,
0x01 , 0x1a , 0x3a , 0x0a , 0x0c , 0x50 , 0x61 , 0x73 , 0x73 , 0x69 , 0x76 , 0x65 , 0x45 , 0x6e , 0x74 , 0x72 ,
0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 ,
0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 ,
0x28 , 0x08 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x37 , 0x0a ,
0x09 , 0x54 , 0x61 , 0x73 , 0x6b , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 ,
0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 ,
0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c ,
0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x22 , 0x5f , 0x0a , 0x09 , 0x53 , 0x74 , 0x61 , 0x67 , 0x65 , 0x44 ,
0x61 , 0x74 , 0x61 , 0x12 , 0x1c , 0x0a , 0x09 , 0x6d , 0x61 , 0x69 , 0x6e , 0x65 , 0x62 , 0x75 , 0x66 , 0x66 ,
0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x05 , 0x52 , 0x09 , 0x6d , 0x61 , 0x69 , 0x6e , 0x65 , 0x62 , 0x75 , 0x66 ,
0x66 , 0x12 , 0x1c , 0x0a , 0x09 , 0x65 , 0x6e , 0x65 , 0x6d , 0x79 , 0x62 , 0x75 , 0x66 , 0x66 , 0x18 , 0x02 ,
0x20 , 0x03 , 0x28 , 0x05 , 0x52 , 0x09 , 0x65 , 0x6e , 0x65 , 0x6d , 0x79 , 0x62 , 0x75 , 0x66 , 0x66 , 0x12 ,
0x16 , 0x0a , 0x06 , 0x72 , 0x6f , 0x6f , 0x6d , 0x69 , 0x64 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 ,
0x06 , 0x72 , 0x6f , 0x6f , 0x6d , 0x69 , 0x64 , 0x22 , 0xa8 , 0x01 , 0x0a , 0x0b , 0x44 , 0x42 , 0x53 , 0x74 ,
0x6f , 0x6e , 0x65 , 0x42 , 0x6f , 0x73 , 0x73 , 0x12 , 0x39 , 0x0a , 0x09 , 0x62 , 0x6f , 0x73 , 0x73 , 0x73 ,
0x74 , 0x61 , 0x67 , 0x65 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x1b , 0x2e , 0x44 , 0x42 , 0x53 ,
0x74 , 0x6f , 0x6e , 0x65 , 0x42 , 0x6f , 0x73 , 0x73 , 0x2e , 0x42 , 0x6f , 0x73 , 0x73 , 0x73 , 0x74 , 0x61 ,
0x67 , 0x65 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x09 , 0x62 , 0x6f , 0x73 , 0x73 , 0x73 , 0x74 , 0x61 ,
0x67 , 0x65 , 0x12 , 0x14 , 0x0a , 0x05 , 0x72 , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x05 , 0x72 , 0x74 , 0x69 , 0x6d , 0x65 , 0x1a , 0x48 , 0x0a , 0x0e , 0x42 , 0x6f , 0x73 , 0x73 ,
0x73 , 0x74 , 0x61 , 0x67 , 0x65 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 ,
0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x20 , 0x0a , 0x05 ,
0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x0a , 0x2e , 0x53 , 0x74 ,
0x61 , 0x67 , 0x65 , 0x44 , 0x61 , 0x74 , 0x61 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 ,
0x38 , 0x01 , 0x22 , 0xba , 0x01 , 0x0a , 0x10 , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 ,
0x6e , 0x67 , 0x65 , 0x42 , 0x6f , 0x6f , 0x6b , 0x12 , 0x0e , 0x0a , 0x02 , 0x69 , 0x64 , 0x18 , 0x01 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x02 , 0x69 , 0x64 , 0x12 , 0x10 , 0x0a , 0x03 , 0x75 , 0x69 , 0x64 , 0x18 , 0x02 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x75 , 0x69 , 0x64 , 0x12 , 0x32 , 0x0a , 0x05 , 0x61 , 0x77 , 0x61 ,
0x72 , 0x64 , 0x18 , 0x04 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x1c , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f ,
0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x42 , 0x6f , 0x6f , 0x6b , 0x2e , 0x41 , 0x77 , 0x61 , 0x72 ,
0x64 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x05 , 0x61 , 0x77 , 0x61 , 0x72 , 0x64 , 0x1a , 0x50 , 0x0a ,
0x0a , 0x41 , 0x77 , 0x61 , 0x72 , 0x64 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b ,
0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x2c , 0x0a ,
0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e , 0x44 ,
0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x42 , 0x6f , 0x6f , 0x6b , 0x41 ,
0x77 , 0x61 , 0x72 , 0x64 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x22 ,
0xb6 , 0x01 , 0x0a , 0x15 , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 ,
0x42 , 0x6f , 0x6f , 0x6b , 0x41 , 0x77 , 0x61 , 0x72 , 0x64 , 0x12 , 0x14 , 0x0a , 0x05 , 0x62 , 0x74 , 0x79 ,
0x70 , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x05 , 0x62 , 0x74 , 0x79 , 0x70 , 0x65 , 0x12 ,
0x14 , 0x0a , 0x05 , 0x62 , 0x6f , 0x6f , 0x6b , 0x73 , 0x18 , 0x02 , 0x20 , 0x03 , 0x28 , 0x05 , 0x52 , 0x05 ,
0x62 , 0x6f , 0x6f , 0x6b , 0x73 , 0x12 , 0x37 , 0x0a , 0x05 , 0x73 , 0x74 , 0x61 , 0x67 , 0x65 , 0x18 , 0x03 ,
0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x21 , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 ,
0x6e , 0x67 , 0x65 , 0x42 , 0x6f , 0x6f , 0x6b , 0x41 , 0x77 , 0x61 , 0x72 , 0x64 , 0x2e , 0x53 , 0x74 , 0x61 ,
0x67 , 0x65 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x05 , 0x73 , 0x74 , 0x61 , 0x67 , 0x65 , 0x1a , 0x38 ,
0x0a , 0x0a , 0x53 , 0x74 , 0x61 , 0x67 , 0x65 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 ,
0x28 , 0x05 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x22 , 0x94 , 0x0b ,
0x0a , 0x0c , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x12 , 0x0e ,
0x0a , 0x02 , 0x69 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x02 , 0x69 , 0x64 , 0x12 , 0x10 ,
0x0a , 0x03 , 0x75 , 0x69 , 0x64 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x75 , 0x69 , 0x64 ,
0x12 , 0x18 , 0x0a , 0x07 , 0x73 , 0x74 , 0x61 , 0x67 , 0x65 , 0x49 , 0x44 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 ,
0x05 , 0x52 , 0x07 , 0x73 , 0x74 , 0x61 , 0x67 , 0x65 , 0x49 , 0x44 , 0x12 , 0x22 , 0x0a , 0x0c , 0x63 , 0x75 ,
0x72 , 0x52 , 0x6f , 0x6f , 0x6d , 0x49 , 0x6e , 0x64 , 0x65 , 0x73 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x05 ,
0x52 , 0x0c , 0x63 , 0x75 , 0x72 , 0x52 , 0x6f , 0x6f , 0x6d , 0x49 , 0x6e , 0x64 , 0x65 , 0x73 , 0x12 , 0x1f ,
0x0a , 0x05 , 0x72 , 0x6f , 0x6f , 0x6d , 0x73 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x09 , 0x2e ,
0x52 , 0x6f , 0x6f , 0x6d , 0x44 , 0x61 , 0x74 , 0x61 , 0x52 , 0x05 , 0x72 , 0x6f , 0x6f , 0x6d , 0x73 , 0x12 ,
0x16 , 0x0a , 0x06 , 0x77 , 0x65 , 0x62 , 0x75 , 0x66 , 0x66 , 0x18 , 0x06 , 0x20 , 0x03 , 0x28 , 0x05 , 0x52 ,
0x06 , 0x77 , 0x65 , 0x62 , 0x75 , 0x66 , 0x66 , 0x12 , 0x1c , 0x0a , 0x09 , 0x65 , 0x6e , 0x65 , 0x6d , 0x79 ,
0x62 , 0x75 , 0x66 , 0x66 , 0x18 , 0x07 , 0x20 , 0x03 , 0x28 , 0x05 , 0x52 , 0x09 , 0x65 , 0x6e , 0x65 , 0x6d ,
0x79 , 0x62 , 0x75 , 0x66 , 0x66 , 0x12 , 0x37 , 0x0a , 0x08 , 0x75 , 0x73 , 0x65 , 0x72 , 0x62 , 0x75 , 0x66 ,
0x66 , 0x18 , 0x08 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x1b , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e ,
0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x2e , 0x55 , 0x73 , 0x65 , 0x72 , 0x62 , 0x75 , 0x66 , 0x66 , 0x45 ,
0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x08 , 0x75 , 0x73 , 0x65 , 0x72 , 0x62 , 0x75 , 0x66 , 0x66 , 0x12 , 0x2b ,
0x0a , 0x04 , 0x68 , 0x65 , 0x72 , 0x6f , 0x18 , 0x09 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x17 , 0x2e , 0x44 ,
0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x2e , 0x48 , 0x65 , 0x72 , 0x6f ,
0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x04 , 0x68 , 0x65 , 0x72 , 0x6f , 0x12 , 0x31 , 0x0a , 0x06 , 0x72 ,
0x65 , 0x77 , 0x61 , 0x72 , 0x64 , 0x18 , 0x0a , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x19 , 0x2e , 0x44 , 0x42 ,
0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x2e , 0x52 , 0x65 , 0x77 , 0x61 , 0x72 ,
0x64 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x06 , 0x72 , 0x65 , 0x77 , 0x61 , 0x72 , 0x64 , 0x12 , 0x3a ,
0x0a , 0x09 , 0x61 , 0x64 , 0x64 , 0x77 , 0x65 , 0x69 , 0x67 , 0x68 , 0x74 , 0x18 , 0x0b , 0x20 , 0x03 , 0x28 ,
0x0b , 0x32 , 0x1c , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 ,
0x2e , 0x41 , 0x64 , 0x64 , 0x77 , 0x65 , 0x69 , 0x67 , 0x68 , 0x74 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 ,
0x09 , 0x61 , 0x64 , 0x64 , 0x77 , 0x65 , 0x69 , 0x67 , 0x68 , 0x74 , 0x12 , 0x14 , 0x0a , 0x05 , 0x65 , 0x74 ,
0x69 , 0x6d , 0x65 , 0x18 , 0x0c , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x05 , 0x65 , 0x74 , 0x69 , 0x6d , 0x65 ,
0x12 , 0x31 , 0x0a , 0x06 , 0x74 , 0x61 , 0x6c , 0x65 , 0x6e , 0x74 , 0x18 , 0x0d , 0x20 , 0x03 , 0x28 , 0x0b ,
0x32 , 0x19 , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x2e ,
0x54 , 0x61 , 0x6c , 0x65 , 0x6e , 0x74 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x06 , 0x74 , 0x61 , 0x6c ,
0x65 , 0x6e , 0x74 , 0x12 , 0x49 , 0x0a , 0x0e , 0x74 , 0x61 , 0x6c , 0x65 , 0x6e , 0x74 , 0x70 , 0x72 , 0x6f ,
0x70 , 0x65 , 0x72 , 0x74 , 0x79 , 0x18 , 0x0e , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x21 , 0x2e , 0x44 , 0x42 ,
0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x2e , 0x54 , 0x61 , 0x6c , 0x65 , 0x6e ,
0x74 , 0x70 , 0x72 , 0x6f , 0x70 , 0x65 , 0x72 , 0x74 , 0x79 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x0e ,
0x74 , 0x61 , 0x6c , 0x65 , 0x6e , 0x74 , 0x70 , 0x72 , 0x6f , 0x70 , 0x65 , 0x72 , 0x74 , 0x79 , 0x12 , 0x32 ,
0x0a , 0x09 , 0x70 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x18 , 0x0f , 0x20 , 0x03 , 0x28 ,
0x0e , 0x32 , 0x14 , 0x2e , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x50 , 0x72 ,
0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x52 , 0x09 , 0x70 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 ,
0x67 , 0x65 , 0x12 , 0x1a , 0x0a , 0x08 , 0x69 , 0x6e , 0x74 , 0x65 , 0x67 , 0x72 , 0x61 , 0x6c , 0x18 , 0x10 ,
0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x08 , 0x69 , 0x6e , 0x74 , 0x65 , 0x67 , 0x72 , 0x61 , 0x6c , 0x12 , 0x43 ,
0x0a , 0x0c , 0x77 , 0x65 , 0x65 , 0x6b , 0x6c , 0x79 , 0x72 , 0x65 , 0x77 , 0x61 , 0x72 , 0x64 , 0x18 , 0x11 ,
0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x1f , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 ,
0x6e , 0x67 , 0x65 , 0x2e , 0x57 , 0x65 , 0x65 , 0x6b , 0x6c , 0x79 , 0x72 , 0x65 , 0x77 , 0x61 , 0x72 , 0x64 ,
0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x0c , 0x77 , 0x65 , 0x65 , 0x6b , 0x6c , 0x79 , 0x72 , 0x65 , 0x77 ,
0x61 , 0x72 , 0x64 , 0x12 , 0x2b , 0x0a , 0x04 , 0x74 , 0x61 , 0x73 , 0x6b , 0x18 , 0x12 , 0x20 , 0x03 , 0x28 ,
0x0b , 0x32 , 0x17 , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 ,
0x2e , 0x54 , 0x61 , 0x73 , 0x6b , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x04 , 0x74 , 0x61 , 0x73 , 0x6b ,
0x12 , 0x49 , 0x0a , 0x0e , 0x70 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x65 , 0x76 , 0x65 ,
0x6e , 0x74 , 0x18 , 0x13 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x21 , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f ,
0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x2e , 0x50 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 ,
0x65 , 0x65 , 0x76 , 0x65 , 0x6e , 0x74 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x0e , 0x70 , 0x72 , 0x69 ,
0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x65 , 0x76 , 0x65 , 0x6e , 0x74 , 0x12 , 0x20 , 0x0a , 0x0b , 0x73 ,
0x65 , 0x6c , 0x65 , 0x63 , 0x74 , 0x63 , 0x6f , 0x75 , 0x6e , 0x74 , 0x18 , 0x14 , 0x20 , 0x01 , 0x28 , 0x05 ,
0x52 , 0x0b , 0x73 , 0x65 , 0x6c , 0x65 , 0x63 , 0x74 , 0x63 , 0x6f , 0x75 , 0x6e , 0x74 , 0x1a , 0x3b , 0x0a ,
0x0d , 0x55 , 0x73 , 0x65 , 0x72 , 0x62 , 0x75 , 0x66 , 0x66 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 ,
0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 ,
0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 ,
0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x44 , 0x0a , 0x09 , 0x48 , 0x65 ,
0x72 , 0x6f , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x21 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c ,
0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x0b , 0x2e , 0x42 , 0x61 , 0x74 , 0x74 , 0x6c ,
0x65 , 0x52 , 0x6f , 0x6c , 0x65 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 ,
0x1a , 0x39 , 0x0a , 0x0b , 0x52 , 0x65 , 0x77 , 0x61 , 0x72 , 0x64 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 ,
0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 ,
0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x08 ,
0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x3c , 0x0a , 0x0e , 0x41 ,
0x64 , 0x64 , 0x77 , 0x65 , 0x69 , 0x67 , 0x68 , 0x74 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a ,
0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 ,
0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x05 ,
0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x39 , 0x0a , 0x0b , 0x54 , 0x61 , 0x6c ,
0x65 , 0x6e , 0x74 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 ,
0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 ,
0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x41 , 0x0a , 0x13 , 0x54 , 0x61 , 0x6c , 0x65 , 0x6e , 0x74 , 0x70 , 0x72 ,
0x6f , 0x70 , 0x65 , 0x72 , 0x74 , 0x79 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b ,
0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a ,
0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x05 , 0x76 , 0x61 ,
0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x3f , 0x0a , 0x11 , 0x57 , 0x65 , 0x65 , 0x6b , 0x6c ,
0x79 , 0x72 , 0x65 , 0x77 , 0x61 , 0x72 , 0x64 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 ,
0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 ,
0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x05 , 0x76 ,
0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x2a , 0x33 , 0x0a , 0x13 , 0x53 , 0x74 , 0x6f , 0x6e ,
0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x50 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x12 ,
0x1c , 0x0a , 0x18 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x50 , 0x72 , 0x69 ,
0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x5f , 0x4e , 0x6f , 0x6c , 0x6c , 0x10 , 0x00 , 0x42 , 0x06 , 0x5a ,
0x04 , 0x2e , 0x3b , 0x70 , 0x62 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x37 , 0x0a , 0x09 , 0x54 , 0x61 , 0x73 , 0x6b ,
0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 ,
0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 ,
0x01 , 0x1a , 0x41 , 0x0a , 0x13 , 0x50 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x65 , 0x76 ,
0x65 , 0x6e , 0x74 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 ,
0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 ,
0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x3a , 0x02 , 0x38 , 0x01 , 0x22 , 0x5f , 0x0a , 0x09 , 0x53 , 0x74 , 0x61 , 0x67 , 0x65 , 0x44 , 0x61 , 0x74 ,
0x61 , 0x12 , 0x1c , 0x0a , 0x09 , 0x6d , 0x61 , 0x69 , 0x6e , 0x65 , 0x62 , 0x75 , 0x66 , 0x66 , 0x18 , 0x01 ,
0x20 , 0x03 , 0x28 , 0x05 , 0x52 , 0x09 , 0x6d , 0x61 , 0x69 , 0x6e , 0x65 , 0x62 , 0x75 , 0x66 , 0x66 , 0x12 ,
0x1c , 0x0a , 0x09 , 0x65 , 0x6e , 0x65 , 0x6d , 0x79 , 0x62 , 0x75 , 0x66 , 0x66 , 0x18 , 0x02 , 0x20 , 0x03 ,
0x28 , 0x05 , 0x52 , 0x09 , 0x65 , 0x6e , 0x65 , 0x6d , 0x79 , 0x62 , 0x75 , 0x66 , 0x66 , 0x12 , 0x16 , 0x0a ,
0x06 , 0x72 , 0x6f , 0x6f , 0x6d , 0x69 , 0x64 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x06 , 0x72 ,
0x6f , 0x6f , 0x6d , 0x69 , 0x64 , 0x22 , 0xa8 , 0x01 , 0x0a , 0x0b , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e ,
0x65 , 0x42 , 0x6f , 0x73 , 0x73 , 0x12 , 0x39 , 0x0a , 0x09 , 0x62 , 0x6f , 0x73 , 0x73 , 0x73 , 0x74 , 0x61 ,
0x67 , 0x65 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x1b , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f ,
0x6e , 0x65 , 0x42 , 0x6f , 0x73 , 0x73 , 0x2e , 0x42 , 0x6f , 0x73 , 0x73 , 0x73 , 0x74 , 0x61 , 0x67 , 0x65 ,
0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x09 , 0x62 , 0x6f , 0x73 , 0x73 , 0x73 , 0x74 , 0x61 , 0x67 , 0x65 ,
0x12 , 0x14 , 0x0a , 0x05 , 0x72 , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 ,
0x05 , 0x72 , 0x74 , 0x69 , 0x6d , 0x65 , 0x1a , 0x48 , 0x0a , 0x0e , 0x42 , 0x6f , 0x73 , 0x73 , 0x73 , 0x74 ,
0x61 , 0x67 , 0x65 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 ,
0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x20 , 0x0a , 0x05 , 0x76 , 0x61 ,
0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x0a , 0x2e , 0x53 , 0x74 , 0x61 , 0x67 ,
0x65 , 0x44 , 0x61 , 0x74 , 0x61 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 ,
0x22 , 0xba , 0x01 , 0x0a , 0x10 , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 ,
0x65 , 0x42 , 0x6f , 0x6f , 0x6b , 0x12 , 0x0e , 0x0a , 0x02 , 0x69 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x02 , 0x69 , 0x64 , 0x12 , 0x10 , 0x0a , 0x03 , 0x75 , 0x69 , 0x64 , 0x18 , 0x02 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x03 , 0x75 , 0x69 , 0x64 , 0x12 , 0x32 , 0x0a , 0x05 , 0x61 , 0x77 , 0x61 , 0x72 , 0x64 ,
0x18 , 0x04 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x1c , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 ,
0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x42 , 0x6f , 0x6f , 0x6b , 0x2e , 0x41 , 0x77 , 0x61 , 0x72 , 0x64 , 0x45 ,
0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x05 , 0x61 , 0x77 , 0x61 , 0x72 , 0x64 , 0x1a , 0x50 , 0x0a , 0x0a , 0x41 ,
0x77 , 0x61 , 0x72 , 0x64 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x2c , 0x0a , 0x05 , 0x76 ,
0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e , 0x44 , 0x42 , 0x53 ,
0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x42 , 0x6f , 0x6f , 0x6b , 0x41 , 0x77 , 0x61 ,
0x72 , 0x64 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x22 , 0xb6 , 0x01 ,
0x0a , 0x15 , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x42 , 0x6f ,
0x6f , 0x6b , 0x41 , 0x77 , 0x61 , 0x72 , 0x64 , 0x12 , 0x14 , 0x0a , 0x05 , 0x62 , 0x74 , 0x79 , 0x70 , 0x65 ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x05 , 0x62 , 0x74 , 0x79 , 0x70 , 0x65 , 0x12 , 0x14 , 0x0a ,
0x05 , 0x62 , 0x6f , 0x6f , 0x6b , 0x73 , 0x18 , 0x02 , 0x20 , 0x03 , 0x28 , 0x05 , 0x52 , 0x05 , 0x62 , 0x6f ,
0x6f , 0x6b , 0x73 , 0x12 , 0x37 , 0x0a , 0x05 , 0x73 , 0x74 , 0x61 , 0x67 , 0x65 , 0x18 , 0x03 , 0x20 , 0x03 ,
0x28 , 0x0b , 0x32 , 0x21 , 0x2e , 0x44 , 0x42 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 ,
0x65 , 0x42 , 0x6f , 0x6f , 0x6b , 0x41 , 0x77 , 0x61 , 0x72 , 0x64 , 0x2e , 0x53 , 0x74 , 0x61 , 0x67 , 0x65 ,
0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x05 , 0x73 , 0x74 , 0x61 , 0x67 , 0x65 , 0x1a , 0x38 , 0x0a , 0x0a ,
0x53 , 0x74 , 0x61 , 0x67 , 0x65 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 ,
0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 ,
0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c ,
0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x2a , 0x8b , 0x02 , 0x0a , 0x13 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 ,
0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x50 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x12 , 0x1c ,
0x0a , 0x18 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x50 , 0x72 , 0x69 , 0x76 ,
0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x5f , 0x4e , 0x6f , 0x6c , 0x6c , 0x10 , 0x00 , 0x12 , 0x19 , 0x0a , 0x15 ,
0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x50 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c ,
0x65 , 0x67 , 0x65 , 0x5f , 0x31 , 0x10 , 0x01 , 0x12 , 0x19 , 0x0a , 0x15 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 ,
0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x50 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x5f , 0x32 ,
0x10 , 0x02 , 0x12 , 0x19 , 0x0a , 0x15 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 ,
0x50 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x5f , 0x33 , 0x10 , 0x03 , 0x12 , 0x19 , 0x0a ,
0x15 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x50 , 0x72 , 0x69 , 0x76 , 0x69 ,
0x6c , 0x65 , 0x67 , 0x65 , 0x5f , 0x34 , 0x10 , 0x04 , 0x12 , 0x19 , 0x0a , 0x15 , 0x53 , 0x74 , 0x6f , 0x6e ,
0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x50 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x5f ,
0x35 , 0x10 , 0x05 , 0x12 , 0x19 , 0x0a , 0x15 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 ,
0x65 , 0x50 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x5f , 0x36 , 0x10 , 0x06 , 0x12 , 0x19 ,
0x0a , 0x15 , 0x53 , 0x74 , 0x6f , 0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x50 , 0x72 , 0x69 , 0x76 ,
0x69 , 0x6c , 0x65 , 0x67 , 0x65 , 0x5f , 0x37 , 0x10 , 0x07 , 0x12 , 0x19 , 0x0a , 0x15 , 0x53 , 0x74 , 0x6f ,
0x6e , 0x65 , 0x68 , 0x65 , 0x6e , 0x67 , 0x65 , 0x50 , 0x72 , 0x69 , 0x76 , 0x69 , 0x6c , 0x65 , 0x67 , 0x65 ,
0x5f , 0x38 , 0x10 , 0x08 , 0x42 , 0x06 , 0x5a , 0x04 , 0x2e , 0x3b , 0x70 , 0x62 , 0x62 , 0x06 , 0x70 , 0x72 ,
0x6f , 0x74 , 0x6f , 0x33 ,
}
var (
@ -814,7 +879,7 @@ func file_stonehenge_stonehenge_db_proto_rawDescGZIP() []byte {
}
var file_stonehenge_stonehenge_db_proto_enumTypes = make ( [ ] protoimpl . EnumInfo , 1 )
var file_stonehenge_stonehenge_db_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 2 1 )
var file_stonehenge_stonehenge_db_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 2 2 )
var file_stonehenge_stonehenge_db_proto_goTypes = [ ] interface { } {
( StonehengePrivilege ) ( 0 ) , // 0: StonehengePrivilege
( * RoomData ) ( nil ) , // 1: RoomData
@ -835,10 +900,11 @@ var file_stonehenge_stonehenge_db_proto_goTypes = []interface{}{
nil , // 16: DBStonehenge.TalentpropertyEntry
nil , // 17: DBStonehenge.WeeklyrewardEntry
nil , // 18: DBStonehenge.TaskEntry
nil , // 19: DBStoneBoss.BossstageEntry
nil , // 20: DBStonehengeBook.AwardEntry
nil , // 21: DBStonehengeBookAward.StageEntry
( * BattleRole ) ( nil ) , // 22: BattleRole
nil , // 19: DBStonehenge.PrivilegeeventEntry
nil , // 20: DBStoneBoss.BossstageEntry
nil , // 21: DBStonehengeBook.AwardEntry
nil , // 22: DBStonehengeBookAward.StageEntry
( * BattleRole ) ( nil ) , // 23: BattleRole
}
var file_stonehenge_stonehenge_db_proto_depIdxs = [ ] int32 {
7 , // 0: RoomData.eventid:type_name -> RoomData.EventidEntry
@ -855,17 +921,18 @@ var file_stonehenge_stonehenge_db_proto_depIdxs = []int32{
0 , // 11: DBStonehenge.privilege:type_name -> StonehengePrivilege
17 , // 12: DBStonehenge.weeklyreward:type_name -> DBStonehenge.WeeklyrewardEntry
18 , // 13: DBStonehenge.task:type_name -> DBStonehenge.TaskEntry
19 , // 14: DBStoneBoss.bossstage:type_name -> DBStoneBoss.BossstageEntry
20 , // 15: DBStonehengeBook.award:type_name -> DBStonehengeBook.AwardEntry
21 , // 16: DBStonehengeBookAward.stage:type_name -> DBStonehengeBookAward.StageEntry
22 , // 17: DBStonehenge.HeroEntry.value:type_name -> BattleRole
3 , // 18: DBStoneBoss.BossstageEntry.value:type_name -> StageData
6 , // 19: DBStonehengeBook.AwardEntry.value:type_name -> DBStonehengeBookAward
20 , // [20:20] is the sub-list for method output_type
20 , // [20:20] is the sub-list for method input_type
20 , // [20:20] is the sub-list for extension type_name
20 , // [20:20] is the sub-list for extension extendee
0 , // [0:20] is the sub-list for field type_name
19 , // 14: DBStonehenge.privilegeevent:type_name -> DBStonehenge.PrivilegeeventEntry
20 , // 15: DBStoneBoss.bossstage:type_name -> DBStoneBoss.BossstageEntry
21 , // 16: DBStonehengeBook.award:type_name -> DBStonehengeBook.AwardEntry
22 , // 17: DBStonehengeBookAward.stage:type_name -> DBStonehengeBookAward.StageEntry
23 , // 18: DBStonehenge.HeroEntry.value:type_name -> BattleRole
3 , // 19: DBStoneBoss.BossstageEntry.value:type_name -> StageData
6 , // 20: DBStonehengeBook.AwardEntry.value:type_name -> DBStonehengeBookAward
21 , // [21:21] is the sub-list for method output_type
21 , // [21:21] is the sub-list for method input_type
21 , // [21:21] is the sub-list for extension type_name
21 , // [21:21] is the sub-list for extension extendee
0 , // [0:21] is the sub-list for field type_name
}
func init ( ) { file_stonehenge_stonehenge_db_proto_init ( ) }
@ -954,7 +1021,7 @@ func file_stonehenge_stonehenge_db_proto_init() {
GoPackagePath : reflect . TypeOf ( x { } ) . PkgPath ( ) ,
RawDescriptor : file_stonehenge_stonehenge_db_proto_rawDesc ,
NumEnums : 1 ,
NumMessages : 2 1 ,
NumMessages : 2 2 ,
NumExtensions : 0 ,
NumServices : 0 ,
} ,