VOL-3444 Handling of ONT Activation Failure and generation of an alarm
Change-Id: Ibb931634616722f00b930bafaab84bdd67459192
diff --git a/VERSION b/VERSION
index fe16b34..20db7e0 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.5.4
+2.5.5-dev
diff --git a/go.mod b/go.mod
index 3b6329a..fa18e3a 100644
--- a/go.mod
+++ b/go.mod
@@ -9,7 +9,7 @@
github.com/golang/protobuf v1.3.2
github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4
github.com/opencord/voltha-lib-go/v3 v3.2.8
- github.com/opencord/voltha-protos/v3 v3.4.3
+ github.com/opencord/voltha-protos/v3 v3.4.5
go.etcd.io/etcd v0.0.0-20190930204107-236ac2a90522
google.golang.org/grpc v1.25.1
)
diff --git a/go.sum b/go.sum
index 2b524ef..cc49a60 100644
--- a/go.sum
+++ b/go.sum
@@ -207,8 +207,8 @@
github.com/opencord/voltha-lib-go/v3 v3.2.8 h1:aQGuX6aJmCK3d0JXnYOiMhzDsMwVy+lyw5FOZ/ggakk=
github.com/opencord/voltha-lib-go/v3 v3.2.8/go.mod h1:MIWsmMGxIRLK8dG+CNVcE/cJCzOondyRbwJ1708BYgU=
github.com/opencord/voltha-protos/v3 v3.4.1/go.mod h1:nl1ETp5Iw3avxOaKD8BJlYY5wYI4KeV95aT1pL63nto=
-github.com/opencord/voltha-protos/v3 v3.4.3 h1:N5ZAkm7HZPpIA0R6sxsSfPPqMFwLzh4zVdbcrVsnQsg=
-github.com/opencord/voltha-protos/v3 v3.4.3/go.mod h1:nl1ETp5Iw3avxOaKD8BJlYY5wYI4KeV95aT1pL63nto=
+github.com/opencord/voltha-protos/v3 v3.4.5 h1:8M4RHUgQI+XHMBtTW6FLwinqP9JbZq3kM2UOb9ShgLc=
+github.com/opencord/voltha-protos/v3 v3.4.5/go.mod h1:nl1ETp5Iw3avxOaKD8BJlYY5wYI4KeV95aT1pL63nto=
github.com/opentracing/opentracing-go v1.1.0 h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU=
github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
diff --git a/internal/pkg/core/device_handler.go b/internal/pkg/core/device_handler.go
index 3eb43fe..0dfb781 100644
--- a/internal/pkg/core/device_handler.go
+++ b/internal/pkg/core/device_handler.go
@@ -1274,6 +1274,11 @@
dh.onus.Store(onuKey, NewOnuDevice(onuDevice.Id, onuDevice.Type, onuDevice.SerialNumber, onuInd.GetOnuId(), onuInd.GetIntfId(), onuDevice.ProxyAddress.DeviceId, false))
}
+ if onuInd.OperState == "down" && onuInd.FailReason != oop.OnuIndication_ONU_ACTIVATION_FAIL_REASON_NONE {
+ if err := dh.eventMgr.onuActivationIndication(ctx, onuActivationFailEvent, onuInd, dh.device.Id, time.Now().UnixNano()); err != nil {
+ logger.Warnw(ctx, "onu-activation-indication-reporting-failed", log.Fields{"error": err})
+ }
+ }
if err := dh.updateOnuStates(ctx, onuDevice, onuInd); err != nil {
return olterrors.NewErrCommunication("state-update-failed", errFields, err)
}
diff --git a/internal/pkg/core/openolt_eventmgr.go b/internal/pkg/core/openolt_eventmgr.go
index 584cfe0..df7b5cf 100644
--- a/internal/pkg/core/openolt_eventmgr.go
+++ b/internal/pkg/core/openolt_eventmgr.go
@@ -130,9 +130,6 @@
case *oop.AlarmIndication_DyingGaspInd:
logger.Debugw(ctx, "received-dying-gasp-indication", log.Fields{"alarm-ind": alarmInd})
err = em.onuDyingGaspIndication(ctx, alarmInd.GetDyingGaspInd(), deviceID, raisedTs)
- case *oop.AlarmIndication_OnuActivationFailInd:
- logger.Debugw(ctx, "received-onu-activation-fail-indication ", log.Fields{"alarm-ind": alarmInd})
- err = em.onuActivationFailIndication(ctx, alarmInd.GetOnuActivationFailInd(), deviceID, raisedTs)
case *oop.AlarmIndication_OnuLossOmciInd:
logger.Debugw(ctx, "received-onu-loss-omci-indication ", log.Fields{"alarm-ind": alarmInd})
err = em.onuLossOmciIndication(ctx, alarmInd.GetOnuLossOmciInd(), deviceID, raisedTs)
@@ -423,25 +420,25 @@
return nil
}
-func (em *OpenOltEventMgr) onuActivationFailIndication(ctx context.Context, oaf *oop.OnuActivationFailureIndication, deviceID string, raisedTs int64) error {
+func (em *OpenOltEventMgr) onuActivationIndication(ctx context.Context, eventName string, onuInd *oop.OnuIndication, deviceID string, raisedTs int64) error {
var de voltha.DeviceEvent
context := make(map[string]string)
/* Populating event context */
- context[ContextOnuPonIntfID] = strconv.FormatUint(uint64(oaf.IntfId), base10)
- context[ContextOnuOnuID] = strconv.FormatUint(uint64(oaf.OnuId), base10)
- context[ContextOnuFailureReaseon] = strconv.FormatUint(uint64(oaf.FailReason), base10)
+ context[ContextOnuPonIntfID] = strconv.FormatUint(uint64(onuInd.IntfId), base10)
+ context[ContextOnuOnuID] = strconv.FormatUint(uint64(onuInd.OnuId), base10)
+ context[ContextOnuFailureReaseon] = onuInd.FailReason.String()
- em.populateContextWithSerialDeviceID(context, oaf.IntfId, oaf.OnuId)
+ em.populateContextWithSerialDeviceID(context, onuInd.IntfId, onuInd.OnuId)
/* Populating device event body */
de.Context = context
de.ResourceId = deviceID
- de.DeviceEventName = fmt.Sprintf("%s_%s", onuActivationFailEvent, "RAISE_EVENT")
+ de.DeviceEventName = eventName
/* Send event to KAFKA */
if err := em.eventProxy.SendDeviceEvent(ctx, &de, voltha.EventCategory_EQUIPMENT, voltha.EventSubCategory_PON, raisedTs); err != nil {
return err
}
- logger.Debugw(ctx, "onu-activation-failure-event-sent-to-kafka", log.Fields{"onu-id": oaf.OnuId, "intf-id": oaf.IntfId})
+ logger.Debugw(ctx, "onu-activation-failure-event-sent-to-kafka", log.Fields{"onu-id": onuInd.OnuId, "intf-id": onuInd.IntfId})
return nil
}
diff --git a/vendor/github.com/opencord/voltha-protos/v3/go/openolt/openolt.pb.go b/vendor/github.com/opencord/voltha-protos/v3/go/openolt/openolt.pb.go
index 27af186..5ab9cbe 100644
--- a/vendor/github.com/opencord/voltha-protos/v3/go/openolt/openolt.pb.go
+++ b/vendor/github.com/opencord/voltha-protos/v3/go/openolt/openolt.pb.go
@@ -201,6 +201,44 @@
const ValueType_EMPTY = ValueType_Type(common.ValueType_EMPTY)
const ValueType_DISTANCE = ValueType_Type(common.ValueType_DISTANCE)
+//* activation fail reason.
+type OnuIndication_ActivationFailReason int32
+
+const (
+ OnuIndication_ONU_ACTIVATION_FAIL_REASON_NONE OnuIndication_ActivationFailReason = 0
+ OnuIndication_ONU_ACTIVATION_FAIL_REASON_RANGING OnuIndication_ActivationFailReason = 1
+ OnuIndication_ONU_ACTIVATION_FAIL_REASON_PASSWORD_AUTHENTICATION OnuIndication_ActivationFailReason = 2
+ OnuIndication_ONU_ACTIVATION_FAIL_REASON_LOS OnuIndication_ActivationFailReason = 3
+ OnuIndication_ONU_ACTIVATION_FAIL_ONU_ALARM OnuIndication_ActivationFailReason = 4
+ OnuIndication_ONU_ACTIVATION_FAIL_SWITCH_OVER OnuIndication_ActivationFailReason = 5
+)
+
+var OnuIndication_ActivationFailReason_name = map[int32]string{
+ 0: "ONU_ACTIVATION_FAIL_REASON_NONE",
+ 1: "ONU_ACTIVATION_FAIL_REASON_RANGING",
+ 2: "ONU_ACTIVATION_FAIL_REASON_PASSWORD_AUTHENTICATION",
+ 3: "ONU_ACTIVATION_FAIL_REASON_LOS",
+ 4: "ONU_ACTIVATION_FAIL_ONU_ALARM",
+ 5: "ONU_ACTIVATION_FAIL_SWITCH_OVER",
+}
+
+var OnuIndication_ActivationFailReason_value = map[string]int32{
+ "ONU_ACTIVATION_FAIL_REASON_NONE": 0,
+ "ONU_ACTIVATION_FAIL_REASON_RANGING": 1,
+ "ONU_ACTIVATION_FAIL_REASON_PASSWORD_AUTHENTICATION": 2,
+ "ONU_ACTIVATION_FAIL_REASON_LOS": 3,
+ "ONU_ACTIVATION_FAIL_ONU_ALARM": 4,
+ "ONU_ACTIVATION_FAIL_SWITCH_OVER": 5,
+}
+
+func (x OnuIndication_ActivationFailReason) String() string {
+ return proto.EnumName(OnuIndication_ActivationFailReason_name, int32(x))
+}
+
+func (OnuIndication_ActivationFailReason) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_c072e7aa0dfd74d5, []int{5, 0}
+}
+
type DeviceInfo_DeviceResourceRanges_Pool_PoolType int32
const (
@@ -985,14 +1023,15 @@
}
type OnuIndication struct {
- IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3" json:"intf_id,omitempty"`
- OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
- OperState string `protobuf:"bytes,3,opt,name=oper_state,json=operState,proto3" json:"oper_state,omitempty"`
- AdminState string `protobuf:"bytes,5,opt,name=admin_state,json=adminState,proto3" json:"admin_state,omitempty"`
- SerialNumber *SerialNumber `protobuf:"bytes,4,opt,name=serial_number,json=serialNumber,proto3" json:"serial_number,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
+ IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3" json:"intf_id,omitempty"`
+ OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
+ OperState string `protobuf:"bytes,3,opt,name=oper_state,json=operState,proto3" json:"oper_state,omitempty"`
+ AdminState string `protobuf:"bytes,5,opt,name=admin_state,json=adminState,proto3" json:"admin_state,omitempty"`
+ SerialNumber *SerialNumber `protobuf:"bytes,4,opt,name=serial_number,json=serialNumber,proto3" json:"serial_number,omitempty"`
+ FailReason OnuIndication_ActivationFailReason `protobuf:"varint,6,opt,name=fail_reason,json=failReason,proto3,enum=openolt.OnuIndication_ActivationFailReason" json:"fail_reason,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
func (m *OnuIndication) Reset() { *m = OnuIndication{} }
@@ -1055,6 +1094,13 @@
return nil
}
+func (m *OnuIndication) GetFailReason() OnuIndication_ActivationFailReason {
+ if m != nil {
+ return m.FailReason
+ }
+ return OnuIndication_ONU_ACTIVATION_FAIL_REASON_NONE
+}
+
type IntfOperIndication struct {
Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
IntfId uint32 `protobuf:"fixed32,2,opt,name=intf_id,json=intfId,proto3" json:"intf_id,omitempty"`
@@ -4111,6 +4157,7 @@
var xxx_messageInfo_Empty proto.InternalMessageInfo
func init() {
+ proto.RegisterEnum("openolt.OnuIndication_ActivationFailReason", OnuIndication_ActivationFailReason_name, OnuIndication_ActivationFailReason_value)
proto.RegisterEnum("openolt.DeviceInfo_DeviceResourceRanges_Pool_PoolType", DeviceInfo_DeviceResourceRanges_Pool_PoolType_name, DeviceInfo_DeviceResourceRanges_Pool_PoolType_value)
proto.RegisterEnum("openolt.DeviceInfo_DeviceResourceRanges_Pool_SharingType", DeviceInfo_DeviceResourceRanges_Pool_SharingType_name, DeviceInfo_DeviceResourceRanges_Pool_SharingType_value)
proto.RegisterEnum("openolt.GroupMember_InterfaceType", GroupMember_InterfaceType_name, GroupMember_InterfaceType_value)
@@ -4170,264 +4217,273 @@
func init() { proto.RegisterFile("voltha_protos/openolt.proto", fileDescriptor_c072e7aa0dfd74d5) }
var fileDescriptor_c072e7aa0dfd74d5 = []byte{
- // 4107 bytes of a gzipped FileDescriptorProto
+ // 4245 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5b, 0xcd, 0x73, 0x23, 0x49,
- 0x56, 0x6f, 0xd9, 0xb2, 0x4a, 0x7a, 0xfa, 0xb0, 0x9d, 0x6e, 0xbb, 0xfd, 0xd1, 0xd3, 0xe3, 0xa9,
- 0x6d, 0x66, 0x7a, 0x87, 0x19, 0x7b, 0x3e, 0x36, 0x80, 0x19, 0x16, 0x18, 0x7f, 0xa8, 0xdb, 0x62,
- 0xda, 0x2d, 0x53, 0x76, 0x77, 0xc3, 0x6c, 0x4c, 0xd4, 0x96, 0xab, 0x52, 0x52, 0xae, 0x4b, 0x95,
- 0x35, 0x55, 0x29, 0x7f, 0x70, 0xdc, 0x60, 0x39, 0x71, 0x62, 0x03, 0x22, 0xe0, 0x46, 0x70, 0xe5,
- 0xc2, 0x8d, 0x88, 0x3d, 0x72, 0x25, 0xb8, 0xf0, 0x0f, 0x70, 0xe0, 0xc6, 0x9d, 0x13, 0x41, 0x10,
- 0xf9, 0x32, 0xeb, 0x4b, 0x92, 0xdd, 0xed, 0xc1, 0xc4, 0x5e, 0x1c, 0xca, 0xf7, 0x7e, 0xef, 0xf7,
- 0xf2, 0x65, 0xbe, 0xcc, 0x7a, 0x59, 0x59, 0x86, 0x8d, 0x73, 0xee, 0x8b, 0x81, 0x63, 0x87, 0x11,
- 0x17, 0x3c, 0xde, 0xe6, 0x21, 0x0d, 0xb8, 0x2f, 0xb6, 0xb0, 0x49, 0x0c, 0xdd, 0x5c, 0x7f, 0xd8,
- 0xe7, 0xbc, 0xef, 0xd3, 0x6d, 0x27, 0x64, 0xdb, 0x4e, 0x10, 0x70, 0xe1, 0x08, 0xc6, 0x83, 0x58,
- 0xc1, 0xd6, 0x37, 0x8b, 0x1c, 0x82, 0xba, 0x03, 0xf9, 0xbb, 0xc7, 0x7c, 0xaa, 0x11, 0xeb, 0x45,
- 0x84, 0xcb, 0x87, 0x43, 0x1e, 0x68, 0xdd, 0xa3, 0xa2, 0x8e, 0x5e, 0x0a, 0xdb, 0xe5, 0x41, 0x8f,
- 0xf5, 0x95, 0xde, 0xfc, 0x97, 0x32, 0x40, 0x27, 0xf0, 0x98, 0x8b, 0x3e, 0xc9, 0xa7, 0x60, 0x70,
- 0x5f, 0xd8, 0x2c, 0xf0, 0x56, 0x4b, 0x9b, 0xa5, 0x27, 0xf5, 0xcf, 0x56, 0xb6, 0x92, 0x4e, 0x77,
- 0x7d, 0x91, 0x01, 0x0f, 0xee, 0x59, 0x15, 0x8e, 0x02, 0xf2, 0x23, 0xa8, 0xb2, 0x40, 0xf4, 0xd0,
- 0x66, 0x06, 0x6d, 0x1e, 0xa4, 0x36, 0x9d, 0x40, 0xf4, 0x0a, 0x46, 0x06, 0x53, 0x12, 0xb2, 0x03,
- 0x4d, 0xb4, 0xe2, 0x21, 0x8d, 0xd0, 0x74, 0x16, 0x4d, 0x37, 0x0a, 0xa6, 0xdd, 0x90, 0x46, 0x05,
- 0xf3, 0x3a, 0xcb, 0xa4, 0xe4, 0xf7, 0xa1, 0xc1, 0x83, 0x91, 0xed, 0xb1, 0xd8, 0x45, 0x86, 0x32,
- 0x32, 0xac, 0x67, 0x1d, 0x0e, 0x46, 0xfb, 0x2c, 0x76, 0x0b, 0x04, 0xc0, 0x53, 0x21, 0xc6, 0x1a,
- 0x8c, 0xd0, 0x74, 0x6e, 0x3c, 0xd6, 0x60, 0x34, 0x16, 0x2b, 0x0a, 0x64, 0xac, 0x7c, 0xe8, 0x32,
- 0xb4, 0xa9, 0x8c, 0xc5, 0xda, 0x1d, 0xba, 0xac, 0x18, 0x2b, 0x57, 0x12, 0xf2, 0x23, 0x30, 0xc2,
- 0x33, 0x35, 0xa8, 0x06, 0x1a, 0xad, 0xa5, 0x46, 0x47, 0x8e, 0x7b, 0x46, 0xc7, 0xc6, 0x35, 0x3c,
- 0xc3, 0x71, 0xfd, 0x1d, 0x80, 0x90, 0x47, 0xc2, 0x8e, 0x85, 0x23, 0xe2, 0xd5, 0xea, 0x98, 0xb7,
- 0x23, 0x1e, 0x89, 0x63, 0x99, 0x28, 0xb1, 0x60, 0x6e, 0x7c, 0x70, 0xcf, 0xaa, 0x85, 0x5a, 0x12,
- 0x4b, 0xcb, 0x9e, 0xcf, 0x2f, 0xb4, 0x65, 0x6d, 0xcc, 0xf2, 0xa9, 0xcf, 0x2f, 0x8a, 0x96, 0x3d,
- 0x2d, 0x89, 0xc9, 0x6f, 0x43, 0xcd, 0xf1, 0x9d, 0x68, 0x88, 0x7d, 0x05, 0x34, 0x5c, 0x4d, 0x0d,
- 0x77, 0xa4, 0xa6, 0xd0, 0xd5, 0xaa, 0xa3, 0x45, 0xbb, 0x15, 0x28, 0x7b, 0x8e, 0x70, 0xcc, 0xff,
- 0x6c, 0xc2, 0xfc, 0x18, 0x4e, 0x8e, 0xb3, 0xcf, 0xe3, 0xa9, 0x39, 0xf5, 0x9c, 0xc7, 0xc5, 0xd8,
- 0x7d, 0x14, 0x90, 0x7d, 0x68, 0x79, 0x57, 0x2c, 0xe8, 0xdb, 0x7d, 0x27, 0x0e, 0x73, 0x99, 0xf5,
- 0x30, 0xb5, 0xdc, 0x97, 0xea, 0x67, 0x4e, 0x1c, 0x16, 0xec, 0x1b, 0x5e, 0x4e, 0x2c, 0x73, 0x4c,
- 0x4e, 0x70, 0x16, 0xd1, 0x78, 0x8e, 0x75, 0x83, 0xd1, 0x64, 0x50, 0x75, 0x9e, 0x49, 0xc9, 0x6b,
- 0xb8, 0x2f, 0x29, 0x62, 0xe1, 0x44, 0x62, 0x14, 0xda, 0x3d, 0x87, 0xf9, 0xb9, 0x5c, 0x7b, 0x9c,
- 0x67, 0x3a, 0x56, 0x98, 0xa7, 0x0e, 0xf3, 0x47, 0x11, 0x2d, 0x50, 0x2e, 0xf2, 0x82, 0x5a, 0x12,
- 0x7f, 0x03, 0x2b, 0x48, 0xcc, 0xfa, 0x81, 0xe3, 0xdb, 0x1e, 0xed, 0x47, 0x8e, 0x47, 0x73, 0xb9,
- 0xf8, 0x83, 0x02, 0x35, 0xa2, 0xf6, 0x15, 0xa8, 0xc0, 0xbc, 0xc4, 0x27, 0xb5, 0xe4, 0x27, 0xf0,
- 0x00, 0x17, 0x46, 0xc4, 0x7a, 0xc2, 0xe6, 0x3d, 0xfb, 0x82, 0x05, 0x1e, 0xbf, 0xc8, 0x25, 0x6d,
- 0x81, 0x7c, 0x5f, 0xc2, 0xba, 0xbd, 0xd7, 0x08, 0x9a, 0x20, 0x1f, 0xd7, 0x92, 0x13, 0x90, 0xd1,
- 0xd8, 0x3e, 0x8f, 0x63, 0x3b, 0x5d, 0x0b, 0x2a, 0xad, 0x3f, 0xc8, 0xd3, 0x3e, 0xe7, 0x71, 0xdc,
- 0xed, 0xc9, 0x45, 0xb1, 0x37, 0x70, 0x82, 0x80, 0xfa, 0x05, 0xea, 0x16, 0xd7, 0x08, 0xbd, 0x44,
- 0x92, 0x71, 0xc6, 0x50, 0xe2, 0x6c, 0x9c, 0xab, 0x53, 0xc6, 0x59, 0x61, 0xae, 0x1d, 0xe7, 0x4c,
- 0x2d, 0x89, 0xbb, 0x6a, 0x93, 0x10, 0xec, 0x42, 0xf5, 0x54, 0xad, 0x86, 0xdf, 0xcc, 0x13, 0x9e,
- 0x44, 0x4e, 0x10, 0x0f, 0x59, 0x1c, 0x33, 0x1e, 0x74, 0x02, 0x41, 0xa3, 0x1e, 0x8d, 0x68, 0xe0,
- 0xd2, 0xd7, 0x4e, 0x14, 0xb0, 0xa0, 0xaf, 0x77, 0x8d, 0x13, 0x76, 0x81, 0x3d, 0xfd, 0xa9, 0x1a,
- 0x5c, 0xc7, 0x15, 0xec, 0x1c, 0xfd, 0x66, 0x9d, 0x85, 0xc9, 0x51, 0xd8, 0x49, 0x61, 0xd3, 0xfa,
- 0x2b, 0x63, 0x2e, 0x22, 0x94, 0x87, 0x55, 0xe9, 0x21, 0x8c, 0xb8, 0x4b, 0xe3, 0x58, 0xae, 0x02,
- 0x1a, 0x45, 0x5c, 0xed, 0x92, 0x75, 0x74, 0xf1, 0x1b, 0x79, 0x17, 0x47, 0x29, 0xae, 0x2d, 0x61,
- 0x05, 0x07, 0xcb, 0x7c, 0x9a, 0x9e, 0x50, 0x58, 0xcb, 0xe6, 0xb0, 0x67, 0xc7, 0x57, 0x81, 0x9b,
- 0x45, 0xd1, 0x40, 0x17, 0x1f, 0x4e, 0xce, 0xe5, 0xd7, 0xf4, 0xea, 0xf8, 0x2a, 0x70, 0xaf, 0x0b,
- 0x44, 0x81, 0x12, 0x84, 0x74, 0xf3, 0x12, 0x96, 0x71, 0x83, 0x15, 0x23, 0x3b, 0xe4, 0x81, 0xda,
- 0x8e, 0xd0, 0x45, 0x13, 0x5d, 0xbc, 0x57, 0xd8, 0x6e, 0xc5, 0xe8, 0x88, 0x07, 0xb8, 0x0b, 0x4d,
- 0x4c, 0x69, 0x51, 0x47, 0x7c, 0x78, 0x88, 0xe9, 0x4d, 0xc7, 0xe6, 0x60, 0x14, 0xa9, 0x05, 0xd4,
- 0x42, 0xf6, 0x1f, 0x16, 0x72, 0x3c, 0x87, 0x9d, 0xd6, 0x7f, 0x39, 0x1c, 0xd3, 0x31, 0xe4, 0xb5,
- 0x0a, 0x22, 0xa2, 0x43, 0x2e, 0xa8, 0xed, 0xd1, 0x1e, 0x75, 0xd5, 0x56, 0x3e, 0x8f, 0x6e, 0xcc,
- 0xbc, 0x1b, 0x0b, 0x41, 0xfb, 0x88, 0x29, 0xf0, 0x13, 0x3e, 0xa1, 0x24, 0xb1, 0x0a, 0x03, 0x27,
- 0xa1, 0x4f, 0x87, 0xb6, 0x47, 0x7d, 0x16, 0x50, 0x15, 0x8e, 0xe4, 0x5f, 0x40, 0xfe, 0x4f, 0x27,
- 0xe7, 0xe1, 0x59, 0xfb, 0x50, 0x2f, 0xa9, 0xfd, 0xcc, 0xa4, 0xe0, 0x6e, 0x55, 0x4f, 0xc7, 0x33,
- 0x3a, 0x2c, 0x42, 0xc8, 0x39, 0x6c, 0x62, 0x6e, 0x0d, 0xae, 0x62, 0xe6, 0x3a, 0xbe, 0x4d, 0xbf,
- 0x1b, 0xb1, 0x70, 0x48, 0x03, 0x91, 0xcb, 0xb1, 0x45, 0x74, 0xfc, 0x51, 0x21, 0xc7, 0x34, 0xbe,
- 0x9d, 0xc0, 0x27, 0x53, 0x4d, 0x06, 0x73, 0x2d, 0x8c, 0xfc, 0x04, 0x96, 0xf2, 0x19, 0xe7, 0xb8,
- 0x67, 0xe8, 0x8a, 0x4c, 0xae, 0x46, 0x15, 0xe3, 0x8e, 0x7b, 0x16, 0xf0, 0x0b, 0x9f, 0x7a, 0x7d,
- 0x2a, 0x79, 0x0a, 0x9e, 0xe6, 0x79, 0x0e, 0x25, 0xc9, 0x39, 0x6c, 0xa8, 0x42, 0xa0, 0xd7, 0xb3,
- 0x23, 0xea, 0xb8, 0x03, 0x9b, 0x5e, 0xba, 0x94, 0x7a, 0xd4, 0x43, 0x27, 0x4b, 0xe8, 0x64, 0xbb,
- 0x58, 0x17, 0xf4, 0x70, 0x91, 0x0b, 0xe6, 0xf8, 0x96, 0xb4, 0x68, 0x6b, 0x83, 0x82, 0xa3, 0x07,
- 0x5c, 0x21, 0xc7, 0x11, 0xe9, 0xd3, 0x6e, 0x0b, 0x9a, 0x85, 0xaa, 0x88, 0xbc, 0x03, 0x80, 0x05,
- 0x8d, 0x4c, 0x75, 0x8a, 0x4f, 0xbb, 0x9a, 0x55, 0x93, 0x12, 0x99, 0xbc, 0xd4, 0x3c, 0x80, 0x56,
- 0xb1, 0x22, 0x22, 0x0f, 0xc0, 0x50, 0xc5, 0x93, 0x7a, 0x36, 0x1a, 0x56, 0x05, 0x0b, 0x24, 0x6f,
- 0x8c, 0x69, 0x66, 0x9c, 0x69, 0x00, 0x8b, 0x13, 0xe5, 0xcd, 0xf5, 0x64, 0x5f, 0x42, 0x33, 0xa6,
- 0x11, 0x73, 0x7c, 0x3b, 0x18, 0x0d, 0x4f, 0x69, 0xa4, 0x9f, 0xa6, 0xcb, 0xe9, 0x90, 0x1c, 0xa3,
- 0xf6, 0x05, 0x2a, 0xad, 0x46, 0x9c, 0x6b, 0x99, 0xbf, 0x2a, 0x41, 0xb3, 0x50, 0x0e, 0x5d, 0xef,
- 0x66, 0x19, 0x2a, 0xb8, 0xde, 0xd5, 0xd3, 0xda, 0xb0, 0xe6, 0xe4, 0xda, 0x1d, 0x0f, 0x65, 0x76,
- 0x2c, 0x14, 0xf2, 0x2e, 0xd4, 0x1d, 0x6f, 0xc8, 0x02, 0xad, 0x9f, 0x43, 0x3d, 0xa0, 0x48, 0x01,
- 0x26, 0x7a, 0x5f, 0x7e, 0xfb, 0xde, 0xff, 0x14, 0xc8, 0x64, 0x21, 0x49, 0x08, 0x94, 0xc5, 0x55,
- 0x98, 0x4c, 0x10, 0xfe, 0xce, 0x47, 0x35, 0x73, 0xc3, 0x4c, 0x8c, 0x77, 0xdf, 0xb4, 0xa0, 0x55,
- 0xac, 0xfc, 0x6e, 0x3d, 0x3e, 0x0b, 0x30, 0x1b, 0x9e, 0x09, 0x64, 0x6e, 0x58, 0xf2, 0xa7, 0xf9,
- 0xcf, 0x25, 0x58, 0x18, 0xaf, 0x0c, 0xc9, 0x06, 0xd4, 0x90, 0x16, 0x7b, 0xae, 0x46, 0x09, 0x0b,
- 0xef, 0x93, 0xb1, 0xde, 0x4f, 0xe4, 0x51, 0x9f, 0x0e, 0xb1, 0x90, 0x4c, 0xfd, 0xd6, 0xb4, 0xa4,
- 0xe3, 0x49, 0x3b, 0x2c, 0x15, 0x99, 0x2a, 0x8e, 0x0c, 0xab, 0x22, 0x9b, 0x4a, 0x81, 0x46, 0x01,
- 0xc7, 0x9a, 0xc1, 0xb0, 0x2a, 0xb2, 0xf9, 0x82, 0x93, 0x15, 0xa8, 0xb8, 0x9c, 0x9f, 0x31, 0x8a,
- 0x0f, 0xfd, 0x8a, 0xa5, 0x5b, 0x49, 0x14, 0xe5, 0x2c, 0x8a, 0xc7, 0x50, 0x53, 0x8f, 0x53, 0xc7,
- 0xbd, 0xbe, 0x83, 0xe6, 0x8f, 0xa1, 0x76, 0x40, 0x9d, 0x48, 0x9c, 0x52, 0x47, 0x90, 0x6d, 0x58,
- 0x1a, 0x24, 0x0d, 0x55, 0x0c, 0x88, 0x51, 0x44, 0xb5, 0x05, 0x49, 0x55, 0xc7, 0x89, 0xc6, 0xfc,
- 0x87, 0x12, 0xcc, 0x76, 0x83, 0xd1, 0xad, 0xc7, 0x7c, 0x22, 0xa7, 0x66, 0xdf, 0x3a, 0xa7, 0x30,
- 0x52, 0xa6, 0xb2, 0xd0, 0xb0, 0xe4, 0x4f, 0xf2, 0x01, 0xcc, 0xf3, 0xa1, 0xeb, 0xda, 0x34, 0x70,
- 0xa3, 0xab, 0x50, 0xce, 0x16, 0x4e, 0x50, 0xd5, 0x6a, 0x49, 0x71, 0x3b, 0x95, 0x9a, 0xff, 0x58,
- 0x02, 0x82, 0x7b, 0x5c, 0x5f, 0x6e, 0x93, 0xfb, 0x2c, 0x16, 0x4e, 0x70, 0xc3, 0xe0, 0x5c, 0xd7,
- 0xfb, 0x2f, 0x60, 0xcd, 0x57, 0x14, 0xb6, 0x3e, 0x01, 0x21, 0x8f, 0xfd, 0xa7, 0x34, 0xe2, 0x7a,
- 0x1e, 0x57, 0x34, 0x40, 0xed, 0x12, 0xa8, 0xfe, 0x86, 0x46, 0x9c, 0x7c, 0x02, 0xf7, 0xa7, 0x99,
- 0xea, 0x68, 0xc8, 0xa4, 0x95, 0xf9, 0x35, 0x18, 0x32, 0xc1, 0x0f, 0xe3, 0xfe, 0x1d, 0x64, 0xf6,
- 0x2f, 0x4a, 0x50, 0x93, 0xcf, 0x13, 0x4c, 0xee, 0x5b, 0xf3, 0xe5, 0x92, 0xb2, 0x5c, 0x48, 0xca,
- 0x62, 0x96, 0xcf, 0x8d, 0x67, 0xf9, 0x64, 0x3f, 0xbe, 0x80, 0xc6, 0xcb, 0xd0, 0x67, 0xc1, 0xd9,
- 0x9b, 0x7a, 0xa2, 0x4d, 0x67, 0x32, 0xd3, 0xbf, 0xac, 0x01, 0xec, 0xd3, 0x73, 0xe6, 0xd2, 0x4e,
- 0xd0, 0xc3, 0xf5, 0x70, 0x4e, 0x03, 0x8f, 0x47, 0x7a, 0x37, 0xd1, 0x2d, 0x72, 0x1f, 0xe6, 0x86,
- 0xdc, 0xa3, 0xbe, 0xde, 0xbb, 0x55, 0x83, 0xfc, 0x10, 0x16, 0x06, 0x4e, 0xe4, 0x5d, 0x38, 0x11,
- 0xb5, 0xcf, 0x69, 0x24, 0x4b, 0x4e, 0xbd, 0xa5, 0xcc, 0x27, 0xf2, 0x57, 0x4a, 0x2c, 0xa1, 0x3d,
- 0x16, 0x0d, 0x0b, 0xd0, 0xb2, 0x82, 0x26, 0xf2, 0x04, 0xba, 0x01, 0x35, 0x0f, 0x7b, 0x24, 0xfb,
- 0xbf, 0xa0, 0xb6, 0x06, 0x25, 0xe8, 0x78, 0x72, 0xc6, 0xb5, 0xb2, 0x98, 0xf1, 0x8b, 0x88, 0x23,
- 0x4a, 0x97, 0x4f, 0x77, 0x49, 0x27, 0xeb, 0x35, 0x39, 0x78, 0x31, 0x96, 0x83, 0x86, 0x55, 0x0d,
- 0x79, 0x20, 0x8f, 0x9c, 0x31, 0x79, 0x04, 0x20, 0xa8, 0x3b, 0x08, 0xb8, 0xcf, 0xfb, 0x57, 0xc9,
- 0x6e, 0x9d, 0x49, 0xc8, 0xa6, 0x2a, 0xb8, 0x99, 0xa7, 0x0e, 0x4d, 0x7a, 0xf7, 0x00, 0x9c, 0x40,
- 0x3c, 0x03, 0x91, 0x87, 0x00, 0x1a, 0x41, 0xf5, 0xd1, 0xc1, 0xb0, 0xaa, 0xa8, 0x6f, 0x07, 0x1e,
- 0x79, 0x0c, 0x2d, 0xc7, 0xf7, 0xb9, 0x9b, 0x31, 0x54, 0x11, 0xd1, 0x40, 0x69, 0xc2, 0xb1, 0x09,
- 0x8d, 0x14, 0x45, 0x75, 0x59, 0x6f, 0x58, 0xa0, 0x31, 0x92, 0xe7, 0x09, 0x2c, 0x64, 0x29, 0xa1,
- 0x99, 0x00, 0x51, 0xad, 0x34, 0x31, 0x14, 0xd7, 0x63, 0x68, 0xe5, 0x90, 0x54, 0x57, 0xd9, 0x86,
- 0xd5, 0x48, 0x71, 0x92, 0xcf, 0x84, 0xa6, 0xde, 0x29, 0x35, 0x59, 0x13, 0x41, 0x75, 0xb5, 0x5f,
- 0x2a, 0xa6, 0x47, 0x50, 0x4f, 0x30, 0x54, 0x17, 0xa2, 0x86, 0x3a, 0x5e, 0x2b, 0x8e, 0xaf, 0xa0,
- 0x12, 0x39, 0x41, 0x9f, 0xc6, 0xab, 0xf3, 0x9b, 0xb3, 0x4f, 0xea, 0x9f, 0x3d, 0xc9, 0x8e, 0xb3,
- 0x69, 0x42, 0xe9, 0x9f, 0x16, 0x8d, 0xf9, 0x28, 0x72, 0xa9, 0x85, 0x78, 0x4b, 0xdb, 0xad, 0xff,
- 0x55, 0x19, 0xee, 0x4f, 0x03, 0x90, 0xb5, 0xe4, 0x2d, 0x8c, 0x17, 0xaf, 0x96, 0x36, 0x67, 0x9f,
- 0x18, 0xfa, 0x55, 0x8b, 0x37, 0x3e, 0x63, 0x33, 0x13, 0x33, 0xb6, 0x07, 0x73, 0x21, 0xe7, 0x7e,
- 0xbc, 0x3a, 0x8b, 0x9d, 0xfa, 0xf8, 0x6d, 0x3b, 0xb5, 0x75, 0xc4, 0xb9, 0x6f, 0x29, 0xdb, 0xf5,
- 0xff, 0x9e, 0x81, 0xb2, 0x6c, 0x93, 0x3f, 0xcc, 0x3d, 0x5b, 0x5b, 0x9f, 0xfd, 0xd6, 0xad, 0xc8,
- 0xf0, 0x8f, 0x7c, 0x9e, 0xe9, 0x67, 0xf2, 0x31, 0x18, 0xf1, 0xc0, 0x89, 0x58, 0xd0, 0xc7, 0x6e,
- 0xb7, 0x3e, 0xfb, 0xe2, 0x76, 0x74, 0xc7, 0xca, 0x18, 0x19, 0x13, 0x26, 0xb9, 0x30, 0xd5, 0x04,
- 0xaa, 0x8d, 0x52, 0x35, 0xe4, 0x3a, 0xa7, 0xfa, 0x5c, 0x6f, 0x58, 0xf2, 0xa7, 0xb9, 0x03, 0xd5,
- 0xa4, 0x3b, 0x04, 0xa0, 0xd2, 0x7d, 0xf1, 0xd2, 0xee, 0xec, 0x2f, 0xdc, 0x23, 0x0d, 0xa8, 0xee,
- 0x3c, 0x7f, 0xde, 0xdd, 0x93, 0xad, 0x12, 0x69, 0x01, 0x3c, 0x6b, 0x1f, 0x1e, 0x75, 0xad, 0x13,
- 0xd9, 0x9e, 0x21, 0x75, 0x30, 0x9e, 0x3e, 0xef, 0xbe, 0x96, 0x8d, 0x59, 0x73, 0x00, 0xf5, 0x5c,
- 0x17, 0xc8, 0x0a, 0x90, 0xfd, 0xf6, 0x7e, 0x67, 0x6f, 0xe7, 0xa4, 0xbd, 0x6f, 0x1f, 0xb5, 0x2d,
- 0xbb, 0xf3, 0xe2, 0xe4, 0xe9, 0xc2, 0x3d, 0xf2, 0x2e, 0x6c, 0x1c, 0x1f, 0xec, 0x58, 0xed, 0x7d,
- 0x7b, 0xf7, 0x4f, 0xec, 0x9d, 0xe7, 0xcf, 0x51, 0x8e, 0x3f, 0x4e, 0xda, 0x7b, 0x07, 0x0b, 0x25,
- 0xb2, 0x09, 0x0f, 0xa7, 0x00, 0x8e, 0x77, 0x0e, 0xdb, 0x0a, 0x31, 0x63, 0xfe, 0xd9, 0x2c, 0xc0,
- 0x9e, 0xef, 0xc4, 0x31, 0xeb, 0x31, 0x1a, 0xe1, 0xfe, 0x69, 0x8b, 0x30, 0xdd, 0xcd, 0xe6, 0xf8,
- 0x49, 0xc8, 0x3c, 0xb2, 0x04, 0x73, 0xdc, 0x3e, 0x4f, 0x77, 0xd5, 0x32, 0x7f, 0xc5, 0x70, 0xaf,
- 0x65, 0x0a, 0xab, 0x07, 0x84, 0x25, 0x58, 0x86, 0x58, 0x35, 0x24, 0x65, 0x26, 0xb1, 0x0f, 0xc0,
- 0xe0, 0x76, 0x78, 0xca, 0x44, 0xac, 0x37, 0xd9, 0x0a, 0x3f, 0x92, 0x2d, 0xdc, 0x3f, 0xb5, 0x42,
- 0x97, 0x0b, 0x4c, 0x29, 0xd6, 0xa0, 0x4a, 0xc5, 0x40, 0x15, 0x2d, 0x6a, 0xa9, 0x1b, 0x54, 0x0c,
- 0x92, 0x9a, 0xc5, 0x8b, 0x85, 0x3d, 0x74, 0x5c, 0x5c, 0xe2, 0x0d, 0xab, 0xe2, 0xc5, 0xe2, 0xd0,
- 0x71, 0xa5, 0x22, 0x8e, 0x5c, 0x54, 0xd4, 0x94, 0x22, 0x8e, 0x5c, 0xa9, 0x90, 0x49, 0x1e, 0xaa,
- 0x57, 0x99, 0x7a, 0x2d, 0x1b, 0x2c, 0x3c, 0xc2, 0x97, 0xa9, 0xcb, 0x20, 0xad, 0x6d, 0x16, 0xea,
- 0xc5, 0x3b, 0xe7, 0xc5, 0xa2, 0x13, 0x4a, 0xb1, 0xa4, 0x62, 0xa1, 0xde, 0xc7, 0xe6, 0xe2, 0xc8,
- 0xed, 0x84, 0x92, 0x48, 0x8a, 0xe5, 0xea, 0xd6, 0xeb, 0x58, 0x7a, 0x94, 0x1b, 0x9c, 0x54, 0x49,
- 0x22, 0x54, 0xa9, 0x05, 0x2c, 0x7b, 0x89, 0xaa, 0x4d, 0x68, 0x84, 0x67, 0xc2, 0x16, 0x4e, 0x5f,
- 0xc5, 0x33, 0xaf, 0x96, 0x52, 0x78, 0x26, 0x4e, 0x1c, 0x9c, 0x61, 0xf3, 0x17, 0xb3, 0x50, 0x93,
- 0x07, 0x7a, 0x1e, 0xec, 0x0d, 0x71, 0xcb, 0x70, 0x3c, 0xcf, 0xe6, 0x23, 0x41, 0x23, 0x69, 0x85,
- 0x93, 0x51, 0xb5, 0xea, 0x8e, 0xe7, 0x75, 0xa5, 0xec, 0xc4, 0xe9, 0xcb, 0x6d, 0x4a, 0x1e, 0x2d,
- 0xcf, 0x69, 0x0e, 0x36, 0xa3, 0x6a, 0x07, 0x25, 0x4f, 0x91, 0x9b, 0xd0, 0x10, 0x91, 0x13, 0xda,
- 0x82, 0xdb, 0x03, 0x1e, 0xab, 0xf4, 0xad, 0x5a, 0x20, 0x65, 0x27, 0xfc, 0x80, 0xc7, 0x82, 0x7c,
- 0x04, 0x24, 0xa2, 0x43, 0x27, 0x3a, 0xd3, 0x5c, 0x6a, 0x3e, 0xca, 0x88, 0x5b, 0x50, 0x1a, 0x64,
- 0x53, 0x33, 0x93, 0xa1, 0x59, 0x10, 0xa4, 0xe8, 0xb9, 0x3c, 0xba, 0x23, 0x15, 0x0a, 0xad, 0x63,
- 0x51, 0x50, 0xd9, 0xc9, 0x4a, 0x1a, 0x0b, 0xa2, 0x8a, 0xb1, 0x64, 0x30, 0x23, 0x1f, 0x4b, 0x8a,
- 0xdc, 0x82, 0x25, 0x11, 0x39, 0x41, 0xec, 0x3b, 0x22, 0x0f, 0xae, 0x22, 0x78, 0x31, 0x55, 0x4d,
- 0xc7, 0x67, 0x03, 0x55, 0x1b, 0xc3, 0x27, 0x63, 0x65, 0xfe, 0x53, 0x09, 0x2a, 0x6a, 0x1e, 0xc8,
- 0x63, 0x98, 0x75, 0x87, 0xc9, 0x9b, 0x47, 0x92, 0xbd, 0xcc, 0x4c, 0x66, 0xc9, 0x92, 0xea, 0xe9,
- 0x2b, 0x23, 0x97, 0xed, 0xb3, 0x85, 0x6c, 0xcf, 0x96, 0x57, 0x79, 0x6c, 0x79, 0xa9, 0x25, 0x33,
- 0x57, 0x5c, 0x32, 0xd3, 0x57, 0x46, 0xb6, 0xee, 0x8c, 0xdc, 0xba, 0x33, 0xff, 0x7d, 0x16, 0xca,
- 0x4f, 0x7d, 0x7e, 0x81, 0x0f, 0x42, 0xd7, 0xa5, 0x71, 0x6c, 0xe7, 0x2b, 0x93, 0x79, 0xab, 0xa1,
- 0xa4, 0x9d, 0x69, 0x95, 0xd2, 0x7c, 0x52, 0x29, 0x2d, 0x43, 0x65, 0x14, 0x30, 0x29, 0xae, 0x2b,
- 0xf1, 0x28, 0x60, 0x37, 0x95, 0xfb, 0x1b, 0x80, 0x8f, 0x29, 0x95, 0xd7, 0xaa, 0xca, 0xa8, 0x4a,
- 0x01, 0x2e, 0xd4, 0x35, 0xa8, 0x26, 0x0f, 0x5b, 0x5c, 0x76, 0xf3, 0x96, 0xa1, 0x1f, 0xb4, 0xe4,
- 0x7d, 0x98, 0x0f, 0xa8, 0xb8, 0xe0, 0x98, 0x45, 0xaa, 0x97, 0x73, 0x88, 0x68, 0x6a, 0x71, 0x67,
- 0xda, 0x31, 0xa4, 0x82, 0x90, 0x5c, 0x81, 0xf6, 0x39, 0x80, 0x9b, 0xee, 0x5e, 0xfa, 0x6d, 0xe2,
- 0x52, 0x3a, 0x57, 0xd9, 0xc6, 0x66, 0xe5, 0x60, 0xe4, 0x03, 0xa8, 0x38, 0x38, 0x8b, 0xfa, 0x2d,
- 0xe1, 0xfc, 0xd8, 0xe4, 0x5a, 0x5a, 0x4d, 0xd6, 0xa1, 0x1a, 0x46, 0x8c, 0x47, 0x4c, 0x5c, 0x61,
- 0xca, 0xcc, 0x5b, 0x69, 0x3b, 0x77, 0x9c, 0x69, 0x14, 0x8e, 0x33, 0xb9, 0x52, 0xb3, 0x59, 0x28,
- 0x35, 0xd7, 0xa0, 0xda, 0x8f, 0xf8, 0x28, 0x94, 0x71, 0xe8, 0xfd, 0x01, 0xdb, 0x6a, 0x30, 0xf2,
- 0xb7, 0x33, 0x12, 0x31, 0x8f, 0x88, 0xa6, 0x14, 0x1f, 0x29, 0x69, 0xc7, 0x33, 0x4f, 0xa0, 0x31,
- 0x5e, 0x6f, 0xa9, 0xa2, 0x31, 0x99, 0xe4, 0x86, 0x55, 0x55, 0x82, 0x8e, 0x27, 0xcf, 0x16, 0x5a,
- 0x19, 0x87, 0xd4, 0x65, 0x3d, 0xe6, 0xea, 0x62, 0xb4, 0xa5, 0xc4, 0xc7, 0x5a, 0x6a, 0xfe, 0x6b,
- 0x19, 0x5a, 0xc5, 0x5b, 0x81, 0xeb, 0xab, 0xda, 0x35, 0xa8, 0x46, 0x97, 0xf6, 0xe9, 0x95, 0xa0,
- 0x31, 0xb2, 0x55, 0x2c, 0x23, 0xba, 0xdc, 0x95, 0x4d, 0x39, 0x53, 0xd1, 0xa5, 0x1d, 0x62, 0x59,
- 0xac, 0xf2, 0xbe, 0x62, 0xd5, 0xa2, 0x4b, 0x55, 0x27, 0xc7, 0xb8, 0xc6, 0x2f, 0xed, 0x91, 0xeb,
- 0xc8, 0x3d, 0x52, 0x83, 0xca, 0x08, 0x6a, 0x45, 0x97, 0x2f, 0xa5, 0xb8, 0x88, 0x1c, 0x16, 0x90,
- 0x73, 0x09, 0xf2, 0x70, 0x12, 0x79, 0x5a, 0x40, 0x56, 0x12, 0xe4, 0xee, 0x24, 0x52, 0xbd, 0xaa,
- 0x4a, 0x90, 0x46, 0x82, 0xc4, 0x97, 0x4d, 0x09, 0x72, 0x0d, 0xaa, 0x22, 0x89, 0xb0, 0xaa, 0x22,
- 0x14, 0x59, 0x84, 0x22, 0x8b, 0xb0, 0xa6, 0x22, 0x14, 0xf9, 0x08, 0xc5, 0x78, 0x84, 0xa0, 0x7c,
- 0x88, 0x89, 0x08, 0xc5, 0x78, 0x84, 0xf5, 0x04, 0x79, 0x38, 0x89, 0x2c, 0x46, 0xd8, 0x48, 0x90,
- 0xbb, 0x93, 0xc8, 0x62, 0x84, 0xcd, 0x04, 0x59, 0x88, 0xd0, 0x84, 0x66, 0x74, 0x69, 0xbb, 0x91,
- 0xab, 0xd0, 0x31, 0x66, 0x63, 0xc5, 0xaa, 0x47, 0x97, 0x7b, 0x91, 0x8b, 0x48, 0x0c, 0xf5, 0x94,
- 0x85, 0x09, 0x60, 0x5e, 0x85, 0x7a, 0xca, 0x42, 0xad, 0x7e, 0x08, 0x35, 0xc1, 0x86, 0x34, 0x16,
- 0xce, 0x30, 0xc4, 0x73, 0x83, 0x61, 0x65, 0x02, 0xf3, 0x57, 0x25, 0x68, 0x15, 0x2f, 0x8b, 0xf2,
- 0xfb, 0x47, 0xa9, 0xb0, 0x7f, 0x7c, 0xff, 0x84, 0xfa, 0xfe, 0x13, 0x75, 0x73, 0xef, 0xbf, 0x82,
- 0x66, 0xe1, 0x76, 0xe9, 0xfa, 0xc5, 0xb0, 0x02, 0x95, 0x58, 0x38, 0x62, 0x14, 0xeb, 0xda, 0x58,
- 0xb7, 0xcc, 0x6f, 0x61, 0x69, 0xca, 0x2d, 0xd3, 0xad, 0x0f, 0xad, 0x19, 0xfd, 0x6c, 0x81, 0xfe,
- 0xef, 0x67, 0xf0, 0x5d, 0xc0, 0xf8, 0x6d, 0xd9, 0xf7, 0x78, 0xbb, 0xe6, 0xf3, 0xd8, 0x2e, 0xb8,
- 0xa8, 0xf9, 0x3c, 0x3e, 0x46, 0x81, 0x52, 0x9f, 0x26, 0xea, 0x72, 0xa2, 0x3e, 0xd5, 0xea, 0x27,
- 0xb0, 0xe0, 0xf3, 0xd0, 0xb5, 0x87, 0x2c, 0x4e, 0x39, 0xd4, 0x99, 0xae, 0x25, 0xe5, 0x87, 0x2c,
- 0x4e, 0x88, 0x3e, 0x85, 0x65, 0x8d, 0xd4, 0x09, 0x97, 0xc0, 0x2b, 0xea, 0x1c, 0xa9, 0xe0, 0x2a,
- 0xf1, 0xb4, 0xc9, 0xbb, 0x50, 0xf7, 0x79, 0x8f, 0x25, 0x40, 0x43, 0x95, 0x4b, 0x52, 0xa4, 0x01,
- 0xef, 0x41, 0xc3, 0xe7, 0xce, 0x30, 0x45, 0x54, 0x11, 0x51, 0x47, 0x99, 0x82, 0x98, 0x14, 0x36,
- 0x6e, 0xb8, 0x5b, 0xbb, 0xb3, 0xc9, 0xf8, 0x9b, 0x12, 0xac, 0x5f, 0x7f, 0xd1, 0x76, 0x57, 0x6e,
- 0xc8, 0xe7, 0xb0, 0xc2, 0x02, 0x79, 0x98, 0xa7, 0xf6, 0x29, 0x4b, 0xde, 0xb9, 0x47, 0x8e, 0x48,
- 0xde, 0xbf, 0x2c, 0x69, 0xed, 0x2e, 0x53, 0xaf, 0xce, 0x2d, 0x47, 0x50, 0xf3, 0x97, 0xaa, 0x6f,
- 0xd7, 0xdc, 0xd3, 0xdd, 0x59, 0xdf, 0xee, 0xc3, 0x1c, 0xde, 0x18, 0x26, 0x35, 0x0d, 0x36, 0x24,
- 0x7b, 0x40, 0x2f, 0x6c, 0xfa, 0x5d, 0x52, 0xd5, 0x54, 0x02, 0x7a, 0xd1, 0xfe, 0xce, 0x33, 0x07,
- 0xf0, 0xe8, 0xe6, 0x5b, 0xbe, 0x3b, 0x9b, 0x9b, 0xbf, 0x2d, 0xa9, 0x1c, 0xb8, 0xe6, 0xde, 0xef,
- 0xd7, 0x3b, 0x39, 0x3f, 0x2f, 0x81, 0xf9, 0xe6, 0x3b, 0xc4, 0xff, 0xdf, 0x49, 0x32, 0xbf, 0xc3,
- 0xb9, 0xb8, 0xe1, 0xae, 0xf1, 0xd6, 0xfe, 0xdf, 0x85, 0x3a, 0x5e, 0x08, 0x46, 0xd4, 0x89, 0xf5,
- 0x2b, 0x2a, 0xc3, 0x02, 0x29, 0xb2, 0x50, 0x62, 0x9e, 0xc1, 0x7b, 0x6f, 0xbc, 0x18, 0xbc, 0xb3,
- 0x0c, 0x38, 0x01, 0x62, 0x79, 0x6c, 0xec, 0xce, 0x49, 0x96, 0x5b, 0x91, 0xc7, 0xf4, 0x3c, 0xb9,
- 0x7c, 0x14, 0x08, 0xf4, 0x52, 0xb1, 0x9a, 0x91, 0x06, 0xef, 0x49, 0xe1, 0xb5, 0xfb, 0xfb, 0x5f,
- 0x97, 0x60, 0xf5, 0xba, 0x9b, 0xc7, 0x5b, 0x77, 0x7d, 0x07, 0x9a, 0x59, 0x67, 0xa6, 0x7d, 0x6b,
- 0x30, 0x19, 0xc0, 0xc1, 0x3d, 0xab, 0x1e, 0x65, 0xd2, 0x5d, 0x03, 0x5f, 0x4c, 0x88, 0xd8, 0x7c,
- 0x01, 0x0f, 0x6f, 0xba, 0xd7, 0xbd, 0x6d, 0xdf, 0xcc, 0x9f, 0xc1, 0xe6, 0x9b, 0xee, 0x40, 0xef,
- 0x6c, 0xaa, 0x7e, 0x06, 0x6b, 0xd7, 0x5e, 0x84, 0x7e, 0x9f, 0x67, 0x5b, 0x3a, 0xa8, 0x59, 0xe9,
- 0xa0, 0x87, 0x2c, 0x36, 0xff, 0xae, 0x04, 0x4f, 0xde, 0xf6, 0x56, 0xf4, 0xce, 0x56, 0xe0, 0xc7,
- 0x40, 0xf2, 0x37, 0xb5, 0xba, 0x6f, 0x6a, 0x39, 0x2e, 0xe6, 0x34, 0xba, 0x8f, 0x43, 0xf8, 0xc1,
- 0x5b, 0xdc, 0x9f, 0xde, 0xd9, 0xf0, 0xfb, 0xb8, 0x1b, 0xbd, 0xe1, 0x0e, 0xf5, 0xce, 0xbc, 0xfd,
- 0x45, 0x09, 0xde, 0x7f, 0xbb, 0xdb, 0xd4, 0x3b, 0x1b, 0xfe, 0x75, 0xa8, 0x8e, 0xdd, 0x59, 0xa4,
- 0x6d, 0xf3, 0xbf, 0x4a, 0x50, 0x7f, 0x26, 0xcf, 0x62, 0x87, 0x14, 0xcf, 0x55, 0xef, 0x41, 0x83,
- 0x25, 0x17, 0x50, 0x89, 0xe3, 0x26, 0x7e, 0x43, 0xa6, 0x64, 0x1d, 0x8f, 0x74, 0xa0, 0x95, 0x41,
- 0xf0, 0xf0, 0xab, 0x5e, 0x34, 0x66, 0xd7, 0xfa, 0x39, 0xc2, 0xad, 0xf4, 0x3a, 0x0b, 0xdf, 0x28,
- 0x36, 0x59, 0xbe, 0x49, 0x1e, 0x41, 0xbd, 0x4f, 0x87, 0x76, 0x72, 0xc6, 0x9d, 0x45, 0x67, 0xf2,
- 0x8c, 0x7b, 0xa4, 0xce, 0xb8, 0xf9, 0x53, 0x68, 0x19, 0x95, 0x69, 0xdb, 0xfc, 0x3d, 0x68, 0x16,
- 0xb8, 0x89, 0x01, 0xb3, 0x47, 0xdd, 0x17, 0x0b, 0xf7, 0xc8, 0x02, 0x34, 0xda, 0x47, 0xdd, 0x17,
- 0xf6, 0xa7, 0xcf, 0xec, 0xa3, 0x9d, 0x93, 0x83, 0x85, 0x12, 0x59, 0x84, 0xa6, 0x92, 0x7c, 0xa2,
- 0x45, 0x33, 0xe6, 0x9f, 0xcf, 0xc0, 0x1c, 0xf6, 0xb3, 0x70, 0x3a, 0x55, 0xe1, 0xa6, 0xa7, 0xd3,
- 0x1f, 0x83, 0xe1, 0xf2, 0xe1, 0xd0, 0xd1, 0x1f, 0x53, 0x4d, 0xc4, 0x98, 0x8f, 0x34, 0xde, 0x53,
- 0x48, 0x2b, 0x31, 0x21, 0x5b, 0x60, 0x0c, 0x95, 0x4a, 0xbf, 0x26, 0xbe, 0x3f, 0x6d, 0x84, 0xac,
- 0x04, 0x94, 0x3b, 0x9c, 0x97, 0x6f, 0x3c, 0x9c, 0x9b, 0x5f, 0xc3, 0xd2, 0x14, 0xc7, 0x64, 0x1e,
- 0xea, 0x3b, 0xfb, 0xfb, 0xf6, 0x61, 0xfb, 0x70, 0xb7, 0x6d, 0x1d, 0x2f, 0xdc, 0x23, 0x04, 0x5a,
- 0x56, 0xfb, 0xb0, 0xfb, 0xaa, 0x9d, 0xca, 0x4a, 0x12, 0x74, 0xdc, 0x3e, 0x49, 0x05, 0x33, 0xe6,
- 0x37, 0x00, 0xaf, 0x1c, 0x7f, 0x44, 0x8f, 0x9c, 0xc8, 0x19, 0x92, 0x47, 0x30, 0xcb, 0x83, 0x91,
- 0x7e, 0xf5, 0xd3, 0x28, 0x7c, 0xa8, 0x21, 0x15, 0xe4, 0x23, 0x98, 0x3b, 0x97, 0x68, 0x3d, 0x1e,
- 0x2b, 0x5b, 0xfa, 0xcb, 0x49, 0xa4, 0x90, 0xd3, 0xb0, 0x85, 0xf3, 0xac, 0x40, 0xa6, 0x01, 0x73,
- 0xed, 0x61, 0x28, 0xae, 0x3e, 0xfb, 0x9f, 0x45, 0x30, 0xba, 0x8a, 0x8b, 0xec, 0x03, 0xec, 0xb3,
- 0xd8, 0x39, 0xf5, 0x69, 0xd7, 0x17, 0xa4, 0x95, 0xfa, 0x40, 0xe4, 0xfa, 0x58, 0xdb, 0x5c, 0xf9,
- 0xf9, 0xbf, 0xfd, 0xc7, 0x2f, 0x67, 0x16, 0xcc, 0xfa, 0xf6, 0xf9, 0xa7, 0xdb, 0xda, 0xee, 0xcb,
- 0xd2, 0x87, 0xe4, 0x29, 0xd4, 0x2d, 0x4a, 0x83, 0xb7, 0xa5, 0x79, 0x80, 0x34, 0x8b, 0x66, 0x43,
- 0xd2, 0x24, 0x86, 0x92, 0xa7, 0x0d, 0x75, 0x5d, 0x04, 0xd0, 0x6e, 0x30, 0x22, 0x85, 0x90, 0x27,
- 0x58, 0x56, 0x91, 0x85, 0x98, 0x4d, 0xc9, 0xd2, 0x56, 0xce, 0x83, 0x91, 0xa4, 0x39, 0x80, 0x66,
- 0xfa, 0xb0, 0x78, 0x0b, 0xa2, 0x35, 0x24, 0x5a, 0x32, 0x5b, 0xb9, 0xa8, 0x34, 0xd3, 0x1e, 0xd4,
- 0xf6, 0xa9, 0x4f, 0x6f, 0xdd, 0x9d, 0xd4, 0x48, 0x92, 0x74, 0x00, 0xf4, 0x05, 0x64, 0x77, 0x24,
- 0xc8, 0x42, 0xe1, 0x83, 0xcb, 0xc3, 0xb8, 0x7f, 0x73, 0x7f, 0x32, 0x4b, 0x49, 0xd5, 0x85, 0x46,
- 0x7a, 0xfb, 0x28, 0xc9, 0x48, 0xe1, 0x23, 0x17, 0x14, 0x4f, 0xd0, 0x6d, 0x20, 0xdd, 0xb2, 0xb9,
- 0x80, 0x74, 0x39, 0x6b, 0x49, 0xf8, 0xc7, 0x30, 0x9f, 0xbf, 0x47, 0x94, 0x9c, 0xd9, 0x1d, 0x72,
- 0x5e, 0x33, 0x41, 0xfb, 0x08, 0x69, 0x57, 0xcd, 0x25, 0x49, 0x3b, 0xc6, 0x21, 0x99, 0xbf, 0x02,
- 0x43, 0x1e, 0xbe, 0x77, 0x3c, 0x8f, 0x34, 0x0b, 0xdf, 0x6e, 0xde, 0x9c, 0x55, 0xda, 0x46, 0x65,
- 0x15, 0xc8, 0x96, 0x85, 0xaf, 0x5e, 0xdf, 0x44, 0x52, 0x18, 0xb4, 0xcc, 0x4c, 0xf2, 0x1c, 0x43,
- 0x2b, 0xbd, 0xa1, 0xdf, 0x1b, 0x50, 0xf7, 0x6c, 0x22, 0x41, 0xb3, 0x61, 0x4c, 0x81, 0xe6, 0x3b,
- 0x48, 0xf8, 0xc0, 0x24, 0x92, 0xb0, 0x68, 0x2f, 0x49, 0x0f, 0xa1, 0xae, 0x72, 0xee, 0x88, 0x07,
- 0x9d, 0x5e, 0x6e, 0x22, 0xd2, 0x7d, 0x70, 0xa2, 0x8b, 0xeb, 0xc8, 0x78, 0xdf, 0x9c, 0xcf, 0x12,
- 0x16, 0x8d, 0xf5, 0xc4, 0xea, 0xcc, 0x7b, 0x7b, 0xbe, 0xc2, 0xc4, 0xe6, 0xad, 0x25, 0xa1, 0x05,
- 0xcd, 0x67, 0x54, 0xe4, 0xee, 0x79, 0xc7, 0x63, 0x5e, 0x9a, 0x72, 0x15, 0x65, 0x3e, 0x44, 0xca,
- 0x15, 0x73, 0x51, 0x52, 0x16, 0xec, 0x25, 0xe7, 0x1f, 0x40, 0xc5, 0xa2, 0xa7, 0x9c, 0xbf, 0x79,
- 0x85, 0x2f, 0x23, 0xcf, 0xbc, 0x09, 0x6a, 0x85, 0x4b, 0x1b, 0x49, 0xf0, 0x12, 0x16, 0xf7, 0xb8,
- 0xef, 0x53, 0x37, 0xff, 0x92, 0xef, 0x4d, 0x5c, 0x9b, 0xc8, 0xb5, 0x6e, 0x2e, 0x4b, 0xae, 0x09,
- 0x73, 0x49, 0x1b, 0xc1, 0x83, 0xbd, 0x88, 0x3a, 0x82, 0x9e, 0x44, 0x4e, 0xaf, 0xc7, 0xdc, 0x63,
- 0x77, 0x40, 0xbd, 0x91, 0x2f, 0xb7, 0xf1, 0x77, 0xb7, 0x0a, 0xdf, 0x9b, 0x4f, 0x00, 0x26, 0xbc,
- 0xbd, 0x8f, 0xde, 0x36, 0xcd, 0x0d, 0xf4, 0x36, 0x9d, 0x55, 0xfb, 0x54, 0x19, 0x76, 0xd7, 0x3e,
- 0xaf, 0x61, 0x95, 0x3e, 0x7b, 0xb0, 0x54, 0xe8, 0xd1, 0x1f, 0x8d, 0xe8, 0x88, 0xc6, 0x64, 0x63,
- 0xaa, 0x3f, 0xa5, 0x9c, 0xf0, 0x65, 0xa2, 0xaf, 0x87, 0xe6, 0x83, 0x89, 0xf8, 0x94, 0x81, 0xf6,
- 0x53, 0xe8, 0xc5, 0xff, 0xd9, 0xcf, 0x14, 0x36, 0xe9, 0xe7, 0x77, 0x61, 0x41, 0x2d, 0x83, 0x5c,
- 0x9d, 0x75, 0x7d, 0x9a, 0x66, 0x20, 0xf3, 0xde, 0x27, 0x25, 0xf2, 0x2d, 0x2c, 0x1f, 0xd1, 0xa8,
- 0xc7, 0xa3, 0x21, 0x3e, 0x7e, 0xbb, 0x21, 0x8d, 0xc6, 0x19, 0x50, 0x31, 0xd1, 0xb3, 0xc7, 0xd8,
- 0xb3, 0x47, 0xe6, 0x9a, 0xec, 0xd9, 0x54, 0x0a, 0xb5, 0x69, 0xd7, 0xd5, 0x26, 0xae, 0xea, 0x92,
- 0x37, 0x91, 0x16, 0xd6, 0x76, 0xce, 0x50, 0x52, 0x9d, 0x40, 0xfd, 0x19, 0x15, 0xed, 0x4b, 0x81,
- 0xcf, 0x65, 0x92, 0x45, 0x94, 0x3d, 0xea, 0xd7, 0xef, 0x27, 0xcf, 0x6e, 0x8b, 0x8a, 0x51, 0x14,
- 0xa0, 0x26, 0x2e, 0xb2, 0xe6, 0x38, 0x24, 0xeb, 0xb7, 0xf8, 0x05, 0x9d, 0x3a, 0xfc, 0xe1, 0x3b,
- 0xb8, 0x63, 0x2a, 0x88, 0x2c, 0x01, 0xf0, 0x9f, 0x23, 0x8a, 0xaa, 0x9b, 0xd7, 0xd4, 0x04, 0x8d,
- 0xa4, 0x0f, 0x61, 0xed, 0x19, 0x15, 0xcf, 0xa7, 0x7f, 0x84, 0x53, 0x7c, 0x12, 0x6e, 0x14, 0x3f,
- 0x7f, 0x2c, 0x7c, 0x1a, 0x64, 0x3e, 0x41, 0x4f, 0xa6, 0xf9, 0x8e, 0x0e, 0x61, 0x3a, 0xa3, 0xf4,
- 0x38, 0x80, 0xe5, 0xa9, 0xfa, 0xdb, 0x78, 0x2b, 0xcc, 0xed, 0x54, 0xb6, 0x2f, 0x4b, 0x1f, 0xee,
- 0x7e, 0x0b, 0x1b, 0x3c, 0xea, 0x23, 0x8f, 0xcb, 0x23, 0x6f, 0x4b, 0xfd, 0x8b, 0x49, 0xc2, 0xbb,
- 0xdb, 0x7c, 0x85, 0x6d, 0x59, 0x22, 0x75, 0x9f, 0x9f, 0x7c, 0xb3, 0xdd, 0x67, 0x62, 0x30, 0x3a,
- 0x95, 0x13, 0xb4, 0x9d, 0x98, 0x6c, 0x2b, 0x93, 0x8f, 0xf5, 0x7f, 0xa5, 0x9c, 0x7f, 0xbe, 0xdd,
- 0xe7, 0xc9, 0x7f, 0xc7, 0x1c, 0x95, 0x8e, 0x66, 0x4e, 0x2b, 0xa8, 0xf9, 0xfc, 0x7f, 0x03, 0x00,
- 0x00, 0xff, 0xff, 0x50, 0xb1, 0xd5, 0x36, 0x41, 0x33, 0x00, 0x00,
+ 0x56, 0x6f, 0xd9, 0xb2, 0x24, 0x3f, 0x7d, 0x58, 0x4e, 0xb7, 0xbb, 0xfd, 0xd1, 0xd3, 0xed, 0xa9,
+ 0x69, 0x66, 0x7a, 0x87, 0x19, 0x7b, 0xba, 0x67, 0x63, 0x61, 0x86, 0x05, 0x46, 0xb6, 0xd4, 0xb6,
+ 0x18, 0xdb, 0x12, 0x25, 0x75, 0x37, 0xcc, 0xc6, 0x44, 0x6d, 0xb9, 0x2a, 0x25, 0xd7, 0xba, 0x54,
+ 0x59, 0x53, 0x95, 0xf2, 0x07, 0xc7, 0x0d, 0x16, 0x2e, 0x9c, 0x98, 0x80, 0x08, 0xb8, 0x11, 0x5c,
+ 0xb9, 0x70, 0x23, 0x82, 0x23, 0x57, 0x82, 0x0b, 0xff, 0x00, 0x07, 0x6e, 0xdc, 0x39, 0x11, 0x04,
+ 0x91, 0x2f, 0xb3, 0xbe, 0x24, 0xd9, 0xdd, 0x1e, 0x4c, 0x70, 0x71, 0x28, 0xdf, 0xfb, 0xbd, 0xdf,
+ 0xcb, 0x97, 0xf9, 0x32, 0xeb, 0x65, 0x65, 0x19, 0x36, 0xcf, 0x99, 0xcb, 0x4f, 0x4d, 0xc3, 0x0f,
+ 0x18, 0x67, 0xe1, 0x0e, 0xf3, 0xa9, 0xc7, 0x5c, 0xbe, 0x8d, 0x4d, 0x52, 0x54, 0xcd, 0x8d, 0x47,
+ 0x43, 0xc6, 0x86, 0x2e, 0xdd, 0x31, 0x7d, 0x67, 0xc7, 0xf4, 0x3c, 0xc6, 0x4d, 0xee, 0x30, 0x2f,
+ 0x94, 0xb0, 0x8d, 0xad, 0x2c, 0x07, 0xa7, 0xd6, 0xa9, 0xf8, 0x3d, 0x70, 0x5c, 0xaa, 0x10, 0x1b,
+ 0x59, 0x84, 0xc5, 0x46, 0x23, 0xe6, 0x29, 0xdd, 0xe3, 0xac, 0x8e, 0x5e, 0x72, 0xc3, 0x62, 0xde,
+ 0xc0, 0x19, 0x4a, 0xbd, 0xf6, 0xcf, 0x79, 0x80, 0xb6, 0x67, 0x3b, 0x16, 0xfa, 0x24, 0xcf, 0xa1,
+ 0xc8, 0x5c, 0x6e, 0x38, 0x9e, 0xbd, 0x96, 0xdb, 0xca, 0x3d, 0x2b, 0xbf, 0x78, 0xb0, 0x1d, 0x75,
+ 0xba, 0xe3, 0xf2, 0x04, 0x78, 0x70, 0x4f, 0x2f, 0x30, 0x14, 0x90, 0x1f, 0x43, 0xc9, 0xf1, 0xf8,
+ 0x00, 0x6d, 0xe6, 0xd0, 0xe6, 0x61, 0x6c, 0xd3, 0xf6, 0xf8, 0x20, 0x63, 0x54, 0x74, 0xa4, 0x84,
+ 0x34, 0xa0, 0x8a, 0x56, 0xcc, 0xa7, 0x01, 0x9a, 0xce, 0xa3, 0xe9, 0x66, 0xc6, 0xb4, 0xe3, 0xd3,
+ 0x20, 0x63, 0x5e, 0x76, 0x12, 0x29, 0xf9, 0x1d, 0xa8, 0x30, 0x6f, 0x6c, 0xd8, 0x4e, 0x68, 0x21,
+ 0x43, 0x1e, 0x19, 0x36, 0x92, 0x0e, 0x7b, 0xe3, 0xa6, 0x13, 0x5a, 0x19, 0x02, 0x60, 0xb1, 0x10,
+ 0x63, 0xf5, 0xc6, 0x68, 0xba, 0x30, 0x19, 0xab, 0x37, 0x9e, 0x88, 0x15, 0x05, 0x22, 0x56, 0x36,
+ 0xb2, 0x1c, 0xb4, 0x29, 0x4c, 0xc4, 0xda, 0x19, 0x59, 0x4e, 0x36, 0x56, 0x26, 0x25, 0xe4, 0xc7,
+ 0x50, 0xf4, 0xcf, 0xe4, 0xa0, 0x16, 0xd1, 0x68, 0x3d, 0x36, 0xea, 0x9a, 0xd6, 0x19, 0x9d, 0x18,
+ 0x57, 0xff, 0x0c, 0xc7, 0xf5, 0x37, 0x01, 0x7c, 0x16, 0x70, 0x23, 0xe4, 0x26, 0x0f, 0xd7, 0x4a,
+ 0x13, 0xde, 0xba, 0x2c, 0xe0, 0x3d, 0x91, 0x28, 0x21, 0x77, 0xac, 0xf0, 0xe0, 0x9e, 0xbe, 0xe8,
+ 0x2b, 0x49, 0x28, 0x2c, 0x07, 0x2e, 0xbb, 0x50, 0x96, 0x8b, 0x13, 0x96, 0x2f, 0x5d, 0x76, 0x91,
+ 0xb5, 0x1c, 0x28, 0x49, 0x48, 0x7e, 0x03, 0x16, 0x4d, 0xd7, 0x0c, 0x46, 0xd8, 0x57, 0x40, 0xc3,
+ 0xb5, 0xd8, 0xb0, 0x21, 0x34, 0x99, 0xae, 0x96, 0x4c, 0x25, 0xda, 0x2d, 0x40, 0xde, 0x36, 0xb9,
+ 0xa9, 0xfd, 0x47, 0x15, 0x96, 0x26, 0x70, 0x62, 0x9c, 0x5d, 0x16, 0xce, 0xcc, 0xa9, 0x43, 0x16,
+ 0x66, 0x63, 0x77, 0x51, 0x40, 0x9a, 0x50, 0xb3, 0xaf, 0x1c, 0x6f, 0x68, 0x0c, 0xcd, 0xd0, 0x4f,
+ 0x65, 0xd6, 0xa3, 0xd8, 0xb2, 0x29, 0xd4, 0xfb, 0x66, 0xe8, 0x67, 0xec, 0x2b, 0x76, 0x4a, 0x2c,
+ 0x72, 0x4c, 0x4c, 0x70, 0x12, 0xd1, 0x64, 0x8e, 0x75, 0xbc, 0xf1, 0x74, 0x50, 0x65, 0x96, 0x48,
+ 0xc9, 0x1b, 0xb8, 0x2f, 0x28, 0x42, 0x6e, 0x06, 0x7c, 0xec, 0x1b, 0x03, 0xd3, 0x71, 0x53, 0xb9,
+ 0xf6, 0x34, 0xcd, 0xd4, 0x93, 0x98, 0x97, 0xa6, 0xe3, 0x8e, 0x03, 0x9a, 0xa1, 0x5c, 0x66, 0x19,
+ 0xb5, 0x20, 0xfe, 0x06, 0x1e, 0x20, 0xb1, 0x33, 0xf4, 0x4c, 0xd7, 0xb0, 0xe9, 0x30, 0x30, 0x6d,
+ 0x9a, 0xca, 0xc5, 0x0f, 0x32, 0xd4, 0x88, 0x6a, 0x4a, 0x50, 0x86, 0x79, 0x85, 0x4d, 0x6b, 0xc9,
+ 0xcf, 0xe0, 0x21, 0x2e, 0x8c, 0xc0, 0x19, 0x70, 0x83, 0x0d, 0x8c, 0x0b, 0xc7, 0xb3, 0xd9, 0x45,
+ 0x2a, 0x69, 0x33, 0xe4, 0x4d, 0x01, 0xeb, 0x0c, 0xde, 0x20, 0x68, 0x8a, 0x7c, 0x52, 0x4b, 0xfa,
+ 0x20, 0xa2, 0x31, 0x5c, 0x16, 0x86, 0x46, 0xbc, 0x16, 0x64, 0x5a, 0x7f, 0x94, 0xa6, 0x3d, 0x64,
+ 0x61, 0xd8, 0x19, 0x88, 0x45, 0xb1, 0x77, 0x6a, 0x7a, 0x1e, 0x75, 0x33, 0xd4, 0x35, 0xa6, 0x10,
+ 0x6a, 0x89, 0x44, 0xe3, 0x8c, 0xa1, 0x84, 0xc9, 0x38, 0x97, 0x66, 0x8c, 0xb3, 0xc4, 0x5c, 0x3b,
+ 0xce, 0x89, 0x5a, 0x10, 0x77, 0xe4, 0x26, 0xc1, 0x9d, 0x0b, 0xd9, 0x53, 0xb9, 0x1a, 0x7e, 0x3d,
+ 0x4d, 0xd8, 0x0f, 0x4c, 0x2f, 0x1c, 0x39, 0x61, 0xe8, 0x30, 0xaf, 0xed, 0x71, 0x1a, 0x0c, 0x68,
+ 0x40, 0x3d, 0x8b, 0xbe, 0x31, 0x03, 0xcf, 0xf1, 0x86, 0x6a, 0xd7, 0xe8, 0x3b, 0x17, 0xd8, 0xd3,
+ 0x9f, 0xcb, 0xc1, 0x35, 0x2d, 0xee, 0x9c, 0xa3, 0xdf, 0xa4, 0xb3, 0x30, 0x3d, 0x0a, 0x8d, 0x18,
+ 0x36, 0xab, 0xbf, 0x22, 0xe6, 0x2c, 0x42, 0x7a, 0x58, 0x13, 0x1e, 0xfc, 0x80, 0x59, 0x34, 0x0c,
+ 0xc5, 0x2a, 0xa0, 0x41, 0xc0, 0xe4, 0x2e, 0x59, 0x46, 0x17, 0xbf, 0x96, 0x76, 0xd1, 0x8d, 0x71,
+ 0x2d, 0x01, 0xcb, 0x38, 0x58, 0x65, 0xb3, 0xf4, 0x84, 0xc2, 0x7a, 0x32, 0x87, 0x03, 0x23, 0xbc,
+ 0xf2, 0xac, 0x24, 0x8a, 0x0a, 0xba, 0xf8, 0x78, 0x7a, 0x2e, 0xbf, 0xa6, 0x57, 0xbd, 0x2b, 0xcf,
+ 0xba, 0x2e, 0x10, 0x09, 0x8a, 0x10, 0xc2, 0xcd, 0x2b, 0x58, 0xc5, 0x0d, 0x96, 0x8f, 0x0d, 0x9f,
+ 0x79, 0x72, 0x3b, 0x42, 0x17, 0x55, 0x74, 0xf1, 0x7e, 0x66, 0xbb, 0xe5, 0xe3, 0x2e, 0xf3, 0x70,
+ 0x17, 0x9a, 0x9a, 0xd2, 0xac, 0x8e, 0xb8, 0xf0, 0x08, 0xd3, 0x9b, 0x4e, 0xcc, 0xc1, 0x38, 0x90,
+ 0x0b, 0xa8, 0x86, 0xec, 0x3f, 0xca, 0xe4, 0x78, 0x0a, 0x3b, 0xab, 0xff, 0x62, 0x38, 0x66, 0x63,
+ 0xc8, 0x1b, 0x19, 0x44, 0x40, 0x47, 0x8c, 0x53, 0xc3, 0xa6, 0x03, 0x6a, 0xc9, 0xad, 0x7c, 0x09,
+ 0xdd, 0x68, 0x69, 0x37, 0x3a, 0x82, 0x9a, 0x88, 0xc9, 0xf0, 0x13, 0x36, 0xa5, 0x24, 0xa1, 0x0c,
+ 0x03, 0x27, 0x61, 0x48, 0x47, 0x86, 0x4d, 0x5d, 0xc7, 0xa3, 0x32, 0x1c, 0xc1, 0x5f, 0x47, 0xfe,
+ 0xe7, 0xd3, 0xf3, 0xb0, 0xdf, 0x3a, 0x52, 0x4b, 0xaa, 0x99, 0x98, 0x64, 0xdc, 0xad, 0xa9, 0xe9,
+ 0xd8, 0xa7, 0xa3, 0x2c, 0x84, 0x9c, 0xc3, 0x16, 0xe6, 0xd6, 0xe9, 0x55, 0xe8, 0x58, 0xa6, 0x6b,
+ 0xd0, 0xef, 0xc6, 0x8e, 0x3f, 0xa2, 0x1e, 0x4f, 0xe5, 0xd8, 0x32, 0x3a, 0xfe, 0x24, 0x93, 0x63,
+ 0x0a, 0xdf, 0x8a, 0xe0, 0xd3, 0xa9, 0x26, 0x82, 0xb9, 0x16, 0x46, 0x7e, 0x06, 0x2b, 0xe9, 0x8c,
+ 0x33, 0xad, 0x33, 0x74, 0x45, 0xa6, 0x57, 0xa3, 0x8c, 0xb1, 0x61, 0x9d, 0x79, 0xec, 0xc2, 0xa5,
+ 0xf6, 0x90, 0x0a, 0x9e, 0x8c, 0xa7, 0x25, 0x96, 0x42, 0x09, 0x72, 0x06, 0x9b, 0xb2, 0x10, 0x18,
+ 0x0c, 0x8c, 0x80, 0x9a, 0xd6, 0xa9, 0x41, 0x2f, 0x2d, 0x4a, 0x6d, 0x6a, 0xa3, 0x93, 0x15, 0x74,
+ 0xb2, 0x93, 0xad, 0x0b, 0x06, 0xb8, 0xc8, 0xb9, 0x63, 0xba, 0xba, 0xb0, 0x68, 0x29, 0x83, 0x8c,
+ 0xa3, 0x87, 0x4c, 0x22, 0x27, 0x11, 0xf1, 0xd3, 0x6e, 0x1b, 0xaa, 0x99, 0xaa, 0x88, 0xbc, 0x07,
+ 0x80, 0x05, 0x8d, 0x48, 0x75, 0x8a, 0x4f, 0xbb, 0x45, 0x7d, 0x51, 0x48, 0x44, 0xf2, 0x52, 0xed,
+ 0x00, 0x6a, 0xd9, 0x8a, 0x88, 0x3c, 0x84, 0xa2, 0x2c, 0x9e, 0xe4, 0xb3, 0xb1, 0xa8, 0x17, 0xb0,
+ 0x40, 0xb2, 0x27, 0x98, 0xe6, 0x26, 0x99, 0x4e, 0x61, 0x79, 0xaa, 0xbc, 0xb9, 0x9e, 0xec, 0x4b,
+ 0xa8, 0x86, 0x34, 0x70, 0x4c, 0xd7, 0xf0, 0xc6, 0xa3, 0x13, 0x1a, 0xa8, 0xa7, 0xe9, 0x6a, 0x3c,
+ 0x24, 0x3d, 0xd4, 0x1e, 0xa3, 0x52, 0xaf, 0x84, 0xa9, 0x96, 0xf6, 0x7d, 0x1e, 0xaa, 0x99, 0x72,
+ 0xe8, 0x7a, 0x37, 0xab, 0x50, 0xc0, 0xf5, 0x2e, 0x9f, 0xd6, 0x45, 0x7d, 0x41, 0xac, 0xdd, 0xc9,
+ 0x50, 0xe6, 0x27, 0x42, 0x21, 0x4f, 0xa0, 0x6c, 0xda, 0x23, 0xc7, 0x53, 0xfa, 0x05, 0xd4, 0x03,
+ 0x8a, 0x24, 0x60, 0xaa, 0xf7, 0xf9, 0x77, 0xee, 0x3d, 0x39, 0x84, 0x32, 0x6e, 0x6c, 0x01, 0x35,
+ 0x43, 0xe6, 0xe1, 0xe3, 0xaf, 0x96, 0xcd, 0xb7, 0x24, 0xb0, 0xed, 0xec, 0x56, 0xac, 0xa3, 0x89,
+ 0x0e, 0x83, 0xf8, 0xb7, 0xf6, 0xa7, 0x73, 0x70, 0x7f, 0x16, 0x88, 0x7c, 0x00, 0x4f, 0x3a, 0xc7,
+ 0xaf, 0x8c, 0xc6, 0x5e, 0xbf, 0xfd, 0xba, 0xd1, 0x6f, 0x77, 0x8e, 0x8d, 0x97, 0x8d, 0xf6, 0xa1,
+ 0xa1, 0xb7, 0x1a, 0xbd, 0xce, 0xb1, 0x71, 0xdc, 0x39, 0x6e, 0xd5, 0xef, 0x91, 0x0f, 0x41, 0xbb,
+ 0x01, 0xa4, 0x37, 0x8e, 0xf7, 0xdb, 0xc7, 0xfb, 0xf5, 0x1c, 0xf9, 0x09, 0xbc, 0xb8, 0x01, 0xd7,
+ 0x6d, 0xf4, 0x7a, 0x6f, 0x3a, 0x7a, 0xd3, 0x68, 0xbc, 0xea, 0x1f, 0xb4, 0x8e, 0xfb, 0xed, 0x3d,
+ 0xc4, 0xd4, 0xe7, 0x88, 0x06, 0x8f, 0x6f, 0xb0, 0x3b, 0xec, 0xf4, 0xea, 0xf3, 0xe4, 0x7d, 0x78,
+ 0x6f, 0x16, 0x06, 0x65, 0x87, 0x0d, 0xfd, 0xa8, 0x9e, 0xbf, 0x2e, 0x96, 0xde, 0x9b, 0x76, 0x7f,
+ 0xef, 0xc0, 0xe8, 0xbc, 0x6e, 0xe9, 0xf5, 0x05, 0xed, 0xe7, 0x40, 0xa6, 0x0b, 0x74, 0x42, 0x20,
+ 0xcf, 0xaf, 0xfc, 0x28, 0xf1, 0xf1, 0x77, 0x3a, 0x5b, 0xe6, 0x6e, 0xc8, 0xf0, 0xc9, 0xb4, 0xd0,
+ 0x74, 0xa8, 0x65, 0x2b, 0xea, 0x5b, 0xe7, 0x5d, 0x1d, 0xe6, 0xfd, 0x33, 0x8e, 0xcc, 0x15, 0x5d,
+ 0xfc, 0xd4, 0xfe, 0x29, 0x07, 0xf5, 0xc9, 0x8a, 0x9b, 0x6c, 0xc2, 0x22, 0xd2, 0x62, 0xcf, 0x65,
+ 0xf6, 0xe1, 0x81, 0xa6, 0x3f, 0xd1, 0xfb, 0xa9, 0xf5, 0x39, 0xa4, 0x23, 0x2c, 0xd0, 0x63, 0xbf,
+ 0x8b, 0x4a, 0xd2, 0xb6, 0x85, 0x1d, 0x96, 0xe0, 0x8e, 0x2c, 0x3a, 0x8b, 0x7a, 0x41, 0x34, 0xa5,
+ 0x02, 0x8d, 0x3c, 0x86, 0xc9, 0x58, 0xd4, 0x0b, 0xa2, 0x79, 0xcc, 0xc8, 0x03, 0x28, 0x58, 0x8c,
+ 0x9d, 0x39, 0x14, 0x8b, 0xa9, 0x82, 0xae, 0x5a, 0x51, 0x14, 0xf9, 0x24, 0x8a, 0xa7, 0xb0, 0x28,
+ 0xcb, 0x14, 0xd3, 0xba, 0xbe, 0x83, 0xda, 0x4f, 0x61, 0xf1, 0x80, 0x9a, 0x01, 0x3f, 0xa1, 0x26,
+ 0x27, 0x3b, 0xb0, 0x72, 0x1a, 0x35, 0x64, 0x91, 0xc5, 0xc7, 0x01, 0x55, 0x16, 0x24, 0x56, 0xf5,
+ 0x22, 0x8d, 0xf6, 0x77, 0x39, 0x98, 0xef, 0x78, 0xe3, 0x5b, 0x8f, 0xf9, 0xd4, 0x5a, 0x9d, 0x7f,
+ 0xf7, 0xb5, 0x2a, 0x22, 0x75, 0xe4, 0xea, 0x2e, 0xea, 0xe2, 0x27, 0xf9, 0x08, 0x96, 0xd8, 0xc8,
+ 0xb2, 0x0c, 0xea, 0x59, 0xc1, 0x95, 0x2f, 0x66, 0x0b, 0x27, 0xa8, 0xa4, 0xd7, 0x84, 0xb8, 0x15,
+ 0x4b, 0xb5, 0xbf, 0xcf, 0x01, 0xc1, 0x67, 0xc7, 0x50, 0x3c, 0x7e, 0x9a, 0x4e, 0xc8, 0x4d, 0xef,
+ 0x86, 0xc1, 0xb9, 0xae, 0xf7, 0x5f, 0xc0, 0xba, 0x2b, 0x29, 0x0c, 0x75, 0xb2, 0x44, 0x1e, 0xe3,
+ 0x8f, 0x68, 0xc0, 0xd4, 0x3c, 0x3e, 0x50, 0x00, 0xb9, 0xfb, 0xa2, 0xfa, 0x1b, 0x1a, 0x30, 0xf2,
+ 0x19, 0xdc, 0x9f, 0x65, 0xaa, 0xa2, 0x21, 0xd3, 0x56, 0xda, 0xd7, 0x50, 0x14, 0x09, 0x7e, 0x14,
+ 0x0e, 0xef, 0x20, 0xb3, 0x7f, 0x95, 0x83, 0x45, 0xf1, 0x9c, 0xc6, 0xe4, 0xbe, 0x35, 0x5f, 0x2a,
+ 0x29, 0xf3, 0x99, 0xa4, 0xcc, 0x66, 0xf9, 0xc2, 0x64, 0x96, 0x4f, 0xf7, 0xe3, 0x0b, 0xa8, 0xbc,
+ 0xf2, 0x5d, 0xc7, 0x3b, 0x7b, 0x5b, 0x4f, 0x94, 0xe9, 0x5c, 0x62, 0xfa, 0xe7, 0x8b, 0x00, 0x4d,
+ 0x7a, 0xee, 0x58, 0xb4, 0xed, 0x0d, 0x70, 0x3d, 0x9c, 0x53, 0xcf, 0x66, 0x81, 0xda, 0x4d, 0x54,
+ 0x8b, 0xdc, 0x87, 0x85, 0x11, 0xb3, 0xa9, 0xab, 0x9e, 0x89, 0xb2, 0x41, 0x7e, 0x04, 0xf5, 0x53,
+ 0x33, 0xb0, 0x2f, 0xcc, 0x80, 0x1a, 0xe7, 0x34, 0x10, 0xa5, 0xbc, 0xda, 0x52, 0x96, 0x22, 0xf9,
+ 0x6b, 0x29, 0x16, 0xd0, 0x81, 0x13, 0x8c, 0x32, 0xd0, 0xbc, 0x84, 0x46, 0xf2, 0x08, 0xba, 0x09,
+ 0x8b, 0x36, 0xf6, 0x48, 0xf4, 0xbf, 0x2e, 0xb7, 0x06, 0x29, 0x68, 0xdb, 0x62, 0xc6, 0x95, 0x32,
+ 0x9b, 0xf1, 0xcb, 0x88, 0x23, 0x52, 0x97, 0x4e, 0x77, 0x41, 0x27, 0xea, 0x60, 0x31, 0x78, 0x21,
+ 0x96, 0xd9, 0x45, 0xbd, 0xe4, 0x33, 0x4f, 0x1c, 0xe5, 0x43, 0xf2, 0x18, 0x80, 0x53, 0xeb, 0xd4,
+ 0x63, 0x2e, 0x1b, 0x5e, 0x45, 0x4f, 0xc1, 0x44, 0x42, 0xb6, 0xe4, 0x41, 0xc6, 0xb1, 0xe5, 0x61,
+ 0x54, 0xed, 0x1e, 0x80, 0x13, 0x88, 0x67, 0x4b, 0xf2, 0x08, 0x40, 0x21, 0xa8, 0x3a, 0x92, 0x15,
+ 0xf5, 0x12, 0xea, 0x5b, 0x9e, 0x4d, 0x9e, 0x42, 0xcd, 0x74, 0x5d, 0x66, 0x25, 0x0c, 0x25, 0x44,
+ 0x54, 0x50, 0x1a, 0x71, 0x6c, 0x41, 0x25, 0x46, 0x51, 0x75, 0x5c, 0x2a, 0xea, 0xa0, 0x30, 0x82,
+ 0xe7, 0x19, 0xd4, 0x93, 0x94, 0x50, 0x4c, 0x80, 0xa8, 0x5a, 0x9c, 0x18, 0x92, 0xeb, 0x29, 0xd4,
+ 0x52, 0x48, 0xaa, 0x4e, 0x2f, 0x45, 0xbd, 0x12, 0xe3, 0x04, 0x9f, 0x06, 0x55, 0xb5, 0x53, 0x2a,
+ 0xb2, 0x2a, 0x82, 0xca, 0x72, 0xbf, 0x94, 0x4c, 0x8f, 0xa1, 0x1c, 0x61, 0xa8, 0x2a, 0xf0, 0x8b,
+ 0xf2, 0xb5, 0x85, 0xe4, 0xf8, 0x0a, 0x0a, 0x81, 0xe9, 0x0d, 0x69, 0xb8, 0xb6, 0xb4, 0x35, 0xff,
+ 0xac, 0xfc, 0xe2, 0x59, 0xf2, 0x9a, 0x20, 0x4e, 0x28, 0xf5, 0x53, 0xa7, 0x21, 0x1b, 0x07, 0x16,
+ 0xd5, 0x11, 0xaf, 0x2b, 0xbb, 0x8d, 0xbf, 0xc8, 0xc3, 0xfd, 0x59, 0x00, 0xb2, 0x1e, 0xbd, 0xdd,
+ 0xb2, 0xc3, 0xb5, 0xdc, 0xd6, 0xfc, 0xb3, 0xa2, 0x7a, 0x85, 0x65, 0x4f, 0xce, 0xd8, 0xdc, 0xd4,
+ 0x8c, 0xed, 0xc1, 0x82, 0xcf, 0x98, 0x1b, 0xae, 0xcd, 0x63, 0xa7, 0x3e, 0x7d, 0xd7, 0x4e, 0x6d,
+ 0x77, 0x19, 0x73, 0x75, 0x69, 0xbb, 0xf1, 0x5f, 0x73, 0x90, 0x17, 0x6d, 0xf2, 0x7b, 0xa9, 0x67,
+ 0x6b, 0xed, 0xc5, 0x4f, 0x6e, 0x45, 0x86, 0x7f, 0xc4, 0xf3, 0x4c, 0x3d, 0x93, 0x7b, 0x50, 0x0c,
+ 0x4f, 0xcd, 0xc0, 0xf1, 0x86, 0xd8, 0xed, 0xda, 0x8b, 0x2f, 0x6e, 0x47, 0xd7, 0x93, 0xc6, 0xc8,
+ 0x18, 0x31, 0x89, 0x85, 0x29, 0x27, 0x50, 0x6e, 0x94, 0xb2, 0x21, 0xd6, 0x39, 0x55, 0xef, 0x4b,
+ 0x8a, 0xba, 0xf8, 0xa9, 0x35, 0xa0, 0x14, 0x75, 0x87, 0x00, 0x14, 0x44, 0xad, 0xd1, 0x6e, 0xd6,
+ 0xef, 0x91, 0x0a, 0x94, 0x1a, 0x87, 0x87, 0x9d, 0x3d, 0xd1, 0xca, 0x91, 0x1a, 0xc0, 0x7e, 0xeb,
+ 0xa8, 0xdb, 0xd1, 0xfb, 0xa2, 0x3d, 0x47, 0xca, 0x50, 0x7c, 0x79, 0xd8, 0x79, 0x23, 0x1a, 0xf3,
+ 0xda, 0x29, 0x94, 0x53, 0x5d, 0x20, 0x0f, 0x80, 0x34, 0x5b, 0x4d, 0x51, 0x08, 0xb5, 0x9a, 0x46,
+ 0xb7, 0xa5, 0x1b, 0xed, 0xe3, 0xfe, 0xcb, 0xfa, 0x3d, 0xf2, 0x04, 0x36, 0x7b, 0x07, 0x0d, 0xbd,
+ 0xd5, 0x34, 0x76, 0xff, 0xd0, 0x68, 0x1c, 0x1e, 0xa2, 0x1c, 0x7f, 0xf4, 0x5b, 0x7b, 0x07, 0xf5,
+ 0x1c, 0xd9, 0x82, 0x47, 0x33, 0x00, 0xbd, 0xc6, 0x51, 0x4b, 0x22, 0xe6, 0xb4, 0x3f, 0x9e, 0x07,
+ 0xd8, 0x73, 0xcd, 0x30, 0x74, 0x06, 0x0e, 0x0d, 0x70, 0xff, 0x34, 0xb8, 0x1f, 0xef, 0x66, 0x0b,
+ 0xac, 0xef, 0x3b, 0x36, 0x59, 0x81, 0x05, 0x66, 0x9c, 0xc7, 0xbb, 0x6a, 0x9e, 0xbd, 0x76, 0x70,
+ 0xaf, 0x75, 0x24, 0x56, 0x0d, 0x88, 0x13, 0x61, 0x1d, 0xc4, 0xca, 0x21, 0xc9, 0x3b, 0x02, 0xfb,
+ 0x10, 0x8a, 0xcc, 0xf0, 0x4f, 0x1c, 0x1e, 0xaa, 0x4d, 0xb6, 0xc0, 0xba, 0xa2, 0x85, 0xfb, 0xa7,
+ 0x52, 0xa8, 0x72, 0xc1, 0x91, 0x8a, 0x75, 0x28, 0x51, 0x7e, 0x2a, 0x8b, 0x16, 0xb9, 0xd4, 0x8b,
+ 0x94, 0x9f, 0x46, 0x35, 0x8b, 0x1d, 0x72, 0x63, 0x64, 0x5a, 0xb8, 0xc4, 0x2b, 0x7a, 0xc1, 0x0e,
+ 0xf9, 0x91, 0x69, 0x09, 0x45, 0x18, 0x58, 0xa8, 0x58, 0x94, 0x8a, 0x30, 0xb0, 0x84, 0x42, 0x24,
+ 0xb9, 0x2f, 0x5f, 0x11, 0xab, 0xb5, 0x5c, 0x74, 0xfc, 0x2e, 0xbe, 0xa4, 0x5e, 0x05, 0x61, 0x6d,
+ 0x38, 0xbe, 0x5a, 0xbc, 0x0b, 0x76, 0xc8, 0xdb, 0xbe, 0x10, 0x0b, 0x2a, 0xc7, 0x57, 0xfb, 0xd8,
+ 0x42, 0x18, 0x58, 0x6d, 0x5f, 0x10, 0x09, 0xb1, 0x58, 0xdd, 0x6a, 0x1d, 0x0b, 0x8f, 0x62, 0x83,
+ 0x13, 0x2a, 0x41, 0x84, 0x2a, 0xb9, 0x80, 0x45, 0x2f, 0x51, 0xb5, 0x05, 0x15, 0xff, 0x8c, 0x1b,
+ 0xdc, 0x1c, 0xca, 0x78, 0x96, 0xe4, 0x52, 0xf2, 0xcf, 0x78, 0xdf, 0xc4, 0x19, 0xd6, 0x7e, 0x35,
+ 0x0f, 0x8b, 0xa2, 0xf0, 0x66, 0xde, 0xde, 0x08, 0xb7, 0x0c, 0xd3, 0xb6, 0x0d, 0x36, 0xe6, 0x34,
+ 0x10, 0x56, 0x38, 0x19, 0x25, 0xbd, 0x6c, 0xda, 0x76, 0x47, 0xc8, 0xfa, 0xe6, 0x50, 0x6c, 0x53,
+ 0xe2, 0xc8, 0x7e, 0x4e, 0x53, 0xb0, 0x39, 0x59, 0x3b, 0x48, 0x79, 0x8c, 0xdc, 0x82, 0x0a, 0x0f,
+ 0x4c, 0xdf, 0xe0, 0xcc, 0x38, 0x65, 0xa1, 0x4c, 0xdf, 0x92, 0x0e, 0x42, 0xd6, 0x67, 0x07, 0x2c,
+ 0xe4, 0xe4, 0x13, 0x20, 0x01, 0x1d, 0x99, 0xc1, 0x99, 0xe2, 0x92, 0xf3, 0x91, 0x47, 0x5c, 0x5d,
+ 0x6a, 0x90, 0x4d, 0xce, 0x4c, 0x82, 0x76, 0x3c, 0x2f, 0x46, 0x2f, 0xa4, 0xd1, 0x6d, 0xa1, 0x90,
+ 0x68, 0x15, 0x8b, 0x84, 0x8a, 0x4e, 0x16, 0xe2, 0x58, 0x10, 0x95, 0x8d, 0x25, 0x81, 0x15, 0xd3,
+ 0xb1, 0xc4, 0xc8, 0x6d, 0x58, 0xe1, 0x81, 0xe9, 0x85, 0xae, 0xc9, 0xd3, 0xe0, 0x12, 0x82, 0x97,
+ 0x63, 0xd5, 0x6c, 0x7c, 0x32, 0x50, 0x8b, 0x13, 0xf8, 0x68, 0xac, 0xb4, 0x7f, 0xc8, 0x41, 0x41,
+ 0xce, 0x03, 0x79, 0x0a, 0xf3, 0xd6, 0x28, 0x7a, 0xa3, 0x4b, 0x92, 0x97, 0xc4, 0xd1, 0x2c, 0xe9,
+ 0x42, 0x3d, 0x7b, 0x65, 0xa4, 0xb2, 0x7d, 0x3e, 0x93, 0xed, 0xc9, 0xf2, 0xca, 0x4f, 0x2c, 0x2f,
+ 0xb9, 0x64, 0x16, 0xb2, 0x4b, 0x66, 0xf6, 0xca, 0x48, 0xd6, 0x5d, 0x31, 0xb5, 0xee, 0xb4, 0x7f,
+ 0x9b, 0x87, 0xfc, 0x4b, 0x97, 0x5d, 0xe0, 0x83, 0xd0, 0xb2, 0x68, 0x18, 0x1a, 0xe9, 0xca, 0x64,
+ 0x49, 0xaf, 0x48, 0x69, 0x7b, 0x56, 0xa5, 0xb4, 0x14, 0x55, 0x4a, 0xab, 0x50, 0x18, 0x7b, 0x8e,
+ 0x10, 0x97, 0xa5, 0x78, 0xec, 0x39, 0x37, 0x95, 0xfb, 0x9b, 0x80, 0x8f, 0x29, 0x99, 0xd7, 0xb2,
+ 0xca, 0x28, 0x09, 0x01, 0x2e, 0xd4, 0x75, 0x28, 0x45, 0x0f, 0x5b, 0x5c, 0x76, 0x4b, 0x7a, 0x51,
+ 0x3d, 0x68, 0xc9, 0x87, 0xb0, 0xe4, 0x51, 0x7e, 0xc1, 0x30, 0x8b, 0x64, 0x2f, 0x17, 0x10, 0x51,
+ 0x55, 0xe2, 0xf6, 0xac, 0x63, 0x48, 0x01, 0x21, 0xa9, 0x02, 0xed, 0x73, 0x00, 0x2b, 0xde, 0xbd,
+ 0xd4, 0x5b, 0xda, 0x95, 0x78, 0xae, 0x92, 0x8d, 0x4d, 0x4f, 0xc1, 0xc8, 0x47, 0x50, 0x30, 0x71,
+ 0x16, 0xd5, 0xdb, 0xd7, 0xa5, 0x89, 0xc9, 0xd5, 0x95, 0x9a, 0x6c, 0x40, 0xc9, 0x0f, 0x1c, 0x16,
+ 0x38, 0xfc, 0x0a, 0x53, 0x66, 0x49, 0x8f, 0xdb, 0xa9, 0xe3, 0x4c, 0x25, 0x73, 0x9c, 0x49, 0x95,
+ 0x9a, 0xd5, 0x4c, 0xa9, 0xb9, 0x0e, 0xa5, 0x61, 0xc0, 0xc6, 0xbe, 0x88, 0x43, 0xed, 0x0f, 0xd8,
+ 0x96, 0x83, 0x91, 0xbe, 0xf5, 0x12, 0x88, 0x25, 0x44, 0x54, 0x85, 0xb8, 0x2b, 0xa5, 0x6d, 0x5b,
+ 0xeb, 0x43, 0x65, 0xb2, 0xde, 0x92, 0x45, 0x63, 0x34, 0xc9, 0x15, 0xbd, 0x24, 0x05, 0x6d, 0x5b,
+ 0x9c, 0x2d, 0x94, 0x32, 0xf4, 0xa9, 0xe5, 0x0c, 0x1c, 0x4b, 0x15, 0xa3, 0x35, 0x29, 0xee, 0x29,
+ 0xa9, 0xf6, 0x2f, 0x79, 0xa8, 0x65, 0x6f, 0x5b, 0xae, 0xaf, 0x6a, 0xd7, 0xa1, 0x14, 0x5c, 0x1a,
+ 0x27, 0x57, 0x9c, 0x86, 0xc8, 0x56, 0xd0, 0x8b, 0xc1, 0xe5, 0xae, 0x68, 0x8a, 0x99, 0x0a, 0x2e,
+ 0x0d, 0x1f, 0xcb, 0x62, 0x99, 0xf7, 0x05, 0x7d, 0x31, 0xb8, 0x94, 0x75, 0x72, 0x88, 0x6b, 0xfc,
+ 0xd2, 0x18, 0x5b, 0xa6, 0xd8, 0x23, 0x15, 0x28, 0x8f, 0xa0, 0x5a, 0x70, 0xf9, 0x4a, 0x88, 0xb3,
+ 0xc8, 0x51, 0x06, 0xb9, 0x10, 0x21, 0x8f, 0xa6, 0x91, 0x27, 0x19, 0x64, 0x21, 0x42, 0xee, 0x4e,
+ 0x23, 0xe5, 0x2b, 0xc0, 0x08, 0x59, 0x8c, 0x90, 0xf8, 0x12, 0x2f, 0x42, 0xae, 0x43, 0x89, 0x47,
+ 0x11, 0x96, 0x64, 0x84, 0x3c, 0x89, 0x90, 0x27, 0x11, 0x2e, 0xca, 0x08, 0x79, 0x3a, 0x42, 0x3e,
+ 0x19, 0x21, 0x48, 0x1f, 0x7c, 0x2a, 0x42, 0x3e, 0x19, 0x61, 0x39, 0x42, 0x1e, 0x4d, 0x23, 0xb3,
+ 0x11, 0x56, 0x22, 0xe4, 0xee, 0x34, 0x32, 0x1b, 0x61, 0x35, 0x42, 0x66, 0x22, 0xd4, 0xa0, 0x1a,
+ 0x5c, 0x1a, 0x56, 0x60, 0x49, 0x74, 0x88, 0xd9, 0x58, 0xd0, 0xcb, 0xc1, 0xe5, 0x5e, 0x60, 0x21,
+ 0x12, 0x43, 0x3d, 0x71, 0xfc, 0x08, 0xb0, 0x24, 0x43, 0x3d, 0x71, 0x7c, 0xa5, 0x7e, 0x04, 0x8b,
+ 0xdc, 0x19, 0xd1, 0x90, 0x9b, 0x23, 0x1f, 0xcf, 0x0d, 0x45, 0x3d, 0x11, 0x68, 0xff, 0x98, 0x83,
+ 0x5a, 0xf6, 0x12, 0x2e, 0xbd, 0x7f, 0xe4, 0x32, 0xfb, 0xc7, 0x0f, 0x4f, 0xa8, 0x1f, 0x3e, 0x51,
+ 0x37, 0xf7, 0xfe, 0x2b, 0xa8, 0x66, 0x6e, 0xed, 0xae, 0x5f, 0x0c, 0x0f, 0xa0, 0x10, 0x72, 0x93,
+ 0x8f, 0x43, 0x55, 0x1b, 0xab, 0x96, 0xf6, 0x2d, 0xac, 0xcc, 0xb8, 0xbd, 0xbb, 0xf5, 0xa1, 0x35,
+ 0xa1, 0x9f, 0xcf, 0xd0, 0xff, 0xed, 0x1c, 0xbe, 0x0b, 0x98, 0xbc, 0x85, 0xfc, 0x01, 0x6f, 0x2d,
+ 0x5d, 0x16, 0x1a, 0x19, 0x17, 0x8b, 0x2e, 0x0b, 0x7b, 0x28, 0x90, 0xea, 0x93, 0x48, 0x9d, 0x8f,
+ 0xd4, 0x27, 0x4a, 0xfd, 0x0c, 0xea, 0x2e, 0xf3, 0x2d, 0x63, 0xe4, 0x84, 0x31, 0x87, 0x3c, 0xd3,
+ 0xd5, 0x84, 0xfc, 0xc8, 0x09, 0x23, 0xa2, 0xe7, 0xb0, 0xaa, 0x90, 0x2a, 0xe1, 0x22, 0x78, 0x41,
+ 0x9e, 0x23, 0x25, 0x5c, 0x26, 0x9e, 0x32, 0x79, 0x02, 0x65, 0x97, 0x0d, 0x9c, 0x08, 0x58, 0x94,
+ 0xe5, 0x92, 0x10, 0x29, 0xc0, 0xfb, 0x50, 0x71, 0x99, 0x39, 0x8a, 0x11, 0x25, 0x44, 0x94, 0x51,
+ 0x26, 0x21, 0x1a, 0x85, 0xcd, 0x1b, 0xee, 0x2c, 0xef, 0x6c, 0x32, 0xfe, 0x2a, 0x07, 0x1b, 0xd7,
+ 0x5f, 0x60, 0xde, 0x95, 0x1b, 0xf2, 0x39, 0x3c, 0x70, 0x3c, 0x71, 0x98, 0xa7, 0xc6, 0x89, 0x13,
+ 0xdd, 0x65, 0x04, 0x26, 0x8f, 0xde, 0xbf, 0xac, 0x28, 0xed, 0xae, 0x23, 0xaf, 0x24, 0x74, 0x93,
+ 0x53, 0xed, 0x7b, 0xd9, 0xb7, 0x6b, 0xee, 0x3f, 0xef, 0xac, 0x6f, 0xf7, 0x61, 0x01, 0x6f, 0x62,
+ 0xa3, 0x9a, 0x06, 0x1b, 0x82, 0xdd, 0xa3, 0x17, 0x06, 0xfd, 0x2e, 0xaa, 0x6a, 0x0a, 0x1e, 0xbd,
+ 0x68, 0x7d, 0x67, 0x6b, 0xa7, 0xf0, 0xf8, 0xe6, 0xdb, 0xd3, 0x3b, 0x9b, 0x9b, 0xbf, 0xce, 0xc9,
+ 0x1c, 0xb8, 0xe6, 0x3e, 0xf5, 0xff, 0x77, 0x72, 0x7e, 0x99, 0x03, 0xed, 0xed, 0x77, 0xb3, 0xff,
+ 0xb7, 0x93, 0xa4, 0x7d, 0x87, 0x73, 0x71, 0xc3, 0x1d, 0xee, 0xad, 0xfd, 0x3f, 0xc9, 0xde, 0x47,
+ 0xc8, 0x62, 0x31, 0x7d, 0xc5, 0x70, 0x06, 0xef, 0xbf, 0xf5, 0xc2, 0xf5, 0xce, 0x32, 0xa0, 0x0f,
+ 0x44, 0xb7, 0x9d, 0x89, 0xbb, 0x3c, 0x51, 0x6e, 0x05, 0xb6, 0xa3, 0xe6, 0xc9, 0x62, 0x63, 0x8f,
+ 0xa3, 0x97, 0x82, 0x5e, 0x0d, 0x14, 0x78, 0x4f, 0x08, 0xaf, 0xdd, 0xdf, 0xff, 0x32, 0x07, 0x6b,
+ 0xd7, 0xdd, 0xe8, 0xde, 0xba, 0xeb, 0x0d, 0xa8, 0x26, 0x9d, 0x99, 0xf5, 0x0d, 0xc7, 0x74, 0x00,
+ 0x07, 0xf7, 0xf4, 0x72, 0x90, 0x48, 0x77, 0x8b, 0xf8, 0x62, 0x82, 0x87, 0xda, 0x31, 0x3c, 0xba,
+ 0xe9, 0xbe, 0xfc, 0xb6, 0x7d, 0xd3, 0x7e, 0x01, 0x5b, 0x6f, 0xbb, 0x5b, 0xbe, 0xb3, 0xa9, 0xfa,
+ 0x05, 0xac, 0x5f, 0x7b, 0xc1, 0xfc, 0x43, 0x9e, 0x6d, 0xf1, 0xa0, 0x26, 0xa5, 0x83, 0x1a, 0xb2,
+ 0x50, 0xfb, 0x9b, 0x1c, 0x3c, 0x7b, 0xd7, 0xdb, 0xe6, 0x3b, 0x5b, 0x81, 0x9f, 0x02, 0x49, 0xdf,
+ 0x80, 0xab, 0xbe, 0xc9, 0xe5, 0xb8, 0x9c, 0xd2, 0xa8, 0x3e, 0x8e, 0xe0, 0x83, 0x77, 0xb8, 0x97,
+ 0xbe, 0xb3, 0xe1, 0x77, 0x71, 0x37, 0x7a, 0xcb, 0xdd, 0xf4, 0x9d, 0x79, 0xfb, 0xb3, 0x1c, 0x7c,
+ 0xf8, 0x6e, 0xb7, 0xd4, 0x77, 0x36, 0xfc, 0x1b, 0x50, 0x9a, 0xb8, 0xb3, 0x88, 0xdb, 0xda, 0x7f,
+ 0xe6, 0xa0, 0xbc, 0x2f, 0xce, 0x62, 0x47, 0x14, 0xcf, 0x55, 0xef, 0x43, 0xc5, 0x89, 0x2e, 0xa0,
+ 0x22, 0xc7, 0x55, 0xfc, 0x36, 0x4f, 0xca, 0xda, 0x36, 0x69, 0x43, 0x2d, 0x81, 0xe0, 0xe1, 0x57,
+ 0xbe, 0x68, 0x4c, 0x3e, 0x97, 0x48, 0x11, 0x6e, 0xc7, 0xd7, 0x59, 0xf8, 0x46, 0xb1, 0xea, 0xa4,
+ 0x9b, 0xe4, 0x31, 0x94, 0x87, 0x74, 0x64, 0x44, 0x67, 0xdc, 0x79, 0x74, 0x26, 0xce, 0xb8, 0x5d,
+ 0x79, 0xc6, 0x4d, 0x9f, 0x42, 0xf3, 0xa8, 0x8c, 0xdb, 0xda, 0x6f, 0x43, 0x35, 0xc3, 0x4d, 0x8a,
+ 0x30, 0xdf, 0xed, 0x1c, 0xd7, 0xef, 0x91, 0x3a, 0x54, 0x5a, 0xdd, 0xce, 0xb1, 0xf1, 0x7c, 0xdf,
+ 0xe8, 0x36, 0xfa, 0x07, 0xf5, 0x1c, 0x59, 0x86, 0xaa, 0x94, 0x7c, 0xa6, 0x44, 0x73, 0xda, 0x9f,
+ 0xcc, 0xc1, 0x02, 0xf6, 0x33, 0x73, 0x3a, 0x95, 0xe1, 0xc6, 0xa7, 0xd3, 0x9f, 0x42, 0xd1, 0x62,
+ 0xa3, 0x91, 0xa9, 0x3e, 0x52, 0x9b, 0x8a, 0x31, 0x1d, 0x69, 0xb8, 0x27, 0x91, 0x7a, 0x64, 0x42,
+ 0xb6, 0xa1, 0x38, 0x92, 0x2a, 0xf5, 0x9a, 0xf8, 0xfe, 0xac, 0x11, 0xd2, 0x23, 0x50, 0xea, 0x70,
+ 0x9e, 0xbf, 0xf1, 0x70, 0xae, 0x7d, 0x0d, 0x2b, 0x33, 0x1c, 0x93, 0x25, 0x28, 0x37, 0x9a, 0x4d,
+ 0xe3, 0xa8, 0x75, 0xb4, 0xdb, 0xd2, 0x7b, 0xf5, 0x7b, 0x84, 0x40, 0x4d, 0x6f, 0x1d, 0x75, 0x5e,
+ 0xb7, 0x62, 0x59, 0x4e, 0x80, 0x7a, 0xad, 0x7e, 0x2c, 0x98, 0xd3, 0xbe, 0x01, 0x78, 0x6d, 0xba,
+ 0x63, 0xda, 0x35, 0x03, 0x73, 0x44, 0x1e, 0xc3, 0x3c, 0xf3, 0xc6, 0xea, 0xd5, 0x4f, 0x25, 0xf3,
+ 0x01, 0x8c, 0x50, 0x90, 0x4f, 0x60, 0xe1, 0x5c, 0xa0, 0xd5, 0x78, 0x3c, 0xd8, 0x56, 0x5f, 0xa4,
+ 0x22, 0x85, 0x98, 0x86, 0x6d, 0x9c, 0x67, 0x09, 0xd2, 0x8a, 0xb0, 0xd0, 0x1a, 0xf9, 0xfc, 0xea,
+ 0xc5, 0x7f, 0x2f, 0x43, 0xb1, 0x23, 0xb9, 0x48, 0x13, 0xa0, 0xe9, 0x84, 0xe6, 0x89, 0x4b, 0x3b,
+ 0x2e, 0x27, 0xb5, 0xd8, 0x07, 0x22, 0x37, 0x26, 0xda, 0xda, 0x83, 0x5f, 0xfe, 0xeb, 0xbf, 0x7f,
+ 0x3f, 0x57, 0xd7, 0xca, 0x3b, 0xe7, 0xcf, 0x77, 0x94, 0xdd, 0x97, 0xb9, 0x8f, 0xc9, 0x4b, 0x28,
+ 0xeb, 0x94, 0x7a, 0xef, 0x4a, 0xf3, 0x10, 0x69, 0x96, 0xb5, 0x8a, 0xa0, 0x89, 0x0c, 0x05, 0x4f,
+ 0x0b, 0xca, 0xaa, 0x08, 0xa0, 0x1d, 0x6f, 0x4c, 0x32, 0x21, 0x4f, 0xb1, 0xac, 0x21, 0x0b, 0xd1,
+ 0xaa, 0x82, 0xa5, 0x25, 0x9d, 0x7b, 0x63, 0x41, 0x73, 0x00, 0xd5, 0xf8, 0x61, 0xf1, 0x0e, 0x44,
+ 0xeb, 0x48, 0xb4, 0xa2, 0xd5, 0x52, 0x51, 0x29, 0xa6, 0x3d, 0x58, 0x6c, 0x52, 0x97, 0xde, 0xba,
+ 0x3b, 0xb1, 0x91, 0x20, 0x69, 0x03, 0xa8, 0x0b, 0xc8, 0xce, 0x98, 0x93, 0x7a, 0xe6, 0x43, 0xd6,
+ 0xa3, 0x70, 0x78, 0x73, 0x7f, 0x12, 0x4b, 0x41, 0xd5, 0x81, 0x4a, 0x7c, 0xfb, 0x28, 0xc8, 0x48,
+ 0xe6, 0xe3, 0x21, 0x14, 0x4f, 0xd1, 0x6d, 0x22, 0xdd, 0xaa, 0x56, 0x47, 0xba, 0x94, 0xb5, 0x20,
+ 0xfc, 0x03, 0x58, 0x4a, 0xdf, 0x23, 0x0a, 0xce, 0xe4, 0x0e, 0x39, 0xad, 0x99, 0xa2, 0x7d, 0x8c,
+ 0xb4, 0x6b, 0xda, 0x8a, 0xa0, 0x9d, 0xe0, 0x10, 0xcc, 0x5f, 0x41, 0x51, 0x1c, 0xbe, 0x1b, 0xb6,
+ 0x4d, 0xaa, 0x99, 0x6f, 0x62, 0x6f, 0xce, 0x2a, 0x65, 0x23, 0xb3, 0x0a, 0x44, 0x4b, 0xc7, 0x57,
+ 0xaf, 0x6f, 0x23, 0xc9, 0x0c, 0x5a, 0x62, 0x26, 0x78, 0x7a, 0x50, 0x8b, 0x6f, 0xe8, 0xf7, 0x4e,
+ 0xa9, 0x75, 0x36, 0x95, 0xa0, 0xc9, 0x30, 0xc6, 0x40, 0xed, 0x3d, 0x24, 0x7c, 0xa8, 0x11, 0x41,
+ 0x98, 0xb5, 0x17, 0xa4, 0x47, 0x50, 0x96, 0x39, 0xd7, 0x65, 0x5e, 0x7b, 0x90, 0x9a, 0x88, 0x78,
+ 0x1f, 0x9c, 0xea, 0xe2, 0x06, 0x32, 0xde, 0xd7, 0x96, 0x92, 0x84, 0x45, 0x63, 0x35, 0xb1, 0x2a,
+ 0xf3, 0xde, 0x9d, 0x2f, 0x33, 0xb1, 0x69, 0x6b, 0x41, 0xa8, 0x43, 0x75, 0x9f, 0xf2, 0xd4, 0x3d,
+ 0xef, 0x64, 0xcc, 0x2b, 0x33, 0xae, 0xa2, 0xb4, 0x47, 0x48, 0xf9, 0x40, 0x5b, 0x16, 0x94, 0x19,
+ 0x7b, 0xc1, 0xf9, 0xbb, 0x50, 0xd0, 0xe9, 0x09, 0x63, 0x6f, 0x5f, 0xe1, 0xab, 0xc8, 0xb3, 0xa4,
+ 0x81, 0x5c, 0xe1, 0xc2, 0x46, 0x10, 0xbc, 0x82, 0xe5, 0x3d, 0xe6, 0xba, 0xd4, 0x4a, 0xbf, 0xe4,
+ 0x7b, 0x1b, 0xd7, 0x16, 0x72, 0x6d, 0x68, 0xab, 0x82, 0x6b, 0xca, 0x5c, 0xd0, 0x06, 0xf0, 0x70,
+ 0x2f, 0xa0, 0x26, 0xa7, 0xfd, 0xc0, 0x1c, 0x0c, 0x1c, 0xab, 0x67, 0x9d, 0x52, 0x7b, 0xec, 0x8a,
+ 0x6d, 0xfc, 0xc9, 0x76, 0xe6, 0x3b, 0xfe, 0x29, 0xc0, 0x94, 0xb7, 0x0f, 0xd1, 0xdb, 0x96, 0xb6,
+ 0x89, 0xde, 0x66, 0xb3, 0x2a, 0x9f, 0x32, 0xc3, 0xee, 0xda, 0xe7, 0x35, 0xac, 0xc2, 0xe7, 0x00,
+ 0x56, 0x32, 0x3d, 0xfa, 0xfd, 0x31, 0x1d, 0xd3, 0x90, 0x6c, 0xce, 0xf4, 0x27, 0x95, 0x53, 0xbe,
+ 0x34, 0xf4, 0xf5, 0x48, 0x7b, 0x38, 0x15, 0x9f, 0x34, 0x50, 0x7e, 0x32, 0xbd, 0xf8, 0x5f, 0xfb,
+ 0x99, 0xc1, 0x26, 0xfc, 0xfc, 0x16, 0xd4, 0xe5, 0x32, 0x48, 0xd5, 0x59, 0xd7, 0xa7, 0x69, 0x02,
+ 0xd2, 0xee, 0x7d, 0x96, 0x23, 0xdf, 0xc2, 0x6a, 0x97, 0x06, 0x03, 0x16, 0x8c, 0xf0, 0xf1, 0xdb,
+ 0xf1, 0x69, 0x30, 0xc9, 0x80, 0x8a, 0xa9, 0x9e, 0x3d, 0xc5, 0x9e, 0x3d, 0xd6, 0xd6, 0x45, 0xcf,
+ 0x66, 0x52, 0xc8, 0x4d, 0xbb, 0x2c, 0x37, 0x71, 0x59, 0x97, 0xbc, 0x8d, 0x34, 0xb3, 0xb6, 0x53,
+ 0x86, 0x82, 0xaa, 0x0f, 0xe5, 0x7d, 0xca, 0x5b, 0x97, 0x1c, 0x9f, 0xcb, 0x24, 0x89, 0x28, 0x79,
+ 0xd4, 0x6f, 0xdc, 0x8f, 0x9e, 0xdd, 0x3a, 0xe5, 0xe3, 0xc0, 0x43, 0x4d, 0x98, 0x65, 0x4d, 0x71,
+ 0x08, 0xd6, 0x6f, 0xf1, 0xcb, 0x44, 0x79, 0xf8, 0xc3, 0x77, 0x70, 0x3d, 0xca, 0x89, 0x28, 0x01,
+ 0xf0, 0x9f, 0x4e, 0xb2, 0xaa, 0x9b, 0xd7, 0xd4, 0x14, 0x8d, 0xa0, 0xf7, 0x61, 0x7d, 0x9f, 0xf2,
+ 0xc3, 0xd9, 0x1f, 0xe1, 0x64, 0x9f, 0x84, 0x9b, 0xd9, 0xcf, 0x4a, 0x33, 0x9f, 0x06, 0x69, 0xcf,
+ 0xd0, 0x93, 0xa6, 0xbd, 0xa7, 0x42, 0x98, 0xcd, 0x28, 0x3c, 0x9e, 0xc2, 0xea, 0x4c, 0xfd, 0x6d,
+ 0xbc, 0x65, 0xe6, 0x76, 0x26, 0xdb, 0x97, 0xb9, 0x8f, 0x77, 0xbf, 0x85, 0x4d, 0x16, 0x0c, 0x91,
+ 0xc7, 0x62, 0x81, 0xbd, 0x2d, 0xff, 0x75, 0x27, 0xe2, 0xdd, 0xad, 0xbe, 0xc6, 0xb6, 0x28, 0x91,
+ 0x3a, 0x87, 0xfd, 0x6f, 0x76, 0x86, 0x0e, 0x3f, 0x1d, 0x9f, 0x88, 0x09, 0xda, 0x89, 0x4c, 0x76,
+ 0xa4, 0xc9, 0xa7, 0xea, 0xbf, 0x7d, 0xce, 0x3f, 0xdf, 0x19, 0xb2, 0xe8, 0xbf, 0x8e, 0xba, 0xb9,
+ 0xee, 0xdc, 0x49, 0x01, 0x35, 0x9f, 0xff, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x26, 0x5c, 0xa8,
+ 0x33, 0x99, 0x34, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/vendor/github.com/opencord/voltha-protos/v3/go/voltha/events.pb.go b/vendor/github.com/opencord/voltha-protos/v3/go/voltha/events.pb.go
index fd6eba6..30a817f 100644
--- a/vendor/github.com/opencord/voltha-protos/v3/go/voltha/events.pb.go
+++ b/vendor/github.com/opencord/voltha-protos/v3/go/voltha/events.pb.go
@@ -76,136 +76,6 @@
return fileDescriptor_e63e6c07044fd2c4, []int{2, 0}
}
-type AlarmEventType_Types int32
-
-const (
- AlarmEventType_COMMUNICATION AlarmEventType_Types = 0
- AlarmEventType_ENVIRONMENT AlarmEventType_Types = 1
- AlarmEventType_EQUIPMENT AlarmEventType_Types = 2
- AlarmEventType_SERVICE AlarmEventType_Types = 3
- AlarmEventType_PROCESSING AlarmEventType_Types = 4
- AlarmEventType_SECURITY AlarmEventType_Types = 5
-)
-
-var AlarmEventType_Types_name = map[int32]string{
- 0: "COMMUNICATION",
- 1: "ENVIRONMENT",
- 2: "EQUIPMENT",
- 3: "SERVICE",
- 4: "PROCESSING",
- 5: "SECURITY",
-}
-
-var AlarmEventType_Types_value = map[string]int32{
- "COMMUNICATION": 0,
- "ENVIRONMENT": 1,
- "EQUIPMENT": 2,
- "SERVICE": 3,
- "PROCESSING": 4,
- "SECURITY": 5,
-}
-
-func (x AlarmEventType_Types) String() string {
- return proto.EnumName(AlarmEventType_Types_name, int32(x))
-}
-
-func (AlarmEventType_Types) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{8, 0}
-}
-
-type AlarmEventCategory_Types int32
-
-const (
- AlarmEventCategory_PON AlarmEventCategory_Types = 0
- AlarmEventCategory_OLT AlarmEventCategory_Types = 1
- AlarmEventCategory_ONT AlarmEventCategory_Types = 2
- AlarmEventCategory_ONU AlarmEventCategory_Types = 3
- AlarmEventCategory_NNI AlarmEventCategory_Types = 4
-)
-
-var AlarmEventCategory_Types_name = map[int32]string{
- 0: "PON",
- 1: "OLT",
- 2: "ONT",
- 3: "ONU",
- 4: "NNI",
-}
-
-var AlarmEventCategory_Types_value = map[string]int32{
- "PON": 0,
- "OLT": 1,
- "ONT": 2,
- "ONU": 3,
- "NNI": 4,
-}
-
-func (x AlarmEventCategory_Types) String() string {
- return proto.EnumName(AlarmEventCategory_Types_name, int32(x))
-}
-
-func (AlarmEventCategory_Types) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{9, 0}
-}
-
-type AlarmEventState_Types int32
-
-const (
- AlarmEventState_RAISED AlarmEventState_Types = 0
- AlarmEventState_CLEARED AlarmEventState_Types = 1
-)
-
-var AlarmEventState_Types_name = map[int32]string{
- 0: "RAISED",
- 1: "CLEARED",
-}
-
-var AlarmEventState_Types_value = map[string]int32{
- "RAISED": 0,
- "CLEARED": 1,
-}
-
-func (x AlarmEventState_Types) String() string {
- return proto.EnumName(AlarmEventState_Types_name, int32(x))
-}
-
-func (AlarmEventState_Types) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{10, 0}
-}
-
-type AlarmEventSeverity_Types int32
-
-const (
- AlarmEventSeverity_INDETERMINATE AlarmEventSeverity_Types = 0
- AlarmEventSeverity_WARNING AlarmEventSeverity_Types = 1
- AlarmEventSeverity_MINOR AlarmEventSeverity_Types = 2
- AlarmEventSeverity_MAJOR AlarmEventSeverity_Types = 3
- AlarmEventSeverity_CRITICAL AlarmEventSeverity_Types = 4
-)
-
-var AlarmEventSeverity_Types_name = map[int32]string{
- 0: "INDETERMINATE",
- 1: "WARNING",
- 2: "MINOR",
- 3: "MAJOR",
- 4: "CRITICAL",
-}
-
-var AlarmEventSeverity_Types_value = map[string]int32{
- "INDETERMINATE": 0,
- "WARNING": 1,
- "MINOR": 2,
- "MAJOR": 3,
- "CRITICAL": 4,
-}
-
-func (x AlarmEventSeverity_Types) String() string {
- return proto.EnumName(AlarmEventSeverity_Types_name, int32(x))
-}
-
-func (AlarmEventSeverity_Types) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{11, 0}
-}
-
type EventCategory_Types int32
const (
@@ -240,7 +110,7 @@
}
func (EventCategory_Types) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{14, 0}
+ return fileDescriptor_e63e6c07044fd2c4, []int{9, 0}
}
type EventSubCategory_Types int32
@@ -274,7 +144,7 @@
}
func (EventSubCategory_Types) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{15, 0}
+ return fileDescriptor_e63e6c07044fd2c4, []int{10, 0}
}
type EventType_Types int32
@@ -305,7 +175,7 @@
}
func (EventType_Types) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{16, 0}
+ return fileDescriptor_e63e6c07044fd2c4, []int{11, 0}
}
type ConfigEventType struct {
@@ -727,303 +597,6 @@
}
//
-// Identify to the area of the system impacted by the alarm
-// To be deprecated once python version of OpenOLT adapter
-// moves to the new event defination for device alarms
-type AlarmEventType struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
-}
-
-func (m *AlarmEventType) Reset() { *m = AlarmEventType{} }
-func (m *AlarmEventType) String() string { return proto.CompactTextString(m) }
-func (*AlarmEventType) ProtoMessage() {}
-func (*AlarmEventType) Descriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{8}
-}
-
-func (m *AlarmEventType) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_AlarmEventType.Unmarshal(m, b)
-}
-func (m *AlarmEventType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_AlarmEventType.Marshal(b, m, deterministic)
-}
-func (m *AlarmEventType) XXX_Merge(src proto.Message) {
- xxx_messageInfo_AlarmEventType.Merge(m, src)
-}
-func (m *AlarmEventType) XXX_Size() int {
- return xxx_messageInfo_AlarmEventType.Size(m)
-}
-func (m *AlarmEventType) XXX_DiscardUnknown() {
- xxx_messageInfo_AlarmEventType.DiscardUnknown(m)
-}
-
-var xxx_messageInfo_AlarmEventType proto.InternalMessageInfo
-
-//
-// Identify to the functional category originating the alarm
-// To be deprecated once python version of OpenOLT adapter
-// as well as OpenONU adapter moves to the new event
-// defination for device alarms
-type AlarmEventCategory struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
-}
-
-func (m *AlarmEventCategory) Reset() { *m = AlarmEventCategory{} }
-func (m *AlarmEventCategory) String() string { return proto.CompactTextString(m) }
-func (*AlarmEventCategory) ProtoMessage() {}
-func (*AlarmEventCategory) Descriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{9}
-}
-
-func (m *AlarmEventCategory) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_AlarmEventCategory.Unmarshal(m, b)
-}
-func (m *AlarmEventCategory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_AlarmEventCategory.Marshal(b, m, deterministic)
-}
-func (m *AlarmEventCategory) XXX_Merge(src proto.Message) {
- xxx_messageInfo_AlarmEventCategory.Merge(m, src)
-}
-func (m *AlarmEventCategory) XXX_Size() int {
- return xxx_messageInfo_AlarmEventCategory.Size(m)
-}
-func (m *AlarmEventCategory) XXX_DiscardUnknown() {
- xxx_messageInfo_AlarmEventCategory.DiscardUnknown(m)
-}
-
-var xxx_messageInfo_AlarmEventCategory proto.InternalMessageInfo
-
-//
-// Active state of the alarm
-// To be deprecated once python version of OpenOLT adapter
-// as well as OpenONU adapter moves to the new event
-// defination for device alarms
-type AlarmEventState struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
-}
-
-func (m *AlarmEventState) Reset() { *m = AlarmEventState{} }
-func (m *AlarmEventState) String() string { return proto.CompactTextString(m) }
-func (*AlarmEventState) ProtoMessage() {}
-func (*AlarmEventState) Descriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{10}
-}
-
-func (m *AlarmEventState) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_AlarmEventState.Unmarshal(m, b)
-}
-func (m *AlarmEventState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_AlarmEventState.Marshal(b, m, deterministic)
-}
-func (m *AlarmEventState) XXX_Merge(src proto.Message) {
- xxx_messageInfo_AlarmEventState.Merge(m, src)
-}
-func (m *AlarmEventState) XXX_Size() int {
- return xxx_messageInfo_AlarmEventState.Size(m)
-}
-func (m *AlarmEventState) XXX_DiscardUnknown() {
- xxx_messageInfo_AlarmEventState.DiscardUnknown(m)
-}
-
-var xxx_messageInfo_AlarmEventState proto.InternalMessageInfo
-
-//
-// Identify the overall impact of the alarm on the system
-// To be deprecated once python version of OpenOLT adapter
-// as well as OpenONU adapter moves to the new event
-// defination for device alarms
-type AlarmEventSeverity struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
-}
-
-func (m *AlarmEventSeverity) Reset() { *m = AlarmEventSeverity{} }
-func (m *AlarmEventSeverity) String() string { return proto.CompactTextString(m) }
-func (*AlarmEventSeverity) ProtoMessage() {}
-func (*AlarmEventSeverity) Descriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{11}
-}
-
-func (m *AlarmEventSeverity) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_AlarmEventSeverity.Unmarshal(m, b)
-}
-func (m *AlarmEventSeverity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_AlarmEventSeverity.Marshal(b, m, deterministic)
-}
-func (m *AlarmEventSeverity) XXX_Merge(src proto.Message) {
- xxx_messageInfo_AlarmEventSeverity.Merge(m, src)
-}
-func (m *AlarmEventSeverity) XXX_Size() int {
- return xxx_messageInfo_AlarmEventSeverity.Size(m)
-}
-func (m *AlarmEventSeverity) XXX_DiscardUnknown() {
- xxx_messageInfo_AlarmEventSeverity.DiscardUnknown(m)
-}
-
-var xxx_messageInfo_AlarmEventSeverity proto.InternalMessageInfo
-
-//
-// To be deprecated once python version of OpenOLT adapter
-// as well as OpenONU adapter moves to the new event
-// defination for device alarms
-type AlarmEvent struct {
- // Unique ID for this alarm. e.g. voltha.some_olt.1234
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- // Refers to the area of the system impacted by the alarm
- Type AlarmEventType_Types `protobuf:"varint,2,opt,name=type,proto3,enum=voltha.AlarmEventType_Types" json:"type,omitempty"`
- // Refers to functional category of the alarm
- Category AlarmEventCategory_Types `protobuf:"varint,3,opt,name=category,proto3,enum=voltha.AlarmEventCategory_Types" json:"category,omitempty"`
- // Current active state of the alarm
- State AlarmEventState_Types `protobuf:"varint,4,opt,name=state,proto3,enum=voltha.AlarmEventState_Types" json:"state,omitempty"`
- // Overall impact of the alarm on the system
- Severity AlarmEventSeverity_Types `protobuf:"varint,5,opt,name=severity,proto3,enum=voltha.AlarmEventSeverity_Types" json:"severity,omitempty"`
- // Timestamp at which the alarm was first raised
- // TODO: Is this obsolete? Eventheader already has a raised_ts
- RaisedTs *timestamp.Timestamp `protobuf:"bytes,6,opt,name=raised_ts,json=raisedTs,proto3" json:"raised_ts,omitempty"`
- // Timestamp at which the alarm was reported
- // TODO: Is this obsolete? Eventheader already has a reported_ts
- ReportedTs *timestamp.Timestamp `protobuf:"bytes,7,opt,name=reported_ts,json=reportedTs,proto3" json:"reported_ts,omitempty"`
- // Timestamp at which the alarm has changed since it was raised
- ChangedTs *timestamp.Timestamp `protobuf:"bytes,8,opt,name=changed_ts,json=changedTs,proto3" json:"changed_ts,omitempty"`
- // Identifier of the originating resource of the alarm
- ResourceId string `protobuf:"bytes,9,opt,name=resource_id,json=resourceId,proto3" json:"resource_id,omitempty"`
- // Textual explanation of the alarm
- Description string `protobuf:"bytes,10,opt,name=description,proto3" json:"description,omitempty"`
- // Key/Value storage for extra information that may give context to the alarm
- Context map[string]string `protobuf:"bytes,11,rep,name=context,proto3" json:"context,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
- // logical device id
- LogicalDeviceId string `protobuf:"bytes,12,opt,name=logical_device_id,json=logicalDeviceId,proto3" json:"logical_device_id,omitempty"`
- // alarm_type name indicates clearly the name of the alarm
- AlarmTypeName string `protobuf:"bytes,13,opt,name=alarm_type_name,json=alarmTypeName,proto3" json:"alarm_type_name,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
-}
-
-func (m *AlarmEvent) Reset() { *m = AlarmEvent{} }
-func (m *AlarmEvent) String() string { return proto.CompactTextString(m) }
-func (*AlarmEvent) ProtoMessage() {}
-func (*AlarmEvent) Descriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{12}
-}
-
-func (m *AlarmEvent) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_AlarmEvent.Unmarshal(m, b)
-}
-func (m *AlarmEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_AlarmEvent.Marshal(b, m, deterministic)
-}
-func (m *AlarmEvent) XXX_Merge(src proto.Message) {
- xxx_messageInfo_AlarmEvent.Merge(m, src)
-}
-func (m *AlarmEvent) XXX_Size() int {
- return xxx_messageInfo_AlarmEvent.Size(m)
-}
-func (m *AlarmEvent) XXX_DiscardUnknown() {
- xxx_messageInfo_AlarmEvent.DiscardUnknown(m)
-}
-
-var xxx_messageInfo_AlarmEvent proto.InternalMessageInfo
-
-func (m *AlarmEvent) GetId() string {
- if m != nil {
- return m.Id
- }
- return ""
-}
-
-func (m *AlarmEvent) GetType() AlarmEventType_Types {
- if m != nil {
- return m.Type
- }
- return AlarmEventType_COMMUNICATION
-}
-
-func (m *AlarmEvent) GetCategory() AlarmEventCategory_Types {
- if m != nil {
- return m.Category
- }
- return AlarmEventCategory_PON
-}
-
-func (m *AlarmEvent) GetState() AlarmEventState_Types {
- if m != nil {
- return m.State
- }
- return AlarmEventState_RAISED
-}
-
-func (m *AlarmEvent) GetSeverity() AlarmEventSeverity_Types {
- if m != nil {
- return m.Severity
- }
- return AlarmEventSeverity_INDETERMINATE
-}
-
-func (m *AlarmEvent) GetRaisedTs() *timestamp.Timestamp {
- if m != nil {
- return m.RaisedTs
- }
- return nil
-}
-
-func (m *AlarmEvent) GetReportedTs() *timestamp.Timestamp {
- if m != nil {
- return m.ReportedTs
- }
- return nil
-}
-
-func (m *AlarmEvent) GetChangedTs() *timestamp.Timestamp {
- if m != nil {
- return m.ChangedTs
- }
- return nil
-}
-
-func (m *AlarmEvent) GetResourceId() string {
- if m != nil {
- return m.ResourceId
- }
- return ""
-}
-
-func (m *AlarmEvent) GetDescription() string {
- if m != nil {
- return m.Description
- }
- return ""
-}
-
-func (m *AlarmEvent) GetContext() map[string]string {
- if m != nil {
- return m.Context
- }
- return nil
-}
-
-func (m *AlarmEvent) GetLogicalDeviceId() string {
- if m != nil {
- return m.LogicalDeviceId
- }
- return ""
-}
-
-func (m *AlarmEvent) GetAlarmTypeName() string {
- if m != nil {
- return m.AlarmTypeName
- }
- return ""
-}
-
-//
// Describes the events specific to device
type DeviceEvent struct {
// Identifier of the originating resource of the event, for ex: device_id
@@ -1043,7 +616,7 @@
func (m *DeviceEvent) String() string { return proto.CompactTextString(m) }
func (*DeviceEvent) ProtoMessage() {}
func (*DeviceEvent) Descriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{13}
+ return fileDescriptor_e63e6c07044fd2c4, []int{8}
}
func (m *DeviceEvent) XXX_Unmarshal(b []byte) error {
@@ -1104,7 +677,7 @@
func (m *EventCategory) String() string { return proto.CompactTextString(m) }
func (*EventCategory) ProtoMessage() {}
func (*EventCategory) Descriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{14}
+ return fileDescriptor_e63e6c07044fd2c4, []int{9}
}
func (m *EventCategory) XXX_Unmarshal(b []byte) error {
@@ -1137,7 +710,7 @@
func (m *EventSubCategory) String() string { return proto.CompactTextString(m) }
func (*EventSubCategory) ProtoMessage() {}
func (*EventSubCategory) Descriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{15}
+ return fileDescriptor_e63e6c07044fd2c4, []int{10}
}
func (m *EventSubCategory) XXX_Unmarshal(b []byte) error {
@@ -1170,7 +743,7 @@
func (m *EventType) String() string { return proto.CompactTextString(m) }
func (*EventType) ProtoMessage() {}
func (*EventType) Descriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{16}
+ return fileDescriptor_e63e6c07044fd2c4, []int{11}
}
func (m *EventType) XXX_Unmarshal(b []byte) error {
@@ -1228,7 +801,7 @@
func (m *EventHeader) String() string { return proto.CompactTextString(m) }
func (*EventHeader) ProtoMessage() {}
func (*EventHeader) Descriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{17}
+ return fileDescriptor_e63e6c07044fd2c4, []int{12}
}
func (m *EventHeader) XXX_Unmarshal(b []byte) error {
@@ -1320,7 +893,7 @@
func (m *Event) String() string { return proto.CompactTextString(m) }
func (*Event) ProtoMessage() {}
func (*Event) Descriptor() ([]byte, []int) {
- return fileDescriptor_e63e6c07044fd2c4, []int{18}
+ return fileDescriptor_e63e6c07044fd2c4, []int{13}
}
func (m *Event) XXX_Unmarshal(b []byte) error {
@@ -1424,10 +997,6 @@
func init() {
proto.RegisterEnum("voltha.ConfigEventType_Types", ConfigEventType_Types_name, ConfigEventType_Types_value)
proto.RegisterEnum("voltha.KpiEventType_Types", KpiEventType_Types_name, KpiEventType_Types_value)
- proto.RegisterEnum("voltha.AlarmEventType_Types", AlarmEventType_Types_name, AlarmEventType_Types_value)
- proto.RegisterEnum("voltha.AlarmEventCategory_Types", AlarmEventCategory_Types_name, AlarmEventCategory_Types_value)
- proto.RegisterEnum("voltha.AlarmEventState_Types", AlarmEventState_Types_name, AlarmEventState_Types_value)
- proto.RegisterEnum("voltha.AlarmEventSeverity_Types", AlarmEventSeverity_Types_name, AlarmEventSeverity_Types_value)
proto.RegisterEnum("voltha.EventCategory_Types", EventCategory_Types_name, EventCategory_Types_value)
proto.RegisterEnum("voltha.EventSubCategory_Types", EventSubCategory_Types_name, EventSubCategory_Types_value)
proto.RegisterEnum("voltha.EventType_Types", EventType_Types_name, EventType_Types_value)
@@ -1443,12 +1012,6 @@
proto.RegisterType((*KpiEvent)(nil), "voltha.KpiEvent")
proto.RegisterMapType((map[string]*MetricValuePairs)(nil), "voltha.KpiEvent.PrefixesEntry")
proto.RegisterType((*KpiEvent2)(nil), "voltha.KpiEvent2")
- proto.RegisterType((*AlarmEventType)(nil), "voltha.AlarmEventType")
- proto.RegisterType((*AlarmEventCategory)(nil), "voltha.AlarmEventCategory")
- proto.RegisterType((*AlarmEventState)(nil), "voltha.AlarmEventState")
- proto.RegisterType((*AlarmEventSeverity)(nil), "voltha.AlarmEventSeverity")
- proto.RegisterType((*AlarmEvent)(nil), "voltha.AlarmEvent")
- proto.RegisterMapType((map[string]string)(nil), "voltha.AlarmEvent.ContextEntry")
proto.RegisterType((*DeviceEvent)(nil), "voltha.DeviceEvent")
proto.RegisterMapType((map[string]string)(nil), "voltha.DeviceEvent.ContextEntry")
proto.RegisterType((*EventCategory)(nil), "voltha.EventCategory")
@@ -1461,92 +1024,76 @@
func init() { proto.RegisterFile("voltha_protos/events.proto", fileDescriptor_e63e6c07044fd2c4) }
var fileDescriptor_e63e6c07044fd2c4 = []byte{
- // 1388 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0x5d, 0x6e, 0xdb, 0xc6,
- 0x16, 0x16, 0xa9, 0xff, 0x43, 0xd9, 0xa6, 0x27, 0x17, 0xf7, 0xea, 0x2a, 0xb9, 0x89, 0x2f, 0x8b,
- 0x06, 0x46, 0x82, 0x4a, 0xad, 0x5c, 0x20, 0x8e, 0xd3, 0xa2, 0x55, 0x64, 0x36, 0x66, 0x12, 0x51,
- 0x2e, 0x25, 0x3b, 0x68, 0x5f, 0x84, 0xb1, 0x38, 0x96, 0x08, 0x4b, 0xa2, 0x40, 0x8e, 0xd4, 0x78,
- 0x01, 0x7d, 0xee, 0x02, 0xba, 0x84, 0xee, 0xa1, 0x6f, 0x5d, 0x46, 0xd1, 0x4d, 0x74, 0x01, 0xc5,
- 0xfc, 0x50, 0x24, 0x65, 0xa5, 0x79, 0x30, 0xda, 0x3e, 0x69, 0x78, 0xe6, 0x7c, 0xe7, 0xe7, 0x3b,
- 0x73, 0xce, 0x8c, 0xa0, 0xb6, 0xf4, 0x27, 0x74, 0x8c, 0x07, 0xf3, 0xc0, 0xa7, 0x7e, 0xd8, 0x20,
- 0x4b, 0x32, 0xa3, 0x61, 0x9d, 0x7f, 0xa1, 0x82, 0xd8, 0xab, 0x55, 0xd3, 0x3a, 0x53, 0x42, 0xb1,
- 0xd0, 0xa8, 0xdd, 0x1b, 0xf9, 0xfe, 0x68, 0x42, 0x1a, 0x78, 0xee, 0x35, 0xf0, 0x6c, 0xe6, 0x53,
- 0x4c, 0x3d, 0x7f, 0x26, 0xf1, 0xb5, 0x07, 0x72, 0x97, 0x7f, 0x5d, 0x2c, 0x2e, 0x1b, 0xd4, 0x9b,
- 0x92, 0x90, 0xe2, 0xe9, 0x5c, 0x28, 0x18, 0xcf, 0x60, 0xa7, 0xed, 0xcf, 0x2e, 0xbd, 0x91, 0xc9,
- 0xdc, 0xf6, 0xaf, 0xe7, 0xc4, 0xd8, 0x87, 0x3c, 0xfb, 0x0d, 0x51, 0x11, 0xb2, 0xd8, 0x75, 0xf5,
- 0x0c, 0x02, 0x28, 0x04, 0x64, 0xea, 0x2f, 0x89, 0xae, 0xb0, 0xf5, 0x62, 0xee, 0x62, 0x4a, 0x74,
- 0xd5, 0x18, 0x83, 0x96, 0x00, 0xa3, 0x4f, 0x20, 0x47, 0xaf, 0xe7, 0xa4, 0xaa, 0xec, 0x29, 0xfb,
- 0xdb, 0xcd, 0xff, 0xd5, 0x45, 0xcc, 0xf5, 0x35, 0xfb, 0x75, 0x6e, 0xdc, 0xe1, 0xaa, 0x08, 0x41,
- 0x6e, 0x8c, 0xc3, 0x71, 0x55, 0xdd, 0x53, 0xf6, 0xcb, 0x0e, 0x5f, 0x33, 0x99, 0x8b, 0x29, 0xae,
- 0x66, 0x85, 0x8c, 0xad, 0x8d, 0x47, 0x50, 0x79, 0x35, 0xf7, 0xe2, 0x18, 0x6b, 0x51, 0x8c, 0x65,
- 0xc8, 0x87, 0x13, 0x6f, 0x48, 0xf4, 0x0c, 0x2a, 0x80, 0x4a, 0x43, 0x5d, 0x31, 0x7e, 0x52, 0x61,
- 0xbb, 0x43, 0x68, 0xe0, 0x0d, 0x3b, 0x84, 0xe2, 0x63, 0x4c, 0x31, 0xfa, 0x17, 0xe4, 0xa9, 0x47,
- 0x27, 0x22, 0xb4, 0xb2, 0x23, 0x3e, 0xd0, 0x36, 0x03, 0x70, 0xd7, 0x8a, 0xa3, 0xd2, 0x10, 0x3d,
- 0x82, 0xdd, 0x89, 0x3f, 0xf2, 0x86, 0x78, 0x32, 0x70, 0xc9, 0xd2, 0x1b, 0x92, 0x81, 0xe7, 0xca,
- 0x28, 0x76, 0xe4, 0xc6, 0x31, 0x97, 0x5b, 0x2e, 0xba, 0x0b, 0xe5, 0x90, 0x04, 0x1e, 0x9e, 0x0c,
- 0x66, 0x7e, 0x35, 0xc7, 0x75, 0x4a, 0x42, 0x60, 0xfb, 0x6c, 0x33, 0x36, 0x90, 0x17, 0x9b, 0x6e,
- 0x84, 0xfc, 0x1c, 0x8a, 0x43, 0x7f, 0x46, 0xc9, 0x5b, 0x5a, 0x2d, 0xec, 0x65, 0xf7, 0xb5, 0xe6,
- 0x07, 0x11, 0x51, 0xe9, 0xa0, 0x19, 0x6f, 0x4c, 0xcb, 0x9c, 0xd1, 0xe0, 0xda, 0x89, 0x30, 0x8c,
- 0x9d, 0xc5, 0xc2, 0x73, 0xab, 0x45, 0xc1, 0x0e, 0x5b, 0xd7, 0x8e, 0xa0, 0x92, 0x54, 0x46, 0x3a,
- 0x64, 0xaf, 0xc8, 0xb5, 0x4c, 0x96, 0x2d, 0x19, 0x01, 0x4b, 0x3c, 0x59, 0x10, 0x49, 0xb4, 0xf8,
- 0x38, 0x52, 0x0f, 0x15, 0xe3, 0x07, 0x05, 0x74, 0xe1, 0xf8, 0x9c, 0xc9, 0x4e, 0xb1, 0x17, 0x84,
- 0xe8, 0x0b, 0x28, 0x4e, 0xb9, 0x2c, 0xac, 0x2a, 0x3c, 0xc6, 0x0f, 0xd3, 0x31, 0xc6, 0xaa, 0x52,
- 0x10, 0xca, 0x28, 0x25, 0x8a, 0x45, 0x94, 0xdc, 0x78, 0x5f, 0x44, 0x6a, 0x32, 0xa2, 0x5f, 0x14,
- 0xd8, 0x15, 0x60, 0x6b, 0x76, 0xe9, 0x07, 0x53, 0x7e, 0xa0, 0x51, 0x13, 0x4a, 0xec, 0xd4, 0xf3,
- 0x93, 0xc1, 0xcc, 0x68, 0xcd, 0x7f, 0x6f, 0xe6, 0xcd, 0x59, 0xe9, 0xa1, 0x2f, 0xe3, 0x34, 0x54,
- 0x9e, 0xc6, 0xc3, 0x34, 0x24, 0x61, 0xff, 0x2f, 0xc8, 0xe3, 0x57, 0x05, 0x4a, 0xd1, 0xa1, 0x45,
- 0xf5, 0x54, 0x6f, 0xd4, 0xa2, 0x38, 0x92, 0x87, 0x3a, 0xd5, 0x18, 0xf1, 0xd9, 0x54, 0xf9, 0xd9,
- 0x3c, 0x82, 0xd2, 0x3c, 0x20, 0x97, 0xde, 0x5b, 0x12, 0x56, 0xb3, 0x3c, 0x97, 0xfb, 0xeb, 0x36,
- 0xea, 0xa7, 0x52, 0x41, 0xe4, 0xb0, 0xd2, 0xaf, 0x9d, 0xc1, 0x56, 0x6a, 0x6b, 0x43, 0x16, 0xf5,
- 0x64, 0x16, 0x5a, 0xb3, 0xfa, 0xae, 0x72, 0x27, 0xf3, 0xfb, 0x5e, 0x81, 0x72, 0xe4, 0xbb, 0x79,
- 0x8b, 0x04, 0x45, 0xf3, 0x1d, 0x02, 0xf0, 0x46, 0x1e, 0xc8, 0xde, 0x67, 0x29, 0xfe, 0xf7, 0x9d,
- 0xe5, 0x72, 0xca, 0x5c, 0x99, 0xd5, 0xdb, 0xf8, 0x0e, 0xb6, 0x5b, 0x13, 0x1c, 0x4c, 0xe3, 0xe9,
- 0x40, 0xa2, 0xe9, 0xb0, 0x0b, 0x5b, 0xed, 0x6e, 0xa7, 0x73, 0x66, 0x5b, 0xed, 0x56, 0xdf, 0xea,
- 0xda, 0x7a, 0x06, 0xed, 0x80, 0x66, 0xda, 0xe7, 0x96, 0xd3, 0xb5, 0x3b, 0xa6, 0xdd, 0xd7, 0x15,
- 0xb4, 0x05, 0x65, 0xf3, 0xeb, 0x33, 0xeb, 0x94, 0x7f, 0xaa, 0x48, 0x83, 0x62, 0xcf, 0x74, 0xce,
- 0xad, 0xb6, 0xa9, 0x67, 0xd1, 0x36, 0xc0, 0xa9, 0xd3, 0x6d, 0x9b, 0xbd, 0x9e, 0x65, 0xbf, 0xd0,
- 0x73, 0xa8, 0x02, 0xa5, 0x9e, 0xd9, 0x3e, 0x73, 0xac, 0xfe, 0x37, 0x7a, 0xde, 0x78, 0x09, 0x28,
- 0x76, 0xdc, 0xc6, 0x94, 0x8c, 0xfc, 0xe0, 0xda, 0xf8, 0x34, 0x31, 0x3e, 0x4f, 0xb9, 0xcb, 0x22,
- 0x64, 0xbb, 0xaf, 0x99, 0x2b, 0xb6, 0xe0, 0x4e, 0xf8, 0xe2, 0x4c, 0xcf, 0xb2, 0x85, 0x6d, 0x5b,
- 0x7a, 0xce, 0x38, 0x80, 0x9d, 0xd8, 0x56, 0x8f, 0x62, 0x4a, 0x8c, 0xbd, 0xc8, 0x10, 0x40, 0xc1,
- 0x69, 0x59, 0x3d, 0xf3, 0x58, 0xcf, 0xb0, 0xf0, 0xda, 0xaf, 0xcd, 0x96, 0x63, 0x1e, 0xeb, 0x8a,
- 0x81, 0x93, 0x01, 0xf4, 0xc8, 0x92, 0x04, 0x1e, 0xbd, 0x36, 0x5e, 0x25, 0xb2, 0xb7, 0xec, 0x63,
- 0xb3, 0x6f, 0x3a, 0x1d, 0xcb, 0x6e, 0xf5, 0x4d, 0x01, 0x7f, 0xd3, 0x72, 0x6c, 0x96, 0x8d, 0xc2,
- 0x66, 0x67, 0xc7, 0xb2, 0xbb, 0x8e, 0xae, 0xf2, 0x65, 0xeb, 0x65, 0xd7, 0xd1, 0xb3, 0x2c, 0xc7,
- 0xb6, 0x63, 0xf5, 0xad, 0x76, 0xeb, 0xb5, 0x9e, 0x33, 0x7e, 0xce, 0x03, 0xc4, 0x3e, 0x58, 0xd5,
- 0x3c, 0x57, 0x1e, 0x1c, 0xd5, 0x73, 0xd1, 0xc7, 0xb2, 0xea, 0x2a, 0xaf, 0xfa, 0xbd, 0xa8, 0x5e,
- 0xe9, 0x7a, 0xa4, 0xea, 0xfe, 0x19, 0x94, 0x86, 0x92, 0x2a, 0x3e, 0x5b, 0xb7, 0x9b, 0x7b, 0x37,
- 0x51, 0x11, 0x99, 0x12, 0xb9, 0x42, 0xa0, 0x03, 0xc8, 0x87, 0x8c, 0x1c, 0x3e, 0x72, 0x13, 0x77,
- 0xcc, 0x1a, 0x77, 0x12, 0x27, 0x74, 0x99, 0xcb, 0x50, 0x92, 0xc3, 0xa7, 0xf1, 0x46, 0x97, 0x11,
- 0x7d, 0x91, 0xcb, 0x08, 0x81, 0x9e, 0x40, 0x39, 0xc0, 0x5e, 0x48, 0xdc, 0x01, 0x0d, 0xab, 0x05,
- 0xde, 0x1e, 0xb5, 0xba, 0xb8, 0x56, 0xeb, 0xd1, 0xb5, 0x5a, 0xef, 0x47, 0xd7, 0xaa, 0x53, 0x12,
- 0xca, 0xfd, 0x10, 0x3d, 0x03, 0x2d, 0x20, 0x73, 0x3f, 0xa0, 0x02, 0x5a, 0x7c, 0x2f, 0x14, 0x22,
- 0xf5, 0x7e, 0x88, 0x9e, 0x02, 0x0c, 0xc7, 0x78, 0x36, 0x12, 0xd8, 0xd2, 0x7b, 0xb1, 0x65, 0xa9,
- 0xdd, 0x0f, 0xd1, 0x03, 0xe6, 0x37, 0xf4, 0x17, 0x81, 0xb8, 0x7f, 0xca, 0xbc, 0x58, 0x10, 0x89,
- 0x2c, 0x17, 0xed, 0x81, 0xe6, 0x92, 0x70, 0x18, 0x78, 0x73, 0xd6, 0x4a, 0x55, 0xe0, 0x0a, 0x49,
- 0x11, 0x7a, 0x1a, 0xdf, 0x51, 0x1a, 0xef, 0xc4, 0x07, 0x37, 0x09, 0x7b, 0xc7, 0xfd, 0xb4, 0xf1,
- 0x12, 0xad, 0x6c, 0xbe, 0x44, 0x1f, 0xc2, 0x0e, 0x66, 0xf6, 0x06, 0xec, 0x64, 0x0c, 0x66, 0x78,
- 0x4a, 0xaa, 0x5b, 0x5c, 0x73, 0x8b, 0x8b, 0x59, 0x25, 0x6c, 0x3c, 0x25, 0xb7, 0xba, 0xdf, 0x7e,
- 0x57, 0x40, 0x13, 0x0e, 0xc5, 0x09, 0x5e, 0x63, 0x47, 0xb9, 0xc1, 0xce, 0x23, 0xd8, 0x95, 0x81,
- 0xf3, 0x97, 0x98, 0x08, 0x4b, 0x98, 0xdd, 0x71, 0x63, 0x43, 0x2c, 0xb0, 0x75, 0x26, 0xb3, 0x37,
- 0x99, 0x3c, 0x8a, 0x99, 0xcc, 0x71, 0x26, 0x57, 0x47, 0x2f, 0x11, 0xd4, 0x66, 0x2a, 0x6f, 0x95,
- 0xf6, 0x12, 0xb6, 0xd2, 0x63, 0xe9, 0x6f, 0x9a, 0x89, 0x27, 0xa0, 0x8b, 0x76, 0x5a, 0x5c, 0xdc,
- 0x72, 0x22, 0xbe, 0x81, 0x72, 0x3c, 0xd1, 0x5f, 0x46, 0x26, 0x74, 0xa8, 0xb4, 0xbb, 0xf6, 0x57,
- 0xd6, 0x8b, 0x81, 0x79, 0xce, 0x82, 0xcb, 0xb0, 0x58, 0x5f, 0x9d, 0x5a, 0xf2, 0x53, 0x61, 0xe1,
- 0xad, 0x3e, 0x9b, 0xba, 0xca, 0x00, 0xc7, 0x26, 0x0b, 0x5d, 0x6a, 0x64, 0x8d, 0xdf, 0x54, 0xd0,
- 0xb8, 0xe5, 0x13, 0x82, 0x5d, 0x12, 0xdc, 0x98, 0x69, 0x4f, 0x12, 0x13, 0x4a, 0xcc, 0xb5, 0xbb,
- 0x51, 0xcd, 0xfe, 0x7c, 0x38, 0xb5, 0xa0, 0x12, 0x2e, 0x2e, 0x06, 0x6b, 0xe3, 0xed, 0x7e, 0x0a,
- 0x9c, 0xe0, 0x45, 0xe2, 0xb5, 0x30, 0x16, 0xa1, 0xc7, 0x72, 0x9e, 0x8a, 0xf1, 0xf6, 0x9f, 0x14,
- 0xf4, 0xc6, 0x28, 0xfd, 0x3f, 0x54, 0x78, 0xe3, 0x2c, 0x49, 0x10, 0xb2, 0xe3, 0x27, 0x5e, 0x9a,
- 0x1a, 0x93, 0x9d, 0x0b, 0xd1, 0x3f, 0x33, 0xbc, 0x8c, 0x1f, 0x55, 0xc8, 0x8b, 0x6e, 0x7b, 0x0c,
- 0x85, 0x31, 0x67, 0x59, 0xbe, 0xd9, 0xee, 0xa4, 0x32, 0x12, 0x05, 0x70, 0xa4, 0x0a, 0x3a, 0x84,
- 0xca, 0x90, 0xff, 0x57, 0x10, 0x9d, 0x27, 0xdf, 0x22, 0x77, 0x36, 0xfc, 0x8f, 0x38, 0xc9, 0x38,
- 0xda, 0x30, 0xf1, 0xcf, 0xa3, 0x01, 0xe5, 0xab, 0xb9, 0x27, 0x61, 0x59, 0x0e, 0xd3, 0xd7, 0x5f,
- 0x20, 0x27, 0x19, 0xa7, 0x74, 0x15, 0x3d, 0xc7, 0x9a, 0x00, 0x2b, 0x40, 0x93, 0xb3, 0xad, 0x35,
- 0x77, 0xd7, 0x11, 0xcd, 0x93, 0x8c, 0x53, 0xbe, 0x5a, 0xbd, 0x70, 0x0e, 0xa1, 0x92, 0x1c, 0x0c,
- 0x9c, 0xee, 0x44, 0x78, 0x89, 0x7e, 0x66, 0xe1, 0x25, 0x46, 0xc5, 0xf3, 0x0a, 0x80, 0x98, 0x25,
- 0xac, 0x34, 0xcf, 0x4d, 0xb8, 0xe3, 0x07, 0xa3, 0xba, 0x3f, 0x27, 0xb3, 0xa1, 0x1f, 0xb8, 0x12,
- 0xff, 0x6d, 0x7d, 0xe4, 0xd1, 0xf1, 0xe2, 0xa2, 0x3e, 0xf4, 0xa7, 0x8d, 0x68, 0xaf, 0x21, 0xf6,
- 0x3e, 0x92, 0x7f, 0xfb, 0x96, 0x07, 0x8d, 0x91, 0x2f, 0x65, 0x17, 0x05, 0x2e, 0x3c, 0xf8, 0x23,
- 0x00, 0x00, 0xff, 0xff, 0xe5, 0xa6, 0xf9, 0x0e, 0x3f, 0x0e, 0x00, 0x00,
+ // 1135 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xdd, 0x6e, 0xe3, 0x44,
+ 0x14, 0x8e, 0x9d, 0x34, 0x3f, 0xc7, 0x69, 0xeb, 0xce, 0x22, 0x08, 0x59, 0xd8, 0x2d, 0x46, 0xa0,
+ 0x6a, 0x57, 0x38, 0xc2, 0x8b, 0xb4, 0x55, 0x57, 0x08, 0x76, 0x53, 0xb3, 0x35, 0x4b, 0x93, 0xe0,
+ 0xa6, 0x45, 0x70, 0x13, 0x4d, 0xe3, 0x69, 0x62, 0x35, 0xc9, 0x58, 0x9e, 0x49, 0xb4, 0x7d, 0x00,
+ 0xae, 0x79, 0x00, 0x1e, 0x81, 0xe7, 0xe0, 0x31, 0x10, 0x2f, 0xc1, 0x03, 0xa0, 0xf9, 0x71, 0x62,
+ 0x97, 0xae, 0xf6, 0x62, 0xc5, 0x95, 0x67, 0xce, 0x9c, 0x6f, 0xe6, 0x3b, 0x67, 0xce, 0x77, 0xc6,
+ 0xd0, 0x5e, 0xd1, 0x19, 0x9f, 0xe2, 0x51, 0x92, 0x52, 0x4e, 0x59, 0x87, 0xac, 0xc8, 0x82, 0x33,
+ 0x57, 0xce, 0x50, 0x55, 0xad, 0xb5, 0x5b, 0x45, 0x9f, 0x39, 0xe1, 0x58, 0x79, 0xb4, 0x3f, 0x9a,
+ 0x50, 0x3a, 0x99, 0x91, 0x0e, 0x4e, 0xe2, 0x0e, 0x5e, 0x2c, 0x28, 0xc7, 0x3c, 0xa6, 0x0b, 0x8d,
+ 0x6f, 0x3f, 0xd4, 0xab, 0x72, 0x76, 0xb9, 0xbc, 0xea, 0xf0, 0x78, 0x4e, 0x18, 0xc7, 0xf3, 0x44,
+ 0x39, 0x38, 0xcf, 0x60, 0xb7, 0x4b, 0x17, 0x57, 0xf1, 0xc4, 0x17, 0xc7, 0x0e, 0x6f, 0x12, 0xe2,
+ 0x1c, 0xc0, 0x96, 0xf8, 0x32, 0x54, 0x83, 0x32, 0x8e, 0x22, 0xbb, 0x84, 0x00, 0xaa, 0x29, 0x99,
+ 0xd3, 0x15, 0xb1, 0x0d, 0x31, 0x5e, 0x26, 0x11, 0xe6, 0xc4, 0x36, 0x9d, 0x29, 0x58, 0x39, 0x30,
+ 0xfa, 0x12, 0x2a, 0xfc, 0x26, 0x21, 0x2d, 0x63, 0xdf, 0x38, 0xd8, 0xf1, 0x3e, 0x76, 0x15, 0x67,
+ 0xf7, 0xd6, 0xfe, 0xae, 0xdc, 0x3c, 0x94, 0xae, 0x08, 0x41, 0x65, 0x8a, 0xd9, 0xb4, 0x65, 0xee,
+ 0x1b, 0x07, 0x8d, 0x50, 0x8e, 0x85, 0x2d, 0xc2, 0x1c, 0xb7, 0xca, 0xca, 0x26, 0xc6, 0xce, 0x23,
+ 0x68, 0xbe, 0x4a, 0xe2, 0x0d, 0xc7, 0x76, 0xc6, 0xb1, 0x01, 0x5b, 0x6c, 0x16, 0x8f, 0x89, 0x5d,
+ 0x42, 0x55, 0x30, 0x39, 0xb3, 0x0d, 0xe7, 0x0f, 0x13, 0x76, 0x4e, 0x09, 0x4f, 0xe3, 0xf1, 0x29,
+ 0xe1, 0xf8, 0x18, 0x73, 0x8c, 0xde, 0x83, 0x2d, 0x1e, 0xf3, 0x99, 0xa2, 0xd6, 0x08, 0xd5, 0x04,
+ 0xed, 0x08, 0x80, 0x3c, 0xda, 0x08, 0x4d, 0xce, 0xd0, 0x23, 0xd8, 0x9b, 0xd1, 0x49, 0x3c, 0xc6,
+ 0xb3, 0x51, 0x44, 0x56, 0xf1, 0x98, 0x8c, 0xe2, 0x48, 0xb3, 0xd8, 0xd5, 0x0b, 0xc7, 0xd2, 0x1e,
+ 0x44, 0xe8, 0x3e, 0x34, 0x18, 0x49, 0x63, 0x3c, 0x1b, 0x2d, 0x68, 0xab, 0x22, 0x7d, 0xea, 0xca,
+ 0xd0, 0xa3, 0x62, 0x71, 0xb3, 0xc1, 0x96, 0x5a, 0x8c, 0x32, 0xe4, 0xd7, 0x50, 0x1b, 0xd3, 0x05,
+ 0x27, 0xaf, 0x79, 0xab, 0xba, 0x5f, 0x3e, 0xb0, 0xbc, 0x4f, 0xb3, 0x44, 0x15, 0x49, 0x8b, 0xbc,
+ 0x09, 0x2f, 0x7f, 0xc1, 0xd3, 0x9b, 0x30, 0xc3, 0x88, 0xec, 0x2c, 0x97, 0x71, 0xd4, 0xaa, 0xa9,
+ 0xec, 0x88, 0x71, 0xfb, 0x08, 0x9a, 0x79, 0x67, 0x64, 0x43, 0xf9, 0x9a, 0xdc, 0xe8, 0x60, 0xc5,
+ 0x50, 0x24, 0x60, 0x85, 0x67, 0x4b, 0xa2, 0x13, 0xad, 0x26, 0x47, 0xe6, 0xa1, 0xe1, 0xfc, 0x66,
+ 0x80, 0xad, 0x0e, 0xbe, 0x10, 0xb6, 0x01, 0x8e, 0x53, 0x86, 0xbe, 0x81, 0xda, 0x5c, 0xda, 0x58,
+ 0xcb, 0x90, 0x1c, 0x3f, 0x2b, 0x72, 0xdc, 0xb8, 0x6a, 0x03, 0xd3, 0x2c, 0x35, 0x4a, 0x30, 0xca,
+ 0x2f, 0xbc, 0x8d, 0x91, 0x99, 0x67, 0xf4, 0xa7, 0x01, 0x7b, 0x0a, 0x1c, 0x2c, 0xae, 0x68, 0x3a,
+ 0x97, 0x05, 0x8d, 0x3c, 0xa8, 0x8b, 0xaa, 0x97, 0x95, 0x21, 0xb6, 0xb1, 0xbc, 0xf7, 0xef, 0xce,
+ 0x5b, 0xb8, 0xf6, 0x43, 0xdf, 0x6e, 0xc2, 0x30, 0x65, 0x18, 0x9f, 0x17, 0x21, 0xb9, 0xfd, 0xff,
+ 0x87, 0x38, 0xfe, 0x32, 0xa0, 0x9e, 0x15, 0x2d, 0x72, 0x0b, 0xda, 0x68, 0x67, 0x3c, 0xf2, 0x45,
+ 0x5d, 0x10, 0xc6, 0xa6, 0x36, 0x4d, 0x59, 0x9b, 0x47, 0x50, 0x4f, 0x52, 0x72, 0x15, 0xbf, 0x26,
+ 0xac, 0x55, 0x96, 0xb1, 0x3c, 0xb8, 0xbd, 0x87, 0x3b, 0xd0, 0x0e, 0x2a, 0x86, 0xb5, 0x7f, 0xfb,
+ 0x1c, 0xb6, 0x0b, 0x4b, 0x77, 0x44, 0xe1, 0xe6, 0xa3, 0xb0, 0xbc, 0xd6, 0x9b, 0xae, 0x3b, 0x1f,
+ 0xdf, 0xaf, 0x06, 0x34, 0xb2, 0xb3, 0xbd, 0x77, 0x08, 0x50, 0x89, 0xef, 0x10, 0x40, 0x0a, 0x79,
+ 0xa4, 0xb5, 0x2f, 0x42, 0xfc, 0xf0, 0x8d, 0xd7, 0x15, 0x36, 0xa4, 0xb3, 0xb8, 0x6f, 0xe7, 0x1f,
+ 0x03, 0x2c, 0xa5, 0x4b, 0x95, 0xea, 0x87, 0x60, 0xa5, 0x84, 0xd1, 0x65, 0xaa, 0xf4, 0xa7, 0xa2,
+ 0x84, 0xcc, 0x14, 0x44, 0x42, 0xe7, 0x5a, 0x9e, 0xb2, 0xd7, 0x8e, 0x16, 0x78, 0x9e, 0x09, 0x63,
+ 0x37, 0xda, 0x6c, 0xd4, 0xc3, 0x73, 0x82, 0xf6, 0xc1, 0x8a, 0x08, 0x1b, 0xa7, 0x71, 0x22, 0x8e,
+ 0xd5, 0xdd, 0x20, 0x6f, 0x42, 0x47, 0x1b, 0x3d, 0x57, 0x24, 0xeb, 0xfd, 0x8c, 0x75, 0x8e, 0xd4,
+ 0xdd, 0x62, 0x7e, 0x27, 0xe1, 0xae, 0x60, 0x5b, 0x6e, 0xdd, 0xc5, 0x9c, 0x4c, 0x68, 0x7a, 0xe3,
+ 0x90, 0xac, 0x27, 0xee, 0xc1, 0x76, 0xb7, 0x7f, 0x7a, 0x7a, 0xde, 0x0b, 0xba, 0xcf, 0x87, 0x41,
+ 0xbf, 0x67, 0x97, 0xd0, 0x2e, 0x58, 0x7e, 0xef, 0x22, 0x08, 0xfb, 0xbd, 0x53, 0xbf, 0x37, 0xb4,
+ 0x0d, 0xb4, 0x0d, 0x0d, 0xff, 0xc7, 0xf3, 0x60, 0x20, 0xa7, 0x26, 0xb2, 0xa0, 0x76, 0xe6, 0x87,
+ 0x17, 0x41, 0xd7, 0xb7, 0xcb, 0x68, 0x07, 0x60, 0x10, 0xf6, 0xbb, 0xfe, 0xd9, 0x59, 0xd0, 0x7b,
+ 0x69, 0x57, 0x50, 0x13, 0xea, 0x67, 0x7e, 0xf7, 0x3c, 0x0c, 0x86, 0x3f, 0xdb, 0x5b, 0xce, 0x09,
+ 0xd8, 0xf2, 0xdc, 0xb3, 0xe5, 0xe5, 0xfa, 0xe8, 0xaf, 0x72, 0x4f, 0xc6, 0x40, 0x1e, 0x58, 0x83,
+ 0x72, 0xff, 0x07, 0x71, 0x90, 0x18, 0xc8, 0x23, 0xe4, 0xe0, 0xdc, 0x2e, 0x8b, 0x41, 0xaf, 0x17,
+ 0xd8, 0x15, 0xe7, 0x27, 0x68, 0x6c, 0x3a, 0xfa, 0xf7, 0xd9, 0x16, 0x36, 0x34, 0xbb, 0xfd, 0xde,
+ 0x77, 0xc1, 0xcb, 0x91, 0x7f, 0x21, 0xc8, 0x95, 0x04, 0xd7, 0x57, 0x83, 0x40, 0x4f, 0x0d, 0x41,
+ 0x6f, 0x3d, 0xf5, 0x6c, 0x53, 0x00, 0x8e, 0x7d, 0x41, 0x5d, 0x7b, 0x94, 0x9d, 0xbf, 0x4d, 0xb0,
+ 0xe4, 0xce, 0x27, 0x04, 0x47, 0x24, 0x15, 0xb5, 0xb6, 0x2e, 0x04, 0x33, 0x8e, 0xd0, 0x53, 0xa8,
+ 0x8f, 0x35, 0x75, 0x99, 0xd7, 0x1d, 0xef, 0x7e, 0x76, 0x67, 0x85, 0x94, 0xea, 0x82, 0x5d, 0x3b,
+ 0xa3, 0xe7, 0xd0, 0x64, 0xcb, 0xcb, 0xd1, 0x1a, 0x5c, 0x96, 0xe0, 0x07, 0x05, 0x70, 0x2e, 0x2f,
+ 0x1a, 0x6f, 0xb1, 0x8d, 0x09, 0x3d, 0xd6, 0x3a, 0xa9, 0x48, 0xe8, 0x07, 0x05, 0xe8, 0x7f, 0x44,
+ 0xf2, 0x09, 0x34, 0xc5, 0x77, 0xb4, 0x22, 0x29, 0x13, 0xe5, 0xa7, 0xde, 0x12, 0x4b, 0xd8, 0x2e,
+ 0x94, 0x09, 0x3d, 0x85, 0x46, 0x8a, 0x63, 0x46, 0xa2, 0x11, 0x67, 0xad, 0xaa, 0x54, 0x6f, 0xdb,
+ 0x55, 0xaf, 0xbe, 0x9b, 0xbd, 0xfa, 0xee, 0x30, 0x7b, 0xf5, 0xc3, 0xba, 0x72, 0x1e, 0x32, 0xf4,
+ 0x4c, 0xc8, 0x24, 0xa1, 0x29, 0x57, 0xd0, 0xda, 0x5b, 0xa1, 0x90, 0xb9, 0x0f, 0x99, 0xf3, 0xbb,
+ 0x09, 0x5b, 0x4a, 0x6d, 0x8f, 0xa1, 0x3a, 0x95, 0x59, 0xd6, 0x5d, 0xf9, 0x5e, 0x21, 0x22, 0x75,
+ 0x01, 0xa1, 0x76, 0x41, 0x87, 0xd0, 0x1c, 0xcb, 0xbf, 0x01, 0xa5, 0x3c, 0xdd, 0x6d, 0xee, 0xdd,
+ 0xf1, 0xa7, 0x70, 0x52, 0x0a, 0xad, 0x71, 0xee, 0xdf, 0xa2, 0x03, 0x8d, 0xeb, 0x24, 0xd6, 0xb0,
+ 0xb2, 0x84, 0xd9, 0xb7, 0x7b, 0xcc, 0x49, 0x29, 0xac, 0x5f, 0x67, 0x0d, 0xd7, 0x03, 0x58, 0x03,
+ 0x3c, 0x99, 0x6d, 0xcb, 0xdb, 0xbb, 0x8d, 0xf0, 0x4e, 0x4a, 0x61, 0xe3, 0x7a, 0xdd, 0xc3, 0x0e,
+ 0xa1, 0x99, 0x6f, 0x0c, 0x32, 0xdd, 0x39, 0x7a, 0x39, 0x3d, 0x0b, 0x7a, 0xb9, 0x56, 0xf1, 0xa2,
+ 0x09, 0xa0, 0x7a, 0x89, 0xb8, 0x9a, 0x17, 0x3e, 0xdc, 0xa3, 0xe9, 0xc4, 0xa5, 0x09, 0x59, 0x8c,
+ 0x69, 0x1a, 0x69, 0xfc, 0x2f, 0xee, 0x24, 0xe6, 0xd3, 0xe5, 0xa5, 0x3b, 0xa6, 0xf3, 0x4e, 0xb6,
+ 0xd6, 0x51, 0x6b, 0x5f, 0xe8, 0x1f, 0xbb, 0xd5, 0x93, 0xce, 0x84, 0x6a, 0xdb, 0x65, 0x55, 0x1a,
+ 0x9f, 0xfc, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x6d, 0xad, 0x4a, 0x9a, 0x21, 0x0a, 0x00, 0x00,
}
diff --git a/vendor/modules.txt b/vendor/modules.txt
index 7a08c55..5c0ce99 100644
--- a/vendor/modules.txt
+++ b/vendor/modules.txt
@@ -87,7 +87,7 @@
github.com/opencord/voltha-lib-go/v3/pkg/probe
github.com/opencord/voltha-lib-go/v3/pkg/techprofile
github.com/opencord/voltha-lib-go/v3/pkg/version
-# github.com/opencord/voltha-protos/v3 v3.4.3
+# github.com/opencord/voltha-protos/v3 v3.4.5
github.com/opencord/voltha-protos/v3/go/common
github.com/opencord/voltha-protos/v3/go/ext/config
github.com/opencord/voltha-protos/v3/go/inter_container