blob: 34230991425fe53bf02c1258394224c87f563758 [file] [log] [blame]
William Kurkian1b363f42019-03-12 15:28:12 -04001// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: voltha_protos/omci_mib_db.proto
3
4package omci // import "github.com/opencord/voltha-protos/go/omci"
5
6import proto "github.com/golang/protobuf/proto"
7import fmt "fmt"
8import math "math"
9import _ "github.com/opencord/voltha-protos/go/common"
10
11// Reference imports to suppress errors if they are not otherwise used.
12var _ = proto.Marshal
13var _ = fmt.Errorf
14var _ = math.Inf
15
16// This is a compile-time assertion to ensure that this generated file
17// is compatible with the proto package it is being compiled against.
18// A compilation error at this line likely means your copy of the
19// proto package needs to be updated.
20const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
21
22type OpenOmciEventType_OpenOmciEventType int32
23
24const (
25 OpenOmciEventType_state_change OpenOmciEventType_OpenOmciEventType = 0
26)
27
28var OpenOmciEventType_OpenOmciEventType_name = map[int32]string{
29 0: "state_change",
30}
31var OpenOmciEventType_OpenOmciEventType_value = map[string]int32{
32 "state_change": 0,
33}
34
35func (x OpenOmciEventType_OpenOmciEventType) String() string {
36 return proto.EnumName(OpenOmciEventType_OpenOmciEventType_name, int32(x))
37}
38func (OpenOmciEventType_OpenOmciEventType) EnumDescriptor() ([]byte, []int) {
39 return fileDescriptor_omci_mib_db_2d13ee397f003988, []int{6, 0}
40}
41
42type MibAttributeData struct {
43 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
44 Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
45 XXX_NoUnkeyedLiteral struct{} `json:"-"`
46 XXX_unrecognized []byte `json:"-"`
47 XXX_sizecache int32 `json:"-"`
48}
49
50func (m *MibAttributeData) Reset() { *m = MibAttributeData{} }
51func (m *MibAttributeData) String() string { return proto.CompactTextString(m) }
52func (*MibAttributeData) ProtoMessage() {}
53func (*MibAttributeData) Descriptor() ([]byte, []int) {
54 return fileDescriptor_omci_mib_db_2d13ee397f003988, []int{0}
55}
56func (m *MibAttributeData) XXX_Unmarshal(b []byte) error {
57 return xxx_messageInfo_MibAttributeData.Unmarshal(m, b)
58}
59func (m *MibAttributeData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
60 return xxx_messageInfo_MibAttributeData.Marshal(b, m, deterministic)
61}
62func (dst *MibAttributeData) XXX_Merge(src proto.Message) {
63 xxx_messageInfo_MibAttributeData.Merge(dst, src)
64}
65func (m *MibAttributeData) XXX_Size() int {
66 return xxx_messageInfo_MibAttributeData.Size(m)
67}
68func (m *MibAttributeData) XXX_DiscardUnknown() {
69 xxx_messageInfo_MibAttributeData.DiscardUnknown(m)
70}
71
72var xxx_messageInfo_MibAttributeData proto.InternalMessageInfo
73
74func (m *MibAttributeData) GetName() string {
75 if m != nil {
76 return m.Name
77 }
78 return ""
79}
80
81func (m *MibAttributeData) GetValue() string {
82 if m != nil {
83 return m.Value
84 }
85 return ""
86}
87
88type MibInstanceData struct {
89 InstanceId uint32 `protobuf:"varint,1,opt,name=instance_id,json=instanceId,proto3" json:"instance_id,omitempty"`
90 Created string `protobuf:"bytes,2,opt,name=created,proto3" json:"created,omitempty"`
91 Modified string `protobuf:"bytes,3,opt,name=modified,proto3" json:"modified,omitempty"`
92 Attributes []*MibAttributeData `protobuf:"bytes,4,rep,name=attributes,proto3" json:"attributes,omitempty"`
93 XXX_NoUnkeyedLiteral struct{} `json:"-"`
94 XXX_unrecognized []byte `json:"-"`
95 XXX_sizecache int32 `json:"-"`
96}
97
98func (m *MibInstanceData) Reset() { *m = MibInstanceData{} }
99func (m *MibInstanceData) String() string { return proto.CompactTextString(m) }
100func (*MibInstanceData) ProtoMessage() {}
101func (*MibInstanceData) Descriptor() ([]byte, []int) {
102 return fileDescriptor_omci_mib_db_2d13ee397f003988, []int{1}
103}
104func (m *MibInstanceData) XXX_Unmarshal(b []byte) error {
105 return xxx_messageInfo_MibInstanceData.Unmarshal(m, b)
106}
107func (m *MibInstanceData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
108 return xxx_messageInfo_MibInstanceData.Marshal(b, m, deterministic)
109}
110func (dst *MibInstanceData) XXX_Merge(src proto.Message) {
111 xxx_messageInfo_MibInstanceData.Merge(dst, src)
112}
113func (m *MibInstanceData) XXX_Size() int {
114 return xxx_messageInfo_MibInstanceData.Size(m)
115}
116func (m *MibInstanceData) XXX_DiscardUnknown() {
117 xxx_messageInfo_MibInstanceData.DiscardUnknown(m)
118}
119
120var xxx_messageInfo_MibInstanceData proto.InternalMessageInfo
121
122func (m *MibInstanceData) GetInstanceId() uint32 {
123 if m != nil {
124 return m.InstanceId
125 }
126 return 0
127}
128
129func (m *MibInstanceData) GetCreated() string {
130 if m != nil {
131 return m.Created
132 }
133 return ""
134}
135
136func (m *MibInstanceData) GetModified() string {
137 if m != nil {
138 return m.Modified
139 }
140 return ""
141}
142
143func (m *MibInstanceData) GetAttributes() []*MibAttributeData {
144 if m != nil {
145 return m.Attributes
146 }
147 return nil
148}
149
150type MibClassData struct {
151 ClassId uint32 `protobuf:"varint,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
152 Instances []*MibInstanceData `protobuf:"bytes,2,rep,name=instances,proto3" json:"instances,omitempty"`
153 XXX_NoUnkeyedLiteral struct{} `json:"-"`
154 XXX_unrecognized []byte `json:"-"`
155 XXX_sizecache int32 `json:"-"`
156}
157
158func (m *MibClassData) Reset() { *m = MibClassData{} }
159func (m *MibClassData) String() string { return proto.CompactTextString(m) }
160func (*MibClassData) ProtoMessage() {}
161func (*MibClassData) Descriptor() ([]byte, []int) {
162 return fileDescriptor_omci_mib_db_2d13ee397f003988, []int{2}
163}
164func (m *MibClassData) XXX_Unmarshal(b []byte) error {
165 return xxx_messageInfo_MibClassData.Unmarshal(m, b)
166}
167func (m *MibClassData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
168 return xxx_messageInfo_MibClassData.Marshal(b, m, deterministic)
169}
170func (dst *MibClassData) XXX_Merge(src proto.Message) {
171 xxx_messageInfo_MibClassData.Merge(dst, src)
172}
173func (m *MibClassData) XXX_Size() int {
174 return xxx_messageInfo_MibClassData.Size(m)
175}
176func (m *MibClassData) XXX_DiscardUnknown() {
177 xxx_messageInfo_MibClassData.DiscardUnknown(m)
178}
179
180var xxx_messageInfo_MibClassData proto.InternalMessageInfo
181
182func (m *MibClassData) GetClassId() uint32 {
183 if m != nil {
184 return m.ClassId
185 }
186 return 0
187}
188
189func (m *MibClassData) GetInstances() []*MibInstanceData {
190 if m != nil {
191 return m.Instances
192 }
193 return nil
194}
195
196type ManagedEntity struct {
197 ClassId uint32 `protobuf:"varint,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
198 Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
199 XXX_NoUnkeyedLiteral struct{} `json:"-"`
200 XXX_unrecognized []byte `json:"-"`
201 XXX_sizecache int32 `json:"-"`
202}
203
204func (m *ManagedEntity) Reset() { *m = ManagedEntity{} }
205func (m *ManagedEntity) String() string { return proto.CompactTextString(m) }
206func (*ManagedEntity) ProtoMessage() {}
207func (*ManagedEntity) Descriptor() ([]byte, []int) {
208 return fileDescriptor_omci_mib_db_2d13ee397f003988, []int{3}
209}
210func (m *ManagedEntity) XXX_Unmarshal(b []byte) error {
211 return xxx_messageInfo_ManagedEntity.Unmarshal(m, b)
212}
213func (m *ManagedEntity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
214 return xxx_messageInfo_ManagedEntity.Marshal(b, m, deterministic)
215}
216func (dst *ManagedEntity) XXX_Merge(src proto.Message) {
217 xxx_messageInfo_ManagedEntity.Merge(dst, src)
218}
219func (m *ManagedEntity) XXX_Size() int {
220 return xxx_messageInfo_ManagedEntity.Size(m)
221}
222func (m *ManagedEntity) XXX_DiscardUnknown() {
223 xxx_messageInfo_ManagedEntity.DiscardUnknown(m)
224}
225
226var xxx_messageInfo_ManagedEntity proto.InternalMessageInfo
227
228func (m *ManagedEntity) GetClassId() uint32 {
229 if m != nil {
230 return m.ClassId
231 }
232 return 0
233}
234
235func (m *ManagedEntity) GetName() string {
236 if m != nil {
237 return m.Name
238 }
239 return ""
240}
241
242type MessageType struct {
243 MessageType uint32 `protobuf:"varint,1,opt,name=message_type,json=messageType,proto3" json:"message_type,omitempty"`
244 XXX_NoUnkeyedLiteral struct{} `json:"-"`
245 XXX_unrecognized []byte `json:"-"`
246 XXX_sizecache int32 `json:"-"`
247}
248
249func (m *MessageType) Reset() { *m = MessageType{} }
250func (m *MessageType) String() string { return proto.CompactTextString(m) }
251func (*MessageType) ProtoMessage() {}
252func (*MessageType) Descriptor() ([]byte, []int) {
253 return fileDescriptor_omci_mib_db_2d13ee397f003988, []int{4}
254}
255func (m *MessageType) XXX_Unmarshal(b []byte) error {
256 return xxx_messageInfo_MessageType.Unmarshal(m, b)
257}
258func (m *MessageType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
259 return xxx_messageInfo_MessageType.Marshal(b, m, deterministic)
260}
261func (dst *MessageType) XXX_Merge(src proto.Message) {
262 xxx_messageInfo_MessageType.Merge(dst, src)
263}
264func (m *MessageType) XXX_Size() int {
265 return xxx_messageInfo_MessageType.Size(m)
266}
267func (m *MessageType) XXX_DiscardUnknown() {
268 xxx_messageInfo_MessageType.DiscardUnknown(m)
269}
270
271var xxx_messageInfo_MessageType proto.InternalMessageInfo
272
273func (m *MessageType) GetMessageType() uint32 {
274 if m != nil {
275 return m.MessageType
276 }
277 return 0
278}
279
280type MibDeviceData struct {
281 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
282 Created string `protobuf:"bytes,2,opt,name=created,proto3" json:"created,omitempty"`
283 LastSyncTime string `protobuf:"bytes,3,opt,name=last_sync_time,json=lastSyncTime,proto3" json:"last_sync_time,omitempty"`
284 MibDataSync uint32 `protobuf:"varint,4,opt,name=mib_data_sync,json=mibDataSync,proto3" json:"mib_data_sync,omitempty"`
285 Version uint32 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty"`
286 Classes []*MibClassData `protobuf:"bytes,6,rep,name=classes,proto3" json:"classes,omitempty"`
287 ManagedEntities []*ManagedEntity `protobuf:"bytes,7,rep,name=managed_entities,json=managedEntities,proto3" json:"managed_entities,omitempty"`
288 MessageTypes []*MessageType `protobuf:"bytes,8,rep,name=message_types,json=messageTypes,proto3" json:"message_types,omitempty"`
289 XXX_NoUnkeyedLiteral struct{} `json:"-"`
290 XXX_unrecognized []byte `json:"-"`
291 XXX_sizecache int32 `json:"-"`
292}
293
294func (m *MibDeviceData) Reset() { *m = MibDeviceData{} }
295func (m *MibDeviceData) String() string { return proto.CompactTextString(m) }
296func (*MibDeviceData) ProtoMessage() {}
297func (*MibDeviceData) Descriptor() ([]byte, []int) {
298 return fileDescriptor_omci_mib_db_2d13ee397f003988, []int{5}
299}
300func (m *MibDeviceData) XXX_Unmarshal(b []byte) error {
301 return xxx_messageInfo_MibDeviceData.Unmarshal(m, b)
302}
303func (m *MibDeviceData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
304 return xxx_messageInfo_MibDeviceData.Marshal(b, m, deterministic)
305}
306func (dst *MibDeviceData) XXX_Merge(src proto.Message) {
307 xxx_messageInfo_MibDeviceData.Merge(dst, src)
308}
309func (m *MibDeviceData) XXX_Size() int {
310 return xxx_messageInfo_MibDeviceData.Size(m)
311}
312func (m *MibDeviceData) XXX_DiscardUnknown() {
313 xxx_messageInfo_MibDeviceData.DiscardUnknown(m)
314}
315
316var xxx_messageInfo_MibDeviceData proto.InternalMessageInfo
317
318func (m *MibDeviceData) GetDeviceId() string {
319 if m != nil {
320 return m.DeviceId
321 }
322 return ""
323}
324
325func (m *MibDeviceData) GetCreated() string {
326 if m != nil {
327 return m.Created
328 }
329 return ""
330}
331
332func (m *MibDeviceData) GetLastSyncTime() string {
333 if m != nil {
334 return m.LastSyncTime
335 }
336 return ""
337}
338
339func (m *MibDeviceData) GetMibDataSync() uint32 {
340 if m != nil {
341 return m.MibDataSync
342 }
343 return 0
344}
345
346func (m *MibDeviceData) GetVersion() uint32 {
347 if m != nil {
348 return m.Version
349 }
350 return 0
351}
352
353func (m *MibDeviceData) GetClasses() []*MibClassData {
354 if m != nil {
355 return m.Classes
356 }
357 return nil
358}
359
360func (m *MibDeviceData) GetManagedEntities() []*ManagedEntity {
361 if m != nil {
362 return m.ManagedEntities
363 }
364 return nil
365}
366
367func (m *MibDeviceData) GetMessageTypes() []*MessageType {
368 if m != nil {
369 return m.MessageTypes
370 }
371 return nil
372}
373
374type OpenOmciEventType struct {
375 XXX_NoUnkeyedLiteral struct{} `json:"-"`
376 XXX_unrecognized []byte `json:"-"`
377 XXX_sizecache int32 `json:"-"`
378}
379
380func (m *OpenOmciEventType) Reset() { *m = OpenOmciEventType{} }
381func (m *OpenOmciEventType) String() string { return proto.CompactTextString(m) }
382func (*OpenOmciEventType) ProtoMessage() {}
383func (*OpenOmciEventType) Descriptor() ([]byte, []int) {
384 return fileDescriptor_omci_mib_db_2d13ee397f003988, []int{6}
385}
386func (m *OpenOmciEventType) XXX_Unmarshal(b []byte) error {
387 return xxx_messageInfo_OpenOmciEventType.Unmarshal(m, b)
388}
389func (m *OpenOmciEventType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
390 return xxx_messageInfo_OpenOmciEventType.Marshal(b, m, deterministic)
391}
392func (dst *OpenOmciEventType) XXX_Merge(src proto.Message) {
393 xxx_messageInfo_OpenOmciEventType.Merge(dst, src)
394}
395func (m *OpenOmciEventType) XXX_Size() int {
396 return xxx_messageInfo_OpenOmciEventType.Size(m)
397}
398func (m *OpenOmciEventType) XXX_DiscardUnknown() {
399 xxx_messageInfo_OpenOmciEventType.DiscardUnknown(m)
400}
401
402var xxx_messageInfo_OpenOmciEventType proto.InternalMessageInfo
403
404type OpenOmciEvent struct {
405 Type OpenOmciEventType_OpenOmciEventType `protobuf:"varint,1,opt,name=type,proto3,enum=omci.OpenOmciEventType_OpenOmciEventType" json:"type,omitempty"`
406 Data string `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
407 XXX_NoUnkeyedLiteral struct{} `json:"-"`
408 XXX_unrecognized []byte `json:"-"`
409 XXX_sizecache int32 `json:"-"`
410}
411
412func (m *OpenOmciEvent) Reset() { *m = OpenOmciEvent{} }
413func (m *OpenOmciEvent) String() string { return proto.CompactTextString(m) }
414func (*OpenOmciEvent) ProtoMessage() {}
415func (*OpenOmciEvent) Descriptor() ([]byte, []int) {
416 return fileDescriptor_omci_mib_db_2d13ee397f003988, []int{7}
417}
418func (m *OpenOmciEvent) XXX_Unmarshal(b []byte) error {
419 return xxx_messageInfo_OpenOmciEvent.Unmarshal(m, b)
420}
421func (m *OpenOmciEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
422 return xxx_messageInfo_OpenOmciEvent.Marshal(b, m, deterministic)
423}
424func (dst *OpenOmciEvent) XXX_Merge(src proto.Message) {
425 xxx_messageInfo_OpenOmciEvent.Merge(dst, src)
426}
427func (m *OpenOmciEvent) XXX_Size() int {
428 return xxx_messageInfo_OpenOmciEvent.Size(m)
429}
430func (m *OpenOmciEvent) XXX_DiscardUnknown() {
431 xxx_messageInfo_OpenOmciEvent.DiscardUnknown(m)
432}
433
434var xxx_messageInfo_OpenOmciEvent proto.InternalMessageInfo
435
436func (m *OpenOmciEvent) GetType() OpenOmciEventType_OpenOmciEventType {
437 if m != nil {
438 return m.Type
439 }
440 return OpenOmciEventType_state_change
441}
442
443func (m *OpenOmciEvent) GetData() string {
444 if m != nil {
445 return m.Data
446 }
447 return ""
448}
449
450func init() {
451 proto.RegisterType((*MibAttributeData)(nil), "omci.MibAttributeData")
452 proto.RegisterType((*MibInstanceData)(nil), "omci.MibInstanceData")
453 proto.RegisterType((*MibClassData)(nil), "omci.MibClassData")
454 proto.RegisterType((*ManagedEntity)(nil), "omci.ManagedEntity")
455 proto.RegisterType((*MessageType)(nil), "omci.MessageType")
456 proto.RegisterType((*MibDeviceData)(nil), "omci.MibDeviceData")
457 proto.RegisterType((*OpenOmciEventType)(nil), "omci.OpenOmciEventType")
458 proto.RegisterType((*OpenOmciEvent)(nil), "omci.OpenOmciEvent")
459 proto.RegisterEnum("omci.OpenOmciEventType_OpenOmciEventType", OpenOmciEventType_OpenOmciEventType_name, OpenOmciEventType_OpenOmciEventType_value)
460}
461
462func init() {
463 proto.RegisterFile("voltha_protos/omci_mib_db.proto", fileDescriptor_omci_mib_db_2d13ee397f003988)
464}
465
466var fileDescriptor_omci_mib_db_2d13ee397f003988 = []byte{
467 // 582 bytes of a gzipped FileDescriptorProto
468 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xdb, 0x6a, 0xdb, 0x40,
469 0x10, 0xad, 0x1d, 0x25, 0x71, 0x46, 0x56, 0xe2, 0x6c, 0x2f, 0x6c, 0x03, 0xa1, 0x41, 0xb4, 0x25,
470 0xa1, 0xd4, 0x81, 0x14, 0x5a, 0x28, 0xa4, 0x50, 0x3b, 0xa1, 0x18, 0x2a, 0x02, 0x6a, 0x9e, 0xfa,
471 0x22, 0x56, 0xd2, 0xd4, 0x5e, 0xf0, 0xae, 0x8c, 0x77, 0x6d, 0xd0, 0x7f, 0xf5, 0x37, 0xf2, 0x13,
472 0x7d, 0xca, 0x17, 0xe4, 0xb9, 0xec, 0xea, 0x62, 0xb9, 0x2e, 0xa5, 0x6f, 0x3a, 0x73, 0x39, 0x33,
473 0x73, 0x8e, 0x58, 0x78, 0xb1, 0xcc, 0xa6, 0x7a, 0xc2, 0xa2, 0xd9, 0x3c, 0xd3, 0x99, 0x3a, 0xcf,
474 0x44, 0xc2, 0x23, 0xc1, 0xe3, 0x28, 0x8d, 0xfb, 0x36, 0x44, 0x1c, 0x13, 0x3a, 0xa2, 0xeb, 0x65,
475 0x02, 0x35, 0x2b, 0xf2, 0xfe, 0x10, 0x7a, 0x01, 0x8f, 0x3f, 0x6b, 0x3d, 0xe7, 0xf1, 0x42, 0xe3,
476 0x15, 0xd3, 0x8c, 0x3c, 0x07, 0x47, 0x32, 0x81, 0xb4, 0x75, 0xd2, 0x3a, 0xdd, 0x1b, 0x6c, 0xdf,
477 0x3f, 0xdc, 0x1d, 0xb7, 0x42, 0x1b, 0x22, 0x4f, 0x60, 0x7b, 0xc9, 0xa6, 0x0b, 0xa4, 0x6d, 0x93,
478 0x0b, 0x0b, 0xe0, 0xff, 0x6c, 0xc1, 0x41, 0xc0, 0xe3, 0x91, 0x54, 0x9a, 0xc9, 0xa4, 0x20, 0x79,
479 0x0d, 0x2e, 0x2f, 0x71, 0xc4, 0x53, 0xcb, 0xe5, 0x55, 0x5c, 0x50, 0x65, 0x46, 0x29, 0xa1, 0xb0,
480 0x9b, 0xcc, 0x91, 0x69, 0x4c, 0x4b, 0xce, 0x0a, 0x92, 0x23, 0xe8, 0x88, 0x2c, 0xe5, 0x3f, 0x38,
481 0xa6, 0x74, 0xcb, 0xa6, 0x6a, 0x4c, 0x86, 0x00, 0xac, 0xda, 0x59, 0x51, 0xe7, 0x64, 0xeb, 0xd4,
482 0xbd, 0x78, 0xd6, 0x37, 0xb7, 0xf6, 0xff, 0x3c, 0x67, 0xe0, 0xfe, 0x7a, 0xb8, 0x3b, 0xde, 0x29,
483 0x6e, 0x0a, 0x1b, 0x6d, 0x7e, 0x0e, 0xdd, 0x80, 0xc7, 0xc3, 0x29, 0x53, 0xca, 0xae, 0x7c, 0x02,
484 0x9d, 0xc4, 0x80, 0x8d, 0x7d, 0x77, 0x6d, 0x78, 0x94, 0x92, 0x2f, 0xb0, 0x57, 0xad, 0xae, 0x68,
485 0xdb, 0x4e, 0x7d, 0x5a, 0x4f, 0x6d, 0x9e, 0x3f, 0x20, 0x66, 0xa8, 0xb7, 0xa6, 0x41, 0xb8, 0xea,
486 0xf5, 0xbf, 0x82, 0x17, 0x30, 0xc9, 0xc6, 0x98, 0x5e, 0x4b, 0xcd, 0x75, 0xfe, 0x1f, 0xb3, 0x2b,
487 0x57, 0xda, 0x1b, 0xae, 0xf8, 0x1f, 0xc0, 0x0d, 0x50, 0x29, 0x36, 0xc6, 0xdb, 0x7c, 0x86, 0xe4,
488 0x14, 0xba, 0xa2, 0x80, 0x91, 0xce, 0x67, 0xb8, 0xce, 0xe7, 0x8a, 0x55, 0xa5, 0x7f, 0xdf, 0x06,
489 0x2f, 0xe0, 0xf1, 0x15, 0x2e, 0x79, 0x69, 0x9b, 0x0f, 0x7b, 0xa9, 0x45, 0xd5, 0x22, 0xf5, 0xa8,
490 0x4e, 0x11, 0xff, 0xa7, 0x65, 0x2f, 0x61, 0x7f, 0xca, 0x94, 0x8e, 0x54, 0x2e, 0x93, 0x48, 0x73,
491 0x81, 0xa5, 0x71, 0x5d, 0x13, 0xfd, 0x96, 0xcb, 0xe4, 0x96, 0x0b, 0x24, 0x3e, 0x78, 0xf6, 0x1f,
492 0x65, 0x9a, 0xd9, 0x4a, 0xea, 0x98, 0x05, 0x43, 0x57, 0xf0, 0xd8, 0xec, 0x60, 0xea, 0xcc, 0x8c,
493 0x25, 0xce, 0x15, 0xcf, 0x24, 0xdd, 0xb6, 0xd9, 0x0a, 0x92, 0x4b, 0x28, 0x24, 0x41, 0x45, 0x77,
494 0xac, 0x03, 0xa4, 0x76, 0xa0, 0xb6, 0x72, 0x70, 0x60, 0xe4, 0x87, 0x95, 0xa6, 0x61, 0xd5, 0x43,
495 0x3e, 0x41, 0x4f, 0x14, 0xca, 0x47, 0x68, 0xa4, 0xe7, 0xa8, 0xe8, 0xae, 0xe5, 0x79, 0x5c, 0xf2,
496 0x34, 0x7d, 0x09, 0x0f, 0x44, 0x03, 0x72, 0x54, 0xe4, 0x3d, 0x78, 0x4d, 0x71, 0x15, 0xed, 0xd8,
497 0xe6, 0xc3, 0xb2, 0x79, 0x25, 0x6e, 0xd8, 0x6d, 0x28, 0xad, 0xfc, 0x8f, 0x70, 0x78, 0x33, 0x43,
498 0x79, 0x23, 0x12, 0x7e, 0xbd, 0x44, 0xa9, 0xad, 0xfe, 0xaf, 0xfe, 0x12, 0x24, 0x3d, 0xe8, 0x2a,
499 0xcd, 0x34, 0x46, 0xc9, 0x84, 0xc9, 0x31, 0xf6, 0x1e, 0xf9, 0x31, 0x78, 0x6b, 0x65, 0xe4, 0x12,
500 0x9c, 0xda, 0xd9, 0xfd, 0x8b, 0xb3, 0x62, 0xf6, 0x06, 0xd3, 0x66, 0x24, 0xb4, 0x6d, 0x84, 0x80,
501 0x63, 0xc4, 0x2f, 0xdd, 0xb3, 0xdf, 0x83, 0x37, 0xdf, 0xcf, 0xc6, 0x5c, 0x4f, 0x16, 0x71, 0x3f,
502 0xc9, 0xc4, 0x79, 0x36, 0x43, 0x99, 0x64, 0xf3, 0xf4, 0xbc, 0x78, 0x38, 0xde, 0x96, 0x0f, 0xc7,
503 0x38, 0xb3, 0x4f, 0x4c, 0xbc, 0x63, 0xf1, 0xbb, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc6, 0xd7,
504 0x40, 0x10, 0x7f, 0x04, 0x00, 0x00,
505}