blob: c4b9028398b45188886472e5730aff3244beefed [file] [log] [blame]
Don Newton98fd8812019-09-23 15:15:02 -04001// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: voltha_protos/common.proto
3
4package common
5
6import (
7 fmt "fmt"
8 proto "github.com/golang/protobuf/proto"
9 math "math"
10)
11
12// Reference imports to suppress errors if they are not otherwise used.
13var _ = proto.Marshal
14var _ = fmt.Errorf
15var _ = math.Inf
16
17// This is a compile-time assertion to ensure that this generated file
18// is compatible with the proto package it is being compiled against.
19// A compilation error at this line likely means your copy of the
20// proto package needs to be updated.
21const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
22
23type TestModeKeys int32
24
25const (
26 TestModeKeys_api_test TestModeKeys = 0
27)
28
29var TestModeKeys_name = map[int32]string{
30 0: "api_test",
31}
32
33var TestModeKeys_value = map[string]int32{
34 "api_test": 0,
35}
36
37func (x TestModeKeys) String() string {
38 return proto.EnumName(TestModeKeys_name, int32(x))
39}
40
41func (TestModeKeys) EnumDescriptor() ([]byte, []int) {
42 return fileDescriptor_c2e3fd231961e826, []int{0}
43}
44
Don Newton98fd8812019-09-23 15:15:02 -040045// Administrative State
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080046type AdminState_Types int32
Don Newton98fd8812019-09-23 15:15:02 -040047
48const (
49 // The administrative state of the device is unknown
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080050 AdminState_UNKNOWN AdminState_Types = 0
Don Newton98fd8812019-09-23 15:15:02 -040051 // The device is pre-provisioned into Voltha, but not contacted by it
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080052 AdminState_PREPROVISIONED AdminState_Types = 1
Don Newton98fd8812019-09-23 15:15:02 -040053 // The device is enabled for activation and operation
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080054 AdminState_ENABLED AdminState_Types = 2
Don Newton98fd8812019-09-23 15:15:02 -040055 // The device is disabled and shall not perform its intended forwarding
56 // functions other than being available for re-activation.
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080057 AdminState_DISABLED AdminState_Types = 3
Don Newton98fd8812019-09-23 15:15:02 -040058 // The device is in the state of image download
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080059 AdminState_DOWNLOADING_IMAGE AdminState_Types = 4
Don Newton98fd8812019-09-23 15:15:02 -040060 // The device is marked to be deleted
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080061 AdminState_DELETED AdminState_Types = 5
Don Newton98fd8812019-09-23 15:15:02 -040062)
63
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080064var AdminState_Types_name = map[int32]string{
Don Newton98fd8812019-09-23 15:15:02 -040065 0: "UNKNOWN",
66 1: "PREPROVISIONED",
67 2: "ENABLED",
68 3: "DISABLED",
69 4: "DOWNLOADING_IMAGE",
70 5: "DELETED",
71}
72
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080073var AdminState_Types_value = map[string]int32{
Don Newton98fd8812019-09-23 15:15:02 -040074 "UNKNOWN": 0,
75 "PREPROVISIONED": 1,
76 "ENABLED": 2,
77 "DISABLED": 3,
78 "DOWNLOADING_IMAGE": 4,
79 "DELETED": 5,
80}
81
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080082func (x AdminState_Types) String() string {
83 return proto.EnumName(AdminState_Types_name, int32(x))
Don Newton98fd8812019-09-23 15:15:02 -040084}
85
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080086func (AdminState_Types) EnumDescriptor() ([]byte, []int) {
Rohan Agrawal00d3a412020-04-22 10:51:39 +000087 return fileDescriptor_c2e3fd231961e826, []int{2, 0}
Don Newton98fd8812019-09-23 15:15:02 -040088}
89
90// Operational Status
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080091type OperStatus_Types int32
Don Newton98fd8812019-09-23 15:15:02 -040092
93const (
94 // The status of the device is unknown at this point
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080095 OperStatus_UNKNOWN OperStatus_Types = 0
Don Newton98fd8812019-09-23 15:15:02 -040096 // The device has been discovered, but not yet activated
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080097 OperStatus_DISCOVERED OperStatus_Types = 1
Don Newton98fd8812019-09-23 15:15:02 -040098 // The device is being activated (booted, rebooted, upgraded, etc.)
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -080099 OperStatus_ACTIVATING OperStatus_Types = 2
Don Newton98fd8812019-09-23 15:15:02 -0400100 // Service impacting tests are being conducted
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800101 OperStatus_TESTING OperStatus_Types = 3
Don Newton98fd8812019-09-23 15:15:02 -0400102 // The device is up and active
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800103 OperStatus_ACTIVE OperStatus_Types = 4
Don Newton98fd8812019-09-23 15:15:02 -0400104 // The device has failed and cannot fulfill its intended role
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800105 OperStatus_FAILED OperStatus_Types = 5
Don Newton98fd8812019-09-23 15:15:02 -0400106)
107
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800108var OperStatus_Types_name = map[int32]string{
Don Newton98fd8812019-09-23 15:15:02 -0400109 0: "UNKNOWN",
110 1: "DISCOVERED",
111 2: "ACTIVATING",
112 3: "TESTING",
113 4: "ACTIVE",
114 5: "FAILED",
115}
116
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800117var OperStatus_Types_value = map[string]int32{
Don Newton98fd8812019-09-23 15:15:02 -0400118 "UNKNOWN": 0,
119 "DISCOVERED": 1,
120 "ACTIVATING": 2,
121 "TESTING": 3,
122 "ACTIVE": 4,
123 "FAILED": 5,
124}
125
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800126func (x OperStatus_Types) String() string {
127 return proto.EnumName(OperStatus_Types_name, int32(x))
Don Newton98fd8812019-09-23 15:15:02 -0400128}
129
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800130func (OperStatus_Types) EnumDescriptor() ([]byte, []int) {
Rohan Agrawal00d3a412020-04-22 10:51:39 +0000131 return fileDescriptor_c2e3fd231961e826, []int{3, 0}
Don Newton98fd8812019-09-23 15:15:02 -0400132}
133
134// Connectivity Status
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800135type ConnectStatus_Types int32
Don Newton98fd8812019-09-23 15:15:02 -0400136
137const (
138 // The device connectivity status is unknown
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800139 ConnectStatus_UNKNOWN ConnectStatus_Types = 0
Don Newton98fd8812019-09-23 15:15:02 -0400140 // The device cannot be reached by Voltha
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800141 ConnectStatus_UNREACHABLE ConnectStatus_Types = 1
Don Newton98fd8812019-09-23 15:15:02 -0400142 // There is live communication between device and Voltha
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800143 ConnectStatus_REACHABLE ConnectStatus_Types = 2
Don Newton98fd8812019-09-23 15:15:02 -0400144)
145
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800146var ConnectStatus_Types_name = map[int32]string{
Don Newton98fd8812019-09-23 15:15:02 -0400147 0: "UNKNOWN",
148 1: "UNREACHABLE",
149 2: "REACHABLE",
150}
151
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800152var ConnectStatus_Types_value = map[string]int32{
Don Newton98fd8812019-09-23 15:15:02 -0400153 "UNKNOWN": 0,
154 "UNREACHABLE": 1,
155 "REACHABLE": 2,
156}
157
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800158func (x ConnectStatus_Types) String() string {
159 return proto.EnumName(ConnectStatus_Types_name, int32(x))
Don Newton98fd8812019-09-23 15:15:02 -0400160}
161
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800162func (ConnectStatus_Types) EnumDescriptor() ([]byte, []int) {
Rohan Agrawal00d3a412020-04-22 10:51:39 +0000163 return fileDescriptor_c2e3fd231961e826, []int{4, 0}
Don Newton98fd8812019-09-23 15:15:02 -0400164}
165
166type OperationResp_OperationReturnCode int32
167
168const (
169 OperationResp_OPERATION_SUCCESS OperationResp_OperationReturnCode = 0
170 OperationResp_OPERATION_FAILURE OperationResp_OperationReturnCode = 1
171 OperationResp_OPERATION_UNSUPPORTED OperationResp_OperationReturnCode = 2
172)
173
174var OperationResp_OperationReturnCode_name = map[int32]string{
175 0: "OPERATION_SUCCESS",
176 1: "OPERATION_FAILURE",
177 2: "OPERATION_UNSUPPORTED",
178}
179
180var OperationResp_OperationReturnCode_value = map[string]int32{
181 "OPERATION_SUCCESS": 0,
182 "OPERATION_FAILURE": 1,
183 "OPERATION_UNSUPPORTED": 2,
184}
185
186func (x OperationResp_OperationReturnCode) String() string {
187 return proto.EnumName(OperationResp_OperationReturnCode_name, int32(x))
188}
189
190func (OperationResp_OperationReturnCode) EnumDescriptor() ([]byte, []int) {
Rohan Agrawal00d3a412020-04-22 10:51:39 +0000191 return fileDescriptor_c2e3fd231961e826, []int{5, 0}
Don Newton98fd8812019-09-23 15:15:02 -0400192}
193
194// Convey a resource identifier
195type ID struct {
196 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
197 XXX_NoUnkeyedLiteral struct{} `json:"-"`
198 XXX_unrecognized []byte `json:"-"`
199 XXX_sizecache int32 `json:"-"`
200}
201
202func (m *ID) Reset() { *m = ID{} }
203func (m *ID) String() string { return proto.CompactTextString(m) }
204func (*ID) ProtoMessage() {}
205func (*ID) Descriptor() ([]byte, []int) {
206 return fileDescriptor_c2e3fd231961e826, []int{0}
207}
208
209func (m *ID) XXX_Unmarshal(b []byte) error {
210 return xxx_messageInfo_ID.Unmarshal(m, b)
211}
212func (m *ID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
213 return xxx_messageInfo_ID.Marshal(b, m, deterministic)
214}
215func (m *ID) XXX_Merge(src proto.Message) {
216 xxx_messageInfo_ID.Merge(m, src)
217}
218func (m *ID) XXX_Size() int {
219 return xxx_messageInfo_ID.Size(m)
220}
221func (m *ID) XXX_DiscardUnknown() {
222 xxx_messageInfo_ID.DiscardUnknown(m)
223}
224
225var xxx_messageInfo_ID proto.InternalMessageInfo
226
227func (m *ID) GetId() string {
228 if m != nil {
229 return m.Id
230 }
231 return ""
232}
233
234// Represents a list of IDs
235type IDs struct {
236 Items []*ID `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
237 XXX_NoUnkeyedLiteral struct{} `json:"-"`
238 XXX_unrecognized []byte `json:"-"`
239 XXX_sizecache int32 `json:"-"`
240}
241
242func (m *IDs) Reset() { *m = IDs{} }
243func (m *IDs) String() string { return proto.CompactTextString(m) }
244func (*IDs) ProtoMessage() {}
245func (*IDs) Descriptor() ([]byte, []int) {
246 return fileDescriptor_c2e3fd231961e826, []int{1}
247}
248
249func (m *IDs) XXX_Unmarshal(b []byte) error {
250 return xxx_messageInfo_IDs.Unmarshal(m, b)
251}
252func (m *IDs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
253 return xxx_messageInfo_IDs.Marshal(b, m, deterministic)
254}
255func (m *IDs) XXX_Merge(src proto.Message) {
256 xxx_messageInfo_IDs.Merge(m, src)
257}
258func (m *IDs) XXX_Size() int {
259 return xxx_messageInfo_IDs.Size(m)
260}
261func (m *IDs) XXX_DiscardUnknown() {
262 xxx_messageInfo_IDs.DiscardUnknown(m)
263}
264
265var xxx_messageInfo_IDs proto.InternalMessageInfo
266
267func (m *IDs) GetItems() []*ID {
268 if m != nil {
269 return m.Items
270 }
271 return nil
272}
273
Don Newton98fd8812019-09-23 15:15:02 -0400274type AdminState struct {
275 XXX_NoUnkeyedLiteral struct{} `json:"-"`
276 XXX_unrecognized []byte `json:"-"`
277 XXX_sizecache int32 `json:"-"`
278}
279
280func (m *AdminState) Reset() { *m = AdminState{} }
281func (m *AdminState) String() string { return proto.CompactTextString(m) }
282func (*AdminState) ProtoMessage() {}
283func (*AdminState) Descriptor() ([]byte, []int) {
Rohan Agrawal00d3a412020-04-22 10:51:39 +0000284 return fileDescriptor_c2e3fd231961e826, []int{2}
Don Newton98fd8812019-09-23 15:15:02 -0400285}
286
287func (m *AdminState) XXX_Unmarshal(b []byte) error {
288 return xxx_messageInfo_AdminState.Unmarshal(m, b)
289}
290func (m *AdminState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
291 return xxx_messageInfo_AdminState.Marshal(b, m, deterministic)
292}
293func (m *AdminState) XXX_Merge(src proto.Message) {
294 xxx_messageInfo_AdminState.Merge(m, src)
295}
296func (m *AdminState) XXX_Size() int {
297 return xxx_messageInfo_AdminState.Size(m)
298}
299func (m *AdminState) XXX_DiscardUnknown() {
300 xxx_messageInfo_AdminState.DiscardUnknown(m)
301}
302
303var xxx_messageInfo_AdminState proto.InternalMessageInfo
304
305type OperStatus struct {
306 XXX_NoUnkeyedLiteral struct{} `json:"-"`
307 XXX_unrecognized []byte `json:"-"`
308 XXX_sizecache int32 `json:"-"`
309}
310
311func (m *OperStatus) Reset() { *m = OperStatus{} }
312func (m *OperStatus) String() string { return proto.CompactTextString(m) }
313func (*OperStatus) ProtoMessage() {}
314func (*OperStatus) Descriptor() ([]byte, []int) {
Rohan Agrawal00d3a412020-04-22 10:51:39 +0000315 return fileDescriptor_c2e3fd231961e826, []int{3}
Don Newton98fd8812019-09-23 15:15:02 -0400316}
317
318func (m *OperStatus) XXX_Unmarshal(b []byte) error {
319 return xxx_messageInfo_OperStatus.Unmarshal(m, b)
320}
321func (m *OperStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
322 return xxx_messageInfo_OperStatus.Marshal(b, m, deterministic)
323}
324func (m *OperStatus) XXX_Merge(src proto.Message) {
325 xxx_messageInfo_OperStatus.Merge(m, src)
326}
327func (m *OperStatus) XXX_Size() int {
328 return xxx_messageInfo_OperStatus.Size(m)
329}
330func (m *OperStatus) XXX_DiscardUnknown() {
331 xxx_messageInfo_OperStatus.DiscardUnknown(m)
332}
333
334var xxx_messageInfo_OperStatus proto.InternalMessageInfo
335
336type ConnectStatus struct {
337 XXX_NoUnkeyedLiteral struct{} `json:"-"`
338 XXX_unrecognized []byte `json:"-"`
339 XXX_sizecache int32 `json:"-"`
340}
341
342func (m *ConnectStatus) Reset() { *m = ConnectStatus{} }
343func (m *ConnectStatus) String() string { return proto.CompactTextString(m) }
344func (*ConnectStatus) ProtoMessage() {}
345func (*ConnectStatus) Descriptor() ([]byte, []int) {
Rohan Agrawal00d3a412020-04-22 10:51:39 +0000346 return fileDescriptor_c2e3fd231961e826, []int{4}
Don Newton98fd8812019-09-23 15:15:02 -0400347}
348
349func (m *ConnectStatus) XXX_Unmarshal(b []byte) error {
350 return xxx_messageInfo_ConnectStatus.Unmarshal(m, b)
351}
352func (m *ConnectStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
353 return xxx_messageInfo_ConnectStatus.Marshal(b, m, deterministic)
354}
355func (m *ConnectStatus) XXX_Merge(src proto.Message) {
356 xxx_messageInfo_ConnectStatus.Merge(m, src)
357}
358func (m *ConnectStatus) XXX_Size() int {
359 return xxx_messageInfo_ConnectStatus.Size(m)
360}
361func (m *ConnectStatus) XXX_DiscardUnknown() {
362 xxx_messageInfo_ConnectStatus.DiscardUnknown(m)
363}
364
365var xxx_messageInfo_ConnectStatus proto.InternalMessageInfo
366
367type OperationResp struct {
368 // Return code
369 Code OperationResp_OperationReturnCode `protobuf:"varint,1,opt,name=code,proto3,enum=common.OperationResp_OperationReturnCode" json:"code,omitempty"`
370 // Additional Info
371 AdditionalInfo string `protobuf:"bytes,2,opt,name=additional_info,json=additionalInfo,proto3" json:"additional_info,omitempty"`
372 XXX_NoUnkeyedLiteral struct{} `json:"-"`
373 XXX_unrecognized []byte `json:"-"`
374 XXX_sizecache int32 `json:"-"`
375}
376
377func (m *OperationResp) Reset() { *m = OperationResp{} }
378func (m *OperationResp) String() string { return proto.CompactTextString(m) }
379func (*OperationResp) ProtoMessage() {}
380func (*OperationResp) Descriptor() ([]byte, []int) {
Rohan Agrawal00d3a412020-04-22 10:51:39 +0000381 return fileDescriptor_c2e3fd231961e826, []int{5}
Don Newton98fd8812019-09-23 15:15:02 -0400382}
383
384func (m *OperationResp) XXX_Unmarshal(b []byte) error {
385 return xxx_messageInfo_OperationResp.Unmarshal(m, b)
386}
387func (m *OperationResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
388 return xxx_messageInfo_OperationResp.Marshal(b, m, deterministic)
389}
390func (m *OperationResp) XXX_Merge(src proto.Message) {
391 xxx_messageInfo_OperationResp.Merge(m, src)
392}
393func (m *OperationResp) XXX_Size() int {
394 return xxx_messageInfo_OperationResp.Size(m)
395}
396func (m *OperationResp) XXX_DiscardUnknown() {
397 xxx_messageInfo_OperationResp.DiscardUnknown(m)
398}
399
400var xxx_messageInfo_OperationResp proto.InternalMessageInfo
401
402func (m *OperationResp) GetCode() OperationResp_OperationReturnCode {
403 if m != nil {
404 return m.Code
405 }
406 return OperationResp_OPERATION_SUCCESS
407}
408
409func (m *OperationResp) GetAdditionalInfo() string {
410 if m != nil {
411 return m.AdditionalInfo
412 }
413 return ""
414}
415
416func init() {
417 proto.RegisterEnum("common.TestModeKeys", TestModeKeys_name, TestModeKeys_value)
David K. Bainbridgeaea73cd2020-01-27 10:44:50 -0800418 proto.RegisterEnum("common.AdminState_Types", AdminState_Types_name, AdminState_Types_value)
419 proto.RegisterEnum("common.OperStatus_Types", OperStatus_Types_name, OperStatus_Types_value)
420 proto.RegisterEnum("common.ConnectStatus_Types", ConnectStatus_Types_name, ConnectStatus_Types_value)
Don Newton98fd8812019-09-23 15:15:02 -0400421 proto.RegisterEnum("common.OperationResp_OperationReturnCode", OperationResp_OperationReturnCode_name, OperationResp_OperationReturnCode_value)
422 proto.RegisterType((*ID)(nil), "common.ID")
423 proto.RegisterType((*IDs)(nil), "common.IDs")
Don Newton98fd8812019-09-23 15:15:02 -0400424 proto.RegisterType((*AdminState)(nil), "common.AdminState")
425 proto.RegisterType((*OperStatus)(nil), "common.OperStatus")
426 proto.RegisterType((*ConnectStatus)(nil), "common.ConnectStatus")
427 proto.RegisterType((*OperationResp)(nil), "common.OperationResp")
428}
429
430func init() { proto.RegisterFile("voltha_protos/common.proto", fileDescriptor_c2e3fd231961e826) }
431
432var fileDescriptor_c2e3fd231961e826 = []byte{
Rohan Agrawal00d3a412020-04-22 10:51:39 +0000433 // 480 bytes of a gzipped FileDescriptorProto
434 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x52, 0xd1, 0x4e, 0xdb, 0x30,
435 0x14, 0x6d, 0x52, 0xda, 0x8d, 0x5b, 0x1a, 0x32, 0x33, 0xa4, 0x6e, 0xda, 0x43, 0x95, 0x17, 0xd8,
436 0xa4, 0xb5, 0x12, 0xec, 0x75, 0x0f, 0x21, 0xf6, 0x3a, 0x8b, 0x62, 0x57, 0x4e, 0x52, 0xb4, 0x3d,
437 0xac, 0x0a, 0x8d, 0x29, 0x91, 0x68, 0x1c, 0x25, 0x2e, 0x12, 0x5f, 0xba, 0xdf, 0x99, 0x9c, 0x14,
438 0x75, 0x48, 0x7d, 0x3c, 0xe7, 0x5c, 0xdf, 0xe3, 0x7b, 0xee, 0x85, 0x8f, 0x4f, 0xea, 0x51, 0x3f,
439 0x24, 0x8b, 0xa2, 0x54, 0x5a, 0x55, 0xe3, 0xa5, 0x5a, 0xaf, 0x55, 0x3e, 0xaa, 0x11, 0xea, 0x36,
440 0xc8, 0x7b, 0x0f, 0x36, 0xc5, 0xc8, 0x01, 0x3b, 0x4b, 0x07, 0xd6, 0xd0, 0x3a, 0x3f, 0x14, 0x76,
441 0x96, 0x7a, 0x67, 0xd0, 0xa6, 0xb8, 0x42, 0x43, 0xe8, 0x64, 0x5a, 0xae, 0xab, 0x81, 0x35, 0x6c,
442 0x9f, 0xf7, 0x2e, 0x60, 0xb4, 0x6d, 0x41, 0xb1, 0x68, 0x04, 0x6f, 0x03, 0xe0, 0xa7, 0xeb, 0x2c,
443 0x0f, 0x75, 0xa2, 0xa5, 0xb7, 0x82, 0x4e, 0xf4, 0x5c, 0xc8, 0x0a, 0xf5, 0xe0, 0x4d, 0xcc, 0xae,
444 0x19, 0xbf, 0x65, 0x6e, 0x0b, 0x21, 0x70, 0x66, 0x82, 0xcc, 0x04, 0x9f, 0xd3, 0x90, 0x72, 0x46,
445 0xb0, 0x6b, 0x99, 0x02, 0xc2, 0xfc, 0xab, 0x29, 0xc1, 0xae, 0x8d, 0x8e, 0xe0, 0x2d, 0xa6, 0x61,
446 0x83, 0xda, 0xe8, 0x14, 0xde, 0x61, 0x7e, 0xcb, 0xa6, 0xdc, 0xc7, 0x94, 0x4d, 0x16, 0xf4, 0xc6,
447 0x9f, 0x10, 0xf7, 0xc0, 0xbc, 0xc0, 0x64, 0x4a, 0x22, 0x82, 0xdd, 0x8e, 0xb7, 0x02, 0xe0, 0x85,
448 0x2c, 0x8d, 0xeb, 0xa6, 0xf2, 0x7e, 0xed, 0xb5, 0x75, 0x00, 0x30, 0x0d, 0x03, 0x3e, 0x27, 0xa2,
449 0xb6, 0x74, 0x00, 0xfc, 0x20, 0xa2, 0x73, 0x3f, 0xa2, 0x6c, 0xe2, 0xda, 0xa6, 0x38, 0x22, 0x61,
450 0x0d, 0xda, 0x08, 0xa0, 0x5b, 0x8b, 0xc6, 0x09, 0xa0, 0xfb, 0xc3, 0xa7, 0xd3, 0xda, 0x88, 0x40,
451 0x3f, 0x50, 0x79, 0x2e, 0x97, 0x7a, 0xeb, 0xf5, 0x6d, 0xaf, 0xd7, 0x31, 0xf4, 0x62, 0x26, 0x88,
452 0x1f, 0xfc, 0x34, 0x53, 0xb8, 0x16, 0xea, 0xc3, 0xe1, 0x0e, 0xda, 0xde, 0x5f, 0x0b, 0xfa, 0xe6,
453 0xc3, 0x89, 0xce, 0x54, 0x2e, 0x64, 0x55, 0xa0, 0xef, 0x70, 0xb0, 0x54, 0xa9, 0xac, 0x33, 0x77,
454 0x2e, 0x3e, 0xbf, 0x24, 0xfb, 0xaa, 0xe8, 0x7f, 0xa4, 0x37, 0x65, 0x1e, 0xa8, 0x54, 0x8a, 0xfa,
455 0x19, 0x3a, 0x83, 0xe3, 0x24, 0x4d, 0x33, 0xa3, 0x25, 0x8f, 0x8b, 0x2c, 0xbf, 0x57, 0x03, 0xbb,
456 0xde, 0x9e, 0xb3, 0xa3, 0x69, 0x7e, 0xaf, 0xbc, 0x3f, 0x70, 0xb2, 0xa7, 0x8b, 0x09, 0x99, 0xcf,
457 0x88, 0xf0, 0x23, 0xca, 0xd9, 0x22, 0x8c, 0x83, 0x80, 0x84, 0xa1, 0xdb, 0x7a, 0x4d, 0x9b, 0x10,
458 0x62, 0x61, 0xa6, 0xf9, 0x00, 0xa7, 0x3b, 0x3a, 0x66, 0x61, 0x3c, 0x9b, 0x71, 0x61, 0x36, 0x61,
459 0x7f, 0xf9, 0x04, 0x47, 0x91, 0xac, 0xf4, 0x8d, 0x4a, 0xe5, 0xb5, 0x7c, 0xae, 0xcc, 0x2e, 0x93,
460 0x22, 0x5b, 0x68, 0x59, 0x69, 0xb7, 0x75, 0x45, 0xe0, 0x44, 0x95, 0xab, 0x91, 0x2a, 0x64, 0xbe,
461 0x54, 0x65, 0x3a, 0x6a, 0x0e, 0xf2, 0xf7, 0x68, 0x95, 0xe9, 0x87, 0xcd, 0x9d, 0x19, 0x7a, 0xfc,
462 0xa2, 0x8d, 0x1b, 0xed, 0xeb, 0xf6, 0x58, 0x9f, 0x2e, 0xc7, 0x2b, 0xb5, 0x3d, 0xd9, 0xbb, 0x6e,
463 0x4d, 0x5e, 0xfe, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xd2, 0x21, 0x5c, 0x35, 0xd1, 0x02, 0x00, 0x00,
Don Newton98fd8812019-09-23 15:15:02 -0400464}