user.pb.go 116 KB

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