1// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: google/ads/googleads/v1/resources/media_file.proto
3
4package resources
5
6import (
7	fmt "fmt"
8	math "math"
9
10	proto "github.com/golang/protobuf/proto"
11	wrappers "github.com/golang/protobuf/ptypes/wrappers"
12	enums "google.golang.org/genproto/googleapis/ads/googleads/v1/enums"
13	_ "google.golang.org/genproto/googleapis/api/annotations"
14)
15
16// Reference imports to suppress errors if they are not otherwise used.
17var _ = proto.Marshal
18var _ = fmt.Errorf
19var _ = math.Inf
20
21// This is a compile-time assertion to ensure that this generated file
22// is compatible with the proto package it is being compiled against.
23// A compilation error at this line likely means your copy of the
24// proto package needs to be updated.
25const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
26
27// A media file.
28type MediaFile struct {
29	// The resource name of the media file.
30	// Media file resource names have the form:
31	//
32	// `customers/{customer_id}/mediaFiles/{media_file_id}`
33	ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
34	// The ID of the media file.
35	Id *wrappers.Int64Value `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
36	// Type of the media file.
37	Type enums.MediaTypeEnum_MediaType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v1.enums.MediaTypeEnum_MediaType" json:"type,omitempty"`
38	// The mime type of the media file.
39	MimeType enums.MimeTypeEnum_MimeType `protobuf:"varint,6,opt,name=mime_type,json=mimeType,proto3,enum=google.ads.googleads.v1.enums.MimeTypeEnum_MimeType" json:"mime_type,omitempty"`
40	// The URL of where the original media file was downloaded from (or a file
41	// name).
42	SourceUrl *wrappers.StringValue `protobuf:"bytes,7,opt,name=source_url,json=sourceUrl,proto3" json:"source_url,omitempty"`
43	// The name of the media file. The name can be used by clients to help
44	// identify previously uploaded media.
45	Name *wrappers.StringValue `protobuf:"bytes,8,opt,name=name,proto3" json:"name,omitempty"`
46	// The size of the media file in bytes.
47	FileSize *wrappers.Int64Value `protobuf:"bytes,9,opt,name=file_size,json=fileSize,proto3" json:"file_size,omitempty"`
48	// The specific type of the media file.
49	//
50	// Types that are valid to be assigned to Mediatype:
51	//	*MediaFile_Image
52	//	*MediaFile_MediaBundle
53	//	*MediaFile_Audio
54	//	*MediaFile_Video
55	Mediatype            isMediaFile_Mediatype `protobuf_oneof:"mediatype"`
56	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
57	XXX_unrecognized     []byte                `json:"-"`
58	XXX_sizecache        int32                 `json:"-"`
59}
60
61func (m *MediaFile) Reset()         { *m = MediaFile{} }
62func (m *MediaFile) String() string { return proto.CompactTextString(m) }
63func (*MediaFile) ProtoMessage()    {}
64func (*MediaFile) Descriptor() ([]byte, []int) {
65	return fileDescriptor_7ffee613242502eb, []int{0}
66}
67
68func (m *MediaFile) XXX_Unmarshal(b []byte) error {
69	return xxx_messageInfo_MediaFile.Unmarshal(m, b)
70}
71func (m *MediaFile) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
72	return xxx_messageInfo_MediaFile.Marshal(b, m, deterministic)
73}
74func (m *MediaFile) XXX_Merge(src proto.Message) {
75	xxx_messageInfo_MediaFile.Merge(m, src)
76}
77func (m *MediaFile) XXX_Size() int {
78	return xxx_messageInfo_MediaFile.Size(m)
79}
80func (m *MediaFile) XXX_DiscardUnknown() {
81	xxx_messageInfo_MediaFile.DiscardUnknown(m)
82}
83
84var xxx_messageInfo_MediaFile proto.InternalMessageInfo
85
86func (m *MediaFile) GetResourceName() string {
87	if m != nil {
88		return m.ResourceName
89	}
90	return ""
91}
92
93func (m *MediaFile) GetId() *wrappers.Int64Value {
94	if m != nil {
95		return m.Id
96	}
97	return nil
98}
99
100func (m *MediaFile) GetType() enums.MediaTypeEnum_MediaType {
101	if m != nil {
102		return m.Type
103	}
104	return enums.MediaTypeEnum_UNSPECIFIED
105}
106
107func (m *MediaFile) GetMimeType() enums.MimeTypeEnum_MimeType {
108	if m != nil {
109		return m.MimeType
110	}
111	return enums.MimeTypeEnum_UNSPECIFIED
112}
113
114func (m *MediaFile) GetSourceUrl() *wrappers.StringValue {
115	if m != nil {
116		return m.SourceUrl
117	}
118	return nil
119}
120
121func (m *MediaFile) GetName() *wrappers.StringValue {
122	if m != nil {
123		return m.Name
124	}
125	return nil
126}
127
128func (m *MediaFile) GetFileSize() *wrappers.Int64Value {
129	if m != nil {
130		return m.FileSize
131	}
132	return nil
133}
134
135type isMediaFile_Mediatype interface {
136	isMediaFile_Mediatype()
137}
138
139type MediaFile_Image struct {
140	Image *MediaImage `protobuf:"bytes,3,opt,name=image,proto3,oneof"`
141}
142
143type MediaFile_MediaBundle struct {
144	MediaBundle *MediaBundle `protobuf:"bytes,4,opt,name=media_bundle,json=mediaBundle,proto3,oneof"`
145}
146
147type MediaFile_Audio struct {
148	Audio *MediaAudio `protobuf:"bytes,10,opt,name=audio,proto3,oneof"`
149}
150
151type MediaFile_Video struct {
152	Video *MediaVideo `protobuf:"bytes,11,opt,name=video,proto3,oneof"`
153}
154
155func (*MediaFile_Image) isMediaFile_Mediatype() {}
156
157func (*MediaFile_MediaBundle) isMediaFile_Mediatype() {}
158
159func (*MediaFile_Audio) isMediaFile_Mediatype() {}
160
161func (*MediaFile_Video) isMediaFile_Mediatype() {}
162
163func (m *MediaFile) GetMediatype() isMediaFile_Mediatype {
164	if m != nil {
165		return m.Mediatype
166	}
167	return nil
168}
169
170func (m *MediaFile) GetImage() *MediaImage {
171	if x, ok := m.GetMediatype().(*MediaFile_Image); ok {
172		return x.Image
173	}
174	return nil
175}
176
177func (m *MediaFile) GetMediaBundle() *MediaBundle {
178	if x, ok := m.GetMediatype().(*MediaFile_MediaBundle); ok {
179		return x.MediaBundle
180	}
181	return nil
182}
183
184func (m *MediaFile) GetAudio() *MediaAudio {
185	if x, ok := m.GetMediatype().(*MediaFile_Audio); ok {
186		return x.Audio
187	}
188	return nil
189}
190
191func (m *MediaFile) GetVideo() *MediaVideo {
192	if x, ok := m.GetMediatype().(*MediaFile_Video); ok {
193		return x.Video
194	}
195	return nil
196}
197
198// XXX_OneofWrappers is for the internal use of the proto package.
199func (*MediaFile) XXX_OneofWrappers() []interface{} {
200	return []interface{}{
201		(*MediaFile_Image)(nil),
202		(*MediaFile_MediaBundle)(nil),
203		(*MediaFile_Audio)(nil),
204		(*MediaFile_Video)(nil),
205	}
206}
207
208// Encapsulates an Image.
209type MediaImage struct {
210	// Raw image data.
211	Data                 *wrappers.BytesValue `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
212	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
213	XXX_unrecognized     []byte               `json:"-"`
214	XXX_sizecache        int32                `json:"-"`
215}
216
217func (m *MediaImage) Reset()         { *m = MediaImage{} }
218func (m *MediaImage) String() string { return proto.CompactTextString(m) }
219func (*MediaImage) ProtoMessage()    {}
220func (*MediaImage) Descriptor() ([]byte, []int) {
221	return fileDescriptor_7ffee613242502eb, []int{1}
222}
223
224func (m *MediaImage) XXX_Unmarshal(b []byte) error {
225	return xxx_messageInfo_MediaImage.Unmarshal(m, b)
226}
227func (m *MediaImage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
228	return xxx_messageInfo_MediaImage.Marshal(b, m, deterministic)
229}
230func (m *MediaImage) XXX_Merge(src proto.Message) {
231	xxx_messageInfo_MediaImage.Merge(m, src)
232}
233func (m *MediaImage) XXX_Size() int {
234	return xxx_messageInfo_MediaImage.Size(m)
235}
236func (m *MediaImage) XXX_DiscardUnknown() {
237	xxx_messageInfo_MediaImage.DiscardUnknown(m)
238}
239
240var xxx_messageInfo_MediaImage proto.InternalMessageInfo
241
242func (m *MediaImage) GetData() *wrappers.BytesValue {
243	if m != nil {
244		return m.Data
245	}
246	return nil
247}
248
249// Represents a ZIP archive media the content of which contains HTML5 assets.
250type MediaBundle struct {
251	// Raw zipped data.
252	Data                 *wrappers.BytesValue `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
253	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
254	XXX_unrecognized     []byte               `json:"-"`
255	XXX_sizecache        int32                `json:"-"`
256}
257
258func (m *MediaBundle) Reset()         { *m = MediaBundle{} }
259func (m *MediaBundle) String() string { return proto.CompactTextString(m) }
260func (*MediaBundle) ProtoMessage()    {}
261func (*MediaBundle) Descriptor() ([]byte, []int) {
262	return fileDescriptor_7ffee613242502eb, []int{2}
263}
264
265func (m *MediaBundle) XXX_Unmarshal(b []byte) error {
266	return xxx_messageInfo_MediaBundle.Unmarshal(m, b)
267}
268func (m *MediaBundle) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
269	return xxx_messageInfo_MediaBundle.Marshal(b, m, deterministic)
270}
271func (m *MediaBundle) XXX_Merge(src proto.Message) {
272	xxx_messageInfo_MediaBundle.Merge(m, src)
273}
274func (m *MediaBundle) XXX_Size() int {
275	return xxx_messageInfo_MediaBundle.Size(m)
276}
277func (m *MediaBundle) XXX_DiscardUnknown() {
278	xxx_messageInfo_MediaBundle.DiscardUnknown(m)
279}
280
281var xxx_messageInfo_MediaBundle proto.InternalMessageInfo
282
283func (m *MediaBundle) GetData() *wrappers.BytesValue {
284	if m != nil {
285		return m.Data
286	}
287	return nil
288}
289
290// Encapsulates an Audio.
291type MediaAudio struct {
292	// The duration of the Audio in milliseconds.
293	AdDurationMillis     *wrappers.Int64Value `protobuf:"bytes,1,opt,name=ad_duration_millis,json=adDurationMillis,proto3" json:"ad_duration_millis,omitempty"`
294	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
295	XXX_unrecognized     []byte               `json:"-"`
296	XXX_sizecache        int32                `json:"-"`
297}
298
299func (m *MediaAudio) Reset()         { *m = MediaAudio{} }
300func (m *MediaAudio) String() string { return proto.CompactTextString(m) }
301func (*MediaAudio) ProtoMessage()    {}
302func (*MediaAudio) Descriptor() ([]byte, []int) {
303	return fileDescriptor_7ffee613242502eb, []int{3}
304}
305
306func (m *MediaAudio) XXX_Unmarshal(b []byte) error {
307	return xxx_messageInfo_MediaAudio.Unmarshal(m, b)
308}
309func (m *MediaAudio) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
310	return xxx_messageInfo_MediaAudio.Marshal(b, m, deterministic)
311}
312func (m *MediaAudio) XXX_Merge(src proto.Message) {
313	xxx_messageInfo_MediaAudio.Merge(m, src)
314}
315func (m *MediaAudio) XXX_Size() int {
316	return xxx_messageInfo_MediaAudio.Size(m)
317}
318func (m *MediaAudio) XXX_DiscardUnknown() {
319	xxx_messageInfo_MediaAudio.DiscardUnknown(m)
320}
321
322var xxx_messageInfo_MediaAudio proto.InternalMessageInfo
323
324func (m *MediaAudio) GetAdDurationMillis() *wrappers.Int64Value {
325	if m != nil {
326		return m.AdDurationMillis
327	}
328	return nil
329}
330
331// Encapsulates a Video.
332type MediaVideo struct {
333	// The duration of the Video in milliseconds.
334	AdDurationMillis *wrappers.Int64Value `protobuf:"bytes,1,opt,name=ad_duration_millis,json=adDurationMillis,proto3" json:"ad_duration_millis,omitempty"`
335	// The YouTube video ID (as seen in YouTube URLs).
336	YoutubeVideoId *wrappers.StringValue `protobuf:"bytes,2,opt,name=youtube_video_id,json=youtubeVideoId,proto3" json:"youtube_video_id,omitempty"`
337	// The Advertising Digital Identification code for this video, as defined by
338	// the American Association of Advertising Agencies, used mainly for
339	// television commercials.
340	AdvertisingIdCode *wrappers.StringValue `protobuf:"bytes,3,opt,name=advertising_id_code,json=advertisingIdCode,proto3" json:"advertising_id_code,omitempty"`
341	// The Industry Standard Commercial Identifier code for this video, used
342	// mainly for television commercials.
343	IsciCode             *wrappers.StringValue `protobuf:"bytes,4,opt,name=isci_code,json=isciCode,proto3" json:"isci_code,omitempty"`
344	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
345	XXX_unrecognized     []byte                `json:"-"`
346	XXX_sizecache        int32                 `json:"-"`
347}
348
349func (m *MediaVideo) Reset()         { *m = MediaVideo{} }
350func (m *MediaVideo) String() string { return proto.CompactTextString(m) }
351func (*MediaVideo) ProtoMessage()    {}
352func (*MediaVideo) Descriptor() ([]byte, []int) {
353	return fileDescriptor_7ffee613242502eb, []int{4}
354}
355
356func (m *MediaVideo) XXX_Unmarshal(b []byte) error {
357	return xxx_messageInfo_MediaVideo.Unmarshal(m, b)
358}
359func (m *MediaVideo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
360	return xxx_messageInfo_MediaVideo.Marshal(b, m, deterministic)
361}
362func (m *MediaVideo) XXX_Merge(src proto.Message) {
363	xxx_messageInfo_MediaVideo.Merge(m, src)
364}
365func (m *MediaVideo) XXX_Size() int {
366	return xxx_messageInfo_MediaVideo.Size(m)
367}
368func (m *MediaVideo) XXX_DiscardUnknown() {
369	xxx_messageInfo_MediaVideo.DiscardUnknown(m)
370}
371
372var xxx_messageInfo_MediaVideo proto.InternalMessageInfo
373
374func (m *MediaVideo) GetAdDurationMillis() *wrappers.Int64Value {
375	if m != nil {
376		return m.AdDurationMillis
377	}
378	return nil
379}
380
381func (m *MediaVideo) GetYoutubeVideoId() *wrappers.StringValue {
382	if m != nil {
383		return m.YoutubeVideoId
384	}
385	return nil
386}
387
388func (m *MediaVideo) GetAdvertisingIdCode() *wrappers.StringValue {
389	if m != nil {
390		return m.AdvertisingIdCode
391	}
392	return nil
393}
394
395func (m *MediaVideo) GetIsciCode() *wrappers.StringValue {
396	if m != nil {
397		return m.IsciCode
398	}
399	return nil
400}
401
402func init() {
403	proto.RegisterType((*MediaFile)(nil), "google.ads.googleads.v1.resources.MediaFile")
404	proto.RegisterType((*MediaImage)(nil), "google.ads.googleads.v1.resources.MediaImage")
405	proto.RegisterType((*MediaBundle)(nil), "google.ads.googleads.v1.resources.MediaBundle")
406	proto.RegisterType((*MediaAudio)(nil), "google.ads.googleads.v1.resources.MediaAudio")
407	proto.RegisterType((*MediaVideo)(nil), "google.ads.googleads.v1.resources.MediaVideo")
408}
409
410func init() {
411	proto.RegisterFile("google/ads/googleads/v1/resources/media_file.proto", fileDescriptor_7ffee613242502eb)
412}
413
414var fileDescriptor_7ffee613242502eb = []byte{
415	// 683 bytes of a gzipped FileDescriptorProto
416	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0xdf, 0x6a, 0xd4, 0x4c,
417	0x18, 0xc6, 0xbb, 0xe9, 0xb6, 0xdf, 0x66, 0xb6, 0x5f, 0xa9, 0xe3, 0x49, 0xa8, 0x45, 0xda, 0x95,
418	0x42, 0x41, 0x3a, 0x71, 0x6b, 0x29, 0x9a, 0xa2, 0x90, 0xd5, 0xfe, 0xd9, 0x62, 0xa5, 0xa6, 0xba,
419	0x82, 0x2c, 0x84, 0xd9, 0x9d, 0x69, 0x18, 0x48, 0x32, 0x21, 0x93, 0xac, 0x6c, 0x2f, 0xc7, 0x23,
420	0xf1, 0x52, 0xbc, 0x06, 0xaf, 0xc0, 0x5b, 0xf0, 0x44, 0x66, 0x32, 0xc9, 0x2e, 0x68, 0xbb, 0x5d,
421	0xf0, 0xec, 0x9d, 0xce, 0xf3, 0xfc, 0xf2, 0x3e, 0x6f, 0xdf, 0x64, 0xc1, 0x5e, 0xc0, 0x79, 0x10,
422	0x52, 0x1b, 0x13, 0x61, 0x17, 0xa5, 0xac, 0x46, 0x6d, 0x3b, 0xa5, 0x82, 0xe7, 0xe9, 0x90, 0x0a,
423	0x3b, 0xa2, 0x84, 0x61, 0xff, 0x8a, 0x85, 0x14, 0x25, 0x29, 0xcf, 0x38, 0xdc, 0x2a, 0x84, 0x08,
424	0x13, 0x81, 0x2a, 0x0f, 0x1a, 0xb5, 0x51, 0xe5, 0x59, 0x47, 0x37, 0x61, 0x69, 0x9c, 0x47, 0x25,
425	0x32, 0x1b, 0x27, 0x1a, 0xb9, 0xbe, 0x3b, 0x43, 0xcf, 0x22, 0x3a, 0x2d, 0xdf, 0x28, 0xe5, 0x09,
426	0xb3, 0x71, 0x1c, 0xf3, 0x0c, 0x67, 0x8c, 0xc7, 0x42, 0xdf, 0x3e, 0xd4, 0xb7, 0xea, 0x34, 0xc8,
427	0xaf, 0xec, 0xcf, 0x29, 0x4e, 0x12, 0x9a, 0xea, 0xfb, 0xd6, 0x8f, 0x25, 0x60, 0x9e, 0xcb, 0x0e,
428	0x8e, 0x59, 0x48, 0xe1, 0x23, 0xf0, 0x7f, 0xd9, 0xb7, 0x1f, 0xe3, 0x88, 0x5a, 0xb5, 0xcd, 0xda,
429	0x8e, 0xe9, 0xad, 0x94, 0x7f, 0x7c, 0x8b, 0x23, 0x0a, 0x1f, 0x03, 0x83, 0x11, 0xcb, 0xd8, 0xac,
430	0xed, 0x34, 0xf7, 0x1e, 0xe8, 0x70, 0xa8, 0xe4, 0xa3, 0x6e, 0x9c, 0x1d, 0xec, 0xf7, 0x70, 0x98,
431	0x53, 0xcf, 0x60, 0x04, 0x9e, 0x81, 0xba, 0xec, 0xd5, 0x5a, 0xda, 0xac, 0xed, 0xac, 0xee, 0x1d,
432	0xa0, 0x9b, 0xc6, 0xa5, 0xb2, 0x21, 0xd5, 0xc9, 0xfb, 0x71, 0x42, 0x8f, 0xe2, 0x3c, 0x9a, 0x9c,
433	0x3c, 0xc5, 0x80, 0xef, 0x80, 0x59, 0x85, 0xb7, 0x96, 0x15, 0x70, 0x7f, 0x16, 0x90, 0x45, 0x74,
434	0xc2, 0xd3, 0x07, 0xaf, 0x11, 0xe9, 0x0a, 0x1e, 0x02, 0xa0, 0xe3, 0xe6, 0x69, 0x68, 0xfd, 0xa7,
435	0x32, 0x6d, 0xfc, 0x91, 0xe9, 0x32, 0x4b, 0x59, 0x1c, 0x14, 0xa1, 0xcc, 0x42, 0xff, 0x21, 0x0d,
436	0xe1, 0x13, 0x50, 0x57, 0x43, 0x6a, 0xdc, 0xc1, 0xa6, 0x94, 0xf0, 0x19, 0x30, 0xe5, 0xee, 0xf8,
437	0x82, 0x5d, 0x53, 0xcb, 0x9c, 0x3d, 0xc1, 0x86, 0x54, 0x5f, 0xb2, 0x6b, 0x0a, 0x8f, 0xc0, 0x12,
438	0x8b, 0x70, 0x40, 0xad, 0x45, 0xe5, 0xda, 0x45, 0x33, 0xf7, 0xae, 0x18, 0x5f, 0x57, 0x9a, 0x4e,
439	0x17, 0xbc, 0xc2, 0x0d, 0x2f, 0xc1, 0x4a, 0xb1, 0x6f, 0x83, 0x3c, 0x26, 0x21, 0xb5, 0xea, 0x8a,
440	0x86, 0xee, 0x4a, 0xeb, 0x28, 0xd7, 0xe9, 0x82, 0xd7, 0x8c, 0x26, 0x47, 0xd9, 0x1b, 0xce, 0x09,
441	0xe3, 0x16, 0x98, 0xaf, 0x37, 0x57, 0x9a, 0x64, 0x6f, 0xca, 0x2d, 0x31, 0x23, 0x46, 0x28, 0xb7,
442	0x9a, 0xf3, 0x61, 0x7a, 0xd2, 0x24, 0x31, 0xca, 0xdd, 0x69, 0x02, 0x53, 0x35, 0x27, 0xb7, 0xa4,
443	0xf5, 0x02, 0x80, 0xc9, 0x18, 0xa0, 0x0d, 0xea, 0x04, 0x67, 0x58, 0x6d, 0xf5, 0xdf, 0x26, 0xdf,
444	0x19, 0x67, 0x54, 0xe8, 0xff, 0x97, 0x14, 0xb6, 0x5e, 0x82, 0xe6, 0x54, 0xee, 0xf9, 0xfd, 0x1f,
445	0xf5, 0xe3, 0x55, 0x52, 0xd8, 0x05, 0x10, 0x13, 0x9f, 0xe4, 0xa9, 0x7a, 0x43, 0xfd, 0x88, 0x85,
446	0x21, 0x13, 0x37, 0xc2, 0xa6, 0xd6, 0x60, 0x0d, 0x93, 0xd7, 0xda, 0x75, 0xae, 0x4c, 0xad, 0xaf,
447	0x86, 0x26, 0xab, 0xf0, 0xff, 0x90, 0x0c, 0x8f, 0xc1, 0xda, 0x98, 0xe7, 0x59, 0x3e, 0xa0, 0xbe,
448	0x9a, 0xa7, 0x5f, 0xbd, 0xeb, 0xb7, 0x2f, 0xf8, 0xaa, 0x76, 0xa9, 0x86, 0xba, 0x04, 0xbe, 0x01,
449	0xf7, 0x31, 0x19, 0xd1, 0x34, 0x63, 0x82, 0xc5, 0x81, 0xcf, 0x88, 0x3f, 0xe4, 0xa4, 0x5c, 0xdf,
450	0xdb, 0x51, 0xf7, 0xa6, 0x8c, 0x5d, 0xf2, 0x8a, 0x13, 0x0a, 0x9f, 0x03, 0x93, 0x89, 0x21, 0x2b,
451	0x18, 0xf5, 0x3b, 0x30, 0x1a, 0x52, 0x2e, 0xad, 0x9d, 0x5f, 0x35, 0xb0, 0x3d, 0xe4, 0xd1, 0xec,
452	0x6d, 0xea, 0xac, 0x56, 0x1f, 0xc2, 0x0b, 0x89, 0xbc, 0xa8, 0x7d, 0x3a, 0xd3, 0xa6, 0x80, 0x87,
453	0x38, 0x0e, 0x10, 0x4f, 0x03, 0x3b, 0xa0, 0xb1, 0x7a, 0x60, 0xf9, 0x69, 0x4e, 0x98, 0xb8, 0xe5,
454	0x07, 0xe3, 0xb0, 0xaa, 0xbe, 0x18, 0x8b, 0x27, 0xae, 0xfb, 0xcd, 0xd8, 0x3a, 0x29, 0x90, 0x2e,
455	0x11, 0xa8, 0x28, 0x65, 0xd5, 0x6b, 0x23, 0xaf, 0x54, 0x7e, 0x2f, 0x35, 0x7d, 0x97, 0x88, 0x7e,
456	0xa5, 0xe9, 0xf7, 0xda, 0xfd, 0x4a, 0xf3, 0xd3, 0xd8, 0x2e, 0x2e, 0x1c, 0xc7, 0x25, 0xc2, 0x71,
457	0x2a, 0x95, 0xe3, 0xf4, 0xda, 0x8e, 0x53, 0xe9, 0x06, 0xcb, 0xaa, 0xd9, 0xa7, 0xbf, 0x03, 0x00,
458	0x00, 0xff, 0xff, 0xa4, 0x7e, 0xab, 0xbf, 0xdc, 0x06, 0x00, 0x00,
459}
460