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.
 
 
 

396 lines
16 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/cloud/vision/v1p2beta1/web_detection.proto
  3. package vision // import "google.golang.org/genproto/googleapis/cloud/vision/v1p2beta1"
  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. // Relevant information for the image from the Internet.
  18. type WebDetection struct {
  19. // Deduced entities from similar images on the Internet.
  20. WebEntities []*WebDetection_WebEntity `protobuf:"bytes,1,rep,name=web_entities,json=webEntities,proto3" json:"web_entities,omitempty"`
  21. // Fully matching images from the Internet.
  22. // Can include resized copies of the query image.
  23. FullMatchingImages []*WebDetection_WebImage `protobuf:"bytes,2,rep,name=full_matching_images,json=fullMatchingImages,proto3" json:"full_matching_images,omitempty"`
  24. // Partial matching images from the Internet.
  25. // Those images are similar enough to share some key-point features. For
  26. // example an original image will likely have partial matching for its crops.
  27. PartialMatchingImages []*WebDetection_WebImage `protobuf:"bytes,3,rep,name=partial_matching_images,json=partialMatchingImages,proto3" json:"partial_matching_images,omitempty"`
  28. // Web pages containing the matching images from the Internet.
  29. PagesWithMatchingImages []*WebDetection_WebPage `protobuf:"bytes,4,rep,name=pages_with_matching_images,json=pagesWithMatchingImages,proto3" json:"pages_with_matching_images,omitempty"`
  30. // The visually similar image results.
  31. VisuallySimilarImages []*WebDetection_WebImage `protobuf:"bytes,6,rep,name=visually_similar_images,json=visuallySimilarImages,proto3" json:"visually_similar_images,omitempty"`
  32. // Best guess text labels for the request image.
  33. BestGuessLabels []*WebDetection_WebLabel `protobuf:"bytes,8,rep,name=best_guess_labels,json=bestGuessLabels,proto3" json:"best_guess_labels,omitempty"`
  34. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  35. XXX_unrecognized []byte `json:"-"`
  36. XXX_sizecache int32 `json:"-"`
  37. }
  38. func (m *WebDetection) Reset() { *m = WebDetection{} }
  39. func (m *WebDetection) String() string { return proto.CompactTextString(m) }
  40. func (*WebDetection) ProtoMessage() {}
  41. func (*WebDetection) Descriptor() ([]byte, []int) {
  42. return fileDescriptor_web_detection_1a2867e2bfee0d67, []int{0}
  43. }
  44. func (m *WebDetection) XXX_Unmarshal(b []byte) error {
  45. return xxx_messageInfo_WebDetection.Unmarshal(m, b)
  46. }
  47. func (m *WebDetection) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  48. return xxx_messageInfo_WebDetection.Marshal(b, m, deterministic)
  49. }
  50. func (dst *WebDetection) XXX_Merge(src proto.Message) {
  51. xxx_messageInfo_WebDetection.Merge(dst, src)
  52. }
  53. func (m *WebDetection) XXX_Size() int {
  54. return xxx_messageInfo_WebDetection.Size(m)
  55. }
  56. func (m *WebDetection) XXX_DiscardUnknown() {
  57. xxx_messageInfo_WebDetection.DiscardUnknown(m)
  58. }
  59. var xxx_messageInfo_WebDetection proto.InternalMessageInfo
  60. func (m *WebDetection) GetWebEntities() []*WebDetection_WebEntity {
  61. if m != nil {
  62. return m.WebEntities
  63. }
  64. return nil
  65. }
  66. func (m *WebDetection) GetFullMatchingImages() []*WebDetection_WebImage {
  67. if m != nil {
  68. return m.FullMatchingImages
  69. }
  70. return nil
  71. }
  72. func (m *WebDetection) GetPartialMatchingImages() []*WebDetection_WebImage {
  73. if m != nil {
  74. return m.PartialMatchingImages
  75. }
  76. return nil
  77. }
  78. func (m *WebDetection) GetPagesWithMatchingImages() []*WebDetection_WebPage {
  79. if m != nil {
  80. return m.PagesWithMatchingImages
  81. }
  82. return nil
  83. }
  84. func (m *WebDetection) GetVisuallySimilarImages() []*WebDetection_WebImage {
  85. if m != nil {
  86. return m.VisuallySimilarImages
  87. }
  88. return nil
  89. }
  90. func (m *WebDetection) GetBestGuessLabels() []*WebDetection_WebLabel {
  91. if m != nil {
  92. return m.BestGuessLabels
  93. }
  94. return nil
  95. }
  96. // Entity deduced from similar images on the Internet.
  97. type WebDetection_WebEntity struct {
  98. // Opaque entity ID.
  99. EntityId string `protobuf:"bytes,1,opt,name=entity_id,json=entityId,proto3" json:"entity_id,omitempty"`
  100. // Overall relevancy score for the entity.
  101. // Not normalized and not comparable across different image queries.
  102. Score float32 `protobuf:"fixed32,2,opt,name=score,proto3" json:"score,omitempty"`
  103. // Canonical description of the entity, in English.
  104. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
  105. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  106. XXX_unrecognized []byte `json:"-"`
  107. XXX_sizecache int32 `json:"-"`
  108. }
  109. func (m *WebDetection_WebEntity) Reset() { *m = WebDetection_WebEntity{} }
  110. func (m *WebDetection_WebEntity) String() string { return proto.CompactTextString(m) }
  111. func (*WebDetection_WebEntity) ProtoMessage() {}
  112. func (*WebDetection_WebEntity) Descriptor() ([]byte, []int) {
  113. return fileDescriptor_web_detection_1a2867e2bfee0d67, []int{0, 0}
  114. }
  115. func (m *WebDetection_WebEntity) XXX_Unmarshal(b []byte) error {
  116. return xxx_messageInfo_WebDetection_WebEntity.Unmarshal(m, b)
  117. }
  118. func (m *WebDetection_WebEntity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  119. return xxx_messageInfo_WebDetection_WebEntity.Marshal(b, m, deterministic)
  120. }
  121. func (dst *WebDetection_WebEntity) XXX_Merge(src proto.Message) {
  122. xxx_messageInfo_WebDetection_WebEntity.Merge(dst, src)
  123. }
  124. func (m *WebDetection_WebEntity) XXX_Size() int {
  125. return xxx_messageInfo_WebDetection_WebEntity.Size(m)
  126. }
  127. func (m *WebDetection_WebEntity) XXX_DiscardUnknown() {
  128. xxx_messageInfo_WebDetection_WebEntity.DiscardUnknown(m)
  129. }
  130. var xxx_messageInfo_WebDetection_WebEntity proto.InternalMessageInfo
  131. func (m *WebDetection_WebEntity) GetEntityId() string {
  132. if m != nil {
  133. return m.EntityId
  134. }
  135. return ""
  136. }
  137. func (m *WebDetection_WebEntity) GetScore() float32 {
  138. if m != nil {
  139. return m.Score
  140. }
  141. return 0
  142. }
  143. func (m *WebDetection_WebEntity) GetDescription() string {
  144. if m != nil {
  145. return m.Description
  146. }
  147. return ""
  148. }
  149. // Metadata for online images.
  150. type WebDetection_WebImage struct {
  151. // The result image URL.
  152. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
  153. // (Deprecated) Overall relevancy score for the image.
  154. Score float32 `protobuf:"fixed32,2,opt,name=score,proto3" json:"score,omitempty"`
  155. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  156. XXX_unrecognized []byte `json:"-"`
  157. XXX_sizecache int32 `json:"-"`
  158. }
  159. func (m *WebDetection_WebImage) Reset() { *m = WebDetection_WebImage{} }
  160. func (m *WebDetection_WebImage) String() string { return proto.CompactTextString(m) }
  161. func (*WebDetection_WebImage) ProtoMessage() {}
  162. func (*WebDetection_WebImage) Descriptor() ([]byte, []int) {
  163. return fileDescriptor_web_detection_1a2867e2bfee0d67, []int{0, 1}
  164. }
  165. func (m *WebDetection_WebImage) XXX_Unmarshal(b []byte) error {
  166. return xxx_messageInfo_WebDetection_WebImage.Unmarshal(m, b)
  167. }
  168. func (m *WebDetection_WebImage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  169. return xxx_messageInfo_WebDetection_WebImage.Marshal(b, m, deterministic)
  170. }
  171. func (dst *WebDetection_WebImage) XXX_Merge(src proto.Message) {
  172. xxx_messageInfo_WebDetection_WebImage.Merge(dst, src)
  173. }
  174. func (m *WebDetection_WebImage) XXX_Size() int {
  175. return xxx_messageInfo_WebDetection_WebImage.Size(m)
  176. }
  177. func (m *WebDetection_WebImage) XXX_DiscardUnknown() {
  178. xxx_messageInfo_WebDetection_WebImage.DiscardUnknown(m)
  179. }
  180. var xxx_messageInfo_WebDetection_WebImage proto.InternalMessageInfo
  181. func (m *WebDetection_WebImage) GetUrl() string {
  182. if m != nil {
  183. return m.Url
  184. }
  185. return ""
  186. }
  187. func (m *WebDetection_WebImage) GetScore() float32 {
  188. if m != nil {
  189. return m.Score
  190. }
  191. return 0
  192. }
  193. // Metadata for web pages.
  194. type WebDetection_WebPage struct {
  195. // The result web page URL.
  196. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
  197. // (Deprecated) Overall relevancy score for the web page.
  198. Score float32 `protobuf:"fixed32,2,opt,name=score,proto3" json:"score,omitempty"`
  199. // Title for the web page, may contain HTML markups.
  200. PageTitle string `protobuf:"bytes,3,opt,name=page_title,json=pageTitle,proto3" json:"page_title,omitempty"`
  201. // Fully matching images on the page.
  202. // Can include resized copies of the query image.
  203. FullMatchingImages []*WebDetection_WebImage `protobuf:"bytes,4,rep,name=full_matching_images,json=fullMatchingImages,proto3" json:"full_matching_images,omitempty"`
  204. // Partial matching images on the page.
  205. // Those images are similar enough to share some key-point features. For
  206. // example an original image will likely have partial matching for its
  207. // crops.
  208. PartialMatchingImages []*WebDetection_WebImage `protobuf:"bytes,5,rep,name=partial_matching_images,json=partialMatchingImages,proto3" json:"partial_matching_images,omitempty"`
  209. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  210. XXX_unrecognized []byte `json:"-"`
  211. XXX_sizecache int32 `json:"-"`
  212. }
  213. func (m *WebDetection_WebPage) Reset() { *m = WebDetection_WebPage{} }
  214. func (m *WebDetection_WebPage) String() string { return proto.CompactTextString(m) }
  215. func (*WebDetection_WebPage) ProtoMessage() {}
  216. func (*WebDetection_WebPage) Descriptor() ([]byte, []int) {
  217. return fileDescriptor_web_detection_1a2867e2bfee0d67, []int{0, 2}
  218. }
  219. func (m *WebDetection_WebPage) XXX_Unmarshal(b []byte) error {
  220. return xxx_messageInfo_WebDetection_WebPage.Unmarshal(m, b)
  221. }
  222. func (m *WebDetection_WebPage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  223. return xxx_messageInfo_WebDetection_WebPage.Marshal(b, m, deterministic)
  224. }
  225. func (dst *WebDetection_WebPage) XXX_Merge(src proto.Message) {
  226. xxx_messageInfo_WebDetection_WebPage.Merge(dst, src)
  227. }
  228. func (m *WebDetection_WebPage) XXX_Size() int {
  229. return xxx_messageInfo_WebDetection_WebPage.Size(m)
  230. }
  231. func (m *WebDetection_WebPage) XXX_DiscardUnknown() {
  232. xxx_messageInfo_WebDetection_WebPage.DiscardUnknown(m)
  233. }
  234. var xxx_messageInfo_WebDetection_WebPage proto.InternalMessageInfo
  235. func (m *WebDetection_WebPage) GetUrl() string {
  236. if m != nil {
  237. return m.Url
  238. }
  239. return ""
  240. }
  241. func (m *WebDetection_WebPage) GetScore() float32 {
  242. if m != nil {
  243. return m.Score
  244. }
  245. return 0
  246. }
  247. func (m *WebDetection_WebPage) GetPageTitle() string {
  248. if m != nil {
  249. return m.PageTitle
  250. }
  251. return ""
  252. }
  253. func (m *WebDetection_WebPage) GetFullMatchingImages() []*WebDetection_WebImage {
  254. if m != nil {
  255. return m.FullMatchingImages
  256. }
  257. return nil
  258. }
  259. func (m *WebDetection_WebPage) GetPartialMatchingImages() []*WebDetection_WebImage {
  260. if m != nil {
  261. return m.PartialMatchingImages
  262. }
  263. return nil
  264. }
  265. // Label to provide extra metadata for the web detection.
  266. type WebDetection_WebLabel struct {
  267. // Label for extra metadata.
  268. Label string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
  269. // The BCP-47 language code for `label`, such as "en-US" or "sr-Latn".
  270. // For more information, see
  271. // http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
  272. LanguageCode string `protobuf:"bytes,2,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
  273. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  274. XXX_unrecognized []byte `json:"-"`
  275. XXX_sizecache int32 `json:"-"`
  276. }
  277. func (m *WebDetection_WebLabel) Reset() { *m = WebDetection_WebLabel{} }
  278. func (m *WebDetection_WebLabel) String() string { return proto.CompactTextString(m) }
  279. func (*WebDetection_WebLabel) ProtoMessage() {}
  280. func (*WebDetection_WebLabel) Descriptor() ([]byte, []int) {
  281. return fileDescriptor_web_detection_1a2867e2bfee0d67, []int{0, 3}
  282. }
  283. func (m *WebDetection_WebLabel) XXX_Unmarshal(b []byte) error {
  284. return xxx_messageInfo_WebDetection_WebLabel.Unmarshal(m, b)
  285. }
  286. func (m *WebDetection_WebLabel) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  287. return xxx_messageInfo_WebDetection_WebLabel.Marshal(b, m, deterministic)
  288. }
  289. func (dst *WebDetection_WebLabel) XXX_Merge(src proto.Message) {
  290. xxx_messageInfo_WebDetection_WebLabel.Merge(dst, src)
  291. }
  292. func (m *WebDetection_WebLabel) XXX_Size() int {
  293. return xxx_messageInfo_WebDetection_WebLabel.Size(m)
  294. }
  295. func (m *WebDetection_WebLabel) XXX_DiscardUnknown() {
  296. xxx_messageInfo_WebDetection_WebLabel.DiscardUnknown(m)
  297. }
  298. var xxx_messageInfo_WebDetection_WebLabel proto.InternalMessageInfo
  299. func (m *WebDetection_WebLabel) GetLabel() string {
  300. if m != nil {
  301. return m.Label
  302. }
  303. return ""
  304. }
  305. func (m *WebDetection_WebLabel) GetLanguageCode() string {
  306. if m != nil {
  307. return m.LanguageCode
  308. }
  309. return ""
  310. }
  311. func init() {
  312. proto.RegisterType((*WebDetection)(nil), "google.cloud.vision.v1p2beta1.WebDetection")
  313. proto.RegisterType((*WebDetection_WebEntity)(nil), "google.cloud.vision.v1p2beta1.WebDetection.WebEntity")
  314. proto.RegisterType((*WebDetection_WebImage)(nil), "google.cloud.vision.v1p2beta1.WebDetection.WebImage")
  315. proto.RegisterType((*WebDetection_WebPage)(nil), "google.cloud.vision.v1p2beta1.WebDetection.WebPage")
  316. proto.RegisterType((*WebDetection_WebLabel)(nil), "google.cloud.vision.v1p2beta1.WebDetection.WebLabel")
  317. }
  318. func init() {
  319. proto.RegisterFile("google/cloud/vision/v1p2beta1/web_detection.proto", fileDescriptor_web_detection_1a2867e2bfee0d67)
  320. }
  321. var fileDescriptor_web_detection_1a2867e2bfee0d67 = []byte{
  322. // 511 bytes of a gzipped FileDescriptorProto
  323. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x94, 0x4f, 0x6f, 0xd3, 0x30,
  324. 0x18, 0xc6, 0x95, 0x76, 0x1b, 0x8d, 0x5b, 0x04, 0xb3, 0x86, 0x16, 0x05, 0x26, 0x15, 0xb8, 0xf4,
  325. 0x94, 0xa8, 0x1d, 0x9c, 0xb8, 0x6d, 0x4c, 0x68, 0x12, 0x48, 0x55, 0x40, 0x1a, 0xe2, 0x92, 0x39,
  326. 0x89, 0x97, 0xbe, 0x92, 0x1b, 0x47, 0xb1, 0xd3, 0xaa, 0x37, 0x4e, 0x7c, 0x14, 0x3e, 0x23, 0x47,
  327. 0xf4, 0xda, 0xee, 0x54, 0x51, 0x36, 0x31, 0x86, 0xb8, 0xf9, 0x7d, 0xac, 0xe7, 0xf9, 0xd9, 0xaf,
  328. 0xff, 0x90, 0x71, 0x29, 0x65, 0x29, 0x78, 0x9c, 0x0b, 0xd9, 0x16, 0xf1, 0x02, 0x14, 0xc8, 0x2a,
  329. 0x5e, 0x8c, 0xeb, 0x49, 0xc6, 0x35, 0x1b, 0xc7, 0x4b, 0x9e, 0xa5, 0x05, 0xd7, 0x3c, 0xd7, 0x20,
  330. 0xab, 0xa8, 0x6e, 0xa4, 0x96, 0xf4, 0xc8, 0x5a, 0x22, 0x63, 0x89, 0xac, 0x25, 0xba, 0xb6, 0x84,
  331. 0xcf, 0x5c, 0x22, 0xab, 0x21, 0x66, 0x55, 0x25, 0x35, 0x43, 0xaf, 0xb2, 0xe6, 0x17, 0xdf, 0x7c,
  332. 0x32, 0xb8, 0xe0, 0xd9, 0xdb, 0x75, 0x26, 0xfd, 0x4c, 0x06, 0x08, 0xe1, 0x95, 0x06, 0x0d, 0x5c,
  333. 0x05, 0xde, 0xb0, 0x3b, 0xea, 0x4f, 0x5e, 0x47, 0xb7, 0x42, 0xa2, 0xcd, 0x08, 0x2c, 0xce, 0xd0,
  334. 0xbe, 0x4a, 0xfa, 0x4b, 0x37, 0x04, 0xae, 0xe8, 0x15, 0x39, 0xb8, 0x6a, 0x85, 0x48, 0xe7, 0x4c,
  335. 0xe7, 0x33, 0xa8, 0xca, 0x14, 0xe6, 0xac, 0xe4, 0x2a, 0xe8, 0x18, 0xc2, 0xab, 0x3b, 0x12, 0xce,
  336. 0xd1, 0x9c, 0x50, 0x4c, 0xfc, 0xe0, 0x02, 0x8d, 0xa4, 0xa8, 0x20, 0x87, 0x35, 0x6b, 0x34, 0xb0,
  337. 0x6d, 0x54, 0xf7, 0x1e, 0xa8, 0x27, 0x2e, 0xf4, 0x17, 0x5a, 0x4d, 0xc2, 0x1a, 0x07, 0xe9, 0x12,
  338. 0xf4, 0x6c, 0x0b, 0xb8, 0x63, 0x80, 0xc7, 0x77, 0x04, 0x4e, 0x91, 0x77, 0x68, 0x62, 0x2f, 0x40,
  339. 0xcf, 0xb6, 0xf7, 0xb7, 0x00, 0xd5, 0x32, 0x21, 0x56, 0xa9, 0x82, 0x39, 0x08, 0xd6, 0xac, 0x71,
  340. 0x7b, 0xf7, 0xd9, 0xdf, 0x3a, 0xf4, 0xa3, 0xcd, 0x74, 0xb4, 0x4b, 0xb2, 0x9f, 0x71, 0xa5, 0xd3,
  341. 0xb2, 0xe5, 0x4a, 0xa5, 0x82, 0x65, 0x5c, 0xa8, 0xa0, 0xf7, 0x57, 0x9c, 0xf7, 0x68, 0x4e, 0x1e,
  342. 0x61, 0xdc, 0x3b, 0x4c, 0x33, 0xb5, 0x0a, 0x2f, 0x89, 0x7f, 0x7d, 0x63, 0xe8, 0x53, 0xe2, 0x9b,
  343. 0xab, 0xb7, 0x4a, 0xa1, 0x08, 0xbc, 0xa1, 0x37, 0xf2, 0x93, 0x9e, 0x15, 0xce, 0x0b, 0x7a, 0x40,
  344. 0x76, 0x55, 0x2e, 0x1b, 0x1e, 0x74, 0x86, 0xde, 0xa8, 0x93, 0xd8, 0x82, 0x0e, 0x49, 0xbf, 0xe0,
  345. 0x2a, 0x6f, 0xa0, 0x46, 0x50, 0xd0, 0x35, 0xa6, 0x4d, 0x29, 0x9c, 0x90, 0xde, 0x7a, 0x9b, 0xf4,
  346. 0x31, 0xe9, 0xb6, 0x8d, 0x70, 0xd1, 0x38, 0xfc, 0x7d, 0x6a, 0xf8, 0xbd, 0x43, 0x1e, 0xb8, 0xa3,
  347. 0xf8, 0x53, 0x0f, 0x3d, 0x22, 0x04, 0x0f, 0x2d, 0xd5, 0xa0, 0x05, 0x77, 0x0b, 0xf1, 0x51, 0xf9,
  348. 0x84, 0xc2, 0x8d, 0x0f, 0x60, 0xe7, 0xff, 0x3d, 0x80, 0xdd, 0x7f, 0xfe, 0x00, 0xc2, 0x33, 0xd3,
  349. 0x5c, 0x73, 0x96, 0xd8, 0x16, 0x73, 0x43, 0x5c, 0xab, 0x6c, 0x41, 0x5f, 0x92, 0x87, 0x82, 0x55,
  350. 0x65, 0x8b, 0xad, 0xc9, 0x65, 0x61, 0x9b, 0xe6, 0x27, 0x83, 0xb5, 0x78, 0x2a, 0x0b, 0x7e, 0xf2,
  351. 0xd5, 0x23, 0xcf, 0x73, 0x39, 0xbf, 0x7d, 0x65, 0x27, 0xfb, 0x9b, 0x4b, 0x9b, 0xe2, 0x0f, 0x36,
  352. 0xf5, 0xbe, 0x9c, 0x3a, 0x4f, 0x29, 0x31, 0x31, 0x92, 0x4d, 0x19, 0x97, 0xbc, 0x32, 0xff, 0x5b,
  353. 0x6c, 0xa7, 0x58, 0x0d, 0xea, 0x86, 0x2f, 0xf5, 0x8d, 0x15, 0x7e, 0x78, 0x5e, 0xb6, 0x67, 0x2c,
  354. 0xc7, 0x3f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x66, 0x62, 0xaa, 0xcd, 0x84, 0x05, 0x00, 0x00,
  355. }