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.
 
 
 

365 lines
20 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/ads/googleads/v1/errors/query_error.proto
  3. package errors // import "google.golang.org/genproto/googleapis/ads/googleads/v1/errors"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import _ "google.golang.org/genproto/googleapis/api/annotations"
  8. // Reference imports to suppress errors if they are not otherwise used.
  9. var _ = proto.Marshal
  10. var _ = fmt.Errorf
  11. var _ = math.Inf
  12. // This is a compile-time assertion to ensure that this generated file
  13. // is compatible with the proto package it is being compiled against.
  14. // A compilation error at this line likely means your copy of the
  15. // proto package needs to be updated.
  16. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  17. // Enum describing possible query errors.
  18. type QueryErrorEnum_QueryError int32
  19. const (
  20. // Name unspecified.
  21. QueryErrorEnum_UNSPECIFIED QueryErrorEnum_QueryError = 0
  22. // The received error code is not known in this version.
  23. QueryErrorEnum_UNKNOWN QueryErrorEnum_QueryError = 1
  24. // Returned if all other query error reasons are not applicable.
  25. QueryErrorEnum_QUERY_ERROR QueryErrorEnum_QueryError = 50
  26. // A condition used in the query references an invalid enum constant.
  27. QueryErrorEnum_BAD_ENUM_CONSTANT QueryErrorEnum_QueryError = 18
  28. // Query contains an invalid escape sequence.
  29. QueryErrorEnum_BAD_ESCAPE_SEQUENCE QueryErrorEnum_QueryError = 7
  30. // Field name is invalid.
  31. QueryErrorEnum_BAD_FIELD_NAME QueryErrorEnum_QueryError = 12
  32. // Limit value is invalid (i.e. not a number)
  33. QueryErrorEnum_BAD_LIMIT_VALUE QueryErrorEnum_QueryError = 15
  34. // Encountered number can not be parsed.
  35. QueryErrorEnum_BAD_NUMBER QueryErrorEnum_QueryError = 5
  36. // Invalid operator encountered.
  37. QueryErrorEnum_BAD_OPERATOR QueryErrorEnum_QueryError = 3
  38. // Invalid resource type was specified in the FROM clause.
  39. QueryErrorEnum_BAD_RESOURCE_TYPE_IN_FROM_CLAUSE QueryErrorEnum_QueryError = 45
  40. // Non-ASCII symbol encountered outside of strings.
  41. QueryErrorEnum_BAD_SYMBOL QueryErrorEnum_QueryError = 2
  42. // Value is invalid.
  43. QueryErrorEnum_BAD_VALUE QueryErrorEnum_QueryError = 4
  44. // Date filters fail to restrict date to a range smaller than 31 days.
  45. // Applicable if the query is segmented by date.
  46. QueryErrorEnum_DATE_RANGE_TOO_WIDE QueryErrorEnum_QueryError = 36
  47. // Expected AND between values with BETWEEN operator.
  48. QueryErrorEnum_EXPECTED_AND QueryErrorEnum_QueryError = 30
  49. // Expecting ORDER BY to have BY.
  50. QueryErrorEnum_EXPECTED_BY QueryErrorEnum_QueryError = 14
  51. // There was no dimension field selected.
  52. QueryErrorEnum_EXPECTED_DIMENSION_FIELD_IN_SELECT_CLAUSE QueryErrorEnum_QueryError = 37
  53. // Missing filters on date related fields.
  54. QueryErrorEnum_EXPECTED_FILTERS_ON_DATE_RANGE QueryErrorEnum_QueryError = 55
  55. // Missing FROM clause.
  56. QueryErrorEnum_EXPECTED_FROM QueryErrorEnum_QueryError = 44
  57. // The operator used in the conditions requires the value to be a list.
  58. QueryErrorEnum_EXPECTED_LIST QueryErrorEnum_QueryError = 41
  59. // Fields used in WHERE or ORDER BY clauses are missing from the SELECT
  60. // clause.
  61. QueryErrorEnum_EXPECTED_REFERENCED_FIELD_IN_SELECT_CLAUSE QueryErrorEnum_QueryError = 16
  62. // SELECT is missing at the beginning of query.
  63. QueryErrorEnum_EXPECTED_SELECT QueryErrorEnum_QueryError = 13
  64. // A list was passed as a value to a condition whose operator expects a
  65. // single value.
  66. QueryErrorEnum_EXPECTED_SINGLE_VALUE QueryErrorEnum_QueryError = 42
  67. // Missing one or both values with BETWEEN operator.
  68. QueryErrorEnum_EXPECTED_VALUE_WITH_BETWEEN_OPERATOR QueryErrorEnum_QueryError = 29
  69. // Invalid date format. Expected 'YYYY-MM-DD'.
  70. QueryErrorEnum_INVALID_DATE_FORMAT QueryErrorEnum_QueryError = 38
  71. // Value passed was not a string when it should have been. I.e., it was a
  72. // number or unquoted literal.
  73. QueryErrorEnum_INVALID_STRING_VALUE QueryErrorEnum_QueryError = 57
  74. // A String value passed to the BETWEEN operator does not parse as a date.
  75. QueryErrorEnum_INVALID_VALUE_WITH_BETWEEN_OPERATOR QueryErrorEnum_QueryError = 26
  76. // The value passed to the DURING operator is not a Date range literal
  77. QueryErrorEnum_INVALID_VALUE_WITH_DURING_OPERATOR QueryErrorEnum_QueryError = 22
  78. // A non-string value was passed to the LIKE operator.
  79. QueryErrorEnum_INVALID_VALUE_WITH_LIKE_OPERATOR QueryErrorEnum_QueryError = 56
  80. // An operator was provided that is inapplicable to the field being
  81. // filtered.
  82. QueryErrorEnum_OPERATOR_FIELD_MISMATCH QueryErrorEnum_QueryError = 35
  83. // A Condition was found with an empty list.
  84. QueryErrorEnum_PROHIBITED_EMPTY_LIST_IN_CONDITION QueryErrorEnum_QueryError = 28
  85. // A condition used in the query references an unsupported enum constant.
  86. QueryErrorEnum_PROHIBITED_ENUM_CONSTANT QueryErrorEnum_QueryError = 54
  87. // Fields that are not allowed to be selected together were included in
  88. // the SELECT clause.
  89. QueryErrorEnum_PROHIBITED_FIELD_COMBINATION_IN_SELECT_CLAUSE QueryErrorEnum_QueryError = 31
  90. // A field that is not orderable was included in the ORDER BY clause.
  91. QueryErrorEnum_PROHIBITED_FIELD_IN_ORDER_BY_CLAUSE QueryErrorEnum_QueryError = 40
  92. // A field that is not selectable was included in the SELECT clause.
  93. QueryErrorEnum_PROHIBITED_FIELD_IN_SELECT_CLAUSE QueryErrorEnum_QueryError = 23
  94. // A field that is not filterable was included in the WHERE clause.
  95. QueryErrorEnum_PROHIBITED_FIELD_IN_WHERE_CLAUSE QueryErrorEnum_QueryError = 24
  96. // Resource type specified in the FROM clause is not supported by this
  97. // service.
  98. QueryErrorEnum_PROHIBITED_RESOURCE_TYPE_IN_FROM_CLAUSE QueryErrorEnum_QueryError = 43
  99. // A field that comes from an incompatible resource was included in the
  100. // SELECT clause.
  101. QueryErrorEnum_PROHIBITED_RESOURCE_TYPE_IN_SELECT_CLAUSE QueryErrorEnum_QueryError = 48
  102. // A field that comes from an incompatible resource was included in the
  103. // WHERE clause.
  104. QueryErrorEnum_PROHIBITED_RESOURCE_TYPE_IN_WHERE_CLAUSE QueryErrorEnum_QueryError = 58
  105. // A metric incompatible with the main resource or other selected
  106. // segmenting resources was included in the SELECT or WHERE clause.
  107. QueryErrorEnum_PROHIBITED_METRIC_IN_SELECT_OR_WHERE_CLAUSE QueryErrorEnum_QueryError = 49
  108. // A segment incompatible with the main resource or other selected
  109. // segmenting resources was included in the SELECT or WHERE clause.
  110. QueryErrorEnum_PROHIBITED_SEGMENT_IN_SELECT_OR_WHERE_CLAUSE QueryErrorEnum_QueryError = 51
  111. // A segment in the SELECT clause is incompatible with a metric in the
  112. // SELECT or WHERE clause.
  113. QueryErrorEnum_PROHIBITED_SEGMENT_WITH_METRIC_IN_SELECT_OR_WHERE_CLAUSE QueryErrorEnum_QueryError = 53
  114. // The value passed to the limit clause is too low.
  115. QueryErrorEnum_LIMIT_VALUE_TOO_LOW QueryErrorEnum_QueryError = 25
  116. // Query has a string containing a newline character.
  117. QueryErrorEnum_PROHIBITED_NEWLINE_IN_STRING QueryErrorEnum_QueryError = 8
  118. // List contains values of different types.
  119. QueryErrorEnum_PROHIBITED_VALUE_COMBINATION_IN_LIST QueryErrorEnum_QueryError = 10
  120. // The values passed to the BETWEEN operator are not of the same type.
  121. QueryErrorEnum_PROHIBITED_VALUE_COMBINATION_WITH_BETWEEN_OPERATOR QueryErrorEnum_QueryError = 21
  122. // Query contains unterminated string.
  123. QueryErrorEnum_STRING_NOT_TERMINATED QueryErrorEnum_QueryError = 6
  124. // Too many segments are specified in SELECT clause.
  125. QueryErrorEnum_TOO_MANY_SEGMENTS QueryErrorEnum_QueryError = 34
  126. // Query is incomplete and cannot be parsed.
  127. QueryErrorEnum_UNEXPECTED_END_OF_QUERY QueryErrorEnum_QueryError = 9
  128. // FROM clause cannot be specified in this query.
  129. QueryErrorEnum_UNEXPECTED_FROM_CLAUSE QueryErrorEnum_QueryError = 47
  130. // Query contains one or more unrecognized fields.
  131. QueryErrorEnum_UNRECOGNIZED_FIELD QueryErrorEnum_QueryError = 32
  132. // Query has an unexpected extra part.
  133. QueryErrorEnum_UNEXPECTED_INPUT QueryErrorEnum_QueryError = 11
  134. // Metrics cannot be requested for a manager account. To retrieve metrics,
  135. // issue separate requests against each client account under the manager
  136. // account.
  137. QueryErrorEnum_REQUESTED_METRICS_FOR_MANAGER QueryErrorEnum_QueryError = 59
  138. )
  139. var QueryErrorEnum_QueryError_name = map[int32]string{
  140. 0: "UNSPECIFIED",
  141. 1: "UNKNOWN",
  142. 50: "QUERY_ERROR",
  143. 18: "BAD_ENUM_CONSTANT",
  144. 7: "BAD_ESCAPE_SEQUENCE",
  145. 12: "BAD_FIELD_NAME",
  146. 15: "BAD_LIMIT_VALUE",
  147. 5: "BAD_NUMBER",
  148. 3: "BAD_OPERATOR",
  149. 45: "BAD_RESOURCE_TYPE_IN_FROM_CLAUSE",
  150. 2: "BAD_SYMBOL",
  151. 4: "BAD_VALUE",
  152. 36: "DATE_RANGE_TOO_WIDE",
  153. 30: "EXPECTED_AND",
  154. 14: "EXPECTED_BY",
  155. 37: "EXPECTED_DIMENSION_FIELD_IN_SELECT_CLAUSE",
  156. 55: "EXPECTED_FILTERS_ON_DATE_RANGE",
  157. 44: "EXPECTED_FROM",
  158. 41: "EXPECTED_LIST",
  159. 16: "EXPECTED_REFERENCED_FIELD_IN_SELECT_CLAUSE",
  160. 13: "EXPECTED_SELECT",
  161. 42: "EXPECTED_SINGLE_VALUE",
  162. 29: "EXPECTED_VALUE_WITH_BETWEEN_OPERATOR",
  163. 38: "INVALID_DATE_FORMAT",
  164. 57: "INVALID_STRING_VALUE",
  165. 26: "INVALID_VALUE_WITH_BETWEEN_OPERATOR",
  166. 22: "INVALID_VALUE_WITH_DURING_OPERATOR",
  167. 56: "INVALID_VALUE_WITH_LIKE_OPERATOR",
  168. 35: "OPERATOR_FIELD_MISMATCH",
  169. 28: "PROHIBITED_EMPTY_LIST_IN_CONDITION",
  170. 54: "PROHIBITED_ENUM_CONSTANT",
  171. 31: "PROHIBITED_FIELD_COMBINATION_IN_SELECT_CLAUSE",
  172. 40: "PROHIBITED_FIELD_IN_ORDER_BY_CLAUSE",
  173. 23: "PROHIBITED_FIELD_IN_SELECT_CLAUSE",
  174. 24: "PROHIBITED_FIELD_IN_WHERE_CLAUSE",
  175. 43: "PROHIBITED_RESOURCE_TYPE_IN_FROM_CLAUSE",
  176. 48: "PROHIBITED_RESOURCE_TYPE_IN_SELECT_CLAUSE",
  177. 58: "PROHIBITED_RESOURCE_TYPE_IN_WHERE_CLAUSE",
  178. 49: "PROHIBITED_METRIC_IN_SELECT_OR_WHERE_CLAUSE",
  179. 51: "PROHIBITED_SEGMENT_IN_SELECT_OR_WHERE_CLAUSE",
  180. 53: "PROHIBITED_SEGMENT_WITH_METRIC_IN_SELECT_OR_WHERE_CLAUSE",
  181. 25: "LIMIT_VALUE_TOO_LOW",
  182. 8: "PROHIBITED_NEWLINE_IN_STRING",
  183. 10: "PROHIBITED_VALUE_COMBINATION_IN_LIST",
  184. 21: "PROHIBITED_VALUE_COMBINATION_WITH_BETWEEN_OPERATOR",
  185. 6: "STRING_NOT_TERMINATED",
  186. 34: "TOO_MANY_SEGMENTS",
  187. 9: "UNEXPECTED_END_OF_QUERY",
  188. 47: "UNEXPECTED_FROM_CLAUSE",
  189. 32: "UNRECOGNIZED_FIELD",
  190. 11: "UNEXPECTED_INPUT",
  191. 59: "REQUESTED_METRICS_FOR_MANAGER",
  192. }
  193. var QueryErrorEnum_QueryError_value = map[string]int32{
  194. "UNSPECIFIED": 0,
  195. "UNKNOWN": 1,
  196. "QUERY_ERROR": 50,
  197. "BAD_ENUM_CONSTANT": 18,
  198. "BAD_ESCAPE_SEQUENCE": 7,
  199. "BAD_FIELD_NAME": 12,
  200. "BAD_LIMIT_VALUE": 15,
  201. "BAD_NUMBER": 5,
  202. "BAD_OPERATOR": 3,
  203. "BAD_RESOURCE_TYPE_IN_FROM_CLAUSE": 45,
  204. "BAD_SYMBOL": 2,
  205. "BAD_VALUE": 4,
  206. "DATE_RANGE_TOO_WIDE": 36,
  207. "EXPECTED_AND": 30,
  208. "EXPECTED_BY": 14,
  209. "EXPECTED_DIMENSION_FIELD_IN_SELECT_CLAUSE": 37,
  210. "EXPECTED_FILTERS_ON_DATE_RANGE": 55,
  211. "EXPECTED_FROM": 44,
  212. "EXPECTED_LIST": 41,
  213. "EXPECTED_REFERENCED_FIELD_IN_SELECT_CLAUSE": 16,
  214. "EXPECTED_SELECT": 13,
  215. "EXPECTED_SINGLE_VALUE": 42,
  216. "EXPECTED_VALUE_WITH_BETWEEN_OPERATOR": 29,
  217. "INVALID_DATE_FORMAT": 38,
  218. "INVALID_STRING_VALUE": 57,
  219. "INVALID_VALUE_WITH_BETWEEN_OPERATOR": 26,
  220. "INVALID_VALUE_WITH_DURING_OPERATOR": 22,
  221. "INVALID_VALUE_WITH_LIKE_OPERATOR": 56,
  222. "OPERATOR_FIELD_MISMATCH": 35,
  223. "PROHIBITED_EMPTY_LIST_IN_CONDITION": 28,
  224. "PROHIBITED_ENUM_CONSTANT": 54,
  225. "PROHIBITED_FIELD_COMBINATION_IN_SELECT_CLAUSE": 31,
  226. "PROHIBITED_FIELD_IN_ORDER_BY_CLAUSE": 40,
  227. "PROHIBITED_FIELD_IN_SELECT_CLAUSE": 23,
  228. "PROHIBITED_FIELD_IN_WHERE_CLAUSE": 24,
  229. "PROHIBITED_RESOURCE_TYPE_IN_FROM_CLAUSE": 43,
  230. "PROHIBITED_RESOURCE_TYPE_IN_SELECT_CLAUSE": 48,
  231. "PROHIBITED_RESOURCE_TYPE_IN_WHERE_CLAUSE": 58,
  232. "PROHIBITED_METRIC_IN_SELECT_OR_WHERE_CLAUSE": 49,
  233. "PROHIBITED_SEGMENT_IN_SELECT_OR_WHERE_CLAUSE": 51,
  234. "PROHIBITED_SEGMENT_WITH_METRIC_IN_SELECT_OR_WHERE_CLAUSE": 53,
  235. "LIMIT_VALUE_TOO_LOW": 25,
  236. "PROHIBITED_NEWLINE_IN_STRING": 8,
  237. "PROHIBITED_VALUE_COMBINATION_IN_LIST": 10,
  238. "PROHIBITED_VALUE_COMBINATION_WITH_BETWEEN_OPERATOR": 21,
  239. "STRING_NOT_TERMINATED": 6,
  240. "TOO_MANY_SEGMENTS": 34,
  241. "UNEXPECTED_END_OF_QUERY": 9,
  242. "UNEXPECTED_FROM_CLAUSE": 47,
  243. "UNRECOGNIZED_FIELD": 32,
  244. "UNEXPECTED_INPUT": 11,
  245. "REQUESTED_METRICS_FOR_MANAGER": 59,
  246. }
  247. func (x QueryErrorEnum_QueryError) String() string {
  248. return proto.EnumName(QueryErrorEnum_QueryError_name, int32(x))
  249. }
  250. func (QueryErrorEnum_QueryError) EnumDescriptor() ([]byte, []int) {
  251. return fileDescriptor_query_error_fb7e21fa78314ccb, []int{0, 0}
  252. }
  253. // Container for enum describing possible query errors.
  254. type QueryErrorEnum struct {
  255. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  256. XXX_unrecognized []byte `json:"-"`
  257. XXX_sizecache int32 `json:"-"`
  258. }
  259. func (m *QueryErrorEnum) Reset() { *m = QueryErrorEnum{} }
  260. func (m *QueryErrorEnum) String() string { return proto.CompactTextString(m) }
  261. func (*QueryErrorEnum) ProtoMessage() {}
  262. func (*QueryErrorEnum) Descriptor() ([]byte, []int) {
  263. return fileDescriptor_query_error_fb7e21fa78314ccb, []int{0}
  264. }
  265. func (m *QueryErrorEnum) XXX_Unmarshal(b []byte) error {
  266. return xxx_messageInfo_QueryErrorEnum.Unmarshal(m, b)
  267. }
  268. func (m *QueryErrorEnum) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  269. return xxx_messageInfo_QueryErrorEnum.Marshal(b, m, deterministic)
  270. }
  271. func (dst *QueryErrorEnum) XXX_Merge(src proto.Message) {
  272. xxx_messageInfo_QueryErrorEnum.Merge(dst, src)
  273. }
  274. func (m *QueryErrorEnum) XXX_Size() int {
  275. return xxx_messageInfo_QueryErrorEnum.Size(m)
  276. }
  277. func (m *QueryErrorEnum) XXX_DiscardUnknown() {
  278. xxx_messageInfo_QueryErrorEnum.DiscardUnknown(m)
  279. }
  280. var xxx_messageInfo_QueryErrorEnum proto.InternalMessageInfo
  281. func init() {
  282. proto.RegisterType((*QueryErrorEnum)(nil), "google.ads.googleads.v1.errors.QueryErrorEnum")
  283. proto.RegisterEnum("google.ads.googleads.v1.errors.QueryErrorEnum_QueryError", QueryErrorEnum_QueryError_name, QueryErrorEnum_QueryError_value)
  284. }
  285. func init() {
  286. proto.RegisterFile("google/ads/googleads/v1/errors/query_error.proto", fileDescriptor_query_error_fb7e21fa78314ccb)
  287. }
  288. var fileDescriptor_query_error_fb7e21fa78314ccb = []byte{
  289. // 950 bytes of a gzipped FileDescriptorProto
  290. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x95, 0xef, 0x72, 0xd3, 0x46,
  291. 0x10, 0xc0, 0x9b, 0xd0, 0x42, 0xd9, 0xfc, 0x3b, 0x0e, 0xf2, 0x87, 0x34, 0xa4, 0xc1, 0x04, 0x08,
  292. 0x24, 0xb1, 0x63, 0x98, 0x52, 0x6a, 0xfa, 0xe5, 0x24, 0xad, 0x9d, 0x1b, 0xa4, 0x3b, 0xe5, 0x74,
  293. 0x8a, 0x6b, 0x26, 0x33, 0x37, 0x69, 0x93, 0xf1, 0x64, 0x06, 0xac, 0xd4, 0x0e, 0xcc, 0xf4, 0x09,
  294. 0xfa, 0x1e, 0xfd, 0xd8, 0x47, 0xe9, 0xa3, 0xf0, 0xb9, 0x0f, 0xd0, 0x39, 0xc9, 0x92, 0xe5, 0x62,
  295. 0xcc, 0x27, 0xdd, 0xed, 0xfe, 0xf6, 0xcf, 0xad, 0x76, 0xef, 0xe0, 0xa0, 0x9b, 0x24, 0xdd, 0xb7,
  296. 0xe7, 0xb5, 0xd3, 0xb3, 0x41, 0x2d, 0x5b, 0xda, 0xd5, 0x87, 0x7a, 0xed, 0xbc, 0xdf, 0x4f, 0xfa,
  297. 0x83, 0xda, 0xef, 0xef, 0xcf, 0xfb, 0x7f, 0x98, 0x74, 0x53, 0xbd, 0xec, 0x27, 0x57, 0x09, 0xdd,
  298. 0xcc, 0xb0, 0xea, 0xe9, 0xd9, 0xa0, 0x5a, 0x58, 0x54, 0x3f, 0xd4, 0xab, 0x99, 0xc5, 0xfa, 0x46,
  299. 0xee, 0xf1, 0xf2, 0xa2, 0x76, 0xda, 0xeb, 0x25, 0x57, 0xa7, 0x57, 0x17, 0x49, 0x6f, 0x90, 0x59,
  300. 0x57, 0xfe, 0x5c, 0x80, 0xc5, 0x23, 0xeb, 0x13, 0x2d, 0x8d, 0xbd, 0xf7, 0xef, 0x2a, 0xff, 0xce,
  301. 0x03, 0x8c, 0x44, 0x74, 0x09, 0xe6, 0x62, 0x11, 0x85, 0xe8, 0xf2, 0x26, 0x47, 0x8f, 0x7c, 0x45,
  302. 0xe7, 0xe0, 0x46, 0x2c, 0x5e, 0x0b, 0xd9, 0x16, 0x64, 0xc6, 0x6a, 0x8f, 0x62, 0x54, 0x1d, 0x83,
  303. 0x4a, 0x49, 0x45, 0x9e, 0xd1, 0x65, 0xb8, 0xe5, 0x30, 0xcf, 0xa0, 0x88, 0x03, 0xe3, 0x4a, 0x11,
  304. 0x69, 0x26, 0x34, 0xa1, 0x74, 0x15, 0x6e, 0xa7, 0xe2, 0xc8, 0x65, 0x21, 0x9a, 0x08, 0x8f, 0x62,
  305. 0x14, 0x2e, 0x92, 0x1b, 0x94, 0xc2, 0xa2, 0x55, 0x34, 0x39, 0xfa, 0x9e, 0x11, 0x2c, 0x40, 0x32,
  306. 0x4f, 0x6f, 0xc3, 0x92, 0x95, 0xf9, 0x3c, 0xe0, 0xda, 0x1c, 0x33, 0x3f, 0x46, 0xb2, 0x44, 0x17,
  307. 0x01, 0xac, 0x50, 0xc4, 0x81, 0x83, 0x8a, 0x7c, 0x43, 0x09, 0xcc, 0xdb, 0xbd, 0x0c, 0x51, 0x31,
  308. 0x2d, 0x15, 0xb9, 0x46, 0xb7, 0x61, 0xcb, 0x4a, 0x14, 0x46, 0x32, 0x56, 0x2e, 0x1a, 0xdd, 0x09,
  309. 0xd1, 0x70, 0x61, 0x9a, 0x4a, 0x06, 0xc6, 0xf5, 0x59, 0x1c, 0x21, 0xd9, 0xcf, 0xfd, 0x44, 0x9d,
  310. 0xc0, 0x91, 0x3e, 0x99, 0xa5, 0x0b, 0x70, 0xd3, 0xee, 0xb3, 0x30, 0x5f, 0xdb, 0x44, 0x3d, 0xa6,
  311. 0xd1, 0x28, 0x26, 0x5a, 0x68, 0xb4, 0x94, 0xa6, 0xcd, 0x3d, 0x24, 0xdb, 0x36, 0x1e, 0xfe, 0x12,
  312. 0xa2, 0xab, 0xd1, 0x33, 0x4c, 0x78, 0x64, 0xd3, 0x9e, 0xbd, 0x90, 0x38, 0x1d, 0xb2, 0x48, 0xf7,
  313. 0xe1, 0x49, 0x21, 0xf0, 0x78, 0x80, 0x22, 0xe2, 0x52, 0x0c, 0x8f, 0xc6, 0x85, 0x89, 0xd0, 0x47,
  314. 0x57, 0xe7, 0x99, 0x3c, 0xa4, 0x15, 0xd8, 0x2c, 0xf0, 0x26, 0xf7, 0x35, 0xaa, 0xc8, 0x48, 0x61,
  315. 0x46, 0xe1, 0xc9, 0x8f, 0xf4, 0x16, 0x2c, 0x8c, 0x18, 0x25, 0x03, 0xb2, 0x37, 0x26, 0xf2, 0x79,
  316. 0xa4, 0xc9, 0x13, 0x5a, 0x85, 0xa7, 0x85, 0x48, 0x61, 0x13, 0x95, 0x2d, 0xae, 0xf7, 0xb9, 0xc8,
  317. 0xc4, 0x16, 0xb8, 0xe0, 0x33, 0x1d, 0x59, 0xa0, 0x77, 0x61, 0x79, 0x24, 0xe4, 0xa2, 0xe5, 0xe3,
  318. 0xb0, 0x28, 0x4f, 0xe9, 0x0e, 0x6c, 0x17, 0xaa, 0x54, 0x66, 0xda, 0x5c, 0x1f, 0x1a, 0x07, 0x75,
  319. 0x1b, 0x51, 0x8c, 0xfe, 0xc1, 0x3d, 0x5b, 0x3e, 0x2e, 0x8e, 0x99, 0xcf, 0xbd, 0xec, 0x1c, 0x4d,
  320. 0xa9, 0x02, 0xa6, 0xc9, 0x23, 0xba, 0x06, 0x77, 0x72, 0x45, 0xa4, 0x15, 0x17, 0xad, 0xa1, 0xf3,
  321. 0x9f, 0xe8, 0x63, 0x78, 0x90, 0x6b, 0xa6, 0xf9, 0x5e, 0xa7, 0x8f, 0xa0, 0x32, 0x01, 0xf4, 0xe2,
  322. 0xd4, 0x5b, 0xc1, 0xad, 0xd8, 0x3e, 0x98, 0xc0, 0xf9, 0xfc, 0x35, 0x8e, 0xa8, 0x97, 0xf4, 0x3b,
  323. 0x58, 0xcd, 0x77, 0xc3, 0x42, 0x05, 0x3c, 0x0a, 0x98, 0x76, 0x0f, 0xc9, 0x03, 0x1b, 0x2a, 0x54,
  324. 0xf2, 0x90, 0x3b, 0xdc, 0x1e, 0x19, 0x83, 0x50, 0x77, 0xd2, 0x5a, 0xdb, 0x62, 0xba, 0x52, 0x78,
  325. 0x5c, 0x73, 0x29, 0xc8, 0x06, 0xdd, 0x80, 0xb5, 0x32, 0x37, 0xd6, 0xf4, 0x2f, 0x68, 0x1d, 0xf6,
  326. 0x4b, 0xda, 0x2c, 0x88, 0x2b, 0x03, 0x87, 0x0b, 0x66, 0xed, 0x3f, 0xfd, 0x33, 0xdf, 0xdb, 0x62,
  327. 0x7c, 0x62, 0xc2, 0x85, 0x91, 0xca, 0x43, 0x65, 0x9c, 0x4e, 0x0e, 0xee, 0xd0, 0x87, 0x70, 0x7f,
  328. 0x12, 0x38, 0xee, 0x6f, 0xd5, 0xd6, 0x62, 0x12, 0xd6, 0x3e, 0x44, 0x85, 0x39, 0xb5, 0x46, 0x77,
  329. 0xe1, 0x71, 0x89, 0x9a, 0x3a, 0x40, 0xbb, 0xb6, 0xcb, 0xa7, 0xc1, 0xe3, 0x19, 0x1c, 0xd0, 0x3d,
  330. 0xd8, 0x99, 0x86, 0x8f, 0x65, 0xd2, 0xa0, 0x35, 0xd8, 0x2d, 0xd1, 0x01, 0x6a, 0xc5, 0xdd, 0x92,
  331. 0x57, 0xa9, 0xc6, 0x0d, 0xea, 0xf4, 0x00, 0xf6, 0x4a, 0x06, 0x11, 0xb6, 0x02, 0x14, 0x7a, 0x8a,
  332. 0xc5, 0x73, 0xfa, 0x33, 0xbc, 0x9c, 0x60, 0x91, 0xf6, 0xc8, 0x17, 0xe3, 0xfd, 0x60, 0x1b, 0xbc,
  333. 0x74, 0x2f, 0xa5, 0x17, 0x84, 0x2f, 0xdb, 0xe4, 0x2e, 0xdd, 0x82, 0x8d, 0x92, 0x5b, 0x81, 0x6d,
  334. 0x9f, 0x8b, 0xac, 0x20, 0x69, 0xbb, 0x93, 0x6f, 0xed, 0x14, 0x95, 0x88, 0xcc, 0xfe, 0x7f, 0xed,
  335. 0x90, 0xce, 0x33, 0xd0, 0x17, 0xf0, 0x6c, 0x2a, 0x39, 0x79, 0x42, 0x96, 0xed, 0x08, 0x0f, 0x87,
  336. 0x4b, 0x48, 0x6d, 0x34, 0xaa, 0xc0, 0x5a, 0xa0, 0x47, 0xae, 0xdb, 0x7b, 0xd9, 0xe6, 0x1a, 0x30,
  337. 0xd1, 0xc9, 0xcf, 0x1c, 0x91, 0x8a, 0x9d, 0x82, 0x58, 0x14, 0xb3, 0x8d, 0xc2, 0x33, 0xb2, 0x69,
  338. 0xd2, 0x1b, 0x9d, 0xdc, 0xa4, 0xeb, 0xb0, 0x52, 0x52, 0x96, 0xbb, 0xa0, 0x46, 0x57, 0x80, 0xc6,
  339. 0x42, 0xa1, 0x2b, 0x5b, 0x82, 0xbf, 0xc9, 0x5b, 0x8b, 0x6c, 0xd1, 0x3b, 0x40, 0x4a, 0x36, 0x5c,
  340. 0x84, 0xb1, 0x26, 0x73, 0xf4, 0x3e, 0xdc, 0x53, 0xf6, 0xce, 0x8f, 0x46, 0x7f, 0x35, 0xb2, 0x77,
  341. 0x83, 0xcd, 0x87, 0xb5, 0x50, 0x91, 0x57, 0xce, 0xc7, 0x19, 0xa8, 0xfc, 0x96, 0xbc, 0xab, 0x4e,
  342. 0x7f, 0xce, 0x9c, 0xa5, 0xd1, 0xd3, 0x14, 0xda, 0x17, 0x2c, 0x9c, 0x79, 0xe3, 0x0d, 0x4d, 0xba,
  343. 0xc9, 0xdb, 0xd3, 0x5e, 0xb7, 0x9a, 0xf4, 0xbb, 0xb5, 0xee, 0x79, 0x2f, 0x7d, 0xdf, 0xf2, 0x37,
  344. 0xf4, 0xf2, 0x62, 0xf0, 0xb9, 0x27, 0xf5, 0x55, 0xf6, 0xf9, 0x6b, 0xf6, 0x5a, 0x8b, 0xb1, 0xbf,
  345. 0x67, 0x37, 0x5b, 0x99, 0x33, 0x76, 0x36, 0xa8, 0x66, 0x4b, 0xbb, 0x3a, 0xae, 0x57, 0xd3, 0x90,
  346. 0x83, 0x7f, 0x72, 0xe0, 0x84, 0x9d, 0x0d, 0x4e, 0x0a, 0xe0, 0xe4, 0xb8, 0x7e, 0x92, 0x01, 0x1f,
  347. 0x67, 0x2b, 0x99, 0xb4, 0xd1, 0x60, 0x67, 0x83, 0x46, 0xa3, 0x40, 0x1a, 0x8d, 0xe3, 0x7a, 0xa3,
  348. 0x91, 0x41, 0xbf, 0x5e, 0x4f, 0xb3, 0x7b, 0xfe, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x2a, 0xe1,
  349. 0x9c, 0xe6, 0xef, 0x07, 0x00, 0x00,
  350. }