You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

601 lines
21 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/devtools/resultstore/v2/common.proto
  3. package resultstore // import "google.golang.org/genproto/googleapis/devtools/resultstore/v2"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import duration "github.com/golang/protobuf/ptypes/duration"
  8. import timestamp "github.com/golang/protobuf/ptypes/timestamp"
  9. // Reference imports to suppress errors if they are not otherwise used.
  10. var _ = proto.Marshal
  11. var _ = fmt.Errorf
  12. var _ = math.Inf
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the proto package it is being compiled against.
  15. // A compilation error at this line likely means your copy of the
  16. // proto package needs to be updated.
  17. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  18. // These correspond to the prefix of the rule name. Eg cc_test has language CC.
  19. type Language int32
  20. const (
  21. // Language unspecified or not listed here.
  22. Language_LANGUAGE_UNSPECIFIED Language = 0
  23. // Not related to any particular language
  24. Language_NONE Language = 1
  25. // Android
  26. Language_ANDROID Language = 2
  27. // ActionScript (Flash)
  28. Language_AS Language = 3
  29. // C++ or C
  30. Language_CC Language = 4
  31. // Cascading-Style-Sheets
  32. Language_CSS Language = 5
  33. // Dart
  34. Language_DART Language = 6
  35. // Go
  36. Language_GO Language = 7
  37. // Google-Web-Toolkit
  38. Language_GWT Language = 8
  39. // Haskell
  40. Language_HASKELL Language = 9
  41. // Java
  42. Language_JAVA Language = 10
  43. // Javascript
  44. Language_JS Language = 11
  45. // Lisp
  46. Language_LISP Language = 12
  47. // Objective-C
  48. Language_OBJC Language = 13
  49. // Python
  50. Language_PY Language = 14
  51. // Shell (Typically Bash)
  52. Language_SH Language = 15
  53. // Swift
  54. Language_SWIFT Language = 16
  55. // Typescript
  56. Language_TS Language = 18
  57. // Webtesting
  58. Language_WEB Language = 19
  59. // Scala
  60. Language_SCALA Language = 20
  61. // Protocol Buffer
  62. Language_PROTO Language = 21
  63. )
  64. var Language_name = map[int32]string{
  65. 0: "LANGUAGE_UNSPECIFIED",
  66. 1: "NONE",
  67. 2: "ANDROID",
  68. 3: "AS",
  69. 4: "CC",
  70. 5: "CSS",
  71. 6: "DART",
  72. 7: "GO",
  73. 8: "GWT",
  74. 9: "HASKELL",
  75. 10: "JAVA",
  76. 11: "JS",
  77. 12: "LISP",
  78. 13: "OBJC",
  79. 14: "PY",
  80. 15: "SH",
  81. 16: "SWIFT",
  82. 18: "TS",
  83. 19: "WEB",
  84. 20: "SCALA",
  85. 21: "PROTO",
  86. }
  87. var Language_value = map[string]int32{
  88. "LANGUAGE_UNSPECIFIED": 0,
  89. "NONE": 1,
  90. "ANDROID": 2,
  91. "AS": 3,
  92. "CC": 4,
  93. "CSS": 5,
  94. "DART": 6,
  95. "GO": 7,
  96. "GWT": 8,
  97. "HASKELL": 9,
  98. "JAVA": 10,
  99. "JS": 11,
  100. "LISP": 12,
  101. "OBJC": 13,
  102. "PY": 14,
  103. "SH": 15,
  104. "SWIFT": 16,
  105. "TS": 18,
  106. "WEB": 19,
  107. "SCALA": 20,
  108. "PROTO": 21,
  109. }
  110. func (x Language) String() string {
  111. return proto.EnumName(Language_name, int32(x))
  112. }
  113. func (Language) EnumDescriptor() ([]byte, []int) {
  114. return fileDescriptor_common_6eb107e91fbe3d1c, []int{0}
  115. }
  116. // Status of a resource.
  117. type Status int32
  118. const (
  119. // The implicit default enum value. Should never be set.
  120. Status_STATUS_UNSPECIFIED Status = 0
  121. // Displays as "Building". Means the target is compiling, linking, etc.
  122. Status_BUILDING Status = 1
  123. // Displays as "Built". Means the target was built successfully.
  124. // If testing was requested, it should never reach this status: it should go
  125. // straight from BUILDING to TESTING.
  126. Status_BUILT Status = 2
  127. // Displays as "Broken". Means build failure such as compile error.
  128. Status_FAILED_TO_BUILD Status = 3
  129. // Displays as "Testing". Means the test is running.
  130. Status_TESTING Status = 4
  131. // Displays as "Passed". Means the test was run and passed.
  132. Status_PASSED Status = 5
  133. // Displays as "Failed". Means the test was run and failed.
  134. Status_FAILED Status = 6
  135. // Displays as "Timed out". Means the test didn't finish in time.
  136. Status_TIMED_OUT Status = 7
  137. // Displays as "Cancelled". Means the build or test was cancelled.
  138. // E.g. User hit control-C.
  139. Status_CANCELLED Status = 8
  140. // Displays as "Tool Failed". Means the build or test had internal tool
  141. // failure.
  142. Status_TOOL_FAILED Status = 9
  143. // Displays as "Incomplete". Means the build or test did not complete. This
  144. // might happen when a build breakage or test failure causes the tool to stop
  145. // trying to build anything more or run any more tests, with the default
  146. // bazel --nokeep_going option or the --notest_keep_going option.
  147. Status_INCOMPLETE Status = 10
  148. // Displays as "Flaky". Means the aggregate status contains some runs that
  149. // were successful, and some that were not.
  150. Status_FLAKY Status = 11
  151. // Displays as "Unknown". Means the tool uploading to the server died
  152. // mid-upload or does not know the state.
  153. Status_UNKNOWN Status = 12
  154. // Displays as "Skipped". Means building and testing were skipped.
  155. // (E.g. Restricted to a different configuration.)
  156. Status_SKIPPED Status = 13
  157. )
  158. var Status_name = map[int32]string{
  159. 0: "STATUS_UNSPECIFIED",
  160. 1: "BUILDING",
  161. 2: "BUILT",
  162. 3: "FAILED_TO_BUILD",
  163. 4: "TESTING",
  164. 5: "PASSED",
  165. 6: "FAILED",
  166. 7: "TIMED_OUT",
  167. 8: "CANCELLED",
  168. 9: "TOOL_FAILED",
  169. 10: "INCOMPLETE",
  170. 11: "FLAKY",
  171. 12: "UNKNOWN",
  172. 13: "SKIPPED",
  173. }
  174. var Status_value = map[string]int32{
  175. "STATUS_UNSPECIFIED": 0,
  176. "BUILDING": 1,
  177. "BUILT": 2,
  178. "FAILED_TO_BUILD": 3,
  179. "TESTING": 4,
  180. "PASSED": 5,
  181. "FAILED": 6,
  182. "TIMED_OUT": 7,
  183. "CANCELLED": 8,
  184. "TOOL_FAILED": 9,
  185. "INCOMPLETE": 10,
  186. "FLAKY": 11,
  187. "UNKNOWN": 12,
  188. "SKIPPED": 13,
  189. }
  190. func (x Status) String() string {
  191. return proto.EnumName(Status_name, int32(x))
  192. }
  193. func (Status) EnumDescriptor() ([]byte, []int) {
  194. return fileDescriptor_common_6eb107e91fbe3d1c, []int{1}
  195. }
  196. // Describes the status of a resource in both enum and string form.
  197. // Only use description when conveying additional info not captured in the enum
  198. // name.
  199. type StatusAttributes struct {
  200. // Enum representation of the status.
  201. Status Status `protobuf:"varint,1,opt,name=status,proto3,enum=google.devtools.resultstore.v2.Status" json:"status,omitempty"`
  202. // A longer description about the status.
  203. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  204. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  205. XXX_unrecognized []byte `json:"-"`
  206. XXX_sizecache int32 `json:"-"`
  207. }
  208. func (m *StatusAttributes) Reset() { *m = StatusAttributes{} }
  209. func (m *StatusAttributes) String() string { return proto.CompactTextString(m) }
  210. func (*StatusAttributes) ProtoMessage() {}
  211. func (*StatusAttributes) Descriptor() ([]byte, []int) {
  212. return fileDescriptor_common_6eb107e91fbe3d1c, []int{0}
  213. }
  214. func (m *StatusAttributes) XXX_Unmarshal(b []byte) error {
  215. return xxx_messageInfo_StatusAttributes.Unmarshal(m, b)
  216. }
  217. func (m *StatusAttributes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  218. return xxx_messageInfo_StatusAttributes.Marshal(b, m, deterministic)
  219. }
  220. func (dst *StatusAttributes) XXX_Merge(src proto.Message) {
  221. xxx_messageInfo_StatusAttributes.Merge(dst, src)
  222. }
  223. func (m *StatusAttributes) XXX_Size() int {
  224. return xxx_messageInfo_StatusAttributes.Size(m)
  225. }
  226. func (m *StatusAttributes) XXX_DiscardUnknown() {
  227. xxx_messageInfo_StatusAttributes.DiscardUnknown(m)
  228. }
  229. var xxx_messageInfo_StatusAttributes proto.InternalMessageInfo
  230. func (m *StatusAttributes) GetStatus() Status {
  231. if m != nil {
  232. return m.Status
  233. }
  234. return Status_STATUS_UNSPECIFIED
  235. }
  236. func (m *StatusAttributes) GetDescription() string {
  237. if m != nil {
  238. return m.Description
  239. }
  240. return ""
  241. }
  242. // A generic key-value property definition.
  243. type Property struct {
  244. // The key.
  245. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
  246. // The value.
  247. Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  248. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  249. XXX_unrecognized []byte `json:"-"`
  250. XXX_sizecache int32 `json:"-"`
  251. }
  252. func (m *Property) Reset() { *m = Property{} }
  253. func (m *Property) String() string { return proto.CompactTextString(m) }
  254. func (*Property) ProtoMessage() {}
  255. func (*Property) Descriptor() ([]byte, []int) {
  256. return fileDescriptor_common_6eb107e91fbe3d1c, []int{1}
  257. }
  258. func (m *Property) XXX_Unmarshal(b []byte) error {
  259. return xxx_messageInfo_Property.Unmarshal(m, b)
  260. }
  261. func (m *Property) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  262. return xxx_messageInfo_Property.Marshal(b, m, deterministic)
  263. }
  264. func (dst *Property) XXX_Merge(src proto.Message) {
  265. xxx_messageInfo_Property.Merge(dst, src)
  266. }
  267. func (m *Property) XXX_Size() int {
  268. return xxx_messageInfo_Property.Size(m)
  269. }
  270. func (m *Property) XXX_DiscardUnknown() {
  271. xxx_messageInfo_Property.DiscardUnknown(m)
  272. }
  273. var xxx_messageInfo_Property proto.InternalMessageInfo
  274. func (m *Property) GetKey() string {
  275. if m != nil {
  276. return m.Key
  277. }
  278. return ""
  279. }
  280. func (m *Property) GetValue() string {
  281. if m != nil {
  282. return m.Value
  283. }
  284. return ""
  285. }
  286. // The timing of a particular Invocation, Action, etc. The start_time is
  287. // specified, stop time can be calculated by adding duration to start_time.
  288. type Timing struct {
  289. // The time the resource started running. This is in UTC Epoch time.
  290. StartTime *timestamp.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
  291. // The duration for which the resource ran.
  292. Duration *duration.Duration `protobuf:"bytes,2,opt,name=duration,proto3" json:"duration,omitempty"`
  293. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  294. XXX_unrecognized []byte `json:"-"`
  295. XXX_sizecache int32 `json:"-"`
  296. }
  297. func (m *Timing) Reset() { *m = Timing{} }
  298. func (m *Timing) String() string { return proto.CompactTextString(m) }
  299. func (*Timing) ProtoMessage() {}
  300. func (*Timing) Descriptor() ([]byte, []int) {
  301. return fileDescriptor_common_6eb107e91fbe3d1c, []int{2}
  302. }
  303. func (m *Timing) XXX_Unmarshal(b []byte) error {
  304. return xxx_messageInfo_Timing.Unmarshal(m, b)
  305. }
  306. func (m *Timing) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  307. return xxx_messageInfo_Timing.Marshal(b, m, deterministic)
  308. }
  309. func (dst *Timing) XXX_Merge(src proto.Message) {
  310. xxx_messageInfo_Timing.Merge(dst, src)
  311. }
  312. func (m *Timing) XXX_Size() int {
  313. return xxx_messageInfo_Timing.Size(m)
  314. }
  315. func (m *Timing) XXX_DiscardUnknown() {
  316. xxx_messageInfo_Timing.DiscardUnknown(m)
  317. }
  318. var xxx_messageInfo_Timing proto.InternalMessageInfo
  319. func (m *Timing) GetStartTime() *timestamp.Timestamp {
  320. if m != nil {
  321. return m.StartTime
  322. }
  323. return nil
  324. }
  325. func (m *Timing) GetDuration() *duration.Duration {
  326. if m != nil {
  327. return m.Duration
  328. }
  329. return nil
  330. }
  331. // Represents a dependency of a resource on another resource. This can be used
  332. // to define a graph or a workflow paradigm through resources.
  333. type Dependency struct {
  334. // The resource depended upon. It may be a Target, ConfiguredTarget, or
  335. // Action.
  336. //
  337. // Types that are valid to be assigned to Resource:
  338. // *Dependency_Target
  339. // *Dependency_ConfiguredTarget
  340. // *Dependency_Action
  341. Resource isDependency_Resource `protobuf_oneof:"resource"`
  342. // A label describing this dependency.
  343. // The label "Root Cause" is handled specially. It is used to point to the
  344. // exact resource that caused a resource to fail.
  345. Label string `protobuf:"bytes,4,opt,name=label,proto3" json:"label,omitempty"`
  346. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  347. XXX_unrecognized []byte `json:"-"`
  348. XXX_sizecache int32 `json:"-"`
  349. }
  350. func (m *Dependency) Reset() { *m = Dependency{} }
  351. func (m *Dependency) String() string { return proto.CompactTextString(m) }
  352. func (*Dependency) ProtoMessage() {}
  353. func (*Dependency) Descriptor() ([]byte, []int) {
  354. return fileDescriptor_common_6eb107e91fbe3d1c, []int{3}
  355. }
  356. func (m *Dependency) XXX_Unmarshal(b []byte) error {
  357. return xxx_messageInfo_Dependency.Unmarshal(m, b)
  358. }
  359. func (m *Dependency) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  360. return xxx_messageInfo_Dependency.Marshal(b, m, deterministic)
  361. }
  362. func (dst *Dependency) XXX_Merge(src proto.Message) {
  363. xxx_messageInfo_Dependency.Merge(dst, src)
  364. }
  365. func (m *Dependency) XXX_Size() int {
  366. return xxx_messageInfo_Dependency.Size(m)
  367. }
  368. func (m *Dependency) XXX_DiscardUnknown() {
  369. xxx_messageInfo_Dependency.DiscardUnknown(m)
  370. }
  371. var xxx_messageInfo_Dependency proto.InternalMessageInfo
  372. type isDependency_Resource interface {
  373. isDependency_Resource()
  374. }
  375. type Dependency_Target struct {
  376. Target string `protobuf:"bytes,1,opt,name=target,proto3,oneof"`
  377. }
  378. type Dependency_ConfiguredTarget struct {
  379. ConfiguredTarget string `protobuf:"bytes,2,opt,name=configured_target,json=configuredTarget,proto3,oneof"`
  380. }
  381. type Dependency_Action struct {
  382. Action string `protobuf:"bytes,3,opt,name=action,proto3,oneof"`
  383. }
  384. func (*Dependency_Target) isDependency_Resource() {}
  385. func (*Dependency_ConfiguredTarget) isDependency_Resource() {}
  386. func (*Dependency_Action) isDependency_Resource() {}
  387. func (m *Dependency) GetResource() isDependency_Resource {
  388. if m != nil {
  389. return m.Resource
  390. }
  391. return nil
  392. }
  393. func (m *Dependency) GetTarget() string {
  394. if x, ok := m.GetResource().(*Dependency_Target); ok {
  395. return x.Target
  396. }
  397. return ""
  398. }
  399. func (m *Dependency) GetConfiguredTarget() string {
  400. if x, ok := m.GetResource().(*Dependency_ConfiguredTarget); ok {
  401. return x.ConfiguredTarget
  402. }
  403. return ""
  404. }
  405. func (m *Dependency) GetAction() string {
  406. if x, ok := m.GetResource().(*Dependency_Action); ok {
  407. return x.Action
  408. }
  409. return ""
  410. }
  411. func (m *Dependency) GetLabel() string {
  412. if m != nil {
  413. return m.Label
  414. }
  415. return ""
  416. }
  417. // XXX_OneofFuncs is for the internal use of the proto package.
  418. func (*Dependency) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
  419. return _Dependency_OneofMarshaler, _Dependency_OneofUnmarshaler, _Dependency_OneofSizer, []interface{}{
  420. (*Dependency_Target)(nil),
  421. (*Dependency_ConfiguredTarget)(nil),
  422. (*Dependency_Action)(nil),
  423. }
  424. }
  425. func _Dependency_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
  426. m := msg.(*Dependency)
  427. // resource
  428. switch x := m.Resource.(type) {
  429. case *Dependency_Target:
  430. b.EncodeVarint(1<<3 | proto.WireBytes)
  431. b.EncodeStringBytes(x.Target)
  432. case *Dependency_ConfiguredTarget:
  433. b.EncodeVarint(2<<3 | proto.WireBytes)
  434. b.EncodeStringBytes(x.ConfiguredTarget)
  435. case *Dependency_Action:
  436. b.EncodeVarint(3<<3 | proto.WireBytes)
  437. b.EncodeStringBytes(x.Action)
  438. case nil:
  439. default:
  440. return fmt.Errorf("Dependency.Resource has unexpected type %T", x)
  441. }
  442. return nil
  443. }
  444. func _Dependency_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
  445. m := msg.(*Dependency)
  446. switch tag {
  447. case 1: // resource.target
  448. if wire != proto.WireBytes {
  449. return true, proto.ErrInternalBadWireType
  450. }
  451. x, err := b.DecodeStringBytes()
  452. m.Resource = &Dependency_Target{x}
  453. return true, err
  454. case 2: // resource.configured_target
  455. if wire != proto.WireBytes {
  456. return true, proto.ErrInternalBadWireType
  457. }
  458. x, err := b.DecodeStringBytes()
  459. m.Resource = &Dependency_ConfiguredTarget{x}
  460. return true, err
  461. case 3: // resource.action
  462. if wire != proto.WireBytes {
  463. return true, proto.ErrInternalBadWireType
  464. }
  465. x, err := b.DecodeStringBytes()
  466. m.Resource = &Dependency_Action{x}
  467. return true, err
  468. default:
  469. return false, nil
  470. }
  471. }
  472. func _Dependency_OneofSizer(msg proto.Message) (n int) {
  473. m := msg.(*Dependency)
  474. // resource
  475. switch x := m.Resource.(type) {
  476. case *Dependency_Target:
  477. n += 1 // tag and wire
  478. n += proto.SizeVarint(uint64(len(x.Target)))
  479. n += len(x.Target)
  480. case *Dependency_ConfiguredTarget:
  481. n += 1 // tag and wire
  482. n += proto.SizeVarint(uint64(len(x.ConfiguredTarget)))
  483. n += len(x.ConfiguredTarget)
  484. case *Dependency_Action:
  485. n += 1 // tag and wire
  486. n += proto.SizeVarint(uint64(len(x.Action)))
  487. n += len(x.Action)
  488. case nil:
  489. default:
  490. panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
  491. }
  492. return n
  493. }
  494. func init() {
  495. proto.RegisterType((*StatusAttributes)(nil), "google.devtools.resultstore.v2.StatusAttributes")
  496. proto.RegisterType((*Property)(nil), "google.devtools.resultstore.v2.Property")
  497. proto.RegisterType((*Timing)(nil), "google.devtools.resultstore.v2.Timing")
  498. proto.RegisterType((*Dependency)(nil), "google.devtools.resultstore.v2.Dependency")
  499. proto.RegisterEnum("google.devtools.resultstore.v2.Language", Language_name, Language_value)
  500. proto.RegisterEnum("google.devtools.resultstore.v2.Status", Status_name, Status_value)
  501. }
  502. func init() {
  503. proto.RegisterFile("google/devtools/resultstore/v2/common.proto", fileDescriptor_common_6eb107e91fbe3d1c)
  504. }
  505. var fileDescriptor_common_6eb107e91fbe3d1c = []byte{
  506. // 704 bytes of a gzipped FileDescriptorProto
  507. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x94, 0xdf, 0x6e, 0xe3, 0x44,
  508. 0x14, 0xc6, 0xd7, 0x49, 0xeb, 0x3a, 0x27, 0xfd, 0x73, 0x98, 0x2d, 0x28, 0xf4, 0x02, 0xaa, 0x5c,
  509. 0xa0, 0xd5, 0x22, 0x6c, 0x29, 0x88, 0x0b, 0x84, 0x84, 0x34, 0xb1, 0xdd, 0xd4, 0xad, 0xd7, 0xb6,
  510. 0x3c, 0x13, 0xa2, 0xe5, 0x26, 0x72, 0x92, 0x59, 0xcb, 0x22, 0xb1, 0x83, 0x3d, 0x8e, 0x54, 0xde,
  511. 0x82, 0xa7, 0xe3, 0x05, 0x78, 0x10, 0x34, 0xb6, 0x03, 0x55, 0x11, 0xec, 0x95, 0xcf, 0x77, 0xbe,
  512. 0xdf, 0x39, 0x73, 0xce, 0x68, 0x12, 0xf8, 0x3a, 0x2d, 0x8a, 0x74, 0x2b, 0xac, 0x8d, 0x38, 0xc8,
  513. 0xa2, 0xd8, 0x56, 0x56, 0x29, 0xaa, 0x7a, 0x2b, 0x2b, 0x59, 0x94, 0xc2, 0x3a, 0x4c, 0xac, 0x75,
  514. 0xb1, 0xdb, 0x15, 0xb9, 0xb9, 0x2f, 0x0b, 0x59, 0x90, 0x2f, 0x5a, 0xd8, 0x3c, 0xc2, 0xe6, 0x33,
  515. 0xd8, 0x3c, 0x4c, 0x6e, 0x3a, 0xdf, 0x6a, 0xe8, 0x55, 0xfd, 0xc1, 0xda, 0xd4, 0x65, 0x22, 0xb3,
  516. 0x63, 0xfd, 0xcd, 0x97, 0x2f, 0x7d, 0x99, 0xed, 0x44, 0x25, 0x93, 0xdd, 0xbe, 0x05, 0xc6, 0x12,
  517. 0x90, 0xc9, 0x44, 0xd6, 0x15, 0x95, 0xb2, 0xcc, 0x56, 0xb5, 0x14, 0x15, 0xf9, 0x11, 0xf4, 0xaa,
  518. 0xc9, 0x8d, 0xb4, 0x5b, 0xed, 0xcd, 0xe5, 0xe4, 0x2b, 0xf3, 0xff, 0xa7, 0x30, 0xdb, 0x0e, 0x71,
  519. 0x57, 0x45, 0x6e, 0x61, 0xb8, 0x11, 0xd5, 0xba, 0xcc, 0xf6, 0x6a, 0x92, 0x51, 0xef, 0x56, 0x7b,
  520. 0x33, 0x88, 0x9f, 0xa7, 0xc6, 0x13, 0x30, 0xa2, 0xb2, 0xd8, 0x8b, 0x52, 0x3e, 0x11, 0x84, 0xfe,
  521. 0x2f, 0xe2, 0xa9, 0x39, 0x6a, 0x10, 0xab, 0x90, 0x5c, 0xc3, 0xe9, 0x21, 0xd9, 0xd6, 0xa2, 0xab,
  522. 0x6c, 0xc5, 0xf8, 0x37, 0xd0, 0x79, 0xb6, 0xcb, 0xf2, 0x94, 0x7c, 0x0f, 0x50, 0xc9, 0xa4, 0x94,
  523. 0x4b, 0xb5, 0x4c, 0x53, 0x38, 0x9c, 0xdc, 0x1c, 0x67, 0x3c, 0x6e, 0x6a, 0xf2, 0xe3, 0xa6, 0xf1,
  524. 0xa0, 0xa1, 0x95, 0x26, 0xdf, 0x81, 0x71, 0xbc, 0xa1, 0xa6, 0xfb, 0x70, 0xf2, 0xf9, 0xbf, 0x0a,
  525. 0x9d, 0x0e, 0x88, 0xff, 0x46, 0xc7, 0xbf, 0x6b, 0x00, 0x8e, 0xd8, 0x8b, 0x7c, 0x23, 0xf2, 0xf5,
  526. 0x13, 0x19, 0x81, 0x2e, 0x93, 0x32, 0x15, 0xb2, 0x9d, 0xfa, 0xfe, 0x55, 0xdc, 0x69, 0xf2, 0x0d,
  527. 0x7c, 0xb2, 0x2e, 0xf2, 0x0f, 0x59, 0x5a, 0x97, 0x62, 0xb3, 0xec, 0xa0, 0x5e, 0x07, 0xe1, 0x3f,
  528. 0x16, 0x6f, 0xf1, 0x11, 0xe8, 0xc9, 0xba, 0x19, 0xa6, 0x7f, 0x6c, 0xd4, 0x6a, 0x75, 0x07, 0xdb,
  529. 0x64, 0x25, 0xb6, 0xa3, 0x93, 0xf6, 0x0e, 0x1a, 0x31, 0x05, 0x30, 0x4a, 0x51, 0x15, 0x75, 0xb9,
  530. 0x16, 0x6f, 0xff, 0xd4, 0xc0, 0xf0, 0x93, 0x3c, 0xad, 0x93, 0x54, 0x90, 0x11, 0x5c, 0xfb, 0x34,
  531. 0x98, 0xcd, 0xe9, 0xcc, 0x5d, 0xce, 0x03, 0x16, 0xb9, 0xb6, 0x77, 0xe7, 0xb9, 0x0e, 0xbe, 0x22,
  532. 0x06, 0x9c, 0x04, 0x61, 0xe0, 0xa2, 0x46, 0x86, 0x70, 0x46, 0x03, 0x27, 0x0e, 0x3d, 0x07, 0x7b,
  533. 0x44, 0x87, 0x1e, 0x65, 0xd8, 0x57, 0x5f, 0xdb, 0xc6, 0x13, 0x72, 0x06, 0x7d, 0x9b, 0x31, 0x3c,
  534. 0x55, 0xbc, 0x43, 0x63, 0x8e, 0xba, 0xb2, 0x66, 0x21, 0x9e, 0x29, 0x6b, 0xb6, 0xe0, 0x68, 0xa8,
  535. 0x06, 0xf7, 0x94, 0x3d, 0xba, 0xbe, 0x8f, 0x03, 0xc5, 0x3d, 0xd0, 0x9f, 0x28, 0x82, 0xe2, 0x1e,
  536. 0x18, 0x0e, 0x55, 0xc6, 0xf7, 0x58, 0x84, 0xe7, 0x2a, 0x0a, 0xa7, 0x0f, 0x36, 0x5e, 0x28, 0x2f,
  537. 0x7a, 0x8f, 0x97, 0xea, 0xcb, 0xee, 0xf1, 0x8a, 0x0c, 0xe0, 0x94, 0x2d, 0xbc, 0x3b, 0x8e, 0xa8,
  538. 0x52, 0x9c, 0x21, 0x51, 0xed, 0x17, 0xee, 0x14, 0x5f, 0x37, 0x9e, 0x4d, 0x7d, 0x8a, 0xd7, 0x2a,
  539. 0x8c, 0xe2, 0x90, 0x87, 0xf8, 0xe9, 0xdb, 0x3f, 0x34, 0xd0, 0xdb, 0xf7, 0x45, 0x3e, 0x03, 0xc2,
  540. 0x38, 0xe5, 0x73, 0xf6, 0x62, 0xc5, 0x73, 0x30, 0xa6, 0x73, 0xcf, 0x77, 0xbc, 0x60, 0x86, 0x9a,
  541. 0xaa, 0x55, 0x8a, 0x63, 0x8f, 0xbc, 0x86, 0xab, 0x3b, 0xea, 0xf9, 0xae, 0xb3, 0xe4, 0xe1, 0xb2,
  542. 0x41, 0xb0, 0xaf, 0xb6, 0xe0, 0x2e, 0xe3, 0x0a, 0x3e, 0x21, 0x00, 0x7a, 0x44, 0x19, 0x73, 0x1d,
  543. 0x3c, 0x55, 0x71, 0x4b, 0xa3, 0x4e, 0x2e, 0x60, 0xc0, 0xbd, 0x77, 0xae, 0xb3, 0x0c, 0xe7, 0x1c,
  544. 0xcf, 0x94, 0xb4, 0x69, 0x60, 0xbb, 0xbe, 0x72, 0x0d, 0x72, 0x05, 0x43, 0x1e, 0x86, 0xfe, 0xb2,
  545. 0xc3, 0x07, 0xe4, 0x12, 0xc0, 0x0b, 0xec, 0xf0, 0x5d, 0xe4, 0xbb, 0xdc, 0x45, 0x50, 0x33, 0xdc,
  546. 0xf9, 0xf4, 0xf1, 0x3d, 0x0e, 0xd5, 0x71, 0xf3, 0xe0, 0x31, 0x08, 0x17, 0x01, 0x9e, 0x2b, 0xc1,
  547. 0x1e, 0xbd, 0x28, 0x72, 0x1d, 0xbc, 0x98, 0xfe, 0x0a, 0xe3, 0x75, 0xb1, 0xfb, 0xc8, 0x6f, 0x2b,
  548. 0xd2, 0x7e, 0xf6, 0x3a, 0x22, 0x2d, 0xb6, 0x49, 0x9e, 0x9a, 0x45, 0x99, 0x5a, 0xa9, 0xc8, 0x9b,
  549. 0xe7, 0x6a, 0xb5, 0x56, 0xb2, 0xcf, 0xaa, 0xff, 0xfa, 0x3f, 0xf9, 0xe1, 0x99, 0x5c, 0xe9, 0x4d,
  550. 0xd5, 0xb7, 0x7f, 0x05, 0x00, 0x00, 0xff, 0xff, 0x47, 0xe0, 0xd7, 0x5c, 0x84, 0x04, 0x00, 0x00,
  551. }