user.pb.go 126 KB

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