user.pb.go 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0-devel
  4. // protoc v3.15.8
  5. // source: user.proto
  6. package user
  7. import (
  8. chat "git.ikuban.com/server/pw-protobuf/api/chat"
  9. common "git.ikuban.com/server/pw-protobuf/api/common"
  10. statistics "git.ikuban.com/server/pw-protobuf/api/statistics"
  11. _ "google.golang.org/genproto/googleapis/api/annotations"
  12. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  13. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  14. emptypb "google.golang.org/protobuf/types/known/emptypb"
  15. structpb "google.golang.org/protobuf/types/known/structpb"
  16. reflect "reflect"
  17. sync "sync"
  18. )
  19. const (
  20. // Verify that this generated code is sufficiently up-to-date.
  21. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  22. // Verify that runtime/protoimpl is sufficiently up-to-date.
  23. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  24. )
  25. type UserRechargeRequest struct {
  26. state protoimpl.MessageState
  27. sizeCache protoimpl.SizeCache
  28. unknownFields protoimpl.UnknownFields
  29. RechargeTemplateId int64 `protobuf:"varint,1,opt,name=RechargeTemplateId,proto3" json:"RechargeTemplateId"` // 充值套餐ID
  30. }
  31. func (x *UserRechargeRequest) Reset() {
  32. *x = UserRechargeRequest{}
  33. if protoimpl.UnsafeEnabled {
  34. mi := &file_user_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. }
  39. func (x *UserRechargeRequest) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*UserRechargeRequest) ProtoMessage() {}
  43. func (x *UserRechargeRequest) ProtoReflect() protoreflect.Message {
  44. mi := &file_user_proto_msgTypes[0]
  45. if protoimpl.UnsafeEnabled && x != nil {
  46. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  47. if ms.LoadMessageInfo() == nil {
  48. ms.StoreMessageInfo(mi)
  49. }
  50. return ms
  51. }
  52. return mi.MessageOf(x)
  53. }
  54. // Deprecated: Use UserRechargeRequest.ProtoReflect.Descriptor instead.
  55. func (*UserRechargeRequest) Descriptor() ([]byte, []int) {
  56. return file_user_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *UserRechargeRequest) GetRechargeTemplateId() int64 {
  59. if x != nil {
  60. return x.RechargeTemplateId
  61. }
  62. return 0
  63. }
  64. type RechargeList struct {
  65. state protoimpl.MessageState
  66. sizeCache protoimpl.SizeCache
  67. unknownFields protoimpl.UnknownFields
  68. List []*RechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  69. }
  70. func (x *RechargeList) Reset() {
  71. *x = RechargeList{}
  72. if protoimpl.UnsafeEnabled {
  73. mi := &file_user_proto_msgTypes[1]
  74. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  75. ms.StoreMessageInfo(mi)
  76. }
  77. }
  78. func (x *RechargeList) String() string {
  79. return protoimpl.X.MessageStringOf(x)
  80. }
  81. func (*RechargeList) ProtoMessage() {}
  82. func (x *RechargeList) ProtoReflect() protoreflect.Message {
  83. mi := &file_user_proto_msgTypes[1]
  84. if protoimpl.UnsafeEnabled && x != nil {
  85. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  86. if ms.LoadMessageInfo() == nil {
  87. ms.StoreMessageInfo(mi)
  88. }
  89. return ms
  90. }
  91. return mi.MessageOf(x)
  92. }
  93. // Deprecated: Use RechargeList.ProtoReflect.Descriptor instead.
  94. func (*RechargeList) Descriptor() ([]byte, []int) {
  95. return file_user_proto_rawDescGZIP(), []int{1}
  96. }
  97. func (x *RechargeList) GetList() []*RechargeInfo {
  98. if x != nil {
  99. return x.List
  100. }
  101. return nil
  102. }
  103. type RechargeInfo struct {
  104. state protoimpl.MessageState
  105. sizeCache protoimpl.SizeCache
  106. unknownFields protoimpl.UnknownFields
  107. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  108. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"`
  109. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 积分
  110. GiveCredit int64 `protobuf:"varint,4,opt,name=giveCredit,proto3" json:"giveCredit"` // 赠送的积分
  111. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description"` // 描述
  112. Title string `protobuf:"bytes,6,opt,name=title,proto3" json:"title"` // 标题
  113. }
  114. func (x *RechargeInfo) Reset() {
  115. *x = RechargeInfo{}
  116. if protoimpl.UnsafeEnabled {
  117. mi := &file_user_proto_msgTypes[2]
  118. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  119. ms.StoreMessageInfo(mi)
  120. }
  121. }
  122. func (x *RechargeInfo) String() string {
  123. return protoimpl.X.MessageStringOf(x)
  124. }
  125. func (*RechargeInfo) ProtoMessage() {}
  126. func (x *RechargeInfo) ProtoReflect() protoreflect.Message {
  127. mi := &file_user_proto_msgTypes[2]
  128. if protoimpl.UnsafeEnabled && x != nil {
  129. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  130. if ms.LoadMessageInfo() == nil {
  131. ms.StoreMessageInfo(mi)
  132. }
  133. return ms
  134. }
  135. return mi.MessageOf(x)
  136. }
  137. // Deprecated: Use RechargeInfo.ProtoReflect.Descriptor instead.
  138. func (*RechargeInfo) Descriptor() ([]byte, []int) {
  139. return file_user_proto_rawDescGZIP(), []int{2}
  140. }
  141. func (x *RechargeInfo) GetId() int64 {
  142. if x != nil {
  143. return x.Id
  144. }
  145. return 0
  146. }
  147. func (x *RechargeInfo) GetPrice() int64 {
  148. if x != nil {
  149. return x.Price
  150. }
  151. return 0
  152. }
  153. func (x *RechargeInfo) GetCredit() int64 {
  154. if x != nil {
  155. return x.Credit
  156. }
  157. return 0
  158. }
  159. func (x *RechargeInfo) GetGiveCredit() int64 {
  160. if x != nil {
  161. return x.GiveCredit
  162. }
  163. return 0
  164. }
  165. func (x *RechargeInfo) GetDescription() string {
  166. if x != nil {
  167. return x.Description
  168. }
  169. return ""
  170. }
  171. func (x *RechargeInfo) GetTitle() string {
  172. if x != nil {
  173. return x.Title
  174. }
  175. return ""
  176. }
  177. type InformationStatus struct {
  178. state protoimpl.MessageState
  179. sizeCache protoimpl.SizeCache
  180. unknownFields protoimpl.UnknownFields
  181. IsFinishInformation bool `protobuf:"varint,1,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  182. IsGetAward bool `protobuf:"varint,2,opt,name=isGetAward,proto3" json:"isGetAward"` // 是否领取奖励
  183. }
  184. func (x *InformationStatus) Reset() {
  185. *x = InformationStatus{}
  186. if protoimpl.UnsafeEnabled {
  187. mi := &file_user_proto_msgTypes[3]
  188. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  189. ms.StoreMessageInfo(mi)
  190. }
  191. }
  192. func (x *InformationStatus) String() string {
  193. return protoimpl.X.MessageStringOf(x)
  194. }
  195. func (*InformationStatus) ProtoMessage() {}
  196. func (x *InformationStatus) ProtoReflect() protoreflect.Message {
  197. mi := &file_user_proto_msgTypes[3]
  198. if protoimpl.UnsafeEnabled && x != nil {
  199. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  200. if ms.LoadMessageInfo() == nil {
  201. ms.StoreMessageInfo(mi)
  202. }
  203. return ms
  204. }
  205. return mi.MessageOf(x)
  206. }
  207. // Deprecated: Use InformationStatus.ProtoReflect.Descriptor instead.
  208. func (*InformationStatus) Descriptor() ([]byte, []int) {
  209. return file_user_proto_rawDescGZIP(), []int{3}
  210. }
  211. func (x *InformationStatus) GetIsFinishInformation() bool {
  212. if x != nil {
  213. return x.IsFinishInformation
  214. }
  215. return false
  216. }
  217. func (x *InformationStatus) GetIsGetAward() bool {
  218. if x != nil {
  219. return x.IsGetAward
  220. }
  221. return false
  222. }
  223. type UserBalance struct {
  224. state protoimpl.MessageState
  225. sizeCache protoimpl.SizeCache
  226. unknownFields protoimpl.UnknownFields
  227. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  228. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  229. }
  230. func (x *UserBalance) Reset() {
  231. *x = UserBalance{}
  232. if protoimpl.UnsafeEnabled {
  233. mi := &file_user_proto_msgTypes[4]
  234. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  235. ms.StoreMessageInfo(mi)
  236. }
  237. }
  238. func (x *UserBalance) String() string {
  239. return protoimpl.X.MessageStringOf(x)
  240. }
  241. func (*UserBalance) ProtoMessage() {}
  242. func (x *UserBalance) ProtoReflect() protoreflect.Message {
  243. mi := &file_user_proto_msgTypes[4]
  244. if protoimpl.UnsafeEnabled && x != nil {
  245. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  246. if ms.LoadMessageInfo() == nil {
  247. ms.StoreMessageInfo(mi)
  248. }
  249. return ms
  250. }
  251. return mi.MessageOf(x)
  252. }
  253. // Deprecated: Use UserBalance.ProtoReflect.Descriptor instead.
  254. func (*UserBalance) Descriptor() ([]byte, []int) {
  255. return file_user_proto_rawDescGZIP(), []int{4}
  256. }
  257. func (x *UserBalance) GetId() string {
  258. if x != nil {
  259. return x.Id
  260. }
  261. return ""
  262. }
  263. func (x *UserBalance) GetCredit() int64 {
  264. if x != nil {
  265. return x.Credit
  266. }
  267. return 0
  268. }
  269. type UserFindChatListReply struct {
  270. state protoimpl.MessageState
  271. sizeCache protoimpl.SizeCache
  272. unknownFields protoimpl.UnknownFields
  273. List []*UserChatInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  274. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  275. }
  276. func (x *UserFindChatListReply) Reset() {
  277. *x = UserFindChatListReply{}
  278. if protoimpl.UnsafeEnabled {
  279. mi := &file_user_proto_msgTypes[5]
  280. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  281. ms.StoreMessageInfo(mi)
  282. }
  283. }
  284. func (x *UserFindChatListReply) String() string {
  285. return protoimpl.X.MessageStringOf(x)
  286. }
  287. func (*UserFindChatListReply) ProtoMessage() {}
  288. func (x *UserFindChatListReply) ProtoReflect() protoreflect.Message {
  289. mi := &file_user_proto_msgTypes[5]
  290. if protoimpl.UnsafeEnabled && x != nil {
  291. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  292. if ms.LoadMessageInfo() == nil {
  293. ms.StoreMessageInfo(mi)
  294. }
  295. return ms
  296. }
  297. return mi.MessageOf(x)
  298. }
  299. // Deprecated: Use UserFindChatListReply.ProtoReflect.Descriptor instead.
  300. func (*UserFindChatListReply) Descriptor() ([]byte, []int) {
  301. return file_user_proto_rawDescGZIP(), []int{5}
  302. }
  303. func (x *UserFindChatListReply) GetList() []*UserChatInfo {
  304. if x != nil {
  305. return x.List
  306. }
  307. return nil
  308. }
  309. func (x *UserFindChatListReply) GetNextId() int64 {
  310. if x != nil {
  311. return x.NextId
  312. }
  313. return 0
  314. }
  315. type UserChatInfo struct {
  316. state protoimpl.MessageState
  317. sizeCache protoimpl.SizeCache
  318. unknownFields protoimpl.UnknownFields
  319. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  320. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  321. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  322. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  323. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  324. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  325. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  326. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  327. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  328. RoomId int64 `protobuf:"varint,12,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  329. }
  330. func (x *UserChatInfo) Reset() {
  331. *x = UserChatInfo{}
  332. if protoimpl.UnsafeEnabled {
  333. mi := &file_user_proto_msgTypes[6]
  334. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  335. ms.StoreMessageInfo(mi)
  336. }
  337. }
  338. func (x *UserChatInfo) String() string {
  339. return protoimpl.X.MessageStringOf(x)
  340. }
  341. func (*UserChatInfo) ProtoMessage() {}
  342. func (x *UserChatInfo) ProtoReflect() protoreflect.Message {
  343. mi := &file_user_proto_msgTypes[6]
  344. if protoimpl.UnsafeEnabled && x != nil {
  345. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  346. if ms.LoadMessageInfo() == nil {
  347. ms.StoreMessageInfo(mi)
  348. }
  349. return ms
  350. }
  351. return mi.MessageOf(x)
  352. }
  353. // Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.
  354. func (*UserChatInfo) Descriptor() ([]byte, []int) {
  355. return file_user_proto_rawDescGZIP(), []int{6}
  356. }
  357. func (x *UserChatInfo) GetPersonId() string {
  358. if x != nil {
  359. return x.PersonId
  360. }
  361. return ""
  362. }
  363. func (x *UserChatInfo) GetUnreadNum() int64 {
  364. if x != nil {
  365. return x.UnreadNum
  366. }
  367. return 0
  368. }
  369. func (x *UserChatInfo) GetLastContent() string {
  370. if x != nil {
  371. return x.LastContent
  372. }
  373. return ""
  374. }
  375. func (x *UserChatInfo) GetLastTime() int64 {
  376. if x != nil {
  377. return x.LastTime
  378. }
  379. return 0
  380. }
  381. func (x *UserChatInfo) GetLikeability() int64 {
  382. if x != nil {
  383. return x.Likeability
  384. }
  385. return 0
  386. }
  387. func (x *UserChatInfo) GetSex() int64 {
  388. if x != nil {
  389. return x.Sex
  390. }
  391. return 0
  392. }
  393. func (x *UserChatInfo) GetAvatarUrl() string {
  394. if x != nil {
  395. return x.AvatarUrl
  396. }
  397. return ""
  398. }
  399. func (x *UserChatInfo) GetNickname() string {
  400. if x != nil {
  401. return x.Nickname
  402. }
  403. return ""
  404. }
  405. func (x *UserChatInfo) GetAge() int64 {
  406. if x != nil {
  407. return x.Age
  408. }
  409. return 0
  410. }
  411. func (x *UserChatInfo) GetRoomId() int64 {
  412. if x != nil {
  413. return x.RoomId
  414. }
  415. return 0
  416. }
  417. type UserInfo struct {
  418. state protoimpl.MessageState
  419. sizeCache protoimpl.SizeCache
  420. unknownFields protoimpl.UnknownFields
  421. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  422. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  423. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  424. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  425. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  426. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  427. Credit int64 `protobuf:"varint,7,opt,name=credit,proto3" json:"credit"` // 积分
  428. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  429. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  430. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  431. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  432. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  433. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  434. UserId int64 `protobuf:"varint,14,opt,name=userId,proto3" json:"userId"` // 用户ID
  435. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  436. }
  437. func (x *UserInfo) Reset() {
  438. *x = UserInfo{}
  439. if protoimpl.UnsafeEnabled {
  440. mi := &file_user_proto_msgTypes[7]
  441. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  442. ms.StoreMessageInfo(mi)
  443. }
  444. }
  445. func (x *UserInfo) String() string {
  446. return protoimpl.X.MessageStringOf(x)
  447. }
  448. func (*UserInfo) ProtoMessage() {}
  449. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  450. mi := &file_user_proto_msgTypes[7]
  451. if protoimpl.UnsafeEnabled && x != nil {
  452. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  453. if ms.LoadMessageInfo() == nil {
  454. ms.StoreMessageInfo(mi)
  455. }
  456. return ms
  457. }
  458. return mi.MessageOf(x)
  459. }
  460. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  461. func (*UserInfo) Descriptor() ([]byte, []int) {
  462. return file_user_proto_rawDescGZIP(), []int{7}
  463. }
  464. func (x *UserInfo) GetId() string {
  465. if x != nil {
  466. return x.Id
  467. }
  468. return ""
  469. }
  470. func (x *UserInfo) GetNickname() string {
  471. if x != nil {
  472. return x.Nickname
  473. }
  474. return ""
  475. }
  476. func (x *UserInfo) GetAvatarUrl() string {
  477. if x != nil {
  478. return x.AvatarUrl
  479. }
  480. return ""
  481. }
  482. func (x *UserInfo) GetAge() int64 {
  483. if x != nil {
  484. return x.Age
  485. }
  486. return 0
  487. }
  488. func (x *UserInfo) GetSex() int64 {
  489. if x != nil {
  490. return x.Sex
  491. }
  492. return 0
  493. }
  494. func (x *UserInfo) GetConstellation() string {
  495. if x != nil {
  496. return x.Constellation
  497. }
  498. return ""
  499. }
  500. func (x *UserInfo) GetCredit() int64 {
  501. if x != nil {
  502. return x.Credit
  503. }
  504. return 0
  505. }
  506. func (x *UserInfo) GetTagList() []int64 {
  507. if x != nil {
  508. return x.TagList
  509. }
  510. return nil
  511. }
  512. func (x *UserInfo) GetSignature() string {
  513. if x != nil {
  514. return x.Signature
  515. }
  516. return ""
  517. }
  518. func (x *UserInfo) GetIntroduceVoice() string {
  519. if x != nil {
  520. return x.IntroduceVoice
  521. }
  522. return ""
  523. }
  524. func (x *UserInfo) GetProvince() string {
  525. if x != nil {
  526. return x.Province
  527. }
  528. return ""
  529. }
  530. func (x *UserInfo) GetCity() string {
  531. if x != nil {
  532. return x.City
  533. }
  534. return ""
  535. }
  536. func (x *UserInfo) GetArea() string {
  537. if x != nil {
  538. return x.Area
  539. }
  540. return ""
  541. }
  542. func (x *UserInfo) GetUserId() int64 {
  543. if x != nil {
  544. return x.UserId
  545. }
  546. return 0
  547. }
  548. func (x *UserInfo) GetIsBlack() bool {
  549. if x != nil {
  550. return x.IsBlack
  551. }
  552. return false
  553. }
  554. type KeyRequest struct {
  555. state protoimpl.MessageState
  556. sizeCache protoimpl.SizeCache
  557. unknownFields protoimpl.UnknownFields
  558. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  559. }
  560. func (x *KeyRequest) Reset() {
  561. *x = KeyRequest{}
  562. if protoimpl.UnsafeEnabled {
  563. mi := &file_user_proto_msgTypes[8]
  564. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  565. ms.StoreMessageInfo(mi)
  566. }
  567. }
  568. func (x *KeyRequest) String() string {
  569. return protoimpl.X.MessageStringOf(x)
  570. }
  571. func (*KeyRequest) ProtoMessage() {}
  572. func (x *KeyRequest) ProtoReflect() protoreflect.Message {
  573. mi := &file_user_proto_msgTypes[8]
  574. if protoimpl.UnsafeEnabled && x != nil {
  575. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  576. if ms.LoadMessageInfo() == nil {
  577. ms.StoreMessageInfo(mi)
  578. }
  579. return ms
  580. }
  581. return mi.MessageOf(x)
  582. }
  583. // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead.
  584. func (*KeyRequest) Descriptor() ([]byte, []int) {
  585. return file_user_proto_rawDescGZIP(), []int{8}
  586. }
  587. func (x *KeyRequest) GetKey() string {
  588. if x != nil {
  589. return x.Key
  590. }
  591. return ""
  592. }
  593. type CreatePayRequest struct {
  594. state protoimpl.MessageState
  595. sizeCache protoimpl.SizeCache
  596. unknownFields protoimpl.UnknownFields
  597. Money int64 `protobuf:"varint,1,opt,name=money,proto3" json:"money"` // 支付金额 单位 分
  598. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  599. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
  600. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"`
  601. Attach string `protobuf:"bytes,5,opt,name=attach,proto3" json:"attach"`
  602. }
  603. func (x *CreatePayRequest) Reset() {
  604. *x = CreatePayRequest{}
  605. if protoimpl.UnsafeEnabled {
  606. mi := &file_user_proto_msgTypes[9]
  607. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  608. ms.StoreMessageInfo(mi)
  609. }
  610. }
  611. func (x *CreatePayRequest) String() string {
  612. return protoimpl.X.MessageStringOf(x)
  613. }
  614. func (*CreatePayRequest) ProtoMessage() {}
  615. func (x *CreatePayRequest) ProtoReflect() protoreflect.Message {
  616. mi := &file_user_proto_msgTypes[9]
  617. if protoimpl.UnsafeEnabled && x != nil {
  618. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  619. if ms.LoadMessageInfo() == nil {
  620. ms.StoreMessageInfo(mi)
  621. }
  622. return ms
  623. }
  624. return mi.MessageOf(x)
  625. }
  626. // Deprecated: Use CreatePayRequest.ProtoReflect.Descriptor instead.
  627. func (*CreatePayRequest) Descriptor() ([]byte, []int) {
  628. return file_user_proto_rawDescGZIP(), []int{9}
  629. }
  630. func (x *CreatePayRequest) GetMoney() int64 {
  631. if x != nil {
  632. return x.Money
  633. }
  634. return 0
  635. }
  636. func (x *CreatePayRequest) GetType() string {
  637. if x != nil {
  638. return x.Type
  639. }
  640. return ""
  641. }
  642. func (x *CreatePayRequest) GetOpenId() string {
  643. if x != nil {
  644. return x.OpenId
  645. }
  646. return ""
  647. }
  648. func (x *CreatePayRequest) GetDescription() string {
  649. if x != nil {
  650. return x.Description
  651. }
  652. return ""
  653. }
  654. func (x *CreatePayRequest) GetAttach() string {
  655. if x != nil {
  656. return x.Attach
  657. }
  658. return ""
  659. }
  660. type PayInfo struct {
  661. state protoimpl.MessageState
  662. sizeCache protoimpl.SizeCache
  663. unknownFields protoimpl.UnknownFields
  664. PayInfo *structpb.Value `protobuf:"bytes,1,opt,name=payInfo,proto3" json:"payInfo"`
  665. OrderId int64 `protobuf:"varint,2,opt,name=orderId,proto3" json:"orderId"`
  666. }
  667. func (x *PayInfo) Reset() {
  668. *x = PayInfo{}
  669. if protoimpl.UnsafeEnabled {
  670. mi := &file_user_proto_msgTypes[10]
  671. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  672. ms.StoreMessageInfo(mi)
  673. }
  674. }
  675. func (x *PayInfo) String() string {
  676. return protoimpl.X.MessageStringOf(x)
  677. }
  678. func (*PayInfo) ProtoMessage() {}
  679. func (x *PayInfo) ProtoReflect() protoreflect.Message {
  680. mi := &file_user_proto_msgTypes[10]
  681. if protoimpl.UnsafeEnabled && x != nil {
  682. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  683. if ms.LoadMessageInfo() == nil {
  684. ms.StoreMessageInfo(mi)
  685. }
  686. return ms
  687. }
  688. return mi.MessageOf(x)
  689. }
  690. // Deprecated: Use PayInfo.ProtoReflect.Descriptor instead.
  691. func (*PayInfo) Descriptor() ([]byte, []int) {
  692. return file_user_proto_rawDescGZIP(), []int{10}
  693. }
  694. func (x *PayInfo) GetPayInfo() *structpb.Value {
  695. if x != nil {
  696. return x.PayInfo
  697. }
  698. return nil
  699. }
  700. func (x *PayInfo) GetOrderId() int64 {
  701. if x != nil {
  702. return x.OrderId
  703. }
  704. return 0
  705. }
  706. type PayOrderInfo struct {
  707. state protoimpl.MessageState
  708. sizeCache protoimpl.SizeCache
  709. unknownFields protoimpl.UnknownFields
  710. UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID"`
  711. OrderID int64 `protobuf:"varint,2,opt,name=orderID,proto3" json:"orderID"` // 订单的唯一ID
  712. Money int64 `protobuf:"varint,3,opt,name=money,proto3" json:"money"` // 支付金额 ,单位分
  713. Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type"` // 类型
  714. TransactionID string `protobuf:"bytes,5,opt,name=TransactionID,proto3" json:"TransactionID"`
  715. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId"`
  716. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"`
  717. Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status"` // 状态
  718. PayTime int64 `protobuf:"varint,10,opt,name=payTime,proto3" json:"payTime"` // 支付时间
  719. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  720. }
  721. func (x *PayOrderInfo) Reset() {
  722. *x = PayOrderInfo{}
  723. if protoimpl.UnsafeEnabled {
  724. mi := &file_user_proto_msgTypes[11]
  725. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  726. ms.StoreMessageInfo(mi)
  727. }
  728. }
  729. func (x *PayOrderInfo) String() string {
  730. return protoimpl.X.MessageStringOf(x)
  731. }
  732. func (*PayOrderInfo) ProtoMessage() {}
  733. func (x *PayOrderInfo) ProtoReflect() protoreflect.Message {
  734. mi := &file_user_proto_msgTypes[11]
  735. if protoimpl.UnsafeEnabled && x != nil {
  736. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  737. if ms.LoadMessageInfo() == nil {
  738. ms.StoreMessageInfo(mi)
  739. }
  740. return ms
  741. }
  742. return mi.MessageOf(x)
  743. }
  744. // Deprecated: Use PayOrderInfo.ProtoReflect.Descriptor instead.
  745. func (*PayOrderInfo) Descriptor() ([]byte, []int) {
  746. return file_user_proto_rawDescGZIP(), []int{11}
  747. }
  748. func (x *PayOrderInfo) GetUserID() string {
  749. if x != nil {
  750. return x.UserID
  751. }
  752. return ""
  753. }
  754. func (x *PayOrderInfo) GetOrderID() int64 {
  755. if x != nil {
  756. return x.OrderID
  757. }
  758. return 0
  759. }
  760. func (x *PayOrderInfo) GetMoney() int64 {
  761. if x != nil {
  762. return x.Money
  763. }
  764. return 0
  765. }
  766. func (x *PayOrderInfo) GetType() string {
  767. if x != nil {
  768. return x.Type
  769. }
  770. return ""
  771. }
  772. func (x *PayOrderInfo) GetTransactionID() string {
  773. if x != nil {
  774. return x.TransactionID
  775. }
  776. return ""
  777. }
  778. func (x *PayOrderInfo) GetOpenId() string {
  779. if x != nil {
  780. return x.OpenId
  781. }
  782. return ""
  783. }
  784. func (x *PayOrderInfo) GetDescription() string {
  785. if x != nil {
  786. return x.Description
  787. }
  788. return ""
  789. }
  790. func (x *PayOrderInfo) GetStatus() string {
  791. if x != nil {
  792. return x.Status
  793. }
  794. return ""
  795. }
  796. func (x *PayOrderInfo) GetPayTime() int64 {
  797. if x != nil {
  798. return x.PayTime
  799. }
  800. return 0
  801. }
  802. func (x *PayOrderInfo) GetCreateTime() int64 {
  803. if x != nil {
  804. return x.CreateTime
  805. }
  806. return 0
  807. }
  808. type PayOrderList struct {
  809. state protoimpl.MessageState
  810. sizeCache protoimpl.SizeCache
  811. unknownFields protoimpl.UnknownFields
  812. List []*PayOrderInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  813. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  814. }
  815. func (x *PayOrderList) Reset() {
  816. *x = PayOrderList{}
  817. if protoimpl.UnsafeEnabled {
  818. mi := &file_user_proto_msgTypes[12]
  819. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  820. ms.StoreMessageInfo(mi)
  821. }
  822. }
  823. func (x *PayOrderList) String() string {
  824. return protoimpl.X.MessageStringOf(x)
  825. }
  826. func (*PayOrderList) ProtoMessage() {}
  827. func (x *PayOrderList) ProtoReflect() protoreflect.Message {
  828. mi := &file_user_proto_msgTypes[12]
  829. if protoimpl.UnsafeEnabled && x != nil {
  830. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  831. if ms.LoadMessageInfo() == nil {
  832. ms.StoreMessageInfo(mi)
  833. }
  834. return ms
  835. }
  836. return mi.MessageOf(x)
  837. }
  838. // Deprecated: Use PayOrderList.ProtoReflect.Descriptor instead.
  839. func (*PayOrderList) Descriptor() ([]byte, []int) {
  840. return file_user_proto_rawDescGZIP(), []int{12}
  841. }
  842. func (x *PayOrderList) GetList() []*PayOrderInfo {
  843. if x != nil {
  844. return x.List
  845. }
  846. return nil
  847. }
  848. func (x *PayOrderList) GetNextId() int64 {
  849. if x != nil {
  850. return x.NextId
  851. }
  852. return 0
  853. }
  854. type FindPayOrderListRequest struct {
  855. state protoimpl.MessageState
  856. sizeCache protoimpl.SizeCache
  857. unknownFields protoimpl.UnknownFields
  858. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  859. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  860. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"`
  861. }
  862. func (x *FindPayOrderListRequest) Reset() {
  863. *x = FindPayOrderListRequest{}
  864. if protoimpl.UnsafeEnabled {
  865. mi := &file_user_proto_msgTypes[13]
  866. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  867. ms.StoreMessageInfo(mi)
  868. }
  869. }
  870. func (x *FindPayOrderListRequest) String() string {
  871. return protoimpl.X.MessageStringOf(x)
  872. }
  873. func (*FindPayOrderListRequest) ProtoMessage() {}
  874. func (x *FindPayOrderListRequest) ProtoReflect() protoreflect.Message {
  875. mi := &file_user_proto_msgTypes[13]
  876. if protoimpl.UnsafeEnabled && x != nil {
  877. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  878. if ms.LoadMessageInfo() == nil {
  879. ms.StoreMessageInfo(mi)
  880. }
  881. return ms
  882. }
  883. return mi.MessageOf(x)
  884. }
  885. // Deprecated: Use FindPayOrderListRequest.ProtoReflect.Descriptor instead.
  886. func (*FindPayOrderListRequest) Descriptor() ([]byte, []int) {
  887. return file_user_proto_rawDescGZIP(), []int{13}
  888. }
  889. func (x *FindPayOrderListRequest) GetNextId() int64 {
  890. if x != nil {
  891. return x.NextId
  892. }
  893. return 0
  894. }
  895. func (x *FindPayOrderListRequest) GetOffset() int64 {
  896. if x != nil {
  897. return x.Offset
  898. }
  899. return 0
  900. }
  901. func (x *FindPayOrderListRequest) GetStatus() string {
  902. if x != nil {
  903. return x.Status
  904. }
  905. return ""
  906. }
  907. type PayCallbackReply struct {
  908. state protoimpl.MessageState
  909. sizeCache protoimpl.SizeCache
  910. unknownFields protoimpl.UnknownFields
  911. Result []byte `protobuf:"bytes,1,opt,name=result,proto3" json:"result"`
  912. }
  913. func (x *PayCallbackReply) Reset() {
  914. *x = PayCallbackReply{}
  915. if protoimpl.UnsafeEnabled {
  916. mi := &file_user_proto_msgTypes[14]
  917. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  918. ms.StoreMessageInfo(mi)
  919. }
  920. }
  921. func (x *PayCallbackReply) String() string {
  922. return protoimpl.X.MessageStringOf(x)
  923. }
  924. func (*PayCallbackReply) ProtoMessage() {}
  925. func (x *PayCallbackReply) ProtoReflect() protoreflect.Message {
  926. mi := &file_user_proto_msgTypes[14]
  927. if protoimpl.UnsafeEnabled && x != nil {
  928. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  929. if ms.LoadMessageInfo() == nil {
  930. ms.StoreMessageInfo(mi)
  931. }
  932. return ms
  933. }
  934. return mi.MessageOf(x)
  935. }
  936. // Deprecated: Use PayCallbackReply.ProtoReflect.Descriptor instead.
  937. func (*PayCallbackReply) Descriptor() ([]byte, []int) {
  938. return file_user_proto_rawDescGZIP(), []int{14}
  939. }
  940. func (x *PayCallbackReply) GetResult() []byte {
  941. if x != nil {
  942. return x.Result
  943. }
  944. return nil
  945. }
  946. var File_user_proto protoreflect.FileDescriptor
  947. var file_user_proto_rawDesc = []byte{
  948. 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  949. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
  950. 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
  951. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  952. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  953. 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  954. 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  955. 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70,
  956. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  957. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x61,
  958. 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2f, 0x73, 0x74,
  959. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x45,
  960. 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65,
  961. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  962. 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  963. 0x03, 0x52, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c,
  964. 0x61, 0x74, 0x65, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  965. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  966. 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52,
  967. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73,
  968. 0x74, 0x22, 0xa4, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e,
  969. 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
  970. 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  971. 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64,
  972. 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74,
  973. 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x04,
  974. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74,
  975. 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  976. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  977. 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
  978. 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x65, 0x0a, 0x11, 0x49, 0x6e, 0x66, 0x6f,
  979. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x30, 0x0a,
  980. 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  981. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69, 0x73, 0x46, 0x69,
  982. 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  983. 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20,
  984. 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x22,
  985. 0x35, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e,
  986. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16,
  987. 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  988. 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x5b, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69,
  989. 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  990. 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e,
  991. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61,
  992. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e,
  993. 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78,
  994. 0x74, 0x49, 0x64, 0x22, 0x9e, 0x02, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74,
  995. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  996. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  997. 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20,
  998. 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20,
  999. 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20,
  1000. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  1001. 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
  1002. 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b,
  1003. 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28,
  1004. 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x10,
  1005. 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78,
  1006. 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x09, 0x20,
  1007. 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1a,
  1008. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  1009. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67,
  1010. 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06,
  1011. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f,
  1012. 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x8c, 0x03, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
  1013. 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
  1014. 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  1015. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a,
  1016. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  1017. 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61,
  1018. 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a,
  1019. 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12,
  1020. 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1021. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c,
  1022. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18,
  1023. 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x18, 0x0a,
  1024. 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07,
  1025. 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61,
  1026. 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e,
  1027. 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75,
  1028. 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69,
  1029. 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a,
  1030. 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52,
  1031. 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74,
  1032. 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a,
  1033. 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65,
  1034. 0x61, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28,
  1035. 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x42,
  1036. 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x42, 0x6c,
  1037. 0x61, 0x63, 0x6b, 0x22, 0x1e, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1038. 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  1039. 0x6b, 0x65, 0x79, 0x22, 0x8e, 0x01, 0x0a, 0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61,
  1040. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65,
  1041. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12,
  1042. 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79,
  1043. 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01,
  1044. 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65,
  1045. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  1046. 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06,
  1047. 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x74,
  1048. 0x74, 0x61, 0x63, 0x68, 0x22, 0x55, 0x0a, 0x07, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  1049. 0x30, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  1050. 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1051. 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66,
  1052. 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
  1053. 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x22, 0x9c, 0x02, 0x0a, 0x0c,
  1054. 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06,
  1055. 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73,
  1056. 0x65, 0x72, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18,
  1057. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x14,
  1058. 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d,
  1059. 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01,
  1060. 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x54, 0x72, 0x61, 0x6e,
  1061. 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  1062. 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x16,
  1063. 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1064. 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
  1065. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73,
  1066. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
  1067. 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  1068. 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
  1069. 0x03, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72,
  1070. 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  1071. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x52, 0x0a, 0x0c, 0x50, 0x61,
  1072. 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69,
  1073. 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  1074. 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  1075. 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  1076. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x61,
  1077. 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69,
  1078. 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78,
  1079. 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  1080. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
  1081. 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61,
  1082. 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
  1083. 0x73, 0x22, 0x2a, 0x0a, 0x10, 0x50, 0x61, 0x79, 0x43, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b,
  1084. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18,
  1085. 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x32, 0xe2, 0x24,
  1086. 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x7e, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  1087. 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  1088. 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64,
  1089. 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
  1090. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1091. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82,
  1092. 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1093. 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  1094. 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x54, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  1095. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1096. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x12, 0x2e,
  1097. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
  1098. 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1099. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x40, 0x0a, 0x0c,
  1100. 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61,
  1101. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1102. 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1103. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x69,
  1104. 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12,
  1105. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e,
  1106. 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1107. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1108. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1109. 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64,
  1110. 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0e, 0x43, 0x68, 0x65,
  1111. 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70,
  1112. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68,
  1113. 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  1114. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1115. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14,
  1116. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63,
  1117. 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1e, 0x43, 0x68, 0x65, 0x63,
  1118. 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65,
  1119. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69,
  1120. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  1121. 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  1122. 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1123. 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70,
  1124. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f,
  1125. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2f, 0x72,
  1126. 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x6e,
  1127. 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73,
  1128. 0x6f, 0x6e, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1129. 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f,
  1130. 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68,
  1131. 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3,
  1132. 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  1133. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x70,
  1134. 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63,
  1135. 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  1136. 0x72, 0x2e, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61,
  1137. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69,
  1138. 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20,
  1139. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1140. 0x72, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a,
  1141. 0x12, 0x5b, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49,
  1142. 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1143. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61,
  1144. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e,
  1145. 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69,
  1146. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x45, 0x0a,
  1147. 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12,
  1148. 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  1149. 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1150. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52,
  1151. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b,
  1152. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1153. 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1154. 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  1155. 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69,
  1156. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22,
  1157. 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f,
  1158. 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c,
  1159. 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1160. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
  1161. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69,
  1162. 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b,
  1163. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93,
  1164. 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69,
  1165. 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x0d, 0x46, 0x69,
  1166. 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70,
  1167. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67,
  1168. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73,
  1169. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e,
  1170. 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f,
  1171. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1172. 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x3a, 0x01, 0x2a, 0x12,
  1173. 0x86, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69,
  1174. 0x6b, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73,
  1175. 0x61, 0x67, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1176. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70,
  1177. 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f,
  1178. 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52,
  1179. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61,
  1180. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x6c, 0x69, 0x6b, 0x65,
  1181. 0x5f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x57, 0x78, 0x43, 0x6f,
  1182. 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1183. 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1184. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73,
  1185. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f,
  1186. 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73, 0x64, 0x6b, 0x2f, 0x63, 0x6f, 0x6e,
  1187. 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61,
  1188. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65, 0x78, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69,
  1189. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18,
  1190. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c,
  1191. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17,
  1192. 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  1193. 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f,
  1194. 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1195. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32,
  1196. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1197. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f,
  1198. 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93,
  1199. 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69,
  1200. 0x73, 0x74, 0x2f, 0x6f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a,
  1201. 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e,
  1202. 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70,
  1203. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67,
  1204. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  1205. 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74,
  1206. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1207. 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73,
  1208. 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x3a, 0x01, 0x2a,
  1209. 0x12, 0x7d, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65,
  1210. 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61,
  1211. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61,
  1212. 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1213. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61,
  1214. 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93,
  1215. 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69,
  1216. 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12,
  1217. 0x6f, 0x0a, 0x1b, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1218. 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x12, 0x17,
  1219. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  1220. 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1221. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69,
  1222. 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d,
  1223. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a,
  1224. 0x12, 0x5d, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e,
  1225. 0x63, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1226. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69,
  1227. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63,
  1228. 0x65, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1229. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  1230. 0x69, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75,
  1231. 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1232. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1233. 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d,
  1234. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4,
  1235. 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c,
  1236. 0x6f, 0x6f, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x12, 0x46, 0x69,
  1237. 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74,
  1238. 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69,
  1239. 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74,
  1240. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1241. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c,
  1242. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a,
  1243. 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74,
  1244. 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x46, 0x69,
  1245. 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x2e,
  1246. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43,
  1247. 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1248. 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  1249. 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93,
  1250. 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68,
  1251. 0x61, 0x74, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6d, 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x59,
  1252. 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12,
  1253. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  1254. 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1255. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1b, 0x82, 0xd3,
  1256. 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  1257. 0x69, 0x73, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x15, 0x55, 0x73, 0x65,
  1258. 0x72, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  1259. 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1260. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1261. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1262. 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69,
  1263. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  1264. 0x6e, 0x2f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x15, 0x55,
  1265. 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
  1266. 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1267. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61,
  1268. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  1269. 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1270. 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66,
  1271. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a,
  1272. 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66,
  1273. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12, 0x16, 0x2e,
  1274. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1275. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1276. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82,
  1277. 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1278. 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x77, 0x61,
  1279. 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74,
  1280. 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1281. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  1282. 0x6d, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  1283. 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4,
  1284. 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63,
  1285. 0x68, 0x61, 0x74, 0x2f, 0x63, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x56, 0x0a, 0x08, 0x55,
  1286. 0x73, 0x65, 0x72, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1287. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
  1288. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1289. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13,
  1290. 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65,
  1291. 0x3a, 0x01, 0x2a, 0x12, 0x5a, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b,
  1292. 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  1293. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1294. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1295. 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69,
  1296. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  1297. 0x65, 0x0a, 0x10, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x63,
  1298. 0x6f, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1299. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67,
  1300. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  1301. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61,
  1302. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x75, 0x6e, 0x6c,
  1303. 0x6f, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x46, 0x0a, 0x13, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73,
  1304. 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e,
  1305. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  1306. 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1307. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x64,
  1308. 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65,
  1309. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65,
  1310. 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1311. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22,
  1312. 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1313. 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x79, 0x70,
  1314. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74,
  1315. 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1316. 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63,
  1317. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1318. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c, 0x69,
  1319. 0x73, 0x74, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69,
  1320. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63,
  1321. 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0a, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d,
  1322. 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52,
  1323. 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1324. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74,
  1325. 0x4c, 0x69, 0x73, 0x74, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61,
  1326. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d,
  1327. 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x12, 0x52,
  1328. 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77, 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1329. 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52,
  1330. 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a, 0x1a,
  1331. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d,
  1332. 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93,
  1333. 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69,
  1334. 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a,
  1335. 0x01, 0x2a, 0x12, 0x68, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69,
  1336. 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1337. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70,
  1338. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74,
  1339. 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19,
  1340. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d,
  1341. 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10,
  1342. 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74,
  1343. 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f,
  1344. 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  1345. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  1346. 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70,
  1347. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b,
  1348. 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54,
  1349. 0x6f, 0x70, 0x69, 0x63, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1350. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  1351. 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  1352. 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3,
  1353. 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  1354. 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a,
  1355. 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72,
  1356. 0x67, 0x65, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  1357. 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1358. 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79,
  1359. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61,
  1360. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65,
  1361. 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x68, 0x61,
  1362. 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1363. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
  1364. 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61,
  1365. 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22,
  1366. 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61,
  1367. 0x72, 0x67, 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0b, 0x46,
  1368. 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69,
  1369. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64,
  1370. 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  1371. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65,
  1372. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f,
  1373. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x73,
  1374. 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1d,
  1375. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f,
  1376. 0x72, 0x74, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  1377. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1378. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f,
  1379. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a,
  1380. 0x01, 0x2a, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x50, 0x01,
  1381. 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d,
  1382. 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1383. 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x3b, 0x75, 0x73, 0x65,
  1384. 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1385. }
  1386. var (
  1387. file_user_proto_rawDescOnce sync.Once
  1388. file_user_proto_rawDescData = file_user_proto_rawDesc
  1389. )
  1390. func file_user_proto_rawDescGZIP() []byte {
  1391. file_user_proto_rawDescOnce.Do(func() {
  1392. file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)
  1393. })
  1394. return file_user_proto_rawDescData
  1395. }
  1396. var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 15)
  1397. var file_user_proto_goTypes = []interface{}{
  1398. (*UserRechargeRequest)(nil), // 0: api.user.UserRechargeRequest
  1399. (*RechargeList)(nil), // 1: api.user.RechargeList
  1400. (*RechargeInfo)(nil), // 2: api.user.RechargeInfo
  1401. (*InformationStatus)(nil), // 3: api.user.InformationStatus
  1402. (*UserBalance)(nil), // 4: api.user.UserBalance
  1403. (*UserFindChatListReply)(nil), // 5: api.user.UserFindChatListReply
  1404. (*UserChatInfo)(nil), // 6: api.user.UserChatInfo
  1405. (*UserInfo)(nil), // 7: api.user.UserInfo
  1406. (*KeyRequest)(nil), // 8: api.user.KeyRequest
  1407. (*CreatePayRequest)(nil), // 9: api.user.CreatePayRequest
  1408. (*PayInfo)(nil), // 10: api.user.PayInfo
  1409. (*PayOrderInfo)(nil), // 11: api.user.PayOrderInfo
  1410. (*PayOrderList)(nil), // 12: api.user.PayOrderList
  1411. (*FindPayOrderListRequest)(nil), // 13: api.user.FindPayOrderListRequest
  1412. (*PayCallbackReply)(nil), // 14: api.user.PayCallbackReply
  1413. (*structpb.Value)(nil), // 15: google.protobuf.Value
  1414. (*common.UpdateInformationRequest)(nil), // 16: api.common.UpdateInformationRequest
  1415. (*emptypb.Empty)(nil), // 17: google.protobuf.Empty
  1416. (*common.PersonIDParam)(nil), // 18: api.common.PersonIDParam
  1417. (*common.SendPhoneCodeRequest)(nil), // 19: api.common.SendPhoneCodeRequest
  1418. (*common.CheckPhoneCodeRequest)(nil), // 20: api.common.CheckPhoneCodeRequest
  1419. (*common.PartnerIDParam)(nil), // 21: api.common.PartnerIDParam
  1420. (*common.CreateChatRoomParam)(nil), // 22: api.common.CreateChatRoomParam
  1421. (*common.PersonParam)(nil), // 23: api.common.PersonParam
  1422. (*common.PersonIDList)(nil), // 24: api.common.PersonIDList
  1423. (*common.ListPageRequest)(nil), // 25: api.common.ListPageRequest
  1424. (*common.WxConfReq)(nil), // 26: api.common.WxConfReq
  1425. (*common.SexReq)(nil), // 27: api.common.SexReq
  1426. (*common.ListPage2Request)(nil), // 28: api.common.ListPage2Request
  1427. (*common.FindChatRecordListRequest)(nil), // 29: api.common.FindChatRecordListRequest
  1428. (*common.FindChatRoomMsgRequest)(nil), // 30: api.common.FindChatRoomMsgRequest
  1429. (*common.MemeRequest)(nil), // 31: api.common.MemeRequest
  1430. (*common.FindChatTopicRequest)(nil), // 32: api.common.FindChatTopicRequest
  1431. (*common.RandomNum)(nil), // 33: api.common.RandomNum
  1432. (*common.RandomNumAndSex)(nil), // 34: api.common.RandomNumAndSex
  1433. (*common.RoomIDRequest)(nil), // 35: api.common.RoomIDRequest
  1434. (*common.ReportChatRequest)(nil), // 36: api.common.ReportChatRequest
  1435. (*common.PersonMsg)(nil), // 37: api.common.PersonMsg
  1436. (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 38: api.chat.CheckUserPartnerIsRelationshipReply
  1437. (*chat.RoomReply)(nil), // 39: api.chat.RoomReply
  1438. (*common.AddFriendMessageInfo)(nil), // 40: api.common.AddFriendMessageInfo
  1439. (*common.HomeInfo)(nil), // 41: api.common.HomeInfo
  1440. (*common.PersonDBReply)(nil), // 42: api.common.PersonDBReply
  1441. (*statistics.LookAndLikeListReply)(nil), // 43: api.statistics.LookAndLikeListReply
  1442. (*statistics.LookAndLikeMessageReply)(nil), // 44: api.statistics.LookAndLikeMessageReply
  1443. (*common.WxConfResponse)(nil), // 45: api.common.WxConfResponse
  1444. (*common.TagListReply)(nil), // 46: api.common.TagListReply
  1445. (*common.OnlinePersonListReply)(nil), // 47: api.common.OnlinePersonListReply
  1446. (*common.LookedAndLikedNum)(nil), // 48: api.common.LookedAndLikedNum
  1447. (*statistics.LookMessageReply)(nil), // 49: api.statistics.LookMessageReply
  1448. (*common.ChatRecordListReply)(nil), // 50: api.common.ChatRecordListReply
  1449. (*common.ChatRoomMsg)(nil), // 51: api.common.ChatRoomMsg
  1450. (*common.IsLike)(nil), // 52: api.common.IsLike
  1451. (*common.ChatCardInfo)(nil), // 53: api.common.ChatCardInfo
  1452. (*common.MemeList)(nil), // 54: api.common.MemeList
  1453. (*common.ChatTopicList)(nil), // 55: api.common.ChatTopicList
  1454. (*common.CommonTextList)(nil), // 56: api.common.CommonTextList
  1455. (*common.MemeTitleList)(nil), // 57: api.common.MemeTitleList
  1456. }
  1457. var file_user_proto_depIdxs = []int32{
  1458. 2, // 0: api.user.RechargeList.list:type_name -> api.user.RechargeInfo
  1459. 6, // 1: api.user.UserFindChatListReply.list:type_name -> api.user.UserChatInfo
  1460. 15, // 2: api.user.PayInfo.payInfo:type_name -> google.protobuf.Value
  1461. 11, // 3: api.user.PayOrderList.list:type_name -> api.user.PayOrderInfo
  1462. 16, // 4: api.user.User.UpdateUserInformation:input_type -> api.common.UpdateInformationRequest
  1463. 17, // 5: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
  1464. 18, // 6: api.user.User.GetUserDBMsg:input_type -> api.common.PersonIDParam
  1465. 19, // 7: api.user.User.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  1466. 20, // 8: api.user.User.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  1467. 21, // 9: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.common.PartnerIDParam
  1468. 22, // 10: api.user.User.CreateUserPersonRoom:input_type -> api.common.CreateChatRoomParam
  1469. 8, // 11: api.user.User.GetPartnerCircleInfo:input_type -> api.user.KeyRequest
  1470. 23, // 12: api.user.User.UserGetHomeInfo:input_type -> api.common.PersonParam
  1471. 24, // 13: api.user.User.FindUserDBList:input_type -> api.common.PersonIDList
  1472. 25, // 14: api.user.User.FindLookList:input_type -> api.common.ListPageRequest
  1473. 25, // 15: api.user.User.FindLikeList:input_type -> api.common.ListPageRequest
  1474. 25, // 16: api.user.User.FindLikedList:input_type -> api.common.ListPageRequest
  1475. 17, // 17: api.user.User.GetLookAndLikeStatisticsMessage:input_type -> google.protobuf.Empty
  1476. 26, // 18: api.user.User.WxConf:input_type -> api.common.WxConfReq
  1477. 27, // 19: api.user.User.FindTagListBySex:input_type -> api.common.SexReq
  1478. 28, // 20: api.user.User.FindOnlineList:input_type -> api.common.ListPage2Request
  1479. 25, // 21: api.user.User.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  1480. 25, // 22: api.user.User.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  1481. 23, // 23: api.user.User.UserGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  1482. 17, // 24: api.user.User.GetUserBalance:input_type -> google.protobuf.Empty
  1483. 17, // 25: api.user.User.GetUserLookNum:input_type -> google.protobuf.Empty
  1484. 29, // 26: api.user.User.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  1485. 30, // 27: api.user.User.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  1486. 23, // 28: api.user.User.GetUserIsLike:input_type -> api.common.PersonParam
  1487. 17, // 29: api.user.User.UserFinishInformation:input_type -> google.protobuf.Empty
  1488. 17, // 30: api.user.User.UserInformationStatus:input_type -> google.protobuf.Empty
  1489. 17, // 31: api.user.User.UserGetInformationAward:input_type -> google.protobuf.Empty
  1490. 23, // 32: api.user.User.UserGetChatCard:input_type -> api.common.PersonParam
  1491. 23, // 33: api.user.User.UserLike:input_type -> api.common.PersonParam
  1492. 23, // 34: api.user.User.UserUnLike:input_type -> api.common.PersonParam
  1493. 23, // 35: api.user.User.UnlockLookRecord:input_type -> api.common.PersonParam
  1494. 23, // 36: api.user.User.SendMsgReduceCredit:input_type -> api.common.PersonParam
  1495. 31, // 37: api.user.User.FindMemeByType:input_type -> api.common.MemeRequest
  1496. 32, // 38: api.user.User.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  1497. 33, // 39: api.user.User.RandomMeme:input_type -> api.common.RandomNum
  1498. 34, // 40: api.user.User.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  1499. 17, // 41: api.user.User.FindMemeTitle:input_type -> google.protobuf.Empty
  1500. 35, // 42: api.user.User.UserSetBlackChat:input_type -> api.common.RoomIDRequest
  1501. 17, // 43: api.user.User.FindChatTopicTitle:input_type -> google.protobuf.Empty
  1502. 0, // 44: api.user.User.UserRecharge:input_type -> api.user.UserRechargeRequest
  1503. 17, // 45: api.user.User.FindRechargeList:input_type -> google.protobuf.Empty
  1504. 13, // 46: api.user.User.FindPayList:input_type -> api.user.FindPayOrderListRequest
  1505. 36, // 47: api.user.User.Report:input_type -> api.common.ReportChatRequest
  1506. 17, // 48: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
  1507. 7, // 49: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
  1508. 37, // 50: api.user.User.GetUserDBMsg:output_type -> api.common.PersonMsg
  1509. 17, // 51: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
  1510. 17, // 52: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
  1511. 38, // 53: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  1512. 39, // 54: api.user.User.CreateUserPersonRoom:output_type -> api.chat.RoomReply
  1513. 40, // 55: api.user.User.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  1514. 41, // 56: api.user.User.UserGetHomeInfo:output_type -> api.common.HomeInfo
  1515. 42, // 57: api.user.User.FindUserDBList:output_type -> api.common.PersonDBReply
  1516. 43, // 58: api.user.User.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  1517. 43, // 59: api.user.User.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  1518. 43, // 60: api.user.User.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  1519. 44, // 61: api.user.User.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  1520. 45, // 62: api.user.User.WxConf:output_type -> api.common.WxConfResponse
  1521. 46, // 63: api.user.User.FindTagListBySex:output_type -> api.common.TagListReply
  1522. 47, // 64: api.user.User.FindOnlineList:output_type -> api.common.OnlinePersonListReply
  1523. 5, // 65: api.user.User.FindWithinSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  1524. 5, // 66: api.user.User.FindOverSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  1525. 48, // 67: api.user.User.UserGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  1526. 4, // 68: api.user.User.GetUserBalance:output_type -> api.user.UserBalance
  1527. 49, // 69: api.user.User.GetUserLookNum:output_type -> api.statistics.LookMessageReply
  1528. 50, // 70: api.user.User.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  1529. 51, // 71: api.user.User.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  1530. 52, // 72: api.user.User.GetUserIsLike:output_type -> api.common.IsLike
  1531. 17, // 73: api.user.User.UserFinishInformation:output_type -> google.protobuf.Empty
  1532. 3, // 74: api.user.User.UserInformationStatus:output_type -> api.user.InformationStatus
  1533. 17, // 75: api.user.User.UserGetInformationAward:output_type -> google.protobuf.Empty
  1534. 53, // 76: api.user.User.UserGetChatCard:output_type -> api.common.ChatCardInfo
  1535. 17, // 77: api.user.User.UserLike:output_type -> google.protobuf.Empty
  1536. 17, // 78: api.user.User.UserUnLike:output_type -> google.protobuf.Empty
  1537. 17, // 79: api.user.User.UnlockLookRecord:output_type -> google.protobuf.Empty
  1538. 17, // 80: api.user.User.SendMsgReduceCredit:output_type -> google.protobuf.Empty
  1539. 54, // 81: api.user.User.FindMemeByType:output_type -> api.common.MemeList
  1540. 55, // 82: api.user.User.FindChatTopic:output_type -> api.common.ChatTopicList
  1541. 56, // 83: api.user.User.RandomMeme:output_type -> api.common.CommonTextList
  1542. 56, // 84: api.user.User.RandomSwiftMessage:output_type -> api.common.CommonTextList
  1543. 57, // 85: api.user.User.FindMemeTitle:output_type -> api.common.MemeTitleList
  1544. 17, // 86: api.user.User.UserSetBlackChat:output_type -> google.protobuf.Empty
  1545. 57, // 87: api.user.User.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  1546. 10, // 88: api.user.User.UserRecharge:output_type -> api.user.PayInfo
  1547. 1, // 89: api.user.User.FindRechargeList:output_type -> api.user.RechargeList
  1548. 12, // 90: api.user.User.FindPayList:output_type -> api.user.PayOrderList
  1549. 17, // 91: api.user.User.Report:output_type -> google.protobuf.Empty
  1550. 48, // [48:92] is the sub-list for method output_type
  1551. 4, // [4:48] is the sub-list for method input_type
  1552. 4, // [4:4] is the sub-list for extension type_name
  1553. 4, // [4:4] is the sub-list for extension extendee
  1554. 0, // [0:4] is the sub-list for field type_name
  1555. }
  1556. func init() { file_user_proto_init() }
  1557. func file_user_proto_init() {
  1558. if File_user_proto != nil {
  1559. return
  1560. }
  1561. if !protoimpl.UnsafeEnabled {
  1562. file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1563. switch v := v.(*UserRechargeRequest); i {
  1564. case 0:
  1565. return &v.state
  1566. case 1:
  1567. return &v.sizeCache
  1568. case 2:
  1569. return &v.unknownFields
  1570. default:
  1571. return nil
  1572. }
  1573. }
  1574. file_user_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1575. switch v := v.(*RechargeList); i {
  1576. case 0:
  1577. return &v.state
  1578. case 1:
  1579. return &v.sizeCache
  1580. case 2:
  1581. return &v.unknownFields
  1582. default:
  1583. return nil
  1584. }
  1585. }
  1586. file_user_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1587. switch v := v.(*RechargeInfo); i {
  1588. case 0:
  1589. return &v.state
  1590. case 1:
  1591. return &v.sizeCache
  1592. case 2:
  1593. return &v.unknownFields
  1594. default:
  1595. return nil
  1596. }
  1597. }
  1598. file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1599. switch v := v.(*InformationStatus); i {
  1600. case 0:
  1601. return &v.state
  1602. case 1:
  1603. return &v.sizeCache
  1604. case 2:
  1605. return &v.unknownFields
  1606. default:
  1607. return nil
  1608. }
  1609. }
  1610. file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1611. switch v := v.(*UserBalance); i {
  1612. case 0:
  1613. return &v.state
  1614. case 1:
  1615. return &v.sizeCache
  1616. case 2:
  1617. return &v.unknownFields
  1618. default:
  1619. return nil
  1620. }
  1621. }
  1622. file_user_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1623. switch v := v.(*UserFindChatListReply); i {
  1624. case 0:
  1625. return &v.state
  1626. case 1:
  1627. return &v.sizeCache
  1628. case 2:
  1629. return &v.unknownFields
  1630. default:
  1631. return nil
  1632. }
  1633. }
  1634. file_user_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1635. switch v := v.(*UserChatInfo); i {
  1636. case 0:
  1637. return &v.state
  1638. case 1:
  1639. return &v.sizeCache
  1640. case 2:
  1641. return &v.unknownFields
  1642. default:
  1643. return nil
  1644. }
  1645. }
  1646. file_user_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1647. switch v := v.(*UserInfo); i {
  1648. case 0:
  1649. return &v.state
  1650. case 1:
  1651. return &v.sizeCache
  1652. case 2:
  1653. return &v.unknownFields
  1654. default:
  1655. return nil
  1656. }
  1657. }
  1658. file_user_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1659. switch v := v.(*KeyRequest); i {
  1660. case 0:
  1661. return &v.state
  1662. case 1:
  1663. return &v.sizeCache
  1664. case 2:
  1665. return &v.unknownFields
  1666. default:
  1667. return nil
  1668. }
  1669. }
  1670. file_user_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1671. switch v := v.(*CreatePayRequest); i {
  1672. case 0:
  1673. return &v.state
  1674. case 1:
  1675. return &v.sizeCache
  1676. case 2:
  1677. return &v.unknownFields
  1678. default:
  1679. return nil
  1680. }
  1681. }
  1682. file_user_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1683. switch v := v.(*PayInfo); i {
  1684. case 0:
  1685. return &v.state
  1686. case 1:
  1687. return &v.sizeCache
  1688. case 2:
  1689. return &v.unknownFields
  1690. default:
  1691. return nil
  1692. }
  1693. }
  1694. file_user_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1695. switch v := v.(*PayOrderInfo); i {
  1696. case 0:
  1697. return &v.state
  1698. case 1:
  1699. return &v.sizeCache
  1700. case 2:
  1701. return &v.unknownFields
  1702. default:
  1703. return nil
  1704. }
  1705. }
  1706. file_user_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1707. switch v := v.(*PayOrderList); i {
  1708. case 0:
  1709. return &v.state
  1710. case 1:
  1711. return &v.sizeCache
  1712. case 2:
  1713. return &v.unknownFields
  1714. default:
  1715. return nil
  1716. }
  1717. }
  1718. file_user_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1719. switch v := v.(*FindPayOrderListRequest); i {
  1720. case 0:
  1721. return &v.state
  1722. case 1:
  1723. return &v.sizeCache
  1724. case 2:
  1725. return &v.unknownFields
  1726. default:
  1727. return nil
  1728. }
  1729. }
  1730. file_user_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  1731. switch v := v.(*PayCallbackReply); i {
  1732. case 0:
  1733. return &v.state
  1734. case 1:
  1735. return &v.sizeCache
  1736. case 2:
  1737. return &v.unknownFields
  1738. default:
  1739. return nil
  1740. }
  1741. }
  1742. }
  1743. type x struct{}
  1744. out := protoimpl.TypeBuilder{
  1745. File: protoimpl.DescBuilder{
  1746. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1747. RawDescriptor: file_user_proto_rawDesc,
  1748. NumEnums: 0,
  1749. NumMessages: 15,
  1750. NumExtensions: 0,
  1751. NumServices: 1,
  1752. },
  1753. GoTypes: file_user_proto_goTypes,
  1754. DependencyIndexes: file_user_proto_depIdxs,
  1755. MessageInfos: file_user_proto_msgTypes,
  1756. }.Build()
  1757. File_user_proto = out.File
  1758. file_user_proto_rawDesc = nil
  1759. file_user_proto_goTypes = nil
  1760. file_user_proto_depIdxs = nil
  1761. }