user.pb.go 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883
  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 SendNewMessageUnreadReminderRequest struct {
  26. state protoimpl.MessageState
  27. sizeCache protoimpl.SizeCache
  28. unknownFields protoimpl.UnknownFields
  29. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  30. NameList []string `protobuf:"bytes,2,rep,name=nameList,proto3" json:"nameList"`
  31. }
  32. func (x *SendNewMessageUnreadReminderRequest) Reset() {
  33. *x = SendNewMessageUnreadReminderRequest{}
  34. if protoimpl.UnsafeEnabled {
  35. mi := &file_user_proto_msgTypes[0]
  36. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  37. ms.StoreMessageInfo(mi)
  38. }
  39. }
  40. func (x *SendNewMessageUnreadReminderRequest) String() string {
  41. return protoimpl.X.MessageStringOf(x)
  42. }
  43. func (*SendNewMessageUnreadReminderRequest) ProtoMessage() {}
  44. func (x *SendNewMessageUnreadReminderRequest) ProtoReflect() protoreflect.Message {
  45. mi := &file_user_proto_msgTypes[0]
  46. if protoimpl.UnsafeEnabled && x != nil {
  47. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  48. if ms.LoadMessageInfo() == nil {
  49. ms.StoreMessageInfo(mi)
  50. }
  51. return ms
  52. }
  53. return mi.MessageOf(x)
  54. }
  55. // Deprecated: Use SendNewMessageUnreadReminderRequest.ProtoReflect.Descriptor instead.
  56. func (*SendNewMessageUnreadReminderRequest) Descriptor() ([]byte, []int) {
  57. return file_user_proto_rawDescGZIP(), []int{0}
  58. }
  59. func (x *SendNewMessageUnreadReminderRequest) GetPersonId() string {
  60. if x != nil {
  61. return x.PersonId
  62. }
  63. return ""
  64. }
  65. func (x *SendNewMessageUnreadReminderRequest) GetNameList() []string {
  66. if x != nil {
  67. return x.NameList
  68. }
  69. return nil
  70. }
  71. type SendMsgReduceCreditReply struct {
  72. state protoimpl.MessageState
  73. sizeCache protoimpl.SizeCache
  74. unknownFields protoimpl.UnknownFields
  75. IsSendReminder bool `protobuf:"varint,1,opt,name=isSendReminder,proto3" json:"isSendReminder"` // 是否发送免费次数用完提醒
  76. }
  77. func (x *SendMsgReduceCreditReply) Reset() {
  78. *x = SendMsgReduceCreditReply{}
  79. if protoimpl.UnsafeEnabled {
  80. mi := &file_user_proto_msgTypes[1]
  81. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  82. ms.StoreMessageInfo(mi)
  83. }
  84. }
  85. func (x *SendMsgReduceCreditReply) String() string {
  86. return protoimpl.X.MessageStringOf(x)
  87. }
  88. func (*SendMsgReduceCreditReply) ProtoMessage() {}
  89. func (x *SendMsgReduceCreditReply) ProtoReflect() protoreflect.Message {
  90. mi := &file_user_proto_msgTypes[1]
  91. if protoimpl.UnsafeEnabled && x != nil {
  92. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  93. if ms.LoadMessageInfo() == nil {
  94. ms.StoreMessageInfo(mi)
  95. }
  96. return ms
  97. }
  98. return mi.MessageOf(x)
  99. }
  100. // Deprecated: Use SendMsgReduceCreditReply.ProtoReflect.Descriptor instead.
  101. func (*SendMsgReduceCreditReply) Descriptor() ([]byte, []int) {
  102. return file_user_proto_rawDescGZIP(), []int{1}
  103. }
  104. func (x *SendMsgReduceCreditReply) GetIsSendReminder() bool {
  105. if x != nil {
  106. return x.IsSendReminder
  107. }
  108. return false
  109. }
  110. type UserFreeNum struct {
  111. state protoimpl.MessageState
  112. sizeCache protoimpl.SizeCache
  113. unknownFields protoimpl.UnknownFields
  114. ReplyScripNum int64 `protobuf:"varint,1,opt,name=replyScripNum,proto3" json:"replyScripNum"` // 今日可免费回复纸条的次数
  115. CreateScripNum int64 `protobuf:"varint,2,opt,name=createScripNum,proto3" json:"createScripNum"` // 今日免费创建纸条的次数
  116. MatchingNum int64 `protobuf:"varint,3,opt,name=matchingNum,proto3" json:"matchingNum"` // 今日免费匹配数
  117. }
  118. func (x *UserFreeNum) Reset() {
  119. *x = UserFreeNum{}
  120. if protoimpl.UnsafeEnabled {
  121. mi := &file_user_proto_msgTypes[2]
  122. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  123. ms.StoreMessageInfo(mi)
  124. }
  125. }
  126. func (x *UserFreeNum) String() string {
  127. return protoimpl.X.MessageStringOf(x)
  128. }
  129. func (*UserFreeNum) ProtoMessage() {}
  130. func (x *UserFreeNum) ProtoReflect() protoreflect.Message {
  131. mi := &file_user_proto_msgTypes[2]
  132. if protoimpl.UnsafeEnabled && x != nil {
  133. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  134. if ms.LoadMessageInfo() == nil {
  135. ms.StoreMessageInfo(mi)
  136. }
  137. return ms
  138. }
  139. return mi.MessageOf(x)
  140. }
  141. // Deprecated: Use UserFreeNum.ProtoReflect.Descriptor instead.
  142. func (*UserFreeNum) Descriptor() ([]byte, []int) {
  143. return file_user_proto_rawDescGZIP(), []int{2}
  144. }
  145. func (x *UserFreeNum) GetReplyScripNum() int64 {
  146. if x != nil {
  147. return x.ReplyScripNum
  148. }
  149. return 0
  150. }
  151. func (x *UserFreeNum) GetCreateScripNum() int64 {
  152. if x != nil {
  153. return x.CreateScripNum
  154. }
  155. return 0
  156. }
  157. func (x *UserFreeNum) GetMatchingNum() int64 {
  158. if x != nil {
  159. return x.MatchingNum
  160. }
  161. return 0
  162. }
  163. type ReplyScripRequest struct {
  164. state protoimpl.MessageState
  165. sizeCache protoimpl.SizeCache
  166. unknownFields protoimpl.UnknownFields
  167. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  168. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  169. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  170. }
  171. func (x *ReplyScripRequest) Reset() {
  172. *x = ReplyScripRequest{}
  173. if protoimpl.UnsafeEnabled {
  174. mi := &file_user_proto_msgTypes[3]
  175. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  176. ms.StoreMessageInfo(mi)
  177. }
  178. }
  179. func (x *ReplyScripRequest) String() string {
  180. return protoimpl.X.MessageStringOf(x)
  181. }
  182. func (*ReplyScripRequest) ProtoMessage() {}
  183. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  184. mi := &file_user_proto_msgTypes[3]
  185. if protoimpl.UnsafeEnabled && x != nil {
  186. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  187. if ms.LoadMessageInfo() == nil {
  188. ms.StoreMessageInfo(mi)
  189. }
  190. return ms
  191. }
  192. return mi.MessageOf(x)
  193. }
  194. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  195. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  196. return file_user_proto_rawDescGZIP(), []int{3}
  197. }
  198. func (x *ReplyScripRequest) GetScripId() int64 {
  199. if x != nil {
  200. return x.ScripId
  201. }
  202. return 0
  203. }
  204. func (x *ReplyScripRequest) GetMessage() *common.Message {
  205. if x != nil {
  206. return x.Message
  207. }
  208. return nil
  209. }
  210. func (x *ReplyScripRequest) GetMsgType() string {
  211. if x != nil {
  212. return x.MsgType
  213. }
  214. return ""
  215. }
  216. type PersonLookScripRequest struct {
  217. state protoimpl.MessageState
  218. sizeCache protoimpl.SizeCache
  219. unknownFields protoimpl.UnknownFields
  220. ScripId int64 `protobuf:"varint,3,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  221. }
  222. func (x *PersonLookScripRequest) Reset() {
  223. *x = PersonLookScripRequest{}
  224. if protoimpl.UnsafeEnabled {
  225. mi := &file_user_proto_msgTypes[4]
  226. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  227. ms.StoreMessageInfo(mi)
  228. }
  229. }
  230. func (x *PersonLookScripRequest) String() string {
  231. return protoimpl.X.MessageStringOf(x)
  232. }
  233. func (*PersonLookScripRequest) ProtoMessage() {}
  234. func (x *PersonLookScripRequest) ProtoReflect() protoreflect.Message {
  235. mi := &file_user_proto_msgTypes[4]
  236. if protoimpl.UnsafeEnabled && x != nil {
  237. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  238. if ms.LoadMessageInfo() == nil {
  239. ms.StoreMessageInfo(mi)
  240. }
  241. return ms
  242. }
  243. return mi.MessageOf(x)
  244. }
  245. // Deprecated: Use PersonLookScripRequest.ProtoReflect.Descriptor instead.
  246. func (*PersonLookScripRequest) Descriptor() ([]byte, []int) {
  247. return file_user_proto_rawDescGZIP(), []int{4}
  248. }
  249. func (x *PersonLookScripRequest) GetScripId() int64 {
  250. if x != nil {
  251. return x.ScripId
  252. }
  253. return 0
  254. }
  255. type UserFindScripRequest struct {
  256. state protoimpl.MessageState
  257. sizeCache protoimpl.SizeCache
  258. unknownFields protoimpl.UnknownFields
  259. NextId int64 `protobuf:"varint,3,opt,name=nextId,proto3" json:"nextId"`
  260. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"`
  261. }
  262. func (x *UserFindScripRequest) Reset() {
  263. *x = UserFindScripRequest{}
  264. if protoimpl.UnsafeEnabled {
  265. mi := &file_user_proto_msgTypes[5]
  266. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  267. ms.StoreMessageInfo(mi)
  268. }
  269. }
  270. func (x *UserFindScripRequest) String() string {
  271. return protoimpl.X.MessageStringOf(x)
  272. }
  273. func (*UserFindScripRequest) ProtoMessage() {}
  274. func (x *UserFindScripRequest) ProtoReflect() protoreflect.Message {
  275. mi := &file_user_proto_msgTypes[5]
  276. if protoimpl.UnsafeEnabled && x != nil {
  277. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  278. if ms.LoadMessageInfo() == nil {
  279. ms.StoreMessageInfo(mi)
  280. }
  281. return ms
  282. }
  283. return mi.MessageOf(x)
  284. }
  285. // Deprecated: Use UserFindScripRequest.ProtoReflect.Descriptor instead.
  286. func (*UserFindScripRequest) Descriptor() ([]byte, []int) {
  287. return file_user_proto_rawDescGZIP(), []int{5}
  288. }
  289. func (x *UserFindScripRequest) GetNextId() int64 {
  290. if x != nil {
  291. return x.NextId
  292. }
  293. return 0
  294. }
  295. func (x *UserFindScripRequest) GetOffset() int64 {
  296. if x != nil {
  297. return x.Offset
  298. }
  299. return 0
  300. }
  301. type DeleteScripRequest struct {
  302. state protoimpl.MessageState
  303. sizeCache protoimpl.SizeCache
  304. unknownFields protoimpl.UnknownFields
  305. ScripId int64 `protobuf:"varint,1,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  306. }
  307. func (x *DeleteScripRequest) Reset() {
  308. *x = DeleteScripRequest{}
  309. if protoimpl.UnsafeEnabled {
  310. mi := &file_user_proto_msgTypes[6]
  311. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  312. ms.StoreMessageInfo(mi)
  313. }
  314. }
  315. func (x *DeleteScripRequest) String() string {
  316. return protoimpl.X.MessageStringOf(x)
  317. }
  318. func (*DeleteScripRequest) ProtoMessage() {}
  319. func (x *DeleteScripRequest) ProtoReflect() protoreflect.Message {
  320. mi := &file_user_proto_msgTypes[6]
  321. if protoimpl.UnsafeEnabled && x != nil {
  322. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  323. if ms.LoadMessageInfo() == nil {
  324. ms.StoreMessageInfo(mi)
  325. }
  326. return ms
  327. }
  328. return mi.MessageOf(x)
  329. }
  330. // Deprecated: Use DeleteScripRequest.ProtoReflect.Descriptor instead.
  331. func (*DeleteScripRequest) Descriptor() ([]byte, []int) {
  332. return file_user_proto_rawDescGZIP(), []int{6}
  333. }
  334. func (x *DeleteScripRequest) GetScripId() int64 {
  335. if x != nil {
  336. return x.ScripId
  337. }
  338. return 0
  339. }
  340. type CreateScripRequest struct {
  341. state protoimpl.MessageState
  342. sizeCache protoimpl.SizeCache
  343. unknownFields protoimpl.UnknownFields
  344. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  345. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  346. }
  347. func (x *CreateScripRequest) Reset() {
  348. *x = CreateScripRequest{}
  349. if protoimpl.UnsafeEnabled {
  350. mi := &file_user_proto_msgTypes[7]
  351. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  352. ms.StoreMessageInfo(mi)
  353. }
  354. }
  355. func (x *CreateScripRequest) String() string {
  356. return protoimpl.X.MessageStringOf(x)
  357. }
  358. func (*CreateScripRequest) ProtoMessage() {}
  359. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  360. mi := &file_user_proto_msgTypes[7]
  361. if protoimpl.UnsafeEnabled && x != nil {
  362. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  363. if ms.LoadMessageInfo() == nil {
  364. ms.StoreMessageInfo(mi)
  365. }
  366. return ms
  367. }
  368. return mi.MessageOf(x)
  369. }
  370. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  371. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  372. return file_user_proto_rawDescGZIP(), []int{7}
  373. }
  374. func (x *CreateScripRequest) GetText() string {
  375. if x != nil {
  376. return x.Text
  377. }
  378. return ""
  379. }
  380. func (x *CreateScripRequest) GetPictureUrl() string {
  381. if x != nil {
  382. return x.PictureUrl
  383. }
  384. return ""
  385. }
  386. type FindMatchingAvatarAndNumReply struct {
  387. state protoimpl.MessageState
  388. sizeCache protoimpl.SizeCache
  389. unknownFields protoimpl.UnknownFields
  390. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 匹配人数
  391. List []string `protobuf:"bytes,2,rep,name=list,proto3" json:"list"` // 头像列表
  392. }
  393. func (x *FindMatchingAvatarAndNumReply) Reset() {
  394. *x = FindMatchingAvatarAndNumReply{}
  395. if protoimpl.UnsafeEnabled {
  396. mi := &file_user_proto_msgTypes[8]
  397. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  398. ms.StoreMessageInfo(mi)
  399. }
  400. }
  401. func (x *FindMatchingAvatarAndNumReply) String() string {
  402. return protoimpl.X.MessageStringOf(x)
  403. }
  404. func (*FindMatchingAvatarAndNumReply) ProtoMessage() {}
  405. func (x *FindMatchingAvatarAndNumReply) ProtoReflect() protoreflect.Message {
  406. mi := &file_user_proto_msgTypes[8]
  407. if protoimpl.UnsafeEnabled && x != nil {
  408. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  409. if ms.LoadMessageInfo() == nil {
  410. ms.StoreMessageInfo(mi)
  411. }
  412. return ms
  413. }
  414. return mi.MessageOf(x)
  415. }
  416. // Deprecated: Use FindMatchingAvatarAndNumReply.ProtoReflect.Descriptor instead.
  417. func (*FindMatchingAvatarAndNumReply) Descriptor() ([]byte, []int) {
  418. return file_user_proto_rawDescGZIP(), []int{8}
  419. }
  420. func (x *FindMatchingAvatarAndNumReply) GetNum() int64 {
  421. if x != nil {
  422. return x.Num
  423. }
  424. return 0
  425. }
  426. func (x *FindMatchingAvatarAndNumReply) GetList() []string {
  427. if x != nil {
  428. return x.List
  429. }
  430. return nil
  431. }
  432. type UserRechargeRequest struct {
  433. state protoimpl.MessageState
  434. sizeCache protoimpl.SizeCache
  435. unknownFields protoimpl.UnknownFields
  436. RechargeTemplateId int64 `protobuf:"varint,1,opt,name=RechargeTemplateId,proto3" json:"RechargeTemplateId"` // 充值套餐ID
  437. }
  438. func (x *UserRechargeRequest) Reset() {
  439. *x = UserRechargeRequest{}
  440. if protoimpl.UnsafeEnabled {
  441. mi := &file_user_proto_msgTypes[9]
  442. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  443. ms.StoreMessageInfo(mi)
  444. }
  445. }
  446. func (x *UserRechargeRequest) String() string {
  447. return protoimpl.X.MessageStringOf(x)
  448. }
  449. func (*UserRechargeRequest) ProtoMessage() {}
  450. func (x *UserRechargeRequest) ProtoReflect() protoreflect.Message {
  451. mi := &file_user_proto_msgTypes[9]
  452. if protoimpl.UnsafeEnabled && x != nil {
  453. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  454. if ms.LoadMessageInfo() == nil {
  455. ms.StoreMessageInfo(mi)
  456. }
  457. return ms
  458. }
  459. return mi.MessageOf(x)
  460. }
  461. // Deprecated: Use UserRechargeRequest.ProtoReflect.Descriptor instead.
  462. func (*UserRechargeRequest) Descriptor() ([]byte, []int) {
  463. return file_user_proto_rawDescGZIP(), []int{9}
  464. }
  465. func (x *UserRechargeRequest) GetRechargeTemplateId() int64 {
  466. if x != nil {
  467. return x.RechargeTemplateId
  468. }
  469. return 0
  470. }
  471. type RechargeList struct {
  472. state protoimpl.MessageState
  473. sizeCache protoimpl.SizeCache
  474. unknownFields protoimpl.UnknownFields
  475. List []*RechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  476. }
  477. func (x *RechargeList) Reset() {
  478. *x = RechargeList{}
  479. if protoimpl.UnsafeEnabled {
  480. mi := &file_user_proto_msgTypes[10]
  481. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  482. ms.StoreMessageInfo(mi)
  483. }
  484. }
  485. func (x *RechargeList) String() string {
  486. return protoimpl.X.MessageStringOf(x)
  487. }
  488. func (*RechargeList) ProtoMessage() {}
  489. func (x *RechargeList) ProtoReflect() protoreflect.Message {
  490. mi := &file_user_proto_msgTypes[10]
  491. if protoimpl.UnsafeEnabled && x != nil {
  492. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  493. if ms.LoadMessageInfo() == nil {
  494. ms.StoreMessageInfo(mi)
  495. }
  496. return ms
  497. }
  498. return mi.MessageOf(x)
  499. }
  500. // Deprecated: Use RechargeList.ProtoReflect.Descriptor instead.
  501. func (*RechargeList) Descriptor() ([]byte, []int) {
  502. return file_user_proto_rawDescGZIP(), []int{10}
  503. }
  504. func (x *RechargeList) GetList() []*RechargeInfo {
  505. if x != nil {
  506. return x.List
  507. }
  508. return nil
  509. }
  510. type RechargeInfo struct {
  511. state protoimpl.MessageState
  512. sizeCache protoimpl.SizeCache
  513. unknownFields protoimpl.UnknownFields
  514. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  515. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"`
  516. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 积分
  517. GiveCredit int64 `protobuf:"varint,4,opt,name=giveCredit,proto3" json:"giveCredit"` // 赠送的积分
  518. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description"` // 描述
  519. Title string `protobuf:"bytes,6,opt,name=title,proto3" json:"title"` // 标题
  520. }
  521. func (x *RechargeInfo) Reset() {
  522. *x = RechargeInfo{}
  523. if protoimpl.UnsafeEnabled {
  524. mi := &file_user_proto_msgTypes[11]
  525. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  526. ms.StoreMessageInfo(mi)
  527. }
  528. }
  529. func (x *RechargeInfo) String() string {
  530. return protoimpl.X.MessageStringOf(x)
  531. }
  532. func (*RechargeInfo) ProtoMessage() {}
  533. func (x *RechargeInfo) ProtoReflect() protoreflect.Message {
  534. mi := &file_user_proto_msgTypes[11]
  535. if protoimpl.UnsafeEnabled && x != nil {
  536. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  537. if ms.LoadMessageInfo() == nil {
  538. ms.StoreMessageInfo(mi)
  539. }
  540. return ms
  541. }
  542. return mi.MessageOf(x)
  543. }
  544. // Deprecated: Use RechargeInfo.ProtoReflect.Descriptor instead.
  545. func (*RechargeInfo) Descriptor() ([]byte, []int) {
  546. return file_user_proto_rawDescGZIP(), []int{11}
  547. }
  548. func (x *RechargeInfo) GetId() int64 {
  549. if x != nil {
  550. return x.Id
  551. }
  552. return 0
  553. }
  554. func (x *RechargeInfo) GetPrice() int64 {
  555. if x != nil {
  556. return x.Price
  557. }
  558. return 0
  559. }
  560. func (x *RechargeInfo) GetCredit() int64 {
  561. if x != nil {
  562. return x.Credit
  563. }
  564. return 0
  565. }
  566. func (x *RechargeInfo) GetGiveCredit() int64 {
  567. if x != nil {
  568. return x.GiveCredit
  569. }
  570. return 0
  571. }
  572. func (x *RechargeInfo) GetDescription() string {
  573. if x != nil {
  574. return x.Description
  575. }
  576. return ""
  577. }
  578. func (x *RechargeInfo) GetTitle() string {
  579. if x != nil {
  580. return x.Title
  581. }
  582. return ""
  583. }
  584. type InformationStatus struct {
  585. state protoimpl.MessageState
  586. sizeCache protoimpl.SizeCache
  587. unknownFields protoimpl.UnknownFields
  588. IsFinishInformation bool `protobuf:"varint,1,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  589. IsGetAward bool `protobuf:"varint,2,opt,name=isGetAward,proto3" json:"isGetAward"` // 是否领取奖励
  590. }
  591. func (x *InformationStatus) Reset() {
  592. *x = InformationStatus{}
  593. if protoimpl.UnsafeEnabled {
  594. mi := &file_user_proto_msgTypes[12]
  595. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  596. ms.StoreMessageInfo(mi)
  597. }
  598. }
  599. func (x *InformationStatus) String() string {
  600. return protoimpl.X.MessageStringOf(x)
  601. }
  602. func (*InformationStatus) ProtoMessage() {}
  603. func (x *InformationStatus) ProtoReflect() protoreflect.Message {
  604. mi := &file_user_proto_msgTypes[12]
  605. if protoimpl.UnsafeEnabled && x != nil {
  606. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  607. if ms.LoadMessageInfo() == nil {
  608. ms.StoreMessageInfo(mi)
  609. }
  610. return ms
  611. }
  612. return mi.MessageOf(x)
  613. }
  614. // Deprecated: Use InformationStatus.ProtoReflect.Descriptor instead.
  615. func (*InformationStatus) Descriptor() ([]byte, []int) {
  616. return file_user_proto_rawDescGZIP(), []int{12}
  617. }
  618. func (x *InformationStatus) GetIsFinishInformation() bool {
  619. if x != nil {
  620. return x.IsFinishInformation
  621. }
  622. return false
  623. }
  624. func (x *InformationStatus) GetIsGetAward() bool {
  625. if x != nil {
  626. return x.IsGetAward
  627. }
  628. return false
  629. }
  630. type UserBalance struct {
  631. state protoimpl.MessageState
  632. sizeCache protoimpl.SizeCache
  633. unknownFields protoimpl.UnknownFields
  634. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  635. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  636. }
  637. func (x *UserBalance) Reset() {
  638. *x = UserBalance{}
  639. if protoimpl.UnsafeEnabled {
  640. mi := &file_user_proto_msgTypes[13]
  641. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  642. ms.StoreMessageInfo(mi)
  643. }
  644. }
  645. func (x *UserBalance) String() string {
  646. return protoimpl.X.MessageStringOf(x)
  647. }
  648. func (*UserBalance) ProtoMessage() {}
  649. func (x *UserBalance) ProtoReflect() protoreflect.Message {
  650. mi := &file_user_proto_msgTypes[13]
  651. if protoimpl.UnsafeEnabled && x != nil {
  652. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  653. if ms.LoadMessageInfo() == nil {
  654. ms.StoreMessageInfo(mi)
  655. }
  656. return ms
  657. }
  658. return mi.MessageOf(x)
  659. }
  660. // Deprecated: Use UserBalance.ProtoReflect.Descriptor instead.
  661. func (*UserBalance) Descriptor() ([]byte, []int) {
  662. return file_user_proto_rawDescGZIP(), []int{13}
  663. }
  664. func (x *UserBalance) GetId() string {
  665. if x != nil {
  666. return x.Id
  667. }
  668. return ""
  669. }
  670. func (x *UserBalance) GetCredit() int64 {
  671. if x != nil {
  672. return x.Credit
  673. }
  674. return 0
  675. }
  676. type UserFindChatListReply struct {
  677. state protoimpl.MessageState
  678. sizeCache protoimpl.SizeCache
  679. unknownFields protoimpl.UnknownFields
  680. List []*UserChatInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  681. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  682. }
  683. func (x *UserFindChatListReply) Reset() {
  684. *x = UserFindChatListReply{}
  685. if protoimpl.UnsafeEnabled {
  686. mi := &file_user_proto_msgTypes[14]
  687. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  688. ms.StoreMessageInfo(mi)
  689. }
  690. }
  691. func (x *UserFindChatListReply) String() string {
  692. return protoimpl.X.MessageStringOf(x)
  693. }
  694. func (*UserFindChatListReply) ProtoMessage() {}
  695. func (x *UserFindChatListReply) ProtoReflect() protoreflect.Message {
  696. mi := &file_user_proto_msgTypes[14]
  697. if protoimpl.UnsafeEnabled && x != nil {
  698. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  699. if ms.LoadMessageInfo() == nil {
  700. ms.StoreMessageInfo(mi)
  701. }
  702. return ms
  703. }
  704. return mi.MessageOf(x)
  705. }
  706. // Deprecated: Use UserFindChatListReply.ProtoReflect.Descriptor instead.
  707. func (*UserFindChatListReply) Descriptor() ([]byte, []int) {
  708. return file_user_proto_rawDescGZIP(), []int{14}
  709. }
  710. func (x *UserFindChatListReply) GetList() []*UserChatInfo {
  711. if x != nil {
  712. return x.List
  713. }
  714. return nil
  715. }
  716. func (x *UserFindChatListReply) GetNextId() int64 {
  717. if x != nil {
  718. return x.NextId
  719. }
  720. return 0
  721. }
  722. type UserChatInfo struct {
  723. state protoimpl.MessageState
  724. sizeCache protoimpl.SizeCache
  725. unknownFields protoimpl.UnknownFields
  726. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  727. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  728. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  729. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  730. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  731. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  732. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  733. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  734. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  735. RoomId int64 `protobuf:"varint,12,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  736. }
  737. func (x *UserChatInfo) Reset() {
  738. *x = UserChatInfo{}
  739. if protoimpl.UnsafeEnabled {
  740. mi := &file_user_proto_msgTypes[15]
  741. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  742. ms.StoreMessageInfo(mi)
  743. }
  744. }
  745. func (x *UserChatInfo) String() string {
  746. return protoimpl.X.MessageStringOf(x)
  747. }
  748. func (*UserChatInfo) ProtoMessage() {}
  749. func (x *UserChatInfo) ProtoReflect() protoreflect.Message {
  750. mi := &file_user_proto_msgTypes[15]
  751. if protoimpl.UnsafeEnabled && x != nil {
  752. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  753. if ms.LoadMessageInfo() == nil {
  754. ms.StoreMessageInfo(mi)
  755. }
  756. return ms
  757. }
  758. return mi.MessageOf(x)
  759. }
  760. // Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.
  761. func (*UserChatInfo) Descriptor() ([]byte, []int) {
  762. return file_user_proto_rawDescGZIP(), []int{15}
  763. }
  764. func (x *UserChatInfo) GetPersonId() string {
  765. if x != nil {
  766. return x.PersonId
  767. }
  768. return ""
  769. }
  770. func (x *UserChatInfo) GetUnreadNum() int64 {
  771. if x != nil {
  772. return x.UnreadNum
  773. }
  774. return 0
  775. }
  776. func (x *UserChatInfo) GetLastContent() string {
  777. if x != nil {
  778. return x.LastContent
  779. }
  780. return ""
  781. }
  782. func (x *UserChatInfo) GetLastTime() int64 {
  783. if x != nil {
  784. return x.LastTime
  785. }
  786. return 0
  787. }
  788. func (x *UserChatInfo) GetLikeability() int64 {
  789. if x != nil {
  790. return x.Likeability
  791. }
  792. return 0
  793. }
  794. func (x *UserChatInfo) GetSex() int64 {
  795. if x != nil {
  796. return x.Sex
  797. }
  798. return 0
  799. }
  800. func (x *UserChatInfo) GetAvatarUrl() string {
  801. if x != nil {
  802. return x.AvatarUrl
  803. }
  804. return ""
  805. }
  806. func (x *UserChatInfo) GetNickname() string {
  807. if x != nil {
  808. return x.Nickname
  809. }
  810. return ""
  811. }
  812. func (x *UserChatInfo) GetAge() int64 {
  813. if x != nil {
  814. return x.Age
  815. }
  816. return 0
  817. }
  818. func (x *UserChatInfo) GetRoomId() int64 {
  819. if x != nil {
  820. return x.RoomId
  821. }
  822. return 0
  823. }
  824. type UserInfo struct {
  825. state protoimpl.MessageState
  826. sizeCache protoimpl.SizeCache
  827. unknownFields protoimpl.UnknownFields
  828. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  829. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  830. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  831. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  832. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  833. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  834. Credit int64 `protobuf:"varint,7,opt,name=credit,proto3" json:"credit"` // 积分
  835. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  836. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  837. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  838. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  839. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  840. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  841. UserId int64 `protobuf:"varint,14,opt,name=userId,proto3" json:"userId"` // 用户ID
  842. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  843. IsRegister bool `protobuf:"varint,16,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  844. }
  845. func (x *UserInfo) Reset() {
  846. *x = UserInfo{}
  847. if protoimpl.UnsafeEnabled {
  848. mi := &file_user_proto_msgTypes[16]
  849. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  850. ms.StoreMessageInfo(mi)
  851. }
  852. }
  853. func (x *UserInfo) String() string {
  854. return protoimpl.X.MessageStringOf(x)
  855. }
  856. func (*UserInfo) ProtoMessage() {}
  857. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  858. mi := &file_user_proto_msgTypes[16]
  859. if protoimpl.UnsafeEnabled && x != nil {
  860. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  861. if ms.LoadMessageInfo() == nil {
  862. ms.StoreMessageInfo(mi)
  863. }
  864. return ms
  865. }
  866. return mi.MessageOf(x)
  867. }
  868. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  869. func (*UserInfo) Descriptor() ([]byte, []int) {
  870. return file_user_proto_rawDescGZIP(), []int{16}
  871. }
  872. func (x *UserInfo) GetId() string {
  873. if x != nil {
  874. return x.Id
  875. }
  876. return ""
  877. }
  878. func (x *UserInfo) GetNickname() string {
  879. if x != nil {
  880. return x.Nickname
  881. }
  882. return ""
  883. }
  884. func (x *UserInfo) GetAvatarUrl() string {
  885. if x != nil {
  886. return x.AvatarUrl
  887. }
  888. return ""
  889. }
  890. func (x *UserInfo) GetAge() int64 {
  891. if x != nil {
  892. return x.Age
  893. }
  894. return 0
  895. }
  896. func (x *UserInfo) GetSex() int64 {
  897. if x != nil {
  898. return x.Sex
  899. }
  900. return 0
  901. }
  902. func (x *UserInfo) GetConstellation() string {
  903. if x != nil {
  904. return x.Constellation
  905. }
  906. return ""
  907. }
  908. func (x *UserInfo) GetCredit() int64 {
  909. if x != nil {
  910. return x.Credit
  911. }
  912. return 0
  913. }
  914. func (x *UserInfo) GetTagList() []int64 {
  915. if x != nil {
  916. return x.TagList
  917. }
  918. return nil
  919. }
  920. func (x *UserInfo) GetSignature() string {
  921. if x != nil {
  922. return x.Signature
  923. }
  924. return ""
  925. }
  926. func (x *UserInfo) GetIntroduceVoice() string {
  927. if x != nil {
  928. return x.IntroduceVoice
  929. }
  930. return ""
  931. }
  932. func (x *UserInfo) GetProvince() string {
  933. if x != nil {
  934. return x.Province
  935. }
  936. return ""
  937. }
  938. func (x *UserInfo) GetCity() string {
  939. if x != nil {
  940. return x.City
  941. }
  942. return ""
  943. }
  944. func (x *UserInfo) GetArea() string {
  945. if x != nil {
  946. return x.Area
  947. }
  948. return ""
  949. }
  950. func (x *UserInfo) GetUserId() int64 {
  951. if x != nil {
  952. return x.UserId
  953. }
  954. return 0
  955. }
  956. func (x *UserInfo) GetIsBlack() bool {
  957. if x != nil {
  958. return x.IsBlack
  959. }
  960. return false
  961. }
  962. func (x *UserInfo) GetIsRegister() bool {
  963. if x != nil {
  964. return x.IsRegister
  965. }
  966. return false
  967. }
  968. type KeyRequest struct {
  969. state protoimpl.MessageState
  970. sizeCache protoimpl.SizeCache
  971. unknownFields protoimpl.UnknownFields
  972. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  973. }
  974. func (x *KeyRequest) Reset() {
  975. *x = KeyRequest{}
  976. if protoimpl.UnsafeEnabled {
  977. mi := &file_user_proto_msgTypes[17]
  978. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  979. ms.StoreMessageInfo(mi)
  980. }
  981. }
  982. func (x *KeyRequest) String() string {
  983. return protoimpl.X.MessageStringOf(x)
  984. }
  985. func (*KeyRequest) ProtoMessage() {}
  986. func (x *KeyRequest) ProtoReflect() protoreflect.Message {
  987. mi := &file_user_proto_msgTypes[17]
  988. if protoimpl.UnsafeEnabled && x != nil {
  989. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  990. if ms.LoadMessageInfo() == nil {
  991. ms.StoreMessageInfo(mi)
  992. }
  993. return ms
  994. }
  995. return mi.MessageOf(x)
  996. }
  997. // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead.
  998. func (*KeyRequest) Descriptor() ([]byte, []int) {
  999. return file_user_proto_rawDescGZIP(), []int{17}
  1000. }
  1001. func (x *KeyRequest) GetKey() string {
  1002. if x != nil {
  1003. return x.Key
  1004. }
  1005. return ""
  1006. }
  1007. type CreatePayRequest struct {
  1008. state protoimpl.MessageState
  1009. sizeCache protoimpl.SizeCache
  1010. unknownFields protoimpl.UnknownFields
  1011. Money int64 `protobuf:"varint,1,opt,name=money,proto3" json:"money"` // 支付金额 单位 分
  1012. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  1013. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
  1014. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"`
  1015. Attach string `protobuf:"bytes,5,opt,name=attach,proto3" json:"attach"`
  1016. }
  1017. func (x *CreatePayRequest) Reset() {
  1018. *x = CreatePayRequest{}
  1019. if protoimpl.UnsafeEnabled {
  1020. mi := &file_user_proto_msgTypes[18]
  1021. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1022. ms.StoreMessageInfo(mi)
  1023. }
  1024. }
  1025. func (x *CreatePayRequest) String() string {
  1026. return protoimpl.X.MessageStringOf(x)
  1027. }
  1028. func (*CreatePayRequest) ProtoMessage() {}
  1029. func (x *CreatePayRequest) ProtoReflect() protoreflect.Message {
  1030. mi := &file_user_proto_msgTypes[18]
  1031. if protoimpl.UnsafeEnabled && x != nil {
  1032. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1033. if ms.LoadMessageInfo() == nil {
  1034. ms.StoreMessageInfo(mi)
  1035. }
  1036. return ms
  1037. }
  1038. return mi.MessageOf(x)
  1039. }
  1040. // Deprecated: Use CreatePayRequest.ProtoReflect.Descriptor instead.
  1041. func (*CreatePayRequest) Descriptor() ([]byte, []int) {
  1042. return file_user_proto_rawDescGZIP(), []int{18}
  1043. }
  1044. func (x *CreatePayRequest) GetMoney() int64 {
  1045. if x != nil {
  1046. return x.Money
  1047. }
  1048. return 0
  1049. }
  1050. func (x *CreatePayRequest) GetType() string {
  1051. if x != nil {
  1052. return x.Type
  1053. }
  1054. return ""
  1055. }
  1056. func (x *CreatePayRequest) GetOpenId() string {
  1057. if x != nil {
  1058. return x.OpenId
  1059. }
  1060. return ""
  1061. }
  1062. func (x *CreatePayRequest) GetDescription() string {
  1063. if x != nil {
  1064. return x.Description
  1065. }
  1066. return ""
  1067. }
  1068. func (x *CreatePayRequest) GetAttach() string {
  1069. if x != nil {
  1070. return x.Attach
  1071. }
  1072. return ""
  1073. }
  1074. type PayInfo struct {
  1075. state protoimpl.MessageState
  1076. sizeCache protoimpl.SizeCache
  1077. unknownFields protoimpl.UnknownFields
  1078. PayInfo *structpb.Value `protobuf:"bytes,1,opt,name=payInfo,proto3" json:"payInfo"`
  1079. OrderId int64 `protobuf:"varint,2,opt,name=orderId,proto3" json:"orderId"`
  1080. }
  1081. func (x *PayInfo) Reset() {
  1082. *x = PayInfo{}
  1083. if protoimpl.UnsafeEnabled {
  1084. mi := &file_user_proto_msgTypes[19]
  1085. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1086. ms.StoreMessageInfo(mi)
  1087. }
  1088. }
  1089. func (x *PayInfo) String() string {
  1090. return protoimpl.X.MessageStringOf(x)
  1091. }
  1092. func (*PayInfo) ProtoMessage() {}
  1093. func (x *PayInfo) ProtoReflect() protoreflect.Message {
  1094. mi := &file_user_proto_msgTypes[19]
  1095. if protoimpl.UnsafeEnabled && x != nil {
  1096. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1097. if ms.LoadMessageInfo() == nil {
  1098. ms.StoreMessageInfo(mi)
  1099. }
  1100. return ms
  1101. }
  1102. return mi.MessageOf(x)
  1103. }
  1104. // Deprecated: Use PayInfo.ProtoReflect.Descriptor instead.
  1105. func (*PayInfo) Descriptor() ([]byte, []int) {
  1106. return file_user_proto_rawDescGZIP(), []int{19}
  1107. }
  1108. func (x *PayInfo) GetPayInfo() *structpb.Value {
  1109. if x != nil {
  1110. return x.PayInfo
  1111. }
  1112. return nil
  1113. }
  1114. func (x *PayInfo) GetOrderId() int64 {
  1115. if x != nil {
  1116. return x.OrderId
  1117. }
  1118. return 0
  1119. }
  1120. type PayOrderInfo struct {
  1121. state protoimpl.MessageState
  1122. sizeCache protoimpl.SizeCache
  1123. unknownFields protoimpl.UnknownFields
  1124. UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID"`
  1125. OrderID int64 `protobuf:"varint,2,opt,name=orderID,proto3" json:"orderID"` // 订单的唯一ID
  1126. Money int64 `protobuf:"varint,3,opt,name=money,proto3" json:"money"` // 支付金额 ,单位分
  1127. Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type"` // 类型
  1128. TransactionID string `protobuf:"bytes,5,opt,name=TransactionID,proto3" json:"TransactionID"`
  1129. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId"`
  1130. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"`
  1131. Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status"` // 状态
  1132. PayTime int64 `protobuf:"varint,10,opt,name=payTime,proto3" json:"payTime"` // 支付时间
  1133. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  1134. }
  1135. func (x *PayOrderInfo) Reset() {
  1136. *x = PayOrderInfo{}
  1137. if protoimpl.UnsafeEnabled {
  1138. mi := &file_user_proto_msgTypes[20]
  1139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1140. ms.StoreMessageInfo(mi)
  1141. }
  1142. }
  1143. func (x *PayOrderInfo) String() string {
  1144. return protoimpl.X.MessageStringOf(x)
  1145. }
  1146. func (*PayOrderInfo) ProtoMessage() {}
  1147. func (x *PayOrderInfo) ProtoReflect() protoreflect.Message {
  1148. mi := &file_user_proto_msgTypes[20]
  1149. if protoimpl.UnsafeEnabled && x != nil {
  1150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1151. if ms.LoadMessageInfo() == nil {
  1152. ms.StoreMessageInfo(mi)
  1153. }
  1154. return ms
  1155. }
  1156. return mi.MessageOf(x)
  1157. }
  1158. // Deprecated: Use PayOrderInfo.ProtoReflect.Descriptor instead.
  1159. func (*PayOrderInfo) Descriptor() ([]byte, []int) {
  1160. return file_user_proto_rawDescGZIP(), []int{20}
  1161. }
  1162. func (x *PayOrderInfo) GetUserID() string {
  1163. if x != nil {
  1164. return x.UserID
  1165. }
  1166. return ""
  1167. }
  1168. func (x *PayOrderInfo) GetOrderID() int64 {
  1169. if x != nil {
  1170. return x.OrderID
  1171. }
  1172. return 0
  1173. }
  1174. func (x *PayOrderInfo) GetMoney() int64 {
  1175. if x != nil {
  1176. return x.Money
  1177. }
  1178. return 0
  1179. }
  1180. func (x *PayOrderInfo) GetType() string {
  1181. if x != nil {
  1182. return x.Type
  1183. }
  1184. return ""
  1185. }
  1186. func (x *PayOrderInfo) GetTransactionID() string {
  1187. if x != nil {
  1188. return x.TransactionID
  1189. }
  1190. return ""
  1191. }
  1192. func (x *PayOrderInfo) GetOpenId() string {
  1193. if x != nil {
  1194. return x.OpenId
  1195. }
  1196. return ""
  1197. }
  1198. func (x *PayOrderInfo) GetDescription() string {
  1199. if x != nil {
  1200. return x.Description
  1201. }
  1202. return ""
  1203. }
  1204. func (x *PayOrderInfo) GetStatus() string {
  1205. if x != nil {
  1206. return x.Status
  1207. }
  1208. return ""
  1209. }
  1210. func (x *PayOrderInfo) GetPayTime() int64 {
  1211. if x != nil {
  1212. return x.PayTime
  1213. }
  1214. return 0
  1215. }
  1216. func (x *PayOrderInfo) GetCreateTime() int64 {
  1217. if x != nil {
  1218. return x.CreateTime
  1219. }
  1220. return 0
  1221. }
  1222. type PayOrderList struct {
  1223. state protoimpl.MessageState
  1224. sizeCache protoimpl.SizeCache
  1225. unknownFields protoimpl.UnknownFields
  1226. List []*PayOrderInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1227. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1228. }
  1229. func (x *PayOrderList) Reset() {
  1230. *x = PayOrderList{}
  1231. if protoimpl.UnsafeEnabled {
  1232. mi := &file_user_proto_msgTypes[21]
  1233. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1234. ms.StoreMessageInfo(mi)
  1235. }
  1236. }
  1237. func (x *PayOrderList) String() string {
  1238. return protoimpl.X.MessageStringOf(x)
  1239. }
  1240. func (*PayOrderList) ProtoMessage() {}
  1241. func (x *PayOrderList) ProtoReflect() protoreflect.Message {
  1242. mi := &file_user_proto_msgTypes[21]
  1243. if protoimpl.UnsafeEnabled && x != nil {
  1244. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1245. if ms.LoadMessageInfo() == nil {
  1246. ms.StoreMessageInfo(mi)
  1247. }
  1248. return ms
  1249. }
  1250. return mi.MessageOf(x)
  1251. }
  1252. // Deprecated: Use PayOrderList.ProtoReflect.Descriptor instead.
  1253. func (*PayOrderList) Descriptor() ([]byte, []int) {
  1254. return file_user_proto_rawDescGZIP(), []int{21}
  1255. }
  1256. func (x *PayOrderList) GetList() []*PayOrderInfo {
  1257. if x != nil {
  1258. return x.List
  1259. }
  1260. return nil
  1261. }
  1262. func (x *PayOrderList) GetNextId() int64 {
  1263. if x != nil {
  1264. return x.NextId
  1265. }
  1266. return 0
  1267. }
  1268. type FindPayOrderListRequest struct {
  1269. state protoimpl.MessageState
  1270. sizeCache protoimpl.SizeCache
  1271. unknownFields protoimpl.UnknownFields
  1272. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1273. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1274. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"`
  1275. }
  1276. func (x *FindPayOrderListRequest) Reset() {
  1277. *x = FindPayOrderListRequest{}
  1278. if protoimpl.UnsafeEnabled {
  1279. mi := &file_user_proto_msgTypes[22]
  1280. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1281. ms.StoreMessageInfo(mi)
  1282. }
  1283. }
  1284. func (x *FindPayOrderListRequest) String() string {
  1285. return protoimpl.X.MessageStringOf(x)
  1286. }
  1287. func (*FindPayOrderListRequest) ProtoMessage() {}
  1288. func (x *FindPayOrderListRequest) ProtoReflect() protoreflect.Message {
  1289. mi := &file_user_proto_msgTypes[22]
  1290. if protoimpl.UnsafeEnabled && x != nil {
  1291. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1292. if ms.LoadMessageInfo() == nil {
  1293. ms.StoreMessageInfo(mi)
  1294. }
  1295. return ms
  1296. }
  1297. return mi.MessageOf(x)
  1298. }
  1299. // Deprecated: Use FindPayOrderListRequest.ProtoReflect.Descriptor instead.
  1300. func (*FindPayOrderListRequest) Descriptor() ([]byte, []int) {
  1301. return file_user_proto_rawDescGZIP(), []int{22}
  1302. }
  1303. func (x *FindPayOrderListRequest) GetNextId() int64 {
  1304. if x != nil {
  1305. return x.NextId
  1306. }
  1307. return 0
  1308. }
  1309. func (x *FindPayOrderListRequest) GetOffset() int64 {
  1310. if x != nil {
  1311. return x.Offset
  1312. }
  1313. return 0
  1314. }
  1315. func (x *FindPayOrderListRequest) GetStatus() string {
  1316. if x != nil {
  1317. return x.Status
  1318. }
  1319. return ""
  1320. }
  1321. type PayCallbackReply struct {
  1322. state protoimpl.MessageState
  1323. sizeCache protoimpl.SizeCache
  1324. unknownFields protoimpl.UnknownFields
  1325. Result []byte `protobuf:"bytes,1,opt,name=result,proto3" json:"result"`
  1326. }
  1327. func (x *PayCallbackReply) Reset() {
  1328. *x = PayCallbackReply{}
  1329. if protoimpl.UnsafeEnabled {
  1330. mi := &file_user_proto_msgTypes[23]
  1331. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1332. ms.StoreMessageInfo(mi)
  1333. }
  1334. }
  1335. func (x *PayCallbackReply) String() string {
  1336. return protoimpl.X.MessageStringOf(x)
  1337. }
  1338. func (*PayCallbackReply) ProtoMessage() {}
  1339. func (x *PayCallbackReply) ProtoReflect() protoreflect.Message {
  1340. mi := &file_user_proto_msgTypes[23]
  1341. if protoimpl.UnsafeEnabled && x != nil {
  1342. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1343. if ms.LoadMessageInfo() == nil {
  1344. ms.StoreMessageInfo(mi)
  1345. }
  1346. return ms
  1347. }
  1348. return mi.MessageOf(x)
  1349. }
  1350. // Deprecated: Use PayCallbackReply.ProtoReflect.Descriptor instead.
  1351. func (*PayCallbackReply) Descriptor() ([]byte, []int) {
  1352. return file_user_proto_rawDescGZIP(), []int{23}
  1353. }
  1354. func (x *PayCallbackReply) GetResult() []byte {
  1355. if x != nil {
  1356. return x.Result
  1357. }
  1358. return nil
  1359. }
  1360. var File_user_proto protoreflect.FileDescriptor
  1361. var file_user_proto_rawDesc = []byte{
  1362. 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  1363. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
  1364. 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
  1365. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  1366. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1367. 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1368. 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  1369. 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70,
  1370. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1371. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x61,
  1372. 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2f, 0x73, 0x74,
  1373. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5d,
  1374. 0x0a, 0x23, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  1375. 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65,
  1376. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1377. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1378. 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x61, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20,
  1379. 0x03, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x61, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x42, 0x0a,
  1380. 0x18, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72,
  1381. 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x53,
  1382. 0x65, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
  1383. 0x08, 0x52, 0x0e, 0x69, 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65,
  1384. 0x72, 0x22, 0x7d, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d,
  1385. 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75,
  1386. 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63,
  1387. 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  1388. 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e,
  1389. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x20,
  1390. 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20,
  1391. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d,
  1392. 0x22, 0x76, 0x0a, 0x11, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  1393. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64,
  1394. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12,
  1395. 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b,
  1396. 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65,
  1397. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18,
  1398. 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  1399. 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x22, 0x32, 0x0a, 0x16, 0x50, 0x65, 0x72, 0x73,
  1400. 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  1401. 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20,
  1402. 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x14,
  1403. 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71,
  1404. 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x03,
  1405. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  1406. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66,
  1407. 0x66, 0x73, 0x65, 0x74, 0x22, 0x2e, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63,
  1408. 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63,
  1409. 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72,
  1410. 0x69, 0x70, 0x49, 0x64, 0x22, 0x48, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63,
  1411. 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65,
  1412. 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e,
  1413. 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01,
  1414. 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x45,
  1415. 0x0a, 0x1d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76,
  1416. 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  1417. 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75,
  1418. 0x6d, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52,
  1419. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x45, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63,
  1420. 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x12,
  1421. 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
  1422. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72,
  1423. 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x0c,
  1424. 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04,
  1425. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69,
  1426. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e,
  1427. 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xa4, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x63,
  1428. 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  1429. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69,
  1430. 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12,
  1431. 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  1432. 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43,
  1433. 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x67, 0x69, 0x76,
  1434. 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72,
  1435. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65,
  1436. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74,
  1437. 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22,
  1438. 0x65, 0x0a, 0x11, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
  1439. 0x61, 0x74, 0x75, 0x73, 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68,
  1440. 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28,
  1441. 0x08, 0x52, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72,
  1442. 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41,
  1443. 0x77, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x47, 0x65,
  1444. 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x22, 0x35, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61,
  1445. 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1446. 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18,
  1447. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x5b, 0x0a,
  1448. 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73,
  1449. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01,
  1450. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  1451. 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69,
  1452. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
  1453. 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x9e, 0x02, 0x0a, 0x0c, 0x55,
  1454. 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  1455. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  1456. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61,
  1457. 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65,
  1458. 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e,
  1459. 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74,
  1460. 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54,
  1461. 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54,
  1462. 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69,
  1463. 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62,
  1464. 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x08, 0x20, 0x01,
  1465. 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61,
  1466. 0x72, 0x55, 0x72, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74,
  1467. 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d,
  1468. 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d,
  1469. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  1470. 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0c, 0x20,
  1471. 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0xac, 0x03, 0x0a, 0x08,
  1472. 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  1473. 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b,
  1474. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b,
  1475. 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72,
  1476. 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  1477. 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52,
  1478. 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28,
  1479. 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65,
  1480. 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63,
  1481. 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06,
  1482. 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72,
  1483. 0x65, 0x64, 0x69, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18,
  1484. 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c,
  1485. 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
  1486. 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e,
  1487. 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a,
  1488. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56,
  1489. 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65,
  1490. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65,
  1491. 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  1492. 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01,
  1493. 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72,
  1494. 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  1495. 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28,
  1496. 0x08, 0x52, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73,
  1497. 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a,
  1498. 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x22, 0x1e, 0x0a, 0x0a, 0x4b, 0x65,
  1499. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
  1500. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x8e, 0x01, 0x0a, 0x10, 0x43,
  1501. 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  1502. 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,
  1503. 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20,
  1504. 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65,
  1505. 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49,
  1506. 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  1507. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  1508. 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x18, 0x05, 0x20,
  1509. 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x55, 0x0a, 0x07, 0x50,
  1510. 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x30, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66,
  1511. 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1512. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
  1513. 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65,
  1514. 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72,
  1515. 0x49, 0x64, 0x22, 0x9c, 0x02, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49,
  1516. 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x01, 0x20,
  1517. 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x6f,
  1518. 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72,
  1519. 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x03,
  1520. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74,
  1521. 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12,
  1522. 0x24, 0x0a, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44,
  1523. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74,
  1524. 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18,
  1525. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a,
  1526. 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01,
  1527. 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  1528. 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
  1529. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69,
  1530. 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d,
  1531. 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18,
  1532. 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d,
  1533. 0x65, 0x22, 0x52, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73,
  1534. 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
  1535. 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72,
  1536. 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a,
  1537. 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e,
  1538. 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x61, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79,
  1539. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1540. 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  1541. 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73,
  1542. 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
  1543. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  1544. 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x2a, 0x0a, 0x10, 0x50, 0x61, 0x79, 0x43,
  1545. 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06,
  1546. 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x72, 0x65,
  1547. 0x73, 0x75, 0x6c, 0x74, 0x32, 0xc4, 0x3e, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x54, 0x0a,
  1548. 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67,
  1549. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  1550. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  1551. 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13,
  1552. 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f,
  1553. 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  1554. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1555. 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52,
  1556. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1557. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e,
  1558. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1559. 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c,
  1560. 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65,
  1561. 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68,
  1562. 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75,
  1563. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1564. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4,
  1565. 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63,
  1566. 0x6f, 0x64, 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x15,
  1567. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  1568. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1569. 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  1570. 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  1571. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  1572. 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70,
  1573. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69, 0x6e,
  1574. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a, 0x14,
  1575. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1576. 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1577. 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d,
  1578. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74,
  1579. 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93,
  1580. 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72,
  1581. 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x5d, 0x0a, 0x0e,
  1582. 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x16,
  1583. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1584. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  1585. 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1c, 0x82,
  1586. 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1587. 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5b, 0x0a, 0x0f, 0x55,
  1588. 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17,
  1589. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  1590. 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1591. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82,
  1592. 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1593. 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x1b, 0x55, 0x73, 0x65, 0x72,
  1594. 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x41, 0x6e,
  1595. 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1596. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
  1597. 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f,
  1598. 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22,
  1599. 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1600. 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e,
  1601. 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1602. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52,
  1603. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61,
  1604. 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c,
  1605. 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3,
  1606. 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  1607. 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06,
  1608. 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1609. 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e,
  1610. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e,
  1611. 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1612. 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73, 0x64, 0x6b,
  1613. 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x10, 0x46, 0x69,
  1614. 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65, 0x78, 0x12, 0x12,
  1615. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52,
  1616. 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1617. 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3,
  1618. 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  1619. 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x76, 0x0a, 0x0e, 0x46,
  1620. 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e,
  1621. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50,
  1622. 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70,
  1623. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  1624. 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1625. 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1626. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6f, 0x6e, 0x6c, 0x69, 0x6e, 0x65,
  1627. 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x69, 0x74, 0x68,
  1628. 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69,
  1629. 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1630. 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1631. 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46,
  1632. 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1633. 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  1634. 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69,
  1635. 0x74, 0x68, 0x69, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x7d, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4f,
  1636. 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c,
  1637. 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1638. 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1639. 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  1640. 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1641. 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1642. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x6f,
  1643. 0x76, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  1644. 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x61,
  1645. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  1646. 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  1647. 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1648. 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
  1649. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61,
  1650. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x65, 0x63,
  1651. 0x6f, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  1652. 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1653. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52,
  1654. 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e,
  1655. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52,
  1656. 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17,
  1657. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72,
  1658. 0x6f, 0x6f, 0x6d, 0x2f, 0x6d, 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x59, 0x0a, 0x0d, 0x47, 0x65,
  1659. 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70,
  1660. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50,
  1661. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1662. 0x6e, 0x2e, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15,
  1663. 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x73, 0x6c, 0x69,
  1664. 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d,
  1665. 0x65, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1666. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1667. 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65,
  1668. 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18,
  1669. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d,
  1670. 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0d, 0x46,
  1671. 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x20, 0x2e, 0x61,
  1672. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  1673. 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19,
  1674. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74,
  1675. 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1676. 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e,
  1677. 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0a, 0x52, 0x61,
  1678. 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1679. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x1a,
  1680. 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d,
  1681. 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x25, 0x82, 0xd3, 0xe4,
  1682. 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66,
  1683. 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a,
  1684. 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x12, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77, 0x69, 0x66,
  1685. 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1686. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41,
  1687. 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1688. 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73,
  1689. 0x74, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1690. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x2f,
  1691. 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x68, 0x0a, 0x0d, 0x46, 0x69, 0x6e,
  1692. 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1693. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1694. 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1695. 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82,
  1696. 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1697. 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65,
  1698. 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x43, 0x68,
  1699. 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1700. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  1701. 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61,
  1702. 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1703. 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61,
  1704. 0x74, 0x2f, 0x63, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x12, 0x46, 0x69, 0x6e,
  1705. 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12,
  1706. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1707. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1708. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69,
  1709. 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69,
  1710. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f,
  1711. 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x56, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72,
  1712. 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1713. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e,
  1714. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1715. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f,
  1716. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a,
  1717. 0x12, 0x5a, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17,
  1718. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  1719. 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1720. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  1721. 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1722. 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06,
  1723. 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1724. 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65,
  1725. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1726. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82,
  1727. 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1728. 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01, 0x0a, 0x16, 0x46,
  1729. 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41,
  1730. 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1731. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e,
  1732. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4f,
  1733. 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61,
  1734. 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a,
  1735. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x2f, 0x61,
  1736. 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x79, 0x0a,
  1737. 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70,
  1738. 0x49, 0x44, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1739. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49,
  1740. 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1741. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1742. 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  1743. 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x61, 0x73, 0x74, 0x2f, 0x75,
  1744. 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x61,
  1745. 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  1746. 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  1747. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1748. 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93,
  1749. 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63,
  1750. 0x72, 0x69, 0x70, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a,
  1751. 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61,
  1752. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63,
  1753. 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1754. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1755. 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69,
  1756. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x64, 0x65, 0x6c, 0x65,
  1757. 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x79, 0x53,
  1758. 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  1759. 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71,
  1760. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1761. 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3,
  1762. 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  1763. 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x73, 0x65, 0x6c, 0x66, 0x3a,
  1764. 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x53,
  1765. 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1766. 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  1767. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1768. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93,
  1769. 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63,
  1770. 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x3a, 0x01,
  1771. 0x2a, 0x12, 0x77, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  1772. 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  1773. 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70,
  1774. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1775. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  1776. 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1777. 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x72, 0x65,
  1778. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0f, 0x50, 0x65,
  1779. 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x20, 0x2e,
  1780. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  1781. 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1782. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1783. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22,
  1784. 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70,
  1785. 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6a, 0x0a, 0x13, 0x50, 0x65, 0x72, 0x73,
  1786. 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x12,
  1787. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1788. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1789. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x24,
  1790. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1791. 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x62, 0x61, 0x63,
  1792. 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x10, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65,
  1793. 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  1794. 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  1795. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1796. 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66,
  1797. 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1798. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x72, 0x65, 0x70, 0x6c, 0x79,
  1799. 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74,
  1800. 0x65, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1801. 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1802. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1803. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a,
  1804. 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74,
  1805. 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x13, 0x47, 0x65,
  1806. 0x74, 0x55, 0x73, 0x65, 0x72, 0x41, 0x6c, 0x6c, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75,
  1807. 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1808. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1809. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65,
  1810. 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70,
  1811. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72, 0x65,
  1812. 0x61, 0x64, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x13, 0x47, 0x65, 0x74,
  1813. 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x79, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1814. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  1815. 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1816. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66,
  1817. 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1818. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01,
  1819. 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73,
  1820. 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
  1821. 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24,
  1822. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e,
  1823. 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52,
  1824. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61,
  1825. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b,
  1826. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65,
  1827. 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1828. 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  1829. 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
  1830. 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c,
  1831. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19,
  1832. 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  1833. 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x73, 0x65,
  1834. 0x72, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e,
  1835. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49,
  1836. 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1837. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1838. 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  1839. 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a,
  1840. 0x12, 0x94, 0x01, 0x0a, 0x1e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61,
  1841. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
  1842. 0x68, 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1843. 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  1844. 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
  1845. 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c,
  1846. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27,
  1847. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1848. 0x72, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1849. 0x73, 0x68, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61,
  1850. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  1851. 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4b, 0x65, 0x79, 0x52, 0x65,
  1852. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1853. 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73,
  1854. 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22,
  1855. 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x6c,
  1856. 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x47, 0x65,
  1857. 0x74, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x53, 0x74, 0x61, 0x74,
  1858. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x2e,
  1859. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1860. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74,
  1861. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69,
  1862. 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x22,
  1863. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1864. 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x5f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a,
  1865. 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f,
  1866. 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1867. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x20, 0x2e, 0x61,
  1868. 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f,
  1869. 0x6f, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d,
  1870. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1871. 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a,
  1872. 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72,
  1873. 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1874. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16,
  1875. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1876. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c,
  1877. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  1878. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x3a, 0x01, 0x2a, 0x12,
  1879. 0x75, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  1880. 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1881. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1882. 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f,
  1883. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x27, 0x82,
  1884. 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1885. 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x74, 0x61,
  1886. 0x74, 0x75, 0x73, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65,
  1887. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72,
  1888. 0x64, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1889. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1890. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  1891. 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1892. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1893. 0x2f, 0x61, 0x77, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x6e, 0x6c,
  1894. 0x6f, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x17, 0x2e,
  1895. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  1896. 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1897. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20,
  1898. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1899. 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x3a, 0x01, 0x2a,
  1900. 0x12, 0x5f, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65,
  1901. 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  1902. 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1903. 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e,
  1904. 0x66, 0x6f, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69,
  1905. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x3a, 0x01,
  1906. 0x2a, 0x12, 0x66, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  1907. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1908. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e,
  1909. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  1910. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f,
  1911. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  1912. 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0b, 0x46, 0x69, 0x6e,
  1913. 0x64, 0x50, 0x61, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  1914. 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72,
  1915. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70,
  1916. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c,
  1917. 0x69, 0x73, 0x74, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70,
  1918. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a,
  1919. 0x01, 0x2a, 0x12, 0x7c, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  1920. 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e,
  1921. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1922. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1923. 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73,
  1924. 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4,
  1925. 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c,
  1926. 0x69, 0x73, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a,
  1927. 0x12, 0x82, 0x01, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e,
  1928. 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e,
  1929. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1930. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  1931. 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61,
  1932. 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25,
  1933. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1934. 0x72, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61,
  1935. 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64,
  1936. 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1937. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14,
  1938. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77,
  1939. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61,
  1940. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x6e,
  1941. 0x64, 0x6f, 0x77, 0x2f, 0x67, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x5e, 0x0a, 0x0e, 0x47, 0x65,
  1942. 0x74, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67,
  1943. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  1944. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  1945. 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x1d, 0x82, 0xd3, 0xe4,
  1946. 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66,
  1947. 0x72, 0x65, 0x65, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x11, 0x47, 0x65,
  1948. 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x12,
  1949. 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78,
  1950. 0x52, 0x65, 0x71, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47,
  1951. 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67,
  1952. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f,
  1953. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f,
  1954. 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x55,
  1955. 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69,
  1956. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65,
  1957. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1958. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82,
  1959. 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1960. 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x3a, 0x01, 0x2a,
  1961. 0x12, 0x67, 0x0a, 0x0d, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72,
  1962. 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52,
  1963. 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  1964. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  1965. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61,
  1966. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x70,
  1967. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x14, 0x55, 0x70, 0x64,
  1968. 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
  1969. 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1970. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1971. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  1972. 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1973. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x65, 0x67, 0x69,
  1974. 0x73, 0x74, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74,
  1975. 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d,
  1976. 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72,
  1977. 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61,
  1978. 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f,
  1979. 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d,
  1980. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  1981. 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3a, 0x01, 0x2a,
  1982. 0x12, 0x40, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67,
  1983. 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  1984. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70,
  1985. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d,
  1986. 0x73, 0x67, 0x12, 0x45, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42,
  1987. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1988. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19,
  1989. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  1990. 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x57, 0x0a, 0x13, 0x55, 0x70, 0x64,
  1991. 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42,
  1992. 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70,
  1993. 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44,
  1994. 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1995. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1996. 0x22, 0x00, 0x12, 0x58, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  1997. 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x2e,
  1998. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52,
  1999. 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2000. 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  2001. 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x17,
  2002. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x61, 0x73, 0x74, 0x4c, 0x6f,
  2003. 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2004. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  2005. 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2006. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x13,
  2007. 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65,
  2008. 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2009. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67,
  2010. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2011. 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4c, 0x0a, 0x19, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b,
  2012. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69,
  2013. 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  2014. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2015. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2016. 0x74, 0x79, 0x12, 0x4a, 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69,
  2017. 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e,
  2018. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2019. 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2020. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x49,
  2021. 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75,
  2022. 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2023. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  2024. 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2025. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x41, 0x0a, 0x0e, 0x4d, 0x61, 0x74,
  2026. 0x63, 0x68, 0x69, 0x6e, 0x67, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70,
  2027. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50,
  2028. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2029. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x67, 0x0a, 0x1c,
  2030. 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e,
  2031. 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x2d, 0x2e, 0x61,
  2032. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d,
  2033. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69,
  2034. 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2035. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2036. 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x12, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x63,
  2037. 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x2d, 0x2e, 0x61, 0x70,
  2038. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65,
  2039. 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e,
  2040. 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2041. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2042. 0x74, 0x79, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x1e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x56,
  2043. 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65,
  2044. 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2045. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61,
  2046. 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2047. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x42, 0x3d, 0x0a, 0x08, 0x61,
  2048. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x50, 0x01, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69,
  2049. 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  2050. 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69,
  2051. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x3b, 0x75, 0x73, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
  2052. 0x6f, 0x33,
  2053. }
  2054. var (
  2055. file_user_proto_rawDescOnce sync.Once
  2056. file_user_proto_rawDescData = file_user_proto_rawDesc
  2057. )
  2058. func file_user_proto_rawDescGZIP() []byte {
  2059. file_user_proto_rawDescOnce.Do(func() {
  2060. file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)
  2061. })
  2062. return file_user_proto_rawDescData
  2063. }
  2064. var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 24)
  2065. var file_user_proto_goTypes = []interface{}{
  2066. (*SendNewMessageUnreadReminderRequest)(nil), // 0: api.user.SendNewMessageUnreadReminderRequest
  2067. (*SendMsgReduceCreditReply)(nil), // 1: api.user.SendMsgReduceCreditReply
  2068. (*UserFreeNum)(nil), // 2: api.user.UserFreeNum
  2069. (*ReplyScripRequest)(nil), // 3: api.user.ReplyScripRequest
  2070. (*PersonLookScripRequest)(nil), // 4: api.user.PersonLookScripRequest
  2071. (*UserFindScripRequest)(nil), // 5: api.user.UserFindScripRequest
  2072. (*DeleteScripRequest)(nil), // 6: api.user.DeleteScripRequest
  2073. (*CreateScripRequest)(nil), // 7: api.user.CreateScripRequest
  2074. (*FindMatchingAvatarAndNumReply)(nil), // 8: api.user.FindMatchingAvatarAndNumReply
  2075. (*UserRechargeRequest)(nil), // 9: api.user.UserRechargeRequest
  2076. (*RechargeList)(nil), // 10: api.user.RechargeList
  2077. (*RechargeInfo)(nil), // 11: api.user.RechargeInfo
  2078. (*InformationStatus)(nil), // 12: api.user.InformationStatus
  2079. (*UserBalance)(nil), // 13: api.user.UserBalance
  2080. (*UserFindChatListReply)(nil), // 14: api.user.UserFindChatListReply
  2081. (*UserChatInfo)(nil), // 15: api.user.UserChatInfo
  2082. (*UserInfo)(nil), // 16: api.user.UserInfo
  2083. (*KeyRequest)(nil), // 17: api.user.KeyRequest
  2084. (*CreatePayRequest)(nil), // 18: api.user.CreatePayRequest
  2085. (*PayInfo)(nil), // 19: api.user.PayInfo
  2086. (*PayOrderInfo)(nil), // 20: api.user.PayOrderInfo
  2087. (*PayOrderList)(nil), // 21: api.user.PayOrderList
  2088. (*FindPayOrderListRequest)(nil), // 22: api.user.FindPayOrderListRequest
  2089. (*PayCallbackReply)(nil), // 23: api.user.PayCallbackReply
  2090. (*common.Message)(nil), // 24: api.common.Message
  2091. (*structpb.Value)(nil), // 25: google.protobuf.Value
  2092. (*emptypb.Empty)(nil), // 26: google.protobuf.Empty
  2093. (*common.SendPhoneCodeRequest)(nil), // 27: api.common.SendPhoneCodeRequest
  2094. (*common.CheckPhoneCodeRequest)(nil), // 28: api.common.CheckPhoneCodeRequest
  2095. (*common.UpdateInformationRequest)(nil), // 29: api.common.UpdateInformationRequest
  2096. (*common.CreateChatRoomParam)(nil), // 30: api.common.CreateChatRoomParam
  2097. (*common.PersonParam)(nil), // 31: api.common.PersonParam
  2098. (*common.ListPageRequest)(nil), // 32: api.common.ListPageRequest
  2099. (*common.WxConfReq)(nil), // 33: api.common.WxConfReq
  2100. (*common.SexReq)(nil), // 34: api.common.SexReq
  2101. (*common.ListPage2Request)(nil), // 35: api.common.ListPage2Request
  2102. (*common.FindChatRecordListRequest)(nil), // 36: api.common.FindChatRecordListRequest
  2103. (*common.FindChatRoomMsgRequest)(nil), // 37: api.common.FindChatRoomMsgRequest
  2104. (*common.MemeRequest)(nil), // 38: api.common.MemeRequest
  2105. (*common.FindChatTopicRequest)(nil), // 39: api.common.FindChatTopicRequest
  2106. (*common.RandomNum)(nil), // 40: api.common.RandomNum
  2107. (*common.RandomNumAndSex)(nil), // 41: api.common.RandomNumAndSex
  2108. (*common.ReportChatRequest)(nil), // 42: api.common.ReportChatRequest
  2109. (*common.UpdateLastScripIDRequest)(nil), // 43: api.common.UpdateLastScripIDRequest
  2110. (*common.FindScripRequest)(nil), // 44: api.common.FindScripRequest
  2111. (*common.RoomIDRequest)(nil), // 45: api.common.RoomIDRequest
  2112. (*common.PartnerIDParam)(nil), // 46: api.common.PartnerIDParam
  2113. (*common.PersonIDParam)(nil), // 47: api.common.PersonIDParam
  2114. (*common.PersonIDList)(nil), // 48: api.common.PersonIDList
  2115. (*common.UpdateLastScripIDDBRequest)(nil), // 49: api.common.UpdateLastScripIDDBRequest
  2116. (*common.FindRecommendRequest)(nil), // 50: api.common.FindRecommendRequest
  2117. (*chat.RoomReply)(nil), // 51: api.chat.RoomReply
  2118. (*common.HomeInfo)(nil), // 52: api.common.HomeInfo
  2119. (*common.LookedAndLikedNum)(nil), // 53: api.common.LookedAndLikedNum
  2120. (*statistics.LookAndLikeListReply)(nil), // 54: api.statistics.LookAndLikeListReply
  2121. (*common.WxConfResponse)(nil), // 55: api.common.WxConfResponse
  2122. (*common.TagListReply)(nil), // 56: api.common.TagListReply
  2123. (*common.RecommendPersonListReply)(nil), // 57: api.common.RecommendPersonListReply
  2124. (*common.ChatRecordListReply)(nil), // 58: api.common.ChatRecordListReply
  2125. (*common.ChatRoomMsg)(nil), // 59: api.common.ChatRoomMsg
  2126. (*common.IsLike)(nil), // 60: api.common.IsLike
  2127. (*common.MemeList)(nil), // 61: api.common.MemeList
  2128. (*common.ChatTopicList)(nil), // 62: api.common.ChatTopicList
  2129. (*common.CommonTextList)(nil), // 63: api.common.CommonTextList
  2130. (*common.MemeTitleList)(nil), // 64: api.common.MemeTitleList
  2131. (*common.ChatCardInfo)(nil), // 65: api.common.ChatCardInfo
  2132. (*common.FindOverSevenDayAvatarReply)(nil), // 66: api.common.FindOverSevenDayAvatarReply
  2133. (*common.ScripID)(nil), // 67: api.common.ScripID
  2134. (*common.ScripReply)(nil), // 68: api.common.ScripReply
  2135. (*common.ScripInfo)(nil), // 69: api.common.ScripInfo
  2136. (*common.ChatRecordInfo)(nil), // 70: api.common.ChatRecordInfo
  2137. (*chat.UnreadNumReply)(nil), // 71: api.chat.UnreadNumReply
  2138. (*chat.UserRoomInfo)(nil), // 72: api.chat.UserRoomInfo
  2139. (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 73: api.chat.CheckUserPartnerIsRelationshipReply
  2140. (*common.AddFriendMessageInfo)(nil), // 74: api.common.AddFriendMessageInfo
  2141. (*statistics.LookAndLikeMessageReply)(nil), // 75: api.statistics.LookAndLikeMessageReply
  2142. (*statistics.LookMessageReply)(nil), // 76: api.statistics.LookMessageReply
  2143. (*chat.WindowInfo)(nil), // 77: api.chat.WindowInfo
  2144. (*chat.GetRandomMatchingReply)(nil), // 78: api.chat.GetRandomMatchingReply
  2145. (*common.PersonMsg)(nil), // 79: api.common.PersonMsg
  2146. (*common.PersonDBReply)(nil), // 80: api.common.PersonDBReply
  2147. }
  2148. var file_user_proto_depIdxs = []int32{
  2149. 24, // 0: api.user.ReplyScripRequest.message:type_name -> api.common.Message
  2150. 11, // 1: api.user.RechargeList.list:type_name -> api.user.RechargeInfo
  2151. 15, // 2: api.user.UserFindChatListReply.list:type_name -> api.user.UserChatInfo
  2152. 25, // 3: api.user.PayInfo.payInfo:type_name -> google.protobuf.Value
  2153. 20, // 4: api.user.PayOrderList.list:type_name -> api.user.PayOrderInfo
  2154. 26, // 5: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
  2155. 27, // 6: api.user.User.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  2156. 28, // 7: api.user.User.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  2157. 29, // 8: api.user.User.UpdateUserInformation:input_type -> api.common.UpdateInformationRequest
  2158. 30, // 9: api.user.User.CreateUserPersonRoom:input_type -> api.common.CreateChatRoomParam
  2159. 26, // 10: api.user.User.GetUserBalance:input_type -> google.protobuf.Empty
  2160. 31, // 11: api.user.User.UserGetHomeInfo:input_type -> api.common.PersonParam
  2161. 31, // 12: api.user.User.UserGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  2162. 32, // 13: api.user.User.FindLookList:input_type -> api.common.ListPageRequest
  2163. 33, // 14: api.user.User.WxConf:input_type -> api.common.WxConfReq
  2164. 34, // 15: api.user.User.FindTagListBySex:input_type -> api.common.SexReq
  2165. 35, // 16: api.user.User.FindOnlineList:input_type -> api.common.ListPage2Request
  2166. 32, // 17: api.user.User.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  2167. 32, // 18: api.user.User.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  2168. 36, // 19: api.user.User.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  2169. 37, // 20: api.user.User.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  2170. 31, // 21: api.user.User.GetUserIsLike:input_type -> api.common.PersonParam
  2171. 38, // 22: api.user.User.FindMemeByType:input_type -> api.common.MemeRequest
  2172. 39, // 23: api.user.User.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  2173. 40, // 24: api.user.User.RandomMeme:input_type -> api.common.RandomNum
  2174. 41, // 25: api.user.User.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  2175. 26, // 26: api.user.User.FindMemeTitle:input_type -> google.protobuf.Empty
  2176. 31, // 27: api.user.User.UserGetChatCard:input_type -> api.common.PersonParam
  2177. 26, // 28: api.user.User.FindChatTopicTitle:input_type -> google.protobuf.Empty
  2178. 31, // 29: api.user.User.UserLike:input_type -> api.common.PersonParam
  2179. 31, // 30: api.user.User.UserUnLike:input_type -> api.common.PersonParam
  2180. 42, // 31: api.user.User.Report:input_type -> api.common.ReportChatRequest
  2181. 26, // 32: api.user.User.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  2182. 43, // 33: api.user.User.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  2183. 7, // 34: api.user.User.CreateScrip:input_type -> api.user.CreateScripRequest
  2184. 6, // 35: api.user.User.DeleteScrip:input_type -> api.user.DeleteScripRequest
  2185. 5, // 36: api.user.User.FindMyScrip:input_type -> api.user.UserFindScripRequest
  2186. 44, // 37: api.user.User.FindOtherScrip:input_type -> api.common.FindScripRequest
  2187. 5, // 38: api.user.User.FindRecommendScrip:input_type -> api.user.UserFindScripRequest
  2188. 4, // 39: api.user.User.PersonLookScrip:input_type -> api.user.PersonLookScripRequest
  2189. 26, // 40: api.user.User.PersonClickLookBack:input_type -> google.protobuf.Empty
  2190. 3, // 41: api.user.User.PersonReplyScrip:input_type -> api.user.ReplyScripRequest
  2191. 45, // 42: api.user.User.UserDeleteChat:input_type -> api.common.RoomIDRequest
  2192. 26, // 43: api.user.User.GetUserAllUnreadNum:input_type -> google.protobuf.Empty
  2193. 31, // 44: api.user.User.GetUserRoomByPerson:input_type -> api.common.PersonParam
  2194. 32, // 45: api.user.User.FindLikeList:input_type -> api.common.ListPageRequest
  2195. 32, // 46: api.user.User.FindLikedList:input_type -> api.common.ListPageRequest
  2196. 45, // 47: api.user.User.UserSetBlackChat:input_type -> api.common.RoomIDRequest
  2197. 46, // 48: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.common.PartnerIDParam
  2198. 17, // 49: api.user.User.GetPartnerCircleInfo:input_type -> api.user.KeyRequest
  2199. 26, // 50: api.user.User.GetLookAndLikeStatisticsMessage:input_type -> google.protobuf.Empty
  2200. 26, // 51: api.user.User.GetUserLookNum:input_type -> google.protobuf.Empty
  2201. 26, // 52: api.user.User.UserFinishInformation:input_type -> google.protobuf.Empty
  2202. 26, // 53: api.user.User.UserInformationStatus:input_type -> google.protobuf.Empty
  2203. 26, // 54: api.user.User.UserGetInformationAward:input_type -> google.protobuf.Empty
  2204. 31, // 55: api.user.User.UnlockLookRecord:input_type -> api.common.PersonParam
  2205. 9, // 56: api.user.User.UserRecharge:input_type -> api.user.UserRechargeRequest
  2206. 26, // 57: api.user.User.FindRechargeList:input_type -> google.protobuf.Empty
  2207. 22, // 58: api.user.User.FindPayList:input_type -> api.user.FindPayOrderListRequest
  2208. 26, // 59: api.user.User.FindRecommendPersonList:input_type -> google.protobuf.Empty
  2209. 26, // 60: api.user.User.FindMatchingAvatarAndNum:input_type -> google.protobuf.Empty
  2210. 26, // 61: api.user.User.GetWindowInfo:input_type -> google.protobuf.Empty
  2211. 26, // 62: api.user.User.GetUserFreeNum:input_type -> google.protobuf.Empty
  2212. 34, // 63: api.user.User.GetRandomMatching:input_type -> api.common.SexReq
  2213. 45, // 64: api.user.User.UnlockVoice:input_type -> api.common.RoomIDRequest
  2214. 45, // 65: api.user.User.UnlockPicture:input_type -> api.common.RoomIDRequest
  2215. 26, // 66: api.user.User.UpdateUserIsRegister:input_type -> google.protobuf.Empty
  2216. 30, // 67: api.user.User.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  2217. 47, // 68: api.user.User.GetUserDBMsg:input_type -> api.common.PersonIDParam
  2218. 48, // 69: api.user.User.FindUserDBList:input_type -> api.common.PersonIDList
  2219. 49, // 70: api.user.User.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  2220. 50, // 71: api.user.User.FindRecommendUserDBList:input_type -> api.common.FindRecommendRequest
  2221. 47, // 72: api.user.User.UpdateUserLastLoginTime:input_type -> api.common.PersonIDParam
  2222. 31, // 73: api.user.User.SendMsgReduceCredit:input_type -> api.common.PersonParam
  2223. 31, // 74: api.user.User.LookBackScripReduceCredit:input_type -> api.common.PersonParam
  2224. 31, // 75: api.user.User.CreateScripReduceCredit:input_type -> api.common.PersonParam
  2225. 31, // 76: api.user.User.ReplyScripReduceCredit:input_type -> api.common.PersonParam
  2226. 31, // 77: api.user.User.MatchingCredit:input_type -> api.common.PersonParam
  2227. 0, // 78: api.user.User.SendNewMessageUnreadReminder:input_type -> api.user.SendNewMessageUnreadReminderRequest
  2228. 0, // 79: api.user.User.SendRecallReminder:input_type -> api.user.SendNewMessageUnreadReminderRequest
  2229. 47, // 80: api.user.User.SendNewVisitorTemplateReminder:input_type -> api.common.PersonIDParam
  2230. 16, // 81: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
  2231. 26, // 82: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
  2232. 26, // 83: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
  2233. 26, // 84: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
  2234. 51, // 85: api.user.User.CreateUserPersonRoom:output_type -> api.chat.RoomReply
  2235. 13, // 86: api.user.User.GetUserBalance:output_type -> api.user.UserBalance
  2236. 52, // 87: api.user.User.UserGetHomeInfo:output_type -> api.common.HomeInfo
  2237. 53, // 88: api.user.User.UserGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  2238. 54, // 89: api.user.User.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  2239. 55, // 90: api.user.User.WxConf:output_type -> api.common.WxConfResponse
  2240. 56, // 91: api.user.User.FindTagListBySex:output_type -> api.common.TagListReply
  2241. 57, // 92: api.user.User.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  2242. 14, // 93: api.user.User.FindWithinSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  2243. 14, // 94: api.user.User.FindOverSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  2244. 58, // 95: api.user.User.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  2245. 59, // 96: api.user.User.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  2246. 60, // 97: api.user.User.GetUserIsLike:output_type -> api.common.IsLike
  2247. 61, // 98: api.user.User.FindMemeByType:output_type -> api.common.MemeList
  2248. 62, // 99: api.user.User.FindChatTopic:output_type -> api.common.ChatTopicList
  2249. 63, // 100: api.user.User.RandomMeme:output_type -> api.common.CommonTextList
  2250. 63, // 101: api.user.User.RandomSwiftMessage:output_type -> api.common.CommonTextList
  2251. 64, // 102: api.user.User.FindMemeTitle:output_type -> api.common.MemeTitleList
  2252. 65, // 103: api.user.User.UserGetChatCard:output_type -> api.common.ChatCardInfo
  2253. 64, // 104: api.user.User.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  2254. 26, // 105: api.user.User.UserLike:output_type -> google.protobuf.Empty
  2255. 26, // 106: api.user.User.UserUnLike:output_type -> google.protobuf.Empty
  2256. 26, // 107: api.user.User.Report:output_type -> google.protobuf.Empty
  2257. 66, // 108: api.user.User.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  2258. 26, // 109: api.user.User.UpdateLastScripID:output_type -> google.protobuf.Empty
  2259. 67, // 110: api.user.User.CreateScrip:output_type -> api.common.ScripID
  2260. 26, // 111: api.user.User.DeleteScrip:output_type -> google.protobuf.Empty
  2261. 68, // 112: api.user.User.FindMyScrip:output_type -> api.common.ScripReply
  2262. 68, // 113: api.user.User.FindOtherScrip:output_type -> api.common.ScripReply
  2263. 68, // 114: api.user.User.FindRecommendScrip:output_type -> api.common.ScripReply
  2264. 26, // 115: api.user.User.PersonLookScrip:output_type -> google.protobuf.Empty
  2265. 69, // 116: api.user.User.PersonClickLookBack:output_type -> api.common.ScripInfo
  2266. 70, // 117: api.user.User.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  2267. 26, // 118: api.user.User.UserDeleteChat:output_type -> google.protobuf.Empty
  2268. 71, // 119: api.user.User.GetUserAllUnreadNum:output_type -> api.chat.UnreadNumReply
  2269. 72, // 120: api.user.User.GetUserRoomByPerson:output_type -> api.chat.UserRoomInfo
  2270. 54, // 121: api.user.User.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  2271. 54, // 122: api.user.User.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  2272. 26, // 123: api.user.User.UserSetBlackChat:output_type -> google.protobuf.Empty
  2273. 73, // 124: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  2274. 74, // 125: api.user.User.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  2275. 75, // 126: api.user.User.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  2276. 76, // 127: api.user.User.GetUserLookNum:output_type -> api.statistics.LookMessageReply
  2277. 26, // 128: api.user.User.UserFinishInformation:output_type -> google.protobuf.Empty
  2278. 12, // 129: api.user.User.UserInformationStatus:output_type -> api.user.InformationStatus
  2279. 26, // 130: api.user.User.UserGetInformationAward:output_type -> google.protobuf.Empty
  2280. 26, // 131: api.user.User.UnlockLookRecord:output_type -> google.protobuf.Empty
  2281. 19, // 132: api.user.User.UserRecharge:output_type -> api.user.PayInfo
  2282. 10, // 133: api.user.User.FindRechargeList:output_type -> api.user.RechargeList
  2283. 21, // 134: api.user.User.FindPayList:output_type -> api.user.PayOrderList
  2284. 57, // 135: api.user.User.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  2285. 8, // 136: api.user.User.FindMatchingAvatarAndNum:output_type -> api.user.FindMatchingAvatarAndNumReply
  2286. 77, // 137: api.user.User.GetWindowInfo:output_type -> api.chat.WindowInfo
  2287. 2, // 138: api.user.User.GetUserFreeNum:output_type -> api.user.UserFreeNum
  2288. 78, // 139: api.user.User.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  2289. 26, // 140: api.user.User.UnlockVoice:output_type -> google.protobuf.Empty
  2290. 26, // 141: api.user.User.UnlockPicture:output_type -> google.protobuf.Empty
  2291. 26, // 142: api.user.User.UpdateUserIsRegister:output_type -> google.protobuf.Empty
  2292. 51, // 143: api.user.User.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  2293. 79, // 144: api.user.User.GetUserDBMsg:output_type -> api.common.PersonMsg
  2294. 80, // 145: api.user.User.FindUserDBList:output_type -> api.common.PersonDBReply
  2295. 26, // 146: api.user.User.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  2296. 80, // 147: api.user.User.FindRecommendUserDBList:output_type -> api.common.PersonDBReply
  2297. 26, // 148: api.user.User.UpdateUserLastLoginTime:output_type -> google.protobuf.Empty
  2298. 26, // 149: api.user.User.SendMsgReduceCredit:output_type -> google.protobuf.Empty
  2299. 26, // 150: api.user.User.LookBackScripReduceCredit:output_type -> google.protobuf.Empty
  2300. 26, // 151: api.user.User.CreateScripReduceCredit:output_type -> google.protobuf.Empty
  2301. 26, // 152: api.user.User.ReplyScripReduceCredit:output_type -> google.protobuf.Empty
  2302. 26, // 153: api.user.User.MatchingCredit:output_type -> google.protobuf.Empty
  2303. 26, // 154: api.user.User.SendNewMessageUnreadReminder:output_type -> google.protobuf.Empty
  2304. 26, // 155: api.user.User.SendRecallReminder:output_type -> google.protobuf.Empty
  2305. 26, // 156: api.user.User.SendNewVisitorTemplateReminder:output_type -> google.protobuf.Empty
  2306. 81, // [81:157] is the sub-list for method output_type
  2307. 5, // [5:81] is the sub-list for method input_type
  2308. 5, // [5:5] is the sub-list for extension type_name
  2309. 5, // [5:5] is the sub-list for extension extendee
  2310. 0, // [0:5] is the sub-list for field type_name
  2311. }
  2312. func init() { file_user_proto_init() }
  2313. func file_user_proto_init() {
  2314. if File_user_proto != nil {
  2315. return
  2316. }
  2317. if !protoimpl.UnsafeEnabled {
  2318. file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2319. switch v := v.(*SendNewMessageUnreadReminderRequest); i {
  2320. case 0:
  2321. return &v.state
  2322. case 1:
  2323. return &v.sizeCache
  2324. case 2:
  2325. return &v.unknownFields
  2326. default:
  2327. return nil
  2328. }
  2329. }
  2330. file_user_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2331. switch v := v.(*SendMsgReduceCreditReply); i {
  2332. case 0:
  2333. return &v.state
  2334. case 1:
  2335. return &v.sizeCache
  2336. case 2:
  2337. return &v.unknownFields
  2338. default:
  2339. return nil
  2340. }
  2341. }
  2342. file_user_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2343. switch v := v.(*UserFreeNum); i {
  2344. case 0:
  2345. return &v.state
  2346. case 1:
  2347. return &v.sizeCache
  2348. case 2:
  2349. return &v.unknownFields
  2350. default:
  2351. return nil
  2352. }
  2353. }
  2354. file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2355. switch v := v.(*ReplyScripRequest); i {
  2356. case 0:
  2357. return &v.state
  2358. case 1:
  2359. return &v.sizeCache
  2360. case 2:
  2361. return &v.unknownFields
  2362. default:
  2363. return nil
  2364. }
  2365. }
  2366. file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2367. switch v := v.(*PersonLookScripRequest); i {
  2368. case 0:
  2369. return &v.state
  2370. case 1:
  2371. return &v.sizeCache
  2372. case 2:
  2373. return &v.unknownFields
  2374. default:
  2375. return nil
  2376. }
  2377. }
  2378. file_user_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2379. switch v := v.(*UserFindScripRequest); i {
  2380. case 0:
  2381. return &v.state
  2382. case 1:
  2383. return &v.sizeCache
  2384. case 2:
  2385. return &v.unknownFields
  2386. default:
  2387. return nil
  2388. }
  2389. }
  2390. file_user_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2391. switch v := v.(*DeleteScripRequest); i {
  2392. case 0:
  2393. return &v.state
  2394. case 1:
  2395. return &v.sizeCache
  2396. case 2:
  2397. return &v.unknownFields
  2398. default:
  2399. return nil
  2400. }
  2401. }
  2402. file_user_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2403. switch v := v.(*CreateScripRequest); i {
  2404. case 0:
  2405. return &v.state
  2406. case 1:
  2407. return &v.sizeCache
  2408. case 2:
  2409. return &v.unknownFields
  2410. default:
  2411. return nil
  2412. }
  2413. }
  2414. file_user_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2415. switch v := v.(*FindMatchingAvatarAndNumReply); i {
  2416. case 0:
  2417. return &v.state
  2418. case 1:
  2419. return &v.sizeCache
  2420. case 2:
  2421. return &v.unknownFields
  2422. default:
  2423. return nil
  2424. }
  2425. }
  2426. file_user_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2427. switch v := v.(*UserRechargeRequest); i {
  2428. case 0:
  2429. return &v.state
  2430. case 1:
  2431. return &v.sizeCache
  2432. case 2:
  2433. return &v.unknownFields
  2434. default:
  2435. return nil
  2436. }
  2437. }
  2438. file_user_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2439. switch v := v.(*RechargeList); i {
  2440. case 0:
  2441. return &v.state
  2442. case 1:
  2443. return &v.sizeCache
  2444. case 2:
  2445. return &v.unknownFields
  2446. default:
  2447. return nil
  2448. }
  2449. }
  2450. file_user_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2451. switch v := v.(*RechargeInfo); i {
  2452. case 0:
  2453. return &v.state
  2454. case 1:
  2455. return &v.sizeCache
  2456. case 2:
  2457. return &v.unknownFields
  2458. default:
  2459. return nil
  2460. }
  2461. }
  2462. file_user_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2463. switch v := v.(*InformationStatus); i {
  2464. case 0:
  2465. return &v.state
  2466. case 1:
  2467. return &v.sizeCache
  2468. case 2:
  2469. return &v.unknownFields
  2470. default:
  2471. return nil
  2472. }
  2473. }
  2474. file_user_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2475. switch v := v.(*UserBalance); i {
  2476. case 0:
  2477. return &v.state
  2478. case 1:
  2479. return &v.sizeCache
  2480. case 2:
  2481. return &v.unknownFields
  2482. default:
  2483. return nil
  2484. }
  2485. }
  2486. file_user_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2487. switch v := v.(*UserFindChatListReply); i {
  2488. case 0:
  2489. return &v.state
  2490. case 1:
  2491. return &v.sizeCache
  2492. case 2:
  2493. return &v.unknownFields
  2494. default:
  2495. return nil
  2496. }
  2497. }
  2498. file_user_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2499. switch v := v.(*UserChatInfo); i {
  2500. case 0:
  2501. return &v.state
  2502. case 1:
  2503. return &v.sizeCache
  2504. case 2:
  2505. return &v.unknownFields
  2506. default:
  2507. return nil
  2508. }
  2509. }
  2510. file_user_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2511. switch v := v.(*UserInfo); i {
  2512. case 0:
  2513. return &v.state
  2514. case 1:
  2515. return &v.sizeCache
  2516. case 2:
  2517. return &v.unknownFields
  2518. default:
  2519. return nil
  2520. }
  2521. }
  2522. file_user_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2523. switch v := v.(*KeyRequest); i {
  2524. case 0:
  2525. return &v.state
  2526. case 1:
  2527. return &v.sizeCache
  2528. case 2:
  2529. return &v.unknownFields
  2530. default:
  2531. return nil
  2532. }
  2533. }
  2534. file_user_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2535. switch v := v.(*CreatePayRequest); i {
  2536. case 0:
  2537. return &v.state
  2538. case 1:
  2539. return &v.sizeCache
  2540. case 2:
  2541. return &v.unknownFields
  2542. default:
  2543. return nil
  2544. }
  2545. }
  2546. file_user_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2547. switch v := v.(*PayInfo); i {
  2548. case 0:
  2549. return &v.state
  2550. case 1:
  2551. return &v.sizeCache
  2552. case 2:
  2553. return &v.unknownFields
  2554. default:
  2555. return nil
  2556. }
  2557. }
  2558. file_user_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2559. switch v := v.(*PayOrderInfo); i {
  2560. case 0:
  2561. return &v.state
  2562. case 1:
  2563. return &v.sizeCache
  2564. case 2:
  2565. return &v.unknownFields
  2566. default:
  2567. return nil
  2568. }
  2569. }
  2570. file_user_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2571. switch v := v.(*PayOrderList); i {
  2572. case 0:
  2573. return &v.state
  2574. case 1:
  2575. return &v.sizeCache
  2576. case 2:
  2577. return &v.unknownFields
  2578. default:
  2579. return nil
  2580. }
  2581. }
  2582. file_user_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2583. switch v := v.(*FindPayOrderListRequest); i {
  2584. case 0:
  2585. return &v.state
  2586. case 1:
  2587. return &v.sizeCache
  2588. case 2:
  2589. return &v.unknownFields
  2590. default:
  2591. return nil
  2592. }
  2593. }
  2594. file_user_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2595. switch v := v.(*PayCallbackReply); i {
  2596. case 0:
  2597. return &v.state
  2598. case 1:
  2599. return &v.sizeCache
  2600. case 2:
  2601. return &v.unknownFields
  2602. default:
  2603. return nil
  2604. }
  2605. }
  2606. }
  2607. type x struct{}
  2608. out := protoimpl.TypeBuilder{
  2609. File: protoimpl.DescBuilder{
  2610. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2611. RawDescriptor: file_user_proto_rawDesc,
  2612. NumEnums: 0,
  2613. NumMessages: 24,
  2614. NumExtensions: 0,
  2615. NumServices: 1,
  2616. },
  2617. GoTypes: file_user_proto_goTypes,
  2618. DependencyIndexes: file_user_proto_depIdxs,
  2619. MessageInfos: file_user_proto_msgTypes,
  2620. }.Build()
  2621. File_user_proto = out.File
  2622. file_user_proto_rawDesc = nil
  2623. file_user_proto_goTypes = nil
  2624. file_user_proto_depIdxs = nil
  2625. }