test.pb.go 87 KB

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