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.
 
 
 

478 lines
20 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/api/metric.proto
  3. package metric // import "google.golang.org/genproto/googleapis/api/metric"
  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 api "google.golang.org/genproto/googleapis/api"
  9. import label "google.golang.org/genproto/googleapis/api/label"
  10. // Reference imports to suppress errors if they are not otherwise used.
  11. var _ = proto.Marshal
  12. var _ = fmt.Errorf
  13. var _ = math.Inf
  14. // This is a compile-time assertion to ensure that this generated file
  15. // is compatible with the proto package it is being compiled against.
  16. // A compilation error at this line likely means your copy of the
  17. // proto package needs to be updated.
  18. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  19. // The kind of measurement. It describes how the data is reported.
  20. type MetricDescriptor_MetricKind int32
  21. const (
  22. // Do not use this default value.
  23. MetricDescriptor_METRIC_KIND_UNSPECIFIED MetricDescriptor_MetricKind = 0
  24. // An instantaneous measurement of a value.
  25. MetricDescriptor_GAUGE MetricDescriptor_MetricKind = 1
  26. // The change in a value during a time interval.
  27. MetricDescriptor_DELTA MetricDescriptor_MetricKind = 2
  28. // A value accumulated over a time interval. Cumulative
  29. // measurements in a time series should have the same start time
  30. // and increasing end times, until an event resets the cumulative
  31. // value to zero and sets a new start time for the following
  32. // points.
  33. MetricDescriptor_CUMULATIVE MetricDescriptor_MetricKind = 3
  34. )
  35. var MetricDescriptor_MetricKind_name = map[int32]string{
  36. 0: "METRIC_KIND_UNSPECIFIED",
  37. 1: "GAUGE",
  38. 2: "DELTA",
  39. 3: "CUMULATIVE",
  40. }
  41. var MetricDescriptor_MetricKind_value = map[string]int32{
  42. "METRIC_KIND_UNSPECIFIED": 0,
  43. "GAUGE": 1,
  44. "DELTA": 2,
  45. "CUMULATIVE": 3,
  46. }
  47. func (x MetricDescriptor_MetricKind) String() string {
  48. return proto.EnumName(MetricDescriptor_MetricKind_name, int32(x))
  49. }
  50. func (MetricDescriptor_MetricKind) EnumDescriptor() ([]byte, []int) {
  51. return fileDescriptor_metric_70b5b8d2d060c7ba, []int{0, 0}
  52. }
  53. // The value type of a metric.
  54. type MetricDescriptor_ValueType int32
  55. const (
  56. // Do not use this default value.
  57. MetricDescriptor_VALUE_TYPE_UNSPECIFIED MetricDescriptor_ValueType = 0
  58. // The value is a boolean.
  59. // This value type can be used only if the metric kind is `GAUGE`.
  60. MetricDescriptor_BOOL MetricDescriptor_ValueType = 1
  61. // The value is a signed 64-bit integer.
  62. MetricDescriptor_INT64 MetricDescriptor_ValueType = 2
  63. // The value is a double precision floating point number.
  64. MetricDescriptor_DOUBLE MetricDescriptor_ValueType = 3
  65. // The value is a text string.
  66. // This value type can be used only if the metric kind is `GAUGE`.
  67. MetricDescriptor_STRING MetricDescriptor_ValueType = 4
  68. // The value is a [`Distribution`][google.api.Distribution].
  69. MetricDescriptor_DISTRIBUTION MetricDescriptor_ValueType = 5
  70. // The value is money.
  71. MetricDescriptor_MONEY MetricDescriptor_ValueType = 6
  72. )
  73. var MetricDescriptor_ValueType_name = map[int32]string{
  74. 0: "VALUE_TYPE_UNSPECIFIED",
  75. 1: "BOOL",
  76. 2: "INT64",
  77. 3: "DOUBLE",
  78. 4: "STRING",
  79. 5: "DISTRIBUTION",
  80. 6: "MONEY",
  81. }
  82. var MetricDescriptor_ValueType_value = map[string]int32{
  83. "VALUE_TYPE_UNSPECIFIED": 0,
  84. "BOOL": 1,
  85. "INT64": 2,
  86. "DOUBLE": 3,
  87. "STRING": 4,
  88. "DISTRIBUTION": 5,
  89. "MONEY": 6,
  90. }
  91. func (x MetricDescriptor_ValueType) String() string {
  92. return proto.EnumName(MetricDescriptor_ValueType_name, int32(x))
  93. }
  94. func (MetricDescriptor_ValueType) EnumDescriptor() ([]byte, []int) {
  95. return fileDescriptor_metric_70b5b8d2d060c7ba, []int{0, 1}
  96. }
  97. // Defines a metric type and its schema. Once a metric descriptor is created,
  98. // deleting or altering it stops data collection and makes the metric type's
  99. // existing data unusable.
  100. type MetricDescriptor struct {
  101. // The resource name of the metric descriptor.
  102. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  103. // The metric type, including its DNS name prefix. The type is not
  104. // URL-encoded. All user-defined metric types have the DNS name
  105. // `custom.googleapis.com` or `external.googleapis.com`. Metric types should
  106. // use a natural hierarchical grouping. For example:
  107. //
  108. // "custom.googleapis.com/invoice/paid/amount"
  109. // "external.googleapis.com/prometheus/up"
  110. // "appengine.googleapis.com/http/server/response_latencies"
  111. Type string `protobuf:"bytes,8,opt,name=type,proto3" json:"type,omitempty"`
  112. // The set of labels that can be used to describe a specific
  113. // instance of this metric type. For example, the
  114. // `appengine.googleapis.com/http/server/response_latencies` metric
  115. // type has a label for the HTTP response code, `response_code`, so
  116. // you can look at latencies for successful responses or just
  117. // for responses that failed.
  118. Labels []*label.LabelDescriptor `protobuf:"bytes,2,rep,name=labels,proto3" json:"labels,omitempty"`
  119. // Whether the metric records instantaneous values, changes to a value, etc.
  120. // Some combinations of `metric_kind` and `value_type` might not be supported.
  121. MetricKind MetricDescriptor_MetricKind `protobuf:"varint,3,opt,name=metric_kind,json=metricKind,proto3,enum=google.api.MetricDescriptor_MetricKind" json:"metric_kind,omitempty"`
  122. // Whether the measurement is an integer, a floating-point number, etc.
  123. // Some combinations of `metric_kind` and `value_type` might not be supported.
  124. ValueType MetricDescriptor_ValueType `protobuf:"varint,4,opt,name=value_type,json=valueType,proto3,enum=google.api.MetricDescriptor_ValueType" json:"value_type,omitempty"`
  125. // The unit in which the metric value is reported. It is only applicable
  126. // if the `value_type` is `INT64`, `DOUBLE`, or `DISTRIBUTION`. The
  127. // supported units are a subset of [The Unified Code for Units of
  128. // Measure](http://unitsofmeasure.org/ucum.html) standard:
  129. //
  130. // **Basic units (UNIT)**
  131. //
  132. // * `bit` bit
  133. // * `By` byte
  134. // * `s` second
  135. // * `min` minute
  136. // * `h` hour
  137. // * `d` day
  138. //
  139. // **Prefixes (PREFIX)**
  140. //
  141. // * `k` kilo (10**3)
  142. // * `M` mega (10**6)
  143. // * `G` giga (10**9)
  144. // * `T` tera (10**12)
  145. // * `P` peta (10**15)
  146. // * `E` exa (10**18)
  147. // * `Z` zetta (10**21)
  148. // * `Y` yotta (10**24)
  149. // * `m` milli (10**-3)
  150. // * `u` micro (10**-6)
  151. // * `n` nano (10**-9)
  152. // * `p` pico (10**-12)
  153. // * `f` femto (10**-15)
  154. // * `a` atto (10**-18)
  155. // * `z` zepto (10**-21)
  156. // * `y` yocto (10**-24)
  157. // * `Ki` kibi (2**10)
  158. // * `Mi` mebi (2**20)
  159. // * `Gi` gibi (2**30)
  160. // * `Ti` tebi (2**40)
  161. //
  162. // **Grammar**
  163. //
  164. // The grammar also includes these connectors:
  165. //
  166. // * `/` division (as an infix operator, e.g. `1/s`).
  167. // * `.` multiplication (as an infix operator, e.g. `GBy.d`)
  168. //
  169. // The grammar for a unit is as follows:
  170. //
  171. // Expression = Component { "." Component } { "/" Component } ;
  172. //
  173. // Component = ( [ PREFIX ] UNIT | "%" ) [ Annotation ]
  174. // | Annotation
  175. // | "1"
  176. // ;
  177. //
  178. // Annotation = "{" NAME "}" ;
  179. //
  180. // Notes:
  181. //
  182. // * `Annotation` is just a comment if it follows a `UNIT` and is
  183. // equivalent to `1` if it is used alone. For examples,
  184. // `{requests}/s == 1/s`, `By{transmitted}/s == By/s`.
  185. // * `NAME` is a sequence of non-blank printable ASCII characters not
  186. // containing '{' or '}'.
  187. // * `1` represents dimensionless value 1, such as in `1/s`.
  188. // * `%` represents dimensionless value 1/100, and annotates values giving
  189. // a percentage.
  190. Unit string `protobuf:"bytes,5,opt,name=unit,proto3" json:"unit,omitempty"`
  191. // A detailed description of the metric, which can be used in documentation.
  192. Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
  193. // A concise name for the metric, which can be displayed in user interfaces.
  194. // Use sentence case without an ending period, for example "Request count".
  195. // This field is optional but it is recommended to be set for any metrics
  196. // associated with user-visible concepts, such as Quota.
  197. DisplayName string `protobuf:"bytes,7,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
  198. // Optional. Metadata which can be used to guide usage of the metric.
  199. Metadata *MetricDescriptor_MetricDescriptorMetadata `protobuf:"bytes,10,opt,name=metadata,proto3" json:"metadata,omitempty"`
  200. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  201. XXX_unrecognized []byte `json:"-"`
  202. XXX_sizecache int32 `json:"-"`
  203. }
  204. func (m *MetricDescriptor) Reset() { *m = MetricDescriptor{} }
  205. func (m *MetricDescriptor) String() string { return proto.CompactTextString(m) }
  206. func (*MetricDescriptor) ProtoMessage() {}
  207. func (*MetricDescriptor) Descriptor() ([]byte, []int) {
  208. return fileDescriptor_metric_70b5b8d2d060c7ba, []int{0}
  209. }
  210. func (m *MetricDescriptor) XXX_Unmarshal(b []byte) error {
  211. return xxx_messageInfo_MetricDescriptor.Unmarshal(m, b)
  212. }
  213. func (m *MetricDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  214. return xxx_messageInfo_MetricDescriptor.Marshal(b, m, deterministic)
  215. }
  216. func (dst *MetricDescriptor) XXX_Merge(src proto.Message) {
  217. xxx_messageInfo_MetricDescriptor.Merge(dst, src)
  218. }
  219. func (m *MetricDescriptor) XXX_Size() int {
  220. return xxx_messageInfo_MetricDescriptor.Size(m)
  221. }
  222. func (m *MetricDescriptor) XXX_DiscardUnknown() {
  223. xxx_messageInfo_MetricDescriptor.DiscardUnknown(m)
  224. }
  225. var xxx_messageInfo_MetricDescriptor proto.InternalMessageInfo
  226. func (m *MetricDescriptor) GetName() string {
  227. if m != nil {
  228. return m.Name
  229. }
  230. return ""
  231. }
  232. func (m *MetricDescriptor) GetType() string {
  233. if m != nil {
  234. return m.Type
  235. }
  236. return ""
  237. }
  238. func (m *MetricDescriptor) GetLabels() []*label.LabelDescriptor {
  239. if m != nil {
  240. return m.Labels
  241. }
  242. return nil
  243. }
  244. func (m *MetricDescriptor) GetMetricKind() MetricDescriptor_MetricKind {
  245. if m != nil {
  246. return m.MetricKind
  247. }
  248. return MetricDescriptor_METRIC_KIND_UNSPECIFIED
  249. }
  250. func (m *MetricDescriptor) GetValueType() MetricDescriptor_ValueType {
  251. if m != nil {
  252. return m.ValueType
  253. }
  254. return MetricDescriptor_VALUE_TYPE_UNSPECIFIED
  255. }
  256. func (m *MetricDescriptor) GetUnit() string {
  257. if m != nil {
  258. return m.Unit
  259. }
  260. return ""
  261. }
  262. func (m *MetricDescriptor) GetDescription() string {
  263. if m != nil {
  264. return m.Description
  265. }
  266. return ""
  267. }
  268. func (m *MetricDescriptor) GetDisplayName() string {
  269. if m != nil {
  270. return m.DisplayName
  271. }
  272. return ""
  273. }
  274. func (m *MetricDescriptor) GetMetadata() *MetricDescriptor_MetricDescriptorMetadata {
  275. if m != nil {
  276. return m.Metadata
  277. }
  278. return nil
  279. }
  280. // Additional annotations that can be used to guide the usage of a metric.
  281. type MetricDescriptor_MetricDescriptorMetadata struct {
  282. // The launch stage of the metric definition.
  283. LaunchStage api.LaunchStage `protobuf:"varint,1,opt,name=launch_stage,json=launchStage,proto3,enum=google.api.LaunchStage" json:"launch_stage,omitempty"`
  284. // The sampling period of metric data points. For metrics which are written
  285. // periodically, consecutive data points are stored at this time interval,
  286. // excluding data loss due to errors. Metrics with a higher granularity have
  287. // a smaller sampling period.
  288. SamplePeriod *duration.Duration `protobuf:"bytes,2,opt,name=sample_period,json=samplePeriod,proto3" json:"sample_period,omitempty"`
  289. // The delay of data points caused by ingestion. Data points older than this
  290. // age are guaranteed to be ingested and available to be read, excluding
  291. // data loss due to errors.
  292. IngestDelay *duration.Duration `protobuf:"bytes,3,opt,name=ingest_delay,json=ingestDelay,proto3" json:"ingest_delay,omitempty"`
  293. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  294. XXX_unrecognized []byte `json:"-"`
  295. XXX_sizecache int32 `json:"-"`
  296. }
  297. func (m *MetricDescriptor_MetricDescriptorMetadata) Reset() {
  298. *m = MetricDescriptor_MetricDescriptorMetadata{}
  299. }
  300. func (m *MetricDescriptor_MetricDescriptorMetadata) String() string { return proto.CompactTextString(m) }
  301. func (*MetricDescriptor_MetricDescriptorMetadata) ProtoMessage() {}
  302. func (*MetricDescriptor_MetricDescriptorMetadata) Descriptor() ([]byte, []int) {
  303. return fileDescriptor_metric_70b5b8d2d060c7ba, []int{0, 0}
  304. }
  305. func (m *MetricDescriptor_MetricDescriptorMetadata) XXX_Unmarshal(b []byte) error {
  306. return xxx_messageInfo_MetricDescriptor_MetricDescriptorMetadata.Unmarshal(m, b)
  307. }
  308. func (m *MetricDescriptor_MetricDescriptorMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  309. return xxx_messageInfo_MetricDescriptor_MetricDescriptorMetadata.Marshal(b, m, deterministic)
  310. }
  311. func (dst *MetricDescriptor_MetricDescriptorMetadata) XXX_Merge(src proto.Message) {
  312. xxx_messageInfo_MetricDescriptor_MetricDescriptorMetadata.Merge(dst, src)
  313. }
  314. func (m *MetricDescriptor_MetricDescriptorMetadata) XXX_Size() int {
  315. return xxx_messageInfo_MetricDescriptor_MetricDescriptorMetadata.Size(m)
  316. }
  317. func (m *MetricDescriptor_MetricDescriptorMetadata) XXX_DiscardUnknown() {
  318. xxx_messageInfo_MetricDescriptor_MetricDescriptorMetadata.DiscardUnknown(m)
  319. }
  320. var xxx_messageInfo_MetricDescriptor_MetricDescriptorMetadata proto.InternalMessageInfo
  321. func (m *MetricDescriptor_MetricDescriptorMetadata) GetLaunchStage() api.LaunchStage {
  322. if m != nil {
  323. return m.LaunchStage
  324. }
  325. return api.LaunchStage_LAUNCH_STAGE_UNSPECIFIED
  326. }
  327. func (m *MetricDescriptor_MetricDescriptorMetadata) GetSamplePeriod() *duration.Duration {
  328. if m != nil {
  329. return m.SamplePeriod
  330. }
  331. return nil
  332. }
  333. func (m *MetricDescriptor_MetricDescriptorMetadata) GetIngestDelay() *duration.Duration {
  334. if m != nil {
  335. return m.IngestDelay
  336. }
  337. return nil
  338. }
  339. // A specific metric, identified by specifying values for all of the
  340. // labels of a [`MetricDescriptor`][google.api.MetricDescriptor].
  341. type Metric struct {
  342. // An existing metric type, see
  343. // [google.api.MetricDescriptor][google.api.MetricDescriptor]. For example,
  344. // `custom.googleapis.com/invoice/paid/amount`.
  345. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
  346. // The set of label values that uniquely identify this metric. All
  347. // labels listed in the `MetricDescriptor` must be assigned values.
  348. Labels map[string]string `protobuf:"bytes,2,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  349. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  350. XXX_unrecognized []byte `json:"-"`
  351. XXX_sizecache int32 `json:"-"`
  352. }
  353. func (m *Metric) Reset() { *m = Metric{} }
  354. func (m *Metric) String() string { return proto.CompactTextString(m) }
  355. func (*Metric) ProtoMessage() {}
  356. func (*Metric) Descriptor() ([]byte, []int) {
  357. return fileDescriptor_metric_70b5b8d2d060c7ba, []int{1}
  358. }
  359. func (m *Metric) XXX_Unmarshal(b []byte) error {
  360. return xxx_messageInfo_Metric.Unmarshal(m, b)
  361. }
  362. func (m *Metric) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  363. return xxx_messageInfo_Metric.Marshal(b, m, deterministic)
  364. }
  365. func (dst *Metric) XXX_Merge(src proto.Message) {
  366. xxx_messageInfo_Metric.Merge(dst, src)
  367. }
  368. func (m *Metric) XXX_Size() int {
  369. return xxx_messageInfo_Metric.Size(m)
  370. }
  371. func (m *Metric) XXX_DiscardUnknown() {
  372. xxx_messageInfo_Metric.DiscardUnknown(m)
  373. }
  374. var xxx_messageInfo_Metric proto.InternalMessageInfo
  375. func (m *Metric) GetType() string {
  376. if m != nil {
  377. return m.Type
  378. }
  379. return ""
  380. }
  381. func (m *Metric) GetLabels() map[string]string {
  382. if m != nil {
  383. return m.Labels
  384. }
  385. return nil
  386. }
  387. func init() {
  388. proto.RegisterType((*MetricDescriptor)(nil), "google.api.MetricDescriptor")
  389. proto.RegisterType((*MetricDescriptor_MetricDescriptorMetadata)(nil), "google.api.MetricDescriptor.MetricDescriptorMetadata")
  390. proto.RegisterType((*Metric)(nil), "google.api.Metric")
  391. proto.RegisterMapType((map[string]string)(nil), "google.api.Metric.LabelsEntry")
  392. proto.RegisterEnum("google.api.MetricDescriptor_MetricKind", MetricDescriptor_MetricKind_name, MetricDescriptor_MetricKind_value)
  393. proto.RegisterEnum("google.api.MetricDescriptor_ValueType", MetricDescriptor_ValueType_name, MetricDescriptor_ValueType_value)
  394. }
  395. func init() { proto.RegisterFile("google/api/metric.proto", fileDescriptor_metric_70b5b8d2d060c7ba) }
  396. var fileDescriptor_metric_70b5b8d2d060c7ba = []byte{
  397. // 648 bytes of a gzipped FileDescriptorProto
  398. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0x5d, 0x6e, 0xd3, 0x40,
  399. 0x10, 0xc6, 0xf9, 0x31, 0xcd, 0x38, 0x44, 0xd6, 0x0a, 0xb5, 0x26, 0x15, 0x55, 0xc8, 0x03, 0xe4,
  400. 0x29, 0x91, 0x52, 0x28, 0x50, 0x10, 0x52, 0x52, 0x9b, 0x60, 0x35, 0x71, 0x82, 0x6b, 0x57, 0x2a,
  401. 0x2f, 0xd6, 0x36, 0x5e, 0x8c, 0x55, 0xc7, 0x36, 0xb6, 0x53, 0x29, 0xa7, 0xe0, 0x0e, 0x5c, 0x86,
  402. 0x0b, 0x70, 0x20, 0xb4, 0xbb, 0x4e, 0xe2, 0x06, 0x51, 0xf1, 0x94, 0x99, 0xf9, 0xbe, 0x99, 0x9d,
  403. 0xf1, 0x37, 0x13, 0x38, 0xf0, 0xa2, 0xc8, 0x0b, 0x48, 0x0f, 0xc7, 0x7e, 0x6f, 0x41, 0xb2, 0xc4,
  404. 0x9f, 0x77, 0xe3, 0x24, 0xca, 0x22, 0x04, 0x1c, 0xe8, 0xe2, 0xd8, 0x6f, 0xee, 0x17, 0x48, 0x01,
  405. 0xbe, 0x26, 0x01, 0xe7, 0x34, 0x9f, 0xde, 0x89, 0x2f, 0xc3, 0xf9, 0x37, 0x27, 0xcd, 0xb0, 0x47,
  406. 0x72, 0xf8, 0x28, 0x87, 0x99, 0x77, 0xbd, 0xfc, 0xda, 0x73, 0x97, 0x09, 0xce, 0xfc, 0x28, 0xe4,
  407. 0x78, 0xfb, 0x97, 0x08, 0xf2, 0x84, 0xbd, 0xa9, 0x92, 0x74, 0x9e, 0xf8, 0x71, 0x16, 0x25, 0x08,
  408. 0x41, 0x25, 0xc4, 0x0b, 0xa2, 0x08, 0x2d, 0xa1, 0x53, 0x33, 0x99, 0x4d, 0x63, 0xd9, 0x2a, 0x26,
  409. 0xca, 0x1e, 0x8f, 0x51, 0x1b, 0x1d, 0x83, 0xc8, 0x5a, 0x49, 0x95, 0x52, 0xab, 0xdc, 0x91, 0xfa,
  410. 0x87, 0xdd, 0x6d, 0xc3, 0xdd, 0x31, 0x45, 0xb6, 0x45, 0xcd, 0x9c, 0x8a, 0x3e, 0x81, 0xc4, 0x87,
  411. 0x74, 0x6e, 0xfc, 0xd0, 0x55, 0xca, 0x2d, 0xa1, 0xd3, 0xe8, 0xbf, 0x28, 0x66, 0xee, 0xf6, 0x93,
  412. 0x07, 0xce, 0xfd, 0xd0, 0x35, 0x61, 0xb1, 0xb1, 0x91, 0x06, 0x70, 0x8b, 0x83, 0x25, 0x71, 0x58,
  413. 0x63, 0x15, 0x56, 0xe8, 0xf9, 0xbd, 0x85, 0x2e, 0x29, 0xdd, 0x5a, 0xc5, 0xc4, 0xac, 0xdd, 0xae,
  414. 0x4d, 0x3a, 0xd9, 0x32, 0xf4, 0x33, 0xa5, 0xca, 0x27, 0xa3, 0x36, 0x6a, 0x81, 0xe4, 0xe6, 0x69,
  415. 0x7e, 0x14, 0x2a, 0x22, 0x83, 0x8a, 0x21, 0xf4, 0x0c, 0xea, 0xae, 0x9f, 0xc6, 0x01, 0x5e, 0x39,
  416. 0xec, 0x5b, 0x3d, 0xcc, 0x29, 0x3c, 0x66, 0xd0, 0x4f, 0xf6, 0x19, 0xf6, 0x16, 0x24, 0xc3, 0x2e,
  417. 0xce, 0xb0, 0x02, 0x2d, 0xa1, 0x23, 0xf5, 0x5f, 0xfd, 0xc7, 0x98, 0xdb, 0xc0, 0x24, 0x4f, 0x36,
  418. 0x37, 0x65, 0x9a, 0xbf, 0x05, 0x50, 0xfe, 0x45, 0x43, 0xa7, 0x50, 0x2f, 0x6e, 0x00, 0x93, 0xaf,
  419. 0xd1, 0x3f, 0xb8, 0x2b, 0x0a, 0xc5, 0x2f, 0x28, 0x6c, 0x4a, 0xc1, 0xd6, 0x41, 0x1f, 0xe0, 0x51,
  420. 0x8a, 0x17, 0x71, 0x40, 0x9c, 0x98, 0x24, 0x7e, 0xe4, 0x2a, 0x25, 0xd6, 0xf0, 0x93, 0x75, 0xf2,
  421. 0x7a, 0x7f, 0xba, 0x6a, 0xbe, 0x3f, 0x66, 0x9d, 0xf3, 0x67, 0x8c, 0x8e, 0xde, 0x43, 0xdd, 0x0f,
  422. 0x3d, 0x92, 0x66, 0x8e, 0x4b, 0x02, 0xbc, 0x62, 0xb2, 0xde, 0x9b, 0x2e, 0x71, 0xba, 0x4a, 0xd9,
  423. 0xed, 0x29, 0xc0, 0x56, 0x63, 0x74, 0x08, 0x07, 0x13, 0xcd, 0x32, 0xf5, 0x33, 0xe7, 0x5c, 0x37,
  424. 0x54, 0xc7, 0x36, 0x2e, 0x66, 0xda, 0x99, 0xfe, 0x51, 0xd7, 0x54, 0xf9, 0x01, 0xaa, 0x41, 0x75,
  425. 0x34, 0xb0, 0x47, 0x9a, 0x2c, 0x50, 0x53, 0xd5, 0xc6, 0xd6, 0x40, 0x2e, 0xa1, 0x06, 0xc0, 0x99,
  426. 0x3d, 0xb1, 0xc7, 0x03, 0x4b, 0xbf, 0xd4, 0xe4, 0x72, 0xfb, 0x3b, 0xd4, 0x36, 0x5a, 0xa3, 0x26,
  427. 0xec, 0x5f, 0x0e, 0xc6, 0xb6, 0xe6, 0x58, 0x57, 0x33, 0x6d, 0xa7, 0xdc, 0x1e, 0x54, 0x86, 0xd3,
  428. 0xe9, 0x98, 0x57, 0xd3, 0x0d, 0xeb, 0xe4, 0xa5, 0x5c, 0x42, 0x00, 0xa2, 0x3a, 0xb5, 0x87, 0x63,
  429. 0x4d, 0x2e, 0x53, 0xfb, 0xc2, 0x32, 0x75, 0x63, 0x24, 0x57, 0x90, 0x0c, 0x75, 0x55, 0xa7, 0xde,
  430. 0xd0, 0xb6, 0xf4, 0xa9, 0x21, 0x57, 0x69, 0xd2, 0x64, 0x6a, 0x68, 0x57, 0xb2, 0xd8, 0xfe, 0x21,
  431. 0x80, 0xc8, 0x87, 0xd8, 0xdc, 0x4a, 0xb9, 0x70, 0x2b, 0x27, 0x3b, 0xb7, 0x72, 0xf4, 0xf7, 0x2a,
  432. 0xf0, 0x93, 0x49, 0xb5, 0x30, 0x4b, 0x56, 0xeb, 0x73, 0x69, 0xbe, 0x05, 0xa9, 0x10, 0x46, 0x32,
  433. 0x94, 0x6f, 0xc8, 0x2a, 0xbf, 0x4c, 0x6a, 0xa2, 0xc7, 0x50, 0x65, 0xbb, 0xcc, 0x14, 0xab, 0x99,
  434. 0xdc, 0x39, 0x2d, 0xbd, 0x11, 0x86, 0x0e, 0x34, 0xe6, 0xd1, 0xa2, 0xf0, 0xce, 0x50, 0xe2, 0x0f,
  435. 0xcd, 0xa8, 0x1a, 0x33, 0xe1, 0xcb, 0xeb, 0x1c, 0xf2, 0xa2, 0x00, 0x87, 0x5e, 0x37, 0x4a, 0xbc,
  436. 0x9e, 0x47, 0x42, 0xa6, 0x55, 0x8f, 0x43, 0x38, 0xf6, 0xd3, 0xc2, 0xff, 0xd2, 0x3b, 0xfe, 0xf3,
  437. 0xb3, 0x54, 0x19, 0x0d, 0x66, 0xfa, 0xb5, 0xc8, 0xa8, 0xc7, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff,
  438. 0xee, 0x00, 0xfa, 0x56, 0xc1, 0x04, 0x00, 0x00,
  439. }