test.pb.go 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415
  1. // Copyright 2019 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Test Protobuf definitions with proto2 syntax.
  5. // Code generated by protoc-gen-go. DO NOT EDIT.
  6. // source: pb2/test.proto
  7. package pb2
  8. import (
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoiface "google.golang.org/protobuf/runtime/protoiface"
  11. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  12. anypb "google.golang.org/protobuf/types/known/anypb"
  13. durationpb "google.golang.org/protobuf/types/known/durationpb"
  14. emptypb "google.golang.org/protobuf/types/known/emptypb"
  15. fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb"
  16. structpb "google.golang.org/protobuf/types/known/structpb"
  17. timestamppb "google.golang.org/protobuf/types/known/timestamppb"
  18. wrapperspb "google.golang.org/protobuf/types/known/wrapperspb"
  19. reflect "reflect"
  20. sync "sync"
  21. )
  22. type Enum int32
  23. const (
  24. Enum_ONE Enum = 1
  25. Enum_TWO Enum = 2
  26. Enum_TEN Enum = 10
  27. )
  28. // Enum value maps for Enum.
  29. var (
  30. Enum_name = map[int32]string{
  31. 1: "ONE",
  32. 2: "TWO",
  33. 10: "TEN",
  34. }
  35. Enum_value = map[string]int32{
  36. "ONE": 1,
  37. "TWO": 2,
  38. "TEN": 10,
  39. }
  40. )
  41. func (x Enum) Enum() *Enum {
  42. p := new(Enum)
  43. *p = x
  44. return p
  45. }
  46. func (x Enum) String() string {
  47. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  48. }
  49. func (Enum) Descriptor() protoreflect.EnumDescriptor {
  50. return file_pb2_test_proto_enumTypes[0].Descriptor()
  51. }
  52. func (Enum) Type() protoreflect.EnumType {
  53. return &file_pb2_test_proto_enumTypes[0]
  54. }
  55. func (x Enum) Number() protoreflect.EnumNumber {
  56. return protoreflect.EnumNumber(x)
  57. }
  58. // Deprecated: Do not use.
  59. func (x *Enum) UnmarshalJSON(b []byte) error {
  60. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  61. if err != nil {
  62. return err
  63. }
  64. *x = Enum(num)
  65. return nil
  66. }
  67. // Deprecated: Use Enum.Descriptor instead.
  68. func (Enum) EnumDescriptor() ([]byte, []int) {
  69. return file_pb2_test_proto_rawDescGZIP(), []int{0}
  70. }
  71. type Enums_NestedEnum int32
  72. const (
  73. Enums_UNO Enums_NestedEnum = 1
  74. Enums_DOS Enums_NestedEnum = 2
  75. Enums_DIEZ Enums_NestedEnum = 10
  76. )
  77. // Enum value maps for Enums_NestedEnum.
  78. var (
  79. Enums_NestedEnum_name = map[int32]string{
  80. 1: "UNO",
  81. 2: "DOS",
  82. 10: "DIEZ",
  83. }
  84. Enums_NestedEnum_value = map[string]int32{
  85. "UNO": 1,
  86. "DOS": 2,
  87. "DIEZ": 10,
  88. }
  89. )
  90. func (x Enums_NestedEnum) Enum() *Enums_NestedEnum {
  91. p := new(Enums_NestedEnum)
  92. *p = x
  93. return p
  94. }
  95. func (x Enums_NestedEnum) String() string {
  96. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  97. }
  98. func (Enums_NestedEnum) Descriptor() protoreflect.EnumDescriptor {
  99. return file_pb2_test_proto_enumTypes[1].Descriptor()
  100. }
  101. func (Enums_NestedEnum) Type() protoreflect.EnumType {
  102. return &file_pb2_test_proto_enumTypes[1]
  103. }
  104. func (x Enums_NestedEnum) Number() protoreflect.EnumNumber {
  105. return protoreflect.EnumNumber(x)
  106. }
  107. // Deprecated: Do not use.
  108. func (x *Enums_NestedEnum) UnmarshalJSON(b []byte) error {
  109. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  110. if err != nil {
  111. return err
  112. }
  113. *x = Enums_NestedEnum(num)
  114. return nil
  115. }
  116. // Deprecated: Use Enums_NestedEnum.Descriptor instead.
  117. func (Enums_NestedEnum) EnumDescriptor() ([]byte, []int) {
  118. return file_pb2_test_proto_rawDescGZIP(), []int{1, 0}
  119. }
  120. // Scalars contains optional scalar fields.
  121. type Scalars struct {
  122. state protoimpl.MessageState
  123. sizeCache protoimpl.SizeCache
  124. unknownFields protoimpl.UnknownFields
  125. OptBool *bool `protobuf:"varint,1,opt,name=opt_bool,json=optBool" json:"opt_bool,omitempty"`
  126. OptInt32 *int32 `protobuf:"varint,2,opt,name=opt_int32,json=optInt32" json:"opt_int32,omitempty"`
  127. OptInt64 *int64 `protobuf:"varint,3,opt,name=opt_int64,json=optInt64" json:"opt_int64,omitempty"`
  128. OptUint32 *uint32 `protobuf:"varint,4,opt,name=opt_uint32,json=optUint32" json:"opt_uint32,omitempty"`
  129. OptUint64 *uint64 `protobuf:"varint,5,opt,name=opt_uint64,json=optUint64" json:"opt_uint64,omitempty"`
  130. OptSint32 *int32 `protobuf:"zigzag32,6,opt,name=opt_sint32,json=optSint32" json:"opt_sint32,omitempty"`
  131. OptSint64 *int64 `protobuf:"zigzag64,7,opt,name=opt_sint64,json=optSint64" json:"opt_sint64,omitempty"`
  132. OptFixed32 *uint32 `protobuf:"fixed32,8,opt,name=opt_fixed32,json=optFixed32" json:"opt_fixed32,omitempty"`
  133. OptFixed64 *uint64 `protobuf:"fixed64,9,opt,name=opt_fixed64,json=optFixed64" json:"opt_fixed64,omitempty"`
  134. OptSfixed32 *int32 `protobuf:"fixed32,10,opt,name=opt_sfixed32,json=optSfixed32" json:"opt_sfixed32,omitempty"`
  135. OptSfixed64 *int64 `protobuf:"fixed64,11,opt,name=opt_sfixed64,json=optSfixed64" json:"opt_sfixed64,omitempty"`
  136. OptFloat *float32 `protobuf:"fixed32,20,opt,name=opt_float,json=optFloat" json:"opt_float,omitempty"`
  137. OptDouble *float64 `protobuf:"fixed64,21,opt,name=opt_double,json=optDouble" json:"opt_double,omitempty"`
  138. OptBytes []byte `protobuf:"bytes,14,opt,name=opt_bytes,json=optBytes" json:"opt_bytes,omitempty"`
  139. OptString *string `protobuf:"bytes,13,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  140. }
  141. func (x *Scalars) Reset() {
  142. *x = Scalars{}
  143. }
  144. func (x *Scalars) String() string {
  145. return protoimpl.X.MessageStringOf(x)
  146. }
  147. func (*Scalars) ProtoMessage() {}
  148. func (x *Scalars) ProtoReflect() protoreflect.Message {
  149. mi := &file_pb2_test_proto_msgTypes[0]
  150. if protoimpl.UnsafeEnabled && x != nil {
  151. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  152. if ms.LoadMessageInfo() == nil {
  153. ms.StoreMessageInfo(mi)
  154. }
  155. return ms
  156. }
  157. return mi.MessageOf(x)
  158. }
  159. // Deprecated: Use Scalars.ProtoReflect.Descriptor instead.
  160. func (*Scalars) Descriptor() ([]byte, []int) {
  161. return file_pb2_test_proto_rawDescGZIP(), []int{0}
  162. }
  163. func (x *Scalars) GetOptBool() bool {
  164. if x != nil && x.OptBool != nil {
  165. return *x.OptBool
  166. }
  167. return false
  168. }
  169. func (x *Scalars) GetOptInt32() int32 {
  170. if x != nil && x.OptInt32 != nil {
  171. return *x.OptInt32
  172. }
  173. return 0
  174. }
  175. func (x *Scalars) GetOptInt64() int64 {
  176. if x != nil && x.OptInt64 != nil {
  177. return *x.OptInt64
  178. }
  179. return 0
  180. }
  181. func (x *Scalars) GetOptUint32() uint32 {
  182. if x != nil && x.OptUint32 != nil {
  183. return *x.OptUint32
  184. }
  185. return 0
  186. }
  187. func (x *Scalars) GetOptUint64() uint64 {
  188. if x != nil && x.OptUint64 != nil {
  189. return *x.OptUint64
  190. }
  191. return 0
  192. }
  193. func (x *Scalars) GetOptSint32() int32 {
  194. if x != nil && x.OptSint32 != nil {
  195. return *x.OptSint32
  196. }
  197. return 0
  198. }
  199. func (x *Scalars) GetOptSint64() int64 {
  200. if x != nil && x.OptSint64 != nil {
  201. return *x.OptSint64
  202. }
  203. return 0
  204. }
  205. func (x *Scalars) GetOptFixed32() uint32 {
  206. if x != nil && x.OptFixed32 != nil {
  207. return *x.OptFixed32
  208. }
  209. return 0
  210. }
  211. func (x *Scalars) GetOptFixed64() uint64 {
  212. if x != nil && x.OptFixed64 != nil {
  213. return *x.OptFixed64
  214. }
  215. return 0
  216. }
  217. func (x *Scalars) GetOptSfixed32() int32 {
  218. if x != nil && x.OptSfixed32 != nil {
  219. return *x.OptSfixed32
  220. }
  221. return 0
  222. }
  223. func (x *Scalars) GetOptSfixed64() int64 {
  224. if x != nil && x.OptSfixed64 != nil {
  225. return *x.OptSfixed64
  226. }
  227. return 0
  228. }
  229. func (x *Scalars) GetOptFloat() float32 {
  230. if x != nil && x.OptFloat != nil {
  231. return *x.OptFloat
  232. }
  233. return 0
  234. }
  235. func (x *Scalars) GetOptDouble() float64 {
  236. if x != nil && x.OptDouble != nil {
  237. return *x.OptDouble
  238. }
  239. return 0
  240. }
  241. func (x *Scalars) GetOptBytes() []byte {
  242. if x != nil {
  243. return x.OptBytes
  244. }
  245. return nil
  246. }
  247. func (x *Scalars) GetOptString() string {
  248. if x != nil && x.OptString != nil {
  249. return *x.OptString
  250. }
  251. return ""
  252. }
  253. // Message contains enum fields.
  254. type Enums struct {
  255. state protoimpl.MessageState
  256. sizeCache protoimpl.SizeCache
  257. unknownFields protoimpl.UnknownFields
  258. OptEnum *Enum `protobuf:"varint,1,opt,name=opt_enum,json=optEnum,enum=pb2.Enum" json:"opt_enum,omitempty"`
  259. RptEnum []Enum `protobuf:"varint,2,rep,name=rpt_enum,json=rptEnum,enum=pb2.Enum" json:"rpt_enum,omitempty"`
  260. OptNestedEnum *Enums_NestedEnum `protobuf:"varint,3,opt,name=opt_nested_enum,json=optNestedEnum,enum=pb2.Enums_NestedEnum" json:"opt_nested_enum,omitempty"`
  261. RptNestedEnum []Enums_NestedEnum `protobuf:"varint,4,rep,name=rpt_nested_enum,json=rptNestedEnum,enum=pb2.Enums_NestedEnum" json:"rpt_nested_enum,omitempty"`
  262. }
  263. func (x *Enums) Reset() {
  264. *x = Enums{}
  265. }
  266. func (x *Enums) String() string {
  267. return protoimpl.X.MessageStringOf(x)
  268. }
  269. func (*Enums) ProtoMessage() {}
  270. func (x *Enums) ProtoReflect() protoreflect.Message {
  271. mi := &file_pb2_test_proto_msgTypes[1]
  272. if protoimpl.UnsafeEnabled && x != nil {
  273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  274. if ms.LoadMessageInfo() == nil {
  275. ms.StoreMessageInfo(mi)
  276. }
  277. return ms
  278. }
  279. return mi.MessageOf(x)
  280. }
  281. // Deprecated: Use Enums.ProtoReflect.Descriptor instead.
  282. func (*Enums) Descriptor() ([]byte, []int) {
  283. return file_pb2_test_proto_rawDescGZIP(), []int{1}
  284. }
  285. func (x *Enums) GetOptEnum() Enum {
  286. if x != nil && x.OptEnum != nil {
  287. return *x.OptEnum
  288. }
  289. return Enum_ONE
  290. }
  291. func (x *Enums) GetRptEnum() []Enum {
  292. if x != nil {
  293. return x.RptEnum
  294. }
  295. return nil
  296. }
  297. func (x *Enums) GetOptNestedEnum() Enums_NestedEnum {
  298. if x != nil && x.OptNestedEnum != nil {
  299. return *x.OptNestedEnum
  300. }
  301. return Enums_UNO
  302. }
  303. func (x *Enums) GetRptNestedEnum() []Enums_NestedEnum {
  304. if x != nil {
  305. return x.RptNestedEnum
  306. }
  307. return nil
  308. }
  309. // Message contains repeated fields.
  310. type Repeats struct {
  311. state protoimpl.MessageState
  312. sizeCache protoimpl.SizeCache
  313. unknownFields protoimpl.UnknownFields
  314. RptBool []bool `protobuf:"varint,1,rep,name=rpt_bool,json=rptBool" json:"rpt_bool,omitempty"`
  315. RptInt32 []int32 `protobuf:"varint,2,rep,name=rpt_int32,json=rptInt32" json:"rpt_int32,omitempty"`
  316. RptInt64 []int64 `protobuf:"varint,3,rep,name=rpt_int64,json=rptInt64" json:"rpt_int64,omitempty"`
  317. RptUint32 []uint32 `protobuf:"varint,4,rep,name=rpt_uint32,json=rptUint32" json:"rpt_uint32,omitempty"`
  318. RptUint64 []uint64 `protobuf:"varint,5,rep,name=rpt_uint64,json=rptUint64" json:"rpt_uint64,omitempty"`
  319. RptFloat []float32 `protobuf:"fixed32,6,rep,name=rpt_float,json=rptFloat" json:"rpt_float,omitempty"`
  320. RptDouble []float64 `protobuf:"fixed64,7,rep,name=rpt_double,json=rptDouble" json:"rpt_double,omitempty"`
  321. RptString []string `protobuf:"bytes,8,rep,name=rpt_string,json=rptString" json:"rpt_string,omitempty"`
  322. RptBytes [][]byte `protobuf:"bytes,9,rep,name=rpt_bytes,json=rptBytes" json:"rpt_bytes,omitempty"`
  323. }
  324. func (x *Repeats) Reset() {
  325. *x = Repeats{}
  326. }
  327. func (x *Repeats) String() string {
  328. return protoimpl.X.MessageStringOf(x)
  329. }
  330. func (*Repeats) ProtoMessage() {}
  331. func (x *Repeats) ProtoReflect() protoreflect.Message {
  332. mi := &file_pb2_test_proto_msgTypes[2]
  333. if protoimpl.UnsafeEnabled && x != nil {
  334. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  335. if ms.LoadMessageInfo() == nil {
  336. ms.StoreMessageInfo(mi)
  337. }
  338. return ms
  339. }
  340. return mi.MessageOf(x)
  341. }
  342. // Deprecated: Use Repeats.ProtoReflect.Descriptor instead.
  343. func (*Repeats) Descriptor() ([]byte, []int) {
  344. return file_pb2_test_proto_rawDescGZIP(), []int{2}
  345. }
  346. func (x *Repeats) GetRptBool() []bool {
  347. if x != nil {
  348. return x.RptBool
  349. }
  350. return nil
  351. }
  352. func (x *Repeats) GetRptInt32() []int32 {
  353. if x != nil {
  354. return x.RptInt32
  355. }
  356. return nil
  357. }
  358. func (x *Repeats) GetRptInt64() []int64 {
  359. if x != nil {
  360. return x.RptInt64
  361. }
  362. return nil
  363. }
  364. func (x *Repeats) GetRptUint32() []uint32 {
  365. if x != nil {
  366. return x.RptUint32
  367. }
  368. return nil
  369. }
  370. func (x *Repeats) GetRptUint64() []uint64 {
  371. if x != nil {
  372. return x.RptUint64
  373. }
  374. return nil
  375. }
  376. func (x *Repeats) GetRptFloat() []float32 {
  377. if x != nil {
  378. return x.RptFloat
  379. }
  380. return nil
  381. }
  382. func (x *Repeats) GetRptDouble() []float64 {
  383. if x != nil {
  384. return x.RptDouble
  385. }
  386. return nil
  387. }
  388. func (x *Repeats) GetRptString() []string {
  389. if x != nil {
  390. return x.RptString
  391. }
  392. return nil
  393. }
  394. func (x *Repeats) GetRptBytes() [][]byte {
  395. if x != nil {
  396. return x.RptBytes
  397. }
  398. return nil
  399. }
  400. // Message type used as submessage.
  401. type Nested struct {
  402. state protoimpl.MessageState
  403. sizeCache protoimpl.SizeCache
  404. unknownFields protoimpl.UnknownFields
  405. OptString *string `protobuf:"bytes,1,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  406. OptNested *Nested `protobuf:"bytes,2,opt,name=opt_nested,json=optNested" json:"opt_nested,omitempty"`
  407. }
  408. func (x *Nested) Reset() {
  409. *x = Nested{}
  410. }
  411. func (x *Nested) String() string {
  412. return protoimpl.X.MessageStringOf(x)
  413. }
  414. func (*Nested) ProtoMessage() {}
  415. func (x *Nested) ProtoReflect() protoreflect.Message {
  416. mi := &file_pb2_test_proto_msgTypes[3]
  417. if protoimpl.UnsafeEnabled && x != nil {
  418. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  419. if ms.LoadMessageInfo() == nil {
  420. ms.StoreMessageInfo(mi)
  421. }
  422. return ms
  423. }
  424. return mi.MessageOf(x)
  425. }
  426. // Deprecated: Use Nested.ProtoReflect.Descriptor instead.
  427. func (*Nested) Descriptor() ([]byte, []int) {
  428. return file_pb2_test_proto_rawDescGZIP(), []int{3}
  429. }
  430. func (x *Nested) GetOptString() string {
  431. if x != nil && x.OptString != nil {
  432. return *x.OptString
  433. }
  434. return ""
  435. }
  436. func (x *Nested) GetOptNested() *Nested {
  437. if x != nil {
  438. return x.OptNested
  439. }
  440. return nil
  441. }
  442. // Message contains message and group fields.
  443. type Nests struct {
  444. state protoimpl.MessageState
  445. sizeCache protoimpl.SizeCache
  446. unknownFields protoimpl.UnknownFields
  447. OptNested *Nested `protobuf:"bytes,1,opt,name=opt_nested,json=optNested" json:"opt_nested,omitempty"`
  448. Optgroup *Nests_OptGroup `protobuf:"group,2,opt,name=OptGroup,json=optgroup" json:"optgroup,omitempty"`
  449. RptNested []*Nested `protobuf:"bytes,4,rep,name=rpt_nested,json=rptNested" json:"rpt_nested,omitempty"`
  450. Rptgroup []*Nests_RptGroup `protobuf:"group,5,rep,name=RptGroup,json=rptgroup" json:"rptgroup,omitempty"`
  451. }
  452. func (x *Nests) Reset() {
  453. *x = Nests{}
  454. }
  455. func (x *Nests) String() string {
  456. return protoimpl.X.MessageStringOf(x)
  457. }
  458. func (*Nests) ProtoMessage() {}
  459. func (x *Nests) ProtoReflect() protoreflect.Message {
  460. mi := &file_pb2_test_proto_msgTypes[4]
  461. if protoimpl.UnsafeEnabled && x != nil {
  462. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  463. if ms.LoadMessageInfo() == nil {
  464. ms.StoreMessageInfo(mi)
  465. }
  466. return ms
  467. }
  468. return mi.MessageOf(x)
  469. }
  470. // Deprecated: Use Nests.ProtoReflect.Descriptor instead.
  471. func (*Nests) Descriptor() ([]byte, []int) {
  472. return file_pb2_test_proto_rawDescGZIP(), []int{4}
  473. }
  474. func (x *Nests) GetOptNested() *Nested {
  475. if x != nil {
  476. return x.OptNested
  477. }
  478. return nil
  479. }
  480. func (x *Nests) GetOptgroup() *Nests_OptGroup {
  481. if x != nil {
  482. return x.Optgroup
  483. }
  484. return nil
  485. }
  486. func (x *Nests) GetRptNested() []*Nested {
  487. if x != nil {
  488. return x.RptNested
  489. }
  490. return nil
  491. }
  492. func (x *Nests) GetRptgroup() []*Nests_RptGroup {
  493. if x != nil {
  494. return x.Rptgroup
  495. }
  496. return nil
  497. }
  498. // Message contains required fields.
  499. type Requireds struct {
  500. state protoimpl.MessageState
  501. sizeCache protoimpl.SizeCache
  502. unknownFields protoimpl.UnknownFields
  503. ReqBool *bool `protobuf:"varint,1,req,name=req_bool,json=reqBool" json:"req_bool,omitempty"`
  504. ReqSfixed64 *int64 `protobuf:"fixed64,2,req,name=req_sfixed64,json=reqSfixed64" json:"req_sfixed64,omitempty"`
  505. ReqDouble *float64 `protobuf:"fixed64,3,req,name=req_double,json=reqDouble" json:"req_double,omitempty"`
  506. ReqString *string `protobuf:"bytes,4,req,name=req_string,json=reqString" json:"req_string,omitempty"`
  507. ReqEnum *Enum `protobuf:"varint,5,req,name=req_enum,json=reqEnum,enum=pb2.Enum" json:"req_enum,omitempty"`
  508. ReqNested *Nested `protobuf:"bytes,6,req,name=req_nested,json=reqNested" json:"req_nested,omitempty"`
  509. }
  510. func (x *Requireds) Reset() {
  511. *x = Requireds{}
  512. }
  513. func (x *Requireds) String() string {
  514. return protoimpl.X.MessageStringOf(x)
  515. }
  516. func (*Requireds) ProtoMessage() {}
  517. func (x *Requireds) ProtoReflect() protoreflect.Message {
  518. mi := &file_pb2_test_proto_msgTypes[5]
  519. if protoimpl.UnsafeEnabled && x != nil {
  520. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  521. if ms.LoadMessageInfo() == nil {
  522. ms.StoreMessageInfo(mi)
  523. }
  524. return ms
  525. }
  526. return mi.MessageOf(x)
  527. }
  528. // Deprecated: Use Requireds.ProtoReflect.Descriptor instead.
  529. func (*Requireds) Descriptor() ([]byte, []int) {
  530. return file_pb2_test_proto_rawDescGZIP(), []int{5}
  531. }
  532. func (x *Requireds) GetReqBool() bool {
  533. if x != nil && x.ReqBool != nil {
  534. return *x.ReqBool
  535. }
  536. return false
  537. }
  538. func (x *Requireds) GetReqSfixed64() int64 {
  539. if x != nil && x.ReqSfixed64 != nil {
  540. return *x.ReqSfixed64
  541. }
  542. return 0
  543. }
  544. func (x *Requireds) GetReqDouble() float64 {
  545. if x != nil && x.ReqDouble != nil {
  546. return *x.ReqDouble
  547. }
  548. return 0
  549. }
  550. func (x *Requireds) GetReqString() string {
  551. if x != nil && x.ReqString != nil {
  552. return *x.ReqString
  553. }
  554. return ""
  555. }
  556. func (x *Requireds) GetReqEnum() Enum {
  557. if x != nil && x.ReqEnum != nil {
  558. return *x.ReqEnum
  559. }
  560. return Enum_ONE
  561. }
  562. func (x *Requireds) GetReqNested() *Nested {
  563. if x != nil {
  564. return x.ReqNested
  565. }
  566. return nil
  567. }
  568. // Message contains both required and optional fields.
  569. type PartialRequired struct {
  570. state protoimpl.MessageState
  571. sizeCache protoimpl.SizeCache
  572. unknownFields protoimpl.UnknownFields
  573. ReqString *string `protobuf:"bytes,1,req,name=req_string,json=reqString" json:"req_string,omitempty"`
  574. OptString *string `protobuf:"bytes,2,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  575. }
  576. func (x *PartialRequired) Reset() {
  577. *x = PartialRequired{}
  578. }
  579. func (x *PartialRequired) String() string {
  580. return protoimpl.X.MessageStringOf(x)
  581. }
  582. func (*PartialRequired) ProtoMessage() {}
  583. func (x *PartialRequired) ProtoReflect() protoreflect.Message {
  584. mi := &file_pb2_test_proto_msgTypes[6]
  585. if protoimpl.UnsafeEnabled && x != nil {
  586. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  587. if ms.LoadMessageInfo() == nil {
  588. ms.StoreMessageInfo(mi)
  589. }
  590. return ms
  591. }
  592. return mi.MessageOf(x)
  593. }
  594. // Deprecated: Use PartialRequired.ProtoReflect.Descriptor instead.
  595. func (*PartialRequired) Descriptor() ([]byte, []int) {
  596. return file_pb2_test_proto_rawDescGZIP(), []int{6}
  597. }
  598. func (x *PartialRequired) GetReqString() string {
  599. if x != nil && x.ReqString != nil {
  600. return *x.ReqString
  601. }
  602. return ""
  603. }
  604. func (x *PartialRequired) GetOptString() string {
  605. if x != nil && x.OptString != nil {
  606. return *x.OptString
  607. }
  608. return ""
  609. }
  610. type NestedWithRequired struct {
  611. state protoimpl.MessageState
  612. sizeCache protoimpl.SizeCache
  613. unknownFields protoimpl.UnknownFields
  614. ReqString *string `protobuf:"bytes,1,req,name=req_string,json=reqString" json:"req_string,omitempty"`
  615. }
  616. func (x *NestedWithRequired) Reset() {
  617. *x = NestedWithRequired{}
  618. }
  619. func (x *NestedWithRequired) String() string {
  620. return protoimpl.X.MessageStringOf(x)
  621. }
  622. func (*NestedWithRequired) ProtoMessage() {}
  623. func (x *NestedWithRequired) ProtoReflect() protoreflect.Message {
  624. mi := &file_pb2_test_proto_msgTypes[7]
  625. if protoimpl.UnsafeEnabled && x != nil {
  626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  627. if ms.LoadMessageInfo() == nil {
  628. ms.StoreMessageInfo(mi)
  629. }
  630. return ms
  631. }
  632. return mi.MessageOf(x)
  633. }
  634. // Deprecated: Use NestedWithRequired.ProtoReflect.Descriptor instead.
  635. func (*NestedWithRequired) Descriptor() ([]byte, []int) {
  636. return file_pb2_test_proto_rawDescGZIP(), []int{7}
  637. }
  638. func (x *NestedWithRequired) GetReqString() string {
  639. if x != nil && x.ReqString != nil {
  640. return *x.ReqString
  641. }
  642. return ""
  643. }
  644. type IndirectRequired struct {
  645. state protoimpl.MessageState
  646. sizeCache protoimpl.SizeCache
  647. unknownFields protoimpl.UnknownFields
  648. OptNested *NestedWithRequired `protobuf:"bytes,1,opt,name=opt_nested,json=optNested" json:"opt_nested,omitempty"`
  649. RptNested []*NestedWithRequired `protobuf:"bytes,2,rep,name=rpt_nested,json=rptNested" json:"rpt_nested,omitempty"`
  650. StrToNested map[string]*NestedWithRequired `protobuf:"bytes,3,rep,name=str_to_nested,json=strToNested" json:"str_to_nested,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  651. // Types that are assignable to Union:
  652. // *IndirectRequired_OneofNested
  653. Union isIndirectRequired_Union `protobuf_oneof:"union"`
  654. }
  655. func (x *IndirectRequired) Reset() {
  656. *x = IndirectRequired{}
  657. }
  658. func (x *IndirectRequired) String() string {
  659. return protoimpl.X.MessageStringOf(x)
  660. }
  661. func (*IndirectRequired) ProtoMessage() {}
  662. func (x *IndirectRequired) ProtoReflect() protoreflect.Message {
  663. mi := &file_pb2_test_proto_msgTypes[8]
  664. if protoimpl.UnsafeEnabled && x != nil {
  665. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  666. if ms.LoadMessageInfo() == nil {
  667. ms.StoreMessageInfo(mi)
  668. }
  669. return ms
  670. }
  671. return mi.MessageOf(x)
  672. }
  673. // Deprecated: Use IndirectRequired.ProtoReflect.Descriptor instead.
  674. func (*IndirectRequired) Descriptor() ([]byte, []int) {
  675. return file_pb2_test_proto_rawDescGZIP(), []int{8}
  676. }
  677. func (x *IndirectRequired) GetOptNested() *NestedWithRequired {
  678. if x != nil {
  679. return x.OptNested
  680. }
  681. return nil
  682. }
  683. func (x *IndirectRequired) GetRptNested() []*NestedWithRequired {
  684. if x != nil {
  685. return x.RptNested
  686. }
  687. return nil
  688. }
  689. func (x *IndirectRequired) GetStrToNested() map[string]*NestedWithRequired {
  690. if x != nil {
  691. return x.StrToNested
  692. }
  693. return nil
  694. }
  695. func (m *IndirectRequired) GetUnion() isIndirectRequired_Union {
  696. if m != nil {
  697. return m.Union
  698. }
  699. return nil
  700. }
  701. func (x *IndirectRequired) GetOneofNested() *NestedWithRequired {
  702. if x, ok := x.GetUnion().(*IndirectRequired_OneofNested); ok {
  703. return x.OneofNested
  704. }
  705. return nil
  706. }
  707. type isIndirectRequired_Union interface {
  708. isIndirectRequired_Union()
  709. }
  710. type IndirectRequired_OneofNested struct {
  711. OneofNested *NestedWithRequired `protobuf:"bytes,4,opt,name=oneof_nested,json=oneofNested,oneof"`
  712. }
  713. func (*IndirectRequired_OneofNested) isIndirectRequired_Union() {}
  714. type Extensions struct {
  715. state protoimpl.MessageState
  716. sizeCache protoimpl.SizeCache
  717. unknownFields protoimpl.UnknownFields
  718. extensionFields protoimpl.ExtensionFields
  719. OptString *string `protobuf:"bytes,1,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  720. OptBool *bool `protobuf:"varint,101,opt,name=opt_bool,json=optBool" json:"opt_bool,omitempty"`
  721. OptInt32 *int32 `protobuf:"varint,2,opt,name=opt_int32,json=optInt32" json:"opt_int32,omitempty"`
  722. }
  723. func (x *Extensions) Reset() {
  724. *x = Extensions{}
  725. }
  726. func (x *Extensions) String() string {
  727. return protoimpl.X.MessageStringOf(x)
  728. }
  729. func (*Extensions) ProtoMessage() {}
  730. func (x *Extensions) ProtoReflect() protoreflect.Message {
  731. mi := &file_pb2_test_proto_msgTypes[9]
  732. if protoimpl.UnsafeEnabled && x != nil {
  733. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  734. if ms.LoadMessageInfo() == nil {
  735. ms.StoreMessageInfo(mi)
  736. }
  737. return ms
  738. }
  739. return mi.MessageOf(x)
  740. }
  741. // Deprecated: Use Extensions.ProtoReflect.Descriptor instead.
  742. func (*Extensions) Descriptor() ([]byte, []int) {
  743. return file_pb2_test_proto_rawDescGZIP(), []int{9}
  744. }
  745. var extRange_Extensions = []protoiface.ExtensionRangeV1{
  746. {Start: 20, End: 100},
  747. }
  748. // Deprecated: Use Extensions.ProtoReflect.Descriptor.ExtensionRanges instead.
  749. func (*Extensions) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  750. return extRange_Extensions
  751. }
  752. func (x *Extensions) GetOptString() string {
  753. if x != nil && x.OptString != nil {
  754. return *x.OptString
  755. }
  756. return ""
  757. }
  758. func (x *Extensions) GetOptBool() bool {
  759. if x != nil && x.OptBool != nil {
  760. return *x.OptBool
  761. }
  762. return false
  763. }
  764. func (x *Extensions) GetOptInt32() int32 {
  765. if x != nil && x.OptInt32 != nil {
  766. return *x.OptInt32
  767. }
  768. return 0
  769. }
  770. type ExtensionsContainer struct {
  771. state protoimpl.MessageState
  772. sizeCache protoimpl.SizeCache
  773. unknownFields protoimpl.UnknownFields
  774. }
  775. func (x *ExtensionsContainer) Reset() {
  776. *x = ExtensionsContainer{}
  777. }
  778. func (x *ExtensionsContainer) String() string {
  779. return protoimpl.X.MessageStringOf(x)
  780. }
  781. func (*ExtensionsContainer) ProtoMessage() {}
  782. func (x *ExtensionsContainer) ProtoReflect() protoreflect.Message {
  783. mi := &file_pb2_test_proto_msgTypes[10]
  784. if protoimpl.UnsafeEnabled && x != nil {
  785. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  786. if ms.LoadMessageInfo() == nil {
  787. ms.StoreMessageInfo(mi)
  788. }
  789. return ms
  790. }
  791. return mi.MessageOf(x)
  792. }
  793. // Deprecated: Use ExtensionsContainer.ProtoReflect.Descriptor instead.
  794. func (*ExtensionsContainer) Descriptor() ([]byte, []int) {
  795. return file_pb2_test_proto_rawDescGZIP(), []int{10}
  796. }
  797. type MessageSet struct {
  798. state protoimpl.MessageState
  799. sizeCache protoimpl.SizeCache
  800. unknownFields protoimpl.UnknownFields
  801. extensionFields protoimpl.ExtensionFields
  802. }
  803. func (x *MessageSet) Reset() {
  804. *x = MessageSet{}
  805. }
  806. func (x *MessageSet) String() string {
  807. return protoimpl.X.MessageStringOf(x)
  808. }
  809. func (*MessageSet) ProtoMessage() {}
  810. func (x *MessageSet) ProtoReflect() protoreflect.Message {
  811. mi := &file_pb2_test_proto_msgTypes[11]
  812. if protoimpl.UnsafeEnabled && x != nil {
  813. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  814. if ms.LoadMessageInfo() == nil {
  815. ms.StoreMessageInfo(mi)
  816. }
  817. return ms
  818. }
  819. return mi.MessageOf(x)
  820. }
  821. // Deprecated: Use MessageSet.ProtoReflect.Descriptor instead.
  822. func (*MessageSet) Descriptor() ([]byte, []int) {
  823. return file_pb2_test_proto_rawDescGZIP(), []int{11}
  824. }
  825. var extRange_MessageSet = []protoiface.ExtensionRangeV1{
  826. {Start: 4, End: 2147483646},
  827. }
  828. // Deprecated: Use MessageSet.ProtoReflect.Descriptor.ExtensionRanges instead.
  829. func (*MessageSet) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  830. return extRange_MessageSet
  831. }
  832. type MessageSetExtension struct {
  833. state protoimpl.MessageState
  834. sizeCache protoimpl.SizeCache
  835. unknownFields protoimpl.UnknownFields
  836. OptString *string `protobuf:"bytes,1,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  837. }
  838. func (x *MessageSetExtension) Reset() {
  839. *x = MessageSetExtension{}
  840. }
  841. func (x *MessageSetExtension) String() string {
  842. return protoimpl.X.MessageStringOf(x)
  843. }
  844. func (*MessageSetExtension) ProtoMessage() {}
  845. func (x *MessageSetExtension) ProtoReflect() protoreflect.Message {
  846. mi := &file_pb2_test_proto_msgTypes[12]
  847. if protoimpl.UnsafeEnabled && x != nil {
  848. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  849. if ms.LoadMessageInfo() == nil {
  850. ms.StoreMessageInfo(mi)
  851. }
  852. return ms
  853. }
  854. return mi.MessageOf(x)
  855. }
  856. // Deprecated: Use MessageSetExtension.ProtoReflect.Descriptor instead.
  857. func (*MessageSetExtension) Descriptor() ([]byte, []int) {
  858. return file_pb2_test_proto_rawDescGZIP(), []int{12}
  859. }
  860. func (x *MessageSetExtension) GetOptString() string {
  861. if x != nil && x.OptString != nil {
  862. return *x.OptString
  863. }
  864. return ""
  865. }
  866. type FakeMessageSet struct {
  867. state protoimpl.MessageState
  868. sizeCache protoimpl.SizeCache
  869. unknownFields protoimpl.UnknownFields
  870. extensionFields protoimpl.ExtensionFields
  871. }
  872. func (x *FakeMessageSet) Reset() {
  873. *x = FakeMessageSet{}
  874. }
  875. func (x *FakeMessageSet) String() string {
  876. return protoimpl.X.MessageStringOf(x)
  877. }
  878. func (*FakeMessageSet) ProtoMessage() {}
  879. func (x *FakeMessageSet) ProtoReflect() protoreflect.Message {
  880. mi := &file_pb2_test_proto_msgTypes[13]
  881. if protoimpl.UnsafeEnabled && x != nil {
  882. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  883. if ms.LoadMessageInfo() == nil {
  884. ms.StoreMessageInfo(mi)
  885. }
  886. return ms
  887. }
  888. return mi.MessageOf(x)
  889. }
  890. // Deprecated: Use FakeMessageSet.ProtoReflect.Descriptor instead.
  891. func (*FakeMessageSet) Descriptor() ([]byte, []int) {
  892. return file_pb2_test_proto_rawDescGZIP(), []int{13}
  893. }
  894. var extRange_FakeMessageSet = []protoiface.ExtensionRangeV1{
  895. {Start: 4, End: 536870911},
  896. }
  897. // Deprecated: Use FakeMessageSet.ProtoReflect.Descriptor.ExtensionRanges instead.
  898. func (*FakeMessageSet) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  899. return extRange_FakeMessageSet
  900. }
  901. type FakeMessageSetExtension struct {
  902. state protoimpl.MessageState
  903. sizeCache protoimpl.SizeCache
  904. unknownFields protoimpl.UnknownFields
  905. OptString *string `protobuf:"bytes,1,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  906. }
  907. func (x *FakeMessageSetExtension) Reset() {
  908. *x = FakeMessageSetExtension{}
  909. }
  910. func (x *FakeMessageSetExtension) String() string {
  911. return protoimpl.X.MessageStringOf(x)
  912. }
  913. func (*FakeMessageSetExtension) ProtoMessage() {}
  914. func (x *FakeMessageSetExtension) ProtoReflect() protoreflect.Message {
  915. mi := &file_pb2_test_proto_msgTypes[14]
  916. if protoimpl.UnsafeEnabled && x != nil {
  917. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  918. if ms.LoadMessageInfo() == nil {
  919. ms.StoreMessageInfo(mi)
  920. }
  921. return ms
  922. }
  923. return mi.MessageOf(x)
  924. }
  925. // Deprecated: Use FakeMessageSetExtension.ProtoReflect.Descriptor instead.
  926. func (*FakeMessageSetExtension) Descriptor() ([]byte, []int) {
  927. return file_pb2_test_proto_rawDescGZIP(), []int{14}
  928. }
  929. func (x *FakeMessageSetExtension) GetOptString() string {
  930. if x != nil && x.OptString != nil {
  931. return *x.OptString
  932. }
  933. return ""
  934. }
  935. // Message contains well-known type fields.
  936. type KnownTypes struct {
  937. state protoimpl.MessageState
  938. sizeCache protoimpl.SizeCache
  939. unknownFields protoimpl.UnknownFields
  940. OptBool *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=opt_bool,json=optBool" json:"opt_bool,omitempty"`
  941. OptInt32 *wrapperspb.Int32Value `protobuf:"bytes,2,opt,name=opt_int32,json=optInt32" json:"opt_int32,omitempty"`
  942. OptInt64 *wrapperspb.Int64Value `protobuf:"bytes,3,opt,name=opt_int64,json=optInt64" json:"opt_int64,omitempty"`
  943. OptUint32 *wrapperspb.UInt32Value `protobuf:"bytes,4,opt,name=opt_uint32,json=optUint32" json:"opt_uint32,omitempty"`
  944. OptUint64 *wrapperspb.UInt64Value `protobuf:"bytes,5,opt,name=opt_uint64,json=optUint64" json:"opt_uint64,omitempty"`
  945. OptFloat *wrapperspb.FloatValue `protobuf:"bytes,6,opt,name=opt_float,json=optFloat" json:"opt_float,omitempty"`
  946. OptDouble *wrapperspb.DoubleValue `protobuf:"bytes,7,opt,name=opt_double,json=optDouble" json:"opt_double,omitempty"`
  947. OptString *wrapperspb.StringValue `protobuf:"bytes,8,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  948. OptBytes *wrapperspb.BytesValue `protobuf:"bytes,9,opt,name=opt_bytes,json=optBytes" json:"opt_bytes,omitempty"`
  949. OptDuration *durationpb.Duration `protobuf:"bytes,20,opt,name=opt_duration,json=optDuration" json:"opt_duration,omitempty"`
  950. OptTimestamp *timestamppb.Timestamp `protobuf:"bytes,21,opt,name=opt_timestamp,json=optTimestamp" json:"opt_timestamp,omitempty"`
  951. OptStruct *structpb.Struct `protobuf:"bytes,25,opt,name=opt_struct,json=optStruct" json:"opt_struct,omitempty"`
  952. OptList *structpb.ListValue `protobuf:"bytes,26,opt,name=opt_list,json=optList" json:"opt_list,omitempty"`
  953. OptValue *structpb.Value `protobuf:"bytes,27,opt,name=opt_value,json=optValue" json:"opt_value,omitempty"`
  954. OptNull *structpb.NullValue `protobuf:"varint,28,opt,name=opt_null,json=optNull,enum=google.protobuf.NullValue" json:"opt_null,omitempty"`
  955. OptEmpty *emptypb.Empty `protobuf:"bytes,30,opt,name=opt_empty,json=optEmpty" json:"opt_empty,omitempty"`
  956. OptAny *anypb.Any `protobuf:"bytes,32,opt,name=opt_any,json=optAny" json:"opt_any,omitempty"`
  957. OptFieldmask *fieldmaskpb.FieldMask `protobuf:"bytes,40,opt,name=opt_fieldmask,json=optFieldmask" json:"opt_fieldmask,omitempty"`
  958. }
  959. func (x *KnownTypes) Reset() {
  960. *x = KnownTypes{}
  961. }
  962. func (x *KnownTypes) String() string {
  963. return protoimpl.X.MessageStringOf(x)
  964. }
  965. func (*KnownTypes) ProtoMessage() {}
  966. func (x *KnownTypes) ProtoReflect() protoreflect.Message {
  967. mi := &file_pb2_test_proto_msgTypes[15]
  968. if protoimpl.UnsafeEnabled && x != nil {
  969. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  970. if ms.LoadMessageInfo() == nil {
  971. ms.StoreMessageInfo(mi)
  972. }
  973. return ms
  974. }
  975. return mi.MessageOf(x)
  976. }
  977. // Deprecated: Use KnownTypes.ProtoReflect.Descriptor instead.
  978. func (*KnownTypes) Descriptor() ([]byte, []int) {
  979. return file_pb2_test_proto_rawDescGZIP(), []int{15}
  980. }
  981. func (x *KnownTypes) GetOptBool() *wrapperspb.BoolValue {
  982. if x != nil {
  983. return x.OptBool
  984. }
  985. return nil
  986. }
  987. func (x *KnownTypes) GetOptInt32() *wrapperspb.Int32Value {
  988. if x != nil {
  989. return x.OptInt32
  990. }
  991. return nil
  992. }
  993. func (x *KnownTypes) GetOptInt64() *wrapperspb.Int64Value {
  994. if x != nil {
  995. return x.OptInt64
  996. }
  997. return nil
  998. }
  999. func (x *KnownTypes) GetOptUint32() *wrapperspb.UInt32Value {
  1000. if x != nil {
  1001. return x.OptUint32
  1002. }
  1003. return nil
  1004. }
  1005. func (x *KnownTypes) GetOptUint64() *wrapperspb.UInt64Value {
  1006. if x != nil {
  1007. return x.OptUint64
  1008. }
  1009. return nil
  1010. }
  1011. func (x *KnownTypes) GetOptFloat() *wrapperspb.FloatValue {
  1012. if x != nil {
  1013. return x.OptFloat
  1014. }
  1015. return nil
  1016. }
  1017. func (x *KnownTypes) GetOptDouble() *wrapperspb.DoubleValue {
  1018. if x != nil {
  1019. return x.OptDouble
  1020. }
  1021. return nil
  1022. }
  1023. func (x *KnownTypes) GetOptString() *wrapperspb.StringValue {
  1024. if x != nil {
  1025. return x.OptString
  1026. }
  1027. return nil
  1028. }
  1029. func (x *KnownTypes) GetOptBytes() *wrapperspb.BytesValue {
  1030. if x != nil {
  1031. return x.OptBytes
  1032. }
  1033. return nil
  1034. }
  1035. func (x *KnownTypes) GetOptDuration() *durationpb.Duration {
  1036. if x != nil {
  1037. return x.OptDuration
  1038. }
  1039. return nil
  1040. }
  1041. func (x *KnownTypes) GetOptTimestamp() *timestamppb.Timestamp {
  1042. if x != nil {
  1043. return x.OptTimestamp
  1044. }
  1045. return nil
  1046. }
  1047. func (x *KnownTypes) GetOptStruct() *structpb.Struct {
  1048. if x != nil {
  1049. return x.OptStruct
  1050. }
  1051. return nil
  1052. }
  1053. func (x *KnownTypes) GetOptList() *structpb.ListValue {
  1054. if x != nil {
  1055. return x.OptList
  1056. }
  1057. return nil
  1058. }
  1059. func (x *KnownTypes) GetOptValue() *structpb.Value {
  1060. if x != nil {
  1061. return x.OptValue
  1062. }
  1063. return nil
  1064. }
  1065. func (x *KnownTypes) GetOptNull() structpb.NullValue {
  1066. if x != nil && x.OptNull != nil {
  1067. return *x.OptNull
  1068. }
  1069. return structpb.NullValue_NULL_VALUE
  1070. }
  1071. func (x *KnownTypes) GetOptEmpty() *emptypb.Empty {
  1072. if x != nil {
  1073. return x.OptEmpty
  1074. }
  1075. return nil
  1076. }
  1077. func (x *KnownTypes) GetOptAny() *anypb.Any {
  1078. if x != nil {
  1079. return x.OptAny
  1080. }
  1081. return nil
  1082. }
  1083. func (x *KnownTypes) GetOptFieldmask() *fieldmaskpb.FieldMask {
  1084. if x != nil {
  1085. return x.OptFieldmask
  1086. }
  1087. return nil
  1088. }
  1089. type Nests_OptGroup struct {
  1090. state protoimpl.MessageState
  1091. sizeCache protoimpl.SizeCache
  1092. unknownFields protoimpl.UnknownFields
  1093. OptString *string `protobuf:"bytes,1,opt,name=opt_string,json=optString" json:"opt_string,omitempty"`
  1094. OptNested *Nested `protobuf:"bytes,2,opt,name=opt_nested,json=optNested" json:"opt_nested,omitempty"`
  1095. Optnestedgroup *Nests_OptGroup_OptNestedGroup `protobuf:"group,3,opt,name=OptNestedGroup,json=optnestedgroup" json:"optnestedgroup,omitempty"`
  1096. }
  1097. func (x *Nests_OptGroup) Reset() {
  1098. *x = Nests_OptGroup{}
  1099. }
  1100. func (x *Nests_OptGroup) String() string {
  1101. return protoimpl.X.MessageStringOf(x)
  1102. }
  1103. func (*Nests_OptGroup) ProtoMessage() {}
  1104. func (x *Nests_OptGroup) ProtoReflect() protoreflect.Message {
  1105. mi := &file_pb2_test_proto_msgTypes[16]
  1106. if protoimpl.UnsafeEnabled && x != nil {
  1107. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1108. if ms.LoadMessageInfo() == nil {
  1109. ms.StoreMessageInfo(mi)
  1110. }
  1111. return ms
  1112. }
  1113. return mi.MessageOf(x)
  1114. }
  1115. // Deprecated: Use Nests_OptGroup.ProtoReflect.Descriptor instead.
  1116. func (*Nests_OptGroup) Descriptor() ([]byte, []int) {
  1117. return file_pb2_test_proto_rawDescGZIP(), []int{4, 0}
  1118. }
  1119. func (x *Nests_OptGroup) GetOptString() string {
  1120. if x != nil && x.OptString != nil {
  1121. return *x.OptString
  1122. }
  1123. return ""
  1124. }
  1125. func (x *Nests_OptGroup) GetOptNested() *Nested {
  1126. if x != nil {
  1127. return x.OptNested
  1128. }
  1129. return nil
  1130. }
  1131. func (x *Nests_OptGroup) GetOptnestedgroup() *Nests_OptGroup_OptNestedGroup {
  1132. if x != nil {
  1133. return x.Optnestedgroup
  1134. }
  1135. return nil
  1136. }
  1137. type Nests_RptGroup struct {
  1138. state protoimpl.MessageState
  1139. sizeCache protoimpl.SizeCache
  1140. unknownFields protoimpl.UnknownFields
  1141. RptString []string `protobuf:"bytes,1,rep,name=rpt_string,json=rptString" json:"rpt_string,omitempty"`
  1142. }
  1143. func (x *Nests_RptGroup) Reset() {
  1144. *x = Nests_RptGroup{}
  1145. }
  1146. func (x *Nests_RptGroup) String() string {
  1147. return protoimpl.X.MessageStringOf(x)
  1148. }
  1149. func (*Nests_RptGroup) ProtoMessage() {}
  1150. func (x *Nests_RptGroup) ProtoReflect() protoreflect.Message {
  1151. mi := &file_pb2_test_proto_msgTypes[17]
  1152. if protoimpl.UnsafeEnabled && x != nil {
  1153. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1154. if ms.LoadMessageInfo() == nil {
  1155. ms.StoreMessageInfo(mi)
  1156. }
  1157. return ms
  1158. }
  1159. return mi.MessageOf(x)
  1160. }
  1161. // Deprecated: Use Nests_RptGroup.ProtoReflect.Descriptor instead.
  1162. func (*Nests_RptGroup) Descriptor() ([]byte, []int) {
  1163. return file_pb2_test_proto_rawDescGZIP(), []int{4, 1}
  1164. }
  1165. func (x *Nests_RptGroup) GetRptString() []string {
  1166. if x != nil {
  1167. return x.RptString
  1168. }
  1169. return nil
  1170. }
  1171. type Nests_OptGroup_OptNestedGroup struct {
  1172. state protoimpl.MessageState
  1173. sizeCache protoimpl.SizeCache
  1174. unknownFields protoimpl.UnknownFields
  1175. OptFixed32 *uint32 `protobuf:"fixed32,1,opt,name=opt_fixed32,json=optFixed32" json:"opt_fixed32,omitempty"`
  1176. }
  1177. func (x *Nests_OptGroup_OptNestedGroup) Reset() {
  1178. *x = Nests_OptGroup_OptNestedGroup{}
  1179. }
  1180. func (x *Nests_OptGroup_OptNestedGroup) String() string {
  1181. return protoimpl.X.MessageStringOf(x)
  1182. }
  1183. func (*Nests_OptGroup_OptNestedGroup) ProtoMessage() {}
  1184. func (x *Nests_OptGroup_OptNestedGroup) ProtoReflect() protoreflect.Message {
  1185. mi := &file_pb2_test_proto_msgTypes[18]
  1186. if protoimpl.UnsafeEnabled && x != nil {
  1187. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1188. if ms.LoadMessageInfo() == nil {
  1189. ms.StoreMessageInfo(mi)
  1190. }
  1191. return ms
  1192. }
  1193. return mi.MessageOf(x)
  1194. }
  1195. // Deprecated: Use Nests_OptGroup_OptNestedGroup.ProtoReflect.Descriptor instead.
  1196. func (*Nests_OptGroup_OptNestedGroup) Descriptor() ([]byte, []int) {
  1197. return file_pb2_test_proto_rawDescGZIP(), []int{4, 0, 0}
  1198. }
  1199. func (x *Nests_OptGroup_OptNestedGroup) GetOptFixed32() uint32 {
  1200. if x != nil && x.OptFixed32 != nil {
  1201. return *x.OptFixed32
  1202. }
  1203. return 0
  1204. }
  1205. var file_pb2_test_proto_extTypes = []protoimpl.ExtensionInfo{
  1206. {
  1207. ExtendedType: (*Extensions)(nil),
  1208. ExtensionType: (*bool)(nil),
  1209. Field: 21,
  1210. Name: "pb2.opt_ext_bool",
  1211. Tag: "varint,21,opt,name=opt_ext_bool",
  1212. Filename: "pb2/test.proto",
  1213. },
  1214. {
  1215. ExtendedType: (*Extensions)(nil),
  1216. ExtensionType: (*string)(nil),
  1217. Field: 22,
  1218. Name: "pb2.opt_ext_string",
  1219. Tag: "bytes,22,opt,name=opt_ext_string",
  1220. Filename: "pb2/test.proto",
  1221. },
  1222. {
  1223. ExtendedType: (*Extensions)(nil),
  1224. ExtensionType: (*Enum)(nil),
  1225. Field: 23,
  1226. Name: "pb2.opt_ext_enum",
  1227. Tag: "varint,23,opt,name=opt_ext_enum,enum=pb2.Enum",
  1228. Filename: "pb2/test.proto",
  1229. },
  1230. {
  1231. ExtendedType: (*Extensions)(nil),
  1232. ExtensionType: (*Nested)(nil),
  1233. Field: 24,
  1234. Name: "pb2.opt_ext_nested",
  1235. Tag: "bytes,24,opt,name=opt_ext_nested",
  1236. Filename: "pb2/test.proto",
  1237. },
  1238. {
  1239. ExtendedType: (*Extensions)(nil),
  1240. ExtensionType: (*PartialRequired)(nil),
  1241. Field: 25,
  1242. Name: "pb2.opt_ext_partial",
  1243. Tag: "bytes,25,opt,name=opt_ext_partial",
  1244. Filename: "pb2/test.proto",
  1245. },
  1246. {
  1247. ExtendedType: (*Extensions)(nil),
  1248. ExtensionType: ([]uint32)(nil),
  1249. Field: 31,
  1250. Name: "pb2.rpt_ext_fixed32",
  1251. Tag: "fixed32,31,rep,name=rpt_ext_fixed32",
  1252. Filename: "pb2/test.proto",
  1253. },
  1254. {
  1255. ExtendedType: (*Extensions)(nil),
  1256. ExtensionType: ([]Enum)(nil),
  1257. Field: 32,
  1258. Name: "pb2.rpt_ext_enum",
  1259. Tag: "varint,32,rep,name=rpt_ext_enum,enum=pb2.Enum",
  1260. Filename: "pb2/test.proto",
  1261. },
  1262. {
  1263. ExtendedType: (*Extensions)(nil),
  1264. ExtensionType: ([]*Nested)(nil),
  1265. Field: 33,
  1266. Name: "pb2.rpt_ext_nested",
  1267. Tag: "bytes,33,rep,name=rpt_ext_nested",
  1268. Filename: "pb2/test.proto",
  1269. },
  1270. {
  1271. ExtendedType: (*MessageSet)(nil),
  1272. ExtensionType: (*FakeMessageSetExtension)(nil),
  1273. Field: 50,
  1274. Name: "pb2.message_set_extension",
  1275. Tag: "bytes,50,opt,name=message_set_extension",
  1276. Filename: "pb2/test.proto",
  1277. },
  1278. {
  1279. ExtendedType: (*Extensions)(nil),
  1280. ExtensionType: (*bool)(nil),
  1281. Field: 51,
  1282. Name: "pb2.ExtensionsContainer.opt_ext_bool",
  1283. Tag: "varint,51,opt,name=opt_ext_bool",
  1284. Filename: "pb2/test.proto",
  1285. },
  1286. {
  1287. ExtendedType: (*Extensions)(nil),
  1288. ExtensionType: (*string)(nil),
  1289. Field: 52,
  1290. Name: "pb2.ExtensionsContainer.opt_ext_string",
  1291. Tag: "bytes,52,opt,name=opt_ext_string",
  1292. Filename: "pb2/test.proto",
  1293. },
  1294. {
  1295. ExtendedType: (*Extensions)(nil),
  1296. ExtensionType: (*Enum)(nil),
  1297. Field: 53,
  1298. Name: "pb2.ExtensionsContainer.opt_ext_enum",
  1299. Tag: "varint,53,opt,name=opt_ext_enum,enum=pb2.Enum",
  1300. Filename: "pb2/test.proto",
  1301. },
  1302. {
  1303. ExtendedType: (*Extensions)(nil),
  1304. ExtensionType: (*Nested)(nil),
  1305. Field: 54,
  1306. Name: "pb2.ExtensionsContainer.opt_ext_nested",
  1307. Tag: "bytes,54,opt,name=opt_ext_nested",
  1308. Filename: "pb2/test.proto",
  1309. },
  1310. {
  1311. ExtendedType: (*Extensions)(nil),
  1312. ExtensionType: (*PartialRequired)(nil),
  1313. Field: 55,
  1314. Name: "pb2.ExtensionsContainer.opt_ext_partial",
  1315. Tag: "bytes,55,opt,name=opt_ext_partial",
  1316. Filename: "pb2/test.proto",
  1317. },
  1318. {
  1319. ExtendedType: (*Extensions)(nil),
  1320. ExtensionType: ([]string)(nil),
  1321. Field: 61,
  1322. Name: "pb2.ExtensionsContainer.rpt_ext_string",
  1323. Tag: "bytes,61,rep,name=rpt_ext_string",
  1324. Filename: "pb2/test.proto",
  1325. },
  1326. {
  1327. ExtendedType: (*Extensions)(nil),
  1328. ExtensionType: ([]Enum)(nil),
  1329. Field: 62,
  1330. Name: "pb2.ExtensionsContainer.rpt_ext_enum",
  1331. Tag: "varint,62,rep,name=rpt_ext_enum,enum=pb2.Enum",
  1332. Filename: "pb2/test.proto",
  1333. },
  1334. {
  1335. ExtendedType: (*Extensions)(nil),
  1336. ExtensionType: ([]*Nested)(nil),
  1337. Field: 63,
  1338. Name: "pb2.ExtensionsContainer.rpt_ext_nested",
  1339. Tag: "bytes,63,rep,name=rpt_ext_nested",
  1340. Filename: "pb2/test.proto",
  1341. },
  1342. {
  1343. ExtendedType: (*MessageSet)(nil),
  1344. ExtensionType: (*MessageSetExtension)(nil),
  1345. Field: 10,
  1346. Name: "pb2.MessageSetExtension",
  1347. Tag: "bytes,10,opt,name=message_set_extension",
  1348. Filename: "pb2/test.proto",
  1349. },
  1350. {
  1351. ExtendedType: (*MessageSet)(nil),
  1352. ExtensionType: (*MessageSetExtension)(nil),
  1353. Field: 20,
  1354. Name: "pb2.MessageSetExtension.not_message_set_extension",
  1355. Tag: "bytes,20,opt,name=not_message_set_extension",
  1356. Filename: "pb2/test.proto",
  1357. },
  1358. {
  1359. ExtendedType: (*MessageSet)(nil),
  1360. ExtensionType: (*Nested)(nil),
  1361. Field: 30,
  1362. Name: "pb2.MessageSetExtension.ext_nested",
  1363. Tag: "bytes,30,opt,name=ext_nested",
  1364. Filename: "pb2/test.proto",
  1365. },
  1366. {
  1367. ExtendedType: (*FakeMessageSet)(nil),
  1368. ExtensionType: (*FakeMessageSetExtension)(nil),
  1369. Field: 10,
  1370. Name: "pb2.FakeMessageSetExtension.message_set_extension",
  1371. Tag: "bytes,10,opt,name=message_set_extension",
  1372. Filename: "pb2/test.proto",
  1373. },
  1374. }
  1375. // Extension fields to Extensions.
  1376. var (
  1377. // optional bool opt_ext_bool = 21;
  1378. E_OptExtBool = &file_pb2_test_proto_extTypes[0]
  1379. // optional string opt_ext_string = 22;
  1380. E_OptExtString = &file_pb2_test_proto_extTypes[1]
  1381. // optional pb2.Enum opt_ext_enum = 23;
  1382. E_OptExtEnum = &file_pb2_test_proto_extTypes[2]
  1383. // optional pb2.Nested opt_ext_nested = 24;
  1384. E_OptExtNested = &file_pb2_test_proto_extTypes[3]
  1385. // optional pb2.PartialRequired opt_ext_partial = 25;
  1386. E_OptExtPartial = &file_pb2_test_proto_extTypes[4]
  1387. // repeated fixed32 rpt_ext_fixed32 = 31;
  1388. E_RptExtFixed32 = &file_pb2_test_proto_extTypes[5]
  1389. // repeated pb2.Enum rpt_ext_enum = 32;
  1390. E_RptExtEnum = &file_pb2_test_proto_extTypes[6]
  1391. // repeated pb2.Nested rpt_ext_nested = 33;
  1392. E_RptExtNested = &file_pb2_test_proto_extTypes[7]
  1393. // optional bool opt_ext_bool = 51;
  1394. E_ExtensionsContainer_OptExtBool = &file_pb2_test_proto_extTypes[9]
  1395. // optional string opt_ext_string = 52;
  1396. E_ExtensionsContainer_OptExtString = &file_pb2_test_proto_extTypes[10]
  1397. // optional pb2.Enum opt_ext_enum = 53;
  1398. E_ExtensionsContainer_OptExtEnum = &file_pb2_test_proto_extTypes[11]
  1399. // optional pb2.Nested opt_ext_nested = 54;
  1400. E_ExtensionsContainer_OptExtNested = &file_pb2_test_proto_extTypes[12]
  1401. // optional pb2.PartialRequired opt_ext_partial = 55;
  1402. E_ExtensionsContainer_OptExtPartial = &file_pb2_test_proto_extTypes[13]
  1403. // repeated string rpt_ext_string = 61;
  1404. E_ExtensionsContainer_RptExtString = &file_pb2_test_proto_extTypes[14]
  1405. // repeated pb2.Enum rpt_ext_enum = 62;
  1406. E_ExtensionsContainer_RptExtEnum = &file_pb2_test_proto_extTypes[15]
  1407. // repeated pb2.Nested rpt_ext_nested = 63;
  1408. E_ExtensionsContainer_RptExtNested = &file_pb2_test_proto_extTypes[16]
  1409. )
  1410. // Extension fields to MessageSet.
  1411. var (
  1412. // optional pb2.FakeMessageSetExtension message_set_extension = 50;
  1413. E_MessageSetExtension = &file_pb2_test_proto_extTypes[8]
  1414. // optional pb2.MessageSetExtension message_set_extension = 10;
  1415. E_MessageSetExtension_MessageSetExtension = &file_pb2_test_proto_extTypes[17]
  1416. // optional pb2.MessageSetExtension not_message_set_extension = 20;
  1417. E_MessageSetExtension_NotMessageSetExtension = &file_pb2_test_proto_extTypes[18]
  1418. // optional pb2.Nested ext_nested = 30;
  1419. E_MessageSetExtension_ExtNested = &file_pb2_test_proto_extTypes[19]
  1420. )
  1421. // Extension fields to FakeMessageSet.
  1422. var (
  1423. // optional pb2.FakeMessageSetExtension message_set_extension = 10;
  1424. E_FakeMessageSetExtension_MessageSetExtension = &file_pb2_test_proto_extTypes[20]
  1425. )
  1426. var File_pb2_test_proto protoreflect.FileDescriptor
  1427. var file_pb2_test_proto_rawDesc = []byte{
  1428. 0x0a, 0x0e, 0x70, 0x62, 0x32, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1429. 0x12, 0x03, 0x70, 0x62, 0x32, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72,
  1430. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x6e, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1431. 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1432. 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67,
  1433. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66,
  1434. 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  1435. 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1436. 0x2f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  1437. 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1438. 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67,
  1439. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74,
  1440. 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e,
  1441. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f,
  1442. 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xda,
  1443. 0x03, 0x0a, 0x07, 0x53, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x70,
  1444. 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6f, 0x70,
  1445. 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74,
  1446. 0x33, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x49, 0x6e, 0x74,
  1447. 0x33, 0x32, 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18,
  1448. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12,
  1449. 0x1d, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x04, 0x20,
  1450. 0x01, 0x28, 0x0d, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x1d,
  1451. 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x05, 0x20, 0x01,
  1452. 0x28, 0x04, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x1d, 0x0a,
  1453. 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x06, 0x20, 0x01, 0x28,
  1454. 0x11, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x1d, 0x0a, 0x0a,
  1455. 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x07, 0x20, 0x01, 0x28, 0x12,
  1456. 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x1f, 0x0a, 0x0b, 0x6f,
  1457. 0x70, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x08, 0x20, 0x01, 0x28, 0x07,
  1458. 0x52, 0x0a, 0x6f, 0x70, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x1f, 0x0a, 0x0b,
  1459. 0x6f, 0x70, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x09, 0x20, 0x01, 0x28,
  1460. 0x06, 0x52, 0x0a, 0x6f, 0x70, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x21, 0x0a,
  1461. 0x0c, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x0a, 0x20,
  1462. 0x01, 0x28, 0x0f, 0x52, 0x0b, 0x6f, 0x70, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  1463. 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  1464. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x10, 0x52, 0x0b, 0x6f, 0x70, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65,
  1465. 0x64, 0x36, 0x34, 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74,
  1466. 0x18, 0x14, 0x20, 0x01, 0x28, 0x02, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74,
  1467. 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x15,
  1468. 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12,
  1469. 0x1b, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x0e, 0x20, 0x01,
  1470. 0x28, 0x0c, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x1d, 0x0a, 0x0a,
  1471. 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09,
  1472. 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x22, 0xfb, 0x01, 0x0a, 0x05,
  1473. 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x12, 0x24, 0x0a, 0x08, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x6e, 0x75,
  1474. 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x09, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x6e,
  1475. 0x75, 0x6d, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x08, 0x72,
  1476. 0x70, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x09, 0x2e,
  1477. 0x70, 0x62, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x07, 0x72, 0x70, 0x74, 0x45, 0x6e, 0x75,
  1478. 0x6d, 0x12, 0x3d, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f,
  1479. 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x70, 0x62, 0x32,
  1480. 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75,
  1481. 0x6d, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
  1482. 0x12, 0x3d, 0x0a, 0x0f, 0x72, 0x70, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65,
  1483. 0x6e, 0x75, 0x6d, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x70, 0x62, 0x32, 0x2e,
  1484. 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
  1485. 0x52, 0x0d, 0x72, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22,
  1486. 0x28, 0x0a, 0x0a, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x07, 0x0a,
  1487. 0x03, 0x55, 0x4e, 0x4f, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x44, 0x4f, 0x53, 0x10, 0x02, 0x12,
  1488. 0x08, 0x0a, 0x04, 0x44, 0x49, 0x45, 0x5a, 0x10, 0x0a, 0x22, 0x94, 0x02, 0x0a, 0x07, 0x52, 0x65,
  1489. 0x70, 0x65, 0x61, 0x74, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x72, 0x70, 0x74, 0x5f, 0x62, 0x6f, 0x6f,
  1490. 0x6c, 0x18, 0x01, 0x20, 0x03, 0x28, 0x08, 0x52, 0x07, 0x72, 0x70, 0x74, 0x42, 0x6f, 0x6f, 0x6c,
  1491. 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x02, 0x20,
  1492. 0x03, 0x28, 0x05, 0x52, 0x08, 0x72, 0x70, 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x1b, 0x0a,
  1493. 0x09, 0x72, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x03, 0x20, 0x03, 0x28, 0x03,
  1494. 0x52, 0x08, 0x72, 0x70, 0x74, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x70,
  1495. 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x09,
  1496. 0x72, 0x70, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x70, 0x74,
  1497. 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x05, 0x20, 0x03, 0x28, 0x04, 0x52, 0x09, 0x72,
  1498. 0x70, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x70, 0x74, 0x5f,
  1499. 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x06, 0x20, 0x03, 0x28, 0x02, 0x52, 0x08, 0x72, 0x70, 0x74,
  1500. 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x70, 0x74, 0x5f, 0x64, 0x6f, 0x75,
  1501. 0x62, 0x6c, 0x65, 0x18, 0x07, 0x20, 0x03, 0x28, 0x01, 0x52, 0x09, 0x72, 0x70, 0x74, 0x44, 0x6f,
  1502. 0x75, 0x62, 0x6c, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69,
  1503. 0x6e, 0x67, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x72, 0x70, 0x74, 0x53, 0x74, 0x72,
  1504. 0x69, 0x6e, 0x67, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x70, 0x74, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73,
  1505. 0x18, 0x09, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x08, 0x72, 0x70, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73,
  1506. 0x22, 0x53, 0x0a, 0x06, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x70,
  1507. 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  1508. 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x2a, 0x0a, 0x0a, 0x6f, 0x70, 0x74,
  1509. 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e,
  1510. 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x4e,
  1511. 0x65, 0x73, 0x74, 0x65, 0x64, 0x22, 0xd3, 0x03, 0x0a, 0x05, 0x4e, 0x65, 0x73, 0x74, 0x73, 0x12,
  1512. 0x2a, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x01, 0x20,
  1513. 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64,
  1514. 0x52, 0x09, 0x6f, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x2f, 0x0a, 0x08, 0x6f,
  1515. 0x70, 0x74, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x13, 0x2e,
  1516. 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x73, 0x2e, 0x4f, 0x70, 0x74, 0x47, 0x72, 0x6f,
  1517. 0x75, 0x70, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x2a, 0x0a, 0x0a,
  1518. 0x72, 0x70, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
  1519. 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x09, 0x72,
  1520. 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x2f, 0x0a, 0x08, 0x72, 0x70, 0x74, 0x67,
  1521. 0x72, 0x6f, 0x75, 0x70, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0a, 0x32, 0x13, 0x2e, 0x70, 0x62, 0x32,
  1522. 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x73, 0x2e, 0x52, 0x70, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52,
  1523. 0x08, 0x72, 0x70, 0x74, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x1a, 0xd4, 0x01, 0x0a, 0x08, 0x4f, 0x70,
  1524. 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74,
  1525. 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53,
  1526. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x2a, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x6e, 0x65, 0x73,
  1527. 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e,
  1528. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65,
  1529. 0x64, 0x12, 0x4a, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x67, 0x72,
  1530. 0x6f, 0x75, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x22, 0x2e, 0x70, 0x62, 0x32, 0x2e,
  1531. 0x4e, 0x65, 0x73, 0x74, 0x73, 0x2e, 0x4f, 0x70, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x4f,
  1532. 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0e, 0x6f,
  1533. 0x70, 0x74, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x1a, 0x31, 0x0a,
  1534. 0x0e, 0x4f, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12,
  1535. 0x1f, 0x0a, 0x0b, 0x6f, 0x70, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x01,
  1536. 0x20, 0x01, 0x28, 0x07, 0x52, 0x0a, 0x6f, 0x70, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  1537. 0x1a, 0x29, 0x0a, 0x08, 0x52, 0x70, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x1d, 0x0a, 0x0a,
  1538. 0x72, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
  1539. 0x52, 0x09, 0x72, 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x0e, 0x72, 0x65, 0x73,
  1540. 0x65, 0x72, 0x76, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x22, 0xd9, 0x01, 0x0a, 0x09,
  1541. 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x72, 0x65, 0x71,
  1542. 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x01, 0x20, 0x02, 0x28, 0x08, 0x52, 0x07, 0x72, 0x65, 0x71,
  1543. 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x5f, 0x73, 0x66, 0x69, 0x78,
  1544. 0x65, 0x64, 0x36, 0x34, 0x18, 0x02, 0x20, 0x02, 0x28, 0x10, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x53,
  1545. 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x5f, 0x64,
  1546. 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x02, 0x28, 0x01, 0x52, 0x09, 0x72, 0x65, 0x71,
  1547. 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x5f, 0x73, 0x74,
  1548. 0x72, 0x69, 0x6e, 0x67, 0x18, 0x04, 0x20, 0x02, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x53,
  1549. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x24, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x5f, 0x65, 0x6e, 0x75,
  1550. 0x6d, 0x18, 0x05, 0x20, 0x02, 0x28, 0x0e, 0x32, 0x09, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x6e,
  1551. 0x75, 0x6d, 0x52, 0x07, 0x72, 0x65, 0x71, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x2a, 0x0a, 0x0a, 0x72,
  1552. 0x65, 0x71, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x06, 0x20, 0x02, 0x28, 0x0b, 0x32,
  1553. 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x09, 0x72, 0x65,
  1554. 0x71, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x22, 0x4f, 0x0a, 0x0f, 0x50, 0x61, 0x72, 0x74, 0x69,
  1555. 0x61, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65,
  1556. 0x71, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x02, 0x28, 0x09, 0x52, 0x09,
  1557. 0x72, 0x65, 0x71, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x70, 0x74,
  1558. 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f,
  1559. 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x22, 0x33, 0x0a, 0x12, 0x4e, 0x65, 0x73, 0x74,
  1560. 0x65, 0x64, 0x57, 0x69, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x1d,
  1561. 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x02,
  1562. 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x22, 0xee, 0x02,
  1563. 0x0a, 0x10, 0x49, 0x6e, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72,
  1564. 0x65, 0x64, 0x12, 0x36, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64,
  1565. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73,
  1566. 0x74, 0x65, 0x64, 0x57, 0x69, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52,
  1567. 0x09, 0x6f, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x36, 0x0a, 0x0a, 0x72, 0x70,
  1568. 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17,
  1569. 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x57, 0x69, 0x74, 0x68, 0x52,
  1570. 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x09, 0x72, 0x70, 0x74, 0x4e, 0x65, 0x73, 0x74,
  1571. 0x65, 0x64, 0x12, 0x4a, 0x0a, 0x0d, 0x73, 0x74, 0x72, 0x5f, 0x74, 0x6f, 0x5f, 0x6e, 0x65, 0x73,
  1572. 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x70, 0x62, 0x32, 0x2e,
  1573. 0x49, 0x6e, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64,
  1574. 0x2e, 0x53, 0x74, 0x72, 0x54, 0x6f, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x74, 0x72,
  1575. 0x79, 0x52, 0x0b, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x3c,
  1576. 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x04,
  1577. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65,
  1578. 0x64, 0x57, 0x69, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x48, 0x00, 0x52,
  1579. 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x1a, 0x57, 0x0a, 0x10,
  1580. 0x53, 0x74, 0x72, 0x54, 0x6f, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79,
  1581. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
  1582. 0x65, 0x79, 0x12, 0x2d, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1583. 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x57, 0x69,
  1584. 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  1585. 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x22, 0x69,
  1586. 0x0a, 0x0a, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x1d, 0x0a, 0x0a,
  1587. 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1588. 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x19, 0x0a, 0x08, 0x6f,
  1589. 0x70, 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x65, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6f,
  1590. 0x70, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e,
  1591. 0x74, 0x33, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x49, 0x6e,
  1592. 0x74, 0x33, 0x32, 0x2a, 0x04, 0x08, 0x14, 0x10, 0x65, 0x22, 0x89, 0x04, 0x0a, 0x13, 0x45, 0x78,
  1593. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
  1594. 0x72, 0x32, 0x31, 0x0a, 0x0c, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x62, 0x6f, 0x6f,
  1595. 0x6c, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  1596. 0x6e, 0x73, 0x18, 0x33, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x6f, 0x70, 0x74, 0x45, 0x78, 0x74,
  1597. 0x42, 0x6f, 0x6f, 0x6c, 0x32, 0x35, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f,
  1598. 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74,
  1599. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x34, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6f,
  1600. 0x70, 0x74, 0x45, 0x78, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x32, 0x3c, 0x0a, 0x0c, 0x6f,
  1601. 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x0f, 0x2e, 0x70, 0x62,
  1602. 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x35, 0x20, 0x01,
  1603. 0x28, 0x0e, 0x32, 0x09, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0a, 0x6f,
  1604. 0x70, 0x74, 0x45, 0x78, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x32, 0x42, 0x0a, 0x0e, 0x6f, 0x70, 0x74,
  1605. 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x0f, 0x2e, 0x70, 0x62,
  1606. 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x36, 0x20, 0x01,
  1607. 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52,
  1608. 0x0c, 0x6f, 0x70, 0x74, 0x45, 0x78, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x32, 0x4d, 0x0a,
  1609. 0x0f, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c,
  1610. 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  1611. 0x73, 0x18, 0x37, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x50, 0x61,
  1612. 0x72, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x0d, 0x6f,
  1613. 0x70, 0x74, 0x45, 0x78, 0x74, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x32, 0x35, 0x0a, 0x0e,
  1614. 0x72, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x0f,
  1615. 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  1616. 0x3d, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x70, 0x74, 0x45, 0x78, 0x74, 0x53, 0x74, 0x72,
  1617. 0x69, 0x6e, 0x67, 0x32, 0x3c, 0x0a, 0x0c, 0x72, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x65,
  1618. 0x6e, 0x75, 0x6d, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  1619. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x3e, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x09, 0x2e, 0x70, 0x62, 0x32,
  1620. 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0a, 0x72, 0x70, 0x74, 0x45, 0x78, 0x74, 0x45, 0x6e, 0x75,
  1621. 0x6d, 0x32, 0x42, 0x0a, 0x0e, 0x72, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x6e, 0x65, 0x73,
  1622. 0x74, 0x65, 0x64, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  1623. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x3f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x32,
  1624. 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x0c, 0x72, 0x70, 0x74, 0x45, 0x78, 0x74, 0x4e,
  1625. 0x65, 0x73, 0x74, 0x65, 0x64, 0x22, 0x1a, 0x0a, 0x0a, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  1626. 0x53, 0x65, 0x74, 0x2a, 0x08, 0x08, 0x04, 0x10, 0xff, 0xff, 0xff, 0xff, 0x07, 0x3a, 0x02, 0x08,
  1627. 0x01, 0x22, 0xb6, 0x02, 0x0a, 0x13, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74,
  1628. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x70, 0x74,
  1629. 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f,
  1630. 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x32, 0x5d, 0x0a, 0x15, 0x6d, 0x65, 0x73, 0x73,
  1631. 0x61, 0x67, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  1632. 0x6e, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53,
  1633. 0x65, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4d,
  1634. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  1635. 0x6f, 0x6e, 0x52, 0x13, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78,
  1636. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x64, 0x0a, 0x19, 0x6e, 0x6f, 0x74, 0x5f, 0x6d,
  1637. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  1638. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  1639. 0x67, 0x65, 0x53, 0x65, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x70, 0x62,
  1640. 0x32, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65,
  1641. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x16, 0x6e, 0x6f, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1642. 0x65, 0x53, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x3b, 0x0a,
  1643. 0x0a, 0x65, 0x78, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x0f, 0x2e, 0x70, 0x62,
  1644. 0x32, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x18, 0x1e, 0x20, 0x01,
  1645. 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52,
  1646. 0x09, 0x65, 0x78, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x22, 0x1a, 0x0a, 0x0e, 0x46, 0x61,
  1647. 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x2a, 0x08, 0x08, 0x04,
  1648. 0x10, 0x80, 0x80, 0x80, 0x80, 0x02, 0x22, 0x9f, 0x01, 0x0a, 0x17, 0x46, 0x61, 0x6b, 0x65, 0x4d,
  1649. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  1650. 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
  1651. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e,
  1652. 0x67, 0x32, 0x65, 0x0a, 0x15, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x65, 0x74,
  1653. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x13, 0x2e, 0x70, 0x62, 0x32,
  1654. 0x2e, 0x46, 0x61, 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x18,
  1655. 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x46, 0x61, 0x6b, 0x65,
  1656. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  1657. 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45,
  1658. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x9e, 0x08, 0x0a, 0x0a, 0x4b, 0x6e, 0x6f,
  1659. 0x77, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x35, 0x0a, 0x08, 0x6f, 0x70, 0x74, 0x5f, 0x62,
  1660. 0x6f, 0x6f, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1661. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c,
  1662. 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x38,
  1663. 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28,
  1664. 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1665. 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x08,
  1666. 0x6f, 0x70, 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x38, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f,
  1667. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f,
  1668. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e,
  1669. 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x49, 0x6e, 0x74,
  1670. 0x36, 0x34, 0x12, 0x3b, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32,
  1671. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1672. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56,
  1673. 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12,
  1674. 0x3b, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x05, 0x20,
  1675. 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1676. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75,
  1677. 0x65, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x38, 0x0a, 0x09,
  1678. 0x6f, 0x70, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1679. 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1680. 0x66, 0x2e, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x08, 0x6f, 0x70,
  1681. 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x3b, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x64, 0x6f,
  1682. 0x75, 0x62, 0x6c, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f,
  1683. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x6f, 0x75,
  1684. 0x62, 0x6c, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x44, 0x6f, 0x75,
  1685. 0x62, 0x6c, 0x65, 0x12, 0x3b, 0x0a, 0x0a, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
  1686. 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1687. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
  1688. 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
  1689. 0x12, 0x38, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x09, 0x20,
  1690. 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1691. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1692. 0x52, 0x08, 0x6f, 0x70, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x3c, 0x0a, 0x0c, 0x6f, 0x70,
  1693. 0x74, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b,
  1694. 0x32, 0x19, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1695. 0x75, 0x66, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0b, 0x6f, 0x70, 0x74,
  1696. 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3f, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x5f,
  1697. 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1698. 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1699. 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x6f, 0x70, 0x74,
  1700. 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x36, 0x0a, 0x0a, 0x6f, 0x70, 0x74,
  1701. 0x5f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x18, 0x19, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e,
  1702. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1703. 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x52, 0x09, 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x75, 0x63,
  1704. 0x74, 0x12, 0x35, 0x0a, 0x08, 0x6f, 0x70, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x1a, 0x20,
  1705. 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1706. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
  1707. 0x07, 0x6f, 0x70, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x33, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f,
  1708. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f,
  1709. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61,
  1710. 0x6c, 0x75, 0x65, 0x52, 0x08, 0x6f, 0x70, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x35, 0x0a,
  1711. 0x08, 0x6f, 0x70, 0x74, 0x5f, 0x6e, 0x75, 0x6c, 0x6c, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x0e, 0x32,
  1712. 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1713. 0x66, 0x2e, 0x4e, 0x75, 0x6c, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x6f, 0x70, 0x74,
  1714. 0x4e, 0x75, 0x6c, 0x6c, 0x12, 0x33, 0x0a, 0x09, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x6d, 0x70, 0x74,
  1715. 0x79, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1716. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x52,
  1717. 0x08, 0x6f, 0x70, 0x74, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x2d, 0x0a, 0x07, 0x6f, 0x70, 0x74,
  1718. 0x5f, 0x61, 0x6e, 0x79, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f,
  1719. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79,
  1720. 0x52, 0x06, 0x6f, 0x70, 0x74, 0x41, 0x6e, 0x79, 0x12, 0x3f, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x5f,
  1721. 0x66, 0x69, 0x65, 0x6c, 0x64, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x28, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1722. 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1723. 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0c, 0x6f, 0x70, 0x74,
  1724. 0x46, 0x69, 0x65, 0x6c, 0x64, 0x6d, 0x61, 0x73, 0x6b, 0x2a, 0x21, 0x0a, 0x04, 0x45, 0x6e, 0x75,
  1725. 0x6d, 0x12, 0x07, 0x0a, 0x03, 0x4f, 0x4e, 0x45, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x57,
  1726. 0x4f, 0x10, 0x02, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x45, 0x4e, 0x10, 0x0a, 0x3a, 0x31, 0x0a, 0x0c,
  1727. 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x12, 0x0f, 0x2e, 0x70,
  1728. 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x15, 0x20,
  1729. 0x01, 0x28, 0x08, 0x52, 0x0a, 0x6f, 0x70, 0x74, 0x45, 0x78, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x3a,
  1730. 0x35, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
  1731. 0x67, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  1732. 0x6e, 0x73, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6f, 0x70, 0x74, 0x45, 0x78, 0x74,
  1733. 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x3a, 0x3c, 0x0a, 0x0c, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x78,
  1734. 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74,
  1735. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x09, 0x2e,
  1736. 0x70, 0x62, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0a, 0x6f, 0x70, 0x74, 0x45, 0x78, 0x74,
  1737. 0x45, 0x6e, 0x75, 0x6d, 0x3a, 0x42, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f,
  1738. 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74,
  1739. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e,
  1740. 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x0c, 0x6f, 0x70, 0x74, 0x45,
  1741. 0x78, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x3a, 0x4d, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x5f,
  1742. 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x12, 0x0f, 0x2e, 0x70, 0x62,
  1743. 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x19, 0x20, 0x01,
  1744. 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c,
  1745. 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x45, 0x78, 0x74,
  1746. 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x3a, 0x37, 0x0a, 0x0f, 0x72, 0x70, 0x74, 0x5f, 0x65,
  1747. 0x78, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32,
  1748. 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x1f, 0x20, 0x03, 0x28,
  1749. 0x07, 0x52, 0x0d, 0x72, 0x70, 0x74, 0x45, 0x78, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  1750. 0x3a, 0x3c, 0x0a, 0x0c, 0x72, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d,
  1751. 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  1752. 0x73, 0x18, 0x20, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x09, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x6e,
  1753. 0x75, 0x6d, 0x52, 0x0a, 0x72, 0x70, 0x74, 0x45, 0x78, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x3a, 0x42,
  1754. 0x0a, 0x0e, 0x72, 0x70, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64,
  1755. 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  1756. 0x73, 0x18, 0x21, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x4e, 0x65,
  1757. 0x73, 0x74, 0x65, 0x64, 0x52, 0x0c, 0x72, 0x70, 0x74, 0x45, 0x78, 0x74, 0x4e, 0x65, 0x73, 0x74,
  1758. 0x65, 0x64, 0x3a, 0x61, 0x0a, 0x15, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x65,
  1759. 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0f, 0x2e, 0x70, 0x62,
  1760. 0x32, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x18, 0x32, 0x20, 0x01,
  1761. 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x70, 0x62, 0x32, 0x2e, 0x46, 0x61, 0x6b, 0x65, 0x4d, 0x65, 0x73,
  1762. 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  1763. 0x52, 0x13, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65,
  1764. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x34, 0x5a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1765. 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1766. 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x2f, 0x74, 0x65, 0x73,
  1767. 0x74, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x70, 0x62, 0x32,
  1768. }
  1769. var (
  1770. file_pb2_test_proto_rawDescOnce sync.Once
  1771. file_pb2_test_proto_rawDescData = file_pb2_test_proto_rawDesc
  1772. )
  1773. func file_pb2_test_proto_rawDescGZIP() []byte {
  1774. file_pb2_test_proto_rawDescOnce.Do(func() {
  1775. file_pb2_test_proto_rawDescData = protoimpl.X.CompressGZIP(file_pb2_test_proto_rawDescData)
  1776. })
  1777. return file_pb2_test_proto_rawDescData
  1778. }
  1779. var file_pb2_test_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
  1780. var file_pb2_test_proto_msgTypes = make([]protoimpl.MessageInfo, 20)
  1781. var file_pb2_test_proto_goTypes = []interface{}{
  1782. (Enum)(0), // 0: pb2.Enum
  1783. (Enums_NestedEnum)(0), // 1: pb2.Enums.NestedEnum
  1784. (*Scalars)(nil), // 2: pb2.Scalars
  1785. (*Enums)(nil), // 3: pb2.Enums
  1786. (*Repeats)(nil), // 4: pb2.Repeats
  1787. (*Nested)(nil), // 5: pb2.Nested
  1788. (*Nests)(nil), // 6: pb2.Nests
  1789. (*Requireds)(nil), // 7: pb2.Requireds
  1790. (*PartialRequired)(nil), // 8: pb2.PartialRequired
  1791. (*NestedWithRequired)(nil), // 9: pb2.NestedWithRequired
  1792. (*IndirectRequired)(nil), // 10: pb2.IndirectRequired
  1793. (*Extensions)(nil), // 11: pb2.Extensions
  1794. (*ExtensionsContainer)(nil), // 12: pb2.ExtensionsContainer
  1795. (*MessageSet)(nil), // 13: pb2.MessageSet
  1796. (*MessageSetExtension)(nil), // 14: pb2.MessageSetExtension
  1797. (*FakeMessageSet)(nil), // 15: pb2.FakeMessageSet
  1798. (*FakeMessageSetExtension)(nil), // 16: pb2.FakeMessageSetExtension
  1799. (*KnownTypes)(nil), // 17: pb2.KnownTypes
  1800. (*Nests_OptGroup)(nil), // 18: pb2.Nests.OptGroup
  1801. (*Nests_RptGroup)(nil), // 19: pb2.Nests.RptGroup
  1802. (*Nests_OptGroup_OptNestedGroup)(nil), // 20: pb2.Nests.OptGroup.OptNestedGroup
  1803. nil, // 21: pb2.IndirectRequired.StrToNestedEntry
  1804. (*wrapperspb.BoolValue)(nil), // 22: google.protobuf.BoolValue
  1805. (*wrapperspb.Int32Value)(nil), // 23: google.protobuf.Int32Value
  1806. (*wrapperspb.Int64Value)(nil), // 24: google.protobuf.Int64Value
  1807. (*wrapperspb.UInt32Value)(nil), // 25: google.protobuf.UInt32Value
  1808. (*wrapperspb.UInt64Value)(nil), // 26: google.protobuf.UInt64Value
  1809. (*wrapperspb.FloatValue)(nil), // 27: google.protobuf.FloatValue
  1810. (*wrapperspb.DoubleValue)(nil), // 28: google.protobuf.DoubleValue
  1811. (*wrapperspb.StringValue)(nil), // 29: google.protobuf.StringValue
  1812. (*wrapperspb.BytesValue)(nil), // 30: google.protobuf.BytesValue
  1813. (*durationpb.Duration)(nil), // 31: google.protobuf.Duration
  1814. (*timestamppb.Timestamp)(nil), // 32: google.protobuf.Timestamp
  1815. (*structpb.Struct)(nil), // 33: google.protobuf.Struct
  1816. (*structpb.ListValue)(nil), // 34: google.protobuf.ListValue
  1817. (*structpb.Value)(nil), // 35: google.protobuf.Value
  1818. (structpb.NullValue)(0), // 36: google.protobuf.NullValue
  1819. (*emptypb.Empty)(nil), // 37: google.protobuf.Empty
  1820. (*anypb.Any)(nil), // 38: google.protobuf.Any
  1821. (*fieldmaskpb.FieldMask)(nil), // 39: google.protobuf.FieldMask
  1822. }
  1823. var file_pb2_test_proto_depIdxs = []int32{
  1824. 0, // 0: pb2.Enums.opt_enum:type_name -> pb2.Enum
  1825. 0, // 1: pb2.Enums.rpt_enum:type_name -> pb2.Enum
  1826. 1, // 2: pb2.Enums.opt_nested_enum:type_name -> pb2.Enums.NestedEnum
  1827. 1, // 3: pb2.Enums.rpt_nested_enum:type_name -> pb2.Enums.NestedEnum
  1828. 5, // 4: pb2.Nested.opt_nested:type_name -> pb2.Nested
  1829. 5, // 5: pb2.Nests.opt_nested:type_name -> pb2.Nested
  1830. 18, // 6: pb2.Nests.optgroup:type_name -> pb2.Nests.OptGroup
  1831. 5, // 7: pb2.Nests.rpt_nested:type_name -> pb2.Nested
  1832. 19, // 8: pb2.Nests.rptgroup:type_name -> pb2.Nests.RptGroup
  1833. 0, // 9: pb2.Requireds.req_enum:type_name -> pb2.Enum
  1834. 5, // 10: pb2.Requireds.req_nested:type_name -> pb2.Nested
  1835. 9, // 11: pb2.IndirectRequired.opt_nested:type_name -> pb2.NestedWithRequired
  1836. 9, // 12: pb2.IndirectRequired.rpt_nested:type_name -> pb2.NestedWithRequired
  1837. 21, // 13: pb2.IndirectRequired.str_to_nested:type_name -> pb2.IndirectRequired.StrToNestedEntry
  1838. 9, // 14: pb2.IndirectRequired.oneof_nested:type_name -> pb2.NestedWithRequired
  1839. 22, // 15: pb2.KnownTypes.opt_bool:type_name -> google.protobuf.BoolValue
  1840. 23, // 16: pb2.KnownTypes.opt_int32:type_name -> google.protobuf.Int32Value
  1841. 24, // 17: pb2.KnownTypes.opt_int64:type_name -> google.protobuf.Int64Value
  1842. 25, // 18: pb2.KnownTypes.opt_uint32:type_name -> google.protobuf.UInt32Value
  1843. 26, // 19: pb2.KnownTypes.opt_uint64:type_name -> google.protobuf.UInt64Value
  1844. 27, // 20: pb2.KnownTypes.opt_float:type_name -> google.protobuf.FloatValue
  1845. 28, // 21: pb2.KnownTypes.opt_double:type_name -> google.protobuf.DoubleValue
  1846. 29, // 22: pb2.KnownTypes.opt_string:type_name -> google.protobuf.StringValue
  1847. 30, // 23: pb2.KnownTypes.opt_bytes:type_name -> google.protobuf.BytesValue
  1848. 31, // 24: pb2.KnownTypes.opt_duration:type_name -> google.protobuf.Duration
  1849. 32, // 25: pb2.KnownTypes.opt_timestamp:type_name -> google.protobuf.Timestamp
  1850. 33, // 26: pb2.KnownTypes.opt_struct:type_name -> google.protobuf.Struct
  1851. 34, // 27: pb2.KnownTypes.opt_list:type_name -> google.protobuf.ListValue
  1852. 35, // 28: pb2.KnownTypes.opt_value:type_name -> google.protobuf.Value
  1853. 36, // 29: pb2.KnownTypes.opt_null:type_name -> google.protobuf.NullValue
  1854. 37, // 30: pb2.KnownTypes.opt_empty:type_name -> google.protobuf.Empty
  1855. 38, // 31: pb2.KnownTypes.opt_any:type_name -> google.protobuf.Any
  1856. 39, // 32: pb2.KnownTypes.opt_fieldmask:type_name -> google.protobuf.FieldMask
  1857. 5, // 33: pb2.Nests.OptGroup.opt_nested:type_name -> pb2.Nested
  1858. 20, // 34: pb2.Nests.OptGroup.optnestedgroup:type_name -> pb2.Nests.OptGroup.OptNestedGroup
  1859. 9, // 35: pb2.IndirectRequired.StrToNestedEntry.value:type_name -> pb2.NestedWithRequired
  1860. 11, // 36: pb2.opt_ext_bool:extendee -> pb2.Extensions
  1861. 11, // 37: pb2.opt_ext_string:extendee -> pb2.Extensions
  1862. 11, // 38: pb2.opt_ext_enum:extendee -> pb2.Extensions
  1863. 11, // 39: pb2.opt_ext_nested:extendee -> pb2.Extensions
  1864. 11, // 40: pb2.opt_ext_partial:extendee -> pb2.Extensions
  1865. 11, // 41: pb2.rpt_ext_fixed32:extendee -> pb2.Extensions
  1866. 11, // 42: pb2.rpt_ext_enum:extendee -> pb2.Extensions
  1867. 11, // 43: pb2.rpt_ext_nested:extendee -> pb2.Extensions
  1868. 13, // 44: pb2.message_set_extension:extendee -> pb2.MessageSet
  1869. 11, // 45: pb2.ExtensionsContainer.opt_ext_bool:extendee -> pb2.Extensions
  1870. 11, // 46: pb2.ExtensionsContainer.opt_ext_string:extendee -> pb2.Extensions
  1871. 11, // 47: pb2.ExtensionsContainer.opt_ext_enum:extendee -> pb2.Extensions
  1872. 11, // 48: pb2.ExtensionsContainer.opt_ext_nested:extendee -> pb2.Extensions
  1873. 11, // 49: pb2.ExtensionsContainer.opt_ext_partial:extendee -> pb2.Extensions
  1874. 11, // 50: pb2.ExtensionsContainer.rpt_ext_string:extendee -> pb2.Extensions
  1875. 11, // 51: pb2.ExtensionsContainer.rpt_ext_enum:extendee -> pb2.Extensions
  1876. 11, // 52: pb2.ExtensionsContainer.rpt_ext_nested:extendee -> pb2.Extensions
  1877. 13, // 53: pb2.MessageSetExtension.message_set_extension:extendee -> pb2.MessageSet
  1878. 13, // 54: pb2.MessageSetExtension.not_message_set_extension:extendee -> pb2.MessageSet
  1879. 13, // 55: pb2.MessageSetExtension.ext_nested:extendee -> pb2.MessageSet
  1880. 15, // 56: pb2.FakeMessageSetExtension.message_set_extension:extendee -> pb2.FakeMessageSet
  1881. 0, // 57: pb2.opt_ext_enum:type_name -> pb2.Enum
  1882. 5, // 58: pb2.opt_ext_nested:type_name -> pb2.Nested
  1883. 8, // 59: pb2.opt_ext_partial:type_name -> pb2.PartialRequired
  1884. 0, // 60: pb2.rpt_ext_enum:type_name -> pb2.Enum
  1885. 5, // 61: pb2.rpt_ext_nested:type_name -> pb2.Nested
  1886. 16, // 62: pb2.message_set_extension:type_name -> pb2.FakeMessageSetExtension
  1887. 0, // 63: pb2.ExtensionsContainer.opt_ext_enum:type_name -> pb2.Enum
  1888. 5, // 64: pb2.ExtensionsContainer.opt_ext_nested:type_name -> pb2.Nested
  1889. 8, // 65: pb2.ExtensionsContainer.opt_ext_partial:type_name -> pb2.PartialRequired
  1890. 0, // 66: pb2.ExtensionsContainer.rpt_ext_enum:type_name -> pb2.Enum
  1891. 5, // 67: pb2.ExtensionsContainer.rpt_ext_nested:type_name -> pb2.Nested
  1892. 14, // 68: pb2.MessageSetExtension.message_set_extension:type_name -> pb2.MessageSetExtension
  1893. 14, // 69: pb2.MessageSetExtension.not_message_set_extension:type_name -> pb2.MessageSetExtension
  1894. 5, // 70: pb2.MessageSetExtension.ext_nested:type_name -> pb2.Nested
  1895. 16, // 71: pb2.FakeMessageSetExtension.message_set_extension:type_name -> pb2.FakeMessageSetExtension
  1896. 72, // [72:72] is the sub-list for method output_type
  1897. 72, // [72:72] is the sub-list for method input_type
  1898. 57, // [57:72] is the sub-list for extension type_name
  1899. 36, // [36:57] is the sub-list for extension extendee
  1900. 0, // [0:36] is the sub-list for field type_name
  1901. }
  1902. func init() { file_pb2_test_proto_init() }
  1903. func file_pb2_test_proto_init() {
  1904. if File_pb2_test_proto != nil {
  1905. return
  1906. }
  1907. if !protoimpl.UnsafeEnabled {
  1908. file_pb2_test_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1909. switch v := v.(*Scalars); i {
  1910. case 0:
  1911. return &v.state
  1912. case 1:
  1913. return &v.sizeCache
  1914. case 2:
  1915. return &v.unknownFields
  1916. default:
  1917. return nil
  1918. }
  1919. }
  1920. file_pb2_test_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1921. switch v := v.(*Enums); i {
  1922. case 0:
  1923. return &v.state
  1924. case 1:
  1925. return &v.sizeCache
  1926. case 2:
  1927. return &v.unknownFields
  1928. default:
  1929. return nil
  1930. }
  1931. }
  1932. file_pb2_test_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1933. switch v := v.(*Repeats); i {
  1934. case 0:
  1935. return &v.state
  1936. case 1:
  1937. return &v.sizeCache
  1938. case 2:
  1939. return &v.unknownFields
  1940. default:
  1941. return nil
  1942. }
  1943. }
  1944. file_pb2_test_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1945. switch v := v.(*Nested); i {
  1946. case 0:
  1947. return &v.state
  1948. case 1:
  1949. return &v.sizeCache
  1950. case 2:
  1951. return &v.unknownFields
  1952. default:
  1953. return nil
  1954. }
  1955. }
  1956. file_pb2_test_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1957. switch v := v.(*Nests); i {
  1958. case 0:
  1959. return &v.state
  1960. case 1:
  1961. return &v.sizeCache
  1962. case 2:
  1963. return &v.unknownFields
  1964. default:
  1965. return nil
  1966. }
  1967. }
  1968. file_pb2_test_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1969. switch v := v.(*Requireds); i {
  1970. case 0:
  1971. return &v.state
  1972. case 1:
  1973. return &v.sizeCache
  1974. case 2:
  1975. return &v.unknownFields
  1976. default:
  1977. return nil
  1978. }
  1979. }
  1980. file_pb2_test_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1981. switch v := v.(*PartialRequired); i {
  1982. case 0:
  1983. return &v.state
  1984. case 1:
  1985. return &v.sizeCache
  1986. case 2:
  1987. return &v.unknownFields
  1988. default:
  1989. return nil
  1990. }
  1991. }
  1992. file_pb2_test_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1993. switch v := v.(*NestedWithRequired); i {
  1994. case 0:
  1995. return &v.state
  1996. case 1:
  1997. return &v.sizeCache
  1998. case 2:
  1999. return &v.unknownFields
  2000. default:
  2001. return nil
  2002. }
  2003. }
  2004. file_pb2_test_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2005. switch v := v.(*IndirectRequired); i {
  2006. case 0:
  2007. return &v.state
  2008. case 1:
  2009. return &v.sizeCache
  2010. case 2:
  2011. return &v.unknownFields
  2012. default:
  2013. return nil
  2014. }
  2015. }
  2016. file_pb2_test_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2017. switch v := v.(*Extensions); i {
  2018. case 0:
  2019. return &v.state
  2020. case 1:
  2021. return &v.sizeCache
  2022. case 2:
  2023. return &v.unknownFields
  2024. case 3:
  2025. return &v.extensionFields
  2026. default:
  2027. return nil
  2028. }
  2029. }
  2030. file_pb2_test_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2031. switch v := v.(*ExtensionsContainer); i {
  2032. case 0:
  2033. return &v.state
  2034. case 1:
  2035. return &v.sizeCache
  2036. case 2:
  2037. return &v.unknownFields
  2038. default:
  2039. return nil
  2040. }
  2041. }
  2042. file_pb2_test_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2043. switch v := v.(*MessageSet); i {
  2044. case 0:
  2045. return &v.state
  2046. case 1:
  2047. return &v.sizeCache
  2048. case 2:
  2049. return &v.unknownFields
  2050. case 3:
  2051. return &v.extensionFields
  2052. default:
  2053. return nil
  2054. }
  2055. }
  2056. file_pb2_test_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2057. switch v := v.(*MessageSetExtension); i {
  2058. case 0:
  2059. return &v.state
  2060. case 1:
  2061. return &v.sizeCache
  2062. case 2:
  2063. return &v.unknownFields
  2064. default:
  2065. return nil
  2066. }
  2067. }
  2068. file_pb2_test_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2069. switch v := v.(*FakeMessageSet); i {
  2070. case 0:
  2071. return &v.state
  2072. case 1:
  2073. return &v.sizeCache
  2074. case 2:
  2075. return &v.unknownFields
  2076. case 3:
  2077. return &v.extensionFields
  2078. default:
  2079. return nil
  2080. }
  2081. }
  2082. file_pb2_test_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2083. switch v := v.(*FakeMessageSetExtension); i {
  2084. case 0:
  2085. return &v.state
  2086. case 1:
  2087. return &v.sizeCache
  2088. case 2:
  2089. return &v.unknownFields
  2090. default:
  2091. return nil
  2092. }
  2093. }
  2094. file_pb2_test_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2095. switch v := v.(*KnownTypes); i {
  2096. case 0:
  2097. return &v.state
  2098. case 1:
  2099. return &v.sizeCache
  2100. case 2:
  2101. return &v.unknownFields
  2102. default:
  2103. return nil
  2104. }
  2105. }
  2106. file_pb2_test_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2107. switch v := v.(*Nests_OptGroup); i {
  2108. case 0:
  2109. return &v.state
  2110. case 1:
  2111. return &v.sizeCache
  2112. case 2:
  2113. return &v.unknownFields
  2114. default:
  2115. return nil
  2116. }
  2117. }
  2118. file_pb2_test_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2119. switch v := v.(*Nests_RptGroup); i {
  2120. case 0:
  2121. return &v.state
  2122. case 1:
  2123. return &v.sizeCache
  2124. case 2:
  2125. return &v.unknownFields
  2126. default:
  2127. return nil
  2128. }
  2129. }
  2130. file_pb2_test_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2131. switch v := v.(*Nests_OptGroup_OptNestedGroup); i {
  2132. case 0:
  2133. return &v.state
  2134. case 1:
  2135. return &v.sizeCache
  2136. case 2:
  2137. return &v.unknownFields
  2138. default:
  2139. return nil
  2140. }
  2141. }
  2142. }
  2143. file_pb2_test_proto_msgTypes[8].OneofWrappers = []interface{}{
  2144. (*IndirectRequired_OneofNested)(nil),
  2145. }
  2146. type x struct{}
  2147. out := protoimpl.TypeBuilder{
  2148. File: protoimpl.DescBuilder{
  2149. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2150. RawDescriptor: file_pb2_test_proto_rawDesc,
  2151. NumEnums: 2,
  2152. NumMessages: 20,
  2153. NumExtensions: 21,
  2154. NumServices: 0,
  2155. },
  2156. GoTypes: file_pb2_test_proto_goTypes,
  2157. DependencyIndexes: file_pb2_test_proto_depIdxs,
  2158. EnumInfos: file_pb2_test_proto_enumTypes,
  2159. MessageInfos: file_pb2_test_proto_msgTypes,
  2160. ExtensionInfos: file_pb2_test_proto_extTypes,
  2161. }.Build()
  2162. File_pb2_test_proto = out.File
  2163. file_pb2_test_proto_rawDesc = nil
  2164. file_pb2_test_proto_goTypes = nil
  2165. file_pb2_test_proto_depIdxs = nil
  2166. }