diff --git a/api/client/webclient/webclient.go b/api/client/webclient/webclient.go
index 8bd07cf8d45f5..960a2740d2d3d 100644
--- a/api/client/webclient/webclient.go
+++ b/api/client/webclient/webclient.go
@@ -297,6 +297,8 @@ type PingResponse struct {
ServerVersion string `json:"server_version"`
// MinClientVersion is the minimum client version required by the server.
MinClientVersion string `json:"min_client_version"`
+ // AutoUpdateSettings contains the auto update settings.
+ AutoUpdate AutoUpdateSettings `json:"auto_update"`
// ClusterName contains the name of the Teleport cluster.
ClusterName string `json:"cluster_name"`
@@ -328,6 +330,14 @@ type ProxySettings struct {
TLSRoutingEnabled bool `json:"tls_routing_enabled"`
}
+// AutoUpdateSettings contains information about the auto update requirements.
+type AutoUpdateSettings struct {
+ // ToolsVersion defines the version of {tsh, tctl} for client auto update.
+ ToolsVersion string `json:"tools_version"`
+ // ToolsAutoUpdate indicates if the requesting tools client should be updated.
+ ToolsAutoUpdate bool `json:"tools_auto_update"`
+}
+
// KubeProxySettings is kubernetes proxy settings
type KubeProxySettings struct {
// Enabled is true when kubernetes proxy is enabled
diff --git a/api/gen/proto/go/teleport/autoupdate/v1/autoupdate.pb.go b/api/gen/proto/go/teleport/autoupdate/v1/autoupdate.pb.go
index 3d1d62b82fbdc..514b7125ed4e6 100644
--- a/api/gen/proto/go/teleport/autoupdate/v1/autoupdate.pb.go
+++ b/api/gen/proto/go/teleport/autoupdate/v1/autoupdate.pb.go
@@ -122,8 +122,7 @@ type AutoUpdateConfigSpec struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- // ToolsAutoupdate encodes the feature flag to enable/disable tools autoupdates.
- ToolsAutoupdate bool `protobuf:"varint,1,opt,name=tools_autoupdate,json=toolsAutoupdate,proto3" json:"tools_autoupdate,omitempty"`
+ Tools *AutoUpdateConfigSpecTools `protobuf:"bytes,2,opt,name=tools,proto3" json:"tools,omitempty"`
}
func (x *AutoUpdateConfigSpec) Reset() {
@@ -158,11 +157,60 @@ func (*AutoUpdateConfigSpec) Descriptor() ([]byte, []int) {
return file_teleport_autoupdate_v1_autoupdate_proto_rawDescGZIP(), []int{1}
}
-func (x *AutoUpdateConfigSpec) GetToolsAutoupdate() bool {
+func (x *AutoUpdateConfigSpec) GetTools() *AutoUpdateConfigSpecTools {
if x != nil {
- return x.ToolsAutoupdate
+ return x.Tools
}
- return false
+ return nil
+}
+
+// AutoUpdateConfigSpecTools encodes the parameters for client tools auto updates.
+type AutoUpdateConfigSpecTools struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
+ // Mode defines state of the client tools auto update.
+ Mode string `protobuf:"bytes,1,opt,name=mode,proto3" json:"mode,omitempty"`
+}
+
+func (x *AutoUpdateConfigSpecTools) Reset() {
+ *x = AutoUpdateConfigSpecTools{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[2]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *AutoUpdateConfigSpecTools) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*AutoUpdateConfigSpecTools) ProtoMessage() {}
+
+func (x *AutoUpdateConfigSpecTools) ProtoReflect() protoreflect.Message {
+ mi := &file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[2]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use AutoUpdateConfigSpecTools.ProtoReflect.Descriptor instead.
+func (*AutoUpdateConfigSpecTools) Descriptor() ([]byte, []int) {
+ return file_teleport_autoupdate_v1_autoupdate_proto_rawDescGZIP(), []int{2}
+}
+
+func (x *AutoUpdateConfigSpecTools) GetMode() string {
+ if x != nil {
+ return x.Mode
+ }
+ return ""
}
// AutoUpdateVersion is a resource singleton with version required for
@@ -182,7 +230,7 @@ type AutoUpdateVersion struct {
func (x *AutoUpdateVersion) Reset() {
*x = AutoUpdateVersion{}
if protoimpl.UnsafeEnabled {
- mi := &file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[2]
+ mi := &file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -195,7 +243,7 @@ func (x *AutoUpdateVersion) String() string {
func (*AutoUpdateVersion) ProtoMessage() {}
func (x *AutoUpdateVersion) ProtoReflect() protoreflect.Message {
- mi := &file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[2]
+ mi := &file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -208,7 +256,7 @@ func (x *AutoUpdateVersion) ProtoReflect() protoreflect.Message {
// Deprecated: Use AutoUpdateVersion.ProtoReflect.Descriptor instead.
func (*AutoUpdateVersion) Descriptor() ([]byte, []int) {
- return file_teleport_autoupdate_v1_autoupdate_proto_rawDescGZIP(), []int{2}
+ return file_teleport_autoupdate_v1_autoupdate_proto_rawDescGZIP(), []int{3}
}
func (x *AutoUpdateVersion) GetKind() string {
@@ -252,14 +300,13 @@ type AutoUpdateVersionSpec struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- // ToolsVersion is the semantic version required for tools autoupdates.
- ToolsVersion string `protobuf:"bytes,1,opt,name=tools_version,json=toolsVersion,proto3" json:"tools_version,omitempty"`
+ Tools *AutoUpdateVersionSpecTools `protobuf:"bytes,2,opt,name=tools,proto3" json:"tools,omitempty"`
}
func (x *AutoUpdateVersionSpec) Reset() {
*x = AutoUpdateVersionSpec{}
if protoimpl.UnsafeEnabled {
- mi := &file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[3]
+ mi := &file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -272,7 +319,7 @@ func (x *AutoUpdateVersionSpec) String() string {
func (*AutoUpdateVersionSpec) ProtoMessage() {}
func (x *AutoUpdateVersionSpec) ProtoReflect() protoreflect.Message {
- mi := &file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[3]
+ mi := &file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -285,12 +332,62 @@ func (x *AutoUpdateVersionSpec) ProtoReflect() protoreflect.Message {
// Deprecated: Use AutoUpdateVersionSpec.ProtoReflect.Descriptor instead.
func (*AutoUpdateVersionSpec) Descriptor() ([]byte, []int) {
- return file_teleport_autoupdate_v1_autoupdate_proto_rawDescGZIP(), []int{3}
+ return file_teleport_autoupdate_v1_autoupdate_proto_rawDescGZIP(), []int{4}
+}
+
+func (x *AutoUpdateVersionSpec) GetTools() *AutoUpdateVersionSpecTools {
+ if x != nil {
+ return x.Tools
+ }
+ return nil
}
-func (x *AutoUpdateVersionSpec) GetToolsVersion() string {
+// AutoUpdateVersionSpecTools encodes the parameters for client tools auto updates.
+type AutoUpdateVersionSpecTools struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
+ // TargetVersion specifies the semantic version required for tools to establish a connection with the cluster.
+ // Client tools after connection to the cluster going to be updated to this version automatically.
+ TargetVersion string `protobuf:"bytes,1,opt,name=target_version,json=targetVersion,proto3" json:"target_version,omitempty"`
+}
+
+func (x *AutoUpdateVersionSpecTools) Reset() {
+ *x = AutoUpdateVersionSpecTools{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[5]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *AutoUpdateVersionSpecTools) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*AutoUpdateVersionSpecTools) ProtoMessage() {}
+
+func (x *AutoUpdateVersionSpecTools) ProtoReflect() protoreflect.Message {
+ mi := &file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[5]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use AutoUpdateVersionSpecTools.ProtoReflect.Descriptor instead.
+func (*AutoUpdateVersionSpecTools) Descriptor() ([]byte, []int) {
+ return file_teleport_autoupdate_v1_autoupdate_proto_rawDescGZIP(), []int{5}
+}
+
+func (x *AutoUpdateVersionSpecTools) GetTargetVersion() string {
if x != nil {
- return x.ToolsVersion
+ return x.TargetVersion
}
return ""
}
@@ -317,35 +414,50 @@ var file_teleport_autoupdate_v1_autoupdate_proto_rawDesc = []byte{
0x73, 0x70, 0x65, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x74, 0x65, 0x6c,
0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x61, 0x75, 0x74, 0x6f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x53, 0x70, 0x65, 0x63, 0x52, 0x04, 0x73, 0x70, 0x65, 0x63, 0x22, 0x41,
+ 0x6e, 0x66, 0x69, 0x67, 0x53, 0x70, 0x65, 0x63, 0x52, 0x04, 0x73, 0x70, 0x65, 0x63, 0x22, 0x77,
0x0a, 0x14, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66,
- 0x69, 0x67, 0x53, 0x70, 0x65, 0x63, 0x12, 0x29, 0x0a, 0x10, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x5f,
- 0x61, 0x75, 0x74, 0x6f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x0f, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x41, 0x75, 0x74, 0x6f, 0x75, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x22, 0xd9, 0x01, 0x0a, 0x11, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73,
- 0x75, 0x62, 0x5f, 0x6b, 0x69, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73,
- 0x75, 0x62, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x12, 0x38, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x68, 0x65,
- 0x61, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
- 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x41, 0x0a, 0x04, 0x73, 0x70,
- 0x65, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70,
- 0x6f, 0x72, 0x74, 0x2e, 0x61, 0x75, 0x74, 0x6f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x76,
- 0x31, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x53, 0x70, 0x65, 0x63, 0x52, 0x04, 0x73, 0x70, 0x65, 0x63, 0x22, 0x3c, 0x0a,
- 0x15, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x53, 0x70, 0x65, 0x63, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x5f,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x74,
- 0x6f, 0x6f, 0x6c, 0x73, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x56, 0x5a, 0x54, 0x67,
- 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x72, 0x61, 0x76, 0x69, 0x74,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x2f, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74,
- 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x67, 0x65, 0x6e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
- 0x6f, 0x2f, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x61, 0x75, 0x74, 0x6f, 0x75,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x76, 0x31, 0x3b, 0x61, 0x75, 0x74, 0x6f, 0x75, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x69, 0x67, 0x53, 0x70, 0x65, 0x63, 0x12, 0x47, 0x0a, 0x05, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x18,
+ 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74,
+ 0x2e, 0x61, 0x75, 0x74, 0x6f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x41,
+ 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53,
+ 0x70, 0x65, 0x63, 0x54, 0x6f, 0x6f, 0x6c, 0x73, 0x52, 0x05, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x4a,
+ 0x04, 0x08, 0x01, 0x10, 0x02, 0x52, 0x10, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x5f, 0x61, 0x75, 0x74,
+ 0x6f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x22, 0x2f, 0x0a, 0x19, 0x41, 0x75, 0x74, 0x6f, 0x55,
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x70, 0x65, 0x63, 0x54,
+ 0x6f, 0x6f, 0x6c, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x22, 0xd9, 0x01, 0x0a, 0x11, 0x41, 0x75, 0x74,
+ 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x12,
+ 0x0a, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6b, 0x69,
+ 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x75, 0x62, 0x5f, 0x6b, 0x69, 0x6e, 0x64, 0x18, 0x02,
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x62, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x18, 0x0a,
+ 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
+ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64,
+ 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x74, 0x65, 0x6c, 0x65,
+ 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x4d,
+ 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74,
+ 0x61, 0x12, 0x41, 0x0a, 0x04, 0x73, 0x70, 0x65, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x2d, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x61, 0x75, 0x74, 0x6f, 0x75,
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64,
+ 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x70, 0x65, 0x63, 0x52, 0x04,
+ 0x73, 0x70, 0x65, 0x63, 0x22, 0x76, 0x0a, 0x15, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x70, 0x65, 0x63, 0x12, 0x48, 0x0a,
+ 0x05, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x74,
+ 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x61, 0x75, 0x74, 0x6f, 0x75, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
+ 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x70, 0x65, 0x63, 0x54, 0x6f, 0x6f, 0x6c, 0x73,
+ 0x52, 0x05, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x4a, 0x04, 0x08, 0x01, 0x10, 0x02, 0x52, 0x0d, 0x74,
+ 0x6f, 0x6f, 0x6c, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x43, 0x0a, 0x1a,
+ 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x53, 0x70, 0x65, 0x63, 0x54, 0x6f, 0x6f, 0x6c, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x74, 0x61,
+ 0x72, 0x67, 0x65, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x0d, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x42, 0x56, 0x5a, 0x54, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
+ 0x67, 0x72, 0x61, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x2f, 0x74, 0x65,
+ 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x67, 0x65, 0x6e, 0x2f, 0x70,
+ 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x2f, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74,
+ 0x2f, 0x61, 0x75, 0x74, 0x6f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x76, 0x31, 0x3b, 0x61,
+ 0x75, 0x74, 0x6f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x33,
}
var (
@@ -360,24 +472,28 @@ func file_teleport_autoupdate_v1_autoupdate_proto_rawDescGZIP() []byte {
return file_teleport_autoupdate_v1_autoupdate_proto_rawDescData
}
-var file_teleport_autoupdate_v1_autoupdate_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
+var file_teleport_autoupdate_v1_autoupdate_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
var file_teleport_autoupdate_v1_autoupdate_proto_goTypes = []any{
- (*AutoUpdateConfig)(nil), // 0: teleport.autoupdate.v1.AutoUpdateConfig
- (*AutoUpdateConfigSpec)(nil), // 1: teleport.autoupdate.v1.AutoUpdateConfigSpec
- (*AutoUpdateVersion)(nil), // 2: teleport.autoupdate.v1.AutoUpdateVersion
- (*AutoUpdateVersionSpec)(nil), // 3: teleport.autoupdate.v1.AutoUpdateVersionSpec
- (*v1.Metadata)(nil), // 4: teleport.header.v1.Metadata
+ (*AutoUpdateConfig)(nil), // 0: teleport.autoupdate.v1.AutoUpdateConfig
+ (*AutoUpdateConfigSpec)(nil), // 1: teleport.autoupdate.v1.AutoUpdateConfigSpec
+ (*AutoUpdateConfigSpecTools)(nil), // 2: teleport.autoupdate.v1.AutoUpdateConfigSpecTools
+ (*AutoUpdateVersion)(nil), // 3: teleport.autoupdate.v1.AutoUpdateVersion
+ (*AutoUpdateVersionSpec)(nil), // 4: teleport.autoupdate.v1.AutoUpdateVersionSpec
+ (*AutoUpdateVersionSpecTools)(nil), // 5: teleport.autoupdate.v1.AutoUpdateVersionSpecTools
+ (*v1.Metadata)(nil), // 6: teleport.header.v1.Metadata
}
var file_teleport_autoupdate_v1_autoupdate_proto_depIdxs = []int32{
- 4, // 0: teleport.autoupdate.v1.AutoUpdateConfig.metadata:type_name -> teleport.header.v1.Metadata
+ 6, // 0: teleport.autoupdate.v1.AutoUpdateConfig.metadata:type_name -> teleport.header.v1.Metadata
1, // 1: teleport.autoupdate.v1.AutoUpdateConfig.spec:type_name -> teleport.autoupdate.v1.AutoUpdateConfigSpec
- 4, // 2: teleport.autoupdate.v1.AutoUpdateVersion.metadata:type_name -> teleport.header.v1.Metadata
- 3, // 3: teleport.autoupdate.v1.AutoUpdateVersion.spec:type_name -> teleport.autoupdate.v1.AutoUpdateVersionSpec
- 4, // [4:4] is the sub-list for method output_type
- 4, // [4:4] is the sub-list for method input_type
- 4, // [4:4] is the sub-list for extension type_name
- 4, // [4:4] is the sub-list for extension extendee
- 0, // [0:4] is the sub-list for field type_name
+ 2, // 2: teleport.autoupdate.v1.AutoUpdateConfigSpec.tools:type_name -> teleport.autoupdate.v1.AutoUpdateConfigSpecTools
+ 6, // 3: teleport.autoupdate.v1.AutoUpdateVersion.metadata:type_name -> teleport.header.v1.Metadata
+ 4, // 4: teleport.autoupdate.v1.AutoUpdateVersion.spec:type_name -> teleport.autoupdate.v1.AutoUpdateVersionSpec
+ 5, // 5: teleport.autoupdate.v1.AutoUpdateVersionSpec.tools:type_name -> teleport.autoupdate.v1.AutoUpdateVersionSpecTools
+ 6, // [6:6] is the sub-list for method output_type
+ 6, // [6:6] is the sub-list for method input_type
+ 6, // [6:6] is the sub-list for extension type_name
+ 6, // [6:6] is the sub-list for extension extendee
+ 0, // [0:6] is the sub-list for field type_name
}
func init() { file_teleport_autoupdate_v1_autoupdate_proto_init() }
@@ -411,7 +527,7 @@ func file_teleport_autoupdate_v1_autoupdate_proto_init() {
}
}
file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[2].Exporter = func(v any, i int) any {
- switch v := v.(*AutoUpdateVersion); i {
+ switch v := v.(*AutoUpdateConfigSpecTools); i {
case 0:
return &v.state
case 1:
@@ -423,6 +539,18 @@ func file_teleport_autoupdate_v1_autoupdate_proto_init() {
}
}
file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[3].Exporter = func(v any, i int) any {
+ switch v := v.(*AutoUpdateVersion); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[4].Exporter = func(v any, i int) any {
switch v := v.(*AutoUpdateVersionSpec); i {
case 0:
return &v.state
@@ -434,6 +562,18 @@ func file_teleport_autoupdate_v1_autoupdate_proto_init() {
return nil
}
}
+ file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[5].Exporter = func(v any, i int) any {
+ switch v := v.(*AutoUpdateVersionSpecTools); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
}
type x struct{}
out := protoimpl.TypeBuilder{
@@ -441,7 +581,7 @@ func file_teleport_autoupdate_v1_autoupdate_proto_init() {
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_teleport_autoupdate_v1_autoupdate_proto_rawDesc,
NumEnums: 0,
- NumMessages: 4,
+ NumMessages: 6,
NumExtensions: 0,
NumServices: 0,
},
diff --git a/api/proto/teleport/autoupdate/v1/autoupdate.proto b/api/proto/teleport/autoupdate/v1/autoupdate.proto
index 1987407fe7d81..b4e557549b316 100644
--- a/api/proto/teleport/autoupdate/v1/autoupdate.proto
+++ b/api/proto/teleport/autoupdate/v1/autoupdate.proto
@@ -33,8 +33,15 @@ message AutoUpdateConfig {
// AutoUpdateConfigSpec encodes the parameters of the autoupdate config object.
message AutoUpdateConfigSpec {
- // ToolsAutoupdate encodes the feature flag to enable/disable tools autoupdates.
- bool tools_autoupdate = 1;
+ reserved 1;
+ reserved "tools_autoupdate"; // ToolsAutoupdate is replaced by tools.mode.
+ AutoUpdateConfigSpecTools tools = 2;
+}
+
+// AutoUpdateConfigSpecTools encodes the parameters for client tools auto updates.
+message AutoUpdateConfigSpecTools {
+ // Mode defines state of the client tools auto update.
+ string mode = 1;
}
// AutoUpdateVersion is a resource singleton with version required for
@@ -50,6 +57,14 @@ message AutoUpdateVersion {
// AutoUpdateVersionSpec encodes the parameters of the autoupdate versions.
message AutoUpdateVersionSpec {
- // ToolsVersion is the semantic version required for tools autoupdates.
- string tools_version = 1;
+ reserved 1;
+ reserved "tools_version"; // ToolsVersion is replaced by tools.target_version.
+ AutoUpdateVersionSpecTools tools = 2;
+}
+
+// AutoUpdateVersionSpecTools encodes the parameters for client tools auto updates.
+message AutoUpdateVersionSpecTools {
+ // TargetVersion specifies the semantic version required for tools to establish a connection with the cluster.
+ // Client tools after connection to the cluster going to be updated to this version automatically.
+ string target_version = 1;
}
diff --git a/api/proto/teleport/legacy/types/events/events.proto b/api/proto/teleport/legacy/types/events/events.proto
index 406f3f3130516..bbe13a65cacbe 100644
--- a/api/proto/teleport/legacy/types/events/events.proto
+++ b/api/proto/teleport/legacy/types/events/events.proto
@@ -6928,6 +6928,13 @@ message AutoUpdateConfigCreate {
(gogoproto.embed) = true,
(gogoproto.jsontag) = ""
];
+
+ // Status indicates whether the creation was successful.
+ Status Status = 5 [
+ (gogoproto.nullable) = false,
+ (gogoproto.embed) = true,
+ (gogoproto.jsontag) = ""
+ ];
}
// AutoUpdateConfigUpdate is emitted when an auto update config is updated.
@@ -6959,6 +6966,13 @@ message AutoUpdateConfigUpdate {
(gogoproto.embed) = true,
(gogoproto.jsontag) = ""
];
+
+ // ResourceMetadata is a common resource event metadata
+ ResourceMetadata Resource = 5 [
+ (gogoproto.nullable) = false,
+ (gogoproto.embed) = true,
+ (gogoproto.jsontag) = ""
+ ];
}
// AutoUpdateConfigDelete is emitted when an auto update config is deleted.
@@ -6990,6 +7004,13 @@ message AutoUpdateConfigDelete {
(gogoproto.embed) = true,
(gogoproto.jsontag) = ""
];
+
+ // Status indicates whether the deletion was successful.
+ Status Status = 5 [
+ (gogoproto.nullable) = false,
+ (gogoproto.embed) = true,
+ (gogoproto.jsontag) = ""
+ ];
}
// AutoUpdateVersionCreate is emitted when an auto update version is created.
@@ -7021,6 +7042,13 @@ message AutoUpdateVersionCreate {
(gogoproto.embed) = true,
(gogoproto.jsontag) = ""
];
+
+ // Status indicates whether the creation was successful.
+ Status Status = 5 [
+ (gogoproto.nullable) = false,
+ (gogoproto.embed) = true,
+ (gogoproto.jsontag) = ""
+ ];
}
// AutoUpdateVersionUpdate is emitted when an auto update version is updated.
@@ -7052,6 +7080,13 @@ message AutoUpdateVersionUpdate {
(gogoproto.embed) = true,
(gogoproto.jsontag) = ""
];
+
+ // ResourceMetadata is a common resource event metadata
+ ResourceMetadata Resource = 5 [
+ (gogoproto.nullable) = false,
+ (gogoproto.embed) = true,
+ (gogoproto.jsontag) = ""
+ ];
}
// AutoUpdateVersionDelete is emitted when an auto update version is deleted.
@@ -7083,6 +7118,13 @@ message AutoUpdateVersionDelete {
(gogoproto.embed) = true,
(gogoproto.jsontag) = ""
];
+
+ // Status indicates whether the deletion was successful.
+ Status Status = 5 [
+ (gogoproto.nullable) = false,
+ (gogoproto.embed) = true,
+ (gogoproto.jsontag) = ""
+ ];
}
// StaticHostUserCreate is emitted when a static host user is created.
diff --git a/api/types/autoupdate/config.go b/api/types/autoupdate/config.go
index 5be3db89fd0c5..d61c35eccf0c2 100644
--- a/api/types/autoupdate/config.go
+++ b/api/types/autoupdate/config.go
@@ -26,6 +26,13 @@ import (
"github.com/gravitational/teleport/api/types"
)
+const (
+ // ToolsUpdateModeEnabled enables client tools automatic updates.
+ ToolsUpdateModeEnabled = "enabled"
+ // ToolsUpdateModeDisabled disables client tools automatic updates.
+ ToolsUpdateModeDisabled = "disabled"
+)
+
// NewAutoUpdateConfig creates a new auto update configuration resource.
func NewAutoUpdateConfig(spec *autoupdate.AutoUpdateConfigSpec) (*autoupdate.AutoUpdateConfig, error) {
config := &autoupdate.AutoUpdateConfig{
@@ -58,6 +65,11 @@ func ValidateAutoUpdateConfig(c *autoupdate.AutoUpdateConfig) error {
if c.Spec == nil {
return trace.BadParameter("Spec is nil")
}
+ if c.Spec.Tools != nil {
+ if c.Spec.Tools.Mode != ToolsUpdateModeDisabled && c.Spec.Tools.Mode != ToolsUpdateModeEnabled {
+ return trace.BadParameter("ToolsMode is not valid")
+ }
+ }
return nil
}
diff --git a/api/types/autoupdate/config_test.go b/api/types/autoupdate/config_test.go
index 2ee33dc5bf2b3..443d6f246fa56 100644
--- a/api/types/autoupdate/config_test.go
+++ b/api/types/autoupdate/config_test.go
@@ -41,7 +41,9 @@ func TestNewAutoUpdateConfig(t *testing.T) {
{
name: "success tools autoupdate disabled",
spec: &autoupdate.AutoUpdateConfigSpec{
- ToolsAutoupdate: false,
+ Tools: &autoupdate.AutoUpdateConfigSpecTools{
+ Mode: ToolsUpdateModeDisabled,
+ },
},
assertErr: func(t *testing.T, err error, a ...any) {
require.NoError(t, err)
@@ -53,14 +55,18 @@ func TestNewAutoUpdateConfig(t *testing.T) {
Name: types.MetaNameAutoUpdateConfig,
},
Spec: &autoupdate.AutoUpdateConfigSpec{
- ToolsAutoupdate: false,
+ Tools: &autoupdate.AutoUpdateConfigSpecTools{
+ Mode: ToolsUpdateModeDisabled,
+ },
},
},
},
{
name: "success tools autoupdate enabled",
spec: &autoupdate.AutoUpdateConfigSpec{
- ToolsAutoupdate: true,
+ Tools: &autoupdate.AutoUpdateConfigSpecTools{
+ Mode: ToolsUpdateModeEnabled,
+ },
},
assertErr: func(t *testing.T, err error, a ...any) {
require.NoError(t, err)
@@ -72,7 +78,9 @@ func TestNewAutoUpdateConfig(t *testing.T) {
Name: types.MetaNameAutoUpdateConfig,
},
Spec: &autoupdate.AutoUpdateConfigSpec{
- ToolsAutoupdate: true,
+ Tools: &autoupdate.AutoUpdateConfigSpecTools{
+ Mode: ToolsUpdateModeEnabled,
+ },
},
},
},
@@ -83,6 +91,17 @@ func TestNewAutoUpdateConfig(t *testing.T) {
require.ErrorContains(t, err, "Spec is nil")
},
},
+ {
+ name: "invalid tools mode",
+ spec: &autoupdate.AutoUpdateConfigSpec{
+ Tools: &autoupdate.AutoUpdateConfigSpecTools{
+ Mode: "invalid-mode",
+ },
+ },
+ assertErr: func(t *testing.T, err error, a ...any) {
+ require.ErrorContains(t, err, "ToolsMode is not valid")
+ },
+ },
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
diff --git a/api/types/autoupdate/version.go b/api/types/autoupdate/version.go
index 088171a072ae3..ad2d12f265949 100644
--- a/api/types/autoupdate/version.go
+++ b/api/types/autoupdate/version.go
@@ -60,11 +60,13 @@ func ValidateAutoUpdateVersion(v *autoupdate.AutoUpdateVersion) error {
return trace.BadParameter("Spec is nil")
}
- if v.Spec.ToolsVersion == "" {
- return trace.BadParameter("ToolsVersion is unset")
- }
- if _, err := semver.NewVersion(v.Spec.ToolsVersion); err != nil {
- return trace.BadParameter("ToolsVersion is not a valid semantic version")
+ if v.Spec.Tools != nil {
+ if v.Spec.Tools.TargetVersion == "" {
+ return trace.BadParameter("TargetVersion is unset")
+ }
+ if _, err := semver.NewVersion(v.Spec.Tools.TargetVersion); err != nil {
+ return trace.BadParameter("TargetVersion is not a valid semantic version")
+ }
}
return nil
diff --git a/api/types/autoupdate/version_test.go b/api/types/autoupdate/version_test.go
index 5fe4f167a037e..70790a204b219 100644
--- a/api/types/autoupdate/version_test.go
+++ b/api/types/autoupdate/version_test.go
@@ -41,7 +41,9 @@ func TestNewAutoUpdateVersion(t *testing.T) {
{
name: "success tools autoupdate version",
spec: &autoupdate.AutoUpdateVersionSpec{
- ToolsVersion: "1.2.3-dev",
+ Tools: &autoupdate.AutoUpdateVersionSpecTools{
+ TargetVersion: "1.2.3-dev",
+ },
},
assertErr: func(t *testing.T, err error, a ...any) {
require.NoError(t, err)
@@ -53,26 +55,32 @@ func TestNewAutoUpdateVersion(t *testing.T) {
Name: types.MetaNameAutoUpdateVersion,
},
Spec: &autoupdate.AutoUpdateVersionSpec{
- ToolsVersion: "1.2.3-dev",
+ Tools: &autoupdate.AutoUpdateVersionSpecTools{
+ TargetVersion: "1.2.3-dev",
+ },
},
},
},
{
name: "invalid empty tools version",
spec: &autoupdate.AutoUpdateVersionSpec{
- ToolsVersion: "",
+ Tools: &autoupdate.AutoUpdateVersionSpecTools{
+ TargetVersion: "",
+ },
},
assertErr: func(t *testing.T, err error, a ...any) {
- require.ErrorContains(t, err, "ToolsVersion is unset")
+ require.ErrorContains(t, err, "TargetVersion is unset")
},
},
{
name: "invalid semantic tools version",
spec: &autoupdate.AutoUpdateVersionSpec{
- ToolsVersion: "17-0-0",
+ Tools: &autoupdate.AutoUpdateVersionSpecTools{
+ TargetVersion: "17-0-0",
+ },
},
assertErr: func(t *testing.T, err error, a ...any) {
- require.ErrorContains(t, err, "ToolsVersion is not a valid semantic version")
+ require.ErrorContains(t, err, "TargetVersion is not a valid semantic version")
},
},
{
diff --git a/api/types/events/events.go b/api/types/events/events.go
index 4c1e561c7e2f1..105d92468d383 100644
--- a/api/types/events/events.go
+++ b/api/types/events/events.go
@@ -2302,3 +2302,27 @@ func (m *UserTaskUpdate) TrimToMaxSize(_ int) AuditEvent {
func (m *UserTaskDelete) TrimToMaxSize(_ int) AuditEvent {
return m
}
+
+func (m *AutoUpdateConfigCreate) TrimToMaxSize(_ int) AuditEvent {
+ return m
+}
+
+func (m *AutoUpdateConfigUpdate) TrimToMaxSize(_ int) AuditEvent {
+ return m
+}
+
+func (m *AutoUpdateConfigDelete) TrimToMaxSize(_ int) AuditEvent {
+ return m
+}
+
+func (m *AutoUpdateVersionCreate) TrimToMaxSize(_ int) AuditEvent {
+ return m
+}
+
+func (m *AutoUpdateVersionUpdate) TrimToMaxSize(_ int) AuditEvent {
+ return m
+}
+
+func (m *AutoUpdateVersionDelete) TrimToMaxSize(_ int) AuditEvent {
+ return m
+}
diff --git a/api/types/events/events.pb.go b/api/types/events/events.pb.go
index 713ab1e144f3c..4d4aadb8c7cf1 100644
--- a/api/types/events/events.pb.go
+++ b/api/types/events/events.pb.go
@@ -13960,7 +13960,9 @@ type AutoUpdateConfigCreate struct {
// User is a common user event metadata
UserMetadata `protobuf:"bytes,3,opt,name=User,proto3,embedded=User" json:""`
// ConnectionMetadata holds information about the connection
- ConnectionMetadata `protobuf:"bytes,4,opt,name=Connection,proto3,embedded=Connection" json:""`
+ ConnectionMetadata `protobuf:"bytes,4,opt,name=Connection,proto3,embedded=Connection" json:""`
+ // Status indicates whether the creation was successful.
+ Status `protobuf:"bytes,5,opt,name=Status,proto3,embedded=Status" json:""`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -14008,7 +14010,9 @@ type AutoUpdateConfigUpdate struct {
// User is a common user event metadata
UserMetadata `protobuf:"bytes,3,opt,name=User,proto3,embedded=User" json:""`
// ConnectionMetadata holds information about the connection
- ConnectionMetadata `protobuf:"bytes,4,opt,name=Connection,proto3,embedded=Connection" json:""`
+ ConnectionMetadata `protobuf:"bytes,4,opt,name=Connection,proto3,embedded=Connection" json:""`
+ // ResourceMetadata is a common resource event metadata
+ ResourceMetadata `protobuf:"bytes,5,opt,name=Resource,proto3,embedded=Resource" json:""`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -14056,7 +14060,9 @@ type AutoUpdateConfigDelete struct {
// User is a common user event metadata
UserMetadata `protobuf:"bytes,3,opt,name=User,proto3,embedded=User" json:""`
// ConnectionMetadata holds information about the connection
- ConnectionMetadata `protobuf:"bytes,4,opt,name=Connection,proto3,embedded=Connection" json:""`
+ ConnectionMetadata `protobuf:"bytes,4,opt,name=Connection,proto3,embedded=Connection" json:""`
+ // Status indicates whether the deletion was successful.
+ Status `protobuf:"bytes,5,opt,name=Status,proto3,embedded=Status" json:""`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -14104,7 +14110,9 @@ type AutoUpdateVersionCreate struct {
// User is a common user event metadata
UserMetadata `protobuf:"bytes,3,opt,name=User,proto3,embedded=User" json:""`
// ConnectionMetadata holds information about the connection
- ConnectionMetadata `protobuf:"bytes,4,opt,name=Connection,proto3,embedded=Connection" json:""`
+ ConnectionMetadata `protobuf:"bytes,4,opt,name=Connection,proto3,embedded=Connection" json:""`
+ // Status indicates whether the creation was successful.
+ Status `protobuf:"bytes,5,opt,name=Status,proto3,embedded=Status" json:""`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -14152,7 +14160,9 @@ type AutoUpdateVersionUpdate struct {
// User is a common user event metadata
UserMetadata `protobuf:"bytes,3,opt,name=User,proto3,embedded=User" json:""`
// ConnectionMetadata holds information about the connection
- ConnectionMetadata `protobuf:"bytes,4,opt,name=Connection,proto3,embedded=Connection" json:""`
+ ConnectionMetadata `protobuf:"bytes,4,opt,name=Connection,proto3,embedded=Connection" json:""`
+ // ResourceMetadata is a common resource event metadata
+ ResourceMetadata `protobuf:"bytes,5,opt,name=Resource,proto3,embedded=Resource" json:""`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -14200,7 +14210,9 @@ type AutoUpdateVersionDelete struct {
// User is a common user event metadata
UserMetadata `protobuf:"bytes,3,opt,name=User,proto3,embedded=User" json:""`
// ConnectionMetadata holds information about the connection
- ConnectionMetadata `protobuf:"bytes,4,opt,name=Connection,proto3,embedded=Connection" json:""`
+ ConnectionMetadata `protobuf:"bytes,4,opt,name=Connection,proto3,embedded=Connection" json:""`
+ // Status indicates whether the deletion was successful.
+ Status `protobuf:"bytes,5,opt,name=Status,proto3,embedded=Status" json:""`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -15011,1046 +15023,1046 @@ func init() {
}
var fileDescriptor_007ba1c3d6266d56 = []byte{
- // 16613 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x6b, 0x78, 0x24, 0x49,
- 0x72, 0x18, 0x86, 0x7e, 0xa0, 0xd1, 0x08, 0x3c, 0x06, 0x93, 0xf3, 0xaa, 0x9d, 0x9d, 0x1d, 0xec,
- 0xd6, 0xde, 0xcd, 0xcd, 0xec, 0xed, 0xce, 0xdc, 0xce, 0xce, 0xee, 0xde, 0xbe, 0x6e, 0xaf, 0x81,
- 0x06, 0x06, 0x3d, 0x83, 0xd7, 0x56, 0x63, 0x66, 0x6e, 0x8f, 0xbc, 0x6b, 0x16, 0xba, 0x12, 0x40,
- 0x2d, 0xba, 0xab, 0x9a, 0x55, 0xd5, 0x83, 0xc1, 0xfa, 0xc5, 0x93, 0x29, 0x8a, 0x14, 0xef, 0x4e,
- 0xe7, 0xa3, 0x29, 0x52, 0xa2, 0x6c, 0x91, 0x7a, 0xd8, 0x14, 0x4d, 0x91, 0xa2, 0x44, 0xf3, 0x21,
- 0xe9, 0x6c, 0xc9, 0xe7, 0xc7, 0x89, 0xfc, 0xcc, 0x4f, 0x92, 0x6d, 0x7d, 0xfa, 0x6c, 0x19, 0x27,
- 0xd3, 0xd6, 0x1f, 0x7c, 0xf6, 0xf7, 0xd1, 0xf6, 0x7d, 0xd6, 0x59, 0x96, 0xfd, 0xf9, 0xcb, 0xc8,
- 0xac, 0xaa, 0xac, 0x57, 0xe3, 0xb9, 0xc2, 0xe2, 0x80, 0x3f, 0x33, 0xe8, 0x88, 0xc8, 0xc8, 0xac,
- 0xc8, 0xc8, 0xcc, 0xc8, 0xcc, 0xc8, 0x08, 0xb8, 0xe1, 0xd1, 0x16, 0xed, 0xd8, 0x8e, 0x77, 0xab,
- 0x45, 0x57, 0xf5, 0xe6, 0xe6, 0x2d, 0x6f, 0xb3, 0x43, 0xdd, 0x5b, 0xf4, 0x31, 0xb5, 0x3c, 0xff,
- 0xbf, 0x9b, 0x1d, 0xc7, 0xf6, 0x6c, 0x52, 0xe2, 0xbf, 0x2e, 0x9f, 0x5f, 0xb5, 0x57, 0x6d, 0x04,
- 0xdd, 0x62, 0x7f, 0x71, 0xec, 0xe5, 0x2b, 0xab, 0xb6, 0xbd, 0xda, 0xa2, 0xb7, 0xf0, 0xd7, 0x72,
- 0x77, 0xe5, 0x96, 0xeb, 0x39, 0xdd, 0xa6, 0x27, 0xb0, 0xe3, 0x71, 0xac, 0x67, 0xb6, 0xa9, 0xeb,
- 0xe9, 0xed, 0x8e, 0x20, 0xb8, 0x1a, 0x27, 0xd8, 0x70, 0xf4, 0x4e, 0x87, 0x3a, 0xa2, 0xf2, 0xcb,
- 0xcf, 0xa5, 0xb7, 0x13, 0xff, 0x15, 0x24, 0x2f, 0xa5, 0x93, 0xf8, 0x8c, 0x62, 0x1c, 0xd5, 0x6f,
- 0xe6, 0xa1, 0x3c, 0x47, 0x3d, 0xdd, 0xd0, 0x3d, 0x9d, 0x5c, 0x81, 0xfe, 0x9a, 0x65, 0xd0, 0x27,
- 0x4a, 0xee, 0xd9, 0xdc, 0xf5, 0xc2, 0x44, 0x69, 0x7b, 0x6b, 0x3c, 0x4f, 0x4d, 0x8d, 0x03, 0xc9,
- 0x33, 0x50, 0x5c, 0xda, 0xec, 0x50, 0x25, 0xff, 0x6c, 0xee, 0xfa, 0xe0, 0xc4, 0xe0, 0xf6, 0xd6,
- 0x78, 0x3f, 0xca, 0x42, 0x43, 0x30, 0x79, 0x0e, 0xf2, 0xb5, 0xaa, 0x52, 0x40, 0xe4, 0xd9, 0xed,
- 0xad, 0xf1, 0x91, 0xae, 0x69, 0xbc, 0x68, 0xb7, 0x4d, 0x8f, 0xb6, 0x3b, 0xde, 0xa6, 0x96, 0xaf,
- 0x55, 0xc9, 0x35, 0x28, 0x4e, 0xda, 0x06, 0x55, 0x8a, 0x48, 0x44, 0xb6, 0xb7, 0xc6, 0x47, 0x9b,
- 0xb6, 0x41, 0x25, 0x2a, 0xc4, 0x93, 0xcf, 0x43, 0x71, 0xc9, 0x6c, 0x53, 0xa5, 0xff, 0xd9, 0xdc,
- 0xf5, 0xa1, 0xdb, 0x97, 0x6f, 0x72, 0xa9, 0xdc, 0xf4, 0xa5, 0x72, 0x73, 0xc9, 0x17, 0xdb, 0xc4,
- 0xd8, 0x77, 0xb6, 0xc6, 0xfb, 0xb6, 0xb7, 0xc6, 0x8b, 0x4c, 0x92, 0xdf, 0xf8, 0xee, 0x78, 0x4e,
- 0xc3, 0x92, 0xe4, 0x6d, 0x18, 0x9a, 0x6c, 0x75, 0x5d, 0x8f, 0x3a, 0xf3, 0x7a, 0x9b, 0x2a, 0x25,
- 0xac, 0xf0, 0xf2, 0xf6, 0xd6, 0xf8, 0xc5, 0x26, 0x07, 0x37, 0x2c, 0xbd, 0x2d, 0x57, 0x2c, 0x93,
- 0xab, 0xbf, 0x93, 0x83, 0x33, 0x75, 0xea, 0xba, 0xa6, 0x6d, 0x05, 0xb2, 0xf9, 0x24, 0x0c, 0x0a,
- 0x50, 0xad, 0x8a, 0xf2, 0x19, 0x9c, 0x18, 0xd8, 0xde, 0x1a, 0x2f, 0xb8, 0xa6, 0xa1, 0x85, 0x18,
- 0xf2, 0x19, 0x18, 0x78, 0x64, 0x7a, 0x6b, 0x73, 0xd3, 0x15, 0x21, 0xa7, 0x8b, 0xdb, 0x5b, 0xe3,
- 0x64, 0xc3, 0xf4, 0xd6, 0x1a, 0xed, 0x15, 0x5d, 0xaa, 0xd0, 0x27, 0x23, 0xb3, 0x30, 0xb6, 0xe8,
- 0x98, 0x8f, 0x75, 0x8f, 0xde, 0xa7, 0x9b, 0x8b, 0x76, 0xcb, 0x6c, 0x6e, 0x0a, 0x29, 0x3e, 0xbb,
- 0xbd, 0x35, 0x7e, 0xa5, 0xc3, 0x71, 0x8d, 0x75, 0xba, 0xd9, 0xe8, 0x20, 0x56, 0x62, 0x92, 0x28,
- 0xa9, 0xfe, 0xcd, 0x12, 0x0c, 0x3f, 0x70, 0xa9, 0x13, 0xb4, 0xfb, 0x1a, 0x14, 0xd9, 0x6f, 0xd1,
- 0x64, 0x94, 0x79, 0xd7, 0xa5, 0x8e, 0x2c, 0x73, 0x86, 0x27, 0x37, 0xa0, 0x7f, 0xd6, 0x5e, 0x35,
- 0x2d, 0xd1, 0xec, 0x73, 0xdb, 0x5b, 0xe3, 0x67, 0x5a, 0x0c, 0x20, 0x51, 0x72, 0x0a, 0xf2, 0x39,
- 0x18, 0xae, 0xb5, 0x99, 0x0e, 0xd9, 0x96, 0xee, 0xd9, 0x8e, 0x68, 0x2d, 0x4a, 0xd7, 0x94, 0xe0,
- 0x52, 0xc1, 0x08, 0x3d, 0x79, 0x13, 0xa0, 0xf2, 0xa8, 0xae, 0xd9, 0x2d, 0x5a, 0xd1, 0xe6, 0x85,
- 0x32, 0x60, 0x69, 0x7d, 0xc3, 0x6d, 0x38, 0x76, 0x8b, 0x36, 0x74, 0x47, 0xae, 0x56, 0xa2, 0x26,
- 0x53, 0x30, 0x5a, 0x69, 0x36, 0xa9, 0xeb, 0x6a, 0xf4, 0x47, 0xbb, 0xd4, 0xf5, 0x5c, 0xa5, 0xff,
- 0xd9, 0xc2, 0xf5, 0xc1, 0x89, 0x67, 0xb6, 0xb7, 0xc6, 0x9f, 0xd2, 0x11, 0xd3, 0x70, 0x04, 0x4a,
- 0x62, 0x11, 0x2b, 0x44, 0x26, 0x60, 0xa4, 0xf2, 0x61, 0xd7, 0xa1, 0x35, 0x83, 0x5a, 0x9e, 0xe9,
- 0x6d, 0x0a, 0x0d, 0xb9, 0xb2, 0xbd, 0x35, 0xae, 0xe8, 0x0c, 0xd1, 0x30, 0x05, 0x46, 0x62, 0x12,
- 0x2d, 0x42, 0x16, 0xe0, 0xec, 0xdd, 0xc9, 0xc5, 0x3a, 0x75, 0x1e, 0x9b, 0x4d, 0x5a, 0x69, 0x36,
- 0xed, 0xae, 0xe5, 0x29, 0x03, 0xc8, 0xe7, 0xb9, 0xed, 0xad, 0xf1, 0x67, 0x56, 0x9b, 0x9d, 0x86,
- 0xcb, 0xb1, 0x0d, 0x9d, 0xa3, 0x25, 0x66, 0xc9, 0xb2, 0xe4, 0x8b, 0x30, 0xb2, 0xe4, 0x30, 0x2d,
- 0x34, 0xaa, 0x94, 0xc1, 0x95, 0x32, 0xea, 0xff, 0xc5, 0x9b, 0x62, 0x02, 0xe2, 0x50, 0xbf, 0x67,
- 0x79, 0x63, 0x3d, 0x5e, 0xa0, 0x61, 0x20, 0x4e, 0x6e, 0x6c, 0x84, 0x15, 0xa1, 0xa0, 0xb0, 0x8f,
- 0x37, 0x1d, 0x6a, 0x24, 0xb4, 0x6d, 0x10, 0xdb, 0x7c, 0x63, 0x7b, 0x6b, 0xfc, 0x93, 0x8e, 0xa0,
- 0x69, 0xf4, 0x54, 0xbb, 0x4c, 0x56, 0x64, 0x0a, 0xca, 0x4c, 0x9b, 0xee, 0x9b, 0x96, 0xa1, 0xc0,
- 0xb3, 0xb9, 0xeb, 0xa3, 0xb7, 0xc7, 0xfc, 0xd6, 0xfb, 0xf0, 0x89, 0x4b, 0xdb, 0x5b, 0xe3, 0xe7,
- 0x98, 0x0e, 0x36, 0xd6, 0x4d, 0x4b, 0x9e, 0x22, 0x82, 0xa2, 0x6c, 0x14, 0x4d, 0xd8, 0x1e, 0x0e,
- 0xdd, 0xa1, 0x70, 0x14, 0x2d, 0xdb, 0x5e, 0x7c, 0xd8, 0xfa, 0x64, 0x64, 0x12, 0x46, 0x26, 0x6c,
- 0xaf, 0x66, 0xb9, 0x9e, 0x6e, 0x35, 0x69, 0xad, 0xaa, 0x0c, 0x63, 0x39, 0x54, 0x0b, 0x56, 0xce,
- 0x14, 0x98, 0x46, 0x64, 0x52, 0x8a, 0x96, 0x51, 0xff, 0x79, 0x11, 0x46, 0x59, 0x9f, 0x48, 0xc3,
- 0xa7, 0xc2, 0x66, 0x02, 0x06, 0x61, 0xb5, 0xb8, 0x1d, 0xbd, 0x49, 0xc5, 0x48, 0xc2, 0xaf, 0xb0,
- 0x7c, 0xa0, 0xc4, 0x33, 0x4e, 0x4f, 0x6e, 0x40, 0x99, 0x83, 0x6a, 0x55, 0x31, 0xb8, 0x46, 0xb6,
- 0xb7, 0xc6, 0x07, 0x5d, 0x84, 0x35, 0x4c, 0x43, 0x0b, 0xd0, 0x4c, 0xbb, 0xf9, 0xdf, 0x33, 0xb6,
- 0xeb, 0x31, 0xe6, 0x62, 0x6c, 0xe1, 0x67, 0x88, 0x02, 0x6b, 0x02, 0x25, 0x6b, 0x77, 0xb4, 0x10,
- 0x79, 0x03, 0x80, 0x43, 0x2a, 0x86, 0xe1, 0x88, 0x01, 0xf6, 0xd4, 0xf6, 0xd6, 0xf8, 0x05, 0xc1,
- 0x42, 0x37, 0x0c, 0x79, 0x74, 0x4a, 0xc4, 0xa4, 0x0d, 0xc3, 0xfc, 0xd7, 0xac, 0xbe, 0x4c, 0x5b,
- 0x7c, 0x74, 0x0d, 0xdd, 0xbe, 0xee, 0x77, 0x62, 0x54, 0x3a, 0x37, 0x65, 0xd2, 0x29, 0xcb, 0x73,
- 0x36, 0x27, 0xc6, 0xc5, 0x84, 0x7c, 0x49, 0x54, 0xd5, 0x42, 0x9c, 0x3c, 0x15, 0xc8, 0x65, 0xd8,
- 0x3c, 0x3d, 0x6d, 0x3b, 0x1b, 0xba, 0x63, 0x50, 0x63, 0x62, 0x53, 0x9e, 0xa7, 0x57, 0x7c, 0x70,
- 0x63, 0x59, 0x56, 0x3d, 0x99, 0x9c, 0x75, 0x3a, 0xe7, 0x56, 0xef, 0x2e, 0xa3, 0xca, 0x0d, 0x24,
- 0xa4, 0xe5, 0x76, 0x97, 0xe3, 0x6a, 0x16, 0x2d, 0xc3, 0xa6, 0x02, 0x0e, 0x78, 0x48, 0x1d, 0x36,
- 0x89, 0xe3, 0xa8, 0x13, 0x53, 0x81, 0x60, 0xf2, 0x98, 0x63, 0x92, 0x3c, 0x44, 0x91, 0xcb, 0xef,
- 0xc2, 0xd9, 0x84, 0x28, 0xc8, 0x18, 0x14, 0xd6, 0xe9, 0x26, 0x57, 0x17, 0x8d, 0xfd, 0x49, 0xce,
- 0x43, 0xff, 0x63, 0xbd, 0xd5, 0x15, 0x4b, 0xa8, 0xc6, 0x7f, 0xbc, 0x99, 0xff, 0x6c, 0x8e, 0xad,
- 0x38, 0x64, 0xd2, 0xb6, 0x2c, 0xda, 0xf4, 0xe4, 0x45, 0xe7, 0x35, 0x18, 0x9c, 0xb5, 0x9b, 0x7a,
- 0x0b, 0xfb, 0x91, 0xeb, 0x9d, 0xb2, 0xbd, 0x35, 0x7e, 0x9e, 0x75, 0xe0, 0xcd, 0x16, 0xc3, 0x48,
- 0x6d, 0x0a, 0x49, 0x99, 0x02, 0x68, 0xb4, 0x6d, 0x7b, 0x14, 0x0b, 0xe6, 0x43, 0x05, 0xc0, 0x82,
- 0x0e, 0xa2, 0x64, 0x05, 0x08, 0x89, 0xc9, 0x2d, 0x28, 0x2f, 0xb2, 0x75, 0xb6, 0x69, 0xb7, 0x84,
- 0xf2, 0xe1, 0x52, 0x80, 0x6b, 0xaf, 0x3c, 0x56, 0x7d, 0x22, 0x75, 0x06, 0x46, 0x27, 0x5b, 0x26,
- 0xb5, 0x3c, 0xb9, 0xd5, 0x6c, 0x24, 0x57, 0x56, 0xa9, 0xe5, 0xc9, 0xad, 0xc6, 0x31, 0xaf, 0x33,
- 0xa8, 0xdc, 0xea, 0x80, 0x54, 0xfd, 0x83, 0x02, 0x3c, 0x75, 0xbf, 0xbb, 0x4c, 0x1d, 0x8b, 0x7a,
- 0xd4, 0x15, 0x0b, 0x72, 0xc0, 0x75, 0x1e, 0xce, 0x26, 0x90, 0x82, 0x3b, 0x2e, 0x94, 0xeb, 0x01,
- 0xb2, 0x21, 0xd6, 0x78, 0x79, 0xb6, 0x4d, 0x14, 0x25, 0x33, 0x70, 0x26, 0x04, 0xb2, 0x46, 0xb8,
- 0x4a, 0x1e, 0x97, 0x92, 0xab, 0xdb, 0x5b, 0xe3, 0x97, 0x25, 0x6e, 0xac, 0xd9, 0xb2, 0x06, 0xc7,
- 0x8b, 0x91, 0xfb, 0x30, 0x16, 0x82, 0xee, 0x3a, 0x76, 0xb7, 0xe3, 0x2a, 0x05, 0x64, 0x35, 0xbe,
- 0xbd, 0x35, 0xfe, 0xb4, 0xc4, 0x6a, 0x15, 0x91, 0xf2, 0x02, 0x1e, 0x2f, 0x48, 0x7e, 0x3c, 0x27,
- 0x73, 0x13, 0xa3, 0xb0, 0x88, 0xa3, 0xf0, 0x75, 0x7f, 0x14, 0x66, 0x0a, 0xe9, 0x66, 0xbc, 0xa4,
- 0x18, 0x94, 0xb1, 0x66, 0x24, 0x06, 0x65, 0xa2, 0xc6, 0xcb, 0x93, 0x70, 0x21, 0x95, 0xd7, 0x9e,
- 0xb4, 0xfa, 0x9f, 0x15, 0x64, 0x2e, 0x8b, 0xb6, 0x11, 0x74, 0xe6, 0x82, 0xdc, 0x99, 0x8b, 0xb6,
- 0x81, 0x53, 0x7d, 0x2e, 0x5c, 0x3b, 0xa5, 0xc6, 0x76, 0x6c, 0x23, 0x3e, 0xeb, 0x27, 0xcb, 0x92,
- 0x2f, 0xc3, 0xc5, 0x04, 0x90, 0x4f, 0xd7, 0x5c, 0xfb, 0xaf, 0x6d, 0x6f, 0x8d, 0xab, 0x29, 0x5c,
- 0xe3, 0xb3, 0x77, 0x06, 0x17, 0xa2, 0xc3, 0x25, 0x49, 0xea, 0xb6, 0xe5, 0xe9, 0xa6, 0x25, 0x8c,
- 0x4b, 0x3e, 0x4a, 0x3e, 0xb5, 0xbd, 0x35, 0xfe, 0xbc, 0xac, 0x83, 0x3e, 0x4d, 0xbc, 0xf1, 0x59,
- 0x7c, 0x88, 0x01, 0x4a, 0x0a, 0xaa, 0xd6, 0xd6, 0x57, 0x7d, 0x8b, 0xf9, 0xfa, 0xf6, 0xd6, 0xf8,
- 0x27, 0x52, 0xeb, 0x30, 0x19, 0x95, 0xbc, 0x42, 0x67, 0x71, 0x22, 0x1a, 0x90, 0x10, 0x37, 0x6f,
- 0x1b, 0x14, 0xbf, 0xa1, 0x1f, 0xf9, 0xab, 0xdb, 0x5b, 0xe3, 0x57, 0x25, 0xfe, 0x96, 0x6d, 0xd0,
- 0x78, 0xf3, 0x53, 0x4a, 0xab, 0xbf, 0x53, 0x80, 0xab, 0xf5, 0xca, 0xdc, 0x6c, 0xcd, 0xf0, 0x4d,
- 0x9a, 0x45, 0xc7, 0x7e, 0x6c, 0x1a, 0xd2, 0xe8, 0x5d, 0x86, 0x4b, 0x31, 0xd4, 0x14, 0x5a, 0x51,
- 0x81, 0x31, 0x8d, 0xdf, 0xe6, 0x9b, 0x4b, 0x1d, 0x41, 0xd3, 0xe0, 0xa6, 0x56, 0x74, 0xd1, 0xce,
- 0x62, 0xc4, 0xfa, 0x28, 0x86, 0xaa, 0xaf, 0xd9, 0x8e, 0xd7, 0xec, 0x7a, 0x42, 0x09, 0xb0, 0x8f,
- 0x12, 0x75, 0xb8, 0x82, 0xa8, 0x47, 0x15, 0x3e, 0x1f, 0xf2, 0x53, 0x39, 0x18, 0xab, 0x78, 0x9e,
- 0x63, 0x2e, 0x77, 0x3d, 0x3a, 0xa7, 0x77, 0x3a, 0xa6, 0xb5, 0x8a, 0x63, 0x7d, 0xe8, 0xf6, 0xdb,
- 0xc1, 0x1a, 0xd9, 0x53, 0x12, 0x37, 0xe3, 0xc5, 0xa5, 0x21, 0xaa, 0xfb, 0xa8, 0x46, 0x9b, 0xe3,
- 0xe4, 0x21, 0x1a, 0x2f, 0xc7, 0x86, 0x68, 0x2a, 0xaf, 0x3d, 0x0d, 0xd1, 0x6f, 0x16, 0xe0, 0xca,
- 0xc2, 0xba, 0xa7, 0x6b, 0xd4, 0xb5, 0xbb, 0x4e, 0x93, 0xba, 0x0f, 0x3a, 0x86, 0xee, 0xd1, 0x70,
- 0xa4, 0x8e, 0x43, 0x7f, 0xc5, 0x30, 0xa8, 0x81, 0xec, 0xfa, 0xf9, 0xb6, 0x4f, 0x67, 0x00, 0x8d,
- 0xc3, 0xc9, 0x27, 0x61, 0x40, 0x94, 0x41, 0xee, 0xfd, 0x13, 0x43, 0xdb, 0x5b, 0xe3, 0x03, 0x5d,
- 0x0e, 0xd2, 0x7c, 0x1c, 0x23, 0xab, 0xd2, 0x16, 0x65, 0x64, 0x85, 0x90, 0xcc, 0xe0, 0x20, 0xcd,
- 0xc7, 0x91, 0xf7, 0x60, 0x14, 0xd9, 0x06, 0xed, 0x11, 0x73, 0xdf, 0x79, 0x5f, 0xba, 0x72, 0x63,
- 0xf9, 0xd2, 0x84, 0xad, 0x69, 0x38, 0x7e, 0x01, 0x2d, 0xc6, 0x80, 0x3c, 0x82, 0x31, 0xd1, 0x88,
- 0x90, 0x69, 0x7f, 0x0f, 0xa6, 0x17, 0xb6, 0xb7, 0xc6, 0xcf, 0x8a, 0xf6, 0x4b, 0x6c, 0x13, 0x4c,
- 0x18, 0x63, 0xd1, 0xec, 0x90, 0x71, 0x69, 0x27, 0xc6, 0xe2, 0x8b, 0x65, 0xc6, 0x71, 0x26, 0xea,
- 0xfb, 0x30, 0x2c, 0x17, 0x24, 0x17, 0x71, 0x6b, 0xcd, 0xc7, 0x09, 0x6e, 0xca, 0x4d, 0x03, 0xf7,
- 0xd3, 0x2f, 0xc3, 0x50, 0x95, 0xba, 0x4d, 0xc7, 0xec, 0x30, 0xab, 0x41, 0x28, 0xf9, 0x99, 0xed,
- 0xad, 0xf1, 0x21, 0x23, 0x04, 0x6b, 0x32, 0x8d, 0xfa, 0x7f, 0xe5, 0xe0, 0x22, 0xe3, 0x5d, 0x71,
- 0x5d, 0x73, 0xd5, 0x6a, 0xcb, 0xcb, 0xf6, 0x8b, 0x50, 0xaa, 0x63, 0x7d, 0xa2, 0xa6, 0xf3, 0xdb,
- 0x5b, 0xe3, 0x63, 0xbc, 0x05, 0x92, 0x1e, 0x0a, 0x9a, 0x60, 0x5f, 0x99, 0xdf, 0x61, 0x5f, 0xc9,
- 0x4c, 0x5a, 0x4f, 0x77, 0x3c, 0xd3, 0x5a, 0xad, 0x7b, 0xba, 0xd7, 0x75, 0x23, 0x26, 0xad, 0xc0,
- 0x34, 0x5c, 0x44, 0x45, 0x4c, 0xda, 0x48, 0x21, 0xf2, 0x2e, 0x0c, 0x4f, 0x59, 0x46, 0xc8, 0x84,
- 0x4f, 0x88, 0x4f, 0x33, 0x4b, 0x93, 0x22, 0x3c, 0xc9, 0x22, 0x52, 0x40, 0xfd, 0xab, 0x39, 0x50,
- 0xf8, 0x26, 0x70, 0xd6, 0x74, 0xbd, 0x39, 0xda, 0x5e, 0x96, 0x66, 0xa7, 0x69, 0x7f, 0x57, 0xc9,
- 0x70, 0xd2, 0x5a, 0x84, 0xa6, 0x80, 0xd8, 0x55, 0xb6, 0x4c, 0x37, 0xb1, 0xfd, 0x88, 0x95, 0x22,
- 0x35, 0x18, 0xe0, 0x9c, 0xb9, 0x2d, 0x31, 0x74, 0x5b, 0xf1, 0x15, 0x21, 0x5e, 0x35, 0x57, 0x86,
- 0x36, 0x27, 0x96, 0x37, 0x34, 0xa2, 0xbc, 0xfa, 0xd7, 0xf2, 0x30, 0x16, 0x2f, 0x44, 0x1e, 0x41,
- 0xf9, 0x9e, 0x6d, 0x5a, 0xd4, 0x58, 0xb0, 0xb0, 0x85, 0xbd, 0x0f, 0x47, 0x7c, 0x5b, 0xfc, 0xdc,
- 0x07, 0x58, 0xa6, 0x21, 0x5b, 0xb0, 0x78, 0x56, 0x12, 0x30, 0x23, 0x5f, 0x84, 0x41, 0x66, 0x03,
- 0x3e, 0x46, 0xce, 0xf9, 0x1d, 0x39, 0x3f, 0x2b, 0x38, 0x9f, 0x77, 0x78, 0xa1, 0x24, 0xeb, 0x90,
- 0x1d, 0xd3, 0x2b, 0x8d, 0xea, 0xae, 0x6d, 0x89, 0x9e, 0x47, 0xbd, 0x72, 0x10, 0x22, 0xeb, 0x15,
- 0xa7, 0x61, 0xa6, 0x2b, 0xff, 0x58, 0xec, 0x06, 0x69, 0xef, 0xc2, 0x65, 0x15, 0xef, 0x01, 0x89,
- 0x58, 0xfd, 0x89, 0x3c, 0xbc, 0x14, 0x8a, 0x4c, 0xa3, 0x8f, 0x4d, 0xba, 0x21, 0xc4, 0xb9, 0x66,
- 0x76, 0xc4, 0x9e, 0x95, 0xa9, 0xbc, 0x3b, 0xb9, 0xa6, 0x5b, 0xab, 0xd4, 0x20, 0x37, 0xa0, 0x5f,
- 0xb3, 0x5b, 0xd4, 0x55, 0x72, 0x68, 0xae, 0xe1, 0x74, 0xe2, 0x30, 0x80, 0x7c, 0xe8, 0x81, 0x14,
- 0xc4, 0x86, 0xd2, 0x92, 0xa3, 0x9b, 0x9e, 0xdf, 0xb3, 0x95, 0x64, 0xcf, 0xee, 0xa2, 0xc6, 0x9b,
- 0x9c, 0x07, 0x9f, 0xf3, 0x51, 0x10, 0x1e, 0x02, 0x64, 0x41, 0x70, 0x92, 0xcb, 0x6f, 0xc0, 0x90,
- 0x44, 0xbc, 0xa7, 0x49, 0xfd, 0x77, 0x8b, 0xb2, 0xae, 0xfb, 0xcd, 0x12, 0xba, 0x7e, 0x8b, 0xe9,
- 0xa8, 0xeb, 0x32, 0xab, 0x82, 0x2b, 0xb9, 0xd0, 0x44, 0x04, 0x45, 0x35, 0x11, 0x41, 0xe4, 0x15,
- 0x28, 0x73, 0x16, 0xc1, 0xfe, 0x15, 0xf7, 0xbe, 0x0e, 0xc2, 0xa2, 0x4b, 0x73, 0x40, 0x48, 0x7e,
- 0x25, 0x07, 0xcf, 0xf4, 0x94, 0x04, 0x2a, 0xc3, 0xd0, 0xed, 0x57, 0xf7, 0x25, 0xc6, 0x89, 0x97,
- 0xb6, 0xb7, 0xc6, 0x6f, 0xb4, 0x03, 0x92, 0x86, 0x23, 0xd1, 0x34, 0x9a, 0x9c, 0x48, 0x6a, 0x57,
- 0xef, 0xa6, 0x30, 0xe3, 0x91, 0x57, 0x3a, 0x8d, 0x47, 0x47, 0x56, 0x73, 0xd3, 0x6f, 0x64, 0x31,
- 0x34, 0x1e, 0xc5, 0xf7, 0xae, 0xf8, 0x24, 0x29, 0xd5, 0x64, 0x70, 0x21, 0x4d, 0xb8, 0xc4, 0x31,
- 0x55, 0x7d, 0x73, 0x61, 0x65, 0xce, 0xb6, 0xbc, 0x35, 0xbf, 0x82, 0x7e, 0xf9, 0xec, 0x05, 0x2b,
- 0x30, 0xf4, 0xcd, 0x86, 0xbd, 0xd2, 0x68, 0x33, 0xaa, 0x94, 0x3a, 0xb2, 0x38, 0xb1, 0x89, 0x56,
- 0x8c, 0x39, 0x7f, 0x0a, 0x2a, 0x85, 0x27, 0x63, 0xfe, 0x38, 0x4d, 0x4e, 0x38, 0xb1, 0x42, 0x6a,
- 0x0d, 0x86, 0x67, 0xed, 0xe6, 0x7a, 0xa0, 0x2e, 0x6f, 0x40, 0x69, 0x49, 0x77, 0x56, 0xa9, 0x87,
- 0xb2, 0x18, 0xba, 0x7d, 0xf6, 0x26, 0x3f, 0x6d, 0x66, 0x44, 0x1c, 0x31, 0x31, 0x2a, 0x66, 0x83,
- 0x92, 0x87, 0xbf, 0x35, 0x51, 0x40, 0xfd, 0x6e, 0x3f, 0x0c, 0x8b, 0x93, 0x51, 0x9c, 0xcd, 0xc9,
- 0x9b, 0xe1, 0x59, 0xb3, 0x98, 0xbe, 0x82, 0xd3, 0xa1, 0xe0, 0x54, 0x6b, 0x98, 0x31, 0xfb, 0xfb,
- 0x5b, 0xe3, 0xb9, 0xed, 0xad, 0xf1, 0x3e, 0xad, 0x2c, 0x6d, 0x2a, 0xc3, 0xf5, 0x46, 0x5a, 0x60,
- 0xe5, 0xb3, 0xce, 0x58, 0x59, 0xbe, 0xfe, 0xbc, 0x0b, 0x03, 0xa2, 0x0d, 0x42, 0xe3, 0x2e, 0x85,
- 0x67, 0x19, 0x91, 0x13, 0xde, 0x58, 0x69, 0xbf, 0x14, 0x79, 0x1b, 0x4a, 0x7c, 0x6f, 0x2f, 0x04,
- 0x70, 0x31, 0xfd, 0x2c, 0x24, 0x56, 0x5c, 0x94, 0x21, 0x33, 0x00, 0xe1, 0xbe, 0x3e, 0x38, 0xd0,
- 0x16, 0x1c, 0x92, 0x3b, 0xfe, 0x18, 0x17, 0xa9, 0x2c, 0x79, 0x0d, 0x86, 0x97, 0xa8, 0xd3, 0x36,
- 0x2d, 0xbd, 0x55, 0x37, 0x3f, 0xf4, 0xcf, 0xb4, 0x71, 0xe1, 0x75, 0xcd, 0x0f, 0xe5, 0x91, 0x1b,
- 0xa1, 0x23, 0x5f, 0x4a, 0xdb, 0x37, 0x0f, 0x60, 0x43, 0x9e, 0xdb, 0x71, 0x43, 0x19, 0x6b, 0x4f,
- 0xca, 0x36, 0xfa, 0x3d, 0x18, 0x89, 0x6c, 0x99, 0xc4, 0xa1, 0xe5, 0x33, 0x49, 0xd6, 0xd2, 0xfe,
- 0x2f, 0xc6, 0x36, 0xca, 0x81, 0x69, 0x72, 0xcd, 0x32, 0x3d, 0x53, 0x6f, 0x4d, 0xda, 0xed, 0xb6,
- 0x6e, 0x19, 0xca, 0x60, 0xa8, 0xc9, 0x26, 0xc7, 0x34, 0x9a, 0x1c, 0x25, 0x6b, 0x72, 0xb4, 0x10,
- 0xdb, 0x96, 0x8b, 0x3e, 0xd4, 0x68, 0xd3, 0x76, 0x98, 0x2d, 0x80, 0x67, 0x92, 0x62, 0x5b, 0xee,
- 0x72, 0x5c, 0xc3, 0xf1, 0x91, 0xb2, 0xb1, 0x1d, 0x2f, 0x78, 0xaf, 0x58, 0x1e, 0x1a, 0x1b, 0x8e,
- 0x1f, 0x23, 0xab, 0x7f, 0xa5, 0x00, 0x43, 0x82, 0x94, 0x2d, 0xa5, 0xa7, 0x0a, 0x7e, 0x10, 0x05,
- 0x4f, 0x55, 0xd4, 0xd2, 0x61, 0x29, 0xaa, 0xfa, 0xd5, 0x7c, 0x30, 0x1b, 0x2d, 0x3a, 0xa6, 0x75,
- 0xb0, 0xd9, 0xe8, 0x1a, 0xc0, 0xe4, 0x5a, 0xd7, 0x5a, 0xe7, 0xd7, 0x65, 0xf9, 0xf0, 0xba, 0xac,
- 0x69, 0x6a, 0x12, 0x86, 0x3c, 0x03, 0xc5, 0x2a, 0xe3, 0xcf, 0x7a, 0x66, 0x78, 0x62, 0xf0, 0x3b,
- 0x9c, 0x53, 0xee, 0x25, 0x0d, 0xc1, 0x6c, 0x73, 0x35, 0xb1, 0xe9, 0x51, 0x6e, 0xce, 0x16, 0xf8,
- 0xe6, 0x6a, 0x99, 0x01, 0x34, 0x0e, 0x27, 0x77, 0xe0, 0x6c, 0x95, 0xb6, 0xf4, 0xcd, 0x39, 0xb3,
- 0xd5, 0x32, 0x5d, 0xda, 0xb4, 0x2d, 0xc3, 0x45, 0x21, 0x8b, 0xea, 0xda, 0xae, 0x96, 0x24, 0x20,
- 0x2a, 0x94, 0x16, 0x56, 0x56, 0x5c, 0xea, 0xa1, 0xf8, 0x0a, 0x13, 0xc0, 0x26, 0x67, 0x1b, 0x21,
- 0x9a, 0xc0, 0xa8, 0xbf, 0x9e, 0x63, 0xbb, 0x17, 0x77, 0xdd, 0xb3, 0x3b, 0x81, 0x96, 0x1f, 0x48,
- 0x24, 0x37, 0x42, 0xbb, 0x22, 0x8f, 0x5f, 0x7b, 0x46, 0x7c, 0xed, 0x80, 0xb0, 0x2d, 0x42, 0x8b,
- 0x22, 0xf5, 0xab, 0x0a, 0x3b, 0x7c, 0x95, 0xfa, 0x47, 0x79, 0xb8, 0x24, 0x5a, 0x3c, 0xd9, 0x32,
- 0x3b, 0xcb, 0xb6, 0xee, 0x18, 0x1a, 0x6d, 0x52, 0xf3, 0x31, 0x3d, 0x9e, 0x03, 0x2f, 0x3a, 0x74,
- 0x8a, 0x07, 0x18, 0x3a, 0xb7, 0x71, 0x23, 0xc8, 0x24, 0x83, 0x07, 0xbe, 0xdc, 0xa8, 0x18, 0xdb,
- 0xde, 0x1a, 0x1f, 0x36, 0x38, 0x18, 0x8f, 0xfc, 0x35, 0x99, 0x88, 0x29, 0xc9, 0x2c, 0xb5, 0x56,
- 0xbd, 0x35, 0x54, 0x92, 0x7e, 0xae, 0x24, 0x2d, 0x84, 0x68, 0x02, 0xa3, 0xfe, 0x6f, 0x79, 0x38,
- 0x1f, 0x17, 0x79, 0x9d, 0x5a, 0xc6, 0xa9, 0xbc, 0x3f, 0x1a, 0x79, 0x7f, 0xaf, 0x00, 0x4f, 0x8b,
- 0x32, 0xf5, 0x35, 0xdd, 0xa1, 0x46, 0xd5, 0x74, 0x68, 0xd3, 0xb3, 0x9d, 0xcd, 0x63, 0x6c, 0x40,
- 0x1d, 0x9e, 0xd8, 0xef, 0x40, 0x49, 0x6c, 0xff, 0xf9, 0x3a, 0x33, 0x1a, 0xb4, 0x04, 0xa1, 0x89,
- 0x15, 0x8a, 0x1f, 0x1d, 0xc4, 0x3a, 0xab, 0xb4, 0x9b, 0xce, 0xfa, 0x2c, 0x8c, 0x04, 0xa2, 0xc7,
- 0x8d, 0xe8, 0x40, 0x68, 0x6d, 0x19, 0x3e, 0x02, 0xf7, 0xa2, 0x5a, 0x94, 0x10, 0x6b, 0xf3, 0x01,
- 0xb5, 0x2a, 0x5a, 0x43, 0x23, 0xa2, 0xb6, 0xa0, 0x9c, 0x69, 0x68, 0x32, 0x91, 0xba, 0x55, 0x84,
- 0xcb, 0xe9, 0xdd, 0xae, 0x51, 0xdd, 0x38, 0xed, 0xf5, 0x1f, 0xc8, 0x5e, 0x27, 0xcf, 0x41, 0x71,
- 0x51, 0xf7, 0xd6, 0xc4, 0xf5, 0x3b, 0xde, 0x09, 0xaf, 0x98, 0x2d, 0xda, 0xe8, 0xe8, 0xde, 0x9a,
- 0x86, 0x28, 0x69, 0xce, 0x00, 0xe4, 0x98, 0x32, 0x67, 0x48, 0x8b, 0xfd, 0xd0, 0xb3, 0xb9, 0xeb,
- 0xc5, 0xd4, 0xc5, 0xfe, 0xbb, 0xc5, 0xac, 0x79, 0xe5, 0x91, 0x63, 0x7a, 0xf4, 0x54, 0xc3, 0x4e,
- 0x35, 0xec, 0x80, 0x1a, 0xf6, 0x0f, 0xf3, 0x30, 0x12, 0x6c, 0x9a, 0x3e, 0xa0, 0xcd, 0xa3, 0x59,
- 0xab, 0xc2, 0xad, 0x4c, 0xe1, 0xc0, 0x5b, 0x99, 0x83, 0x28, 0x94, 0x1a, 0x1c, 0x79, 0x72, 0xd3,
- 0x00, 0x25, 0xc6, 0x8f, 0x3c, 0x83, 0x83, 0xce, 0xe7, 0x60, 0x60, 0x4e, 0x7f, 0x62, 0xb6, 0xbb,
- 0x6d, 0x61, 0xa5, 0xa3, 0x3b, 0x59, 0x5b, 0x7f, 0xa2, 0xf9, 0x70, 0xf5, 0xbf, 0xcd, 0xc1, 0xa8,
- 0x10, 0xaa, 0x60, 0x7e, 0x20, 0xa9, 0x86, 0xd2, 0xc9, 0x1f, 0x58, 0x3a, 0x85, 0xfd, 0x4b, 0x47,
- 0xfd, 0x73, 0x05, 0x50, 0xa6, 0xcd, 0x16, 0x5d, 0x72, 0x74, 0xcb, 0x5d, 0xa1, 0x8e, 0xd8, 0x4e,
- 0x4f, 0x31, 0x56, 0x07, 0xfa, 0x40, 0x69, 0x4a, 0xc9, 0xef, 0x6b, 0x4a, 0xf9, 0x34, 0x0c, 0x8a,
- 0xc6, 0x04, 0xae, 0x8c, 0x38, 0x6a, 0x1c, 0x1f, 0xa8, 0x85, 0x78, 0x46, 0x5c, 0xe9, 0x74, 0x1c,
- 0xfb, 0x31, 0x75, 0xf8, 0x2d, 0x95, 0x20, 0xd6, 0x7d, 0xa0, 0x16, 0xe2, 0x25, 0xce, 0xd4, 0xb7,
- 0x17, 0x65, 0xce, 0xd4, 0xd1, 0x42, 0x3c, 0xb9, 0x0e, 0xe5, 0x59, 0xbb, 0xa9, 0xa3, 0xa0, 0xf9,
- 0xb4, 0x32, 0xbc, 0xbd, 0x35, 0x5e, 0x6e, 0x09, 0x98, 0x16, 0x60, 0x19, 0x65, 0xd5, 0xde, 0xb0,
- 0x5a, 0xb6, 0xce, 0x9d, 0x5f, 0xca, 0x9c, 0xd2, 0x10, 0x30, 0x2d, 0xc0, 0x32, 0x4a, 0x26, 0x73,
- 0x74, 0x2a, 0x2a, 0x87, 0x3c, 0x57, 0x04, 0x4c, 0x0b, 0xb0, 0xea, 0xaf, 0x17, 0x99, 0xf6, 0xba,
- 0xe6, 0x87, 0x27, 0x7e, 0x5d, 0x08, 0x07, 0x4c, 0xff, 0x3e, 0x06, 0xcc, 0x89, 0x39, 0xb0, 0x53,
- 0xff, 0xf9, 0x00, 0x80, 0x90, 0xfe, 0xd4, 0xe9, 0xe6, 0xf0, 0x60, 0x5a, 0x53, 0x85, 0xb3, 0x53,
- 0xd6, 0x9a, 0x6e, 0x35, 0xa9, 0x11, 0x1e, 0x5b, 0x96, 0x70, 0x68, 0xa3, 0x13, 0x24, 0x15, 0xc8,
- 0xf0, 0xdc, 0x52, 0x4b, 0x16, 0x20, 0x2f, 0xc3, 0x50, 0xcd, 0xf2, 0xa8, 0xa3, 0x37, 0x3d, 0xf3,
- 0x31, 0x15, 0x53, 0x03, 0xde, 0x0c, 0x9b, 0x21, 0x58, 0x93, 0x69, 0xc8, 0x1d, 0x18, 0x5e, 0xd4,
- 0x1d, 0xcf, 0x6c, 0x9a, 0x1d, 0xdd, 0xf2, 0x5c, 0xa5, 0x8c, 0x33, 0x1a, 0x5a, 0x18, 0x1d, 0x09,
- 0xae, 0x45, 0xa8, 0xc8, 0x97, 0x60, 0x10, 0xb7, 0xa6, 0xe8, 0xaf, 0x3d, 0xb8, 0xe3, 0xc5, 0xe1,
- 0xf3, 0xa1, 0x7b, 0x20, 0x3f, 0x7d, 0xc5, 0x1b, 0xe0, 0xf8, 0xdd, 0x61, 0xc0, 0x91, 0x7c, 0x01,
- 0x06, 0xa6, 0x2c, 0x03, 0x99, 0xc3, 0x8e, 0xcc, 0x55, 0xc1, 0xfc, 0x62, 0xc8, 0xdc, 0xee, 0xc4,
- 0x78, 0xfb, 0xec, 0xd2, 0x47, 0xd9, 0xd0, 0x47, 0x37, 0xca, 0x86, 0x3f, 0x82, 0x63, 0xf1, 0x91,
- 0xc3, 0x3a, 0x16, 0x1f, 0xdd, 0xe7, 0xb1, 0xb8, 0xfa, 0x21, 0x0c, 0x4d, 0x2c, 0x4e, 0x07, 0xa3,
- 0xf7, 0x29, 0x28, 0x2c, 0x0a, 0x4f, 0x85, 0x22, 0xb7, 0x67, 0x3a, 0xa6, 0xa1, 0x31, 0x18, 0xb9,
- 0x01, 0xe5, 0x49, 0x74, 0x7f, 0x13, 0xb7, 0x88, 0x45, 0xbe, 0xfe, 0x35, 0x11, 0x86, 0x5e, 0xb0,
- 0x3e, 0x9a, 0x7c, 0x12, 0x06, 0x16, 0x1d, 0x7b, 0xd5, 0xd1, 0xdb, 0x62, 0x0d, 0x46, 0x57, 0x91,
- 0x0e, 0x07, 0x69, 0x3e, 0x4e, 0xfd, 0x99, 0x9c, 0x6f, 0xb6, 0xb3, 0x12, 0xf5, 0x2e, 0x1e, 0xcd,
- 0x63, 0xdd, 0x65, 0x5e, 0xc2, 0xe5, 0x20, 0xcd, 0xc7, 0x91, 0x1b, 0xd0, 0x3f, 0xe5, 0x38, 0xb6,
- 0x23, 0xfb, 0xb8, 0x53, 0x06, 0x90, 0xaf, 0x7b, 0x91, 0x82, 0xbc, 0x0e, 0x43, 0x7c, 0xce, 0xe1,
- 0x27, 0x9a, 0x85, 0x5e, 0x37, 0xa5, 0x32, 0xa5, 0xfa, 0xed, 0x82, 0x64, 0xb3, 0x71, 0x89, 0x9f,
- 0xc0, 0x5b, 0x81, 0x57, 0xa0, 0x30, 0xb1, 0x38, 0x2d, 0x26, 0xc0, 0x73, 0x7e, 0x51, 0x49, 0x55,
- 0x62, 0xe5, 0x18, 0x35, 0xb9, 0x02, 0xc5, 0x45, 0xa6, 0x3e, 0x25, 0x54, 0x8f, 0xf2, 0xf6, 0xd6,
- 0x78, 0xb1, 0xc3, 0xf4, 0x07, 0xa1, 0x88, 0x65, 0x9b, 0x19, 0xbe, 0x63, 0xe2, 0xd8, 0x70, 0x1f,
- 0x73, 0x05, 0x8a, 0x15, 0x67, 0xf5, 0xb1, 0x98, 0xb5, 0x10, 0xab, 0x3b, 0xab, 0x8f, 0x35, 0x84,
- 0x92, 0x5b, 0x00, 0x1a, 0xf5, 0xba, 0x8e, 0x85, 0xcf, 0x4f, 0x06, 0xf1, 0xfc, 0x0d, 0x67, 0x43,
- 0x07, 0xa1, 0x8d, 0xa6, 0x6d, 0x50, 0x4d, 0x22, 0x51, 0xff, 0x72, 0x78, 0xb1, 0x53, 0x35, 0xdd,
- 0xf5, 0xd3, 0x2e, 0xdc, 0x43, 0x17, 0xea, 0xe2, 0x88, 0x33, 0xd9, 0x49, 0xe3, 0xd0, 0x3f, 0xdd,
- 0xd2, 0x57, 0x5d, 0xec, 0x43, 0xe1, 0x4b, 0xb6, 0xc2, 0x00, 0x1a, 0x87, 0xc7, 0xfa, 0xa9, 0xbc,
- 0x73, 0x3f, 0xfd, 0x5c, 0x7f, 0x30, 0xda, 0xe6, 0xa9, 0xb7, 0x61, 0x3b, 0xa7, 0x5d, 0xb5, 0xdb,
- 0xae, 0xba, 0x06, 0x03, 0x75, 0xa7, 0x29, 0x1d, 0x5d, 0xe0, 0x7e, 0xc0, 0x75, 0x9a, 0xfc, 0xd8,
- 0xc2, 0x47, 0x32, 0xba, 0xaa, 0xeb, 0x21, 0xdd, 0x40, 0x48, 0x67, 0xb8, 0x9e, 0xa0, 0x13, 0x48,
- 0x41, 0xb7, 0x68, 0x3b, 0x9e, 0xe8, 0xb8, 0x80, 0xae, 0x63, 0x3b, 0x9e, 0xe6, 0x23, 0xc9, 0xa7,
- 0x01, 0x96, 0x26, 0x17, 0x7d, 0x67, 0xfb, 0xc1, 0xd0, 0x17, 0x50, 0x78, 0xd9, 0x6b, 0x12, 0x9a,
- 0x2c, 0xc1, 0xe0, 0x42, 0x87, 0x3a, 0x7c, 0x2b, 0xc4, 0x1f, 0x94, 0x7c, 0x2a, 0x26, 0x5a, 0xd1,
- 0xef, 0x37, 0xc5, 0xff, 0x01, 0x39, 0x5f, 0x5f, 0x6c, 0xff, 0xa7, 0x16, 0x32, 0x22, 0xaf, 0x43,
- 0xa9, 0xc2, 0xed, 0xbc, 0x21, 0x64, 0x19, 0x88, 0x0c, 0xb7, 0xa0, 0x1c, 0xc5, 0xf7, 0xec, 0x3a,
- 0xfe, 0xad, 0x09, 0x72, 0xf5, 0x06, 0x8c, 0xc5, 0xab, 0x21, 0x43, 0x30, 0x30, 0xb9, 0x30, 0x3f,
- 0x3f, 0x35, 0xb9, 0x34, 0xd6, 0x47, 0xca, 0x50, 0xac, 0x4f, 0xcd, 0x57, 0xc7, 0x72, 0xea, 0xaf,
- 0x4a, 0x33, 0x08, 0x53, 0xad, 0xd3, 0xab, 0xe1, 0x03, 0xdd, 0xb7, 0x8c, 0xe1, 0x7d, 0x28, 0x9e,
- 0x18, 0xb4, 0x4d, 0xcf, 0xa3, 0x86, 0x58, 0x25, 0xf0, 0xbe, 0xd0, 0x7b, 0xa2, 0x25, 0xf0, 0xe4,
- 0x45, 0x18, 0x41, 0x98, 0xb8, 0x22, 0xe4, 0xfb, 0x63, 0x51, 0xc0, 0x79, 0xa2, 0x45, 0x91, 0xea,
- 0xef, 0x87, 0xb7, 0xc3, 0xb3, 0x54, 0x3f, 0xae, 0x37, 0x8a, 0x1f, 0x93, 0xfe, 0x52, 0xff, 0x65,
- 0x91, 0x3f, 0x01, 0xe1, 0xef, 0x05, 0x8f, 0x42, 0x94, 0xe1, 0x91, 0x6e, 0x61, 0x0f, 0x47, 0xba,
- 0x2f, 0x42, 0x69, 0x8e, 0x7a, 0x6b, 0xb6, 0xef, 0xf8, 0x85, 0x1e, 0x7a, 0x6d, 0x84, 0xc8, 0x1e,
- 0x7a, 0x9c, 0x86, 0xac, 0x03, 0xf1, 0x1f, 0x03, 0x06, 0x8e, 0xd8, 0xfe, 0x11, 0xf2, 0xa5, 0xc4,
- 0x3e, 0xa5, 0x8e, 0x2f, 0x81, 0xd1, 0xc7, 0xfe, 0x7c, 0xe0, 0xe8, 0x2d, 0x79, 0x62, 0xfd, 0x8b,
- 0xad, 0xf1, 0x12, 0xa7, 0xd1, 0x52, 0xd8, 0x92, 0xf7, 0x60, 0x70, 0x6e, 0xba, 0x22, 0x1e, 0x06,
- 0x72, 0xaf, 0x88, 0xa7, 0x02, 0x29, 0xfa, 0x88, 0x40, 0x24, 0xf8, 0xde, 0xa6, 0xbd, 0xa2, 0x27,
- 0xdf, 0x05, 0x86, 0x5c, 0x98, 0xb6, 0xf0, 0x97, 0x3b, 0xe2, 0x74, 0x21, 0xd0, 0x96, 0xe8, 0x7b,
- 0x9e, 0xb8, 0xac, 0x38, 0x36, 0xa6, 0x2d, 0xe5, 0x03, 0x8c, 0xee, 0x05, 0x38, 0x5b, 0xe9, 0x74,
- 0x5a, 0x26, 0x35, 0x50, 0x5f, 0xb4, 0x6e, 0x8b, 0xba, 0xc2, 0xe5, 0x07, 0x1f, 0x83, 0xe8, 0x1c,
- 0xd9, 0xc0, 0xe7, 0xa8, 0x0d, 0xa7, 0x1b, 0xf5, 0xcf, 0x4c, 0x96, 0x55, 0xff, 0x74, 0x1e, 0x2e,
- 0x4e, 0x3a, 0x54, 0xf7, 0xe8, 0xdc, 0x74, 0xa5, 0xd2, 0x45, 0x1f, 0xb9, 0x56, 0x8b, 0x5a, 0xab,
- 0x47, 0x33, 0xac, 0xdf, 0x82, 0xd1, 0xa0, 0x01, 0xf5, 0xa6, 0xdd, 0xa1, 0xf2, 0xc3, 0xaa, 0xa6,
- 0x8f, 0x69, 0xb8, 0x0c, 0xa5, 0xc5, 0x48, 0xc9, 0x7d, 0x38, 0x17, 0x40, 0x2a, 0xad, 0x96, 0xbd,
- 0xa1, 0xd1, 0xae, 0xcb, 0x1d, 0x63, 0xcb, 0xdc, 0x31, 0x36, 0xe4, 0xa0, 0x33, 0x7c, 0xc3, 0x61,
- 0x04, 0x5a, 0x5a, 0x29, 0xf5, 0x17, 0x0b, 0x70, 0xe9, 0xa1, 0xde, 0x32, 0x8d, 0x50, 0x34, 0x1a,
- 0x75, 0x3b, 0xb6, 0xe5, 0xd2, 0x63, 0x34, 0x4a, 0x23, 0x43, 0xa1, 0x78, 0x28, 0x43, 0x21, 0xd9,
- 0x45, 0xfd, 0x07, 0xee, 0xa2, 0xd2, 0xbe, 0xba, 0xe8, 0x7f, 0xcd, 0xc1, 0x98, 0xef, 0xf8, 0x2f,
- 0x3f, 0xe2, 0x96, 0xbc, 0xd2, 0xf1, 0x08, 0x31, 0xe6, 0x07, 0x8d, 0x78, 0x52, 0x87, 0x81, 0xa9,
- 0x27, 0x1d, 0xd3, 0xa1, 0xee, 0x2e, 0x9c, 0xb8, 0x9f, 0x11, 0xc7, 0x25, 0x67, 0x29, 0x2f, 0x92,
- 0x38, 0x29, 0xe1, 0x60, 0x7c, 0xce, 0xc7, 0x9f, 0x3e, 0x4c, 0xf8, 0x2f, 0xd3, 0xf9, 0x73, 0x3e,
- 0xf1, 0x44, 0x22, 0xf2, 0x3e, 0x33, 0x24, 0x25, 0xcf, 0x43, 0x61, 0x69, 0x69, 0x56, 0xcc, 0xa4,
- 0x18, 0x11, 0xc0, 0xf3, 0xe4, 0xf7, 0x8a, 0x0c, 0xab, 0xfe, 0x93, 0x3c, 0x00, 0x53, 0x05, 0x3e,
- 0x5c, 0x8f, 0x44, 0x09, 0x27, 0xa0, 0xec, 0x0b, 0x5c, 0xa8, 0x61, 0xe0, 0xb5, 0x1f, 0xef, 0x88,
- 0x78, 0xdd, 0xc1, 0x0b, 0x8d, 0x71, 0xdf, 0x91, 0x9c, 0xdf, 0x03, 0xe0, 0xce, 0x06, 0x1d, 0xc9,
- 0x7d, 0xf7, 0xf1, 0x4f, 0xc3, 0xa0, 0x98, 0xf1, 0xec, 0xc8, 0xf9, 0x7f, 0xd3, 0x07, 0x6a, 0x21,
- 0x3e, 0x36, 0xb5, 0x96, 0x0e, 0xb0, 0x10, 0xfb, 0xe2, 0xe5, 0xbd, 0x72, 0x2a, 0xde, 0x43, 0x16,
- 0xef, 0xd7, 0x85, 0x78, 0xf9, 0x0b, 0x9e, 0x63, 0x2b, 0xde, 0x43, 0x3b, 0xfb, 0x56, 0xff, 0x61,
- 0x0e, 0x08, 0x6b, 0xd6, 0xa2, 0xee, 0xba, 0x1b, 0xb6, 0x63, 0x70, 0xe7, 0xf4, 0x23, 0x11, 0xcc,
- 0xe1, 0xdd, 0x57, 0x7e, 0xbb, 0x0c, 0xe7, 0x22, 0x8e, 0xbf, 0xc7, 0x7c, 0xb2, 0xba, 0x11, 0x1d,
- 0x4d, 0xbd, 0x5e, 0xbd, 0x7c, 0x42, 0xbe, 0x10, 0xed, 0x8f, 0x3c, 0x40, 0x93, 0x6e, 0x42, 0x5f,
- 0x82, 0x61, 0xf1, 0x83, 0xad, 0xd0, 0xfe, 0x4d, 0x17, 0x8e, 0x52, 0x97, 0x01, 0xb4, 0x08, 0x9a,
- 0xbc, 0x0a, 0x83, 0x6c, 0xc0, 0xac, 0x62, 0xf0, 0x90, 0x81, 0xf0, 0x45, 0x89, 0xe1, 0x03, 0xe5,
- 0xf5, 0x24, 0xa0, 0x94, 0xde, 0x11, 0x95, 0x77, 0xf1, 0x8e, 0xe8, 0xcb, 0x30, 0x54, 0xb1, 0x2c,
- 0xdb, 0xc3, 0x4d, 0xba, 0x2b, 0xae, 0x26, 0x32, 0xad, 0xf2, 0xe7, 0xf1, 0x71, 0x7c, 0x48, 0x9f,
- 0x6a, 0x96, 0xcb, 0x0c, 0xc9, 0x6d, 0xff, 0x55, 0x0c, 0x75, 0x84, 0x57, 0x39, 0x5e, 0xcf, 0x38,
- 0x02, 0x96, 0x7c, 0x14, 0x83, 0x9d, 0x37, 0xb2, 0xe8, 0xd8, 0x1d, 0xdb, 0xa5, 0x06, 0x17, 0xd4,
- 0x50, 0x18, 0x6a, 0xa0, 0x23, 0x10, 0xf8, 0x8e, 0x2d, 0x12, 0xc8, 0x23, 0x52, 0x84, 0xac, 0xc0,
- 0x79, 0xff, 0xa2, 0x38, 0x78, 0x31, 0x58, 0xab, 0xba, 0xca, 0x30, 0xbe, 0x4a, 0x22, 0x71, 0x65,
- 0xa8, 0x55, 0x27, 0xae, 0xfa, 0xd7, 0x22, 0xfe, 0x93, 0xc3, 0x86, 0x69, 0xc8, 0x5d, 0x9d, 0xca,
- 0x8f, 0xfc, 0x08, 0x0c, 0xcd, 0xe9, 0x4f, 0xaa, 0x5d, 0x71, 0xf6, 0x32, 0xb2, 0xfb, 0xdb, 0x97,
- 0xb6, 0xfe, 0xa4, 0x61, 0x88, 0x72, 0x31, 0x9b, 0x42, 0x66, 0x49, 0x1a, 0x70, 0x71, 0xd1, 0xb1,
- 0xdb, 0xb6, 0x47, 0x8d, 0xd8, 0xe3, 0xbb, 0x33, 0xe1, 0x6b, 0xdd, 0x8e, 0xa0, 0x68, 0xf4, 0x78,
- 0x85, 0x97, 0xc1, 0x86, 0xb4, 0xe1, 0x4c, 0xc5, 0x75, 0xbb, 0x6d, 0x1a, 0xde, 0x50, 0x8d, 0xed,
- 0xf8, 0x19, 0x9f, 0x12, 0x5e, 0xcb, 0x4f, 0xeb, 0x58, 0x94, 0x5f, 0x50, 0x35, 0x3c, 0x53, 0xae,
- 0x11, 0xbf, 0x25, 0xce, 0xfb, 0x5e, 0xb1, 0x3c, 0x3a, 0x76, 0x46, 0xbb, 0x94, 0x6c, 0xcc, 0x92,
- 0xe9, 0xb5, 0xa8, 0xfa, 0xad, 0x1c, 0x40, 0x28, 0x60, 0xf2, 0x52, 0x34, 0x42, 0x51, 0x2e, 0xbc,
- 0xe8, 0x10, 0xd1, 0x0b, 0x22, 0x21, 0x89, 0xc8, 0x15, 0x28, 0x62, 0x84, 0x8b, 0x7c, 0x78, 0xb0,
- 0xba, 0x6e, 0x5a, 0x86, 0x86, 0x50, 0x86, 0x95, 0x9e, 0xa2, 0x23, 0x16, 0x2f, 0xf5, 0xb9, 0x55,
- 0x58, 0x85, 0x33, 0xf5, 0xee, 0xb2, 0x5f, 0xb7, 0xf4, 0xae, 0x0e, 0x03, 0x6d, 0xb8, 0xdd, 0xe5,
- 0xe0, 0x31, 0x6a, 0x24, 0x8c, 0x49, 0xb4, 0x88, 0xfa, 0xeb, 0xb9, 0xd8, 0x2c, 0x78, 0x84, 0x8b,
- 0xde, 0x27, 0x92, 0x7e, 0x1a, 0xc9, 0x69, 0x49, 0xfd, 0xf3, 0x79, 0x18, 0x5a, 0xb4, 0x1d, 0x4f,
- 0x84, 0x0c, 0x39, 0xde, 0xab, 0x90, 0xb4, 0x57, 0x2a, 0xee, 0x61, 0xaf, 0x74, 0x05, 0x8a, 0x92,
- 0x8b, 0x32, 0xbf, 0x17, 0x31, 0x0c, 0x47, 0x43, 0xa8, 0xfa, 0x63, 0x79, 0x80, 0x2f, 0xbc, 0xfc,
- 0xf2, 0x09, 0x16, 0x90, 0xfa, 0x0b, 0x39, 0x38, 0x23, 0x2e, 0xea, 0xa4, 0x58, 0x5f, 0x03, 0xfe,
- 0x15, 0xab, 0x3c, 0x2e, 0x39, 0x48, 0xf3, 0x71, 0x6c, 0x09, 0x98, 0x7a, 0x62, 0x7a, 0x78, 0x57,
- 0x21, 0x05, 0xfb, 0xa2, 0x02, 0x26, 0x2f, 0x01, 0x3e, 0x1d, 0x79, 0xc9, 0xbf, 0x82, 0x2c, 0x84,
- 0xeb, 0x1e, 0x2b, 0x30, 0x95, 0x7a, 0x0d, 0xa9, 0xfe, 0x56, 0x11, 0x8a, 0x53, 0x4f, 0x68, 0xf3,
- 0x98, 0x77, 0x8d, 0x74, 0xb0, 0x59, 0x3c, 0xe0, 0xc1, 0xe6, 0x7e, 0x7c, 0x2a, 0xde, 0x0d, 0xfb,
- 0xb3, 0x14, 0xad, 0x3e, 0xd6, 0xf3, 0xf1, 0xea, 0xfd, 0x9e, 0x3e, 0x7e, 0x2e, 0x39, 0xff, 0x45,
- 0x01, 0x0a, 0xf5, 0xc9, 0xc5, 0x53, 0xbd, 0x39, 0x52, 0xbd, 0xe9, 0x7d, 0x67, 0xad, 0x06, 0xd7,
- 0x50, 0xe5, 0xd0, 0x4b, 0x34, 0x76, 0xe3, 0xf4, 0xbd, 0x02, 0x8c, 0xd6, 0xa7, 0x97, 0x16, 0xa5,
- 0x93, 0xe0, 0xfb, 0xdc, 0x93, 0x0f, 0x7d, 0xca, 0x78, 0x97, 0x5e, 0x49, 0xd8, 0x33, 0x0f, 0x6a,
- 0x96, 0xf7, 0xda, 0x9d, 0x87, 0x7a, 0xab, 0x4b, 0xf1, 0xe8, 0x85, 0xfb, 0xfd, 0xba, 0xe6, 0x87,
- 0xf4, 0x17, 0xf1, 0xe1, 0xbf, 0xcf, 0x80, 0xbc, 0x05, 0x85, 0x07, 0xc2, 0x23, 0x23, 0x8b, 0xcf,
- 0x2b, 0xb7, 0x39, 0x1f, 0x36, 0x09, 0x16, 0xba, 0xa6, 0x81, 0x1c, 0x58, 0x29, 0x56, 0xf8, 0xae,
- 0x58, 0x80, 0x77, 0x55, 0x78, 0xd5, 0x2f, 0x7c, 0xb7, 0x56, 0x25, 0x75, 0x18, 0x5a, 0xa4, 0x4e,
- 0xdb, 0xc4, 0x8e, 0xf2, 0xe7, 0xec, 0xde, 0x4c, 0xd8, 0x4e, 0x65, 0xa8, 0x13, 0x16, 0x42, 0x66,
- 0x32, 0x17, 0xf2, 0x3e, 0x00, 0xb7, 0x51, 0x76, 0x19, 0x3f, 0xf2, 0x19, 0xb4, 0xfb, 0xb9, 0x69,
- 0x99, 0x62, 0xe3, 0x49, 0xcc, 0xc8, 0x3a, 0x8c, 0xcd, 0xd9, 0x86, 0xb9, 0x62, 0x72, 0xd7, 0x4b,
- 0xac, 0xa0, 0xb4, 0xb3, 0xc3, 0x13, 0x33, 0x25, 0xdb, 0x52, 0xb9, 0xb4, 0x6a, 0x12, 0x8c, 0xd5,
- 0xff, 0xb4, 0x1f, 0x8a, 0xac, 0xdb, 0x4f, 0xc7, 0xef, 0x41, 0xc6, 0x6f, 0x05, 0xc6, 0x1e, 0xd9,
- 0xce, 0xba, 0x69, 0xad, 0x06, 0x5e, 0xf1, 0x62, 0x6f, 0x8a, 0x9e, 0x3c, 0x1b, 0x1c, 0xd7, 0x08,
- 0x1c, 0xe8, 0xb5, 0x04, 0xf9, 0x0e, 0x23, 0xf8, 0x0d, 0x00, 0xfe, 0xd6, 0x1d, 0x69, 0xca, 0x61,
- 0xb0, 0x0a, 0xfe, 0x12, 0x1e, 0x1d, 0xed, 0xe5, 0x60, 0x15, 0x21, 0x31, 0xdb, 0x84, 0x73, 0x5f,
- 0x88, 0x41, 0xf4, 0xbb, 0xc7, 0x4d, 0x38, 0xfa, 0x42, 0xc8, 0x46, 0x00, 0xf7, 0x8a, 0x58, 0x04,
- 0x90, 0xee, 0x97, 0x20, 0x26, 0x88, 0xc8, 0xe4, 0x20, 0xc2, 0xc3, 0xa5, 0x5c, 0x2f, 0x69, 0x12,
- 0x0f, 0xf2, 0x5a, 0xec, 0x02, 0x9c, 0x44, 0xb8, 0x65, 0xde, 0x7f, 0x87, 0x0e, 0x54, 0xc3, 0x3b,
- 0x39, 0x50, 0xa9, 0xbf, 0x97, 0x87, 0xc1, 0x7a, 0x77, 0xd9, 0xdd, 0x74, 0x3d, 0xda, 0x3e, 0xe6,
- 0x6a, 0xec, 0x6f, 0xaf, 0x8a, 0xa9, 0xdb, 0xab, 0xe7, 0x7d, 0xa1, 0x48, 0xe7, 0x8e, 0x81, 0x49,
- 0xe7, 0xfb, 0x93, 0x85, 0x8a, 0x5c, 0xda, 0xbb, 0x22, 0xab, 0x7f, 0x3d, 0x0f, 0x63, 0xfc, 0xda,
- 0xad, 0x6a, 0xba, 0xcd, 0x43, 0x78, 0x0a, 0x70, 0xf4, 0x32, 0x3d, 0xd8, 0x55, 0xf5, 0x2e, 0x1e,
- 0x58, 0xa8, 0x5f, 0xc9, 0xc3, 0x50, 0xa5, 0xeb, 0xad, 0x55, 0x3c, 0xd4, 0xcc, 0x13, 0xb9, 0xbb,
- 0xf9, 0x7b, 0x39, 0x38, 0xc3, 0x1a, 0xb2, 0x64, 0xaf, 0x53, 0xeb, 0x10, 0x8e, 0x2d, 0xe5, 0xe3,
- 0xc7, 0xfc, 0x3e, 0x8f, 0x1f, 0x7d, 0x59, 0x16, 0xf6, 0x26, 0x4b, 0x3c, 0x6c, 0xd7, 0xec, 0x16,
- 0x3d, 0xde, 0x9f, 0x71, 0x88, 0x87, 0xed, 0xbe, 0x40, 0x0e, 0xe1, 0x72, 0xe7, 0x07, 0x4b, 0x20,
- 0x87, 0x70, 0x32, 0xf5, 0x83, 0x21, 0x90, 0x6f, 0xe7, 0x60, 0x70, 0xc2, 0xf6, 0x8e, 0xf9, 0xc0,
- 0x17, 0x5f, 0x71, 0xbc, 0xd5, 0xdc, 0xff, 0x8a, 0xe3, 0xad, 0x9b, 0xea, 0xcf, 0xe7, 0xe1, 0xbc,
- 0x88, 0x2c, 0x2e, 0x4e, 0x2f, 0x4e, 0xa7, 0x63, 0x31, 0xd8, 0x92, 0xa2, 0x39, 0x9d, 0x87, 0x84,
- 0x68, 0x7e, 0xb9, 0x00, 0xe7, 0x31, 0x10, 0x2a, 0xdb, 0xd4, 0xfd, 0x00, 0xd8, 0x22, 0xa4, 0x19,
- 0xbd, 0x42, 0x9d, 0x4b, 0xb9, 0x42, 0xfd, 0x17, 0x5b, 0xe3, 0xaf, 0xad, 0x9a, 0xde, 0x5a, 0x77,
- 0xf9, 0x66, 0xd3, 0x6e, 0xdf, 0x5a, 0x75, 0xf4, 0xc7, 0x26, 0xbf, 0x3c, 0xd4, 0x5b, 0xb7, 0x82,
- 0x24, 0x1d, 0x7a, 0xc7, 0x14, 0xe9, 0x3b, 0xea, 0xb8, 0x53, 0x62, 0x5c, 0xfd, 0xcb, 0x57, 0x17,
- 0xe0, 0x9e, 0x6d, 0x5a, 0xc2, 0x23, 0x91, 0x1b, 0xba, 0x75, 0xb6, 0xbb, 0xfc, 0xc0, 0x36, 0xad,
- 0x46, 0xdc, 0x2d, 0x71, 0xaf, 0xf5, 0x85, 0xac, 0x35, 0xa9, 0x1a, 0xf5, 0xbf, 0xc9, 0xc1, 0x53,
- 0x51, 0x2d, 0xfe, 0x41, 0xb0, 0x1d, 0xff, 0x4c, 0x1e, 0x2e, 0xdc, 0x45, 0xe1, 0x04, 0x6e, 0x20,
- 0xa7, 0xf3, 0x96, 0x18, 0x9c, 0x29, 0xb2, 0x39, 0xb5, 0x28, 0xb3, 0x65, 0x73, 0x3a, 0xa9, 0x0b,
- 0xd9, 0xfc, 0xd7, 0x39, 0x38, 0xb7, 0x50, 0xab, 0x4e, 0xfe, 0x80, 0x8c, 0xa8, 0xe4, 0xf7, 0x1c,
- 0x73, 0x83, 0x33, 0xf1, 0x3d, 0xc7, 0xdc, 0xf4, 0xfc, 0x66, 0x1e, 0xce, 0xd5, 0x2b, 0x73, 0xb3,
- 0x3f, 0x28, 0x33, 0xf8, 0xa4, 0xec, 0xb3, 0xe8, 0x1f, 0x82, 0x09, 0x5b, 0x40, 0xfe, 0xcc, 0x87,
- 0xb7, 0xb3, 0x7d, 0x19, 0x93, 0x42, 0x39, 0xe6, 0x53, 0xf7, 0xa1, 0x08, 0x85, 0x69, 0x7e, 0x84,
- 0xfa, 0x98, 0x6b, 0xfe, 0x7f, 0x5e, 0x82, 0xa1, 0xfb, 0xdd, 0x65, 0x2a, 0x5c, 0x5b, 0x4e, 0xf4,
- 0xc9, 0xef, 0x6d, 0x18, 0x12, 0x62, 0xc0, 0x3b, 0x17, 0x29, 0xf4, 0x9e, 0x08, 0xa5, 0xc2, 0xa3,
- 0x1b, 0xc9, 0x44, 0xe4, 0x0a, 0x14, 0x1f, 0x52, 0x67, 0x59, 0x7e, 0x95, 0xfa, 0x98, 0x3a, 0xcb,
- 0x1a, 0x42, 0xc9, 0x6c, 0xe8, 0x70, 0x5f, 0x59, 0xac, 0x61, 0x1a, 0x16, 0x71, 0xdd, 0x83, 0x79,
- 0x65, 0x02, 0xaf, 0x39, 0xbd, 0x63, 0xf2, 0x04, 0x2e, 0xf2, 0x8b, 0xf8, 0x78, 0x49, 0x32, 0x0f,
- 0x67, 0x65, 0xb7, 0x29, 0x9e, 0x83, 0xa4, 0x9c, 0xc2, 0x2e, 0x2d, 0xfb, 0x48, 0xb2, 0x28, 0x79,
- 0x17, 0x86, 0x7d, 0x20, 0x3a, 0x80, 0x0d, 0x86, 0x81, 0xef, 0x03, 0x56, 0xb1, 0x04, 0x47, 0x91,
- 0x02, 0x32, 0x03, 0xbc, 0xc4, 0x80, 0x14, 0x06, 0x31, 0x87, 0xba, 0x48, 0x01, 0xf2, 0x2a, 0x32,
- 0xc0, 0x47, 0x22, 0xe8, 0xea, 0x32, 0x84, 0x4f, 0x36, 0xd1, 0xa1, 0xdf, 0x11, 0x70, 0xfe, 0x30,
- 0x37, 0x42, 0x46, 0x16, 0x00, 0x42, 0x97, 0x04, 0x11, 0xfe, 0x60, 0xcf, 0xce, 0x12, 0x12, 0x0b,
- 0xf9, 0x32, 0x71, 0x64, 0x3f, 0x97, 0x89, 0xea, 0x3f, 0xc8, 0xc3, 0x50, 0xa5, 0xd3, 0x09, 0x86,
- 0xc2, 0x4b, 0x50, 0xaa, 0x74, 0x3a, 0x0f, 0xb4, 0x9a, 0x1c, 0x08, 0x5d, 0xef, 0x74, 0x1a, 0x5d,
- 0xc7, 0x94, 0x3d, 0x4a, 0x39, 0x11, 0x99, 0x84, 0x91, 0x4a, 0xa7, 0xb3, 0xd8, 0x5d, 0x6e, 0x99,
- 0x4d, 0x29, 0xaf, 0x12, 0xcf, 0x3c, 0xd7, 0xe9, 0x34, 0x3a, 0x88, 0x89, 0x27, 0xd7, 0x8a, 0x96,
- 0x21, 0x5f, 0xc6, 0xa0, 0x41, 0x22, 0xad, 0x0f, 0x4f, 0x1c, 0xa2, 0x06, 0x21, 0xd0, 0xc3, 0xb6,
- 0xdd, 0x0c, 0x88, 0x78, 0xa8, 0xf8, 0x2b, 0x7e, 0xc0, 0x7d, 0x56, 0x51, 0x22, 0x7d, 0x4f, 0xc8,
- 0x92, 0x7c, 0x06, 0x06, 0x2a, 0x9d, 0x8e, 0x74, 0x5b, 0x85, 0x2e, 0x49, 0xac, 0x54, 0x3c, 0x73,
- 0x9a, 0x20, 0xbb, 0xfc, 0x36, 0x8c, 0x46, 0x2b, 0xdb, 0x53, 0xa8, 0xf9, 0xef, 0xe7, 0xf0, 0x83,
- 0x8e, 0xb9, 0x47, 0xf4, 0x2b, 0x50, 0xa8, 0x74, 0x3a, 0x62, 0x3e, 0x3a, 0x97, 0xd2, 0x1f, 0xf1,
- 0x07, 0xd4, 0x95, 0x4e, 0xc7, 0xff, 0xf4, 0x63, 0xfe, 0xb4, 0x62, 0x5f, 0x9f, 0xfe, 0x6d, 0xfe,
- 0xe9, 0xc7, 0xfb, 0xd9, 0x83, 0xfa, 0x5b, 0x05, 0x38, 0x53, 0xe9, 0x74, 0x4e, 0x43, 0xd4, 0x1f,
- 0xd6, 0x33, 0xed, 0x97, 0x01, 0xa4, 0xe9, 0x71, 0x20, 0x78, 0xf8, 0x35, 0x24, 0x4d, 0x8d, 0x4a,
- 0x4e, 0x93, 0x88, 0x7c, 0xf5, 0x2b, 0xef, 0x49, 0xfd, 0xbe, 0x52, 0xc0, 0xa9, 0xf8, 0xb8, 0x87,
- 0x9c, 0xfa, 0xb8, 0x74, 0x9b, 0xe8, 0x83, 0xd2, 0x9e, 0xfa, 0xe0, 0xef, 0x46, 0x06, 0x0f, 0x86,
- 0x3c, 0x3f, 0xed, 0x85, 0xfe, 0x03, 0x99, 0xc5, 0xa3, 0xb2, 0x30, 0x45, 0x1c, 0x1c, 0x3f, 0x0d,
- 0x93, 0x88, 0xca, 0xd4, 0x64, 0xa8, 0x86, 0x69, 0x68, 0x31, 0x5a, 0xbf, 0x0f, 0x07, 0xf6, 0xd4,
- 0x87, 0x5b, 0x79, 0x7c, 0x79, 0x1d, 0x44, 0x75, 0x3a, 0xf8, 0xee, 0xe2, 0x16, 0x00, 0xf7, 0x3c,
- 0x08, 0x9c, 0xa2, 0x47, 0x78, 0x00, 0x17, 0x9e, 0x9d, 0x49, 0x04, 0x70, 0x09, 0x49, 0x02, 0xff,
- 0xaa, 0x42, 0xaa, 0x7f, 0xd5, 0x0d, 0x28, 0x6b, 0xfa, 0xc6, 0x7b, 0x5d, 0xea, 0x6c, 0x0a, 0x73,
- 0x86, 0x07, 0x4d, 0xd4, 0x37, 0x1a, 0x3f, 0xca, 0x80, 0x5a, 0x80, 0x26, 0x6a, 0xf0, 0x74, 0x5f,
- 0xf2, 0x08, 0xe1, 0x67, 0xe4, 0xc1, 0x83, 0xfd, 0xfd, 0x28, 0x3a, 0x79, 0x13, 0x0a, 0x95, 0x47,
- 0x75, 0x21, 0xd9, 0xa0, 0x6b, 0x2b, 0x8f, 0xea, 0x42, 0x5e, 0x99, 0x65, 0x1f, 0xd5, 0xd5, 0xaf,
- 0xe4, 0x81, 0x24, 0x29, 0xc9, 0x6b, 0x30, 0x88, 0xd0, 0x55, 0xa6, 0x33, 0x72, 0x5a, 0xcf, 0x0d,
- 0xb7, 0xe1, 0x20, 0x34, 0x62, 0xdc, 0xf9, 0xa4, 0xe4, 0x0d, 0x4c, 0x9c, 0x2c, 0x12, 0xcb, 0x45,
- 0xd2, 0x7a, 0x6e, 0xb8, 0x7e, 0xaa, 0xe1, 0x58, 0xde, 0x64, 0x41, 0x8c, 0x76, 0xe1, 0xa3, 0xfa,
- 0x8c, 0xed, 0x7a, 0x42, 0xd4, 0xdc, 0x2e, 0xdc, 0x70, 0x31, 0x9f, 0x6c, 0xc4, 0x2e, 0xe4, 0x64,
- 0x98, 0x13, 0xeb, 0x51, 0x9d, 0x3f, 0x72, 0x31, 0x34, 0xbb, 0xe5, 0x1b, 0x94, 0x3c, 0x27, 0xd6,
- 0x86, 0xdb, 0xe0, 0x0f, 0x64, 0x0c, 0xcc, 0xd8, 0x1c, 0xc9, 0x89, 0x15, 0x29, 0xa5, 0x7e, 0xad,
- 0x0c, 0x63, 0x55, 0xdd, 0xd3, 0x97, 0x75, 0x97, 0x4a, 0xbb, 0xe9, 0x33, 0x3e, 0xcc, 0xff, 0x1c,
- 0x49, 0x0e, 0xc6, 0x72, 0xca, 0xd7, 0xc4, 0x0b, 0x90, 0xb7, 0x42, 0xbe, 0x41, 0xc6, 0x52, 0x39,
- 0x05, 0xda, 0x72, 0xa3, 0x23, 0xc0, 0x5a, 0x82, 0x90, 0xbc, 0x08, 0x43, 0x3e, 0x8c, 0x6d, 0x00,
- 0x0a, 0xa1, 0xce, 0x18, 0xcb, 0xcc, 0xfe, 0xd7, 0x64, 0x34, 0x79, 0x03, 0x86, 0xfd, 0x9f, 0x92,
- 0x69, 0xcd, 0xf3, 0xb9, 0x2d, 0x27, 0x76, 0x4f, 0x32, 0xa9, 0x5c, 0x14, 0xe7, 0xb7, 0xfe, 0x48,
- 0xd1, 0x58, 0xca, 0xb4, 0x08, 0x29, 0xf9, 0x51, 0x18, 0xf5, 0x7f, 0x8b, 0x0d, 0x03, 0xcf, 0x2e,
- 0xf7, 0x62, 0x90, 0x10, 0x3a, 0x26, 0xd6, 0x9b, 0x51, 0x72, 0xbe, 0x75, 0x78, 0xda, 0xcf, 0x02,
- 0x66, 0x2c, 0x27, 0x77, 0x0e, 0xb1, 0x0a, 0x48, 0x0d, 0xce, 0xfa, 0x90, 0x50, 0x43, 0x07, 0xc2,
- 0x1d, 0xa3, 0xb1, 0xdc, 0x48, 0x55, 0xd2, 0x64, 0x29, 0xd2, 0x82, 0x2b, 0x11, 0xa0, 0xe1, 0xae,
- 0x99, 0x2b, 0x9e, 0xd8, 0xee, 0x89, 0x08, 0xc6, 0x22, 0xed, 0x63, 0xc0, 0x95, 0xd3, 0xf8, 0xf9,
- 0x5b, 0xa3, 0xb9, 0xa5, 0x7a, 0x72, 0x23, 0x75, 0x38, 0xef, 0xe3, 0xef, 0x4e, 0x2e, 0x2e, 0x3a,
- 0xf6, 0x07, 0xb4, 0xe9, 0xd5, 0xaa, 0x62, 0xbb, 0x8c, 0x91, 0xed, 0x8c, 0xe5, 0xc6, 0x6a, 0xb3,
- 0xc3, 0x94, 0x82, 0xe1, 0xa2, 0xcc, 0x53, 0x0b, 0x93, 0x87, 0x70, 0x41, 0x82, 0x4b, 0xc9, 0xa5,
- 0x21, 0xdc, 0xcf, 0x0b, 0xae, 0xe9, 0xf9, 0xa5, 0xd3, 0x8b, 0x93, 0xb7, 0x61, 0xc4, 0x47, 0xf0,
- 0x5b, 0xc4, 0x21, 0xbc, 0x45, 0xc4, 0x21, 0x69, 0x2c, 0x37, 0xe2, 0x6f, 0x31, 0xa3, 0xc4, 0xb2,
- 0x46, 0x61, 0x3e, 0xfe, 0xe1, 0x88, 0x46, 0x79, 0x9b, 0x9d, 0x54, 0x65, 0xc4, 0x1c, 0xfd, 0xef,
- 0x86, 0x1a, 0xb5, 0xe0, 0x98, 0xab, 0x26, 0xdf, 0x49, 0xfb, 0xcf, 0x2f, 0x97, 0x1b, 0x36, 0x02,
- 0xd3, 0xf4, 0x83, 0x93, 0x5f, 0xae, 0xc0, 0xb9, 0x14, 0x1d, 0xdb, 0xd3, 0x8e, 0xf1, 0xab, 0xf9,
- 0xb0, 0x11, 0xc7, 0x7c, 0xdb, 0x38, 0x01, 0x65, 0xff, 0x4b, 0x84, 0xf1, 0xa0, 0x64, 0x0d, 0xcd,
- 0x38, 0x0f, 0x1f, 0x1f, 0x11, 0xc7, 0x31, 0xdf, 0x4a, 0x1e, 0x86, 0x38, 0xbe, 0x93, 0x0b, 0xc5,
- 0x71, 0xcc, 0xb7, 0x97, 0x3f, 0x5d, 0x0c, 0xe7, 0xa4, 0xd3, 0x3d, 0xe6, 0x61, 0x99, 0xc9, 0xa1,
- 0x1f, 0x6c, 0x69, 0x0f, 0xcf, 0x20, 0x65, 0xd5, 0x1c, 0xd8, 0x9f, 0x6a, 0x92, 0xb7, 0x61, 0x68,
- 0xd1, 0x76, 0xbd, 0x55, 0x87, 0xba, 0x8b, 0x41, 0x04, 0x7e, 0x7c, 0x42, 0xdb, 0x11, 0xe0, 0x46,
- 0x27, 0x32, 0xfb, 0xcb, 0xe4, 0xea, 0x3f, 0x2a, 0x24, 0xb4, 0x81, 0x1b, 0xae, 0xc7, 0x52, 0x1b,
- 0x0e, 0x61, 0xa8, 0x93, 0xdb, 0xe1, 0x2a, 0xc8, 0x2d, 0xfc, 0x7e, 0x29, 0xbc, 0xe0, 0xb2, 0x30,
- 0xf0, 0xa3, 0x24, 0xe4, 0x87, 0xe0, 0x52, 0x04, 0xb0, 0xa8, 0x3b, 0x7a, 0x9b, 0x7a, 0x61, 0xb6,
- 0x43, 0x0c, 0x18, 0xe5, 0x97, 0x6e, 0x74, 0x02, 0xb4, 0x9c, 0x41, 0x31, 0x83, 0x83, 0xa4, 0x5a,
- 0x03, 0x7b, 0x70, 0xb1, 0xfe, 0xb9, 0x42, 0x68, 0xe8, 0x44, 0x03, 0xbf, 0x6a, 0xd4, 0xed, 0xb6,
- 0xbc, 0x93, 0xdb, 0xc1, 0xfb, 0x4b, 0xab, 0x31, 0x03, 0x67, 0x2a, 0x2b, 0x2b, 0xb4, 0xe9, 0xf9,
- 0xf1, 0xac, 0x5d, 0x11, 0xea, 0x8f, 0x6f, 0x3c, 0x04, 0x4a, 0xc4, 0x27, 0x8e, 0xe4, 0xe5, 0x8f,
- 0x15, 0x53, 0xff, 0x71, 0x11, 0x94, 0xc0, 0xf0, 0x0f, 0x1e, 0x89, 0x1d, 0xe1, 0x22, 0xfb, 0xb1,
- 0xe8, 0x15, 0x13, 0xce, 0x86, 0xc2, 0xa8, 0x77, 0xdb, 0x6d, 0x1d, 0x87, 0x1e, 0xdb, 0x58, 0x8c,
- 0xc7, 0x99, 0x85, 0x84, 0x7c, 0x2f, 0x71, 0x59, 0xec, 0x25, 0x48, 0xf8, 0x08, 0xaf, 0xe1, 0x72,
- 0x16, 0x5a, 0x92, 0x2b, 0xf9, 0x7a, 0x0e, 0xce, 0xfb, 0x9d, 0xb2, 0xb0, 0xcc, 0x8c, 0xea, 0x49,
- 0xbb, 0x6b, 0x79, 0xfe, 0x3e, 0xe6, 0xcd, 0xec, 0xea, 0x78, 0x27, 0xdd, 0x4c, 0x2b, 0xcc, 0x5b,
- 0x12, 0x04, 0xb5, 0x08, 0x14, 0xc2, 0x46, 0x9a, 0x46, 0x13, 0x89, 0xb4, 0xd4, 0x7a, 0x2f, 0xdf,
- 0x85, 0xa7, 0x32, 0x59, 0xee, 0x64, 0xc4, 0xf6, 0xcb, 0x46, 0xec, 0x7f, 0x97, 0x0b, 0x27, 0xa2,
- 0x98, 0x90, 0xc8, 0x4d, 0x80, 0x10, 0x24, 0xb6, 0xb5, 0xa3, 0xdb, 0x5b, 0xe3, 0x10, 0x0a, 0x4d,
- 0x93, 0x28, 0xc8, 0x02, 0x94, 0x84, 0x58, 0x78, 0x66, 0xe1, 0x4f, 0xef, 0xd0, 0x0b, 0x37, 0x65,
- 0x39, 0xe0, 0x96, 0x55, 0x7c, 0xb3, 0x60, 0x73, 0xf9, 0x0d, 0x18, 0xda, 0xef, 0x77, 0x7d, 0xbd,
- 0x00, 0x44, 0xde, 0x83, 0x1e, 0xa1, 0x81, 0x7e, 0x8c, 0xa7, 0xb0, 0xeb, 0x50, 0x66, 0x9f, 0x80,
- 0xb9, 0x36, 0xa4, 0xd8, 0xba, 0x5d, 0x01, 0xd3, 0x02, 0x6c, 0x18, 0xd8, 0x6a, 0x20, 0x3d, 0xb0,
- 0x95, 0xfa, 0xb3, 0x05, 0xb8, 0x28, 0x77, 0x48, 0x95, 0x62, 0xb8, 0xfe, 0xd3, 0x4e, 0xf9, 0x08,
- 0x3b, 0x45, 0x85, 0x12, 0xdf, 0x7a, 0x88, 0xbc, 0x09, 0xfc, 0x58, 0x08, 0x21, 0x9a, 0xc0, 0xa8,
- 0xff, 0x73, 0x1e, 0x46, 0x02, 0xf3, 0x4e, 0x77, 0xdc, 0x13, 0xdc, 0x1d, 0x9f, 0x85, 0x11, 0x0c,
- 0x4d, 0xd4, 0xa6, 0x16, 0x0f, 0xdf, 0xd3, 0x2f, 0x25, 0x3a, 0xf1, 0x11, 0x22, 0xa7, 0x55, 0x84,
- 0x90, 0x69, 0x3f, 0xb7, 0xfc, 0xa4, 0x80, 0x51, 0xdc, 0xec, 0xe3, 0x70, 0xf5, 0x2f, 0x14, 0x60,
- 0xd8, 0x97, 0xf2, 0x84, 0x79, 0x5c, 0xef, 0x79, 0x8e, 0x56, 0xc8, 0xb7, 0x00, 0x16, 0x6d, 0xc7,
- 0xd3, 0x5b, 0xf3, 0xa1, 0xe6, 0xe3, 0x01, 0x69, 0x07, 0xa1, 0xbc, 0x8c, 0x44, 0x82, 0xeb, 0x57,
- 0x68, 0x56, 0xf3, 0x89, 0x89, 0xaf, 0x5f, 0x01, 0x54, 0x93, 0x28, 0xd4, 0xbf, 0x95, 0x87, 0x33,
- 0x7e, 0x27, 0x4d, 0x3d, 0xa1, 0xcd, 0xee, 0x49, 0x9e, 0x9b, 0xa2, 0xd2, 0xee, 0xdf, 0x51, 0xda,
- 0xea, 0xff, 0x29, 0x4d, 0x24, 0x93, 0x2d, 0xfb, 0x74, 0x22, 0xf9, 0x57, 0xa1, 0xe3, 0xea, 0x8f,
- 0x17, 0xe0, 0xbc, 0x2f, 0xf5, 0xe9, 0xae, 0x85, 0x47, 0x0b, 0x93, 0x7a, 0xab, 0x75, 0x92, 0x77,
- 0xe3, 0x43, 0xbe, 0x20, 0x16, 0x44, 0xac, 0x3f, 0x91, 0x5f, 0x70, 0x45, 0x80, 0x1b, 0xb6, 0x69,
- 0x68, 0x32, 0x11, 0x79, 0x17, 0x86, 0xfd, 0x9f, 0x15, 0x67, 0xd5, 0xdf, 0x82, 0xe3, 0x45, 0x41,
- 0x50, 0x48, 0x77, 0x22, 0x21, 0x0d, 0x22, 0x05, 0xd4, 0xaf, 0x0c, 0xc0, 0xe5, 0x47, 0xa6, 0x65,
- 0xd8, 0x1b, 0xae, 0x9f, 0x9e, 0xf2, 0xd8, 0x1f, 0x94, 0x1d, 0x75, 0x5a, 0xca, 0xf7, 0xe0, 0x42,
- 0x5c, 0xa4, 0x4e, 0x10, 0x34, 0x5c, 0xf4, 0xce, 0x06, 0x27, 0x68, 0xf8, 0x89, 0x2a, 0xc5, 0x6d,
- 0x9b, 0x96, 0x5e, 0x32, 0x9e, 0xe9, 0x72, 0x60, 0x37, 0x99, 0x2e, 0x5f, 0x80, 0x52, 0xd5, 0x6e,
- 0xeb, 0xa6, 0x1f, 0xdc, 0x06, 0x47, 0x71, 0x50, 0x2f, 0x62, 0x34, 0x41, 0xc1, 0xf8, 0x8b, 0x8a,
- 0xb1, 0xcb, 0x06, 0x43, 0xfe, 0x7e, 0x01, 0x66, 0xa5, 0x69, 0x32, 0x11, 0xb1, 0x61, 0x44, 0x54,
- 0x27, 0xee, 0xc6, 0x00, 0x37, 0x4f, 0xaf, 0xfa, 0x32, 0xca, 0x56, 0xab, 0x9b, 0x91, 0x72, 0x7c,
- 0x1b, 0xc5, 0x13, 0x70, 0x8a, 0x8f, 0xe1, 0xb7, 0x64, 0x5a, 0x94, 0xbf, 0x24, 0x04, 0x9c, 0x64,
- 0x86, 0x92, 0x42, 0xc0, 0x59, 0x46, 0x26, 0x22, 0x53, 0x70, 0x16, 0x43, 0x3b, 0x07, 0x5b, 0x29,
- 0xa6, 0x12, 0xc3, 0x68, 0x54, 0xe2, 0x95, 0x0b, 0x8f, 0x06, 0xcd, 0x3e, 0xae, 0xd1, 0x14, 0x68,
- 0x2d, 0x59, 0x82, 0x3c, 0x05, 0x85, 0xf9, 0xd9, 0x0a, 0xde, 0xd5, 0x94, 0x79, 0x5a, 0x25, 0xab,
- 0xa5, 0x6b, 0x0c, 0x76, 0xf9, 0xf3, 0x40, 0x92, 0x9f, 0xb3, 0xa7, 0xfb, 0x98, 0xff, 0x52, 0xda,
- 0xf2, 0x1d, 0x77, 0x8f, 0x9a, 0xc3, 0x98, 0x08, 0x23, 0x19, 0xcd, 0xfa, 0x3f, 0xca, 0x8c, 0x66,
- 0xa5, 0x43, 0xcd, 0x68, 0xa6, 0xfe, 0x5a, 0x0e, 0xce, 0x26, 0xc2, 0x9f, 0x93, 0x57, 0x00, 0x38,
- 0x44, 0x0a, 0x33, 0x89, 0x71, 0x5b, 0xc2, 0x90, 0xe8, 0x62, 0x79, 0x0c, 0xc9, 0xc8, 0x2d, 0x28,
- 0xf3, 0x5f, 0x22, 0x34, 0x54, 0xb2, 0x48, 0xb7, 0x6b, 0x1a, 0x5a, 0x40, 0x14, 0xd6, 0x82, 0x37,
- 0x92, 0x85, 0xd4, 0x22, 0xde, 0x66, 0x27, 0xa8, 0x85, 0x91, 0xa9, 0x5f, 0xcb, 0xc3, 0x70, 0xd0,
- 0xe0, 0x8a, 0x71, 0x54, 0x3a, 0x57, 0x12, 0x91, 0xe4, 0x0b, 0x3b, 0x45, 0x92, 0x8f, 0xcd, 0xb7,
- 0x22, 0x74, 0xfc, 0xe1, 0x3d, 0xa8, 0xfa, 0x46, 0x1e, 0xce, 0x04, 0xb5, 0x1e, 0xe1, 0xe5, 0xd7,
- 0xc7, 0x48, 0x24, 0x5f, 0xcf, 0x81, 0x32, 0x61, 0xb6, 0x5a, 0xa6, 0xb5, 0x5a, 0xb3, 0x56, 0x6c,
- 0xa7, 0x8d, 0x13, 0xe2, 0xd1, 0x1d, 0xe1, 0xaa, 0x7f, 0x22, 0x07, 0x67, 0x45, 0x83, 0x26, 0x75,
- 0xc7, 0x38, 0xba, 0xf3, 0xb1, 0x78, 0x4b, 0x8e, 0x4e, 0x5f, 0xd4, 0xdf, 0xcd, 0x03, 0xcc, 0xda,
- 0xcd, 0xf5, 0x63, 0xfe, 0x1e, 0xeb, 0x2d, 0x28, 0xf1, 0xf8, 0x5c, 0x42, 0x63, 0xcf, 0x8a, 0x77,
- 0x47, 0xec, 0xd3, 0x38, 0x62, 0x62, 0x4c, 0xcc, 0xc7, 0x25, 0x1e, 0xdf, 0x4b, 0xc9, 0x69, 0xa2,
- 0x08, 0xab, 0x94, 0xd1, 0x89, 0x05, 0x23, 0xa8, 0x94, 0xc1, 0xa2, 0x95, 0x6e, 0x6f, 0x8d, 0x17,
- 0x5b, 0x76, 0x73, 0x5d, 0x43, 0x7a, 0xf5, 0x5f, 0xe6, 0xb8, 0xec, 0x8e, 0xf9, 0xab, 0x52, 0xff,
- 0xf3, 0x8b, 0x7b, 0xfc, 0xfc, 0x3f, 0x99, 0x83, 0xf3, 0x1a, 0x6d, 0xda, 0x8f, 0xa9, 0xb3, 0x39,
- 0x69, 0x1b, 0xf4, 0x2e, 0xb5, 0xa8, 0x73, 0x54, 0x23, 0xea, 0x6f, 0x63, 0xea, 0x8d, 0xb0, 0x31,
- 0x0f, 0x5c, 0x6a, 0x1c, 0x9f, 0xb4, 0x28, 0xea, 0x6f, 0x0e, 0x80, 0x92, 0x6a, 0xf5, 0x1e, 0x5b,
- 0x73, 0x2e, 0x73, 0x2b, 0x53, 0x3c, 0xac, 0xad, 0x4c, 0xff, 0xde, 0xb6, 0x32, 0xa5, 0xbd, 0x6e,
- 0x65, 0x06, 0x76, 0xb3, 0x95, 0x69, 0xc7, 0xb7, 0x32, 0x65, 0xdc, 0xca, 0xbc, 0xd2, 0x73, 0x2b,
- 0x33, 0x65, 0x19, 0xfb, 0xdc, 0xc8, 0x1c, 0xdb, 0x94, 0xbd, 0xfb, 0xd9, 0x81, 0x5d, 0x67, 0x93,
- 0x62, 0xd3, 0x76, 0x0c, 0x6a, 0x88, 0x8d, 0x17, 0x9e, 0xfa, 0x3b, 0x02, 0xa6, 0x05, 0xd8, 0x44,
- 0xfe, 0xe3, 0x91, 0xdd, 0xe4, 0x3f, 0x3e, 0x84, 0xfd, 0xd7, 0x57, 0xf3, 0x70, 0x76, 0x92, 0x3a,
- 0x1e, 0x0f, 0x00, 0x7a, 0x18, 0x2e, 0x71, 0x15, 0x38, 0x23, 0x31, 0x44, 0x8b, 0x3c, 0x1f, 0xba,
- 0xf9, 0x35, 0xa9, 0xe3, 0xc5, 0xbd, 0x04, 0xe3, 0xf4, 0xac, 0x7a, 0x3f, 0x07, 0x99, 0x18, 0xbb,
- 0x41, 0xf5, 0x3e, 0x9c, 0x0b, 0xd2, 0x14, 0xbf, 0xb4, 0x80, 0x5e, 0x4a, 0x2b, 0x56, 0xdc, 0x7b,
- 0x5a, 0x31, 0xf5, 0x57, 0x73, 0x70, 0x4d, 0xa3, 0x16, 0xdd, 0xd0, 0x97, 0x5b, 0x54, 0x6a, 0x96,
- 0x58, 0x19, 0xd8, 0xac, 0x61, 0xba, 0x6d, 0xdd, 0x6b, 0xae, 0x1d, 0x48, 0x46, 0xd3, 0x30, 0x2c,
- 0xcf, 0x5f, 0x7b, 0x98, 0xdb, 0x22, 0xe5, 0xd4, 0xdf, 0x2c, 0xc2, 0xc0, 0x84, 0xed, 0xdd, 0xb3,
- 0x0f, 0x98, 0xe7, 0x2e, 0x9c, 0xf2, 0xf3, 0x7b, 0x38, 0xeb, 0xf9, 0x0c, 0x56, 0x2e, 0x85, 0xfe,
- 0x47, 0x17, 0xd2, 0x65, 0x3b, 0x91, 0x22, 0xc1, 0x27, 0xdb, 0x63, 0x86, 0xbb, 0xd7, 0x60, 0x10,
- 0xa3, 0xbf, 0x48, 0xa7, 0xb1, 0xe8, 0xa0, 0xed, 0x31, 0x60, 0xbc, 0x8e, 0x90, 0x94, 0xfc, 0x50,
- 0x24, 0x62, 0x69, 0xe9, 0xe0, 0x19, 0xf1, 0xe4, 0xe0, 0xa5, 0xaf, 0xf0, 0x8b, 0x3c, 0x6c, 0x93,
- 0x94, 0x3d, 0x04, 0x4f, 0x51, 0x62, 0x4d, 0x0a, 0x08, 0x0f, 0x31, 0x5b, 0xdd, 0x24, 0x8c, 0x4c,
- 0xd8, 0x9e, 0xe4, 0x0c, 0x3c, 0x18, 0x3e, 0x03, 0x65, 0x92, 0x4f, 0xf7, 0x04, 0x8e, 0x96, 0x51,
- 0xbf, 0x57, 0x84, 0x61, 0xff, 0xe7, 0x11, 0xe9, 0xce, 0x4b, 0x50, 0x9a, 0xb1, 0xa5, 0x04, 0x0a,
- 0xe8, 0x40, 0xbc, 0x66, 0xbb, 0x31, 0xcf, 0x68, 0x41, 0xc4, 0xa4, 0x3e, 0x6f, 0x1b, 0xb2, 0xfb,
- 0x3b, 0x4a, 0xdd, 0xb2, 0x8d, 0xc4, 0xf3, 0xe1, 0x80, 0x90, 0x5c, 0x83, 0x22, 0xbe, 0x1c, 0x90,
- 0x0e, 0xf2, 0x63, 0xaf, 0x05, 0x10, 0x2f, 0x69, 0x65, 0x69, 0xaf, 0x5a, 0x39, 0xb0, 0x5f, 0xad,
- 0x2c, 0x1f, 0xae, 0x56, 0xbe, 0x0f, 0xc3, 0x58, 0x93, 0x9f, 0x7f, 0x6d, 0xe7, 0x85, 0xf5, 0x29,
- 0xb1, 0xf6, 0x8d, 0xf0, 0x76, 0x8b, 0x2c, 0x6c, 0xb8, 0xe4, 0x45, 0x58, 0xc5, 0x74, 0x17, 0x0e,
- 0xb0, 0x9d, 0xfe, 0x47, 0x39, 0x18, 0x78, 0x60, 0xad, 0x5b, 0xf6, 0xc6, 0xc1, 0x34, 0xee, 0x15,
- 0x18, 0x12, 0x6c, 0xa4, 0xd5, 0x05, 0x5f, 0x84, 0x77, 0x39, 0xb8, 0x81, 0x9c, 0x34, 0x99, 0x8a,
- 0xbc, 0x1d, 0x14, 0xc2, 0xc7, 0x41, 0x85, 0x30, 0x05, 0x89, 0x5f, 0xa8, 0x19, 0xcd, 0x9a, 0x20,
- 0x93, 0x93, 0x2b, 0x50, 0xac, 0xb2, 0xa6, 0x4a, 0x31, 0x78, 0x59, 0x53, 0x34, 0x84, 0xaa, 0x5f,
- 0x2d, 0xc2, 0x68, 0xec, 0xe0, 0xeb, 0x05, 0x18, 0x14, 0x07, 0x4f, 0xa6, 0x9f, 0xc6, 0x01, 0x1f,
- 0x0f, 0x05, 0x40, 0xad, 0xcc, 0xff, 0xac, 0x19, 0xe4, 0x73, 0x30, 0x60, 0xbb, 0xb8, 0x28, 0xe2,
- 0xb7, 0x8c, 0x86, 0x43, 0x68, 0xa1, 0xce, 0xda, 0xce, 0x07, 0x87, 0x20, 0x91, 0x35, 0xd2, 0x76,
- 0xf1, 0xd3, 0xee, 0xc0, 0xa0, 0xee, 0xba, 0xd4, 0x6b, 0x78, 0xfa, 0xaa, 0x9c, 0xd9, 0x21, 0x00,
- 0xca, 0xa3, 0x03, 0x81, 0x4b, 0xfa, 0x2a, 0xf9, 0x3c, 0x8c, 0x34, 0x1d, 0x8a, 0xcb, 0xa6, 0xde,
- 0x62, 0xad, 0x94, 0xcc, 0xda, 0x08, 0x42, 0xbe, 0x3f, 0x09, 0x11, 0x35, 0x83, 0x3c, 0x84, 0x11,
- 0xf1, 0x39, 0xdc, 0x73, 0x1f, 0x07, 0xda, 0x68, 0xb8, 0x8c, 0x71, 0x91, 0x70, 0xdf, 0x7d, 0xf1,
- 0x80, 0x43, 0x26, 0x97, 0xf9, 0x1a, 0x12, 0x29, 0x59, 0x00, 0xb2, 0x41, 0x97, 0x1b, 0x7a, 0xd7,
- 0x5b, 0x63, 0x75, 0xf1, 0xc0, 0xe4, 0x22, 0xa1, 0x21, 0xbe, 0x7a, 0x48, 0x62, 0xe5, 0xc7, 0x20,
- 0x1b, 0x74, 0xb9, 0x12, 0x41, 0x92, 0x47, 0x70, 0x21, 0x59, 0x84, 0x7d, 0x32, 0xbf, 0x1c, 0x78,
- 0x7e, 0x7b, 0x6b, 0x7c, 0x3c, 0x95, 0x40, 0x62, 0x7b, 0x2e, 0xc1, 0xb6, 0x66, 0xdc, 0x2b, 0x96,
- 0x07, 0xc6, 0xca, 0xda, 0x28, 0x2b, 0xeb, 0x9b, 0x90, 0xa6, 0xa1, 0xfe, 0x7e, 0x8e, 0x99, 0x8a,
- 0xec, 0x83, 0x30, 0xa3, 0x33, 0xd3, 0xf5, 0xf6, 0x1e, 0x75, 0xbd, 0x1d, 0xe6, 0x5e, 0x2c, 0xb9,
- 0x3d, 0x66, 0x57, 0x4d, 0x60, 0xc9, 0x4d, 0x28, 0x19, 0xf2, 0xa9, 0xd9, 0xc5, 0x68, 0x27, 0xf8,
- 0xf5, 0x68, 0x82, 0x8a, 0x5c, 0x87, 0x22, 0x5b, 0xb2, 0xe2, 0x5b, 0x66, 0xd9, 0xba, 0xd0, 0x90,
- 0x42, 0xfd, 0xb1, 0x3c, 0x0c, 0x4b, 0x5f, 0x73, 0xfb, 0x40, 0x9f, 0xf3, 0xe6, 0xee, 0x9a, 0xe9,
- 0x3b, 0xbd, 0xe0, 0x5e, 0xca, 0x6f, 0xf2, 0x9d, 0x40, 0x14, 0xbb, 0xba, 0x90, 0x12, 0x82, 0x79,
- 0x4d, 0x7c, 0x68, 0x69, 0xf7, 0xdb, 0x47, 0x46, 0x7f, 0xaf, 0x58, 0xce, 0x8f, 0x15, 0xee, 0x15,
- 0xcb, 0xc5, 0xb1, 0x7e, 0x8c, 0xc3, 0x85, 0xa1, 0xaf, 0xf9, 0xde, 0xdc, 0x5a, 0x31, 0x57, 0x8f,
- 0xf9, 0xdb, 0x91, 0xc3, 0x8d, 0x51, 0x16, 0x93, 0xcd, 0x31, 0x7f, 0x48, 0xf2, 0x91, 0xca, 0xe6,
- 0x34, 0x57, 0xa3, 0x90, 0xcd, 0x3f, 0xce, 0x81, 0x92, 0x2a, 0x9b, 0xca, 0x11, 0xf9, 0x41, 0x1c,
- 0x5e, 0xc6, 0xc6, 0x3f, 0xcc, 0xc3, 0xd9, 0x9a, 0xe5, 0xd1, 0x55, 0xbe, 0x63, 0x3c, 0xe6, 0x53,
- 0xc5, 0x7d, 0x18, 0x92, 0x3e, 0x46, 0xf4, 0xf9, 0xd3, 0xc1, 0x7e, 0x3c, 0x44, 0x65, 0x70, 0x92,
- 0x4b, 0x1f, 0x62, 0x92, 0xf7, 0x98, 0x90, 0x8f, 0xf9, 0x9c, 0x73, 0x3c, 0x84, 0x7c, 0xcc, 0x27,
- 0xaf, 0x8f, 0xa9, 0x90, 0xff, 0xf7, 0x1c, 0x9c, 0x4b, 0xa9, 0x9c, 0x5c, 0x83, 0x81, 0x7a, 0x77,
- 0x19, 0xc3, 0x6e, 0xe5, 0x42, 0x8f, 0x61, 0xb7, 0xbb, 0x8c, 0x11, 0xb7, 0x34, 0x1f, 0x49, 0x96,
- 0xf0, 0x71, 0xfd, 0x42, 0xad, 0x3a, 0x29, 0xa4, 0xaa, 0x4a, 0x61, 0x02, 0x18, 0x38, 0xed, 0xcb,
- 0x82, 0x07, 0xf8, 0xb6, 0x69, 0x34, 0x63, 0x0f, 0xf0, 0x59, 0x19, 0xf2, 0xc3, 0x30, 0x58, 0xf9,
- 0xb0, 0xeb, 0x50, 0xe4, 0xcb, 0x25, 0xfe, 0x89, 0x80, 0xaf, 0x8f, 0x48, 0xe3, 0xcc, 0x63, 0x09,
- 0x30, 0x8a, 0x38, 0xef, 0x90, 0xa1, 0xfa, 0xb5, 0x1c, 0x5c, 0xce, 0x6e, 0x1d, 0xf9, 0x0c, 0x0c,
- 0xb0, 0x9d, 0x79, 0x45, 0x9b, 0x17, 0x9f, 0xce, 0xb3, 0x9b, 0xda, 0x2d, 0xda, 0xd0, 0x1d, 0xd9,
- 0xd8, 0xf7, 0xc9, 0xc8, 0x3b, 0x30, 0x54, 0x73, 0xdd, 0x2e, 0x75, 0xea, 0xaf, 0x3c, 0xd0, 0x6a,
- 0x62, 0x4f, 0x88, 0x7b, 0x0e, 0x13, 0xc1, 0x0d, 0xf7, 0x95, 0x58, 0x60, 0x2d, 0x99, 0x5e, 0xfd,
- 0xc9, 0x1c, 0x5c, 0xe9, 0xf5, 0x55, 0xe4, 0x15, 0x28, 0x2f, 0x51, 0x4b, 0xb7, 0xbc, 0x5a, 0x55,
- 0x34, 0x09, 0xb7, 0x58, 0x1e, 0xc2, 0xa2, 0x3b, 0x85, 0x80, 0x90, 0x15, 0xe2, 0xe7, 0x8a, 0x81,
- 0x23, 0x03, 0x3f, 0x03, 0x45, 0x58, 0xac, 0x90, 0x4f, 0xa8, 0xfe, 0x41, 0x1e, 0x86, 0x17, 0x5b,
- 0xdd, 0x55, 0x53, 0x5a, 0x38, 0xf6, 0x6d, 0x6f, 0xfb, 0xd6, 0x6f, 0x7e, 0x6f, 0xd6, 0x2f, 0x1b,
- 0x6e, 0xce, 0x3e, 0x87, 0x9b, 0x5f, 0x8e, 0xbc, 0x0d, 0xa5, 0x0e, 0x7e, 0x47, 0xfc, 0x24, 0x96,
- 0x7f, 0x5d, 0xd6, 0x49, 0x2c, 0x2f, 0xc3, 0xc6, 0x57, 0xf3, 0x00, 0xe3, 0x2b, 0x2c, 0x2b, 0x09,
- 0x34, 0x5c, 0x24, 0x4e, 0x05, 0x7a, 0x28, 0x02, 0x0d, 0x17, 0x84, 0x53, 0x81, 0x1e, 0x40, 0xa0,
- 0xbf, 0x99, 0x87, 0xd1, 0x68, 0x95, 0xe4, 0x33, 0x30, 0xc4, 0xab, 0xe1, 0xe7, 0x42, 0x39, 0xc9,
- 0xa9, 0x38, 0x04, 0x6b, 0xc0, 0x7f, 0x88, 0x03, 0xae, 0x33, 0x6b, 0xba, 0xdb, 0x08, 0x4f, 0x68,
- 0xf8, 0xfd, 0x6d, 0x99, 0x7b, 0x42, 0xc5, 0x50, 0xda, 0xe8, 0x9a, 0xee, 0x4e, 0x86, 0xbf, 0xc9,
- 0x14, 0x10, 0x87, 0x76, 0x5d, 0x1a, 0x65, 0x50, 0x44, 0x06, 0x22, 0xb5, 0x74, 0x1c, 0xab, 0x9d,
- 0xe5, 0x30, 0x99, 0xcd, 0x97, 0x82, 0x66, 0xa3, 0x32, 0xf4, 0xef, 0x22, 0xef, 0xb5, 0x44, 0x9f,
- 0x7e, 0xcc, 0xc9, 0x09, 0xaa, 0xba, 0xa7, 0xf3, 0x4d, 0xb9, 0xdf, 0x01, 0xea, 0x77, 0x2d, 0xe8,
- 0x5f, 0xb0, 0xe8, 0xc2, 0x0a, 0x79, 0x19, 0x06, 0x99, 0xc2, 0xcc, 0xda, 0xac, 0x2f, 0x73, 0xc2,
- 0x7f, 0x42, 0xd2, 0x24, 0x44, 0xcc, 0xf4, 0x69, 0x21, 0x15, 0xb9, 0xc3, 0x73, 0xe7, 0xf3, 0x39,
- 0x56, 0x68, 0x1f, 0x91, 0xcb, 0x70, 0xcc, 0x4c, 0x9f, 0x26, 0xd1, 0xf9, 0xa5, 0xc4, 0x03, 0x9d,
- 0x42, 0xb2, 0x14, 0xc7, 0xf8, 0xa5, 0xc4, 0xf8, 0x98, 0x4d, 0x4b, 0x4b, 0x1f, 0xdf, 0x3d, 0x25,
- 0x29, 0x66, 0xfa, 0xb4, 0xf4, 0x74, 0xf6, 0xc3, 0xb2, 0x43, 0x69, 0xdc, 0xe9, 0x43, 0xc6, 0xcd,
- 0xf4, 0x69, 0x11, 0x5a, 0xf2, 0x3a, 0x0c, 0x89, 0xdf, 0xf7, 0x6c, 0x71, 0xa3, 0x2c, 0xc5, 0x22,
- 0x92, 0x50, 0x33, 0x7d, 0x9a, 0x4c, 0x29, 0x55, 0xba, 0xe8, 0x98, 0x96, 0x27, 0xde, 0x28, 0xc7,
- 0x2b, 0x45, 0x9c, 0x54, 0x29, 0xfe, 0x26, 0xef, 0xc0, 0x48, 0x10, 0xe4, 0xe9, 0x03, 0xda, 0xf4,
- 0xc4, 0xe1, 0xf7, 0x85, 0x58, 0x61, 0x8e, 0x9c, 0xe9, 0xd3, 0xa2, 0xd4, 0xe4, 0x3a, 0x94, 0x34,
- 0xea, 0x9a, 0x1f, 0xfa, 0xd7, 0xc5, 0xa3, 0xd2, 0x38, 0x37, 0x3f, 0x64, 0x52, 0x12, 0x78, 0xd6,
- 0x3b, 0xe1, 0xfd, 0xb4, 0x38, 0xaa, 0x26, 0xb1, 0x5a, 0xa6, 0x2c, 0x83, 0xf5, 0x8e, 0xe4, 0x9c,
- 0xf0, 0xf9, 0x30, 0xf4, 0x95, 0x48, 0xb7, 0x39, 0x14, 0x8f, 0x31, 0x20, 0x63, 0x67, 0xfa, 0xb4,
- 0x18, 0xbd, 0x24, 0xd5, 0xaa, 0xe9, 0xae, 0x8b, 0x68, 0xa3, 0x71, 0xa9, 0x32, 0x94, 0x24, 0x55,
- 0xf6, 0x53, 0xaa, 0x7a, 0x9e, 0x7a, 0x1b, 0xb6, 0xb3, 0x2e, 0x62, 0x8b, 0xc6, 0xab, 0x16, 0x58,
- 0xa9, 0x6a, 0x01, 0x91, 0xab, 0x66, 0x03, 0x6e, 0x34, 0xbd, 0x6a, 0xdd, 0xd3, 0xe5, 0xaa, 0xf9,
- 0x49, 0x9c, 0xdf, 0x49, 0xb3, 0x54, 0x7f, 0xcc, 0xb3, 0x9e, 0x27, 0x3b, 0x14, 0x71, 0x52, 0x87,
- 0xe2, 0x6f, 0x56, 0xa9, 0x94, 0xd9, 0x5a, 0xa4, 0x35, 0x0f, 0x2a, 0x95, 0x50, 0xac, 0x52, 0x39,
- 0x07, 0xf6, 0x1d, 0x39, 0xe1, 0xb3, 0x72, 0x36, 0xda, 0x41, 0x21, 0x86, 0x75, 0x90, 0x94, 0x18,
- 0x7a, 0x1c, 0x93, 0xc9, 0x2a, 0x04, 0xc9, 0x87, 0x82, 0x16, 0x4e, 0x2e, 0xce, 0xf4, 0x69, 0x98,
- 0x66, 0x56, 0xe5, 0x69, 0x8a, 0x95, 0x73, 0x48, 0x31, 0xec, 0x53, 0x30, 0xd8, 0x4c, 0x9f, 0xc6,
- 0x53, 0x18, 0xbf, 0x2c, 0x25, 0x04, 0x54, 0xce, 0x47, 0xa7, 0x88, 0x00, 0xc1, 0xa6, 0x88, 0x30,
- 0x6d, 0xe0, 0x74, 0x32, 0xed, 0x9d, 0x72, 0x21, 0xba, 0xd4, 0xc4, 0xf1, 0x33, 0x7d, 0x5a, 0x32,
- 0x55, 0xde, 0xeb, 0x91, 0x4c, 0x70, 0xca, 0xc5, 0x58, 0x00, 0xb0, 0x10, 0xc5, 0xc4, 0x25, 0xe7,
- 0x8c, 0x5b, 0x88, 0xe5, 0x3c, 0x17, 0x93, 0xd5, 0xa5, 0xe8, 0xc6, 0x25, 0x85, 0x64, 0xa6, 0x4f,
- 0x4b, 0x2b, 0x49, 0x26, 0x13, 0xf9, 0xd8, 0x14, 0x25, 0xea, 0x1b, 0x13, 0x43, 0xcf, 0xf4, 0x69,
- 0x89, 0x0c, 0x6e, 0x77, 0xe4, 0x44, 0x68, 0xca, 0x53, 0xd1, 0x4e, 0x0c, 0x31, 0xac, 0x13, 0xa5,
- 0x84, 0x69, 0x77, 0xe4, 0xe4, 0x58, 0xca, 0xe5, 0x64, 0xa9, 0x70, 0xe6, 0x94, 0x92, 0x68, 0x69,
- 0xe9, 0xf9, 0x7e, 0x94, 0xa7, 0x45, 0xbe, 0x56, 0x51, 0x3e, 0x8d, 0x66, 0xa6, 0x4f, 0x4b, 0xcf,
- 0x15, 0xa4, 0xa5, 0x27, 0xca, 0x51, 0xae, 0xf4, 0xe2, 0x19, 0xb4, 0x2e, 0x3d, 0xc9, 0x8e, 0xde,
- 0x23, 0x6d, 0x89, 0xf2, 0x4c, 0x34, 0xfa, 0x70, 0x26, 0xe1, 0x4c, 0x9f, 0xd6, 0x23, 0xf9, 0xc9,
- 0x83, 0x8c, 0x1c, 0x22, 0xca, 0xd5, 0x68, 0xba, 0xe6, 0x54, 0xa2, 0x99, 0x3e, 0x2d, 0x23, 0x03,
- 0xc9, 0x83, 0x8c, 0x14, 0x13, 0xca, 0x78, 0x4f, 0xb6, 0x81, 0x3c, 0x32, 0x12, 0x54, 0x2c, 0xa4,
- 0x66, 0x67, 0x50, 0x9e, 0x8d, 0xaa, 0x6e, 0x0a, 0x09, 0x53, 0xdd, 0xb4, 0xbc, 0x0e, 0x0b, 0xa9,
- 0xe9, 0x04, 0x94, 0xe7, 0x7a, 0x30, 0x0c, 0xda, 0x98, 0x9a, 0x88, 0x60, 0x21, 0x35, 0x9e, 0xbf,
- 0xa2, 0x46, 0x19, 0xa6, 0x90, 0x30, 0x86, 0x69, 0x99, 0x00, 0x16, 0x52, 0xc3, 0xbe, 0x2b, 0xcf,
- 0xf7, 0x60, 0x18, 0xb6, 0x30, 0x2d, 0x60, 0xfc, 0xeb, 0x91, 0xb8, 0xeb, 0xca, 0x27, 0xa2, 0xf3,
- 0x86, 0x84, 0x62, 0xf3, 0x86, 0x1c, 0xa1, 0x7d, 0x32, 0x11, 0x59, 0x56, 0xf9, 0x64, 0x74, 0x98,
- 0xc7, 0xd0, 0x6c, 0x98, 0xc7, 0x63, 0xd1, 0x4e, 0x26, 0x22, 0x6c, 0x2a, 0xd7, 0xb2, 0x98, 0x20,
- 0x3a, 0xca, 0x84, 0xc7, 0xe4, 0xac, 0xa5, 0x84, 0x78, 0x54, 0x3e, 0x15, 0xf5, 0xeb, 0x4e, 0x10,
- 0xcc, 0xf4, 0x69, 0x29, 0x81, 0x21, 0xb5, 0xf4, 0x78, 0x46, 0xca, 0xf5, 0xe8, 0xb0, 0x4d, 0xa3,
- 0x61, 0xc3, 0x36, 0x35, 0x16, 0xd2, 0x6c, 0xda, 0xe3, 0x13, 0xe5, 0x46, 0xd4, 0x30, 0x4b, 0x52,
- 0x30, 0xc3, 0x2c, 0xe5, 0xd1, 0x8a, 0x96, 0x1e, 0x63, 0x47, 0x79, 0xa1, 0x67, 0x0b, 0x91, 0x26,
- 0xa5, 0x85, 0x3c, 0xe4, 0x4c, 0x68, 0x3b, 0x3d, 0xe8, 0xb4, 0x6c, 0xdd, 0x50, 0x3e, 0x9d, 0x6a,
- 0x3b, 0x71, 0xa4, 0x64, 0x3b, 0x71, 0x00, 0x5b, 0xe5, 0xe5, 0x37, 0x0e, 0xca, 0x8b, 0xd1, 0x55,
- 0x5e, 0xc6, 0xb1, 0x55, 0x3e, 0xf2, 0x1e, 0x62, 0x32, 0xf1, 0x1e, 0x40, 0x79, 0x29, 0xaa, 0x00,
- 0x31, 0x34, 0x53, 0x80, 0xf8, 0x0b, 0x82, 0x2f, 0x67, 0x7b, 0xd0, 0x2b, 0x37, 0x91, 0xdb, 0xb3,
- 0x3e, 0xb7, 0x2c, 0xba, 0x99, 0x3e, 0x2d, 0xdb, 0x0b, 0xbf, 0x96, 0xe2, 0x10, 0xaf, 0xdc, 0x8a,
- 0x2a, 0x58, 0x82, 0x80, 0x29, 0x58, 0xd2, 0x8d, 0xbe, 0x96, 0xe2, 0xd1, 0xae, 0x7c, 0x26, 0x93,
- 0x55, 0xf0, 0xcd, 0x29, 0x7e, 0xf0, 0x77, 0x64, 0x97, 0x74, 0xe5, 0xe5, 0xe8, 0x62, 0x17, 0x62,
- 0xd8, 0x62, 0x27, 0xb9, 0xae, 0xdf, 0x91, 0x9d, 0xb1, 0x95, 0xdb, 0xc9, 0x52, 0xe1, 0x12, 0x29,
- 0x39, 0x6d, 0x6b, 0xe9, 0x3e, 0xcc, 0xca, 0x2b, 0x51, 0xad, 0x4b, 0xa3, 0x61, 0x5a, 0x97, 0xea,
- 0xff, 0x3c, 0x9d, 0x74, 0x45, 0x56, 0xee, 0xc4, 0x37, 0xd9, 0x51, 0x3c, 0xb3, 0x7c, 0x12, 0xee,
- 0xcb, 0x9f, 0x8f, 0x07, 0xdb, 0x53, 0x5e, 0x8d, 0x5d, 0xfb, 0x46, 0xb0, 0xcc, 0xbe, 0x8d, 0x05,
- 0xe7, 0xfb, 0x7c, 0x3c, 0x3e, 0x9d, 0xf2, 0x5a, 0x3a, 0x87, 0x40, 0x57, 0xe2, 0xf1, 0xec, 0x3e,
- 0x1f, 0x0f, 0xe9, 0xa6, 0xbc, 0x9e, 0xce, 0x21, 0x90, 0x6e, 0x3c, 0x04, 0xdc, 0xcb, 0x52, 0x90,
- 0x79, 0xe5, 0xb3, 0x51, 0xd3, 0x31, 0x40, 0x30, 0xd3, 0x31, 0x0c, 0x45, 0xff, 0xb2, 0x14, 0x9c,
- 0x5d, 0x79, 0x23, 0x51, 0x24, 0x68, 0xac, 0x14, 0xc2, 0xfd, 0x65, 0x29, 0xa8, 0xb9, 0xf2, 0x66,
- 0xa2, 0x48, 0xd0, 0x3a, 0x29, 0xf4, 0xb9, 0xd1, 0xeb, 0xfd, 0xaa, 0xf2, 0x56, 0xf4, 0x30, 0x38,
- 0x9b, 0x72, 0xa6, 0x4f, 0xeb, 0xf5, 0x0e, 0xf6, 0xcb, 0xd9, 0x8e, 0xdd, 0xca, 0xdb, 0xd1, 0x21,
- 0x9c, 0x45, 0xc7, 0x86, 0x70, 0xa6, 0x73, 0xf8, 0x3b, 0xb1, 0x58, 0x16, 0xca, 0x3b, 0xd1, 0x29,
- 0x2e, 0x82, 0x64, 0x53, 0x5c, 0x3c, 0xf2, 0x45, 0x24, 0x48, 0x83, 0xf2, 0xb9, 0xe8, 0x14, 0x27,
- 0xe3, 0xd8, 0x14, 0x17, 0x09, 0xe8, 0x30, 0x99, 0x88, 0x1d, 0xa0, 0xbc, 0x1b, 0x9d, 0xe2, 0x62,
- 0x68, 0x36, 0xc5, 0xc5, 0xa3, 0x0d, 0xbc, 0x13, 0x7b, 0x42, 0xaf, 0x7c, 0x3e, 0xbd, 0xfd, 0x88,
- 0x94, 0xdb, 0xcf, 0x1f, 0xdc, 0x6b, 0xe9, 0x6f, 0xc1, 0x95, 0x4a, 0x74, 0xfc, 0xa6, 0xd1, 0xb0,
- 0xf1, 0x9b, 0xfa, 0x8e, 0x3c, 0xbe, 0x71, 0x10, 0x5a, 0x35, 0xd1, 0x63, 0xe3, 0x10, 0x9a, 0x22,
- 0x29, 0xe0, 0xc8, 0x1e, 0x99, 0x6f, 0x84, 0x26, 0x33, 0xf6, 0xc8, 0xfe, 0x36, 0x28, 0x46, 0xcf,
- 0x66, 0xd7, 0x84, 0x9f, 0xb1, 0x52, 0x8d, 0xce, 0xae, 0x09, 0x02, 0x36, 0xbb, 0x26, 0xbd, 0x93,
- 0xa7, 0x61, 0x4c, 0x68, 0x11, 0x77, 0x9f, 0x36, 0xad, 0x55, 0x65, 0x2a, 0xf6, 0xde, 0x32, 0x86,
- 0x67, 0xb3, 0x53, 0x1c, 0x86, 0xeb, 0x35, 0x87, 0x4d, 0xb6, 0xcc, 0xce, 0xb2, 0xad, 0x3b, 0x46,
- 0x9d, 0x5a, 0x86, 0x32, 0x1d, 0x5b, 0xaf, 0x53, 0x68, 0x70, 0xbd, 0x4e, 0x81, 0x63, 0x88, 0xb8,
- 0x18, 0x5c, 0xa3, 0x4d, 0x6a, 0x3e, 0xa6, 0xca, 0x5d, 0x64, 0x3b, 0x9e, 0xc5, 0x56, 0x90, 0xcd,
- 0xf4, 0x69, 0x59, 0x1c, 0x98, 0xad, 0x3e, 0xb7, 0x59, 0x7f, 0x6f, 0x36, 0x08, 0x3f, 0xb0, 0xe8,
- 0xd0, 0x8e, 0xee, 0x50, 0x65, 0x26, 0x6a, 0xab, 0xa7, 0x12, 0x31, 0x5b, 0x3d, 0x15, 0x91, 0x64,
- 0xeb, 0x8f, 0x85, 0x5a, 0x2f, 0xb6, 0xe1, 0x88, 0x48, 0x2f, 0xcd, 0x66, 0xa7, 0x28, 0x82, 0x09,
- 0x68, 0xd6, 0xb6, 0x56, 0xf1, 0xa4, 0xe2, 0x5e, 0x74, 0x76, 0xca, 0xa6, 0x64, 0xb3, 0x53, 0x36,
- 0x96, 0xa9, 0x7a, 0x14, 0xcb, 0xc7, 0xe0, 0xfd, 0xa8, 0xaa, 0xa7, 0x90, 0x30, 0x55, 0x4f, 0x01,
- 0x27, 0x19, 0x6a, 0xd4, 0xa5, 0x9e, 0x32, 0xdb, 0x8b, 0x21, 0x92, 0x24, 0x19, 0x22, 0x38, 0xc9,
- 0x70, 0x9a, 0x7a, 0xcd, 0x35, 0x65, 0xae, 0x17, 0x43, 0x24, 0x49, 0x32, 0x44, 0x30, 0xdb, 0x6c,
- 0x46, 0xc1, 0x13, 0xdd, 0xd6, 0xba, 0xdf, 0x67, 0xf3, 0xd1, 0xcd, 0x66, 0x26, 0x21, 0xdb, 0x6c,
- 0x66, 0x22, 0xc9, 0x4f, 0xee, 0xda, 0x0f, 0x5e, 0x59, 0xc0, 0x0a, 0x6f, 0x86, 0x76, 0xc1, 0x6e,
- 0x4a, 0xcd, 0xf4, 0x69, 0xbb, 0xf5, 0xb3, 0xff, 0x74, 0xe0, 0x34, 0xaa, 0x2c, 0x62, 0x55, 0x67,
- 0x82, 0xb3, 0x0a, 0x0e, 0x9e, 0xe9, 0xd3, 0x02, 0xb7, 0xd2, 0xd7, 0x61, 0x08, 0x3f, 0xaa, 0x66,
- 0x99, 0x5e, 0x75, 0x42, 0x79, 0x2f, 0xba, 0x65, 0x92, 0x50, 0x6c, 0xcb, 0x24, 0xfd, 0x64, 0x93,
- 0x38, 0xfe, 0xe4, 0x53, 0x4c, 0x75, 0x42, 0xd1, 0xa2, 0x93, 0x78, 0x04, 0xc9, 0x26, 0xf1, 0x08,
- 0x20, 0xa8, 0xb7, 0xea, 0xd8, 0x9d, 0xea, 0x84, 0x52, 0x4f, 0xa9, 0x97, 0xa3, 0x82, 0x7a, 0xf9,
- 0xcf, 0xa0, 0xde, 0xfa, 0x5a, 0xd7, 0xab, 0xb2, 0x6f, 0x5c, 0x4a, 0xa9, 0xd7, 0x47, 0x06, 0xf5,
- 0xfa, 0x00, 0x36, 0x15, 0x22, 0x60, 0xd1, 0xb1, 0xd9, 0xa4, 0x7d, 0xdf, 0x6c, 0xb5, 0x94, 0x07,
- 0xd1, 0xa9, 0x30, 0x8e, 0x67, 0x53, 0x61, 0x1c, 0xc6, 0x4c, 0x4f, 0xde, 0x2a, 0xba, 0xdc, 0x5d,
- 0x55, 0x1e, 0x46, 0x4d, 0xcf, 0x10, 0xc3, 0x4c, 0xcf, 0xf0, 0x17, 0xee, 0x2e, 0xd8, 0x2f, 0x8d,
- 0xae, 0x38, 0xd4, 0x5d, 0x53, 0x1e, 0xc5, 0x76, 0x17, 0x12, 0x0e, 0x77, 0x17, 0xd2, 0x6f, 0xb2,
- 0x0a, 0x4f, 0x47, 0x16, 0x1a, 0xff, 0xd2, 0xa6, 0x4e, 0x75, 0xa7, 0xb9, 0xa6, 0x7c, 0x01, 0x59,
- 0x3d, 0x9f, 0xba, 0x54, 0x45, 0x49, 0x67, 0xfa, 0xb4, 0x5e, 0x9c, 0x70, 0x5b, 0xfe, 0xde, 0x2c,
- 0x8f, 0x04, 0xab, 0x2d, 0x4e, 0xfa, 0x9b, 0xd0, 0xf7, 0x63, 0xdb, 0xf2, 0x24, 0x09, 0x6e, 0xcb,
- 0x93, 0x60, 0xd2, 0x81, 0xab, 0xb1, 0xad, 0xda, 0x9c, 0xde, 0x62, 0xfb, 0x12, 0x6a, 0x2c, 0xea,
- 0xcd, 0x75, 0xea, 0x29, 0x5f, 0x44, 0xde, 0xd7, 0x32, 0x36, 0x7c, 0x31, 0xea, 0x99, 0x3e, 0x6d,
- 0x07, 0x7e, 0x44, 0x85, 0x62, 0x7d, 0x7a, 0x69, 0x51, 0xf9, 0xa1, 0xe8, 0xf9, 0x26, 0x83, 0xcd,
- 0xf4, 0x69, 0x88, 0x63, 0x56, 0xda, 0x83, 0xce, 0xaa, 0xa3, 0x1b, 0x94, 0x1b, 0x5a, 0x68, 0xbb,
- 0x09, 0x03, 0xf4, 0x87, 0xa3, 0x56, 0x5a, 0x16, 0x1d, 0xb3, 0xd2, 0xb2, 0x70, 0x4c, 0x51, 0x23,
- 0x49, 0x4f, 0x94, 0x2f, 0x45, 0x15, 0x35, 0x82, 0x64, 0x8a, 0x1a, 0x4d, 0x91, 0xf2, 0x05, 0xb8,
- 0x18, 0xec, 0xe7, 0xc5, 0xfa, 0xcb, 0x3b, 0x4d, 0xf9, 0x32, 0xf2, 0xb9, 0x9a, 0xb8, 0x0c, 0x88,
- 0x50, 0xcd, 0xf4, 0x69, 0x19, 0xe5, 0xd9, 0x8a, 0x9b, 0xc8, 0xe7, 0x25, 0xcc, 0x8b, 0x1f, 0x89,
- 0xae, 0xb8, 0x19, 0x64, 0x6c, 0xc5, 0xcd, 0x40, 0xa5, 0x32, 0x17, 0x42, 0xd5, 0x77, 0x60, 0x1e,
- 0xc8, 0x34, 0x8b, 0x43, 0x2a, 0x73, 0x61, 0xa9, 0x2d, 0xef, 0xc0, 0x3c, 0xb0, 0xd6, 0xb2, 0x38,
- 0x90, 0xeb, 0x50, 0xaa, 0xd7, 0xe7, 0xb4, 0xae, 0xa5, 0x34, 0x63, 0xde, 0xb2, 0x08, 0x9d, 0xe9,
- 0xd3, 0x04, 0x9e, 0x99, 0x41, 0x53, 0x2d, 0xdd, 0xf5, 0xcc, 0xa6, 0x8b, 0x23, 0xc6, 0x1f, 0x21,
- 0x46, 0xd4, 0x0c, 0x4a, 0xa3, 0x61, 0x66, 0x50, 0x1a, 0x9c, 0xd9, 0x8b, 0x93, 0xba, 0xeb, 0xea,
- 0x96, 0xe1, 0xe8, 0x13, 0xb8, 0x4c, 0xd0, 0xd8, 0x6b, 0xac, 0x08, 0x96, 0xd9, 0x8b, 0x51, 0x08,
- 0x1e, 0xbe, 0xfb, 0x10, 0xdf, 0xcc, 0x59, 0x89, 0x1d, 0xbe, 0xc7, 0xf0, 0x78, 0xf8, 0x1e, 0x83,
- 0xa1, 0xdd, 0xe9, 0xc3, 0x34, 0xba, 0x6a, 0x32, 0x11, 0x29, 0xab, 0x31, 0xbb, 0x33, 0x4e, 0x80,
- 0x76, 0x67, 0x1c, 0x18, 0x69, 0x92, 0xbf, 0xdc, 0xae, 0x65, 0x34, 0x29, 0x5c, 0x65, 0x13, 0x65,
- 0xd8, 0xfa, 0x1d, 0x0e, 0x8e, 0xea, 0xa6, 0xa5, 0xb7, 0xed, 0xea, 0x84, 0x2f, 0x75, 0x33, 0xba,
- 0x7e, 0x67, 0x12, 0xb2, 0xf5, 0x3b, 0x13, 0xc9, 0x66, 0x57, 0x7f, 0xa3, 0xb5, 0xa6, 0x3b, 0xd4,
- 0xa8, 0x9a, 0x0e, 0x9e, 0x2c, 0x6e, 0xf2, 0xad, 0xe1, 0x07, 0xd1, 0xd9, 0xb5, 0x07, 0x29, 0x9b,
- 0x5d, 0x7b, 0xa0, 0x99, 0x91, 0x97, 0x8e, 0xd6, 0xa8, 0x6e, 0x28, 0xeb, 0x51, 0x23, 0x2f, 0x9b,
- 0x92, 0x19, 0x79, 0xd9, 0xd8, 0xec, 0xcf, 0x79, 0xe4, 0x98, 0x1e, 0x55, 0x5a, 0xbb, 0xf9, 0x1c,
- 0x24, 0xcd, 0xfe, 0x1c, 0x44, 0xb3, 0x0d, 0x61, 0xbc, 0x43, 0xda, 0xd1, 0x0d, 0x61, 0xb2, 0x1b,
- 0xe2, 0x25, 0x98, 0xc5, 0x22, 0x1e, 0xe5, 0x29, 0x56, 0xd4, 0x62, 0x11, 0x60, 0x66, 0xb1, 0x84,
- 0xcf, 0xf6, 0x22, 0x4f, 0xb1, 0x14, 0x3b, 0xba, 0x86, 0xca, 0x38, 0xb6, 0x86, 0x46, 0x9e, 0x6d,
- 0xbd, 0x1e, 0x79, 0x67, 0xa0, 0x74, 0xa2, 0x56, 0x87, 0x84, 0x62, 0x56, 0x87, 0xfc, 0x22, 0x61,
- 0x12, 0xce, 0xe0, 0x2d, 0xb8, 0xd6, 0x0d, 0xee, 0x71, 0x7e, 0x34, 0xfa, 0x99, 0x31, 0x34, 0xfb,
- 0xcc, 0x18, 0x28, 0xc2, 0x44, 0x4c, 0x5b, 0x4e, 0x06, 0x93, 0xf0, 0x7c, 0x30, 0x06, 0x22, 0xb3,
- 0x40, 0xea, 0x95, 0xb9, 0xd9, 0x9a, 0xb1, 0x28, 0x5f, 0x91, 0xb9, 0xd1, 0x13, 0xd8, 0x24, 0xc5,
- 0x4c, 0x9f, 0x96, 0x52, 0x8e, 0x7c, 0x00, 0x57, 0x04, 0x54, 0xbc, 0xb8, 0xc6, 0xb4, 0xff, 0x46,
- 0xb0, 0x20, 0x78, 0x51, 0x3f, 0xb6, 0x5e, 0xb4, 0x33, 0x7d, 0x5a, 0x4f, 0x5e, 0xd9, 0x75, 0x89,
- 0xf5, 0xa1, 0xbb, 0x9b, 0xba, 0x82, 0x45, 0xa2, 0x27, 0xaf, 0xec, 0xba, 0x84, 0xdc, 0x1f, 0xef,
- 0xa6, 0xae, 0xa0, 0x13, 0x7a, 0xf2, 0x22, 0x2e, 0x8c, 0xf7, 0xc2, 0x57, 0x5a, 0x2d, 0x65, 0x03,
- 0xab, 0xfb, 0xd4, 0x6e, 0xaa, 0xab, 0xa0, 0xc1, 0xb9, 0x13, 0x47, 0x36, 0x4b, 0x2f, 0x74, 0xa8,
- 0x55, 0x8f, 0x2c, 0x40, 0x4f, 0xa2, 0xb3, 0x74, 0x82, 0x80, 0xcd, 0xd2, 0x09, 0x20, 0x1b, 0x50,
- 0xf2, 0x73, 0x15, 0x65, 0x33, 0x3a, 0xa0, 0x64, 0x1c, 0x1b, 0x50, 0x91, 0xa7, 0x2d, 0x0b, 0x70,
- 0x6e, 0x61, 0xdd, 0xd3, 0x7d, 0x0b, 0xd2, 0x15, 0x5d, 0xf9, 0x61, 0xec, 0x92, 0x29, 0x49, 0x82,
- 0x97, 0x4c, 0x49, 0x30, 0x1b, 0x23, 0x0c, 0x5c, 0xdf, 0xb4, 0x9a, 0xd3, 0xba, 0xd9, 0xea, 0x3a,
- 0x54, 0xf9, 0xd7, 0xa2, 0x63, 0x24, 0x86, 0x66, 0x63, 0x24, 0x06, 0x62, 0x0b, 0x34, 0x03, 0x55,
- 0x5c, 0xd7, 0x5c, 0xb5, 0xc4, 0xbe, 0xb2, 0xdb, 0xf2, 0x94, 0x7f, 0x3d, 0xba, 0x40, 0xa7, 0xd1,
- 0xb0, 0x05, 0x3a, 0x0d, 0x8e, 0xa7, 0x4e, 0xac, 0x17, 0xd8, 0xe2, 0x21, 0xdf, 0x55, 0xfe, 0x1b,
- 0xb1, 0x53, 0xa7, 0x14, 0x1a, 0x3c, 0x75, 0x4a, 0x81, 0xb3, 0xf5, 0x91, 0xdb, 0x64, 0xb3, 0x66,
- 0x70, 0x57, 0xfd, 0x6f, 0x46, 0xd7, 0xc7, 0x38, 0x9e, 0xad, 0x8f, 0x71, 0x58, 0x94, 0x8f, 0xe8,
- 0x82, 0x7f, 0x2b, 0x8b, 0x4f, 0x20, 0xff, 0x44, 0x19, 0x72, 0x57, 0xe6, 0x23, 0x46, 0xca, 0x8f,
- 0xe5, 0xb2, 0x18, 0x05, 0xc3, 0x23, 0x51, 0x28, 0xca, 0x48, 0xa3, 0x8f, 0x4d, 0xba, 0xa1, 0x7c,
- 0x25, 0x93, 0x11, 0x27, 0x88, 0x32, 0xe2, 0x30, 0xf2, 0x3e, 0x5c, 0x0c, 0x61, 0x73, 0xb4, 0xbd,
- 0x1c, 0xcc, 0x4c, 0x7f, 0x2c, 0x17, 0x35, 0x83, 0xd3, 0xc9, 0x98, 0x19, 0x9c, 0x8e, 0x49, 0x63,
- 0x2d, 0x44, 0xf7, 0x6f, 0xef, 0xc0, 0x3a, 0x90, 0x60, 0x06, 0x83, 0x34, 0xd6, 0x42, 0x9a, 0x3f,
- 0xbe, 0x03, 0xeb, 0x40, 0xa6, 0x19, 0x0c, 0xc8, 0x4f, 0xe5, 0xe0, 0x5a, 0x3a, 0xaa, 0xd2, 0x6a,
- 0x4d, 0xdb, 0x4e, 0x88, 0x53, 0xfe, 0x78, 0x2e, 0x7a, 0xd0, 0xb0, 0xbb, 0x62, 0x33, 0x7d, 0xda,
- 0x2e, 0x2b, 0x20, 0x9f, 0x83, 0x91, 0x4a, 0xd7, 0x30, 0x3d, 0xbc, 0x78, 0x63, 0x86, 0xf3, 0x4f,
- 0xe4, 0x62, 0x5b, 0x1c, 0x19, 0x8b, 0x5b, 0x1c, 0x19, 0x40, 0xee, 0xc1, 0xd9, 0x3a, 0x6d, 0x76,
- 0x1d, 0xd3, 0xdb, 0xd4, 0x68, 0xc7, 0x76, 0x3c, 0xc6, 0xe3, 0x4f, 0xe4, 0xa2, 0x93, 0x58, 0x82,
- 0x82, 0x4d, 0x62, 0x09, 0x20, 0x79, 0x98, 0xb8, 0x95, 0x17, 0x9d, 0xf9, 0x93, 0xb9, 0x9e, 0xd7,
- 0xf2, 0x41, 0x5f, 0xa6, 0x17, 0x27, 0x8b, 0xb1, 0x5b, 0x74, 0xc1, 0xf5, 0xa7, 0x72, 0x3d, 0xae,
- 0xd1, 0xa5, 0x19, 0x2e, 0x09, 0x66, 0x1c, 0x53, 0x32, 0xc0, 0x2b, 0x7f, 0x32, 0xd7, 0xe3, 0xda,
- 0x3b, 0xe4, 0x98, 0x96, 0x3c, 0xfe, 0x55, 0xee, 0x29, 0x22, 0x18, 0xfd, 0x74, 0x2e, 0xe9, 0x2a,
- 0x12, 0x94, 0x97, 0x08, 0x59, 0xb1, 0x07, 0x6e, 0xa0, 0xf4, 0x5f, 0xcd, 0x25, 0x7d, 0xf3, 0xc2,
- 0x62, 0xe1, 0x2f, 0x42, 0xe1, 0xf2, 0xd4, 0x13, 0x8f, 0x3a, 0x96, 0xde, 0xc2, 0xee, 0xac, 0x7b,
- 0xb6, 0xa3, 0xaf, 0xd2, 0x29, 0x4b, 0x5f, 0x6e, 0x51, 0xe5, 0x6b, 0xb9, 0xa8, 0x05, 0x9b, 0x4d,
- 0xca, 0x2c, 0xd8, 0x6c, 0x2c, 0x59, 0x83, 0xa7, 0xd3, 0xb0, 0x55, 0xd3, 0xc5, 0x7a, 0xbe, 0x9e,
- 0x8b, 0x9a, 0xb0, 0x3d, 0x68, 0x99, 0x09, 0xdb, 0x03, 0x4d, 0x6e, 0xc3, 0xe0, 0x84, 0xed, 0x4f,
- 0xbf, 0x7f, 0x2a, 0xe6, 0x0c, 0x19, 0x60, 0x66, 0xfa, 0xb4, 0x90, 0x4c, 0x94, 0x11, 0x83, 0xfa,
- 0x1b, 0xc9, 0x32, 0xe1, 0xe5, 0x53, 0xf0, 0x43, 0x94, 0x11, 0xe2, 0xfe, 0x77, 0x92, 0x65, 0xc2,
- 0x3b, 0xae, 0xe0, 0x07, 0x9b, 0x49, 0x78, 0x8d, 0x73, 0xd3, 0x15, 0x66, 0xb7, 0x4d, 0xae, 0xe9,
- 0xad, 0x16, 0xb5, 0x56, 0xa9, 0xf2, 0xcd, 0xd8, 0x4c, 0x92, 0x4e, 0xc6, 0x66, 0x92, 0x74, 0x0c,
- 0xf9, 0x61, 0xb8, 0xf4, 0x50, 0x6f, 0x99, 0x46, 0x88, 0xf3, 0xf3, 0x81, 0x2b, 0x3f, 0x93, 0x8b,
- 0xee, 0xa6, 0x33, 0xe8, 0xd8, 0x6e, 0x3a, 0x03, 0x45, 0xe6, 0x80, 0xe0, 0x32, 0x1a, 0xcc, 0x16,
- 0x6c, 0x7d, 0x56, 0xfe, 0xdd, 0x5c, 0xd4, 0x4e, 0x4d, 0x92, 0x30, 0x3b, 0x35, 0x09, 0x25, 0x8d,
- 0xec, 0xd4, 0x20, 0xca, 0xcf, 0xe6, 0xa2, 0xa7, 0x35, 0x59, 0x84, 0x33, 0x7d, 0x5a, 0x76, 0x7e,
- 0x91, 0xbb, 0x30, 0x56, 0x5f, 0xac, 0x4d, 0x4f, 0x4f, 0xd5, 0x1f, 0xd6, 0xaa, 0xf8, 0xd0, 0xc1,
- 0x50, 0xfe, 0x74, 0x6c, 0xc5, 0x8a, 0x13, 0xb0, 0x15, 0x2b, 0x0e, 0x23, 0x6f, 0xc1, 0x30, 0x6b,
- 0x3f, 0x1b, 0x30, 0xf8, 0xc9, 0x3f, 0x97, 0x8b, 0x9a, 0x53, 0x32, 0x92, 0x99, 0x53, 0xf2, 0x6f,
- 0x52, 0x87, 0xf3, 0x4c, 0x8a, 0x8b, 0x0e, 0x5d, 0xa1, 0x0e, 0xb5, 0x9a, 0xfe, 0x98, 0xfe, 0xf9,
- 0x5c, 0xd4, 0xca, 0x48, 0x23, 0x62, 0x56, 0x46, 0x1a, 0x9c, 0xac, 0xc3, 0x95, 0xf8, 0x49, 0x90,
- 0xfc, 0xec, 0x54, 0xf9, 0x33, 0xb9, 0x98, 0x31, 0xdc, 0x83, 0x18, 0x8d, 0xe1, 0x1e, 0x78, 0x62,
- 0xc1, 0x33, 0xe2, 0x58, 0x45, 0x38, 0x5c, 0xc6, 0x6b, 0xfb, 0xb3, 0xbc, 0xb6, 0x4f, 0x86, 0x0e,
- 0x81, 0x3d, 0xa8, 0x67, 0xfa, 0xb4, 0xde, 0xec, 0x98, 0x9e, 0x25, 0x13, 0x60, 0x28, 0xbf, 0x90,
- 0x4b, 0xf7, 0x48, 0x89, 0xb8, 0x29, 0xa7, 0x65, 0xce, 0x78, 0x3f, 0x2b, 0x7d, 0x83, 0xf2, 0xe7,
- 0x62, 0xe3, 0x2d, 0x9d, 0x8c, 0x8d, 0xb7, 0x8c, 0xfc, 0x0f, 0xf7, 0xe0, 0x2c, 0x57, 0xea, 0x45,
- 0x1d, 0x87, 0xa1, 0xb5, 0x4a, 0x0d, 0xe5, 0xdf, 0x8b, 0xad, 0x76, 0x09, 0x0a, 0x74, 0xed, 0x89,
- 0x03, 0xd9, 0xd4, 0x5d, 0xef, 0xe8, 0x96, 0x85, 0xc7, 0xac, 0xca, 0xbf, 0x1f, 0x9b, 0xba, 0x43,
- 0x14, 0x3a, 0xee, 0x06, 0xbf, 0x98, 0x26, 0xf4, 0x4a, 0x7d, 0xa4, 0xfc, 0xf9, 0x98, 0x26, 0xf4,
- 0x22, 0x66, 0x9a, 0xd0, 0x33, 0x8f, 0xd2, 0xc3, 0x8c, 0x27, 0xe0, 0xca, 0x2f, 0xc6, 0x56, 0xe4,
- 0x54, 0x2a, 0xb6, 0x22, 0xa7, 0xbf, 0x20, 0x7f, 0x98, 0xf1, 0x7c, 0x5a, 0xf9, 0xa5, 0xde, 0x7c,
- 0xc3, 0x95, 0x3e, 0xfd, 0xf5, 0xf5, 0xc3, 0x8c, 0xa7, 0xc7, 0xca, 0x5f, 0xe8, 0xcd, 0x37, 0x74,
- 0xec, 0x4b, 0x7f, 0xb9, 0xdc, 0xc8, 0x7e, 0xb6, 0xab, 0xfc, 0xc5, 0xf8, 0xd4, 0x95, 0x41, 0x88,
- 0x53, 0x57, 0xd6, 0xdb, 0xdf, 0x65, 0x78, 0x8a, 0x6b, 0xc8, 0x5d, 0x47, 0xef, 0xac, 0xd5, 0xa9,
- 0xe7, 0x99, 0xd6, 0xaa, 0xbf, 0x13, 0xfb, 0x4b, 0xb9, 0xd8, 0xf1, 0x58, 0x16, 0x25, 0x1e, 0x8f,
- 0x65, 0x21, 0x99, 0xf2, 0x26, 0x1e, 0xe8, 0x2a, 0x7f, 0x39, 0xa6, 0xbc, 0x09, 0x0a, 0xa6, 0xbc,
- 0xc9, 0x77, 0xbd, 0xf7, 0x52, 0xde, 0xa1, 0x2a, 0xff, 0x41, 0x36, 0xaf, 0xa0, 0x7d, 0x29, 0xcf,
- 0x57, 0xef, 0xa5, 0x3c, 0xb7, 0x54, 0xfe, 0xc3, 0x6c, 0x5e, 0xa1, 0x0f, 0x52, 0xf2, 0x95, 0xe6,
- 0xfb, 0x70, 0x91, 0xcf, 0xe6, 0xd3, 0xd4, 0xa0, 0x91, 0x0f, 0xfd, 0xe5, 0xd8, 0xd8, 0x4f, 0x27,
- 0xc3, 0x23, 0xf7, 0x54, 0x4c, 0x1a, 0x6b, 0xd1, 0xd6, 0xbf, 0xb2, 0x03, 0xeb, 0x70, 0x43, 0x90,
- 0x8e, 0x61, 0xeb, 0x8d, 0xfc, 0xf8, 0x4d, 0xf9, 0x95, 0xd8, 0x7a, 0x23, 0x23, 0xd1, 0x9d, 0x43,
- 0x7e, 0x29, 0xf7, 0x56, 0xf4, 0xa1, 0x97, 0xf2, 0x1f, 0xa5, 0x16, 0x0e, 0x3a, 0x20, 0xfa, 0x2a,
- 0xec, 0xad, 0xe8, 0xa3, 0x26, 0xe5, 0x57, 0x53, 0x0b, 0x07, 0x1f, 0x10, 0x7d, 0x01, 0xc5, 0xb6,
- 0x48, 0x5d, 0xcf, 0xe6, 0xac, 0x22, 0xd3, 0xc3, 0x5f, 0x8d, 0x6f, 0x91, 0x52, 0xc9, 0x70, 0x8b,
- 0x94, 0x8a, 0x49, 0x63, 0x2d, 0x3e, 0xef, 0xd7, 0x76, 0x60, 0x2d, 0x6d, 0xec, 0x52, 0x31, 0x69,
- 0xac, 0xc5, 0xc7, 0xff, 0xfa, 0x0e, 0xac, 0xa5, 0x8d, 0x5d, 0x2a, 0x86, 0x99, 0x63, 0x21, 0xe6,
- 0x21, 0x75, 0xdc, 0x50, 0xfd, 0xfe, 0x5a, 0xcc, 0x1c, 0xcb, 0xa0, 0x63, 0xe6, 0x58, 0x06, 0x2a,
- 0x95, 0xbb, 0x10, 0xca, 0x6f, 0xec, 0xc4, 0x3d, 0xbc, 0x97, 0xc9, 0x40, 0xa5, 0x72, 0x17, 0x72,
- 0xf9, 0xeb, 0x3b, 0x71, 0x0f, 0x2f, 0x66, 0x32, 0x50, 0xcc, 0x28, 0xaa, 0x7b, 0xba, 0x67, 0x36,
- 0x67, 0x6c, 0xd7, 0x93, 0x16, 0xf9, 0xbf, 0x11, 0x33, 0x8a, 0xd2, 0x88, 0x98, 0x51, 0x94, 0x06,
- 0x4f, 0x32, 0x15, 0xd2, 0xf8, 0xcd, 0x9e, 0x4c, 0x43, 0x4b, 0x2b, 0x0d, 0x9e, 0x64, 0x2a, 0x84,
- 0xf0, 0x1f, 0xf7, 0x64, 0x1a, 0x7a, 0xca, 0xa7, 0xc1, 0x99, 0x65, 0x3a, 0xe9, 0xd8, 0x1b, 0xd6,
- 0x3d, 0xba, 0x41, 0x5b, 0xe2, 0xd3, 0x7f, 0x2b, 0x66, 0x99, 0xc6, 0x09, 0xf0, 0x16, 0x25, 0x06,
- 0x8b, 0x32, 0x12, 0x9f, 0xfb, 0xdb, 0x99, 0x8c, 0xc2, 0x63, 0xa2, 0x38, 0x2c, 0xca, 0x48, 0x7c,
- 0xe2, 0xef, 0x64, 0x32, 0x0a, 0x8f, 0x89, 0xe2, 0x30, 0x52, 0x81, 0x51, 0x7c, 0x2b, 0xa1, 0xbb,
- 0xbe, 0xe7, 0xe7, 0xdf, 0xce, 0x45, 0x6f, 0xbd, 0xa2, 0xe8, 0x99, 0x3e, 0x2d, 0x56, 0x40, 0x66,
- 0x21, 0x3e, 0xe9, 0x5b, 0x19, 0x2c, 0x42, 0x7f, 0xc7, 0x28, 0x44, 0x66, 0x21, 0x3e, 0xe6, 0x3f,
- 0xc9, 0x60, 0x11, 0x3a, 0x3c, 0x46, 0x21, 0x13, 0x03, 0xd0, 0x8f, 0x07, 0xa2, 0xea, 0x2f, 0xe6,
- 0x60, 0xb8, 0xee, 0x39, 0x54, 0x6f, 0x8b, 0xb0, 0x6d, 0x97, 0xa1, 0xcc, 0x3d, 0x8b, 0xfd, 0x67,
- 0xd0, 0x5a, 0xf0, 0x9b, 0x5c, 0x83, 0xd1, 0x59, 0xdd, 0xf5, 0xb0, 0x64, 0xcd, 0x32, 0xe8, 0x13,
- 0x7c, 0x55, 0x57, 0xd0, 0x62, 0x50, 0x32, 0xcb, 0xe9, 0x78, 0x39, 0x8c, 0xd4, 0x59, 0xd8, 0x31,
- 0x5a, 0x59, 0xf9, 0x3b, 0x5b, 0xe3, 0x7d, 0x18, 0x9c, 0x2c, 0x56, 0x56, 0xfd, 0xfd, 0x1c, 0x24,
- 0x7c, 0x9e, 0xf7, 0x1f, 0x9e, 0x60, 0x01, 0xce, 0xc4, 0xa2, 0xc3, 0x8a, 0xa7, 0x81, 0xbb, 0x0c,
- 0x1e, 0x1b, 0x2f, 0x4d, 0x3e, 0x15, 0x3c, 0x49, 0x7b, 0xa0, 0xcd, 0x8a, 0x48, 0x74, 0x98, 0x43,
- 0xa1, 0xeb, 0xb4, 0x34, 0x09, 0x25, 0x22, 0x0d, 0x7d, 0x7f, 0x2c, 0x0c, 0x7d, 0x49, 0xae, 0x89,
- 0x58, 0x09, 0xb9, 0x30, 0x7e, 0x5d, 0x2c, 0x63, 0x3b, 0x8f, 0x8d, 0xf0, 0x39, 0x18, 0xae, 0xb5,
- 0x3b, 0xd4, 0x71, 0x6d, 0x4b, 0xf7, 0x6c, 0x47, 0x3c, 0x35, 0xc7, 0xd8, 0x66, 0xa6, 0x04, 0x97,
- 0xe3, 0x6d, 0xc9, 0xf4, 0xe4, 0x86, 0x9f, 0x06, 0xae, 0x80, 0x41, 0x47, 0xf1, 0xbd, 0x68, 0x3c,
- 0x0b, 0x38, 0xa7, 0x60, 0xa4, 0x0f, 0x5c, 0x1d, 0x1f, 0x2f, 0x06, 0xa4, 0x5d, 0x06, 0x90, 0x49,
- 0x91, 0x82, 0xbc, 0x08, 0x25, 0xbc, 0xec, 0x71, 0x31, 0xbd, 0xa3, 0x88, 0xaa, 0xd7, 0x42, 0x88,
- 0x1c, 0xc3, 0x8c, 0xd3, 0x90, 0xfb, 0x30, 0x16, 0xde, 0x64, 0xdf, 0x75, 0xec, 0x6e, 0xc7, 0x4f,
- 0xe8, 0x82, 0xd9, 0xd3, 0xd7, 0x03, 0x5c, 0x63, 0x15, 0x91, 0x12, 0x8b, 0x44, 0x41, 0x32, 0x03,
- 0x67, 0x42, 0x18, 0x13, 0x91, 0x9f, 0x48, 0x0a, 0x93, 0x78, 0x4a, 0xbc, 0x98, 0x38, 0x23, 0x49,
- 0x3c, 0x63, 0xc5, 0x48, 0x0d, 0x06, 0xfc, 0x90, 0x7a, 0xe5, 0x1d, 0x95, 0xf4, 0x9c, 0x08, 0xa9,
- 0x37, 0x20, 0x07, 0xd3, 0xf3, 0xcb, 0x93, 0x69, 0x18, 0xd5, 0xec, 0xae, 0x47, 0x97, 0x6c, 0xb1,
- 0x05, 0x14, 0xa1, 0x1b, 0xb1, 0x4d, 0x0e, 0xc3, 0x34, 0x3c, 0xdb, 0x4f, 0x3e, 0x2f, 0x27, 0x41,
- 0x8f, 0x96, 0x22, 0xf3, 0x70, 0x36, 0x71, 0xe7, 0x2f, 0xa7, 0x84, 0x97, 0x3e, 0x2f, 0xc9, 0x2c,
- 0x59, 0x94, 0xfc, 0x44, 0x0e, 0x4a, 0x4b, 0x8e, 0x6e, 0x7a, 0xae, 0x78, 0xf7, 0x78, 0xe1, 0xe6,
- 0x86, 0xa3, 0x77, 0x98, 0x7e, 0xdc, 0xc4, 0xa8, 0xb2, 0x0f, 0xf5, 0x56, 0x97, 0xba, 0x13, 0x8f,
- 0xd8, 0xd7, 0xfd, 0xf7, 0x5b, 0xe3, 0x6f, 0xad, 0xe2, 0xc9, 0xe2, 0xcd, 0xa6, 0xdd, 0xbe, 0xb5,
- 0xea, 0xe8, 0x8f, 0x4d, 0x0f, 0xed, 0x37, 0xbd, 0x75, 0xcb, 0xa3, 0x2d, 0x3c, 0xc0, 0xbc, 0xa5,
- 0x77, 0xcc, 0x5b, 0x18, 0xbd, 0xfc, 0x56, 0xc0, 0x89, 0xd7, 0xc0, 0x54, 0xc0, 0xc3, 0xbf, 0x64,
- 0x15, 0xe0, 0x38, 0x32, 0x0f, 0x20, 0x3e, 0xb5, 0xd2, 0xe9, 0x88, 0x47, 0x94, 0xd2, 0xb1, 0x9f,
- 0x8f, 0xe1, 0x8a, 0x1d, 0x08, 0x4c, 0xef, 0x48, 0x11, 0x7b, 0x35, 0x89, 0x03, 0xd3, 0x82, 0x25,
- 0xd1, 0x22, 0x5f, 0x4c, 0x23, 0xa1, 0xc4, 0xfd, 0xc6, 0xa6, 0x08, 0x29, 0x5e, 0x8c, 0x2c, 0xc3,
- 0x19, 0xc1, 0x37, 0xc8, 0xef, 0x31, 0x1a, 0x9d, 0x15, 0x62, 0x68, 0xae, 0xb4, 0x41, 0x1b, 0x0d,
- 0x01, 0x96, 0xeb, 0x88, 0x95, 0x20, 0x13, 0x61, 0x3e, 0xe2, 0x79, 0xbd, 0x4d, 0x5d, 0xe5, 0x0c,
- 0x6a, 0xec, 0x95, 0xed, 0xad, 0x71, 0xc5, 0x2f, 0x8f, 0xd1, 0x25, 0x53, 0x73, 0xf3, 0x63, 0x11,
- 0x99, 0x07, 0xd7, 0xfa, 0xb1, 0x14, 0x1e, 0x71, 0x9d, 0x8f, 0x16, 0x21, 0x93, 0x30, 0x12, 0xbc,
- 0xe1, 0x78, 0xf0, 0xa0, 0x56, 0xc5, 0x57, 0x9a, 0x22, 0xc0, 0x68, 0x2c, 0x03, 0x87, 0xcc, 0x24,
- 0x52, 0x46, 0x0a, 0x7c, 0xc1, 0x9f, 0x6d, 0xc6, 0x02, 0x5f, 0x74, 0x52, 0x02, 0x5f, 0x2c, 0x92,
- 0x77, 0x60, 0xa8, 0xf2, 0xa8, 0x2e, 0x02, 0x7a, 0xb8, 0xca, 0xb9, 0x30, 0x9d, 0x93, 0xbe, 0xe1,
- 0x36, 0xfc, 0xe0, 0x1f, 0x72, 0xd3, 0x65, 0x7a, 0x32, 0x05, 0xa3, 0x11, 0x37, 0x30, 0x57, 0x39,
- 0x8f, 0x1c, 0xb0, 0xe5, 0x3a, 0x62, 0x1a, 0x8e, 0x40, 0xc9, 0xc3, 0x2b, 0x5a, 0x88, 0x69, 0x4d,
- 0xd5, 0x74, 0x31, 0x35, 0x8e, 0x46, 0x31, 0x76, 0x08, 0xbe, 0xf9, 0x2c, 0x73, 0xad, 0x31, 0x04,
- 0xaa, 0xe1, 0x70, 0x9c, 0xdc, 0xa3, 0xb1, 0x62, 0xe4, 0x03, 0x20, 0x98, 0x4c, 0x87, 0x1a, 0xfe,
- 0xad, 0x60, 0xad, 0xea, 0x2a, 0x17, 0x31, 0xba, 0x36, 0x89, 0xc7, 0x2a, 0xa8, 0x55, 0x27, 0xae,
- 0x89, 0xe9, 0xe3, 0xaa, 0xce, 0x4b, 0x35, 0xfc, 0x38, 0x05, 0x0d, 0x33, 0x92, 0x69, 0x38, 0x85,
- 0x2b, 0xd9, 0x80, 0x4b, 0x8b, 0x0e, 0x7d, 0x6c, 0xda, 0x5d, 0xd7, 0x5f, 0x3e, 0xfc, 0x79, 0xeb,
- 0xd2, 0x8e, 0xf3, 0xd6, 0x73, 0xa2, 0xe2, 0x0b, 0x1d, 0x87, 0x3e, 0x6e, 0xf8, 0x31, 0x95, 0x23,
- 0x21, 0x41, 0xb3, 0xb8, 0x63, 0xbe, 0xe4, 0x0f, 0xbb, 0x0e, 0x15, 0x70, 0x93, 0xba, 0x8a, 0x12,
- 0x4e, 0xb5, 0x3c, 0x0c, 0x8c, 0x19, 0xe0, 0x22, 0xf9, 0x92, 0xa3, 0xc5, 0x88, 0x06, 0xe4, 0xee,
- 0xa4, 0x7f, 0x43, 0x5c, 0x69, 0xf2, 0xac, 0xb2, 0xca, 0x53, 0xc8, 0x4c, 0x65, 0x62, 0x59, 0x6d,
- 0x06, 0xf1, 0xd5, 0x1b, 0xba, 0xc0, 0xcb, 0x62, 0x49, 0x96, 0x26, 0xb3, 0x30, 0xb6, 0xe8, 0xe0,
- 0x79, 0xd5, 0x7d, 0xba, 0xb9, 0x68, 0xb7, 0xcc, 0xe6, 0x26, 0x3e, 0x3d, 0x15, 0x53, 0x65, 0x87,
- 0xe3, 0x1a, 0xeb, 0x74, 0xb3, 0xd1, 0x41, 0xac, 0xbc, 0xac, 0xc4, 0x4b, 0xca, 0xf1, 0x8e, 0x9f,
- 0xde, 0x5d, 0xbc, 0x63, 0x0a, 0x63, 0xe2, 0x7e, 0xf9, 0x89, 0x47, 0x2d, 0xb6, 0xd4, 0xbb, 0xe2,
- 0x99, 0xa9, 0x12, 0xbb, 0x8f, 0x0e, 0xf0, 0x7c, 0xea, 0x10, 0xa3, 0x8c, 0x06, 0x60, 0xb9, 0x61,
- 0xf1, 0x22, 0xc9, 0xa0, 0xc0, 0xcf, 0xec, 0x23, 0x28, 0xf0, 0xdf, 0x28, 0xc8, 0xf3, 0x2f, 0xb9,
- 0x02, 0x45, 0x29, 0x67, 0x0f, 0x46, 0x3c, 0xc5, 0xf8, 0xe6, 0x45, 0x11, 0xc8, 0x79, 0x50, 0xd8,
- 0x2e, 0x41, 0x68, 0x1b, 0x4c, 0xd2, 0x18, 0x46, 0xc1, 0xd4, 0x42, 0x02, 0x4c, 0x90, 0xd7, 0x5d,
- 0x6e, 0x99, 0x4d, 0x8c, 0x7a, 0x5f, 0x90, 0x62, 0x59, 0x20, 0x94, 0x07, 0xbd, 0x97, 0x48, 0xc8,
- 0x6d, 0x18, 0xf2, 0xcf, 0x49, 0xc3, 0x88, 0xbf, 0x18, 0x0c, 0x5d, 0xcc, 0xd6, 0x22, 0xd6, 0xba,
- 0x44, 0x44, 0xde, 0x04, 0x08, 0xa7, 0x03, 0x61, 0x69, 0xe1, 0x52, 0x21, 0xcf, 0x1e, 0xf2, 0x52,
- 0x11, 0x52, 0xb3, 0x89, 0x53, 0x56, 0x47, 0x3f, 0x25, 0x28, 0x4e, 0x9c, 0x11, 0x1d, 0x96, 0x15,
- 0x24, 0x5a, 0x84, 0x2c, 0xc0, 0xd9, 0x84, 0x06, 0x8a, 0xf8, 0xc0, 0x98, 0x16, 0x3e, 0x45, 0x7d,
- 0xe5, 0x85, 0x39, 0x51, 0x96, 0x3c, 0x0f, 0x85, 0x07, 0x5a, 0x4d, 0xc4, 0x28, 0xe5, 0xe1, 0x6d,
- 0x23, 0x01, 0x8c, 0x18, 0x56, 0xfd, 0x63, 0xf9, 0xc4, 0xda, 0xc4, 0xa4, 0x27, 0x58, 0x49, 0x3d,
- 0x88, 0xd2, 0xf3, 0xeb, 0xe7, 0xd2, 0x93, 0x88, 0xc8, 0x75, 0x28, 0x2f, 0xb2, 0x99, 0xa1, 0x69,
- 0xb7, 0x44, 0x7f, 0x62, 0xb4, 0xa9, 0x8e, 0x80, 0x69, 0x01, 0x96, 0xdc, 0x96, 0x32, 0xd9, 0x4a,
- 0x61, 0xbf, 0xfd, 0x4c, 0xb6, 0xf1, 0xf8, 0xd7, 0x98, 0xd3, 0xf6, 0x76, 0x2c, 0x33, 0x96, 0x28,
- 0x93, 0xb2, 0x2e, 0x86, 0x99, 0xb0, 0x02, 0xab, 0xb4, 0x7f, 0x27, 0xab, 0x54, 0xfd, 0x3b, 0xb9,
- 0xe4, 0x38, 0x23, 0x77, 0x92, 0x11, 0x78, 0x71, 0x11, 0x0a, 0x80, 0x72, 0xad, 0x41, 0x2c, 0xde,
- 0x48, 0x2c, 0xdd, 0xfc, 0xbe, 0x63, 0xe9, 0x16, 0xf6, 0x18, 0x4b, 0x57, 0xfd, 0x7f, 0x8a, 0x3d,
- 0xfd, 0xa1, 0x8f, 0x24, 0xe6, 0xda, 0x1b, 0x6c, 0x67, 0xc5, 0x6a, 0xaf, 0xb8, 0x89, 0xfd, 0x01,
- 0x77, 0xf7, 0x6c, 0xe8, 0x7c, 0x68, 0xb9, 0x5a, 0x94, 0x92, 0xbc, 0x0b, 0xc3, 0xfe, 0x07, 0x60,
- 0x8c, 0x66, 0x29, 0xb6, 0x70, 0xb0, 0xaa, 0xc5, 0xa2, 0x19, 0x47, 0x0a, 0x90, 0x57, 0x61, 0x10,
- 0x6d, 0x9a, 0x8e, 0xde, 0xf4, 0x03, 0x78, 0xf3, 0x88, 0xdf, 0x3e, 0x50, 0x8e, 0x2b, 0x16, 0x50,
- 0x92, 0x2f, 0x41, 0x49, 0x64, 0xb1, 0xe0, 0x49, 0xde, 0x6f, 0xed, 0xc2, 0x81, 0xfc, 0xa6, 0x9c,
- 0xc1, 0x82, 0xef, 0x52, 0x10, 0x10, 0xd9, 0xa5, 0xf0, 0xe4, 0x15, 0x4b, 0x70, 0x6e, 0xd1, 0xa1,
- 0x06, 0x3e, 0x55, 0x98, 0x7a, 0xd2, 0x71, 0x44, 0x7e, 0x11, 0x3e, 0xca, 0x71, 0x91, 0xea, 0xf8,
- 0x68, 0xb6, 0x7c, 0x0a, 0xbc, 0x1c, 0x45, 0x38, 0xa5, 0x38, 0xb3, 0x5c, 0x78, 0x4b, 0xee, 0xd3,
- 0xcd, 0x0d, 0xdb, 0x31, 0x78, 0x0a, 0x0e, 0x31, 0x7f, 0x0b, 0x41, 0xaf, 0x0b, 0x94, 0x6c, 0xb9,
- 0x44, 0x0b, 0x5d, 0x7e, 0x03, 0x86, 0xf6, 0x9b, 0x05, 0xe2, 0x37, 0xf2, 0x19, 0x2f, 0x8b, 0x4e,
- 0x6e, 0x22, 0xbe, 0x20, 0x3b, 0x74, 0x7f, 0x46, 0x76, 0xe8, 0xef, 0xe5, 0x33, 0x9e, 0x4d, 0x9d,
- 0xe8, 0x2c, 0xae, 0x81, 0x30, 0xa2, 0x59, 0x5c, 0xc3, 0x04, 0xba, 0xa6, 0xa1, 0xc9, 0x44, 0xb1,
- 0x7c, 0xcf, 0xa5, 0x1d, 0xf3, 0x3d, 0xff, 0x72, 0xa1, 0xd7, 0xb3, 0xb2, 0x53, 0xd9, 0xef, 0x45,
- 0xf6, 0xb7, 0x61, 0x28, 0x90, 0x6c, 0xad, 0x8a, 0x46, 0xcf, 0x48, 0x90, 0x73, 0x86, 0x83, 0xb1,
- 0x8c, 0x44, 0x44, 0x6e, 0xf0, 0xb6, 0xd6, 0xcd, 0x0f, 0x79, 0xf6, 0x83, 0x11, 0x11, 0xd7, 0x5e,
- 0xf7, 0xf4, 0x86, 0x6b, 0x7e, 0x48, 0xb5, 0x00, 0xad, 0xfe, 0x67, 0xf9, 0xd4, 0xb7, 0x79, 0xa7,
- 0x7d, 0xb4, 0x87, 0x3e, 0x4a, 0x11, 0x22, 0x7f, 0x55, 0x78, 0x2a, 0xc4, 0x3d, 0x08, 0xf1, 0x8f,
- 0xf2, 0xa9, 0x6f, 0x30, 0x4f, 0x85, 0xb8, 0x97, 0xd9, 0xe2, 0x45, 0x18, 0xd4, 0xec, 0x0d, 0x77,
- 0x12, 0x37, 0x36, 0x7c, 0xae, 0xc0, 0x89, 0xda, 0xb1, 0x37, 0xdc, 0x06, 0x6e, 0x59, 0xb4, 0x90,
- 0x40, 0xfd, 0x7e, 0xbe, 0xc7, 0x2b, 0xd5, 0x53, 0xc1, 0x7f, 0x94, 0x4b, 0xe4, 0x6f, 0xe7, 0x23,
- 0xaf, 0x60, 0x4f, 0xae, 0xb0, 0x6f, 0x01, 0xd4, 0x9b, 0x6b, 0xb4, 0xad, 0x4b, 0x19, 0xa4, 0xf0,
- 0xdc, 0xc1, 0x45, 0xa8, 0xc8, 0x3c, 0x1c, 0x92, 0xa8, 0xbf, 0x9b, 0x8f, 0x3d, 0x03, 0x3e, 0x95,
- 0xdd, 0xae, 0x65, 0x17, 0x68, 0x9d, 0x78, 0xd9, 0x7c, 0x2a, 0xb9, 0xdd, 0x4a, 0xee, 0x27, 0xf3,
- 0xb1, 0x47, 0xe0, 0x27, 0x56, 0x76, 0x6c, 0x00, 0x26, 0x1f, 0xa7, 0x9f, 0x58, 0x4d, 0x7a, 0x11,
- 0x06, 0x85, 0x1c, 0x82, 0xa5, 0x82, 0xcf, 0xfb, 0x1c, 0x88, 0xa7, 0xac, 0x01, 0x81, 0xfa, 0xc7,
- 0xf3, 0x10, 0x7d, 0x9c, 0x7f, 0x42, 0x75, 0xe8, 0xb7, 0xf3, 0xd1, 0xb0, 0x04, 0x27, 0x57, 0x7f,
- 0x6e, 0x02, 0xd4, 0xbb, 0xcb, 0x4d, 0x11, 0xd5, 0xb6, 0x5f, 0x3a, 0xa6, 0x0f, 0xa0, 0x9a, 0x44,
- 0xa1, 0xfe, 0xbf, 0xf9, 0xd4, 0x58, 0x09, 0x27, 0x57, 0x80, 0xaf, 0xe0, 0xa9, 0x78, 0xd3, 0x0a,
- 0x27, 0x72, 0x3c, 0x84, 0x64, 0xe3, 0x2f, 0x91, 0x76, 0xd0, 0x27, 0x24, 0x9f, 0x4d, 0x31, 0xd7,
- 0x30, 0x29, 0x42, 0x68, 0xae, 0xc9, 0xd7, 0x10, 0x92, 0xe1, 0xf6, 0x7b, 0xf9, 0x9d, 0x42, 0x4b,
- 0x9c, 0xe4, 0x55, 0x75, 0x60, 0x51, 0xdf, 0xc4, 0x10, 0x88, 0xac, 0x27, 0x86, 0x79, 0x52, 0xbc,
- 0x0e, 0x07, 0xc9, 0x77, 0x6f, 0x82, 0x4a, 0xfd, 0x67, 0xfd, 0xe9, 0x71, 0x0d, 0x4e, 0xae, 0x08,
- 0xaf, 0x40, 0x71, 0x51, 0xf7, 0xd6, 0x84, 0x26, 0xe3, 0x95, 0x5e, 0x47, 0xf7, 0xd6, 0x34, 0x84,
- 0x92, 0x1b, 0x50, 0xd6, 0xf4, 0x0d, 0x7e, 0xe6, 0x59, 0x0a, 0x13, 0x16, 0x3a, 0xfa, 0x46, 0x83,
- 0x9f, 0x7b, 0x06, 0x68, 0xa2, 0x06, 0x09, 0x33, 0xf9, 0xc9, 0x37, 0x66, 0x6b, 0xe3, 0x09, 0x33,
- 0x83, 0x34, 0x99, 0x57, 0xa0, 0x38, 0x61, 0x1b, 0x9b, 0x78, 0x7d, 0x35, 0xcc, 0x2b, 0x5b, 0xb6,
- 0x8d, 0x4d, 0x0d, 0xa1, 0xe4, 0xa7, 0x72, 0x30, 0x30, 0x43, 0x75, 0x83, 0x8d, 0x90, 0xc1, 0x5e,
- 0x5e, 0x27, 0x5f, 0x38, 0x1c, 0xaf, 0x93, 0xb3, 0x6b, 0xbc, 0x32, 0x59, 0x51, 0x44, 0xfd, 0xe4,
- 0x2e, 0x94, 0x27, 0x75, 0x8f, 0xae, 0xda, 0xce, 0x26, 0xfa, 0xd1, 0x8c, 0x86, 0xbe, 0xf1, 0x11,
- 0xfd, 0xf1, 0x89, 0xf8, 0xcd, 0x58, 0x53, 0xfc, 0xd2, 0x82, 0xc2, 0x4c, 0x2c, 0x22, 0x85, 0xff,
- 0x50, 0x28, 0x16, 0x9e, 0xab, 0x3f, 0xc8, 0xd4, 0x1f, 0x1c, 0x2b, 0x0f, 0xa7, 0x1f, 0x2b, 0xa3,
- 0xf5, 0x88, 0xbe, 0x76, 0x98, 0xa6, 0x72, 0x04, 0x17, 0x7d, 0x6e, 0x3d, 0x22, 0x14, 0xb3, 0x54,
- 0x6a, 0x12, 0x89, 0xfa, 0xdd, 0x7e, 0x48, 0x7d, 0x05, 0x7d, 0xaa, 0xe4, 0xa7, 0x4a, 0x1e, 0x2a,
- 0x79, 0x35, 0xa1, 0xe4, 0x97, 0x93, 0xef, 0xea, 0x3f, 0xa6, 0x1a, 0xfe, 0x73, 0xc5, 0x44, 0x54,
- 0x8e, 0x93, 0xbd, 0xbb, 0x0c, 0xa5, 0xd7, 0xbf, 0xa3, 0xf4, 0x82, 0x01, 0x51, 0xda, 0x71, 0x40,
- 0x0c, 0xec, 0x76, 0x40, 0x94, 0x33, 0x07, 0x44, 0xa8, 0x20, 0x83, 0x99, 0x0a, 0x52, 0x13, 0x83,
- 0x06, 0x7a, 0x27, 0x07, 0xb9, 0xb2, 0xbd, 0x35, 0x3e, 0xca, 0x46, 0x53, 0x6a, 0x56, 0x10, 0x64,
- 0xa1, 0xfe, 0x7e, 0xb1, 0x47, 0x28, 0x9d, 0x23, 0xd1, 0x91, 0x57, 0xa0, 0x50, 0xe9, 0x74, 0x84,
- 0x7e, 0x9c, 0x93, 0xa2, 0xf8, 0x64, 0x94, 0x62, 0xd4, 0xe4, 0x4d, 0x28, 0x54, 0x1e, 0xd5, 0xe3,
- 0x09, 0x41, 0x2a, 0x8f, 0xea, 0xe2, 0x4b, 0x32, 0xcb, 0x3e, 0xaa, 0x93, 0xb7, 0xc3, 0xc8, 0x9c,
- 0x6b, 0x5d, 0x6b, 0x5d, 0x6c, 0x14, 0x85, 0xbb, 0xad, 0xef, 0x8e, 0xd3, 0x64, 0x28, 0xb6, 0x5d,
- 0x8c, 0xd1, 0xc6, 0xb4, 0xa9, 0xb4, 0x7b, 0x6d, 0x1a, 0xd8, 0x51, 0x9b, 0xca, 0xbb, 0xd5, 0xa6,
- 0xc1, 0x5d, 0x68, 0x13, 0xec, 0xa8, 0x4d, 0x43, 0x07, 0xd7, 0xa6, 0x0e, 0x5c, 0x4e, 0x86, 0x3f,
- 0x0b, 0x34, 0x42, 0x03, 0x92, 0xc4, 0x0a, 0xc7, 0x12, 0xbc, 0xfa, 0xef, 0x72, 0x6c, 0x63, 0x03,
- 0xd1, 0x0d, 0x97, 0xe1, 0x65, 0xff, 0xb4, 0x64, 0x69, 0xf5, 0x37, 0xf2, 0xd9, 0x51, 0xdb, 0x8e,
- 0xe7, 0x14, 0xf7, 0x23, 0xa9, 0x52, 0x2a, 0x46, 0x5f, 0xd1, 0x67, 0x4b, 0x39, 0xc6, 0x36, 0x4d,
- 0x66, 0xdf, 0xce, 0x65, 0x85, 0x92, 0x3b, 0x90, 0xc4, 0x3e, 0x99, 0xf4, 0x68, 0x43, 0x3f, 0x7d,
- 0x37, 0xea, 0xca, 0x36, 0x0d, 0xc3, 0xb2, 0x10, 0x85, 0x94, 0x76, 0x23, 0xe0, 0x48, 0x39, 0xf5,
- 0xef, 0xe4, 0xe0, 0xdc, 0xfd, 0xee, 0x32, 0x15, 0x1e, 0x6c, 0x41, 0x33, 0x3e, 0x00, 0x60, 0x60,
- 0xe1, 0xc4, 0x92, 0x43, 0x27, 0x96, 0x4f, 0xcb, 0x61, 0xe0, 0x62, 0x05, 0x6e, 0x86, 0xd4, 0xdc,
- 0x81, 0xe5, 0x19, 0xdf, 0x99, 0x73, 0xbd, 0xbb, 0x4c, 0x1b, 0x09, 0x4f, 0x16, 0x89, 0xfb, 0xe5,
- 0x77, 0xb8, 0x9b, 0xfc, 0x7e, 0x9d, 0x46, 0x7e, 0x2d, 0x9f, 0x19, 0x79, 0xef, 0xd8, 0xa6, 0x88,
- 0xfc, 0xa1, 0xd4, 0x5e, 0x89, 0xa7, 0x8a, 0x4c, 0x21, 0x89, 0x71, 0x4c, 0xe3, 0x92, 0x2e, 0xb0,
- 0x63, 0x9e, 0xb8, 0xf4, 0x23, 0x15, 0xd8, 0x3f, 0xc8, 0x65, 0x46, 0x48, 0x3c, 0xae, 0x02, 0x53,
- 0xff, 0x97, 0x82, 0x1f, 0x98, 0xf1, 0x40, 0x9f, 0xf0, 0x22, 0x0c, 0x8a, 0xf7, 0xe9, 0x51, 0x07,
- 0x5c, 0x71, 0x94, 0x87, 0x47, 0xc3, 0x01, 0x01, 0x5b, 0xe6, 0x25, 0xef, 0x60, 0xc9, 0x01, 0x57,
- 0xf2, 0x0c, 0xd6, 0x24, 0x12, 0xb6, 0x90, 0x4f, 0x3d, 0x31, 0x3d, 0xb4, 0x0a, 0x58, 0x5f, 0x16,
- 0xf8, 0x42, 0x4e, 0x9f, 0x98, 0x1e, 0xb7, 0x09, 0x02, 0x34, 0x5b, 0xa4, 0xeb, 0x61, 0x5a, 0x76,
- 0xb1, 0x48, 0xbb, 0x22, 0x3b, 0xbd, 0x78, 0x36, 0xf6, 0x22, 0x0c, 0x0a, 0xaf, 0x56, 0xe1, 0x66,
- 0x22, 0x5a, 0x2b, 0xfc, 0x60, 0xb1, 0xb5, 0x01, 0x01, 0xe3, 0xa8, 0xd1, 0xd5, 0xd0, 0xb1, 0x0e,
- 0x39, 0x3a, 0x08, 0xd1, 0x04, 0x86, 0xdc, 0x86, 0xd1, 0xba, 0xa7, 0x5b, 0x86, 0xee, 0x18, 0x0b,
- 0x5d, 0xaf, 0xd3, 0xf5, 0x64, 0xa3, 0xd4, 0xf5, 0x0c, 0xbb, 0xeb, 0x69, 0x31, 0x0a, 0xf2, 0x19,
- 0x18, 0xf1, 0x21, 0x53, 0x8e, 0x63, 0x3b, 0xb2, 0xe5, 0xe1, 0x7a, 0x06, 0x75, 0x1c, 0x2d, 0x4a,
- 0x40, 0x3e, 0x0b, 0x23, 0x35, 0xeb, 0xb1, 0xcd, 0xf3, 0xfd, 0x3f, 0xd0, 0x66, 0x85, 0x1d, 0x82,
- 0x4f, 0xb1, 0xcc, 0x00, 0xd1, 0xe8, 0x3a, 0x2d, 0x2d, 0x4a, 0xa8, 0x6e, 0xe7, 0x93, 0xf1, 0x2b,
- 0x4f, 0xee, 0xa6, 0xe5, 0x46, 0xd4, 0x99, 0x0e, 0x3d, 0x48, 0xd1, 0x20, 0x94, 0x7d, 0x79, 0xb9,
- 0x5d, 0x78, 0x1b, 0xca, 0xf7, 0xe9, 0x26, 0xf7, 0xfb, 0x2c, 0x85, 0xae, 0xc2, 0xeb, 0x02, 0x26,
- 0x9f, 0xb8, 0xfa, 0x74, 0xea, 0xb7, 0xf2, 0xc9, 0xc8, 0x9c, 0x27, 0x57, 0xd8, 0x9f, 0x81, 0x01,
- 0x14, 0x65, 0xcd, 0x3f, 0xf2, 0x47, 0x01, 0xa2, 0xb8, 0xa3, 0x1e, 0xc8, 0x3e, 0x99, 0xfa, 0x4b,
- 0xa5, 0x78, 0xb8, 0xd6, 0x93, 0x2b, 0xbd, 0xb7, 0x60, 0x68, 0xd2, 0xb6, 0x5c, 0xd3, 0xf5, 0xa8,
- 0xd5, 0xf4, 0x15, 0xf6, 0x29, 0x66, 0x50, 0x35, 0x43, 0xb0, 0xfc, 0x06, 0x49, 0xa2, 0xde, 0x8f,
- 0xf2, 0x92, 0xd7, 0x60, 0x10, 0x45, 0x8e, 0x7e, 0xd2, 0x7c, 0xc2, 0xc3, 0xdb, 0x82, 0x65, 0x06,
- 0x8c, 0x3b, 0x49, 0x87, 0xa4, 0xe4, 0x01, 0x94, 0x27, 0xd7, 0xcc, 0x96, 0xe1, 0x50, 0x0b, 0xfd,
- 0x85, 0xa5, 0xa8, 0x18, 0xd1, 0xbe, 0xbc, 0x89, 0xff, 0x22, 0x2d, 0x6f, 0x4e, 0x53, 0x14, 0x8b,
- 0xbc, 0xc2, 0x12, 0xb0, 0xcb, 0x3f, 0x9b, 0x07, 0x08, 0x0b, 0x90, 0x67, 0x21, 0x1f, 0x64, 0x3c,
- 0x46, 0x37, 0x95, 0x88, 0x06, 0xe5, 0x71, 0xa9, 0x10, 0x63, 0x3b, 0xbf, 0xe3, 0xd8, 0x7e, 0x00,
- 0x25, 0x7e, 0xe2, 0x85, 0x9e, 0xe4, 0x52, 0x04, 0xc9, 0xcc, 0x06, 0xdf, 0x44, 0x7a, 0xbe, 0x99,
- 0x45, 0xcb, 0x33, 0xe2, 0x95, 0xcd, 0x99, 0x5d, 0x6e, 0x42, 0x3f, 0xfe, 0x45, 0xae, 0x41, 0x71,
- 0xc9, 0xcf, 0x96, 0x3a, 0xc2, 0x67, 0xe9, 0x98, 0xfc, 0x10, 0xcf, 0xba, 0x69, 0xd2, 0xb6, 0x3c,
- 0x56, 0x35, 0xb6, 0x7a, 0x58, 0xc8, 0x45, 0xc0, 0x22, 0x72, 0x11, 0x30, 0xf5, 0xbf, 0xca, 0xa7,
- 0x04, 0x12, 0x3e, 0xb9, 0xc3, 0xe4, 0x0d, 0x00, 0x7c, 0xd2, 0xcd, 0xe4, 0xe9, 0x3f, 0xd1, 0xc0,
- 0x51, 0x82, 0x8c, 0x50, 0x6d, 0x23, 0xdb, 0x8e, 0x90, 0x58, 0xfd, 0x7b, 0xb9, 0x44, 0xf4, 0xd9,
- 0x03, 0xc9, 0x51, 0xb6, 0xca, 0xf2, 0xfb, 0x34, 0x63, 0xfd, 0xbe, 0x28, 0xec, 0xad, 0x2f, 0xa2,
- 0xdf, 0x72, 0x08, 0x96, 0xe9, 0x51, 0x7e, 0xcb, 0x77, 0xf3, 0x69, 0xb1, 0x78, 0x8f, 0xa7, 0x8a,
- 0xdf, 0x09, 0x8c, 0xd2, 0x62, 0x2c, 0xfa, 0x39, 0x42, 0xe3, 0x19, 0x9d, 0x85, 0x99, 0xfa, 0x65,
- 0x38, 0x13, 0x8b, 0x50, 0x2b, 0x92, 0xeb, 0x5e, 0xeb, 0x1d, 0xea, 0x36, 0x3b, 0x18, 0x40, 0x84,
- 0x4c, 0xfd, 0xff, 0x72, 0xbd, 0xe3, 0x13, 0x1f, 0xb9, 0xea, 0xa4, 0x08, 0xa0, 0xf0, 0xaf, 0x46,
- 0x00, 0x87, 0xb0, 0x0d, 0x3e, 0xde, 0x02, 0xf8, 0x98, 0x4c, 0x1e, 0x1f, 0xb5, 0x00, 0x7e, 0x29,
- 0xb7, 0x63, 0x78, 0xe9, 0xa3, 0x96, 0x81, 0xfa, 0x3f, 0xe6, 0x52, 0xc3, 0x40, 0x1f, 0xa8, 0x5d,
- 0x6f, 0x43, 0x89, 0xbb, 0xd5, 0x88, 0x56, 0x49, 0x89, 0xb3, 0x18, 0x34, 0x2b, 0xd5, 0x3c, 0xc7,
- 0x92, 0x59, 0x18, 0xe0, 0x6d, 0x30, 0x44, 0x6f, 0x7c, 0xa2, 0x47, 0x2c, 0x6a, 0x23, 0x6b, 0x72,
- 0x14, 0x68, 0xf5, 0xef, 0xe6, 0x12, 0x51, 0xa9, 0x8f, 0xf0, 0xdb, 0xc2, 0xa9, 0xba, 0xb0, 0xfb,
- 0xa9, 0x5a, 0xfd, 0xa7, 0xf9, 0xf4, 0xa0, 0xd8, 0x47, 0xf8, 0x21, 0x87, 0x71, 0x9c, 0xb6, 0xbf,
- 0x75, 0x6b, 0x09, 0x46, 0xa3, 0xb2, 0x10, 0xcb, 0xd6, 0xd5, 0xf4, 0xd0, 0xe0, 0x19, 0xad, 0x88,
- 0xf1, 0x50, 0xbf, 0x93, 0x4b, 0xc6, 0xf3, 0x3e, 0xf2, 0xf9, 0x69, 0x7f, 0xda, 0x12, 0xfd, 0x94,
- 0x8f, 0xc9, 0x5a, 0x73, 0x18, 0x9f, 0xf2, 0x31, 0x59, 0x35, 0xf6, 0xf7, 0x29, 0xbf, 0x92, 0xcf,
- 0x0a, 0x87, 0x7e, 0xe4, 0x1f, 0xf4, 0x45, 0x59, 0xc8, 0xbc, 0x65, 0xe2, 0xd3, 0x9e, 0xcd, 0x8a,
- 0x3f, 0x9e, 0xc1, 0x33, 0xc1, 0x67, 0x7f, 0x63, 0x3c, 0x55, 0x58, 0x1f, 0x13, 0x45, 0x3e, 0x1e,
- 0xc2, 0xfa, 0x98, 0x0c, 0x95, 0x8f, 0x9f, 0xb0, 0xfe, 0x66, 0x7e, 0xb7, 0x31, 0xf8, 0x4f, 0x85,
- 0x97, 0x10, 0xde, 0x37, 0xf2, 0xc9, 0xdc, 0x10, 0x47, 0x2e, 0xa6, 0x69, 0x28, 0x89, 0x2c, 0x15,
- 0x99, 0xc2, 0xe1, 0xf8, 0x2c, 0x8b, 0x46, 0x7c, 0xc7, 0x1d, 0x10, 0x17, 0x39, 0xbb, 0x13, 0x09,
- 0xa7, 0x55, 0xbf, 0x9f, 0x8b, 0x25, 0x52, 0x38, 0x92, 0x23, 0x84, 0x7d, 0x2d, 0x49, 0xe4, 0x1d,
- 0xff, 0x30, 0xb3, 0x18, 0x0b, 0x64, 0x1d, 0x7c, 0x4f, 0x95, 0x7a, 0xba, 0xd9, 0x8a, 0x97, 0x17,
- 0x31, 0x01, 0xbe, 0x95, 0x87, 0xb3, 0x09, 0x52, 0x72, 0x2d, 0x12, 0x4a, 0x07, 0x8f, 0x25, 0x63,
- 0xce, 0xe3, 0x3c, 0xa8, 0xce, 0x1e, 0x4e, 0x52, 0xaf, 0x41, 0xb1, 0xaa, 0x6f, 0xf2, 0x6f, 0xeb,
- 0xe7, 0x2c, 0x0d, 0x7d, 0x53, 0x3e, 0x71, 0x43, 0x3c, 0x59, 0x86, 0x0b, 0xfc, 0x3e, 0xc4, 0xb4,
- 0xad, 0x25, 0xb3, 0x4d, 0x6b, 0xd6, 0x9c, 0xd9, 0x6a, 0x99, 0xae, 0xb8, 0xd4, 0x7b, 0x71, 0x7b,
- 0x6b, 0xfc, 0xba, 0x67, 0x7b, 0x7a, 0xab, 0x41, 0x7d, 0xb2, 0x86, 0x67, 0xb6, 0x69, 0xc3, 0xb4,
- 0x1a, 0x6d, 0xa4, 0x94, 0x58, 0xa6, 0xb3, 0x22, 0x35, 0x1e, 0xb3, 0xbc, 0xde, 0xd4, 0x2d, 0x8b,
- 0x1a, 0x35, 0x6b, 0x62, 0xd3, 0xa3, 0xfc, 0x32, 0xb0, 0xc0, 0x8f, 0x04, 0xf9, 0xdb, 0x70, 0x8e,
- 0x66, 0x8c, 0x97, 0x19, 0x81, 0x96, 0x52, 0x48, 0xfd, 0x5b, 0xc5, 0x94, 0x1c, 0x1a, 0xc7, 0x48,
- 0x7d, 0xfc, 0x9e, 0x2e, 0xee, 0xd0, 0xd3, 0xb7, 0x60, 0x40, 0x04, 0x85, 0x15, 0x17, 0x0c, 0xe8,
- 0xcc, 0xfe, 0x98, 0x83, 0xe4, 0x1b, 0x1a, 0x41, 0x45, 0x5a, 0x70, 0x79, 0x89, 0x75, 0x53, 0x7a,
- 0x67, 0x96, 0xf6, 0xd1, 0x99, 0x3d, 0xf8, 0x91, 0xf7, 0xe1, 0x12, 0x62, 0x53, 0xba, 0x75, 0x00,
- 0xab, 0xc2, 0x18, 0x55, 0xbc, 0xaa, 0xf4, 0xce, 0xcd, 0x2a, 0x4f, 0xbe, 0x08, 0xc3, 0xc1, 0x00,
- 0x31, 0xa9, 0x2b, 0x6e, 0x2e, 0x7a, 0x8c, 0x33, 0x1e, 0x00, 0x8e, 0x81, 0xd1, 0x85, 0x2c, 0x1a,
- 0x44, 0x2c, 0xc2, 0x4b, 0xfd, 0x1f, 0x72, 0xbd, 0x72, 0x79, 0x1c, 0xf9, 0xac, 0xfc, 0x0e, 0x0c,
- 0x18, 0xfc, 0xa3, 0x84, 0x4e, 0xf5, 0xce, 0xf6, 0xc1, 0x49, 0x35, 0xbf, 0x8c, 0xfa, 0x4f, 0x72,
- 0x3d, 0x53, 0x88, 0x1c, 0xf7, 0xcf, 0xfb, 0x46, 0x21, 0xe3, 0xf3, 0xc4, 0x24, 0x7a, 0x03, 0xc6,
- 0xcc, 0x30, 0xc6, 0x79, 0x23, 0x0c, 0x3f, 0xa5, 0x9d, 0x91, 0xe0, 0x38, 0xba, 0xee, 0xc0, 0x45,
- 0xdf, 0xf1, 0xd1, 0xf1, 0x3d, 0xc4, 0xdc, 0x46, 0xd7, 0x31, 0xf9, 0xb8, 0xd4, 0xce, 0xbb, 0x31,
- 0xf7, 0x31, 0xf7, 0x81, 0x63, 0xb2, 0x0a, 0x74, 0x6f, 0x8d, 0x5a, 0x7a, 0x63, 0xc3, 0x76, 0xd6,
- 0x31, 0xca, 0x28, 0x1f, 0x9c, 0xda, 0x19, 0x0e, 0x7f, 0xe4, 0x83, 0xc9, 0xf3, 0x30, 0xb2, 0xda,
- 0xea, 0xd2, 0x20, 0xae, 0x23, 0xbf, 0xeb, 0xd3, 0x86, 0x19, 0x30, 0xb8, 0x21, 0x79, 0x06, 0x00,
- 0x89, 0x3c, 0x4c, 0xf0, 0x82, 0x17, 0x7b, 0xda, 0x20, 0x83, 0x2c, 0x89, 0xee, 0xba, 0xcc, 0xb5,
- 0x9a, 0x0b, 0xa9, 0xd1, 0xb2, 0xad, 0xd5, 0x86, 0x47, 0x9d, 0x36, 0x36, 0x14, 0x9d, 0x19, 0xb4,
- 0x8b, 0x48, 0x81, 0x57, 0x27, 0xee, 0xac, 0x6d, 0xad, 0x2e, 0x51, 0xa7, 0xcd, 0x9a, 0xfa, 0x22,
+ // 16620 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x69, 0x78, 0x24, 0x49,
+ 0x76, 0x18, 0x86, 0x3a, 0x50, 0x00, 0x1e, 0x8e, 0x06, 0xa2, 0xaf, 0x9c, 0x9e, 0x9e, 0xc6, 0x4c,
+ 0xce, 0x6e, 0x6f, 0xf7, 0xec, 0x4c, 0xf7, 0x4e, 0x4f, 0xcf, 0xcc, 0xce, 0xb5, 0xb3, 0x05, 0x14,
+ 0xd0, 0xa8, 0x6e, 0x5c, 0x93, 0x05, 0x74, 0xef, 0x2c, 0xb9, 0x5b, 0x4c, 0x54, 0x06, 0x80, 0x1c,
+ 0x54, 0x65, 0x16, 0x33, 0xb3, 0x1a, 0x8d, 0xf1, 0xc5, 0x95, 0x29, 0x8a, 0x14, 0x97, 0xab, 0xf5,
+ 0xd2, 0x14, 0xa9, 0xc3, 0x16, 0xa9, 0xc3, 0xa6, 0x68, 0x8a, 0x14, 0x25, 0x9a, 0x87, 0xa4, 0xb5,
+ 0x25, 0xaf, 0x8f, 0x15, 0xf9, 0x99, 0x1f, 0x29, 0xdb, 0xfa, 0xf4, 0xd9, 0x32, 0x56, 0xa6, 0xad,
+ 0x3f, 0xf8, 0xec, 0xef, 0xa3, 0xed, 0xfd, 0xac, 0xb5, 0x2c, 0xfb, 0xf3, 0x17, 0x2f, 0x22, 0x33,
+ 0x23, 0xaf, 0xc2, 0x39, 0xc4, 0x60, 0x81, 0x3f, 0xdd, 0xa8, 0xf7, 0x5e, 0xbc, 0x88, 0x7c, 0xf1,
+ 0x22, 0xe2, 0x45, 0xc4, 0x8b, 0xf7, 0xe0, 0xa6, 0x47, 0x9b, 0xb4, 0x6d, 0x3b, 0xde, 0xed, 0x26,
+ 0x5d, 0xd3, 0x1b, 0x5b, 0xb7, 0xbd, 0xad, 0x36, 0x75, 0x6f, 0xd3, 0xc7, 0xd4, 0xf2, 0xfc, 0xff,
+ 0x6e, 0xb5, 0x1d, 0xdb, 0xb3, 0x49, 0x89, 0xff, 0xba, 0x72, 0x61, 0xcd, 0x5e, 0xb3, 0x11, 0x74,
+ 0x9b, 0xfd, 0xc5, 0xb1, 0x57, 0xae, 0xae, 0xd9, 0xf6, 0x5a, 0x93, 0xde, 0xc6, 0x5f, 0x2b, 0x9d,
+ 0xd5, 0xdb, 0xae, 0xe7, 0x74, 0x1a, 0x9e, 0xc0, 0x8e, 0xc7, 0xb1, 0x9e, 0xd9, 0xa2, 0xae, 0xa7,
+ 0xb7, 0xda, 0x82, 0xe0, 0x5a, 0x9c, 0x60, 0xd3, 0xd1, 0xdb, 0x6d, 0xea, 0x88, 0xca, 0xaf, 0x3c,
+ 0x97, 0xde, 0x4e, 0xfc, 0x57, 0x90, 0xbc, 0x94, 0x4e, 0xe2, 0x33, 0x8a, 0x71, 0x54, 0xbf, 0x91,
+ 0x87, 0xfe, 0x39, 0xea, 0xe9, 0x86, 0xee, 0xe9, 0xe4, 0x2a, 0xf4, 0x56, 0x2d, 0x83, 0x3e, 0x51,
+ 0x72, 0xcf, 0xe6, 0x6e, 0x14, 0x26, 0x4a, 0x3b, 0xdb, 0xe3, 0x79, 0x6a, 0x6a, 0x1c, 0x48, 0x9e,
+ 0x81, 0xe2, 0xd2, 0x56, 0x9b, 0x2a, 0xf9, 0x67, 0x73, 0x37, 0x06, 0x26, 0x06, 0x76, 0xb6, 0xc7,
+ 0x7b, 0x51, 0x16, 0x1a, 0x82, 0xc9, 0x73, 0x90, 0xaf, 0x56, 0x94, 0x02, 0x22, 0xc7, 0x76, 0xb6,
+ 0xc7, 0x87, 0x3b, 0xa6, 0xf1, 0xa2, 0xdd, 0x32, 0x3d, 0xda, 0x6a, 0x7b, 0x5b, 0x5a, 0xbe, 0x5a,
+ 0x21, 0xd7, 0xa1, 0x38, 0x69, 0x1b, 0x54, 0x29, 0x22, 0x11, 0xd9, 0xd9, 0x1e, 0x1f, 0x69, 0xd8,
+ 0x06, 0x95, 0xa8, 0x10, 0x4f, 0x3e, 0x0f, 0xc5, 0x25, 0xb3, 0x45, 0x95, 0xde, 0x67, 0x73, 0x37,
+ 0x06, 0xef, 0x5c, 0xb9, 0xc5, 0xa5, 0x72, 0xcb, 0x97, 0xca, 0xad, 0x25, 0x5f, 0x6c, 0x13, 0xa3,
+ 0xdf, 0xde, 0x1e, 0xef, 0xd9, 0xd9, 0x1e, 0x2f, 0x32, 0x49, 0x7e, 0xfd, 0x3b, 0xe3, 0x39, 0x0d,
+ 0x4b, 0x92, 0xb7, 0x61, 0x70, 0xb2, 0xd9, 0x71, 0x3d, 0xea, 0xcc, 0xeb, 0x2d, 0xaa, 0x94, 0xb0,
+ 0xc2, 0x2b, 0x3b, 0xdb, 0xe3, 0x97, 0x1a, 0x1c, 0x5c, 0xb7, 0xf4, 0x96, 0x5c, 0xb1, 0x4c, 0xae,
+ 0xfe, 0x56, 0x0e, 0xce, 0xd5, 0xa8, 0xeb, 0x9a, 0xb6, 0x15, 0xc8, 0xe6, 0x93, 0x30, 0x20, 0x40,
+ 0xd5, 0x0a, 0xca, 0x67, 0x60, 0xa2, 0x6f, 0x67, 0x7b, 0xbc, 0xe0, 0x9a, 0x86, 0x16, 0x62, 0xc8,
+ 0x67, 0xa0, 0xef, 0x91, 0xe9, 0xad, 0xcf, 0x4d, 0x97, 0x85, 0x9c, 0x2e, 0xed, 0x6c, 0x8f, 0x93,
+ 0x4d, 0xd3, 0x5b, 0xaf, 0xb7, 0x56, 0x75, 0xa9, 0x42, 0x9f, 0x8c, 0xcc, 0xc2, 0xe8, 0xa2, 0x63,
+ 0x3e, 0xd6, 0x3d, 0xfa, 0x80, 0x6e, 0x2d, 0xda, 0x4d, 0xb3, 0xb1, 0x25, 0xa4, 0xf8, 0xec, 0xce,
+ 0xf6, 0xf8, 0xd5, 0x36, 0xc7, 0xd5, 0x37, 0xe8, 0x56, 0xbd, 0x8d, 0x58, 0x89, 0x49, 0xa2, 0xa4,
+ 0xfa, 0x77, 0x4a, 0x30, 0xb4, 0xec, 0x52, 0x27, 0x68, 0xf7, 0x75, 0x28, 0xb2, 0xdf, 0xa2, 0xc9,
+ 0x28, 0xf3, 0x8e, 0x4b, 0x1d, 0x59, 0xe6, 0x0c, 0x4f, 0x6e, 0x42, 0xef, 0xac, 0xbd, 0x66, 0x5a,
+ 0xa2, 0xd9, 0xe7, 0x77, 0xb6, 0xc7, 0xcf, 0x35, 0x19, 0x40, 0xa2, 0xe4, 0x14, 0xe4, 0x73, 0x30,
+ 0x54, 0x6d, 0x31, 0x1d, 0xb2, 0x2d, 0xdd, 0xb3, 0x1d, 0xd1, 0x5a, 0x94, 0xae, 0x29, 0xc1, 0xa5,
+ 0x82, 0x11, 0x7a, 0xf2, 0x26, 0x40, 0xf9, 0x51, 0x4d, 0xb3, 0x9b, 0xb4, 0xac, 0xcd, 0x0b, 0x65,
+ 0xc0, 0xd2, 0xfa, 0xa6, 0x5b, 0x77, 0xec, 0x26, 0xad, 0xeb, 0x8e, 0x5c, 0xad, 0x44, 0x4d, 0xa6,
+ 0x60, 0xa4, 0xdc, 0x68, 0x50, 0xd7, 0xd5, 0xe8, 0x0f, 0x77, 0xa8, 0xeb, 0xb9, 0x4a, 0xef, 0xb3,
+ 0x85, 0x1b, 0x03, 0x13, 0xcf, 0xec, 0x6c, 0x8f, 0x3f, 0xa5, 0x23, 0xa6, 0xee, 0x08, 0x94, 0xc4,
+ 0x22, 0x56, 0x88, 0x4c, 0xc0, 0x70, 0xf9, 0xc3, 0x8e, 0x43, 0xab, 0x06, 0xb5, 0x3c, 0xd3, 0xdb,
+ 0x12, 0x1a, 0x72, 0x75, 0x67, 0x7b, 0x5c, 0xd1, 0x19, 0xa2, 0x6e, 0x0a, 0x8c, 0xc4, 0x24, 0x5a,
+ 0x84, 0x2c, 0xc0, 0xd8, 0xbd, 0xc9, 0xc5, 0x1a, 0x75, 0x1e, 0x9b, 0x0d, 0x5a, 0x6e, 0x34, 0xec,
+ 0x8e, 0xe5, 0x29, 0x7d, 0xc8, 0xe7, 0xb9, 0x9d, 0xed, 0xf1, 0x67, 0xd6, 0x1a, 0xed, 0xba, 0xcb,
+ 0xb1, 0x75, 0x9d, 0xa3, 0x25, 0x66, 0xc9, 0xb2, 0xe4, 0x8b, 0x30, 0xbc, 0xe4, 0x30, 0x2d, 0x34,
+ 0x2a, 0x94, 0xc1, 0x95, 0x7e, 0xd4, 0xff, 0x4b, 0xb7, 0xc4, 0x04, 0xc4, 0xa1, 0x7e, 0xcf, 0xf2,
+ 0xc6, 0x7a, 0xbc, 0x40, 0xdd, 0x40, 0x9c, 0xdc, 0xd8, 0x08, 0x2b, 0x42, 0x41, 0x61, 0x1f, 0x6f,
+ 0x3a, 0xd4, 0x48, 0x68, 0xdb, 0x00, 0xb6, 0xf9, 0xe6, 0xce, 0xf6, 0xf8, 0x27, 0x1d, 0x41, 0x53,
+ 0xef, 0xaa, 0x76, 0x99, 0xac, 0xc8, 0x14, 0xf4, 0x33, 0x6d, 0x7a, 0x60, 0x5a, 0x86, 0x02, 0xcf,
+ 0xe6, 0x6e, 0x8c, 0xdc, 0x19, 0xf5, 0x5b, 0xef, 0xc3, 0x27, 0x2e, 0xef, 0x6c, 0x8f, 0x9f, 0x67,
+ 0x3a, 0x58, 0xdf, 0x30, 0x2d, 0x79, 0x8a, 0x08, 0x8a, 0xb2, 0x51, 0x34, 0x61, 0x7b, 0x38, 0x74,
+ 0x07, 0xc3, 0x51, 0xb4, 0x62, 0x7b, 0xf1, 0x61, 0xeb, 0x93, 0x91, 0x49, 0x18, 0x9e, 0xb0, 0xbd,
+ 0xaa, 0xe5, 0x7a, 0xba, 0xd5, 0xa0, 0xd5, 0x8a, 0x32, 0x84, 0xe5, 0x50, 0x2d, 0x58, 0x39, 0x53,
+ 0x60, 0xea, 0x91, 0x49, 0x29, 0x5a, 0x46, 0xfd, 0x17, 0x45, 0x18, 0x61, 0x7d, 0x22, 0x0d, 0x9f,
+ 0x32, 0x9b, 0x09, 0x18, 0x84, 0xd5, 0xe2, 0xb6, 0xf5, 0x06, 0x15, 0x23, 0x09, 0xbf, 0xc2, 0xf2,
+ 0x81, 0x12, 0xcf, 0x38, 0x3d, 0xb9, 0x09, 0xfd, 0x1c, 0x54, 0xad, 0x88, 0xc1, 0x35, 0xbc, 0xb3,
+ 0x3d, 0x3e, 0xe0, 0x22, 0xac, 0x6e, 0x1a, 0x5a, 0x80, 0x66, 0xda, 0xcd, 0xff, 0x9e, 0xb1, 0x5d,
+ 0x8f, 0x31, 0x17, 0x63, 0x0b, 0x3f, 0x43, 0x14, 0x58, 0x17, 0x28, 0x59, 0xbb, 0xa3, 0x85, 0xc8,
+ 0x1b, 0x00, 0x1c, 0x52, 0x36, 0x0c, 0x47, 0x0c, 0xb0, 0xa7, 0x76, 0xb6, 0xc7, 0x2f, 0x0a, 0x16,
+ 0xba, 0x61, 0xc8, 0xa3, 0x53, 0x22, 0x26, 0x2d, 0x18, 0xe2, 0xbf, 0x66, 0xf5, 0x15, 0xda, 0xe4,
+ 0xa3, 0x6b, 0xf0, 0xce, 0x0d, 0xbf, 0x13, 0xa3, 0xd2, 0xb9, 0x25, 0x93, 0x4e, 0x59, 0x9e, 0xb3,
+ 0x35, 0x31, 0x2e, 0x26, 0xe4, 0xcb, 0xa2, 0xaa, 0x26, 0xe2, 0xe4, 0xa9, 0x40, 0x2e, 0xc3, 0xe6,
+ 0xe9, 0x69, 0xdb, 0xd9, 0xd4, 0x1d, 0x83, 0x1a, 0x13, 0x5b, 0xf2, 0x3c, 0xbd, 0xea, 0x83, 0xeb,
+ 0x2b, 0xb2, 0xea, 0xc9, 0xe4, 0xac, 0xd3, 0x39, 0xb7, 0x5a, 0x67, 0x05, 0x55, 0xae, 0x2f, 0x21,
+ 0x2d, 0xb7, 0xb3, 0x12, 0x57, 0xb3, 0x68, 0x19, 0x36, 0x15, 0x70, 0xc0, 0x43, 0xea, 0xb0, 0x49,
+ 0x1c, 0x47, 0x9d, 0x98, 0x0a, 0x04, 0x93, 0xc7, 0x1c, 0x93, 0xe4, 0x21, 0x8a, 0x5c, 0x79, 0x17,
+ 0xc6, 0x12, 0xa2, 0x20, 0xa3, 0x50, 0xd8, 0xa0, 0x5b, 0x5c, 0x5d, 0x34, 0xf6, 0x27, 0xb9, 0x00,
+ 0xbd, 0x8f, 0xf5, 0x66, 0x47, 0x2c, 0xa1, 0x1a, 0xff, 0xf1, 0x66, 0xfe, 0xb3, 0x39, 0xb6, 0xe2,
+ 0x90, 0x49, 0xdb, 0xb2, 0x68, 0xc3, 0x93, 0x17, 0x9d, 0xd7, 0x60, 0x60, 0xd6, 0x6e, 0xe8, 0x4d,
+ 0xec, 0x47, 0xae, 0x77, 0xca, 0xce, 0xf6, 0xf8, 0x05, 0xd6, 0x81, 0xb7, 0x9a, 0x0c, 0x23, 0xb5,
+ 0x29, 0x24, 0x65, 0x0a, 0xa0, 0xd1, 0x96, 0xed, 0x51, 0x2c, 0x98, 0x0f, 0x15, 0x00, 0x0b, 0x3a,
+ 0x88, 0x92, 0x15, 0x20, 0x24, 0x26, 0xb7, 0xa1, 0x7f, 0x91, 0xad, 0xb3, 0x0d, 0xbb, 0x29, 0x94,
+ 0x0f, 0x97, 0x02, 0x5c, 0x7b, 0xe5, 0xb1, 0xea, 0x13, 0xa9, 0x33, 0x30, 0x32, 0xd9, 0x34, 0xa9,
+ 0xe5, 0xc9, 0xad, 0x66, 0x23, 0xb9, 0xbc, 0x46, 0x2d, 0x4f, 0x6e, 0x35, 0x8e, 0x79, 0x9d, 0x41,
+ 0xe5, 0x56, 0x07, 0xa4, 0xea, 0xef, 0x15, 0xe0, 0xa9, 0x07, 0x9d, 0x15, 0xea, 0x58, 0xd4, 0xa3,
+ 0xae, 0x58, 0x90, 0x03, 0xae, 0xf3, 0x30, 0x96, 0x40, 0x0a, 0xee, 0xb8, 0x50, 0x6e, 0x04, 0xc8,
+ 0xba, 0x58, 0xe3, 0xe5, 0xd9, 0x36, 0x51, 0x94, 0xcc, 0xc0, 0xb9, 0x10, 0xc8, 0x1a, 0xe1, 0x2a,
+ 0x79, 0x5c, 0x4a, 0xae, 0xed, 0x6c, 0x8f, 0x5f, 0x91, 0xb8, 0xb1, 0x66, 0xcb, 0x1a, 0x1c, 0x2f,
+ 0x46, 0x1e, 0xc0, 0x68, 0x08, 0xba, 0xe7, 0xd8, 0x9d, 0xb6, 0xab, 0x14, 0x90, 0xd5, 0xf8, 0xce,
+ 0xf6, 0xf8, 0xd3, 0x12, 0xab, 0x35, 0x44, 0xca, 0x0b, 0x78, 0xbc, 0x20, 0xf9, 0xd1, 0x9c, 0xcc,
+ 0x4d, 0x8c, 0xc2, 0x22, 0x8e, 0xc2, 0xd7, 0xfd, 0x51, 0x98, 0x29, 0xa4, 0x5b, 0xf1, 0x92, 0x62,
+ 0x50, 0xc6, 0x9a, 0x91, 0x18, 0x94, 0x89, 0x1a, 0xaf, 0x4c, 0xc2, 0xc5, 0x54, 0x5e, 0xfb, 0xd2,
+ 0xea, 0x7f, 0x5e, 0x90, 0xb9, 0x2c, 0xda, 0x46, 0xd0, 0x99, 0x0b, 0x72, 0x67, 0x2e, 0xda, 0x06,
+ 0x4e, 0xf5, 0xb9, 0x70, 0xed, 0x94, 0x1a, 0xdb, 0xb6, 0x8d, 0xf8, 0xac, 0x9f, 0x2c, 0x4b, 0xbe,
+ 0x0c, 0x97, 0x12, 0x40, 0x3e, 0x5d, 0x73, 0xed, 0xbf, 0xbe, 0xb3, 0x3d, 0xae, 0xa6, 0x70, 0x8d,
+ 0xcf, 0xde, 0x19, 0x5c, 0x88, 0x0e, 0x97, 0x25, 0xa9, 0xdb, 0x96, 0xa7, 0x9b, 0x96, 0x30, 0x2e,
+ 0xf9, 0x28, 0xf9, 0xd4, 0xce, 0xf6, 0xf8, 0xf3, 0xb2, 0x0e, 0xfa, 0x34, 0xf1, 0xc6, 0x67, 0xf1,
+ 0x21, 0x06, 0x28, 0x29, 0xa8, 0x6a, 0x4b, 0x5f, 0xf3, 0x2d, 0xe6, 0x1b, 0x3b, 0xdb, 0xe3, 0x9f,
+ 0x48, 0xad, 0xc3, 0x64, 0x54, 0xf2, 0x0a, 0x9d, 0xc5, 0x89, 0x68, 0x40, 0x42, 0xdc, 0xbc, 0x6d,
+ 0x50, 0xfc, 0x86, 0x5e, 0xe4, 0xaf, 0xee, 0x6c, 0x8f, 0x5f, 0x93, 0xf8, 0x5b, 0xb6, 0x41, 0xe3,
+ 0xcd, 0x4f, 0x29, 0xad, 0xfe, 0x56, 0x01, 0xae, 0xd5, 0xca, 0x73, 0xb3, 0x55, 0xc3, 0x37, 0x69,
+ 0x16, 0x1d, 0xfb, 0xb1, 0x69, 0x48, 0xa3, 0x77, 0x05, 0x2e, 0xc7, 0x50, 0x53, 0x68, 0x45, 0x05,
+ 0xc6, 0x34, 0x7e, 0x9b, 0x6f, 0x2e, 0xb5, 0x05, 0x4d, 0x9d, 0x9b, 0x5a, 0xd1, 0x45, 0x3b, 0x8b,
+ 0x11, 0xeb, 0xa3, 0x18, 0xaa, 0xb6, 0x6e, 0x3b, 0x5e, 0xa3, 0xe3, 0x09, 0x25, 0xc0, 0x3e, 0x4a,
+ 0xd4, 0xe1, 0x0a, 0xa2, 0x2e, 0x55, 0xf8, 0x7c, 0xc8, 0x4f, 0xe4, 0x60, 0xb4, 0xec, 0x79, 0x8e,
+ 0xb9, 0xd2, 0xf1, 0xe8, 0x9c, 0xde, 0x6e, 0x9b, 0xd6, 0x1a, 0x8e, 0xf5, 0xc1, 0x3b, 0x6f, 0x07,
+ 0x6b, 0x64, 0x57, 0x49, 0xdc, 0x8a, 0x17, 0x97, 0x86, 0xa8, 0xee, 0xa3, 0xea, 0x2d, 0x8e, 0x93,
+ 0x87, 0x68, 0xbc, 0x1c, 0x1b, 0xa2, 0xa9, 0xbc, 0xf6, 0x35, 0x44, 0xbf, 0x51, 0x80, 0xab, 0x0b,
+ 0x1b, 0x9e, 0xae, 0x51, 0xd7, 0xee, 0x38, 0x0d, 0xea, 0x2e, 0xb7, 0x0d, 0xdd, 0xa3, 0xe1, 0x48,
+ 0x1d, 0x87, 0xde, 0xb2, 0x61, 0x50, 0x03, 0xd9, 0xf5, 0xf2, 0x6d, 0x9f, 0xce, 0x00, 0x1a, 0x87,
+ 0x93, 0x4f, 0x42, 0x9f, 0x28, 0x83, 0xdc, 0x7b, 0x27, 0x06, 0x77, 0xb6, 0xc7, 0xfb, 0x3a, 0x1c,
+ 0xa4, 0xf9, 0x38, 0x46, 0x56, 0xa1, 0x4d, 0xca, 0xc8, 0x0a, 0x21, 0x99, 0xc1, 0x41, 0x9a, 0x8f,
+ 0x23, 0xef, 0xc1, 0x08, 0xb2, 0x0d, 0xda, 0x23, 0xe6, 0xbe, 0x0b, 0xbe, 0x74, 0xe5, 0xc6, 0xf2,
+ 0xa5, 0x09, 0x5b, 0x53, 0x77, 0xfc, 0x02, 0x5a, 0x8c, 0x01, 0x79, 0x04, 0xa3, 0xa2, 0x11, 0x21,
+ 0xd3, 0xde, 0x2e, 0x4c, 0x2f, 0xee, 0x6c, 0x8f, 0x8f, 0x89, 0xf6, 0x4b, 0x6c, 0x13, 0x4c, 0x18,
+ 0x63, 0xd1, 0xec, 0x90, 0x71, 0x69, 0x37, 0xc6, 0xe2, 0x8b, 0x65, 0xc6, 0x71, 0x26, 0xea, 0xfb,
+ 0x30, 0x24, 0x17, 0x24, 0x97, 0x70, 0x6b, 0xcd, 0xc7, 0x09, 0x6e, 0xca, 0x4d, 0x03, 0xf7, 0xd3,
+ 0x2f, 0xc3, 0x60, 0x85, 0xba, 0x0d, 0xc7, 0x6c, 0x33, 0xab, 0x41, 0x28, 0xf9, 0xb9, 0x9d, 0xed,
+ 0xf1, 0x41, 0x23, 0x04, 0x6b, 0x32, 0x8d, 0xfa, 0x7f, 0xe5, 0xe0, 0x12, 0xe3, 0x5d, 0x76, 0x5d,
+ 0x73, 0xcd, 0x6a, 0xc9, 0xcb, 0xf6, 0x8b, 0x50, 0xaa, 0x61, 0x7d, 0xa2, 0xa6, 0x0b, 0x3b, 0xdb,
+ 0xe3, 0xa3, 0xbc, 0x05, 0x92, 0x1e, 0x0a, 0x9a, 0x60, 0x5f, 0x99, 0xdf, 0x65, 0x5f, 0xc9, 0x4c,
+ 0x5a, 0x4f, 0x77, 0x3c, 0xd3, 0x5a, 0xab, 0x79, 0xba, 0xd7, 0x71, 0x23, 0x26, 0xad, 0xc0, 0xd4,
+ 0x5d, 0x44, 0x45, 0x4c, 0xda, 0x48, 0x21, 0xf2, 0x2e, 0x0c, 0x4d, 0x59, 0x46, 0xc8, 0x84, 0x4f,
+ 0x88, 0x4f, 0x33, 0x4b, 0x93, 0x22, 0x3c, 0xc9, 0x22, 0x52, 0x40, 0xfd, 0x1b, 0x39, 0x50, 0xf8,
+ 0x26, 0x70, 0xd6, 0x74, 0xbd, 0x39, 0xda, 0x5a, 0x91, 0x66, 0xa7, 0x69, 0x7f, 0x57, 0xc9, 0x70,
+ 0xd2, 0x5a, 0x84, 0xa6, 0x80, 0xd8, 0x55, 0x36, 0x4d, 0x37, 0xb1, 0xfd, 0x88, 0x95, 0x22, 0x55,
+ 0xe8, 0xe3, 0x9c, 0xb9, 0x2d, 0x31, 0x78, 0x47, 0xf1, 0x15, 0x21, 0x5e, 0x35, 0x57, 0x86, 0x16,
+ 0x27, 0x96, 0x37, 0x34, 0xa2, 0xbc, 0xfa, 0x37, 0xf3, 0x30, 0x1a, 0x2f, 0x44, 0x1e, 0x41, 0xff,
+ 0x7d, 0xdb, 0xb4, 0xa8, 0xb1, 0x60, 0x61, 0x0b, 0xbb, 0x1f, 0x8e, 0xf8, 0xb6, 0xf8, 0xf9, 0x0f,
+ 0xb0, 0x4c, 0x5d, 0xb6, 0x60, 0xf1, 0xac, 0x24, 0x60, 0x46, 0xbe, 0x08, 0x03, 0xcc, 0x06, 0x7c,
+ 0x8c, 0x9c, 0xf3, 0xbb, 0x72, 0x7e, 0x56, 0x70, 0xbe, 0xe0, 0xf0, 0x42, 0x49, 0xd6, 0x21, 0x3b,
+ 0xa6, 0x57, 0x1a, 0xd5, 0x5d, 0xdb, 0x12, 0x3d, 0x8f, 0x7a, 0xe5, 0x20, 0x44, 0xd6, 0x2b, 0x4e,
+ 0xc3, 0x4c, 0x57, 0xfe, 0xb1, 0xd8, 0x0d, 0xd2, 0xde, 0x85, 0xcb, 0x2a, 0xde, 0x03, 0x12, 0xb1,
+ 0xfa, 0x63, 0x79, 0x78, 0x29, 0x14, 0x99, 0x46, 0x1f, 0x9b, 0x74, 0x53, 0x88, 0x73, 0xdd, 0x6c,
+ 0x8b, 0x3d, 0x2b, 0x53, 0x79, 0x77, 0x72, 0x5d, 0xb7, 0xd6, 0xa8, 0x41, 0x6e, 0x42, 0xaf, 0x66,
+ 0x37, 0xa9, 0xab, 0xe4, 0xd0, 0x5c, 0xc3, 0xe9, 0xc4, 0x61, 0x00, 0xf9, 0xd0, 0x03, 0x29, 0x88,
+ 0x0d, 0xa5, 0x25, 0x47, 0x37, 0x3d, 0xbf, 0x67, 0xcb, 0xc9, 0x9e, 0xdd, 0x43, 0x8d, 0xb7, 0x38,
+ 0x0f, 0x3e, 0xe7, 0xa3, 0x20, 0x3c, 0x04, 0xc8, 0x82, 0xe0, 0x24, 0x57, 0xde, 0x80, 0x41, 0x89,
+ 0x78, 0x5f, 0x93, 0xfa, 0x6f, 0x17, 0x65, 0x5d, 0xf7, 0x9b, 0x25, 0x74, 0xfd, 0x36, 0xd3, 0x51,
+ 0xd7, 0x65, 0x56, 0x05, 0x57, 0x72, 0xa1, 0x89, 0x08, 0x8a, 0x6a, 0x22, 0x82, 0xc8, 0x2b, 0xd0,
+ 0xcf, 0x59, 0x04, 0xfb, 0x57, 0xdc, 0xfb, 0x3a, 0x08, 0x8b, 0x2e, 0xcd, 0x01, 0x21, 0xf9, 0xa5,
+ 0x1c, 0x3c, 0xd3, 0x55, 0x12, 0xa8, 0x0c, 0x83, 0x77, 0x5e, 0x3d, 0x90, 0x18, 0x27, 0x5e, 0xda,
+ 0xd9, 0x1e, 0xbf, 0xd9, 0x0a, 0x48, 0xea, 0x8e, 0x44, 0x53, 0x6f, 0x70, 0x22, 0xa9, 0x5d, 0xdd,
+ 0x9b, 0xc2, 0x8c, 0x47, 0x5e, 0xe9, 0x34, 0x1e, 0x1d, 0x59, 0x8d, 0x2d, 0xbf, 0x91, 0xc5, 0xd0,
+ 0x78, 0x14, 0xdf, 0xbb, 0xea, 0x93, 0xa4, 0x54, 0x93, 0xc1, 0x85, 0x34, 0xe0, 0x32, 0xc7, 0x54,
+ 0xf4, 0xad, 0x85, 0xd5, 0x39, 0xdb, 0xf2, 0xd6, 0xfd, 0x0a, 0x7a, 0xe5, 0xb3, 0x17, 0xac, 0xc0,
+ 0xd0, 0xb7, 0xea, 0xf6, 0x6a, 0xbd, 0xc5, 0xa8, 0x52, 0xea, 0xc8, 0xe2, 0xc4, 0x26, 0x5a, 0x31,
+ 0xe6, 0xfc, 0x29, 0xa8, 0x14, 0x9e, 0x8c, 0xf9, 0xe3, 0x34, 0x39, 0xe1, 0xc4, 0x0a, 0xa9, 0x55,
+ 0x18, 0x9a, 0xb5, 0x1b, 0x1b, 0x81, 0xba, 0xbc, 0x01, 0xa5, 0x25, 0xdd, 0x59, 0xa3, 0x1e, 0xca,
+ 0x62, 0xf0, 0xce, 0xd8, 0x2d, 0x7e, 0xda, 0xcc, 0x88, 0x38, 0x62, 0x62, 0x44, 0xcc, 0x06, 0x25,
+ 0x0f, 0x7f, 0x6b, 0xa2, 0x80, 0xfa, 0x9d, 0x5e, 0x18, 0x12, 0x27, 0xa3, 0x38, 0x9b, 0x93, 0x37,
+ 0xc3, 0xb3, 0x66, 0x31, 0x7d, 0x05, 0xa7, 0x43, 0xc1, 0xa9, 0xd6, 0x10, 0x63, 0xf6, 0xfb, 0xdb,
+ 0xe3, 0xb9, 0x9d, 0xed, 0xf1, 0x1e, 0xad, 0x5f, 0xda, 0x54, 0x86, 0xeb, 0x8d, 0xb4, 0xc0, 0xca,
+ 0x67, 0x9d, 0xb1, 0xb2, 0x7c, 0xfd, 0x79, 0x17, 0xfa, 0x44, 0x1b, 0x84, 0xc6, 0x5d, 0x0e, 0xcf,
+ 0x32, 0x22, 0x27, 0xbc, 0xb1, 0xd2, 0x7e, 0x29, 0xf2, 0x36, 0x94, 0xf8, 0xde, 0x5e, 0x08, 0xe0,
+ 0x52, 0xfa, 0x59, 0x48, 0xac, 0xb8, 0x28, 0x43, 0x66, 0x00, 0xc2, 0x7d, 0x7d, 0x70, 0xa0, 0x2d,
+ 0x38, 0x24, 0x77, 0xfc, 0x31, 0x2e, 0x52, 0x59, 0xf2, 0x1a, 0x0c, 0x2d, 0x51, 0xa7, 0x65, 0x5a,
+ 0x7a, 0xb3, 0x66, 0x7e, 0xe8, 0x9f, 0x69, 0xe3, 0xc2, 0xeb, 0x9a, 0x1f, 0xca, 0x23, 0x37, 0x42,
+ 0x47, 0xbe, 0x94, 0xb6, 0x6f, 0xee, 0xc3, 0x86, 0x3c, 0xb7, 0xeb, 0x86, 0x32, 0xd6, 0x9e, 0x94,
+ 0x6d, 0xf4, 0x7b, 0x30, 0x1c, 0xd9, 0x32, 0x89, 0x43, 0xcb, 0x67, 0x92, 0xac, 0xa5, 0xfd, 0x5f,
+ 0x8c, 0x6d, 0x94, 0x03, 0xd3, 0xe4, 0xaa, 0x65, 0x7a, 0xa6, 0xde, 0x9c, 0xb4, 0x5b, 0x2d, 0xdd,
+ 0x32, 0x94, 0x81, 0x50, 0x93, 0x4d, 0x8e, 0xa9, 0x37, 0x38, 0x4a, 0xd6, 0xe4, 0x68, 0x21, 0xb6,
+ 0x2d, 0x17, 0x7d, 0xa8, 0xd1, 0x86, 0xed, 0x30, 0x5b, 0x00, 0xcf, 0x24, 0xc5, 0xb6, 0xdc, 0xe5,
+ 0xb8, 0xba, 0xe3, 0x23, 0x65, 0x63, 0x3b, 0x5e, 0xf0, 0x7e, 0xb1, 0x7f, 0x70, 0x74, 0x28, 0x7e,
+ 0x8c, 0xac, 0xfe, 0xf5, 0x02, 0x0c, 0x0a, 0x52, 0xb6, 0x94, 0x9e, 0x29, 0xf8, 0x61, 0x14, 0x3c,
+ 0x55, 0x51, 0x4b, 0x47, 0xa5, 0xa8, 0xea, 0x57, 0xf3, 0xc1, 0x6c, 0xb4, 0xe8, 0x98, 0xd6, 0xe1,
+ 0x66, 0xa3, 0xeb, 0x00, 0x93, 0xeb, 0x1d, 0x6b, 0x83, 0x5f, 0x97, 0xe5, 0xc3, 0xeb, 0xb2, 0x86,
+ 0xa9, 0x49, 0x18, 0xf2, 0x0c, 0x14, 0x2b, 0x8c, 0x3f, 0xeb, 0x99, 0xa1, 0x89, 0x81, 0x6f, 0x73,
+ 0x4e, 0xb9, 0x97, 0x34, 0x04, 0xb3, 0xcd, 0xd5, 0xc4, 0x96, 0x47, 0xb9, 0x39, 0x5b, 0xe0, 0x9b,
+ 0xab, 0x15, 0x06, 0xd0, 0x38, 0x9c, 0xdc, 0x85, 0xb1, 0x0a, 0x6d, 0xea, 0x5b, 0x73, 0x66, 0xb3,
+ 0x69, 0xba, 0xb4, 0x61, 0x5b, 0x86, 0x8b, 0x42, 0x16, 0xd5, 0xb5, 0x5c, 0x2d, 0x49, 0x40, 0x54,
+ 0x28, 0x2d, 0xac, 0xae, 0xba, 0xd4, 0x43, 0xf1, 0x15, 0x26, 0x80, 0x4d, 0xce, 0x36, 0x42, 0x34,
+ 0x81, 0x51, 0x7f, 0x35, 0xc7, 0x76, 0x2f, 0xee, 0x86, 0x67, 0xb7, 0x03, 0x2d, 0x3f, 0x94, 0x48,
+ 0x6e, 0x86, 0x76, 0x45, 0x1e, 0xbf, 0xf6, 0x9c, 0xf8, 0xda, 0x3e, 0x61, 0x5b, 0x84, 0x16, 0x45,
+ 0xea, 0x57, 0x15, 0x76, 0xf9, 0x2a, 0xf5, 0x8f, 0xf2, 0x70, 0x59, 0xb4, 0x78, 0xb2, 0x69, 0xb6,
+ 0x57, 0x6c, 0xdd, 0x31, 0x34, 0xda, 0xa0, 0xe6, 0x63, 0x7a, 0x32, 0x07, 0x5e, 0x74, 0xe8, 0x14,
+ 0x0f, 0x31, 0x74, 0xee, 0xe0, 0x46, 0x90, 0x49, 0x06, 0x0f, 0x7c, 0xb9, 0x51, 0x31, 0xba, 0xb3,
+ 0x3d, 0x3e, 0x64, 0x70, 0x30, 0x1e, 0xf9, 0x6b, 0x32, 0x11, 0x53, 0x92, 0x59, 0x6a, 0xad, 0x79,
+ 0xeb, 0xa8, 0x24, 0xbd, 0x5c, 0x49, 0x9a, 0x08, 0xd1, 0x04, 0x46, 0xfd, 0xdf, 0xf2, 0x70, 0x21,
+ 0x2e, 0xf2, 0x1a, 0xb5, 0x8c, 0x33, 0x79, 0x7f, 0x34, 0xf2, 0xfe, 0x6e, 0x01, 0x9e, 0x16, 0x65,
+ 0x6a, 0xeb, 0xba, 0x43, 0x8d, 0x8a, 0xe9, 0xd0, 0x86, 0x67, 0x3b, 0x5b, 0x27, 0xd8, 0x80, 0x3a,
+ 0x3a, 0xb1, 0xdf, 0x85, 0x92, 0xd8, 0xfe, 0xf3, 0x75, 0x66, 0x24, 0x68, 0x09, 0x42, 0x13, 0x2b,
+ 0x14, 0x3f, 0x3a, 0x88, 0x75, 0x56, 0x69, 0x2f, 0x9d, 0xf5, 0x59, 0x18, 0x0e, 0x44, 0x8f, 0x1b,
+ 0xd1, 0xbe, 0xd0, 0xda, 0x32, 0x7c, 0x04, 0xee, 0x45, 0xb5, 0x28, 0x21, 0xd6, 0xe6, 0x03, 0xaa,
+ 0x15, 0xb4, 0x86, 0x86, 0x45, 0x6d, 0x41, 0x39, 0xd3, 0xd0, 0x64, 0x22, 0x75, 0xbb, 0x08, 0x57,
+ 0xd2, 0xbb, 0x5d, 0xa3, 0xba, 0x71, 0xd6, 0xeb, 0xdf, 0x97, 0xbd, 0x4e, 0x9e, 0x83, 0xe2, 0xa2,
+ 0xee, 0xad, 0x8b, 0xeb, 0x77, 0xbc, 0x13, 0x5e, 0x35, 0x9b, 0xb4, 0xde, 0xd6, 0xbd, 0x75, 0x0d,
+ 0x51, 0xd2, 0x9c, 0x01, 0xc8, 0x31, 0x65, 0xce, 0x90, 0x16, 0xfb, 0xc1, 0x67, 0x73, 0x37, 0x8a,
+ 0xa9, 0x8b, 0xfd, 0x77, 0x8a, 0x59, 0xf3, 0xca, 0x23, 0xc7, 0xf4, 0xe8, 0x99, 0x86, 0x9d, 0x69,
+ 0xd8, 0x21, 0x35, 0xec, 0x1f, 0xe5, 0x61, 0x38, 0xd8, 0x34, 0x7d, 0x40, 0x1b, 0xc7, 0xb3, 0x56,
+ 0x85, 0x5b, 0x99, 0xc2, 0xa1, 0xb7, 0x32, 0x87, 0x51, 0x28, 0x35, 0x38, 0xf2, 0xe4, 0xa6, 0x01,
+ 0x4a, 0x8c, 0x1f, 0x79, 0x06, 0x07, 0x9d, 0xcf, 0x41, 0xdf, 0x9c, 0xfe, 0xc4, 0x6c, 0x75, 0x5a,
+ 0xc2, 0x4a, 0x47, 0x77, 0xb2, 0x96, 0xfe, 0x44, 0xf3, 0xe1, 0xea, 0x7f, 0x9b, 0x83, 0x11, 0x21,
+ 0x54, 0xc1, 0xfc, 0x50, 0x52, 0x0d, 0xa5, 0x93, 0x3f, 0xb4, 0x74, 0x0a, 0x07, 0x97, 0x8e, 0xfa,
+ 0x17, 0x0b, 0xa0, 0x4c, 0x9b, 0x4d, 0xba, 0xe4, 0xe8, 0x96, 0xbb, 0x4a, 0x1d, 0xb1, 0x9d, 0x9e,
+ 0x62, 0xac, 0x0e, 0xf5, 0x81, 0xd2, 0x94, 0x92, 0x3f, 0xd0, 0x94, 0xf2, 0x69, 0x18, 0x10, 0x8d,
+ 0x09, 0x5c, 0x19, 0x71, 0xd4, 0x38, 0x3e, 0x50, 0x0b, 0xf1, 0x8c, 0xb8, 0xdc, 0x6e, 0x3b, 0xf6,
+ 0x63, 0xea, 0xf0, 0x5b, 0x2a, 0x41, 0xac, 0xfb, 0x40, 0x2d, 0xc4, 0x4b, 0x9c, 0xa9, 0x6f, 0x2f,
+ 0xca, 0x9c, 0xa9, 0xa3, 0x85, 0x78, 0x72, 0x03, 0xfa, 0x67, 0xed, 0x86, 0x8e, 0x82, 0xe6, 0xd3,
+ 0xca, 0xd0, 0xce, 0xf6, 0x78, 0x7f, 0x53, 0xc0, 0xb4, 0x00, 0xcb, 0x28, 0x2b, 0xf6, 0xa6, 0xd5,
+ 0xb4, 0x75, 0xee, 0xfc, 0xd2, 0xcf, 0x29, 0x0d, 0x01, 0xd3, 0x02, 0x2c, 0xa3, 0x64, 0x32, 0x47,
+ 0xa7, 0xa2, 0xfe, 0x90, 0xe7, 0xaa, 0x80, 0x69, 0x01, 0x56, 0xfd, 0xd5, 0x22, 0xd3, 0x5e, 0xd7,
+ 0xfc, 0xf0, 0xd4, 0xaf, 0x0b, 0xe1, 0x80, 0xe9, 0x3d, 0xc0, 0x80, 0x39, 0x35, 0x07, 0x76, 0xea,
+ 0xbf, 0xe8, 0x03, 0x10, 0xd2, 0x9f, 0x3a, 0xdb, 0x1c, 0x1e, 0x4e, 0x6b, 0x2a, 0x30, 0x36, 0x65,
+ 0xad, 0xeb, 0x56, 0x83, 0x1a, 0xe1, 0xb1, 0x65, 0x09, 0x87, 0x36, 0x3a, 0x41, 0x52, 0x81, 0x0c,
+ 0xcf, 0x2d, 0xb5, 0x64, 0x01, 0xf2, 0x32, 0x0c, 0x56, 0x2d, 0x8f, 0x3a, 0x7a, 0xc3, 0x33, 0x1f,
+ 0x53, 0x31, 0x35, 0xe0, 0xcd, 0xb0, 0x19, 0x82, 0x35, 0x99, 0x86, 0xdc, 0x85, 0xa1, 0x45, 0xdd,
+ 0xf1, 0xcc, 0x86, 0xd9, 0xd6, 0x2d, 0xcf, 0x55, 0xfa, 0x71, 0x46, 0x43, 0x0b, 0xa3, 0x2d, 0xc1,
+ 0xb5, 0x08, 0x15, 0xf9, 0x12, 0x0c, 0xe0, 0xd6, 0x14, 0xfd, 0xb5, 0x07, 0x76, 0xbd, 0x38, 0x7c,
+ 0x3e, 0x74, 0x0f, 0xe4, 0xa7, 0xaf, 0x78, 0x03, 0x1c, 0xbf, 0x3b, 0x0c, 0x38, 0x92, 0x2f, 0x40,
+ 0xdf, 0x94, 0x65, 0x20, 0x73, 0xd8, 0x95, 0xb9, 0x2a, 0x98, 0x5f, 0x0a, 0x99, 0xdb, 0xed, 0x18,
+ 0x6f, 0x9f, 0x5d, 0xfa, 0x28, 0x1b, 0xfc, 0xe8, 0x46, 0xd9, 0xd0, 0x47, 0x70, 0x2c, 0x3e, 0x7c,
+ 0x54, 0xc7, 0xe2, 0x23, 0x07, 0x3c, 0x16, 0x57, 0x3f, 0x84, 0xc1, 0x89, 0xc5, 0xe9, 0x60, 0xf4,
+ 0x3e, 0x05, 0x85, 0x45, 0xe1, 0xa9, 0x50, 0xe4, 0xf6, 0x4c, 0xdb, 0x34, 0x34, 0x06, 0x23, 0x37,
+ 0xa1, 0x7f, 0x12, 0xdd, 0xdf, 0xc4, 0x2d, 0x62, 0x91, 0xaf, 0x7f, 0x0d, 0x84, 0xa1, 0x17, 0xac,
+ 0x8f, 0x26, 0x9f, 0x84, 0xbe, 0x45, 0xc7, 0x5e, 0x73, 0xf4, 0x96, 0x58, 0x83, 0xd1, 0x55, 0xa4,
+ 0xcd, 0x41, 0x9a, 0x8f, 0x53, 0x7f, 0x3a, 0xe7, 0x9b, 0xed, 0xac, 0x44, 0xad, 0x83, 0x47, 0xf3,
+ 0x58, 0x77, 0x3f, 0x2f, 0xe1, 0x72, 0x90, 0xe6, 0xe3, 0xc8, 0x4d, 0xe8, 0x9d, 0x72, 0x1c, 0xdb,
+ 0x91, 0x7d, 0xdc, 0x29, 0x03, 0xc8, 0xd7, 0xbd, 0x48, 0x41, 0x5e, 0x87, 0x41, 0x3e, 0xe7, 0xf0,
+ 0x13, 0xcd, 0x42, 0xb7, 0x9b, 0x52, 0x99, 0x52, 0xfd, 0x56, 0x41, 0xb2, 0xd9, 0xb8, 0xc4, 0x4f,
+ 0xe1, 0xad, 0xc0, 0x2b, 0x50, 0x98, 0x58, 0x9c, 0x16, 0x13, 0xe0, 0x79, 0xbf, 0xa8, 0xa4, 0x2a,
+ 0xb1, 0x72, 0x8c, 0x9a, 0x5c, 0x85, 0xe2, 0x22, 0x53, 0x9f, 0x12, 0xaa, 0x47, 0xff, 0xce, 0xf6,
+ 0x78, 0xb1, 0xcd, 0xf4, 0x07, 0xa1, 0x88, 0x65, 0x9b, 0x19, 0xbe, 0x63, 0xe2, 0xd8, 0x70, 0x1f,
+ 0x73, 0x15, 0x8a, 0x65, 0x67, 0xed, 0xb1, 0x98, 0xb5, 0x10, 0xab, 0x3b, 0x6b, 0x8f, 0x35, 0x84,
+ 0x92, 0xdb, 0x00, 0x1a, 0xf5, 0x3a, 0x8e, 0x85, 0xcf, 0x4f, 0x06, 0xf0, 0xfc, 0x0d, 0x67, 0x43,
+ 0x07, 0xa1, 0xf5, 0x86, 0x6d, 0x50, 0x4d, 0x22, 0x51, 0xff, 0x5a, 0x78, 0xb1, 0x53, 0x31, 0xdd,
+ 0x8d, 0xb3, 0x2e, 0xdc, 0x47, 0x17, 0xea, 0xe2, 0x88, 0x33, 0xd9, 0x49, 0xe3, 0xd0, 0x3b, 0xdd,
+ 0xd4, 0xd7, 0x5c, 0xec, 0x43, 0xe1, 0x4b, 0xb6, 0xca, 0x00, 0x1a, 0x87, 0xc7, 0xfa, 0xa9, 0x7f,
+ 0xf7, 0x7e, 0xfa, 0xd9, 0xde, 0x60, 0xb4, 0xcd, 0x53, 0x6f, 0xd3, 0x76, 0xce, 0xba, 0x6a, 0xaf,
+ 0x5d, 0x75, 0x1d, 0xfa, 0x6a, 0x4e, 0x43, 0x3a, 0xba, 0xc0, 0xfd, 0x80, 0xeb, 0x34, 0xf8, 0xb1,
+ 0x85, 0x8f, 0x64, 0x74, 0x15, 0xd7, 0x43, 0xba, 0xbe, 0x90, 0xce, 0x70, 0x3d, 0x41, 0x27, 0x90,
+ 0x82, 0x6e, 0xd1, 0x76, 0x3c, 0xd1, 0x71, 0x01, 0x5d, 0xdb, 0x76, 0x3c, 0xcd, 0x47, 0x92, 0x4f,
+ 0x03, 0x2c, 0x4d, 0x2e, 0xfa, 0xce, 0xf6, 0x03, 0xa1, 0x2f, 0xa0, 0xf0, 0xb2, 0xd7, 0x24, 0x34,
+ 0x59, 0x82, 0x81, 0x85, 0x36, 0x75, 0xf8, 0x56, 0x88, 0x3f, 0x28, 0xf9, 0x54, 0x4c, 0xb4, 0xa2,
+ 0xdf, 0x6f, 0x89, 0xff, 0x03, 0x72, 0xbe, 0xbe, 0xd8, 0xfe, 0x4f, 0x2d, 0x64, 0x44, 0x5e, 0x87,
+ 0x52, 0x99, 0xdb, 0x79, 0x83, 0xc8, 0x32, 0x10, 0x19, 0x6e, 0x41, 0x39, 0x8a, 0xef, 0xd9, 0x75,
+ 0xfc, 0x5b, 0x13, 0xe4, 0xea, 0x4d, 0x18, 0x8d, 0x57, 0x43, 0x06, 0xa1, 0x6f, 0x72, 0x61, 0x7e,
+ 0x7e, 0x6a, 0x72, 0x69, 0xb4, 0x87, 0xf4, 0x43, 0xb1, 0x36, 0x35, 0x5f, 0x19, 0xcd, 0xa9, 0xbf,
+ 0x2c, 0xcd, 0x20, 0x4c, 0xb5, 0xce, 0xae, 0x86, 0x0f, 0x75, 0xdf, 0x32, 0x8a, 0xf7, 0xa1, 0x78,
+ 0x62, 0xd0, 0x32, 0x3d, 0x8f, 0x1a, 0x62, 0x95, 0xc0, 0xfb, 0x42, 0xef, 0x89, 0x96, 0xc0, 0x93,
+ 0x17, 0x61, 0x18, 0x61, 0xe2, 0x8a, 0x90, 0xef, 0x8f, 0x45, 0x01, 0xe7, 0x89, 0x16, 0x45, 0xaa,
+ 0xbf, 0x1b, 0xde, 0x0e, 0xcf, 0x52, 0xfd, 0xa4, 0xde, 0x28, 0x7e, 0x4c, 0xfa, 0x4b, 0xfd, 0x57,
+ 0x45, 0xfe, 0x04, 0x84, 0xbf, 0x17, 0x3c, 0x0e, 0x51, 0x86, 0x47, 0xba, 0x85, 0x7d, 0x1c, 0xe9,
+ 0xbe, 0x08, 0xa5, 0x39, 0xea, 0xad, 0xdb, 0xbe, 0xe3, 0x17, 0x7a, 0xe8, 0xb5, 0x10, 0x22, 0x7b,
+ 0xe8, 0x71, 0x1a, 0xb2, 0x01, 0xc4, 0x7f, 0x0c, 0x18, 0x38, 0x62, 0xfb, 0x47, 0xc8, 0x97, 0x13,
+ 0xfb, 0x94, 0x1a, 0xbe, 0x04, 0x46, 0x1f, 0xfb, 0x0b, 0x81, 0xa3, 0xb7, 0xe4, 0x89, 0xf5, 0x2f,
+ 0xb7, 0xc7, 0x4b, 0x9c, 0x46, 0x4b, 0x61, 0x4b, 0xde, 0x83, 0x81, 0xb9, 0xe9, 0xb2, 0x78, 0x18,
+ 0xc8, 0xbd, 0x22, 0x9e, 0x0a, 0xa4, 0xe8, 0x23, 0x02, 0x91, 0xe0, 0x7b, 0x9b, 0xd6, 0xaa, 0x9e,
+ 0x7c, 0x17, 0x18, 0x72, 0x61, 0xda, 0xc2, 0x5f, 0xee, 0x88, 0xd3, 0x85, 0x40, 0x5b, 0xa2, 0xef,
+ 0x79, 0xe2, 0xb2, 0xe2, 0xd8, 0x98, 0xb6, 0xf4, 0x1f, 0x62, 0x74, 0x2f, 0xc0, 0x58, 0xb9, 0xdd,
+ 0x6e, 0x9a, 0xd4, 0x40, 0x7d, 0xd1, 0x3a, 0x4d, 0xea, 0x0a, 0x97, 0x1f, 0x7c, 0x0c, 0xa2, 0x73,
+ 0x64, 0x1d, 0x9f, 0xa3, 0xd6, 0x9d, 0x4e, 0xd4, 0x3f, 0x33, 0x59, 0x56, 0xfd, 0xb3, 0x79, 0xb8,
+ 0x34, 0xe9, 0x50, 0xdd, 0xa3, 0x73, 0xd3, 0xe5, 0x72, 0x07, 0x7d, 0xe4, 0x9a, 0x4d, 0x6a, 0xad,
+ 0x1d, 0xcf, 0xb0, 0x7e, 0x0b, 0x46, 0x82, 0x06, 0xd4, 0x1a, 0x76, 0x9b, 0xca, 0x0f, 0xab, 0x1a,
+ 0x3e, 0xa6, 0xee, 0x32, 0x94, 0x16, 0x23, 0x25, 0x0f, 0xe0, 0x7c, 0x00, 0x29, 0x37, 0x9b, 0xf6,
+ 0xa6, 0x46, 0x3b, 0x2e, 0x77, 0x8c, 0xed, 0xe7, 0x8e, 0xb1, 0x21, 0x07, 0x9d, 0xe1, 0xeb, 0x0e,
+ 0x23, 0xd0, 0xd2, 0x4a, 0xa9, 0x3f, 0x5f, 0x80, 0xcb, 0x0f, 0xf5, 0xa6, 0x69, 0x84, 0xa2, 0xd1,
+ 0xa8, 0xdb, 0xb6, 0x2d, 0x97, 0x9e, 0xa0, 0x51, 0x1a, 0x19, 0x0a, 0xc5, 0x23, 0x19, 0x0a, 0xc9,
+ 0x2e, 0xea, 0x3d, 0x74, 0x17, 0x95, 0x0e, 0xd4, 0x45, 0xff, 0x6b, 0x0e, 0x46, 0x7d, 0xc7, 0x7f,
+ 0xf9, 0x11, 0xb7, 0xe4, 0x95, 0x8e, 0x47, 0x88, 0x31, 0x3f, 0x68, 0xc4, 0x93, 0x1a, 0xf4, 0x4d,
+ 0x3d, 0x69, 0x9b, 0x0e, 0x75, 0xf7, 0xe0, 0xc4, 0xfd, 0x8c, 0x38, 0x2e, 0x19, 0xa3, 0xbc, 0x48,
+ 0xe2, 0xa4, 0x84, 0x83, 0xf1, 0x39, 0x1f, 0x7f, 0xfa, 0x30, 0xe1, 0xbf, 0x4c, 0xe7, 0xcf, 0xf9,
+ 0xc4, 0x13, 0x89, 0xc8, 0xfb, 0xcc, 0x90, 0x94, 0x3c, 0x0f, 0x85, 0xa5, 0xa5, 0x59, 0x31, 0x93,
+ 0x62, 0x44, 0x00, 0xcf, 0x93, 0xdf, 0x2b, 0x32, 0xac, 0xfa, 0x4f, 0xf3, 0x00, 0x4c, 0x15, 0xf8,
+ 0x70, 0x3d, 0x16, 0x25, 0x9c, 0x80, 0x7e, 0x5f, 0xe0, 0x42, 0x0d, 0x03, 0xaf, 0xfd, 0x78, 0x47,
+ 0xc4, 0xeb, 0x0e, 0x5e, 0x68, 0x8c, 0xfb, 0x8e, 0xe4, 0xfc, 0x1e, 0x00, 0x77, 0x36, 0xe8, 0x48,
+ 0xee, 0xbb, 0x8f, 0x7f, 0x1a, 0x06, 0xc4, 0x8c, 0x67, 0x47, 0xce, 0xff, 0x1b, 0x3e, 0x50, 0x0b,
+ 0xf1, 0xb1, 0xa9, 0xb5, 0x74, 0x88, 0x85, 0xd8, 0x17, 0x2f, 0xef, 0x95, 0x33, 0xf1, 0x1e, 0xb1,
+ 0x78, 0xbf, 0x26, 0xc4, 0xcb, 0x5f, 0xf0, 0x9c, 0x58, 0xf1, 0x1e, 0xd9, 0xd9, 0xb7, 0xfa, 0x8f,
+ 0x72, 0x40, 0x58, 0xb3, 0x16, 0x75, 0xd7, 0xdd, 0xb4, 0x1d, 0x83, 0x3b, 0xa7, 0x1f, 0x8b, 0x60,
+ 0x8e, 0xee, 0xbe, 0xf2, 0x5b, 0xfd, 0x70, 0x3e, 0xe2, 0xf8, 0x7b, 0xc2, 0x27, 0xab, 0x9b, 0xd1,
+ 0xd1, 0xd4, 0xed, 0xd5, 0xcb, 0x27, 0xe4, 0x0b, 0xd1, 0xde, 0xc8, 0x03, 0x34, 0xe9, 0x26, 0xf4,
+ 0x25, 0x18, 0x12, 0x3f, 0xd8, 0x0a, 0xed, 0xdf, 0x74, 0xe1, 0x28, 0x75, 0x19, 0x40, 0x8b, 0xa0,
+ 0xc9, 0xab, 0x30, 0xc0, 0x06, 0xcc, 0x1a, 0x06, 0x0f, 0xe9, 0x0b, 0x5f, 0x94, 0x18, 0x3e, 0x50,
+ 0x5e, 0x4f, 0x02, 0x4a, 0xe9, 0x1d, 0x51, 0xff, 0x1e, 0xde, 0x11, 0x7d, 0x19, 0x06, 0xcb, 0x96,
+ 0x65, 0x7b, 0xb8, 0x49, 0x77, 0xc5, 0xd5, 0x44, 0xa6, 0x55, 0xfe, 0x3c, 0x3e, 0x8e, 0x0f, 0xe9,
+ 0x53, 0xcd, 0x72, 0x99, 0x21, 0xb9, 0xe3, 0xbf, 0x8a, 0xa1, 0x8e, 0xf0, 0x2a, 0xc7, 0xeb, 0x19,
+ 0x47, 0xc0, 0x92, 0x8f, 0x62, 0xb0, 0xf3, 0x86, 0x17, 0x1d, 0xbb, 0x6d, 0xbb, 0xd4, 0xe0, 0x82,
+ 0x1a, 0x0c, 0x43, 0x0d, 0xb4, 0x05, 0x02, 0xdf, 0xb1, 0x45, 0x02, 0x79, 0x44, 0x8a, 0x90, 0x55,
+ 0xb8, 0xe0, 0x5f, 0x14, 0x07, 0x2f, 0x06, 0xab, 0x15, 0x57, 0x19, 0xc2, 0x57, 0x49, 0x24, 0xae,
+ 0x0c, 0xd5, 0xca, 0xc4, 0x35, 0xff, 0x5a, 0xc4, 0x7f, 0x72, 0x58, 0x37, 0x0d, 0xb9, 0xab, 0x53,
+ 0xf9, 0x91, 0x1f, 0x82, 0xc1, 0x39, 0xfd, 0x49, 0xa5, 0x23, 0xce, 0x5e, 0x86, 0xf7, 0x7e, 0xfb,
+ 0xd2, 0xd2, 0x9f, 0xd4, 0x0d, 0x51, 0x2e, 0x66, 0x53, 0xc8, 0x2c, 0x49, 0x1d, 0x2e, 0x2d, 0x3a,
+ 0x76, 0xcb, 0xf6, 0xa8, 0x11, 0x7b, 0x7c, 0x77, 0x2e, 0x7c, 0xad, 0xdb, 0x16, 0x14, 0xf5, 0x2e,
+ 0xaf, 0xf0, 0x32, 0xd8, 0x90, 0x16, 0x9c, 0x2b, 0xbb, 0x6e, 0xa7, 0x45, 0xc3, 0x1b, 0xaa, 0xd1,
+ 0x5d, 0x3f, 0xe3, 0x53, 0xc2, 0x6b, 0xf9, 0x69, 0x1d, 0x8b, 0xf2, 0x0b, 0xaa, 0xba, 0x67, 0xca,
+ 0x35, 0xe2, 0xb7, 0xc4, 0x79, 0xdf, 0x2f, 0xf6, 0x8f, 0x8c, 0x9e, 0xd3, 0x2e, 0x27, 0x1b, 0xb3,
+ 0x64, 0x7a, 0x4d, 0xaa, 0x7e, 0x33, 0x07, 0x10, 0x0a, 0x98, 0xbc, 0x14, 0x8d, 0x50, 0x94, 0x0b,
+ 0x2f, 0x3a, 0x44, 0xf4, 0x82, 0x48, 0x48, 0x22, 0x72, 0x15, 0x8a, 0x18, 0xe1, 0x22, 0x1f, 0x1e,
+ 0xac, 0x6e, 0x98, 0x96, 0xa1, 0x21, 0x94, 0x61, 0xa5, 0xa7, 0xe8, 0x88, 0xc5, 0x4b, 0x7d, 0x6e,
+ 0x15, 0x56, 0xe0, 0x5c, 0xad, 0xb3, 0xe2, 0xd7, 0x2d, 0xbd, 0xab, 0xc3, 0x40, 0x1b, 0x6e, 0x67,
+ 0x25, 0x78, 0x8c, 0x1a, 0x09, 0x63, 0x12, 0x2d, 0xa2, 0xfe, 0x6a, 0x2e, 0x36, 0x0b, 0x1e, 0xe3,
+ 0xa2, 0xf7, 0x89, 0xa4, 0x9f, 0x46, 0x72, 0x5a, 0x52, 0xff, 0x52, 0x1e, 0x06, 0x17, 0x6d, 0xc7,
+ 0x13, 0x21, 0x43, 0x4e, 0xf6, 0x2a, 0x24, 0xed, 0x95, 0x8a, 0xfb, 0xd8, 0x2b, 0x5d, 0x85, 0xa2,
+ 0xe4, 0xa2, 0xcc, 0xef, 0x45, 0x0c, 0xc3, 0xd1, 0x10, 0xaa, 0xfe, 0x48, 0x1e, 0xe0, 0x0b, 0x2f,
+ 0xbf, 0x7c, 0x8a, 0x05, 0xa4, 0xfe, 0x85, 0x1c, 0x9c, 0x13, 0x17, 0x75, 0x52, 0xac, 0xaf, 0x3e,
+ 0xff, 0x8a, 0x55, 0x1e, 0x97, 0x1c, 0xa4, 0xf9, 0x38, 0xb6, 0x04, 0x4c, 0x3d, 0x31, 0x3d, 0xbc,
+ 0xab, 0x90, 0x82, 0x7d, 0x51, 0x01, 0x93, 0x97, 0x00, 0x9f, 0x8e, 0xbc, 0xe4, 0x5f, 0x41, 0x16,
+ 0xc2, 0x75, 0x8f, 0x15, 0x98, 0x4a, 0xbd, 0x86, 0x54, 0x7f, 0xa3, 0x08, 0xc5, 0xa9, 0x27, 0xb4,
+ 0x71, 0xc2, 0xbb, 0x46, 0x3a, 0xd8, 0x2c, 0x1e, 0xf2, 0x60, 0xf3, 0x20, 0x3e, 0x15, 0xef, 0x86,
+ 0xfd, 0x59, 0x8a, 0x56, 0x1f, 0xeb, 0xf9, 0x78, 0xf5, 0x7e, 0x4f, 0x9f, 0x3c, 0x97, 0x9c, 0xff,
+ 0xa2, 0x00, 0x85, 0xda, 0xe4, 0xe2, 0x99, 0xde, 0x1c, 0xab, 0xde, 0x74, 0xbf, 0xb3, 0x56, 0x83,
+ 0x6b, 0xa8, 0xfe, 0xd0, 0x4b, 0x34, 0x76, 0xe3, 0xf4, 0xdd, 0x02, 0x8c, 0xd4, 0xa6, 0x97, 0x16,
+ 0xa5, 0x93, 0xe0, 0x07, 0xdc, 0x93, 0x0f, 0x7d, 0xca, 0x78, 0x97, 0x5e, 0x4d, 0xd8, 0x33, 0xcb,
+ 0x55, 0xcb, 0x7b, 0xed, 0xee, 0x43, 0xbd, 0xd9, 0xa1, 0x78, 0xf4, 0xc2, 0xfd, 0x7e, 0x5d, 0xf3,
+ 0x43, 0xfa, 0xf3, 0xf8, 0xf0, 0xdf, 0x67, 0x40, 0xde, 0x82, 0xc2, 0xb2, 0xf0, 0xc8, 0xc8, 0xe2,
+ 0xf3, 0xca, 0x1d, 0xce, 0x87, 0x4d, 0x82, 0x85, 0x8e, 0x69, 0x20, 0x07, 0x56, 0x8a, 0x15, 0xbe,
+ 0x27, 0x16, 0xe0, 0x3d, 0x15, 0x5e, 0xf3, 0x0b, 0xdf, 0xab, 0x56, 0x48, 0x0d, 0x06, 0x17, 0xa9,
+ 0xd3, 0x32, 0xb1, 0xa3, 0xfc, 0x39, 0xbb, 0x3b, 0x13, 0xb6, 0x53, 0x19, 0x6c, 0x87, 0x85, 0x90,
+ 0x99, 0xcc, 0x85, 0xbc, 0x0f, 0xc0, 0x6d, 0x94, 0x3d, 0xc6, 0x8f, 0x7c, 0x06, 0xed, 0x7e, 0x6e,
+ 0x5a, 0xa6, 0xd8, 0x78, 0x12, 0x33, 0xb2, 0x01, 0xa3, 0x73, 0xb6, 0x61, 0xae, 0x9a, 0xdc, 0xf5,
+ 0x12, 0x2b, 0x28, 0xed, 0xee, 0xf0, 0xc4, 0x4c, 0xc9, 0x96, 0x54, 0x2e, 0xad, 0x9a, 0x04, 0x63,
+ 0xf5, 0x3f, 0xed, 0x85, 0x22, 0xeb, 0xf6, 0xb3, 0xf1, 0x7b, 0x98, 0xf1, 0x5b, 0x86, 0xd1, 0x47,
+ 0xb6, 0xb3, 0x61, 0x5a, 0x6b, 0x81, 0x57, 0xbc, 0xd8, 0x9b, 0xa2, 0x27, 0xcf, 0x26, 0xc7, 0xd5,
+ 0x03, 0x07, 0x7a, 0x2d, 0x41, 0xbe, 0xcb, 0x08, 0x7e, 0x03, 0x80, 0xbf, 0x75, 0x47, 0x9a, 0xfe,
+ 0x30, 0x58, 0x05, 0x7f, 0x09, 0x8f, 0x8e, 0xf6, 0x72, 0xb0, 0x8a, 0x90, 0x98, 0x6d, 0xc2, 0xb9,
+ 0x2f, 0xc4, 0x00, 0xfa, 0xdd, 0xe3, 0x26, 0x1c, 0x7d, 0x21, 0x64, 0x23, 0x80, 0x7b, 0x45, 0x2c,
+ 0x02, 0x48, 0xf7, 0x4b, 0x10, 0x13, 0x44, 0x64, 0x72, 0x10, 0xe1, 0xe1, 0x52, 0xae, 0x97, 0x34,
+ 0x89, 0x07, 0x79, 0x2d, 0x76, 0x01, 0x4e, 0x22, 0xdc, 0x32, 0xef, 0xbf, 0x43, 0x07, 0xaa, 0xa1,
+ 0xdd, 0x1c, 0xa8, 0xd4, 0xdf, 0xc9, 0xc3, 0x40, 0xad, 0xb3, 0xe2, 0x6e, 0xb9, 0x1e, 0x6d, 0x9d,
+ 0x70, 0x35, 0xf6, 0xb7, 0x57, 0xc5, 0xd4, 0xed, 0xd5, 0xf3, 0xbe, 0x50, 0xa4, 0x73, 0xc7, 0xc0,
+ 0xa4, 0xf3, 0xfd, 0xc9, 0x42, 0x45, 0x2e, 0xed, 0x5f, 0x91, 0xd5, 0xbf, 0x95, 0x87, 0x51, 0x7e,
+ 0xed, 0x56, 0x31, 0xdd, 0xc6, 0x11, 0x3c, 0x05, 0x38, 0x7e, 0x99, 0x1e, 0xee, 0xaa, 0x7a, 0x0f,
+ 0x0f, 0x2c, 0xd4, 0xaf, 0xe4, 0x61, 0xb0, 0xdc, 0xf1, 0xd6, 0xcb, 0x1e, 0x6a, 0xe6, 0xa9, 0xdc,
+ 0xdd, 0xfc, 0xc3, 0x1c, 0x9c, 0x63, 0x0d, 0x59, 0xb2, 0x37, 0xa8, 0x75, 0x04, 0xc7, 0x96, 0xf2,
+ 0xf1, 0x63, 0xfe, 0x80, 0xc7, 0x8f, 0xbe, 0x2c, 0x0b, 0xfb, 0x93, 0x25, 0x1e, 0xb6, 0x6b, 0x76,
+ 0x93, 0x9e, 0xec, 0xcf, 0x38, 0xc2, 0xc3, 0x76, 0x5f, 0x20, 0x47, 0x70, 0xb9, 0xf3, 0xfd, 0x25,
+ 0x90, 0x23, 0x38, 0x99, 0xfa, 0xfe, 0x10, 0xc8, 0xb7, 0x72, 0x30, 0x30, 0x61, 0x7b, 0x27, 0x7c,
+ 0xe0, 0x8b, 0xaf, 0x38, 0xd9, 0x6a, 0xee, 0x7f, 0xc5, 0xc9, 0xd6, 0x4d, 0xf5, 0xe7, 0xf2, 0x70,
+ 0x41, 0x44, 0x16, 0x17, 0xa7, 0x17, 0x67, 0xd3, 0xb1, 0x18, 0x6c, 0x49, 0xd1, 0x9c, 0xcd, 0x43,
+ 0x42, 0x34, 0xbf, 0x58, 0x80, 0x0b, 0x18, 0x08, 0x95, 0x6d, 0xea, 0xbe, 0x0f, 0x6c, 0x11, 0xd2,
+ 0x88, 0x5e, 0xa1, 0xce, 0xa5, 0x5c, 0xa1, 0xfe, 0xcb, 0xed, 0xf1, 0xd7, 0xd6, 0x4c, 0x6f, 0xbd,
+ 0xb3, 0x72, 0xab, 0x61, 0xb7, 0x6e, 0xaf, 0x39, 0xfa, 0x63, 0x93, 0x5f, 0x1e, 0xea, 0xcd, 0xdb,
+ 0x41, 0x92, 0x0e, 0xbd, 0x6d, 0x8a, 0xf4, 0x1d, 0x35, 0xdc, 0x29, 0x31, 0xae, 0xfe, 0xe5, 0xab,
+ 0x0b, 0x70, 0xdf, 0x36, 0x2d, 0xe1, 0x91, 0xc8, 0x0d, 0xdd, 0x1a, 0xdb, 0x5d, 0x7e, 0x60, 0x9b,
+ 0x56, 0x3d, 0xee, 0x96, 0xb8, 0xdf, 0xfa, 0x42, 0xd6, 0x9a, 0x54, 0x8d, 0xfa, 0xdf, 0xe4, 0xe0,
+ 0xa9, 0xa8, 0x16, 0x7f, 0x3f, 0xd8, 0x8e, 0x7f, 0x2e, 0x0f, 0x17, 0xef, 0xa1, 0x70, 0x02, 0x37,
+ 0x90, 0xb3, 0x79, 0x4b, 0x0c, 0xce, 0x14, 0xd9, 0x9c, 0x59, 0x94, 0xd9, 0xb2, 0x39, 0x9b, 0xd4,
+ 0x85, 0x6c, 0xfe, 0xeb, 0x1c, 0x9c, 0x5f, 0xa8, 0x56, 0x26, 0xbf, 0x4f, 0x46, 0x54, 0xf2, 0x7b,
+ 0x4e, 0xb8, 0xc1, 0x99, 0xf8, 0x9e, 0x13, 0x6e, 0x7a, 0x7e, 0x23, 0x0f, 0xe7, 0x6b, 0xe5, 0xb9,
+ 0xd9, 0xef, 0x97, 0x19, 0x7c, 0x52, 0xf6, 0x59, 0xf4, 0x0f, 0xc1, 0x84, 0x2d, 0x20, 0x7f, 0xe6,
+ 0xc3, 0x3b, 0xd9, 0xbe, 0x8c, 0x49, 0xa1, 0x9c, 0xf0, 0xa9, 0xfb, 0x48, 0x84, 0xc2, 0x34, 0x3f,
+ 0x42, 0x7d, 0xc2, 0x35, 0xff, 0x3f, 0x2f, 0xc1, 0xe0, 0x83, 0xce, 0x0a, 0x15, 0xae, 0x2d, 0xa7,
+ 0xfa, 0xe4, 0xf7, 0x0e, 0x0c, 0x0a, 0x31, 0xe0, 0x9d, 0x8b, 0x14, 0x7a, 0x4f, 0x84, 0x52, 0xe1,
+ 0xd1, 0x8d, 0x64, 0x22, 0x72, 0x15, 0x8a, 0x0f, 0xa9, 0xb3, 0x22, 0xbf, 0x4a, 0x7d, 0x4c, 0x9d,
+ 0x15, 0x0d, 0xa1, 0x64, 0x36, 0x74, 0xb8, 0x2f, 0x2f, 0x56, 0x31, 0x0d, 0x8b, 0xb8, 0xee, 0xc1,
+ 0xbc, 0x32, 0x81, 0xd7, 0x9c, 0xde, 0x36, 0x79, 0x02, 0x17, 0xf9, 0x45, 0x7c, 0xbc, 0x24, 0x99,
+ 0x87, 0x31, 0xd9, 0x6d, 0x8a, 0xe7, 0x20, 0xe9, 0x4f, 0x61, 0x97, 0x96, 0x7d, 0x24, 0x59, 0x94,
+ 0xbc, 0x0b, 0x43, 0x3e, 0x10, 0x1d, 0xc0, 0x06, 0xc2, 0xc0, 0xf7, 0x01, 0xab, 0x58, 0x82, 0xa3,
+ 0x48, 0x01, 0x99, 0x01, 0x5e, 0x62, 0x40, 0x0a, 0x83, 0x98, 0x43, 0x5d, 0xa4, 0x00, 0x79, 0x15,
+ 0x19, 0xe0, 0x23, 0x11, 0x74, 0x75, 0x19, 0xc4, 0x27, 0x9b, 0xe8, 0xd0, 0xef, 0x08, 0x38, 0x7f,
+ 0x98, 0x1b, 0x21, 0x23, 0x0b, 0x00, 0xa1, 0x4b, 0x82, 0x08, 0x7f, 0xb0, 0x6f, 0x67, 0x09, 0x89,
+ 0x85, 0x7c, 0x99, 0x38, 0x7c, 0x90, 0xcb, 0x44, 0xf5, 0x0f, 0xf2, 0x30, 0x58, 0x6e, 0xb7, 0x83,
+ 0xa1, 0xf0, 0x12, 0x94, 0xca, 0xed, 0xf6, 0xb2, 0x56, 0x95, 0x03, 0xa1, 0xeb, 0xed, 0x76, 0xbd,
+ 0xe3, 0x98, 0xb2, 0x47, 0x29, 0x27, 0x22, 0x93, 0x30, 0x5c, 0x6e, 0xb7, 0x17, 0x3b, 0x2b, 0x4d,
+ 0xb3, 0x21, 0xe5, 0x55, 0xe2, 0x99, 0xe7, 0xda, 0xed, 0x7a, 0x1b, 0x31, 0xf1, 0xe4, 0x5a, 0xd1,
+ 0x32, 0xe4, 0xcb, 0x18, 0x34, 0x48, 0xa4, 0xf5, 0xe1, 0x89, 0x43, 0xd4, 0x20, 0x04, 0x7a, 0xd8,
+ 0xb6, 0x5b, 0x01, 0x11, 0x0f, 0x15, 0x7f, 0xd5, 0x0f, 0xb8, 0xcf, 0x2a, 0x4a, 0xa4, 0xef, 0x09,
+ 0x59, 0x92, 0xcf, 0x40, 0x5f, 0xb9, 0xdd, 0x96, 0x6e, 0xab, 0xd0, 0x25, 0x89, 0x95, 0x8a, 0x67,
+ 0x4e, 0x13, 0x64, 0x57, 0xde, 0x86, 0x91, 0x68, 0x65, 0xfb, 0x0a, 0x35, 0xff, 0xbd, 0x1c, 0x7e,
+ 0xd0, 0x09, 0xf7, 0x88, 0x7e, 0x05, 0x0a, 0xe5, 0x76, 0x5b, 0xcc, 0x47, 0xe7, 0x53, 0xfa, 0x23,
+ 0xfe, 0x80, 0xba, 0xdc, 0x6e, 0xfb, 0x9f, 0x7e, 0xc2, 0x9f, 0x56, 0x1c, 0xe8, 0xd3, 0xbf, 0xc5,
+ 0x3f, 0xfd, 0x64, 0x3f, 0x7b, 0x50, 0x7f, 0xa3, 0x00, 0xe7, 0xca, 0xed, 0xf6, 0x59, 0x88, 0xfa,
+ 0xa3, 0x7a, 0xa6, 0xfd, 0x32, 0x80, 0x34, 0x3d, 0xf6, 0x05, 0x0f, 0xbf, 0x06, 0xa5, 0xa9, 0x51,
+ 0xc9, 0x69, 0x12, 0x91, 0xaf, 0x7e, 0xfd, 0xfb, 0x52, 0xbf, 0xaf, 0x14, 0x70, 0x2a, 0x3e, 0xe9,
+ 0x21, 0xa7, 0x3e, 0x2e, 0xdd, 0x26, 0xfa, 0xa0, 0xb4, 0xaf, 0x3e, 0xf8, 0x07, 0x91, 0xc1, 0x83,
+ 0x21, 0xcf, 0xcf, 0x7a, 0xa1, 0xf7, 0x50, 0x66, 0xf1, 0x88, 0x2c, 0x4c, 0x11, 0x07, 0xc7, 0x4f,
+ 0xc3, 0x24, 0xa2, 0x32, 0x35, 0x18, 0xaa, 0x6e, 0x1a, 0x5a, 0x8c, 0xd6, 0xef, 0xc3, 0xbe, 0x7d,
+ 0xf5, 0xe1, 0x76, 0x1e, 0x5f, 0x5e, 0x07, 0x51, 0x9d, 0x0e, 0xbf, 0xbb, 0xb8, 0x0d, 0xc0, 0x3d,
+ 0x0f, 0x02, 0xa7, 0xe8, 0x61, 0x1e, 0xc0, 0x85, 0x67, 0x67, 0x12, 0x01, 0x5c, 0x42, 0x92, 0xc0,
+ 0xbf, 0xaa, 0x90, 0xea, 0x5f, 0x75, 0x13, 0xfa, 0x35, 0x7d, 0xf3, 0xbd, 0x0e, 0x75, 0xb6, 0x84,
+ 0x39, 0xc3, 0x83, 0x26, 0xea, 0x9b, 0xf5, 0x1f, 0x66, 0x40, 0x2d, 0x40, 0x13, 0x35, 0x78, 0xba,
+ 0x2f, 0x79, 0x84, 0xf0, 0x33, 0xf2, 0xe0, 0xc1, 0xfe, 0x41, 0x14, 0x9d, 0xbc, 0x09, 0x85, 0xf2,
+ 0xa3, 0x9a, 0x90, 0x6c, 0xd0, 0xb5, 0xe5, 0x47, 0x35, 0x21, 0xaf, 0xcc, 0xb2, 0x8f, 0x6a, 0xea,
+ 0x57, 0xf2, 0x40, 0x92, 0x94, 0xe4, 0x35, 0x18, 0x40, 0xe8, 0x1a, 0xd3, 0x19, 0x39, 0xad, 0xe7,
+ 0xa6, 0x5b, 0x77, 0x10, 0x1a, 0x31, 0xee, 0x7c, 0x52, 0xf2, 0x06, 0x26, 0x4e, 0x16, 0x89, 0xe5,
+ 0x22, 0x69, 0x3d, 0x37, 0x5d, 0x3f, 0xd5, 0x70, 0x2c, 0x6f, 0xb2, 0x20, 0x46, 0xbb, 0xf0, 0x51,
+ 0x6d, 0xc6, 0x76, 0x3d, 0x21, 0x6a, 0x6e, 0x17, 0x6e, 0xba, 0x98, 0x4f, 0x36, 0x62, 0x17, 0x72,
+ 0x32, 0xcc, 0x89, 0xf5, 0xa8, 0xc6, 0x1f, 0xb9, 0x18, 0x9a, 0xdd, 0xf4, 0x0d, 0x4a, 0x9e, 0x13,
+ 0x6b, 0xd3, 0xad, 0xf3, 0x07, 0x32, 0x06, 0x66, 0x6c, 0x8e, 0xe4, 0xc4, 0x8a, 0x94, 0x52, 0x7f,
+ 0xaa, 0x1f, 0x46, 0x2b, 0xba, 0xa7, 0xaf, 0xe8, 0x2e, 0x95, 0x76, 0xd3, 0xe7, 0x7c, 0x98, 0xff,
+ 0x39, 0x92, 0x1c, 0x8c, 0x95, 0x94, 0xaf, 0x89, 0x17, 0x20, 0x6f, 0x85, 0x7c, 0x83, 0x8c, 0xa5,
+ 0x72, 0x0a, 0xb4, 0x95, 0x7a, 0x5b, 0x80, 0xb5, 0x04, 0x21, 0x79, 0x11, 0x06, 0x7d, 0x18, 0xdb,
+ 0x00, 0x14, 0x42, 0x9d, 0x31, 0x56, 0x98, 0xfd, 0xaf, 0xc9, 0x68, 0xf2, 0x06, 0x0c, 0xf9, 0x3f,
+ 0x25, 0xd3, 0x9a, 0xe7, 0x73, 0x5b, 0x49, 0xec, 0x9e, 0x64, 0x52, 0xb9, 0x28, 0xce, 0x6f, 0xbd,
+ 0x91, 0xa2, 0xb1, 0x94, 0x69, 0x11, 0x52, 0xf2, 0xc3, 0x30, 0xe2, 0xff, 0x16, 0x1b, 0x06, 0x9e,
+ 0x5d, 0xee, 0xc5, 0x20, 0x21, 0x74, 0x4c, 0xac, 0xb7, 0xa2, 0xe4, 0x7c, 0xeb, 0xf0, 0xb4, 0x9f,
+ 0x05, 0xcc, 0x58, 0x49, 0xee, 0x1c, 0x62, 0x15, 0x90, 0x2a, 0x8c, 0xf9, 0x90, 0x50, 0x43, 0xfb,
+ 0xc2, 0x1d, 0xa3, 0xb1, 0x52, 0x4f, 0x55, 0xd2, 0x64, 0x29, 0xd2, 0x84, 0xab, 0x11, 0xa0, 0xe1,
+ 0xae, 0x9b, 0xab, 0x9e, 0xd8, 0xee, 0x89, 0x08, 0xc6, 0x22, 0xed, 0x63, 0xc0, 0x95, 0xd3, 0xf8,
+ 0xf9, 0x5b, 0xa3, 0xb9, 0xa5, 0xba, 0x72, 0x23, 0x35, 0xb8, 0xe0, 0xe3, 0xef, 0x4d, 0x2e, 0x2e,
+ 0x3a, 0xf6, 0x07, 0xb4, 0xe1, 0x55, 0x2b, 0x62, 0xbb, 0x8c, 0x91, 0xed, 0x8c, 0x95, 0xfa, 0x5a,
+ 0xa3, 0xcd, 0x94, 0x82, 0xe1, 0xa2, 0xcc, 0x53, 0x0b, 0x93, 0x87, 0x70, 0x51, 0x82, 0x4b, 0xc9,
+ 0xa5, 0x21, 0xdc, 0xcf, 0x0b, 0xae, 0xe9, 0xf9, 0xa5, 0xd3, 0x8b, 0x93, 0xb7, 0x61, 0xd8, 0x47,
+ 0xf0, 0x5b, 0xc4, 0x41, 0xbc, 0x45, 0xc4, 0x21, 0x69, 0xac, 0xd4, 0xe3, 0x6f, 0x31, 0xa3, 0xc4,
+ 0xb2, 0x46, 0x61, 0x3e, 0xfe, 0xa1, 0x88, 0x46, 0x79, 0x5b, 0xed, 0x54, 0x65, 0xc4, 0x1c, 0xfd,
+ 0xef, 0x86, 0x1a, 0xb5, 0xe0, 0x98, 0x6b, 0x26, 0xdf, 0x49, 0xfb, 0xcf, 0x2f, 0x57, 0xea, 0x36,
+ 0x02, 0xd3, 0xf4, 0x83, 0x93, 0x5f, 0x29, 0xc3, 0xf9, 0x14, 0x1d, 0xdb, 0xd7, 0x8e, 0xf1, 0xab,
+ 0xf9, 0xb0, 0x11, 0x27, 0x7c, 0xdb, 0x38, 0x01, 0xfd, 0xfe, 0x97, 0x08, 0xe3, 0x41, 0xc9, 0x1a,
+ 0x9a, 0x71, 0x1e, 0x3e, 0x3e, 0x22, 0x8e, 0x13, 0xbe, 0x95, 0x3c, 0x0a, 0x71, 0x7c, 0x3b, 0x17,
+ 0x8a, 0xe3, 0x84, 0x6f, 0x2f, 0x7f, 0xb2, 0x18, 0xce, 0x49, 0x67, 0x7b, 0xcc, 0xa3, 0x32, 0x93,
+ 0x43, 0x3f, 0xd8, 0xd2, 0x3e, 0x9e, 0x41, 0xca, 0xaa, 0xd9, 0x77, 0x30, 0xd5, 0x24, 0x6f, 0xc3,
+ 0xe0, 0xa2, 0xed, 0x7a, 0x6b, 0x0e, 0x75, 0x17, 0x83, 0x08, 0xfc, 0xf8, 0x84, 0xb6, 0x2d, 0xc0,
+ 0xf5, 0x76, 0x64, 0xf6, 0x97, 0xc9, 0xd5, 0x7f, 0x5c, 0x48, 0x68, 0x03, 0x37, 0x5c, 0x4f, 0xa4,
+ 0x36, 0x1c, 0xc1, 0x50, 0x27, 0x77, 0xc2, 0x55, 0x90, 0x5b, 0xf8, 0xbd, 0x52, 0x78, 0xc1, 0x15,
+ 0x61, 0xe0, 0x47, 0x49, 0xc8, 0x0f, 0xc0, 0xe5, 0x08, 0x60, 0x51, 0x77, 0xf4, 0x16, 0xf5, 0xc2,
+ 0x6c, 0x87, 0x18, 0x30, 0xca, 0x2f, 0x5d, 0x6f, 0x07, 0x68, 0x39, 0x83, 0x62, 0x06, 0x07, 0x49,
+ 0xb5, 0xfa, 0xf6, 0xe1, 0x62, 0xfd, 0xb3, 0x85, 0xd0, 0xd0, 0x89, 0x06, 0x7e, 0xd5, 0xa8, 0xdb,
+ 0x69, 0x7a, 0xa7, 0xb7, 0x83, 0x0f, 0x96, 0x56, 0x63, 0x06, 0xce, 0x95, 0x57, 0x57, 0x69, 0xc3,
+ 0xf3, 0xe3, 0x59, 0xbb, 0x22, 0xd4, 0x1f, 0xdf, 0x78, 0x08, 0x94, 0x88, 0x4f, 0x1c, 0xc9, 0xcb,
+ 0x1f, 0x2b, 0xa6, 0xfe, 0x93, 0x22, 0x28, 0x81, 0xe1, 0x1f, 0x3c, 0x12, 0x3b, 0xc6, 0x45, 0xf6,
+ 0x63, 0xd1, 0x2b, 0x26, 0x8c, 0x85, 0xc2, 0xa8, 0x75, 0x5a, 0x2d, 0x1d, 0x87, 0x1e, 0xdb, 0x58,
+ 0x8c, 0xc7, 0x99, 0x85, 0x84, 0x7c, 0x2f, 0x71, 0x45, 0xec, 0x25, 0x48, 0xf8, 0x08, 0xaf, 0xee,
+ 0x72, 0x16, 0x5a, 0x92, 0x2b, 0xf9, 0x5a, 0x0e, 0x2e, 0xf8, 0x9d, 0xb2, 0xb0, 0xc2, 0x8c, 0xea,
+ 0x49, 0xbb, 0x63, 0x79, 0xfe, 0x3e, 0xe6, 0xcd, 0xec, 0xea, 0x78, 0x27, 0xdd, 0x4a, 0x2b, 0xcc,
+ 0x5b, 0x12, 0x04, 0xb5, 0x08, 0x14, 0xc2, 0x46, 0x9a, 0x7a, 0x03, 0x89, 0xb4, 0xd4, 0x7a, 0xaf,
+ 0xdc, 0x83, 0xa7, 0x32, 0x59, 0xee, 0x66, 0xc4, 0xf6, 0xca, 0x46, 0xec, 0x7f, 0x97, 0x0b, 0x27,
+ 0xa2, 0x98, 0x90, 0xc8, 0x2d, 0x80, 0x10, 0x24, 0xb6, 0xb5, 0x23, 0x3b, 0xdb, 0xe3, 0x10, 0x0a,
+ 0x4d, 0x93, 0x28, 0xc8, 0x02, 0x94, 0x84, 0x58, 0x78, 0x66, 0xe1, 0x4f, 0xef, 0xd2, 0x0b, 0xb7,
+ 0x64, 0x39, 0xe0, 0x96, 0x55, 0x7c, 0xb3, 0x60, 0x73, 0xe5, 0x0d, 0x18, 0x3c, 0xe8, 0x77, 0x7d,
+ 0xad, 0x00, 0x44, 0xde, 0x83, 0x1e, 0xa3, 0x81, 0x7e, 0x82, 0xa7, 0xb0, 0x1b, 0xd0, 0xcf, 0x3e,
+ 0x01, 0x73, 0x6d, 0x48, 0xb1, 0x75, 0x3b, 0x02, 0xa6, 0x05, 0xd8, 0x30, 0xb0, 0x55, 0x5f, 0x7a,
+ 0x60, 0x2b, 0xf5, 0x67, 0x0a, 0x70, 0x49, 0xee, 0x90, 0x0a, 0xc5, 0x70, 0xfd, 0x67, 0x9d, 0xf2,
+ 0x11, 0x76, 0x8a, 0x0a, 0x25, 0xbe, 0xf5, 0x10, 0x79, 0x13, 0xf8, 0xb1, 0x10, 0x42, 0x34, 0x81,
+ 0x51, 0xff, 0xe7, 0x3c, 0x0c, 0x07, 0xe6, 0x9d, 0xee, 0xb8, 0xa7, 0xb8, 0x3b, 0x3e, 0x0b, 0xc3,
+ 0x18, 0x9a, 0xa8, 0x45, 0x2d, 0x1e, 0xbe, 0xa7, 0x57, 0x4a, 0x74, 0xe2, 0x23, 0x44, 0x4e, 0xab,
+ 0x08, 0x21, 0xd3, 0x7e, 0x6e, 0xf9, 0x49, 0x01, 0xa3, 0xb8, 0xd9, 0xc7, 0xe1, 0xea, 0x5f, 0x2e,
+ 0xc0, 0x90, 0x2f, 0xe5, 0x09, 0xf3, 0xa4, 0xde, 0xf3, 0x1c, 0xaf, 0x90, 0x6f, 0x03, 0x2c, 0xda,
+ 0x8e, 0xa7, 0x37, 0xe7, 0x43, 0xcd, 0xc7, 0x03, 0xd2, 0x36, 0x42, 0x79, 0x19, 0x89, 0x04, 0xd7,
+ 0xaf, 0xd0, 0xac, 0xe6, 0x13, 0x13, 0x5f, 0xbf, 0x02, 0xa8, 0x26, 0x51, 0xa8, 0x7f, 0x37, 0x0f,
+ 0xe7, 0xfc, 0x4e, 0x9a, 0x7a, 0x42, 0x1b, 0x9d, 0xd3, 0x3c, 0x37, 0x45, 0xa5, 0xdd, 0xbb, 0xab,
+ 0xb4, 0xd5, 0xff, 0x53, 0x9a, 0x48, 0x26, 0x9b, 0xf6, 0xd9, 0x44, 0xf2, 0xc7, 0xa1, 0xe3, 0xea,
+ 0x8f, 0x16, 0xe0, 0x82, 0x2f, 0xf5, 0xe9, 0x8e, 0x85, 0x47, 0x0b, 0x93, 0x7a, 0xb3, 0x79, 0x9a,
+ 0x77, 0xe3, 0x83, 0xbe, 0x20, 0x16, 0x44, 0xac, 0x3f, 0x91, 0x5f, 0x70, 0x55, 0x80, 0xeb, 0xb6,
+ 0x69, 0x68, 0x32, 0x11, 0x79, 0x17, 0x86, 0xfc, 0x9f, 0x65, 0x67, 0xcd, 0xdf, 0x82, 0xe3, 0x45,
+ 0x41, 0x50, 0x48, 0x77, 0x22, 0x21, 0x0d, 0x22, 0x05, 0xd4, 0xaf, 0xf4, 0xc1, 0x95, 0x47, 0xa6,
+ 0x65, 0xd8, 0x9b, 0xae, 0x9f, 0x9e, 0xf2, 0xc4, 0x1f, 0x94, 0x1d, 0x77, 0x5a, 0xca, 0xf7, 0xe0,
+ 0x62, 0x5c, 0xa4, 0x4e, 0x10, 0x34, 0x5c, 0xf4, 0xce, 0x26, 0x27, 0xa8, 0xfb, 0x89, 0x2a, 0xc5,
+ 0x6d, 0x9b, 0x96, 0x5e, 0x32, 0x9e, 0xe9, 0xb2, 0x6f, 0x2f, 0x99, 0x2e, 0x5f, 0x80, 0x52, 0xc5,
+ 0x6e, 0xe9, 0xa6, 0x1f, 0xdc, 0x06, 0x47, 0x71, 0x50, 0x2f, 0x62, 0x34, 0x41, 0xc1, 0xf8, 0x8b,
+ 0x8a, 0xb1, 0xcb, 0x06, 0x42, 0xfe, 0x7e, 0x01, 0x66, 0xa5, 0x69, 0x32, 0x11, 0xb1, 0x61, 0x58,
+ 0x54, 0x27, 0xee, 0xc6, 0x00, 0x37, 0x4f, 0xaf, 0xfa, 0x32, 0xca, 0x56, 0xab, 0x5b, 0x91, 0x72,
+ 0x7c, 0x1b, 0xc5, 0x13, 0x70, 0x8a, 0x8f, 0xe1, 0xb7, 0x64, 0x5a, 0x94, 0xbf, 0x24, 0x04, 0x9c,
+ 0x64, 0x06, 0x93, 0x42, 0xc0, 0x59, 0x46, 0x26, 0x22, 0x53, 0x30, 0x86, 0xa1, 0x9d, 0x83, 0xad,
+ 0x14, 0x53, 0x89, 0x21, 0x34, 0x2a, 0xf1, 0xca, 0x85, 0x47, 0x83, 0x66, 0x1f, 0x57, 0x6f, 0x08,
+ 0xb4, 0x96, 0x2c, 0x41, 0x9e, 0x82, 0xc2, 0xfc, 0x6c, 0x19, 0xef, 0x6a, 0xfa, 0x79, 0x5a, 0x25,
+ 0xab, 0xa9, 0x6b, 0x0c, 0x76, 0xe5, 0xf3, 0x40, 0x92, 0x9f, 0xb3, 0xaf, 0xfb, 0x98, 0xff, 0x52,
+ 0xda, 0xf2, 0x9d, 0x74, 0x8f, 0x9a, 0xa3, 0x98, 0x08, 0x23, 0x19, 0xcd, 0x7a, 0x3f, 0xca, 0x8c,
+ 0x66, 0xa5, 0x23, 0xcd, 0x68, 0xa6, 0xfe, 0x4a, 0x0e, 0xc6, 0x12, 0xe1, 0xcf, 0xc9, 0x2b, 0x00,
+ 0x1c, 0x22, 0x85, 0x99, 0xc4, 0xb8, 0x2d, 0x61, 0x48, 0x74, 0xb1, 0x3c, 0x86, 0x64, 0xe4, 0x36,
+ 0xf4, 0xf3, 0x5f, 0x22, 0x34, 0x54, 0xb2, 0x48, 0xa7, 0x63, 0x1a, 0x5a, 0x40, 0x14, 0xd6, 0x82,
+ 0x37, 0x92, 0x85, 0xd4, 0x22, 0xde, 0x56, 0x3b, 0xa8, 0x85, 0x91, 0xa9, 0x3f, 0x95, 0x87, 0xa1,
+ 0xa0, 0xc1, 0x65, 0xe3, 0xb8, 0x74, 0xae, 0x24, 0x22, 0xc9, 0x17, 0x76, 0x8b, 0x24, 0x1f, 0x9b,
+ 0x6f, 0x45, 0xe8, 0xf8, 0xa3, 0x7b, 0x50, 0xf5, 0xf5, 0x3c, 0x9c, 0x0b, 0x6a, 0x3d, 0xc6, 0xcb,
+ 0xaf, 0x8f, 0x91, 0x48, 0xbe, 0x96, 0x03, 0x65, 0xc2, 0x6c, 0x36, 0x4d, 0x6b, 0xad, 0x6a, 0xad,
+ 0xda, 0x4e, 0x0b, 0x27, 0xc4, 0xe3, 0x3b, 0xc2, 0x55, 0xff, 0x54, 0x0e, 0xc6, 0x44, 0x83, 0x26,
+ 0x75, 0xc7, 0x38, 0xbe, 0xf3, 0xb1, 0x78, 0x4b, 0x8e, 0x4f, 0x5f, 0xd4, 0xdf, 0xce, 0x03, 0xcc,
+ 0xda, 0x8d, 0x8d, 0x13, 0xfe, 0x1e, 0xeb, 0x2d, 0x28, 0xf1, 0xf8, 0x5c, 0x42, 0x63, 0xc7, 0xc4,
+ 0xbb, 0x23, 0xf6, 0x69, 0x1c, 0x31, 0x31, 0x2a, 0xe6, 0xe3, 0x12, 0x8f, 0xef, 0xa5, 0xe4, 0x34,
+ 0x51, 0x84, 0x55, 0xca, 0xe8, 0xc4, 0x82, 0x11, 0x54, 0xca, 0x60, 0xd1, 0x4a, 0x77, 0xb6, 0xc7,
+ 0x8b, 0x4d, 0xbb, 0xb1, 0xa1, 0x21, 0xbd, 0xfa, 0xaf, 0x72, 0x5c, 0x76, 0x27, 0xfc, 0x55, 0xa9,
+ 0xff, 0xf9, 0xc5, 0x7d, 0x7e, 0xfe, 0x9f, 0xce, 0xc1, 0x05, 0x8d, 0x36, 0xec, 0xc7, 0xd4, 0xd9,
+ 0x9a, 0xb4, 0x0d, 0x7a, 0x8f, 0x5a, 0xd4, 0x39, 0xae, 0x11, 0xf5, 0xf7, 0x30, 0xf5, 0x46, 0xd8,
+ 0x98, 0x65, 0x97, 0x1a, 0x27, 0x27, 0x2d, 0x8a, 0xfa, 0xeb, 0x7d, 0xa0, 0xa4, 0x5a, 0xbd, 0x27,
+ 0xd6, 0x9c, 0xcb, 0xdc, 0xca, 0x14, 0x8f, 0x6a, 0x2b, 0xd3, 0xbb, 0xbf, 0xad, 0x4c, 0x69, 0xbf,
+ 0x5b, 0x99, 0xbe, 0xbd, 0x6c, 0x65, 0x5a, 0xf1, 0xad, 0x4c, 0x3f, 0x6e, 0x65, 0x5e, 0xe9, 0xba,
+ 0x95, 0x99, 0xb2, 0x8c, 0x03, 0x6e, 0x64, 0x4e, 0x6c, 0xca, 0xde, 0x83, 0xec, 0xc0, 0x6e, 0xb0,
+ 0x49, 0xb1, 0x61, 0x3b, 0x06, 0x35, 0xc4, 0xc6, 0x0b, 0x4f, 0xfd, 0x1d, 0x01, 0xd3, 0x02, 0x6c,
+ 0x22, 0xff, 0xf1, 0xf0, 0x5e, 0xf2, 0x1f, 0x1f, 0xc1, 0xfe, 0xeb, 0xab, 0x79, 0x18, 0x9b, 0xa4,
+ 0x8e, 0xc7, 0x03, 0x80, 0x1e, 0x85, 0x4b, 0x5c, 0x19, 0xce, 0x49, 0x0c, 0xd1, 0x22, 0xcf, 0x87,
+ 0x6e, 0x7e, 0x0d, 0xea, 0x78, 0x71, 0x2f, 0xc1, 0x38, 0x3d, 0xab, 0xde, 0xcf, 0x41, 0x26, 0xc6,
+ 0x6e, 0x50, 0xbd, 0x0f, 0xe7, 0x82, 0x34, 0xc5, 0x2f, 0x2d, 0xa0, 0x97, 0xd2, 0x8a, 0x15, 0xf7,
+ 0x9f, 0x56, 0x4c, 0xfd, 0xe5, 0x1c, 0x5c, 0xd7, 0xa8, 0x45, 0x37, 0xf5, 0x95, 0x26, 0x95, 0x9a,
+ 0x25, 0x56, 0x06, 0x36, 0x6b, 0x98, 0x6e, 0x4b, 0xf7, 0x1a, 0xeb, 0x87, 0x92, 0xd1, 0x34, 0x0c,
+ 0xc9, 0xf3, 0xd7, 0x3e, 0xe6, 0xb6, 0x48, 0x39, 0xf5, 0xd7, 0x8b, 0xd0, 0x37, 0x61, 0x7b, 0xf7,
+ 0xed, 0x43, 0xe6, 0xb9, 0x0b, 0xa7, 0xfc, 0xfc, 0x3e, 0xce, 0x7a, 0x3e, 0x83, 0x95, 0x4b, 0xa1,
+ 0xff, 0xd1, 0x85, 0x74, 0xc5, 0x4e, 0xa4, 0x48, 0xf0, 0xc9, 0xf6, 0x99, 0xe1, 0xee, 0x35, 0x18,
+ 0xc0, 0xe8, 0x2f, 0xd2, 0x69, 0x2c, 0x3a, 0x68, 0x7b, 0x0c, 0x18, 0xaf, 0x23, 0x24, 0x25, 0x3f,
+ 0x10, 0x89, 0x58, 0x5a, 0x3a, 0x7c, 0x46, 0x3c, 0x39, 0x78, 0xe9, 0x2b, 0xfc, 0x22, 0x0f, 0xdb,
+ 0x24, 0x65, 0x0f, 0xc1, 0x53, 0x94, 0x58, 0x93, 0x02, 0xc2, 0x23, 0xcc, 0x56, 0x37, 0x09, 0xc3,
+ 0x13, 0xb6, 0x27, 0x39, 0x03, 0x0f, 0x84, 0xcf, 0x40, 0x99, 0xe4, 0xd3, 0x3d, 0x81, 0xa3, 0x65,
+ 0xd4, 0xef, 0x16, 0x61, 0xc8, 0xff, 0x79, 0x4c, 0xba, 0xf3, 0x12, 0x94, 0x66, 0x6c, 0x29, 0x81,
+ 0x02, 0x3a, 0x10, 0xaf, 0xdb, 0x6e, 0xcc, 0x33, 0x5a, 0x10, 0x31, 0xa9, 0xcf, 0xdb, 0x86, 0xec,
+ 0xfe, 0x8e, 0x52, 0xb7, 0x6c, 0x23, 0xf1, 0x7c, 0x38, 0x20, 0x24, 0xd7, 0xa1, 0x88, 0x2f, 0x07,
+ 0xa4, 0x83, 0xfc, 0xd8, 0x6b, 0x01, 0xc4, 0x4b, 0x5a, 0x59, 0xda, 0xaf, 0x56, 0xf6, 0x1d, 0x54,
+ 0x2b, 0xfb, 0x8f, 0x56, 0x2b, 0xdf, 0x87, 0x21, 0xac, 0xc9, 0xcf, 0xbf, 0xb6, 0xfb, 0xc2, 0xfa,
+ 0x94, 0x58, 0xfb, 0x86, 0x79, 0xbb, 0x45, 0x16, 0x36, 0x5c, 0xf2, 0x22, 0xac, 0x62, 0xba, 0x0b,
+ 0x87, 0xd8, 0x4e, 0xff, 0xe3, 0x1c, 0xf4, 0x2d, 0x5b, 0x1b, 0x96, 0xbd, 0x79, 0x38, 0x8d, 0x7b,
+ 0x05, 0x06, 0x05, 0x1b, 0x69, 0x75, 0xc1, 0x17, 0xe1, 0x1d, 0x0e, 0xae, 0x23, 0x27, 0x4d, 0xa6,
+ 0x22, 0x6f, 0x07, 0x85, 0xf0, 0x71, 0x50, 0x21, 0x4c, 0x41, 0xe2, 0x17, 0x6a, 0x44, 0xb3, 0x26,
+ 0xc8, 0xe4, 0xe4, 0x2a, 0x14, 0x2b, 0xac, 0xa9, 0x52, 0x0c, 0x5e, 0xd6, 0x14, 0x0d, 0xa1, 0xea,
+ 0x57, 0x8b, 0x30, 0x12, 0x3b, 0xf8, 0x7a, 0x01, 0x06, 0xc4, 0xc1, 0x93, 0xe9, 0xa7, 0x71, 0xc0,
+ 0xc7, 0x43, 0x01, 0x50, 0xeb, 0xe7, 0x7f, 0x56, 0x0d, 0xf2, 0x39, 0xe8, 0xb3, 0x5d, 0x5c, 0x14,
+ 0xf1, 0x5b, 0x46, 0xc2, 0x21, 0xb4, 0x50, 0x63, 0x6d, 0xe7, 0x83, 0x43, 0x90, 0xc8, 0x1a, 0x69,
+ 0xbb, 0xf8, 0x69, 0x77, 0x61, 0x40, 0x77, 0x5d, 0xea, 0xd5, 0x3d, 0x7d, 0x4d, 0xce, 0xec, 0x10,
+ 0x00, 0xe5, 0xd1, 0x81, 0xc0, 0x25, 0x7d, 0x8d, 0x7c, 0x1e, 0x86, 0x1b, 0x0e, 0xc5, 0x65, 0x53,
+ 0x6f, 0xb2, 0x56, 0x4a, 0x66, 0x6d, 0x04, 0x21, 0xdf, 0x9f, 0x84, 0x88, 0xaa, 0x41, 0x1e, 0xc2,
+ 0xb0, 0xf8, 0x1c, 0xee, 0xb9, 0x8f, 0x03, 0x6d, 0x24, 0x5c, 0xc6, 0xb8, 0x48, 0xb8, 0xef, 0xbe,
+ 0x78, 0xc0, 0x21, 0x93, 0xcb, 0x7c, 0x0d, 0x89, 0x94, 0x2c, 0x00, 0xd9, 0xa4, 0x2b, 0x75, 0xbd,
+ 0xe3, 0xad, 0xb3, 0xba, 0x78, 0x60, 0x72, 0x91, 0xd0, 0x10, 0x5f, 0x3d, 0x24, 0xb1, 0xf2, 0x63,
+ 0x90, 0x4d, 0xba, 0x52, 0x8e, 0x20, 0xc9, 0x23, 0xb8, 0x98, 0x2c, 0xc2, 0x3e, 0x99, 0x5f, 0x0e,
+ 0x3c, 0xbf, 0xb3, 0x3d, 0x3e, 0x9e, 0x4a, 0x20, 0xb1, 0x3d, 0x9f, 0x60, 0x5b, 0x35, 0xee, 0x17,
+ 0xfb, 0xfb, 0x46, 0xfb, 0xb5, 0x11, 0x56, 0xd6, 0x37, 0x21, 0x4d, 0x43, 0xfd, 0xdd, 0x1c, 0x33,
+ 0x15, 0xd9, 0x07, 0x61, 0x46, 0x67, 0xa6, 0xeb, 0xad, 0x7d, 0xea, 0x7a, 0x2b, 0xcc, 0xbd, 0x58,
+ 0x72, 0xbb, 0xcc, 0xae, 0x9a, 0xc0, 0x92, 0x5b, 0x50, 0x32, 0xe4, 0x53, 0xb3, 0x4b, 0xd1, 0x4e,
+ 0xf0, 0xeb, 0xd1, 0x04, 0x15, 0xb9, 0x01, 0x45, 0xb6, 0x64, 0xc5, 0xb7, 0xcc, 0xb2, 0x75, 0xa1,
+ 0x21, 0x85, 0xfa, 0x23, 0x79, 0x18, 0x92, 0xbe, 0xe6, 0xce, 0xa1, 0x3e, 0xe7, 0xcd, 0xbd, 0x35,
+ 0xd3, 0x77, 0x7a, 0xc1, 0xbd, 0x94, 0xdf, 0xe4, 0xbb, 0x81, 0x28, 0xf6, 0x74, 0x21, 0x25, 0x04,
+ 0xf3, 0x9a, 0xf8, 0xd0, 0xd2, 0xde, 0xb7, 0x8f, 0x8c, 0xfe, 0x7e, 0xb1, 0x3f, 0x3f, 0x5a, 0xb8,
+ 0x5f, 0xec, 0x2f, 0x8e, 0xf6, 0x62, 0x1c, 0x2e, 0x0c, 0x7d, 0xcd, 0xf7, 0xe6, 0xd6, 0xaa, 0xb9,
+ 0x76, 0xc2, 0xdf, 0x8e, 0x1c, 0x6d, 0x8c, 0xb2, 0x98, 0x6c, 0x4e, 0xf8, 0x43, 0x92, 0x8f, 0x54,
+ 0x36, 0x67, 0xb9, 0x1a, 0x85, 0x6c, 0xfe, 0x49, 0x0e, 0x94, 0x54, 0xd9, 0x94, 0x8f, 0xc9, 0x0f,
+ 0xe2, 0xe8, 0x32, 0x36, 0xfe, 0x61, 0x1e, 0xc6, 0xaa, 0x96, 0x47, 0xd7, 0xf8, 0x8e, 0xf1, 0x84,
+ 0x4f, 0x15, 0x0f, 0x60, 0x50, 0xfa, 0x18, 0xd1, 0xe7, 0x4f, 0x07, 0xfb, 0xf1, 0x10, 0x95, 0xc1,
+ 0x49, 0x2e, 0x7d, 0x84, 0x49, 0xde, 0x63, 0x42, 0x3e, 0xe1, 0x73, 0xce, 0xc9, 0x10, 0xf2, 0x09,
+ 0x9f, 0xbc, 0x3e, 0xa6, 0x42, 0xfe, 0xdf, 0x73, 0x70, 0x3e, 0xa5, 0x72, 0x72, 0x1d, 0xfa, 0x6a,
+ 0x9d, 0x15, 0x0c, 0xbb, 0x95, 0x0b, 0x3d, 0x86, 0xdd, 0xce, 0x0a, 0x46, 0xdc, 0xd2, 0x7c, 0x24,
+ 0x59, 0xc2, 0xc7, 0xf5, 0x0b, 0xd5, 0xca, 0xa4, 0x90, 0xaa, 0x2a, 0x85, 0x09, 0x60, 0xe0, 0xb4,
+ 0x2f, 0x0b, 0x1e, 0xe0, 0xdb, 0xa6, 0xd1, 0x88, 0x3d, 0xc0, 0x67, 0x65, 0xc8, 0x0f, 0xc2, 0x40,
+ 0xf9, 0xc3, 0x8e, 0x43, 0x91, 0x2f, 0x97, 0xf8, 0x27, 0x02, 0xbe, 0x3e, 0x22, 0x8d, 0x33, 0x8f,
+ 0x25, 0xc0, 0x28, 0xe2, 0xbc, 0x43, 0x86, 0xea, 0x4f, 0xe5, 0xe0, 0x4a, 0x76, 0xeb, 0xc8, 0x67,
+ 0xa0, 0x8f, 0xed, 0xcc, 0xcb, 0xda, 0xbc, 0xf8, 0x74, 0x9e, 0xdd, 0xd4, 0x6e, 0xd2, 0xba, 0xee,
+ 0xc8, 0xc6, 0xbe, 0x4f, 0x46, 0xde, 0x81, 0xc1, 0xaa, 0xeb, 0x76, 0xa8, 0x53, 0x7b, 0x65, 0x59,
+ 0xab, 0x8a, 0x3d, 0x21, 0xee, 0x39, 0x4c, 0x04, 0xd7, 0xdd, 0x57, 0x62, 0x81, 0xb5, 0x64, 0x7a,
+ 0xf5, 0xc7, 0x73, 0x70, 0xb5, 0xdb, 0x57, 0x91, 0x57, 0xa0, 0x7f, 0x89, 0x5a, 0xba, 0xe5, 0x55,
+ 0x2b, 0xa2, 0x49, 0xb8, 0xc5, 0xf2, 0x10, 0x16, 0xdd, 0x29, 0x04, 0x84, 0xac, 0x10, 0x3f, 0x57,
+ 0x0c, 0x1c, 0x19, 0xf8, 0x19, 0x28, 0xc2, 0x62, 0x85, 0x7c, 0x42, 0xf5, 0xf7, 0xf2, 0x30, 0xb4,
+ 0xd8, 0xec, 0xac, 0x99, 0xd2, 0xc2, 0x71, 0x60, 0x7b, 0xdb, 0xb7, 0x7e, 0xf3, 0xfb, 0xb3, 0x7e,
+ 0xd9, 0x70, 0x73, 0x0e, 0x38, 0xdc, 0xfc, 0x72, 0xe4, 0x6d, 0x28, 0xb5, 0xf1, 0x3b, 0xe2, 0x27,
+ 0xb1, 0xfc, 0xeb, 0xb2, 0x4e, 0x62, 0x79, 0x19, 0x36, 0xbe, 0x1a, 0x87, 0x18, 0x5f, 0x61, 0x59,
+ 0x49, 0xa0, 0xe1, 0x22, 0x71, 0x26, 0xd0, 0x23, 0x11, 0x68, 0xb8, 0x20, 0x9c, 0x09, 0xf4, 0x10,
+ 0x02, 0xfd, 0xf5, 0x3c, 0x8c, 0x44, 0xab, 0x24, 0x9f, 0x81, 0x41, 0x5e, 0x0d, 0x3f, 0x17, 0xca,
+ 0x49, 0x4e, 0xc5, 0x21, 0x58, 0x03, 0xfe, 0x43, 0x1c, 0x70, 0x9d, 0x5b, 0xd7, 0xdd, 0x7a, 0x78,
+ 0x42, 0xc3, 0xef, 0x6f, 0xfb, 0xb9, 0x27, 0x54, 0x0c, 0xa5, 0x8d, 0xac, 0xeb, 0xee, 0x64, 0xf8,
+ 0x9b, 0x4c, 0x01, 0x71, 0x68, 0xc7, 0xa5, 0x51, 0x06, 0x45, 0x64, 0x20, 0x52, 0x4b, 0xc7, 0xb1,
+ 0xda, 0x18, 0x87, 0xc9, 0x6c, 0xbe, 0x14, 0x34, 0x1b, 0x95, 0xa1, 0x77, 0x0f, 0x79, 0xaf, 0x25,
+ 0xfa, 0xf4, 0x63, 0x4e, 0x4e, 0x50, 0xd1, 0x3d, 0x9d, 0x6f, 0xca, 0xfd, 0x0e, 0x50, 0xbf, 0x63,
+ 0x41, 0xef, 0x82, 0x45, 0x17, 0x56, 0xc9, 0xcb, 0x30, 0xc0, 0x14, 0x66, 0xd6, 0x66, 0x7d, 0x99,
+ 0x13, 0xfe, 0x13, 0x92, 0x26, 0x21, 0x62, 0xa6, 0x47, 0x0b, 0xa9, 0xc8, 0x5d, 0x9e, 0x3b, 0x9f,
+ 0xcf, 0xb1, 0x42, 0xfb, 0x88, 0x5c, 0x86, 0x63, 0x66, 0x7a, 0x34, 0x89, 0xce, 0x2f, 0x25, 0x1e,
+ 0xe8, 0x14, 0x92, 0xa5, 0x38, 0xc6, 0x2f, 0x25, 0xc6, 0xc7, 0x6c, 0x5a, 0x5a, 0xfa, 0xf8, 0xee,
+ 0x29, 0x49, 0x31, 0xd3, 0xa3, 0xa5, 0xa7, 0xb3, 0x1f, 0x92, 0x1d, 0x4a, 0xe3, 0x4e, 0x1f, 0x32,
+ 0x6e, 0xa6, 0x47, 0x8b, 0xd0, 0x92, 0xd7, 0x61, 0x50, 0xfc, 0xbe, 0x6f, 0x8b, 0x1b, 0x65, 0x29,
+ 0x16, 0x91, 0x84, 0x9a, 0xe9, 0xd1, 0x64, 0x4a, 0xa9, 0xd2, 0x45, 0xc7, 0xb4, 0x3c, 0xf1, 0x46,
+ 0x39, 0x5e, 0x29, 0xe2, 0xa4, 0x4a, 0xf1, 0x37, 0x79, 0x07, 0x86, 0x83, 0x20, 0x4f, 0x1f, 0xd0,
+ 0x86, 0x27, 0x0e, 0xbf, 0x2f, 0xc6, 0x0a, 0x73, 0xe4, 0x4c, 0x8f, 0x16, 0xa5, 0x26, 0x37, 0xa0,
+ 0xa4, 0x51, 0xd7, 0xfc, 0xd0, 0xbf, 0x2e, 0x1e, 0x91, 0xc6, 0xb9, 0xf9, 0x21, 0x93, 0x92, 0xc0,
+ 0xb3, 0xde, 0x09, 0xef, 0xa7, 0xc5, 0x51, 0x35, 0x89, 0xd5, 0x32, 0x65, 0x19, 0xac, 0x77, 0x24,
+ 0xe7, 0x84, 0xcf, 0x87, 0xa1, 0xaf, 0x44, 0xba, 0xcd, 0xc1, 0x78, 0x8c, 0x01, 0x19, 0x3b, 0xd3,
+ 0xa3, 0xc5, 0xe8, 0x25, 0xa9, 0x56, 0x4c, 0x77, 0x43, 0x44, 0x1b, 0x8d, 0x4b, 0x95, 0xa1, 0x24,
+ 0xa9, 0xb2, 0x9f, 0x52, 0xd5, 0xf3, 0xd4, 0xdb, 0xb4, 0x9d, 0x0d, 0x11, 0x5b, 0x34, 0x5e, 0xb5,
+ 0xc0, 0x4a, 0x55, 0x0b, 0x88, 0x5c, 0x35, 0x1b, 0x70, 0x23, 0xe9, 0x55, 0xeb, 0x9e, 0x2e, 0x57,
+ 0xcd, 0x4f, 0xe2, 0xfc, 0x4e, 0x9a, 0xa5, 0xfa, 0x63, 0x9e, 0xf5, 0x3c, 0xd9, 0xa1, 0x88, 0x93,
+ 0x3a, 0x14, 0x7f, 0xb3, 0x4a, 0xa5, 0xcc, 0xd6, 0x22, 0xad, 0x79, 0x50, 0xa9, 0x84, 0x62, 0x95,
+ 0xca, 0x39, 0xb0, 0xef, 0xca, 0x09, 0x9f, 0x95, 0xb1, 0x68, 0x07, 0x85, 0x18, 0xd6, 0x41, 0x52,
+ 0x62, 0xe8, 0x71, 0x4c, 0x26, 0xab, 0x10, 0x24, 0x1f, 0x0c, 0x5a, 0x38, 0xb9, 0x38, 0xd3, 0xa3,
+ 0x61, 0x9a, 0x59, 0x95, 0xa7, 0x29, 0x56, 0xce, 0x23, 0xc5, 0x90, 0x4f, 0xc1, 0x60, 0x33, 0x3d,
+ 0x1a, 0x4f, 0x61, 0xfc, 0xb2, 0x94, 0x10, 0x50, 0xb9, 0x10, 0x9d, 0x22, 0x02, 0x04, 0x9b, 0x22,
+ 0xc2, 0xb4, 0x81, 0xd3, 0xc9, 0xb4, 0x77, 0xca, 0xc5, 0xe8, 0x52, 0x13, 0xc7, 0xcf, 0xf4, 0x68,
+ 0xc9, 0x54, 0x79, 0xaf, 0x47, 0x32, 0xc1, 0x29, 0x97, 0x62, 0x01, 0xc0, 0x42, 0x14, 0x13, 0x97,
+ 0x9c, 0x33, 0x6e, 0x21, 0x96, 0xf3, 0x5c, 0x4c, 0x56, 0x97, 0xa3, 0x1b, 0x97, 0x14, 0x92, 0x99,
+ 0x1e, 0x2d, 0xad, 0x24, 0x99, 0x4c, 0xe4, 0x63, 0x53, 0x94, 0xa8, 0x6f, 0x4c, 0x0c, 0x3d, 0xd3,
+ 0xa3, 0x25, 0x32, 0xb8, 0xdd, 0x95, 0x13, 0xa1, 0x29, 0x4f, 0x45, 0x3b, 0x31, 0xc4, 0xb0, 0x4e,
+ 0x94, 0x12, 0xa6, 0xdd, 0x95, 0x93, 0x63, 0x29, 0x57, 0x92, 0xa5, 0xc2, 0x99, 0x53, 0x4a, 0xa2,
+ 0xa5, 0xa5, 0xe7, 0xfb, 0x51, 0x9e, 0x16, 0xf9, 0x5a, 0x45, 0xf9, 0x34, 0x9a, 0x99, 0x1e, 0x2d,
+ 0x3d, 0x57, 0x90, 0x96, 0x9e, 0x28, 0x47, 0xb9, 0xda, 0x8d, 0x67, 0xd0, 0xba, 0xf4, 0x24, 0x3b,
+ 0x7a, 0x97, 0xb4, 0x25, 0xca, 0x33, 0xd1, 0xe8, 0xc3, 0x99, 0x84, 0x33, 0x3d, 0x5a, 0x97, 0xe4,
+ 0x27, 0xcb, 0x19, 0x39, 0x44, 0x94, 0x6b, 0xd1, 0x74, 0xcd, 0xa9, 0x44, 0x33, 0x3d, 0x5a, 0x46,
+ 0x06, 0x92, 0xe5, 0x8c, 0x14, 0x13, 0xca, 0x78, 0x57, 0xb6, 0x81, 0x3c, 0x32, 0x12, 0x54, 0x2c,
+ 0xa4, 0x66, 0x67, 0x50, 0x9e, 0x8d, 0xaa, 0x6e, 0x0a, 0x09, 0x53, 0xdd, 0xb4, 0xbc, 0x0e, 0x0b,
+ 0xa9, 0xe9, 0x04, 0x94, 0xe7, 0xba, 0x30, 0x0c, 0xda, 0x98, 0x9a, 0x88, 0x60, 0x21, 0x35, 0x9e,
+ 0xbf, 0xa2, 0x46, 0x19, 0xa6, 0x90, 0x30, 0x86, 0x69, 0x99, 0x00, 0x16, 0x52, 0xc3, 0xbe, 0x2b,
+ 0xcf, 0x77, 0x61, 0x18, 0xb6, 0x30, 0x2d, 0x60, 0xfc, 0xeb, 0x91, 0xb8, 0xeb, 0xca, 0x27, 0xa2,
+ 0xf3, 0x86, 0x84, 0x62, 0xf3, 0x86, 0x1c, 0xa1, 0x7d, 0x32, 0x11, 0x59, 0x56, 0xf9, 0x64, 0x74,
+ 0x98, 0xc7, 0xd0, 0x6c, 0x98, 0xc7, 0x63, 0xd1, 0x4e, 0x26, 0x22, 0x6c, 0x2a, 0xd7, 0xb3, 0x98,
+ 0x20, 0x3a, 0xca, 0x84, 0xc7, 0xe4, 0xac, 0xa6, 0x84, 0x78, 0x54, 0x3e, 0x15, 0xf5, 0xeb, 0x4e,
+ 0x10, 0xcc, 0xf4, 0x68, 0x29, 0x81, 0x21, 0xb5, 0xf4, 0x78, 0x46, 0xca, 0x8d, 0xe8, 0xb0, 0x4d,
+ 0xa3, 0x61, 0xc3, 0x36, 0x35, 0x16, 0xd2, 0x6c, 0xda, 0xe3, 0x13, 0xe5, 0x66, 0xd4, 0x30, 0x4b,
+ 0x52, 0x30, 0xc3, 0x2c, 0xe5, 0xd1, 0x8a, 0x96, 0x1e, 0x63, 0x47, 0x79, 0xa1, 0x6b, 0x0b, 0x91,
+ 0x26, 0xa5, 0x85, 0x3c, 0xe4, 0x4c, 0x68, 0x3b, 0x2d, 0xb7, 0x9b, 0xb6, 0x6e, 0x28, 0x9f, 0x4e,
+ 0xb5, 0x9d, 0x38, 0x52, 0xb2, 0x9d, 0x38, 0x80, 0xad, 0xf2, 0xf2, 0x1b, 0x07, 0xe5, 0xc5, 0xe8,
+ 0x2a, 0x2f, 0xe3, 0xd8, 0x2a, 0x1f, 0x79, 0x0f, 0x31, 0x99, 0x78, 0x0f, 0xa0, 0xbc, 0x14, 0x55,
+ 0x80, 0x18, 0x9a, 0x29, 0x40, 0xfc, 0x05, 0xc1, 0x97, 0xb3, 0x3d, 0xe8, 0x95, 0x5b, 0xc8, 0xed,
+ 0x59, 0x9f, 0x5b, 0x16, 0xdd, 0x4c, 0x8f, 0x96, 0xed, 0x85, 0x5f, 0x4d, 0x71, 0x88, 0x57, 0x6e,
+ 0x47, 0x15, 0x2c, 0x41, 0xc0, 0x14, 0x2c, 0xe9, 0x46, 0x5f, 0x4d, 0xf1, 0x68, 0x57, 0x3e, 0x93,
+ 0xc9, 0x2a, 0xf8, 0xe6, 0x14, 0x3f, 0xf8, 0xbb, 0xb2, 0x4b, 0xba, 0xf2, 0x72, 0x74, 0xb1, 0x0b,
+ 0x31, 0x6c, 0xb1, 0x93, 0x5c, 0xd7, 0xef, 0xca, 0xce, 0xd8, 0xca, 0x9d, 0x64, 0xa9, 0x70, 0x89,
+ 0x94, 0x9c, 0xb6, 0xb5, 0x74, 0x1f, 0x66, 0xe5, 0x95, 0xa8, 0xd6, 0xa5, 0xd1, 0x30, 0xad, 0x4b,
+ 0xf5, 0x7f, 0x9e, 0x4e, 0xba, 0x22, 0x2b, 0x77, 0xe3, 0x9b, 0xec, 0x28, 0x9e, 0x59, 0x3e, 0x09,
+ 0xf7, 0xe5, 0xcf, 0xc7, 0x83, 0xed, 0x29, 0xaf, 0xc6, 0xae, 0x7d, 0x23, 0x58, 0x66, 0xdf, 0xc6,
+ 0x82, 0xf3, 0x7d, 0x3e, 0x1e, 0x9f, 0x4e, 0x79, 0x2d, 0x9d, 0x43, 0xa0, 0x2b, 0xf1, 0x78, 0x76,
+ 0x9f, 0x8f, 0x87, 0x74, 0x53, 0x5e, 0x4f, 0xe7, 0x10, 0x48, 0x37, 0x1e, 0x02, 0xee, 0x65, 0x29,
+ 0xc8, 0xbc, 0xf2, 0xd9, 0xa8, 0xe9, 0x18, 0x20, 0x98, 0xe9, 0x18, 0x86, 0xa2, 0x7f, 0x59, 0x0a,
+ 0xce, 0xae, 0xbc, 0x91, 0x28, 0x12, 0x34, 0x56, 0x0a, 0xe1, 0xfe, 0xb2, 0x14, 0xd4, 0x5c, 0x79,
+ 0x33, 0x51, 0x24, 0x68, 0x9d, 0x14, 0xfa, 0xdc, 0xe8, 0xf6, 0x7e, 0x55, 0x79, 0x2b, 0x7a, 0x18,
+ 0x9c, 0x4d, 0x39, 0xd3, 0xa3, 0x75, 0x7b, 0x07, 0xfb, 0xe5, 0x6c, 0xc7, 0x6e, 0xe5, 0xed, 0xe8,
+ 0x10, 0xce, 0xa2, 0x63, 0x43, 0x38, 0xd3, 0x39, 0xfc, 0x9d, 0x58, 0x2c, 0x0b, 0xe5, 0x9d, 0xe8,
+ 0x14, 0x17, 0x41, 0xb2, 0x29, 0x2e, 0x1e, 0xf9, 0x22, 0x12, 0xa4, 0x41, 0xf9, 0x5c, 0x74, 0x8a,
+ 0x93, 0x71, 0x6c, 0x8a, 0x8b, 0x04, 0x74, 0x98, 0x4c, 0xc4, 0x0e, 0x50, 0xde, 0x8d, 0x4e, 0x71,
+ 0x31, 0x34, 0x9b, 0xe2, 0xe2, 0xd1, 0x06, 0xde, 0x89, 0x3d, 0xa1, 0x57, 0x3e, 0x9f, 0xde, 0x7e,
+ 0x44, 0xca, 0xed, 0xe7, 0x0f, 0xee, 0xb5, 0xf4, 0xb7, 0xe0, 0x4a, 0x39, 0x3a, 0x7e, 0xd3, 0x68,
+ 0xd8, 0xf8, 0x4d, 0x7d, 0x47, 0x1e, 0xdf, 0x38, 0x08, 0xad, 0x9a, 0xe8, 0xb2, 0x71, 0x08, 0x4d,
+ 0x91, 0x14, 0x70, 0x64, 0x8f, 0xcc, 0x37, 0x42, 0x93, 0x19, 0x7b, 0x64, 0x7f, 0x1b, 0x14, 0xa3,
+ 0x67, 0xb3, 0x6b, 0xc2, 0xcf, 0x58, 0xa9, 0x44, 0x67, 0xd7, 0x04, 0x01, 0x9b, 0x5d, 0x93, 0xde,
+ 0xc9, 0xd3, 0x30, 0x2a, 0xb4, 0x88, 0xbb, 0x4f, 0x9b, 0xd6, 0x9a, 0x32, 0x15, 0x7b, 0x6f, 0x19,
+ 0xc3, 0xb3, 0xd9, 0x29, 0x0e, 0xc3, 0xf5, 0x9a, 0xc3, 0x26, 0x9b, 0x66, 0x7b, 0xc5, 0xd6, 0x1d,
+ 0xa3, 0x46, 0x2d, 0x43, 0x99, 0x8e, 0xad, 0xd7, 0x29, 0x34, 0xb8, 0x5e, 0xa7, 0xc0, 0x31, 0x44,
+ 0x5c, 0x0c, 0xae, 0xd1, 0x06, 0x35, 0x1f, 0x53, 0xe5, 0x1e, 0xb2, 0x1d, 0xcf, 0x62, 0x2b, 0xc8,
+ 0x66, 0x7a, 0xb4, 0x2c, 0x0e, 0xcc, 0x56, 0x9f, 0xdb, 0xaa, 0xbd, 0x37, 0x1b, 0x84, 0x1f, 0x58,
+ 0x74, 0x68, 0x5b, 0x77, 0xa8, 0x32, 0x13, 0xb5, 0xd5, 0x53, 0x89, 0x98, 0xad, 0x9e, 0x8a, 0x48,
+ 0xb2, 0xf5, 0xc7, 0x42, 0xb5, 0x1b, 0xdb, 0x70, 0x44, 0xa4, 0x97, 0x66, 0xb3, 0x53, 0x14, 0xc1,
+ 0x04, 0x34, 0x6b, 0x5b, 0x6b, 0x78, 0x52, 0x71, 0x3f, 0x3a, 0x3b, 0x65, 0x53, 0xb2, 0xd9, 0x29,
+ 0x1b, 0xcb, 0x54, 0x3d, 0x8a, 0xe5, 0x63, 0xf0, 0x41, 0x54, 0xd5, 0x53, 0x48, 0x98, 0xaa, 0xa7,
+ 0x80, 0x93, 0x0c, 0x35, 0xea, 0x52, 0x4f, 0x99, 0xed, 0xc6, 0x10, 0x49, 0x92, 0x0c, 0x11, 0x9c,
+ 0x64, 0x38, 0x4d, 0xbd, 0xc6, 0xba, 0x32, 0xd7, 0x8d, 0x21, 0x92, 0x24, 0x19, 0x22, 0x98, 0x6d,
+ 0x36, 0xa3, 0xe0, 0x89, 0x4e, 0x73, 0xc3, 0xef, 0xb3, 0xf9, 0xe8, 0x66, 0x33, 0x93, 0x90, 0x6d,
+ 0x36, 0x33, 0x91, 0xe4, 0xc7, 0xf7, 0xec, 0x07, 0xaf, 0x2c, 0x60, 0x85, 0xb7, 0x42, 0xbb, 0x60,
+ 0x2f, 0xa5, 0x66, 0x7a, 0xb4, 0xbd, 0xfa, 0xd9, 0x7f, 0x3a, 0x70, 0x1a, 0x55, 0x16, 0xb1, 0xaa,
+ 0x73, 0xc1, 0x59, 0x05, 0x07, 0xcf, 0xf4, 0x68, 0x81, 0x5b, 0xe9, 0xeb, 0x30, 0x88, 0x1f, 0x55,
+ 0xb5, 0x4c, 0xaf, 0x32, 0xa1, 0xbc, 0x17, 0xdd, 0x32, 0x49, 0x28, 0xb6, 0x65, 0x92, 0x7e, 0xb2,
+ 0x49, 0x1c, 0x7f, 0xf2, 0x29, 0xa6, 0x32, 0xa1, 0x68, 0xd1, 0x49, 0x3c, 0x82, 0x64, 0x93, 0x78,
+ 0x04, 0x10, 0xd4, 0x5b, 0x71, 0xec, 0x76, 0x65, 0x42, 0xa9, 0xa5, 0xd4, 0xcb, 0x51, 0x41, 0xbd,
+ 0xfc, 0x67, 0x50, 0x6f, 0x6d, 0xbd, 0xe3, 0x55, 0xd8, 0x37, 0x2e, 0xa5, 0xd4, 0xeb, 0x23, 0x83,
+ 0x7a, 0x7d, 0x00, 0x9b, 0x0a, 0x11, 0xb0, 0xe8, 0xd8, 0x6c, 0xd2, 0x7e, 0x60, 0x36, 0x9b, 0xca,
+ 0x72, 0x74, 0x2a, 0x8c, 0xe3, 0xd9, 0x54, 0x18, 0x87, 0x31, 0xd3, 0x93, 0xb7, 0x8a, 0xae, 0x74,
+ 0xd6, 0x94, 0x87, 0x51, 0xd3, 0x33, 0xc4, 0x30, 0xd3, 0x33, 0xfc, 0x85, 0xbb, 0x0b, 0xf6, 0x4b,
+ 0xa3, 0xab, 0x0e, 0x75, 0xd7, 0x95, 0x47, 0xb1, 0xdd, 0x85, 0x84, 0xc3, 0xdd, 0x85, 0xf4, 0x9b,
+ 0xac, 0xc1, 0xd3, 0x91, 0x85, 0xc6, 0xbf, 0xb4, 0xa9, 0x51, 0xdd, 0x69, 0xac, 0x2b, 0x5f, 0x40,
+ 0x56, 0xcf, 0xa7, 0x2e, 0x55, 0x51, 0xd2, 0x99, 0x1e, 0xad, 0x1b, 0x27, 0xdc, 0x96, 0xbf, 0x37,
+ 0xcb, 0x23, 0xc1, 0x6a, 0x8b, 0x93, 0xfe, 0x26, 0xf4, 0xfd, 0xd8, 0xb6, 0x3c, 0x49, 0x82, 0xdb,
+ 0xf2, 0x24, 0x98, 0xb4, 0xe1, 0x5a, 0x6c, 0xab, 0x36, 0xa7, 0x37, 0xd9, 0xbe, 0x84, 0x1a, 0x8b,
+ 0x7a, 0x63, 0x83, 0x7a, 0xca, 0x17, 0x91, 0xf7, 0xf5, 0x8c, 0x0d, 0x5f, 0x8c, 0x7a, 0xa6, 0x47,
+ 0xdb, 0x85, 0x1f, 0x51, 0xa1, 0x58, 0x9b, 0x5e, 0x5a, 0x54, 0x7e, 0x20, 0x7a, 0xbe, 0xc9, 0x60,
+ 0x33, 0x3d, 0x1a, 0xe2, 0x98, 0x95, 0xb6, 0xdc, 0x5e, 0x73, 0x74, 0x83, 0x72, 0x43, 0x0b, 0x6d,
+ 0x37, 0x61, 0x80, 0xfe, 0x60, 0xd4, 0x4a, 0xcb, 0xa2, 0x63, 0x56, 0x5a, 0x16, 0x8e, 0x29, 0x6a,
+ 0x24, 0xe9, 0x89, 0xf2, 0xa5, 0xa8, 0xa2, 0x46, 0x90, 0x4c, 0x51, 0xa3, 0x29, 0x52, 0xbe, 0x00,
+ 0x97, 0x82, 0xfd, 0xbc, 0x58, 0x7f, 0x79, 0xa7, 0x29, 0x5f, 0x46, 0x3e, 0xd7, 0x12, 0x97, 0x01,
+ 0x11, 0xaa, 0x99, 0x1e, 0x2d, 0xa3, 0x3c, 0x5b, 0x71, 0x13, 0xf9, 0xbc, 0x84, 0x79, 0xf1, 0x43,
+ 0xd1, 0x15, 0x37, 0x83, 0x8c, 0xad, 0xb8, 0x19, 0xa8, 0x54, 0xe6, 0x42, 0xa8, 0xfa, 0x2e, 0xcc,
+ 0x03, 0x99, 0x66, 0x71, 0x48, 0x65, 0x2e, 0x2c, 0xb5, 0x95, 0x5d, 0x98, 0x07, 0xd6, 0x5a, 0x16,
+ 0x07, 0x72, 0x03, 0x4a, 0xb5, 0xda, 0x9c, 0xd6, 0xb1, 0x94, 0x46, 0xcc, 0x5b, 0x16, 0xa1, 0x33,
+ 0x3d, 0x9a, 0xc0, 0x33, 0x33, 0x68, 0xaa, 0xa9, 0xbb, 0x9e, 0xd9, 0x70, 0x71, 0xc4, 0xf8, 0x23,
+ 0xc4, 0x88, 0x9a, 0x41, 0x69, 0x34, 0xcc, 0x0c, 0x4a, 0x83, 0x33, 0x7b, 0x71, 0x52, 0x77, 0x5d,
+ 0xdd, 0x32, 0x1c, 0x7d, 0x02, 0x97, 0x09, 0x1a, 0x7b, 0x8d, 0x15, 0xc1, 0x32, 0x7b, 0x31, 0x0a,
+ 0xc1, 0xc3, 0x77, 0x1f, 0xe2, 0x9b, 0x39, 0xab, 0xb1, 0xc3, 0xf7, 0x18, 0x1e, 0x0f, 0xdf, 0x63,
+ 0x30, 0xb4, 0x3b, 0x7d, 0x98, 0x46, 0xd7, 0x4c, 0x26, 0x22, 0x65, 0x2d, 0x66, 0x77, 0xc6, 0x09,
+ 0xd0, 0xee, 0x8c, 0x03, 0x23, 0x4d, 0xf2, 0x97, 0xdb, 0xf5, 0x8c, 0x26, 0x85, 0xab, 0x6c, 0xa2,
+ 0x0c, 0x5b, 0xbf, 0xc3, 0xc1, 0x51, 0xd9, 0xb2, 0xf4, 0x96, 0x5d, 0x99, 0xf0, 0xa5, 0x6e, 0x46,
+ 0xd7, 0xef, 0x4c, 0x42, 0xb6, 0x7e, 0x67, 0x22, 0xd9, 0xec, 0xea, 0x6f, 0xb4, 0xd6, 0x75, 0x87,
+ 0x1a, 0x15, 0xd3, 0xc1, 0x93, 0xc5, 0x2d, 0xbe, 0x35, 0xfc, 0x20, 0x3a, 0xbb, 0x76, 0x21, 0x65,
+ 0xb3, 0x6b, 0x17, 0x34, 0x33, 0xf2, 0xd2, 0xd1, 0x1a, 0xd5, 0x0d, 0x65, 0x23, 0x6a, 0xe4, 0x65,
+ 0x53, 0x32, 0x23, 0x2f, 0x1b, 0x9b, 0xfd, 0x39, 0x8f, 0x1c, 0xd3, 0xa3, 0x4a, 0x73, 0x2f, 0x9f,
+ 0x83, 0xa4, 0xd9, 0x9f, 0x83, 0x68, 0xb6, 0x21, 0x8c, 0x77, 0x48, 0x2b, 0xba, 0x21, 0x4c, 0x76,
+ 0x43, 0xbc, 0x04, 0xb3, 0x58, 0xc4, 0xa3, 0x3c, 0xc5, 0x8a, 0x5a, 0x2c, 0x02, 0xcc, 0x2c, 0x96,
+ 0xf0, 0xd9, 0x5e, 0xe4, 0x29, 0x96, 0x62, 0x47, 0xd7, 0x50, 0x19, 0xc7, 0xd6, 0xd0, 0xc8, 0xb3,
+ 0xad, 0xd7, 0x23, 0xef, 0x0c, 0x94, 0x76, 0xd4, 0xea, 0x90, 0x50, 0xcc, 0xea, 0x90, 0x5f, 0x24,
+ 0x4c, 0xc2, 0x39, 0xbc, 0x05, 0xd7, 0x3a, 0xc1, 0x3d, 0xce, 0x0f, 0x47, 0x3f, 0x33, 0x86, 0x66,
+ 0x9f, 0x19, 0x03, 0x45, 0x98, 0x88, 0x69, 0xcb, 0xc9, 0x60, 0x12, 0x9e, 0x0f, 0xc6, 0x40, 0x64,
+ 0x16, 0x48, 0xad, 0x3c, 0x37, 0x5b, 0x35, 0x16, 0xe5, 0x2b, 0x32, 0x37, 0x7a, 0x02, 0x9b, 0xa4,
+ 0x98, 0xe9, 0xd1, 0x52, 0xca, 0x91, 0x0f, 0xe0, 0xaa, 0x80, 0x8a, 0x17, 0xd7, 0x98, 0xf6, 0xdf,
+ 0x08, 0x16, 0x04, 0x2f, 0xea, 0xc7, 0xd6, 0x8d, 0x76, 0xa6, 0x47, 0xeb, 0xca, 0x2b, 0xbb, 0x2e,
+ 0xb1, 0x3e, 0x74, 0xf6, 0x52, 0x57, 0xb0, 0x48, 0x74, 0xe5, 0x95, 0x5d, 0x97, 0x90, 0xfb, 0xe3,
+ 0xbd, 0xd4, 0x15, 0x74, 0x42, 0x57, 0x5e, 0xc4, 0x85, 0xf1, 0x6e, 0xf8, 0x72, 0xb3, 0xa9, 0x6c,
+ 0x62, 0x75, 0x9f, 0xda, 0x4b, 0x75, 0x65, 0x34, 0x38, 0x77, 0xe3, 0xc8, 0x66, 0xe9, 0x85, 0x36,
+ 0xb5, 0x6a, 0x91, 0x05, 0xe8, 0x49, 0x74, 0x96, 0x4e, 0x10, 0xb0, 0x59, 0x3a, 0x01, 0x64, 0x03,
+ 0x4a, 0x7e, 0xae, 0xa2, 0x6c, 0x45, 0x07, 0x94, 0x8c, 0x63, 0x03, 0x2a, 0xf2, 0xb4, 0x65, 0x01,
+ 0xce, 0x2f, 0x6c, 0x78, 0xba, 0x6f, 0x41, 0xba, 0xa2, 0x2b, 0x3f, 0x8c, 0x5d, 0x32, 0x25, 0x49,
+ 0xf0, 0x92, 0x29, 0x09, 0x66, 0x63, 0x84, 0x81, 0x6b, 0x5b, 0x56, 0x63, 0x5a, 0x37, 0x9b, 0x1d,
+ 0x87, 0x2a, 0xff, 0x5a, 0x74, 0x8c, 0xc4, 0xd0, 0x6c, 0x8c, 0xc4, 0x40, 0x6c, 0x81, 0x66, 0xa0,
+ 0xb2, 0xeb, 0x9a, 0x6b, 0x96, 0xd8, 0x57, 0x76, 0x9a, 0x9e, 0xf2, 0xaf, 0x47, 0x17, 0xe8, 0x34,
+ 0x1a, 0xb6, 0x40, 0xa7, 0xc1, 0xf1, 0xd4, 0x89, 0xf5, 0x02, 0x5b, 0x3c, 0xe4, 0xbb, 0xca, 0x7f,
+ 0x23, 0x76, 0xea, 0x94, 0x42, 0x83, 0xa7, 0x4e, 0x29, 0x70, 0xb6, 0x3e, 0x72, 0x9b, 0x6c, 0xd6,
+ 0x0c, 0xee, 0xaa, 0xff, 0xcd, 0xe8, 0xfa, 0x18, 0xc7, 0xb3, 0xf5, 0x31, 0x0e, 0x8b, 0xf2, 0x11,
+ 0x5d, 0xf0, 0x6f, 0x65, 0xf1, 0x09, 0xe4, 0x9f, 0x28, 0x43, 0xee, 0xc9, 0x7c, 0xc4, 0x48, 0xf9,
+ 0x91, 0x5c, 0x16, 0xa3, 0x60, 0x78, 0x24, 0x0a, 0x45, 0x19, 0x69, 0xf4, 0xb1, 0x49, 0x37, 0x95,
+ 0xaf, 0x64, 0x32, 0xe2, 0x04, 0x51, 0x46, 0x1c, 0x46, 0xde, 0x87, 0x4b, 0x21, 0x6c, 0x8e, 0xb6,
+ 0x56, 0x82, 0x99, 0xe9, 0x4f, 0xe4, 0xa2, 0x66, 0x70, 0x3a, 0x19, 0x33, 0x83, 0xd3, 0x31, 0x69,
+ 0xac, 0x85, 0xe8, 0xfe, 0xed, 0x5d, 0x58, 0x07, 0x12, 0xcc, 0x60, 0x90, 0xc6, 0x5a, 0x48, 0xf3,
+ 0x47, 0x77, 0x61, 0x1d, 0xc8, 0x34, 0x83, 0x01, 0xf9, 0x89, 0x1c, 0x5c, 0x4f, 0x47, 0x95, 0x9b,
+ 0xcd, 0x69, 0xdb, 0x09, 0x71, 0xca, 0x9f, 0xcc, 0x45, 0x0f, 0x1a, 0xf6, 0x56, 0x6c, 0xa6, 0x47,
+ 0xdb, 0x63, 0x05, 0xe4, 0x73, 0x30, 0x5c, 0xee, 0x18, 0xa6, 0x87, 0x17, 0x6f, 0xcc, 0x70, 0xfe,
+ 0xb1, 0x5c, 0x6c, 0x8b, 0x23, 0x63, 0x71, 0x8b, 0x23, 0x03, 0xc8, 0x7d, 0x18, 0xab, 0xd1, 0x46,
+ 0xc7, 0x31, 0xbd, 0x2d, 0x8d, 0xb6, 0x6d, 0xc7, 0x63, 0x3c, 0xfe, 0x54, 0x2e, 0x3a, 0x89, 0x25,
+ 0x28, 0xd8, 0x24, 0x96, 0x00, 0x92, 0x87, 0x89, 0x5b, 0x79, 0xd1, 0x99, 0x3f, 0x9e, 0xeb, 0x7a,
+ 0x2d, 0x1f, 0xf4, 0x65, 0x7a, 0x71, 0xb2, 0x18, 0xbb, 0x45, 0x17, 0x5c, 0x7f, 0x22, 0xd7, 0xe5,
+ 0x1a, 0x5d, 0x9a, 0xe1, 0x92, 0x60, 0xc6, 0x31, 0x25, 0x03, 0xbc, 0xf2, 0xa7, 0x73, 0x5d, 0xae,
+ 0xbd, 0x43, 0x8e, 0x69, 0xc9, 0xe3, 0x5f, 0xe5, 0x9e, 0x22, 0x82, 0xd1, 0x4f, 0xe6, 0x92, 0xae,
+ 0x22, 0x41, 0x79, 0x89, 0x90, 0x15, 0x5b, 0x76, 0x03, 0xa5, 0xff, 0x6a, 0x2e, 0xe9, 0x9b, 0x17,
+ 0x16, 0x0b, 0x7f, 0x11, 0x0a, 0x57, 0xa6, 0x9e, 0x78, 0xd4, 0xb1, 0xf4, 0x26, 0x76, 0x67, 0xcd,
+ 0xb3, 0x1d, 0x7d, 0x8d, 0x4e, 0x59, 0xfa, 0x4a, 0x93, 0x2a, 0x3f, 0x95, 0x8b, 0x5a, 0xb0, 0xd9,
+ 0xa4, 0xcc, 0x82, 0xcd, 0xc6, 0x92, 0x75, 0x78, 0x3a, 0x0d, 0x5b, 0x31, 0x5d, 0xac, 0xe7, 0x6b,
+ 0xb9, 0xa8, 0x09, 0xdb, 0x85, 0x96, 0x99, 0xb0, 0x5d, 0xd0, 0xe4, 0x0e, 0x0c, 0x4c, 0xd8, 0xfe,
+ 0xf4, 0xfb, 0x67, 0x62, 0xce, 0x90, 0x01, 0x66, 0xa6, 0x47, 0x0b, 0xc9, 0x44, 0x19, 0x31, 0xa8,
+ 0xbf, 0x9e, 0x2c, 0x13, 0x5e, 0x3e, 0x05, 0x3f, 0x44, 0x19, 0x21, 0xee, 0x7f, 0x27, 0x59, 0x26,
+ 0xbc, 0xe3, 0x0a, 0x7e, 0xb0, 0x99, 0x84, 0xd7, 0x38, 0x37, 0x5d, 0x66, 0x76, 0xdb, 0xe4, 0xba,
+ 0xde, 0x6c, 0x52, 0x6b, 0x8d, 0x2a, 0xdf, 0x88, 0xcd, 0x24, 0xe9, 0x64, 0x6c, 0x26, 0x49, 0xc7,
+ 0x90, 0x1f, 0x84, 0xcb, 0x0f, 0xf5, 0xa6, 0x69, 0x84, 0x38, 0x3f, 0x1f, 0xb8, 0xf2, 0xd3, 0xb9,
+ 0xe8, 0x6e, 0x3a, 0x83, 0x8e, 0xed, 0xa6, 0x33, 0x50, 0x64, 0x0e, 0x08, 0x2e, 0xa3, 0xc1, 0x6c,
+ 0xc1, 0xd6, 0x67, 0xe5, 0xdf, 0xcd, 0x45, 0xed, 0xd4, 0x24, 0x09, 0xb3, 0x53, 0x93, 0x50, 0x52,
+ 0xcf, 0x4e, 0x0d, 0xa2, 0xfc, 0x4c, 0x2e, 0x7a, 0x5a, 0x93, 0x45, 0x38, 0xd3, 0xa3, 0x65, 0xe7,
+ 0x17, 0xb9, 0x07, 0xa3, 0xb5, 0xc5, 0xea, 0xf4, 0xf4, 0x54, 0xed, 0x61, 0xb5, 0x82, 0x0f, 0x1d,
+ 0x0c, 0xe5, 0xcf, 0xc6, 0x56, 0xac, 0x38, 0x01, 0x5b, 0xb1, 0xe2, 0x30, 0xf2, 0x16, 0x0c, 0xb1,
+ 0xf6, 0xb3, 0x01, 0x83, 0x9f, 0xfc, 0xb3, 0xb9, 0xa8, 0x39, 0x25, 0x23, 0x99, 0x39, 0x25, 0xff,
+ 0x26, 0x35, 0xb8, 0xc0, 0xa4, 0xb8, 0xe8, 0xd0, 0x55, 0xea, 0x50, 0xab, 0xe1, 0x8f, 0xe9, 0x9f,
+ 0xcb, 0x45, 0xad, 0x8c, 0x34, 0x22, 0x66, 0x65, 0xa4, 0xc1, 0xc9, 0x06, 0x5c, 0x8d, 0x9f, 0x04,
+ 0xc9, 0xcf, 0x4e, 0x95, 0x3f, 0x97, 0x8b, 0x19, 0xc3, 0x5d, 0x88, 0xd1, 0x18, 0xee, 0x82, 0x27,
+ 0x16, 0x3c, 0x23, 0x8e, 0x55, 0x84, 0xc3, 0x65, 0xbc, 0xb6, 0x3f, 0xcf, 0x6b, 0xfb, 0x64, 0xe8,
+ 0x10, 0xd8, 0x85, 0x7a, 0xa6, 0x47, 0xeb, 0xce, 0x8e, 0xe9, 0x59, 0x32, 0x01, 0x86, 0xf2, 0x17,
+ 0x72, 0xe9, 0x1e, 0x29, 0x11, 0x37, 0xe5, 0xb4, 0xcc, 0x19, 0xef, 0x67, 0xa5, 0x6f, 0x50, 0xfe,
+ 0x62, 0x6c, 0xbc, 0xa5, 0x93, 0xb1, 0xf1, 0x96, 0x91, 0xff, 0xe1, 0x3e, 0x8c, 0x71, 0xa5, 0x5e,
+ 0xd4, 0x71, 0x18, 0x5a, 0x6b, 0xd4, 0x50, 0xfe, 0xbd, 0xd8, 0x6a, 0x97, 0xa0, 0x40, 0xd7, 0x9e,
+ 0x38, 0x90, 0x4d, 0xdd, 0xb5, 0xb6, 0x6e, 0x59, 0x78, 0xcc, 0xaa, 0xfc, 0xfb, 0xb1, 0xa9, 0x3b,
+ 0x44, 0xa1, 0xe3, 0x6e, 0xf0, 0x8b, 0x69, 0x42, 0xb7, 0xd4, 0x47, 0xca, 0x5f, 0x8a, 0x69, 0x42,
+ 0x37, 0x62, 0xa6, 0x09, 0x5d, 0xf3, 0x28, 0x3d, 0xcc, 0x78, 0x02, 0xae, 0xfc, 0x7c, 0x6c, 0x45,
+ 0x4e, 0xa5, 0x62, 0x2b, 0x72, 0xfa, 0x0b, 0xf2, 0x87, 0x19, 0xcf, 0xa7, 0x95, 0x5f, 0xe8, 0xce,
+ 0x37, 0x5c, 0xe9, 0xd3, 0x5f, 0x5f, 0x3f, 0xcc, 0x78, 0x7a, 0xac, 0xfc, 0xe5, 0xee, 0x7c, 0x43,
+ 0xc7, 0xbe, 0xf4, 0x97, 0xcb, 0xf5, 0xec, 0x67, 0xbb, 0xca, 0x5f, 0x89, 0x4f, 0x5d, 0x19, 0x84,
+ 0x38, 0x75, 0x65, 0xbd, 0xfd, 0x5d, 0x81, 0xa7, 0xb8, 0x86, 0xdc, 0x73, 0xf4, 0xf6, 0x7a, 0x8d,
+ 0x7a, 0x9e, 0x69, 0xad, 0xf9, 0x3b, 0xb1, 0xbf, 0x9a, 0x8b, 0x1d, 0x8f, 0x65, 0x51, 0xe2, 0xf1,
+ 0x58, 0x16, 0x92, 0x29, 0x6f, 0xe2, 0x81, 0xae, 0xf2, 0xd7, 0x62, 0xca, 0x9b, 0xa0, 0x60, 0xca,
+ 0x9b, 0x7c, 0xd7, 0x7b, 0x3f, 0xe5, 0x1d, 0xaa, 0xf2, 0x1f, 0x64, 0xf3, 0x0a, 0xda, 0x97, 0xf2,
+ 0x7c, 0xf5, 0x7e, 0xca, 0x73, 0x4b, 0xe5, 0x3f, 0xcc, 0xe6, 0x15, 0xfa, 0x20, 0x25, 0x5f, 0x69,
+ 0xbe, 0x0f, 0x97, 0xf8, 0x6c, 0x3e, 0x4d, 0x0d, 0x1a, 0xf9, 0xd0, 0x5f, 0x8c, 0x8d, 0xfd, 0x74,
+ 0x32, 0x3c, 0x72, 0x4f, 0xc5, 0xa4, 0xb1, 0x16, 0x6d, 0xfd, 0xeb, 0xbb, 0xb0, 0x0e, 0x37, 0x04,
+ 0xe9, 0x18, 0xb6, 0xde, 0xc8, 0x8f, 0xdf, 0x94, 0x5f, 0x8a, 0xad, 0x37, 0x32, 0x12, 0xdd, 0x39,
+ 0xe4, 0x97, 0x72, 0x6f, 0x45, 0x1f, 0x7a, 0x29, 0xff, 0x51, 0x6a, 0xe1, 0xa0, 0x03, 0xa2, 0xaf,
+ 0xc2, 0xde, 0x8a, 0x3e, 0x6a, 0x52, 0x7e, 0x39, 0xb5, 0x70, 0xf0, 0x01, 0xd1, 0x17, 0x50, 0x6c,
+ 0x8b, 0xd4, 0xf1, 0x6c, 0xce, 0x2a, 0x32, 0x3d, 0xfc, 0x8d, 0xf8, 0x16, 0x29, 0x95, 0x0c, 0xb7,
+ 0x48, 0xa9, 0x98, 0x34, 0xd6, 0xe2, 0xf3, 0x7e, 0x65, 0x17, 0xd6, 0xd2, 0xc6, 0x2e, 0x15, 0x93,
+ 0xc6, 0x5a, 0x7c, 0xfc, 0xaf, 0xee, 0xc2, 0x5a, 0xda, 0xd8, 0xa5, 0x62, 0x98, 0x39, 0x16, 0x62,
+ 0x1e, 0x52, 0xc7, 0x0d, 0xd5, 0xef, 0x6f, 0xc6, 0xcc, 0xb1, 0x0c, 0x3a, 0x66, 0x8e, 0x65, 0xa0,
+ 0x52, 0xb9, 0x0b, 0xa1, 0xfc, 0xda, 0x6e, 0xdc, 0xc3, 0x7b, 0x99, 0x0c, 0x54, 0x2a, 0x77, 0x21,
+ 0x97, 0xbf, 0xb5, 0x1b, 0xf7, 0xf0, 0x62, 0x26, 0x03, 0xc5, 0x8c, 0xa2, 0x9a, 0xa7, 0x7b, 0x66,
+ 0x63, 0xc6, 0x76, 0x3d, 0x69, 0x91, 0xff, 0xdb, 0x31, 0xa3, 0x28, 0x8d, 0x88, 0x19, 0x45, 0x69,
+ 0xf0, 0x24, 0x53, 0x21, 0x8d, 0x5f, 0xef, 0xca, 0x34, 0xb4, 0xb4, 0xd2, 0xe0, 0x49, 0xa6, 0x42,
+ 0x08, 0xff, 0x71, 0x57, 0xa6, 0xa1, 0xa7, 0x7c, 0x1a, 0x9c, 0x59, 0xa6, 0x93, 0x8e, 0xbd, 0x69,
+ 0xdd, 0xa7, 0x9b, 0xb4, 0x29, 0x3e, 0xfd, 0x37, 0x62, 0x96, 0x69, 0x9c, 0x00, 0x6f, 0x51, 0x62,
+ 0xb0, 0x28, 0x23, 0xf1, 0xb9, 0xbf, 0x99, 0xc9, 0x28, 0x3c, 0x26, 0x8a, 0xc3, 0xa2, 0x8c, 0xc4,
+ 0x27, 0xfe, 0x56, 0x26, 0xa3, 0xf0, 0x98, 0x28, 0x0e, 0x23, 0x65, 0x18, 0xc1, 0xb7, 0x12, 0xba,
+ 0xeb, 0x7b, 0x7e, 0xfe, 0xbd, 0x5c, 0xf4, 0xd6, 0x2b, 0x8a, 0x9e, 0xe9, 0xd1, 0x62, 0x05, 0x64,
+ 0x16, 0xe2, 0x93, 0xbe, 0x99, 0xc1, 0x22, 0xf4, 0x77, 0x8c, 0x42, 0x64, 0x16, 0xe2, 0x63, 0xfe,
+ 0x93, 0x0c, 0x16, 0xa1, 0xc3, 0x63, 0x14, 0x32, 0xd1, 0x07, 0xbd, 0x78, 0x20, 0xaa, 0xfe, 0x7c,
+ 0x0e, 0x86, 0x6a, 0x9e, 0x43, 0xf5, 0x96, 0x08, 0xdb, 0x76, 0x05, 0xfa, 0xb9, 0x67, 0xb1, 0xff,
+ 0x0c, 0x5a, 0x0b, 0x7e, 0x93, 0xeb, 0x30, 0x32, 0xab, 0xbb, 0x1e, 0x96, 0xac, 0x5a, 0x06, 0x7d,
+ 0x82, 0xaf, 0xea, 0x0a, 0x5a, 0x0c, 0x4a, 0x66, 0x39, 0x1d, 0x2f, 0x87, 0x91, 0x3a, 0x0b, 0xbb,
+ 0x46, 0x2b, 0xeb, 0xff, 0xf6, 0xf6, 0x78, 0x0f, 0x06, 0x27, 0x8b, 0x95, 0x55, 0x7f, 0x37, 0x07,
+ 0x09, 0x9f, 0xe7, 0x83, 0x87, 0x27, 0x58, 0x80, 0x73, 0xb1, 0xe8, 0xb0, 0xe2, 0x69, 0xe0, 0x1e,
+ 0x83, 0xc7, 0xc6, 0x4b, 0x93, 0x4f, 0x05, 0x4f, 0xd2, 0x96, 0xb5, 0x59, 0x11, 0x89, 0x0e, 0x73,
+ 0x28, 0x74, 0x9c, 0xa6, 0x26, 0xa1, 0x44, 0xa4, 0xa1, 0xef, 0x8d, 0x86, 0xa1, 0x2f, 0xc9, 0x75,
+ 0x11, 0x2b, 0x21, 0x17, 0xc6, 0xaf, 0x8b, 0x65, 0x6c, 0xe7, 0xb1, 0x11, 0x3e, 0x07, 0x43, 0xd5,
+ 0x56, 0x9b, 0x3a, 0xae, 0x6d, 0xe9, 0x9e, 0xed, 0x88, 0xa7, 0xe6, 0x18, 0xdb, 0xcc, 0x94, 0xe0,
+ 0x72, 0xbc, 0x2d, 0x99, 0x9e, 0xdc, 0xf4, 0xd3, 0xc0, 0x15, 0x30, 0xe8, 0x28, 0xbe, 0x17, 0x8d,
+ 0x67, 0x01, 0xe7, 0x14, 0x8c, 0x74, 0xd9, 0xd5, 0xf1, 0xf1, 0x62, 0x40, 0xda, 0x61, 0x00, 0x99,
+ 0x14, 0x29, 0xc8, 0x8b, 0x50, 0xc2, 0xcb, 0x1e, 0x17, 0xd3, 0x3b, 0x8a, 0xa8, 0x7a, 0x4d, 0x84,
+ 0xc8, 0x31, 0xcc, 0x38, 0x0d, 0x79, 0x00, 0xa3, 0xe1, 0x4d, 0xf6, 0x3d, 0xc7, 0xee, 0xb4, 0xfd,
+ 0x84, 0x2e, 0x98, 0x3d, 0x7d, 0x23, 0xc0, 0xd5, 0xd7, 0x10, 0x29, 0xb1, 0x48, 0x14, 0x24, 0x33,
+ 0x70, 0x2e, 0x84, 0x31, 0x11, 0xf9, 0x89, 0xa4, 0x30, 0x89, 0xa7, 0xc4, 0x8b, 0x89, 0x33, 0x92,
+ 0xc4, 0x33, 0x56, 0x8c, 0x54, 0xa1, 0xcf, 0x0f, 0xa9, 0xd7, 0xbf, 0xab, 0x92, 0x9e, 0x17, 0x21,
+ 0xf5, 0xfa, 0xe4, 0x60, 0x7a, 0x7e, 0x79, 0x32, 0x0d, 0x23, 0x9a, 0xdd, 0xf1, 0xe8, 0x92, 0x2d,
+ 0xb6, 0x80, 0x22, 0x74, 0x23, 0xb6, 0xc9, 0x61, 0x98, 0xba, 0x67, 0xfb, 0xc9, 0xe7, 0xe5, 0x24,
+ 0xe8, 0xd1, 0x52, 0x64, 0x1e, 0xc6, 0x12, 0x77, 0xfe, 0x72, 0x4a, 0x78, 0xe9, 0xf3, 0x92, 0xcc,
+ 0x92, 0x45, 0xc9, 0x8f, 0xe5, 0xa0, 0xb4, 0xe4, 0xe8, 0xa6, 0xe7, 0x8a, 0x77, 0x8f, 0x17, 0x6f,
+ 0x6d, 0x3a, 0x7a, 0x9b, 0xe9, 0xc7, 0x2d, 0x8c, 0x2a, 0xfb, 0x50, 0x6f, 0x76, 0xa8, 0x3b, 0xf1,
+ 0x88, 0x7d, 0xdd, 0x7f, 0xbf, 0x3d, 0xfe, 0xd6, 0x1a, 0x9e, 0x2c, 0xde, 0x6a, 0xd8, 0xad, 0xdb,
+ 0x6b, 0x8e, 0xfe, 0xd8, 0xf4, 0xd0, 0x7e, 0xd3, 0x9b, 0xb7, 0x3d, 0xda, 0xc4, 0x03, 0xcc, 0xdb,
+ 0x7a, 0xdb, 0xbc, 0x8d, 0xd1, 0xcb, 0x6f, 0x07, 0x9c, 0x78, 0x0d, 0x4c, 0x05, 0x3c, 0xfc, 0x4b,
+ 0x56, 0x01, 0x8e, 0x23, 0xf3, 0x00, 0xe2, 0x53, 0xcb, 0xed, 0xb6, 0x78, 0x44, 0x29, 0x1d, 0xfb,
+ 0xf9, 0x18, 0xae, 0xd8, 0x81, 0xc0, 0xf4, 0xb6, 0x14, 0xb1, 0x57, 0x93, 0x38, 0x30, 0x2d, 0x58,
+ 0x12, 0x2d, 0xf2, 0xc5, 0x34, 0x1c, 0x4a, 0xdc, 0x6f, 0x6c, 0x8a, 0x90, 0xe2, 0xc5, 0xc8, 0x0a,
+ 0x9c, 0x13, 0x7c, 0x83, 0xfc, 0x1e, 0x23, 0xd1, 0x59, 0x21, 0x86, 0xe6, 0x4a, 0x1b, 0xb4, 0xd1,
+ 0x10, 0x60, 0xb9, 0x8e, 0x58, 0x09, 0x32, 0x11, 0xe6, 0x23, 0x9e, 0xd7, 0x5b, 0xd4, 0x55, 0xce,
+ 0xa1, 0xc6, 0x5e, 0xdd, 0xd9, 0x1e, 0x57, 0xfc, 0xf2, 0x18, 0x5d, 0x32, 0x35, 0x37, 0x3f, 0x16,
+ 0x91, 0x79, 0x70, 0xad, 0x1f, 0x4d, 0xe1, 0x11, 0xd7, 0xf9, 0x68, 0x11, 0x32, 0x09, 0xc3, 0xc1,
+ 0x1b, 0x8e, 0xe5, 0xe5, 0x6a, 0x05, 0x5f, 0x69, 0x8a, 0x00, 0xa3, 0xb1, 0x0c, 0x1c, 0x32, 0x93,
+ 0x48, 0x19, 0x29, 0xf0, 0x05, 0x7f, 0xb6, 0x19, 0x0b, 0x7c, 0xd1, 0x4e, 0x09, 0x7c, 0xb1, 0x48,
+ 0xde, 0x81, 0xc1, 0xf2, 0xa3, 0x9a, 0x08, 0xe8, 0xe1, 0x2a, 0xe7, 0xc3, 0x74, 0x4e, 0xfa, 0xa6,
+ 0x5b, 0xf7, 0x83, 0x7f, 0xc8, 0x4d, 0x97, 0xe9, 0xc9, 0x14, 0x8c, 0x44, 0xdc, 0xc0, 0x5c, 0xe5,
+ 0x02, 0x72, 0xc0, 0x96, 0xeb, 0x88, 0xa9, 0x3b, 0x02, 0x25, 0x0f, 0xaf, 0x68, 0x21, 0xa6, 0x35,
+ 0x15, 0xd3, 0xc5, 0xd4, 0x38, 0x1a, 0xc5, 0xd8, 0x21, 0xf8, 0xe6, 0xb3, 0x9f, 0x6b, 0x8d, 0x21,
+ 0x50, 0x75, 0x87, 0xe3, 0xe4, 0x1e, 0x8d, 0x15, 0x23, 0x1f, 0x00, 0xc1, 0x64, 0x3a, 0xd4, 0xf0,
+ 0x6f, 0x05, 0xab, 0x15, 0x57, 0xb9, 0x84, 0xd1, 0xb5, 0x49, 0x3c, 0x56, 0x41, 0xb5, 0x32, 0x71,
+ 0x5d, 0x4c, 0x1f, 0xd7, 0x74, 0x5e, 0xaa, 0xee, 0xc7, 0x29, 0xa8, 0x9b, 0x91, 0x4c, 0xc3, 0x29,
+ 0x5c, 0xc9, 0x26, 0x5c, 0x5e, 0x74, 0xe8, 0x63, 0xd3, 0xee, 0xb8, 0xfe, 0xf2, 0xe1, 0xcf, 0x5b,
+ 0x97, 0x77, 0x9d, 0xb7, 0x9e, 0x13, 0x15, 0x5f, 0x6c, 0x3b, 0xf4, 0x71, 0xdd, 0x8f, 0xa9, 0x1c,
+ 0x09, 0x09, 0x9a, 0xc5, 0x1d, 0xf3, 0x25, 0x7f, 0xd8, 0x71, 0xa8, 0x80, 0x9b, 0xd4, 0x55, 0x94,
+ 0x70, 0xaa, 0xe5, 0x61, 0x60, 0xcc, 0x00, 0x17, 0xc9, 0x97, 0x1c, 0x2d, 0x46, 0x34, 0x20, 0xf7,
+ 0x26, 0xfd, 0x1b, 0xe2, 0x72, 0x83, 0x67, 0x95, 0x55, 0x9e, 0x42, 0x66, 0x2a, 0x13, 0xcb, 0x5a,
+ 0x23, 0x88, 0xaf, 0x5e, 0xd7, 0x05, 0x5e, 0x16, 0x4b, 0xb2, 0x34, 0x99, 0x85, 0xd1, 0x45, 0x07,
+ 0xcf, 0xab, 0x1e, 0xd0, 0xad, 0x45, 0xbb, 0x69, 0x36, 0xb6, 0xf0, 0xe9, 0xa9, 0x98, 0x2a, 0xdb,
+ 0x1c, 0x57, 0xdf, 0xa0, 0x5b, 0xf5, 0x36, 0x62, 0xe5, 0x65, 0x25, 0x5e, 0x52, 0x8e, 0x77, 0xfc,
+ 0xf4, 0xde, 0xe2, 0x1d, 0x53, 0x18, 0x15, 0xf7, 0xcb, 0x4f, 0x3c, 0x6a, 0xb1, 0xa5, 0xde, 0x15,
+ 0xcf, 0x4c, 0x95, 0xd8, 0x7d, 0x74, 0x80, 0xe7, 0x53, 0x87, 0x18, 0x65, 0x34, 0x00, 0xcb, 0x0d,
+ 0x8b, 0x17, 0x49, 0x06, 0x05, 0x7e, 0xe6, 0x00, 0x41, 0x81, 0xff, 0x76, 0x41, 0x9e, 0x7f, 0xc9,
+ 0x55, 0x28, 0x4a, 0x39, 0x7b, 0x30, 0xe2, 0x29, 0xc6, 0x37, 0x2f, 0x8a, 0x40, 0xce, 0x03, 0xc2,
+ 0x76, 0x09, 0x42, 0xdb, 0x60, 0x92, 0xc6, 0x30, 0x0a, 0xa6, 0x16, 0x12, 0x60, 0x82, 0xbc, 0xce,
+ 0x4a, 0xd3, 0x6c, 0x60, 0xd4, 0xfb, 0x82, 0x14, 0xcb, 0x02, 0xa1, 0x3c, 0xe8, 0xbd, 0x44, 0x42,
+ 0xee, 0xc0, 0xa0, 0x7f, 0x4e, 0x1a, 0x46, 0xfc, 0xc5, 0x60, 0xe8, 0x62, 0xb6, 0x16, 0xb1, 0xd6,
+ 0x25, 0x22, 0xf2, 0x26, 0x40, 0x38, 0x1d, 0x08, 0x4b, 0x0b, 0x97, 0x0a, 0x79, 0xf6, 0x90, 0x97,
+ 0x8a, 0x90, 0x9a, 0x4d, 0x9c, 0xb2, 0x3a, 0xfa, 0x29, 0x41, 0x71, 0xe2, 0x8c, 0xe8, 0xb0, 0xac,
+ 0x20, 0xd1, 0x22, 0x64, 0x01, 0xc6, 0x12, 0x1a, 0x28, 0xe2, 0x03, 0x63, 0x5a, 0xf8, 0x14, 0xf5,
+ 0x95, 0x17, 0xe6, 0x44, 0x59, 0xf2, 0x3c, 0x14, 0x96, 0xb5, 0xaa, 0x88, 0x51, 0xca, 0xc3, 0xdb,
+ 0x46, 0x02, 0x18, 0x31, 0xac, 0xfa, 0x27, 0xf2, 0x89, 0xb5, 0x89, 0x49, 0x4f, 0xb0, 0x92, 0x7a,
+ 0x10, 0xa5, 0xe7, 0xd7, 0xcf, 0xa5, 0x27, 0x11, 0x91, 0x1b, 0xd0, 0xbf, 0xc8, 0x66, 0x86, 0x86,
+ 0xdd, 0x14, 0xfd, 0x89, 0xd1, 0xa6, 0xda, 0x02, 0xa6, 0x05, 0x58, 0x72, 0x47, 0xca, 0x64, 0x2b,
+ 0x85, 0xfd, 0xf6, 0x33, 0xd9, 0xc6, 0xe3, 0x5f, 0x63, 0x4e, 0xdb, 0x3b, 0xb1, 0xcc, 0x58, 0xa2,
+ 0x4c, 0xca, 0xba, 0x18, 0x66, 0xc2, 0x0a, 0xac, 0xd2, 0xde, 0xdd, 0xac, 0x52, 0xf5, 0xef, 0xe7,
+ 0x92, 0xe3, 0x8c, 0xdc, 0x4d, 0x46, 0xe0, 0xc5, 0x45, 0x28, 0x00, 0xca, 0xb5, 0x06, 0xb1, 0x78,
+ 0x23, 0xb1, 0x74, 0xf3, 0x07, 0x8e, 0xa5, 0x5b, 0xd8, 0x67, 0x2c, 0x5d, 0xf5, 0xff, 0x29, 0x76,
+ 0xf5, 0x87, 0x3e, 0x96, 0x98, 0x6b, 0x6f, 0xb0, 0x9d, 0x15, 0xab, 0xbd, 0xec, 0x26, 0xf6, 0x07,
+ 0xdc, 0xdd, 0xb3, 0xae, 0xf3, 0xa1, 0xe5, 0x6a, 0x51, 0x4a, 0xf2, 0x2e, 0x0c, 0xf9, 0x1f, 0x80,
+ 0x31, 0x9a, 0xa5, 0xd8, 0xc2, 0xc1, 0xaa, 0x16, 0x8b, 0x66, 0x1c, 0x29, 0x40, 0x5e, 0x85, 0x01,
+ 0xb4, 0x69, 0xda, 0x7a, 0xc3, 0x0f, 0xe0, 0xcd, 0x23, 0x7e, 0xfb, 0x40, 0x39, 0xae, 0x58, 0x40,
+ 0x49, 0xbe, 0x04, 0x25, 0x91, 0xc5, 0x82, 0x27, 0x79, 0xbf, 0xbd, 0x07, 0x07, 0xf2, 0x5b, 0x72,
+ 0x06, 0x0b, 0xbe, 0x4b, 0x41, 0x40, 0x64, 0x97, 0xc2, 0x93, 0x57, 0x2c, 0xc1, 0xf9, 0x45, 0x87,
+ 0x1a, 0xf8, 0x54, 0x61, 0xea, 0x49, 0xdb, 0x11, 0xf9, 0x45, 0xf8, 0x28, 0xc7, 0x45, 0xaa, 0xed,
+ 0xa3, 0xd9, 0xf2, 0x29, 0xf0, 0x72, 0x14, 0xe1, 0x94, 0xe2, 0xcc, 0x72, 0xe1, 0x2d, 0x79, 0x40,
+ 0xb7, 0x36, 0x6d, 0xc7, 0xe0, 0x29, 0x38, 0xc4, 0xfc, 0x2d, 0x04, 0xbd, 0x21, 0x50, 0xb2, 0xe5,
+ 0x12, 0x2d, 0x74, 0xe5, 0x0d, 0x18, 0x3c, 0x68, 0x16, 0x88, 0x5f, 0xcb, 0x67, 0xbc, 0x2c, 0x3a,
+ 0xbd, 0x89, 0xf8, 0x82, 0xec, 0xd0, 0xbd, 0x19, 0xd9, 0xa1, 0xbf, 0x9b, 0xcf, 0x78, 0x36, 0x75,
+ 0xaa, 0xb3, 0xb8, 0x06, 0xc2, 0x88, 0x66, 0x71, 0x0d, 0x13, 0xe8, 0x9a, 0x86, 0x26, 0x13, 0xc5,
+ 0xf2, 0x3d, 0x97, 0x76, 0xcd, 0xf7, 0xfc, 0x8b, 0x85, 0x6e, 0xcf, 0xca, 0xce, 0x64, 0xbf, 0x1f,
+ 0xd9, 0xdf, 0x81, 0xc1, 0x40, 0xb2, 0xd5, 0x0a, 0x1a, 0x3d, 0xc3, 0x41, 0xce, 0x19, 0x0e, 0xc6,
+ 0x32, 0x12, 0x11, 0xb9, 0xc9, 0xdb, 0x5a, 0x33, 0x3f, 0xe4, 0xd9, 0x0f, 0x86, 0x45, 0x5c, 0x7b,
+ 0xdd, 0xd3, 0xeb, 0xae, 0xf9, 0x21, 0xd5, 0x02, 0xb4, 0xfa, 0x9f, 0xe5, 0x53, 0xdf, 0xe6, 0x9d,
+ 0xf5, 0xd1, 0x3e, 0xfa, 0x28, 0x45, 0x88, 0xfc, 0x55, 0xe1, 0x99, 0x10, 0xf7, 0x21, 0xc4, 0x3f,
+ 0xca, 0xa7, 0xbe, 0xc1, 0x3c, 0x13, 0xe2, 0x7e, 0x66, 0x8b, 0x17, 0x61, 0x40, 0xb3, 0x37, 0xdd,
+ 0x49, 0xdc, 0xd8, 0xf0, 0xb9, 0x02, 0x27, 0x6a, 0xc7, 0xde, 0x74, 0xeb, 0xb8, 0x65, 0xd1, 0x42,
+ 0x02, 0xf5, 0x7b, 0xf9, 0x2e, 0xaf, 0x54, 0xcf, 0x04, 0xff, 0x51, 0x2e, 0x91, 0xbf, 0x99, 0x8f,
+ 0xbc, 0x82, 0x3d, 0xbd, 0xc2, 0xbe, 0x0d, 0x50, 0x6b, 0xac, 0xd3, 0x96, 0x2e, 0x65, 0x90, 0xc2,
+ 0x73, 0x07, 0x17, 0xa1, 0x22, 0xf3, 0x70, 0x48, 0xa2, 0xfe, 0x76, 0x3e, 0xf6, 0x0c, 0xf8, 0x4c,
+ 0x76, 0x7b, 0x96, 0x5d, 0xa0, 0x75, 0xe2, 0x65, 0xf3, 0x99, 0xe4, 0xf6, 0x2a, 0xb9, 0x1f, 0xcf,
+ 0xc7, 0x1e, 0x81, 0x9f, 0x5a, 0xd9, 0xb1, 0x01, 0x98, 0x7c, 0x9c, 0x7e, 0x6a, 0x35, 0xe9, 0x45,
+ 0x18, 0x10, 0x72, 0x08, 0x96, 0x0a, 0x3e, 0xef, 0x73, 0x20, 0x9e, 0xb2, 0x06, 0x04, 0xea, 0x9f,
+ 0xcc, 0x43, 0xf4, 0x71, 0xfe, 0x29, 0xd5, 0xa1, 0xdf, 0xcc, 0x47, 0xc3, 0x12, 0x9c, 0x5e, 0xfd,
+ 0xb9, 0x05, 0x50, 0xeb, 0xac, 0x34, 0x44, 0x54, 0xdb, 0x5e, 0xe9, 0x98, 0x3e, 0x80, 0x6a, 0x12,
+ 0x85, 0xfa, 0xff, 0xe6, 0x53, 0x63, 0x25, 0x9c, 0x5e, 0x01, 0xbe, 0x82, 0xa7, 0xe2, 0x0d, 0x2b,
+ 0x9c, 0xc8, 0xf1, 0x10, 0x92, 0x8d, 0xbf, 0x44, 0xda, 0x41, 0x9f, 0x90, 0x7c, 0x36, 0xc5, 0x5c,
+ 0xc3, 0xa4, 0x08, 0xa1, 0xb9, 0x26, 0x5f, 0x43, 0x48, 0x86, 0xdb, 0xef, 0xe4, 0x77, 0x0b, 0x2d,
+ 0x71, 0x9a, 0x57, 0xd5, 0xbe, 0x45, 0x7d, 0x0b, 0x43, 0x20, 0xb2, 0x9e, 0x18, 0xe2, 0x49, 0xf1,
+ 0xda, 0x1c, 0x24, 0xdf, 0xbd, 0x09, 0x2a, 0xf5, 0x9f, 0xf7, 0xa6, 0xc7, 0x35, 0x38, 0xbd, 0x22,
+ 0xbc, 0x0a, 0xc5, 0x45, 0xdd, 0x5b, 0x17, 0x9a, 0x8c, 0x57, 0x7a, 0x6d, 0xdd, 0x5b, 0xd7, 0x10,
+ 0x4a, 0x6e, 0x42, 0xbf, 0xa6, 0x6f, 0xf2, 0x33, 0xcf, 0x52, 0x98, 0xb0, 0xd0, 0xd1, 0x37, 0xeb,
+ 0xfc, 0xdc, 0x33, 0x40, 0x13, 0x35, 0x48, 0x98, 0xc9, 0x4f, 0xbe, 0x31, 0x5b, 0x1b, 0x4f, 0x98,
+ 0x19, 0xa4, 0xc9, 0xbc, 0x0a, 0xc5, 0x09, 0xdb, 0xd8, 0xc2, 0xeb, 0xab, 0x21, 0x5e, 0xd9, 0x8a,
+ 0x6d, 0x6c, 0x69, 0x08, 0x25, 0x3f, 0x91, 0x83, 0xbe, 0x19, 0xaa, 0x1b, 0x6c, 0x84, 0x0c, 0x74,
+ 0xf3, 0x3a, 0xf9, 0xc2, 0xd1, 0x78, 0x9d, 0x8c, 0xad, 0xf3, 0xca, 0x64, 0x45, 0x11, 0xf5, 0x93,
+ 0x7b, 0xd0, 0x3f, 0xa9, 0x7b, 0x74, 0xcd, 0x76, 0xb6, 0xd0, 0x8f, 0x66, 0x24, 0xf4, 0x8d, 0x8f,
+ 0xe8, 0x8f, 0x4f, 0xc4, 0x6f, 0xc6, 0x1a, 0xe2, 0x97, 0x16, 0x14, 0x66, 0x62, 0x11, 0x29, 0xfc,
+ 0x07, 0x43, 0xb1, 0xf0, 0x5c, 0xfd, 0x41, 0xa6, 0xfe, 0xe0, 0x58, 0x79, 0x28, 0xfd, 0x58, 0x19,
+ 0xad, 0x47, 0xf4, 0xb5, 0xc3, 0x34, 0x95, 0xc3, 0xb8, 0xe8, 0x73, 0xeb, 0x11, 0xa1, 0x98, 0xa5,
+ 0x52, 0x93, 0x48, 0xd4, 0xef, 0xf4, 0x42, 0xea, 0x2b, 0xe8, 0x33, 0x25, 0x3f, 0x53, 0xf2, 0x50,
+ 0xc9, 0x2b, 0x09, 0x25, 0xbf, 0x92, 0x7c, 0x57, 0xff, 0x31, 0xd5, 0xf0, 0x9f, 0x2d, 0x26, 0xa2,
+ 0x72, 0x9c, 0xee, 0xdd, 0x65, 0x28, 0xbd, 0xde, 0x5d, 0xa5, 0x17, 0x0c, 0x88, 0xd2, 0xae, 0x03,
+ 0xa2, 0x6f, 0xaf, 0x03, 0xa2, 0x3f, 0x73, 0x40, 0x84, 0x0a, 0x32, 0x90, 0xa9, 0x20, 0x55, 0x31,
+ 0x68, 0xa0, 0x7b, 0x72, 0x90, 0xab, 0x3b, 0xdb, 0xe3, 0x23, 0x6c, 0x34, 0xa5, 0x66, 0x05, 0x41,
+ 0x16, 0xea, 0xef, 0x16, 0xbb, 0x84, 0xd2, 0x39, 0x16, 0x1d, 0x79, 0x05, 0x0a, 0xe5, 0x76, 0x5b,
+ 0xe8, 0xc7, 0x79, 0x29, 0x8a, 0x4f, 0x46, 0x29, 0x46, 0x4d, 0xde, 0x84, 0x42, 0xf9, 0x51, 0x2d,
+ 0x9e, 0x10, 0xa4, 0xfc, 0xa8, 0x26, 0xbe, 0x24, 0xb3, 0xec, 0xa3, 0x1a, 0x79, 0x3b, 0x8c, 0xcc,
+ 0xb9, 0xde, 0xb1, 0x36, 0xc4, 0x46, 0x51, 0xb8, 0xdb, 0xfa, 0xee, 0x38, 0x0d, 0x86, 0x62, 0xdb,
+ 0xc5, 0x18, 0x6d, 0x4c, 0x9b, 0x4a, 0x7b, 0xd7, 0xa6, 0xbe, 0x5d, 0xb5, 0xa9, 0x7f, 0xaf, 0xda,
+ 0x34, 0xb0, 0x07, 0x6d, 0x82, 0x5d, 0xb5, 0x69, 0xf0, 0xf0, 0xda, 0xd4, 0x86, 0x2b, 0xc9, 0xf0,
+ 0x67, 0x81, 0x46, 0x68, 0x40, 0x92, 0x58, 0xe1, 0x58, 0x82, 0x57, 0xff, 0x1d, 0x8e, 0xad, 0x6f,
+ 0x22, 0xba, 0xee, 0x32, 0xbc, 0xec, 0x9f, 0x96, 0x2c, 0xad, 0xfe, 0x5a, 0x3e, 0x3b, 0x6a, 0xdb,
+ 0xc9, 0x9c, 0xe2, 0x7e, 0x28, 0x55, 0x4a, 0xc5, 0xe8, 0x2b, 0xfa, 0x6c, 0x29, 0xc7, 0xd8, 0xa6,
+ 0xc9, 0xec, 0x5b, 0xb9, 0xac, 0x50, 0x72, 0x87, 0x92, 0xd8, 0x27, 0x93, 0x1e, 0x6d, 0xe8, 0xa7,
+ 0xef, 0x46, 0x5d, 0xd9, 0xa6, 0x61, 0x48, 0x16, 0xa2, 0x90, 0xd2, 0x5e, 0x04, 0x1c, 0x29, 0xa7,
+ 0xfe, 0xfd, 0x1c, 0x9c, 0x7f, 0xd0, 0x59, 0xa1, 0xc2, 0x83, 0x2d, 0x68, 0xc6, 0x07, 0x00, 0x0c,
+ 0x2c, 0x9c, 0x58, 0x72, 0xe8, 0xc4, 0xf2, 0x69, 0x39, 0x0c, 0x5c, 0xac, 0xc0, 0xad, 0x90, 0x9a,
+ 0x3b, 0xb0, 0x3c, 0xe3, 0x3b, 0x73, 0x6e, 0x74, 0x56, 0x68, 0x3d, 0xe1, 0xc9, 0x22, 0x71, 0xbf,
+ 0xf2, 0x0e, 0x77, 0x93, 0x3f, 0xa8, 0xd3, 0xc8, 0xaf, 0xe4, 0x33, 0x23, 0xef, 0x9d, 0xd8, 0x14,
+ 0x91, 0x3f, 0x90, 0xda, 0x2b, 0xf1, 0x54, 0x91, 0x29, 0x24, 0x31, 0x8e, 0x69, 0x5c, 0xd2, 0x05,
+ 0x76, 0xc2, 0x13, 0x97, 0x7e, 0xa4, 0x02, 0xfb, 0x83, 0x5c, 0x66, 0x84, 0xc4, 0x93, 0x2a, 0x30,
+ 0xf5, 0x7f, 0x29, 0xf8, 0x81, 0x19, 0x0f, 0xf5, 0x09, 0x2f, 0xc2, 0x80, 0x78, 0x9f, 0x1e, 0x75,
+ 0xc0, 0x15, 0x47, 0x79, 0x78, 0x34, 0x1c, 0x10, 0xb0, 0x65, 0x5e, 0xf2, 0x0e, 0x96, 0x1c, 0x70,
+ 0x25, 0xcf, 0x60, 0x4d, 0x22, 0x61, 0x0b, 0xf9, 0xd4, 0x13, 0xd3, 0x43, 0xab, 0x80, 0xf5, 0x65,
+ 0x81, 0x2f, 0xe4, 0xf4, 0x89, 0xe9, 0x71, 0x9b, 0x20, 0x40, 0xb3, 0x45, 0xba, 0x16, 0xa6, 0x65,
+ 0x17, 0x8b, 0xb4, 0x2b, 0xb2, 0xd3, 0x8b, 0x67, 0x63, 0x2f, 0xc2, 0x80, 0xf0, 0x6a, 0x15, 0x6e,
+ 0x26, 0xa2, 0xb5, 0xc2, 0x0f, 0x16, 0x5b, 0x1b, 0x10, 0x30, 0x8e, 0x1a, 0x5d, 0x0b, 0x1d, 0xeb,
+ 0x90, 0xa3, 0x83, 0x10, 0x4d, 0x60, 0xc8, 0x1d, 0x18, 0xa9, 0x79, 0xba, 0x65, 0xe8, 0x8e, 0xb1,
+ 0xd0, 0xf1, 0xda, 0x1d, 0x4f, 0x36, 0x4a, 0x5d, 0xcf, 0xb0, 0x3b, 0x9e, 0x16, 0xa3, 0x20, 0x9f,
+ 0x81, 0x61, 0x1f, 0x32, 0xe5, 0x38, 0xb6, 0x23, 0x5b, 0x1e, 0xae, 0x67, 0x50, 0xc7, 0xd1, 0xa2,
+ 0x04, 0xe4, 0xb3, 0x30, 0x5c, 0xb5, 0x1e, 0xdb, 0x3c, 0xdf, 0xff, 0xb2, 0x36, 0x2b, 0xec, 0x10,
+ 0x7c, 0x8a, 0x65, 0x06, 0x88, 0x7a, 0xc7, 0x69, 0x6a, 0x51, 0x42, 0x75, 0x27, 0x9f, 0x8c, 0x5f,
+ 0x79, 0x7a, 0x37, 0x2d, 0x37, 0xa3, 0xce, 0x74, 0xe8, 0x41, 0x8a, 0x06, 0xa1, 0xec, 0xcb, 0xcb,
+ 0xed, 0xc2, 0x3b, 0xd0, 0xff, 0x80, 0x6e, 0x71, 0xbf, 0xcf, 0x52, 0xe8, 0x2a, 0xbc, 0x21, 0x60,
+ 0xf2, 0x89, 0xab, 0x4f, 0xa7, 0x7e, 0x33, 0x9f, 0x8c, 0xcc, 0x79, 0x7a, 0x85, 0xfd, 0x19, 0xe8,
+ 0x43, 0x51, 0x56, 0xfd, 0x23, 0x7f, 0x14, 0x20, 0x8a, 0x3b, 0xea, 0x81, 0xec, 0x93, 0xa9, 0xbf,
+ 0x50, 0x8a, 0x87, 0x6b, 0x3d, 0xbd, 0xd2, 0x7b, 0x0b, 0x06, 0x27, 0x6d, 0xcb, 0x35, 0x5d, 0x8f,
+ 0x5a, 0x0d, 0x5f, 0x61, 0x9f, 0x62, 0x06, 0x55, 0x23, 0x04, 0xcb, 0x6f, 0x90, 0x24, 0xea, 0x83,
+ 0x28, 0x2f, 0x79, 0x0d, 0x06, 0x50, 0xe4, 0xe8, 0x27, 0xcd, 0x27, 0x3c, 0xbc, 0x2d, 0x58, 0x61,
+ 0xc0, 0xb8, 0x93, 0x74, 0x48, 0x4a, 0x96, 0xa1, 0x7f, 0x72, 0xdd, 0x6c, 0x1a, 0x0e, 0xb5, 0xd0,
+ 0x5f, 0x58, 0x8a, 0x8a, 0x11, 0xed, 0xcb, 0x5b, 0xf8, 0x2f, 0xd2, 0xf2, 0xe6, 0x34, 0x44, 0xb1,
+ 0xc8, 0x2b, 0x2c, 0x01, 0xbb, 0xf2, 0x33, 0x79, 0x80, 0xb0, 0x00, 0x79, 0x16, 0xf2, 0x41, 0xc6,
+ 0x63, 0x74, 0x53, 0x89, 0x68, 0x50, 0x1e, 0x97, 0x0a, 0x31, 0xb6, 0xf3, 0xbb, 0x8e, 0xed, 0x65,
+ 0x28, 0xf1, 0x13, 0x2f, 0xf4, 0x24, 0x97, 0x22, 0x48, 0x66, 0x36, 0xf8, 0x16, 0xd2, 0xf3, 0xcd,
+ 0x2c, 0x5a, 0x9e, 0x11, 0xaf, 0x6c, 0xce, 0xec, 0x4a, 0x03, 0x7a, 0xf1, 0x2f, 0x72, 0x1d, 0x8a,
+ 0x4b, 0x7e, 0xb6, 0xd4, 0x61, 0x3e, 0x4b, 0xc7, 0xe4, 0x87, 0x78, 0xd6, 0x4d, 0x93, 0xb6, 0xe5,
+ 0xb1, 0xaa, 0xb1, 0xd5, 0x43, 0x42, 0x2e, 0x02, 0x16, 0x91, 0x8b, 0x80, 0xa9, 0xff, 0x55, 0x3e,
+ 0x25, 0x90, 0xf0, 0xe9, 0x1d, 0x26, 0x6f, 0x00, 0xe0, 0x93, 0x6e, 0x26, 0x4f, 0xff, 0x89, 0x06,
+ 0x8e, 0x12, 0x64, 0x84, 0x6a, 0x1b, 0xd9, 0x76, 0x84, 0xc4, 0xea, 0x3f, 0xcc, 0x25, 0xa2, 0xcf,
+ 0x1e, 0x4a, 0x8e, 0xb2, 0x55, 0x96, 0x3f, 0xa0, 0x19, 0xeb, 0xf7, 0x45, 0x61, 0x7f, 0x7d, 0x11,
+ 0xfd, 0x96, 0x23, 0xb0, 0x4c, 0x8f, 0xf3, 0x5b, 0xbe, 0x93, 0x4f, 0x8b, 0xc5, 0x7b, 0x32, 0x55,
+ 0xfc, 0x6e, 0x60, 0x94, 0x16, 0x63, 0xd1, 0xcf, 0x11, 0x1a, 0xcf, 0xe8, 0x2c, 0xcc, 0xd4, 0x2f,
+ 0xc3, 0xb9, 0x58, 0x84, 0x5a, 0x91, 0x5c, 0xf7, 0x7a, 0xf7, 0x50, 0xb7, 0xd9, 0xc1, 0x00, 0x22,
+ 0x64, 0xea, 0xff, 0x97, 0xeb, 0x1e, 0x9f, 0xf8, 0xd8, 0x55, 0x27, 0x45, 0x00, 0x85, 0x3f, 0x1e,
+ 0x01, 0x1c, 0xc1, 0x36, 0xf8, 0x64, 0x0b, 0xe0, 0x63, 0x32, 0x79, 0x7c, 0xd4, 0x02, 0xf8, 0x85,
+ 0xdc, 0xae, 0xe1, 0xa5, 0x8f, 0x5b, 0x06, 0xea, 0xff, 0x98, 0x4b, 0x0d, 0x03, 0x7d, 0xa8, 0x76,
+ 0xbd, 0x0d, 0x25, 0xee, 0x56, 0x23, 0x5a, 0x25, 0x25, 0xce, 0x62, 0xd0, 0xac, 0x54, 0xf3, 0x1c,
+ 0x4b, 0x66, 0xa1, 0x8f, 0xb7, 0xc1, 0x10, 0xbd, 0xf1, 0x89, 0x2e, 0xb1, 0xa8, 0x8d, 0xac, 0xc9,
+ 0x51, 0xa0, 0xd5, 0x7f, 0x90, 0x4b, 0x44, 0xa5, 0x3e, 0xc6, 0x6f, 0x0b, 0xa7, 0xea, 0xc2, 0xde,
+ 0xa7, 0x6a, 0xf5, 0x9f, 0xe5, 0xd3, 0x83, 0x62, 0x1f, 0xe3, 0x87, 0x1c, 0xc5, 0x71, 0xda, 0xc1,
+ 0xd6, 0xad, 0x25, 0x18, 0x89, 0xca, 0x42, 0x2c, 0x5b, 0xd7, 0xd2, 0x43, 0x83, 0x67, 0xb4, 0x22,
+ 0xc6, 0x43, 0xfd, 0x76, 0x2e, 0x19, 0xcf, 0xfb, 0xd8, 0xe7, 0xa7, 0x83, 0x69, 0x4b, 0xf4, 0x53,
+ 0x3e, 0x26, 0x6b, 0xcd, 0x51, 0x7c, 0xca, 0xc7, 0x64, 0xd5, 0x38, 0xd8, 0xa7, 0xfc, 0x52, 0x3e,
+ 0x2b, 0x1c, 0xfa, 0xb1, 0x7f, 0xd0, 0x17, 0x65, 0x21, 0xf3, 0x96, 0x89, 0x4f, 0x7b, 0x36, 0x2b,
+ 0xfe, 0x78, 0x06, 0xcf, 0x04, 0x9f, 0x83, 0x8d, 0xf1, 0x54, 0x61, 0x7d, 0x4c, 0x14, 0xf9, 0x64,
+ 0x08, 0xeb, 0x63, 0x32, 0x54, 0x3e, 0x7e, 0xc2, 0xfa, 0x3b, 0xf9, 0xbd, 0xc6, 0xe0, 0x3f, 0x13,
+ 0x5e, 0x42, 0x78, 0x5f, 0xcf, 0x27, 0x73, 0x43, 0x1c, 0xbb, 0x98, 0xa6, 0xa1, 0x24, 0xb2, 0x54,
+ 0x64, 0x0a, 0x87, 0xe3, 0xb3, 0x2c, 0x1a, 0xf1, 0x1d, 0x77, 0x41, 0x5c, 0xe4, 0xec, 0x4d, 0x24,
+ 0x9c, 0x56, 0xfd, 0x5e, 0x2e, 0x96, 0x48, 0xe1, 0x58, 0x8e, 0x10, 0x0e, 0xb4, 0x24, 0x91, 0x77,
+ 0xfc, 0xc3, 0xcc, 0x62, 0x2c, 0x90, 0x75, 0xf0, 0x3d, 0x15, 0xea, 0xe9, 0x66, 0x33, 0x5e, 0x5e,
+ 0xc4, 0x04, 0xf8, 0x66, 0x1e, 0xc6, 0x12, 0xa4, 0xe4, 0x7a, 0x24, 0x94, 0x0e, 0x1e, 0x4b, 0xc6,
+ 0x9c, 0xc7, 0x79, 0x50, 0x9d, 0x7d, 0x9c, 0xa4, 0x5e, 0x87, 0x62, 0x45, 0xdf, 0xe2, 0xdf, 0xd6,
+ 0xcb, 0x59, 0x1a, 0xfa, 0x96, 0x7c, 0xe2, 0x86, 0x78, 0xb2, 0x02, 0x17, 0xf9, 0x7d, 0x88, 0x69,
+ 0x5b, 0x4b, 0x66, 0x8b, 0x56, 0xad, 0x39, 0xb3, 0xd9, 0x34, 0x5d, 0x71, 0xa9, 0xf7, 0xe2, 0xce,
+ 0xf6, 0xf8, 0x0d, 0xcf, 0xf6, 0xf4, 0x66, 0x9d, 0xfa, 0x64, 0x75, 0xcf, 0x6c, 0xd1, 0xba, 0x69,
+ 0xd5, 0x5b, 0x48, 0x29, 0xb1, 0x4c, 0x67, 0x45, 0xaa, 0x3c, 0x66, 0x79, 0xad, 0xa1, 0x5b, 0x16,
+ 0x35, 0xaa, 0xd6, 0xc4, 0x96, 0x47, 0xf9, 0x65, 0x60, 0x81, 0x1f, 0x09, 0xf2, 0xb7, 0xe1, 0x1c,
+ 0xcd, 0x18, 0xaf, 0x30, 0x02, 0x2d, 0xa5, 0x90, 0xfa, 0x77, 0x8b, 0x29, 0x39, 0x34, 0x4e, 0x90,
+ 0xfa, 0xf8, 0x3d, 0x5d, 0xdc, 0xa5, 0xa7, 0x6f, 0x43, 0x9f, 0x08, 0x0a, 0x2b, 0x2e, 0x18, 0xd0,
+ 0x99, 0xfd, 0x31, 0x07, 0xc9, 0x37, 0x34, 0x82, 0x8a, 0x34, 0xe1, 0xca, 0x12, 0xeb, 0xa6, 0xf4,
+ 0xce, 0x2c, 0x1d, 0xa0, 0x33, 0xbb, 0xf0, 0x23, 0xef, 0xc3, 0x65, 0xc4, 0xa6, 0x74, 0x6b, 0x1f,
+ 0x56, 0x85, 0x31, 0xaa, 0x78, 0x55, 0xe9, 0x9d, 0x9b, 0x55, 0x9e, 0x7c, 0x11, 0x86, 0x82, 0x01,
+ 0x62, 0x52, 0x57, 0xdc, 0x5c, 0x74, 0x19, 0x67, 0x3c, 0x00, 0x1c, 0x03, 0xa3, 0x0b, 0x59, 0x34,
+ 0x88, 0x58, 0x84, 0x97, 0xfa, 0x3f, 0xe4, 0xba, 0xe5, 0xf2, 0x38, 0xf6, 0x59, 0xf9, 0x1d, 0xe8,
+ 0x33, 0xf8, 0x47, 0x09, 0x9d, 0xea, 0x9e, 0xed, 0x83, 0x93, 0x6a, 0x7e, 0x19, 0xf5, 0x9f, 0xe6,
+ 0xba, 0xa6, 0x10, 0x39, 0xe9, 0x9f, 0xf7, 0xf5, 0x42, 0xc6, 0xe7, 0x89, 0x49, 0xf4, 0x26, 0x8c,
+ 0x9a, 0x61, 0x8c, 0xf3, 0x7a, 0x18, 0x7e, 0x4a, 0x3b, 0x27, 0xc1, 0x71, 0x74, 0xdd, 0x85, 0x4b,
+ 0xbe, 0xe3, 0xa3, 0xe3, 0x7b, 0x88, 0xb9, 0xf5, 0x8e, 0x63, 0xf2, 0x71, 0xa9, 0x5d, 0x70, 0x63,
+ 0xee, 0x63, 0xee, 0xb2, 0x63, 0xb2, 0x0a, 0x74, 0x6f, 0x9d, 0x5a, 0x7a, 0x7d, 0xd3, 0x76, 0x36,
+ 0x30, 0xca, 0x28, 0x1f, 0x9c, 0xda, 0x39, 0x0e, 0x7f, 0xe4, 0x83, 0xc9, 0xf3, 0x30, 0xbc, 0xd6,
+ 0xec, 0xd0, 0x20, 0xae, 0x23, 0xbf, 0xeb, 0xd3, 0x86, 0x18, 0x30, 0xb8, 0x21, 0x79, 0x06, 0x00,
+ 0x89, 0x3c, 0x4c, 0xf0, 0x82, 0x17, 0x7b, 0xda, 0x00, 0x83, 0x2c, 0x89, 0xee, 0xba, 0xc2, 0xb5,
+ 0x9a, 0x0b, 0xa9, 0xde, 0xb4, 0xad, 0xb5, 0xba, 0x47, 0x9d, 0x16, 0x36, 0x14, 0x9d, 0x19, 0xb4,
+ 0x4b, 0x48, 0x81, 0x57, 0x27, 0xee, 0xac, 0x6d, 0xad, 0x2d, 0x51, 0xa7, 0xc5, 0x9a, 0xfa, 0x22,
0x10, 0xd1, 0x54, 0x07, 0x0f, 0x3d, 0xf8, 0xc7, 0xa1, 0x37, 0x83, 0x26, 0x3e, 0x82, 0x9f, 0x86,
- 0xe0, 0x87, 0x8d, 0xc3, 0x10, 0x0f, 0x6e, 0xc7, 0x85, 0x86, 0x2e, 0x0c, 0x1a, 0x70, 0x10, 0xca,
- 0xeb, 0x22, 0x08, 0xef, 0x0a, 0xee, 0xd5, 0xad, 0x89, 0x5f, 0xea, 0x57, 0x0b, 0x69, 0x59, 0x4f,
- 0x0e, 0xa4, 0x68, 0xe1, 0xb4, 0x9a, 0xdf, 0xd3, 0xb4, 0x7a, 0xc6, 0xea, 0xb6, 0x1b, 0x7a, 0xa7,
- 0xd3, 0x58, 0x31, 0x5b, 0xf8, 0xac, 0x0a, 0x17, 0x3e, 0x6d, 0xc4, 0xea, 0xb6, 0x2b, 0x9d, 0xce,
- 0x34, 0x07, 0x92, 0x17, 0xe0, 0x2c, 0xa3, 0xc3, 0x4e, 0x0a, 0x28, 0x8b, 0x48, 0xc9, 0x18, 0x60,
- 0x74, 0x58, 0x9f, 0xf6, 0x29, 0x28, 0x0b, 0x9e, 0x7c, 0xad, 0xea, 0xd7, 0x06, 0x38, 0x33, 0x97,
- 0xf5, 0x5c, 0xc0, 0x86, 0x4f, 0xae, 0xfd, 0xda, 0xa0, 0x5f, 0x1e, 0x63, 0x20, 0x5b, 0xdd, 0x36,
- 0x8f, 0x88, 0x35, 0x80, 0xc8, 0xe0, 0x37, 0xb9, 0x06, 0xa3, 0x8c, 0x4b, 0x20, 0x30, 0x1e, 0x36,
- 0xb6, 0x5f, 0x8b, 0x41, 0xc9, 0x6d, 0x38, 0x1f, 0x81, 0x70, 0x1b, 0x94, 0x3f, 0x13, 0xe8, 0xd7,
- 0x52, 0x71, 0xea, 0xef, 0x16, 0xa2, 0xb9, 0x58, 0x8e, 0xa0, 0x23, 0x2e, 0xc1, 0x80, 0xed, 0xac,
- 0x36, 0xba, 0x4e, 0x4b, 0x8c, 0xbd, 0x92, 0xed, 0xac, 0x3e, 0x70, 0x5a, 0xe4, 0x02, 0x94, 0x58,
- 0xef, 0x98, 0x86, 0x18, 0x62, 0xfd, 0x7a, 0xa7, 0x53, 0x33, 0x48, 0x85, 0x77, 0x08, 0x86, 0x1c,
- 0x6d, 0x34, 0x71, 0x6b, 0xcf, 0x9d, 0x12, 0xfa, 0xf9, 0x8a, 0x97, 0x40, 0x62, 0x3f, 0x61, 0x20,
- 0x52, 0x7e, 0x10, 0x10, 0x63, 0x61, 0xe0, 0xb6, 0xc4, 0xe0, 0x7d, 0x12, 0x67, 0x21, 0x90, 0x21,
- 0x0b, 0xbe, 0x89, 0x31, 0x48, 0x15, 0x48, 0x48, 0xd5, 0xb6, 0x0d, 0x73, 0xc5, 0xa4, 0xfc, 0x55,
- 0x47, 0x3f, 0xbf, 0xf8, 0x4d, 0x62, 0xb5, 0x31, 0x9f, 0xc9, 0x9c, 0x80, 0x90, 0xb7, 0xb8, 0x12,
- 0x72, 0x3a, 0x5c, 0xfb, 0x78, 0xdf, 0x72, 0x3b, 0x2d, 0x86, 0x42, 0xcd, 0xc4, 0xf2, 0xb8, 0x10,
- 0xaa, 0x7f, 0xa9, 0x98, 0x4c, 0xc8, 0x73, 0x24, 0x76, 0xcd, 0x0c, 0x80, 0xc8, 0xb7, 0x15, 0x5e,
- 0xae, 0x05, 0x1e, 0xe7, 0x21, 0x26, 0x83, 0x87, 0x54, 0x96, 0xdc, 0x80, 0x32, 0xff, 0xa2, 0x5a,
- 0x55, 0xd8, 0x3b, 0xe8, 0x22, 0xe6, 0x76, 0xcc, 0x95, 0x15, 0xf4, 0x27, 0x0b, 0xd0, 0xe4, 0x1a,
- 0x0c, 0x54, 0xe7, 0xeb, 0xf5, 0xca, 0xbc, 0x7f, 0x53, 0x8c, 0xef, 0x4b, 0x0c, 0xcb, 0x6d, 0xb8,
- 0xba, 0xe5, 0x6a, 0x3e, 0x92, 0x3c, 0x0f, 0xa5, 0xda, 0x22, 0x92, 0xf1, 0x57, 0x93, 0x43, 0xdb,
- 0x5b, 0xe3, 0x03, 0x66, 0x87, 0x53, 0x09, 0x14, 0xd6, 0xfb, 0xb0, 0x56, 0x95, 0xdc, 0x25, 0x78,
- 0xbd, 0x8f, 0x4d, 0x03, 0xaf, 0x9d, 0xb5, 0x00, 0x4d, 0x5e, 0x85, 0xe1, 0x3a, 0x75, 0x4c, 0xbd,
- 0x35, 0xdf, 0xc5, 0xad, 0xa2, 0x14, 0x4a, 0xd1, 0x45, 0x78, 0xc3, 0x42, 0x84, 0x16, 0x21, 0x23,
- 0x57, 0xa0, 0x38, 0x63, 0x5a, 0xfe, 0x13, 0x06, 0xf4, 0x71, 0x5f, 0x33, 0x2d, 0x4f, 0x43, 0x28,
- 0x79, 0x1e, 0x0a, 0xf7, 0x96, 0x6a, 0xc2, 0x13, 0x0c, 0x79, 0x7d, 0xe0, 0x45, 0xc2, 0x32, 0xde,
- 0x5b, 0xaa, 0x91, 0x57, 0x61, 0x90, 0x2d, 0x62, 0xd4, 0x6a, 0x52, 0x57, 0x19, 0xc2, 0x8f, 0xe1,
- 0x61, 0x04, 0x7d, 0xa0, 0xec, 0xd3, 0x11, 0x50, 0xaa, 0xff, 0x47, 0x3e, 0x3d, 0x63, 0xd2, 0x11,
- 0x0c, 0xf5, 0x7d, 0xde, 0x22, 0xc7, 0x14, 0xac, 0x78, 0x00, 0x05, 0x5b, 0x81, 0x33, 0x15, 0xa3,
- 0x6d, 0x5a, 0x15, 0xfc, 0xe9, 0xce, 0x4d, 0x57, 0x70, 0xea, 0x90, 0x9e, 0xe7, 0xc5, 0xd0, 0xe2,
- 0x7b, 0x78, 0xc0, 0x5f, 0x86, 0x6a, 0xe8, 0x1c, 0xd7, 0x68, 0xaf, 0xe8, 0x8d, 0x26, 0x4f, 0x36,
- 0xa4, 0xc5, 0x99, 0xaa, 0x3f, 0x93, 0xdf, 0x21, 0xc9, 0xd3, 0x49, 0x94, 0xbe, 0xfa, 0xcd, 0x7c,
- 0xef, 0x3c, 0x5b, 0x27, 0x52, 0x28, 0x7f, 0x94, 0x4f, 0xc9, 0x7a, 0x75, 0x20, 0x49, 0xdc, 0x80,
- 0x32, 0x67, 0x13, 0xb8, 0xf1, 0xe2, 0x6c, 0xc6, 0x95, 0x15, 0x67, 0x51, 0x1f, 0x4d, 0xe6, 0xe1,
- 0x7c, 0x65, 0x65, 0x85, 0x36, 0xbd, 0x30, 0xf4, 0xf3, 0x7c, 0x18, 0x84, 0x95, 0x87, 0xba, 0x15,
- 0xf8, 0x30, 0x74, 0x34, 0x06, 0x1b, 0x49, 0x2d, 0x47, 0x96, 0xe0, 0x62, 0x1c, 0x5e, 0xe7, 0x5b,
- 0x80, 0xa2, 0x14, 0xfd, 0x36, 0xc1, 0x91, 0xff, 0xa7, 0x65, 0x94, 0x4d, 0x6b, 0x25, 0x4e, 0xd5,
- 0xfd, 0xbd, 0x5a, 0x89, 0xf3, 0x76, 0x6a, 0x39, 0xf5, 0x5b, 0x05, 0x39, 0x39, 0xd8, 0xc9, 0x75,
- 0xb8, 0xba, 0x13, 0x71, 0xb3, 0xde, 0xed, 0x90, 0x79, 0x55, 0x44, 0x10, 0x31, 0xba, 0x8e, 0xef,
- 0x91, 0x18, 0x44, 0x30, 0x40, 0xa0, 0xbc, 0x0e, 0x05, 0x94, 0xa4, 0x06, 0xc5, 0x8a, 0xb3, 0xca,
- 0xcd, 0xdb, 0x9d, 0x1e, 0x55, 0xe9, 0xce, 0xaa, 0x9b, 0xfe, 0xa8, 0x8a, 0xb1, 0x50, 0xff, 0x54,
- 0xbe, 0x47, 0x3e, 0xaf, 0x13, 0x39, 0x89, 0xfc, 0xd9, 0x7c, 0x56, 0x66, 0xae, 0xe3, 0xea, 0x3a,
- 0xf6, 0x11, 0x0b, 0xe7, 0x78, 0xfb, 0xd5, 0x1d, 0xb2, 0x70, 0x32, 0xb2, 0x84, 0x9d, 0x0a, 0xe7,
- 0xab, 0xf9, 0xac, 0x44, 0x69, 0x27, 0x76, 0x96, 0xc9, 0xc8, 0xcd, 0x76, 0xaa, 0x2b, 0xbf, 0x90,
- 0xcf, 0x4c, 0x4f, 0x77, 0x2a, 0x1d, 0xf5, 0x6b, 0xf9, 0xcc, 0xf4, 0x7a, 0x27, 0x72, 0x28, 0xa5,
- 0x6a, 0xcb, 0xe9, 0x58, 0x12, 0xd2, 0xf9, 0x83, 0x7c, 0x7a, 0x42, 0xc3, 0x23, 0x50, 0x95, 0xc3,
- 0xf0, 0xc0, 0xf3, 0x05, 0x5a, 0x3c, 0x90, 0x40, 0xfb, 0x0f, 0x55, 0xa0, 0x47, 0x36, 0xf6, 0x7e,
- 0x50, 0x05, 0x7a, 0x08, 0x83, 0xf7, 0x24, 0x0b, 0xf4, 0xa7, 0x0b, 0xc9, 0x24, 0x9e, 0x27, 0xf2,
- 0x88, 0x72, 0x02, 0xca, 0xfe, 0x19, 0x86, 0x10, 0xe8, 0xae, 0xbb, 0xd3, 0x2f, 0x47, 0xde, 0x85,
- 0x33, 0xa1, 0x2c, 0xe5, 0xc8, 0x54, 0x78, 0xbd, 0xd1, 0x64, 0xa8, 0xc6, 0x07, 0x0c, 0x27, 0x42,
- 0xa8, 0xc4, 0xa9, 0xd5, 0xef, 0x17, 0x92, 0x99, 0x50, 0x4f, 0x7b, 0x63, 0x9f, 0xbd, 0xf1, 0x00,
- 0x2e, 0x4e, 0x76, 0x1d, 0x87, 0x5a, 0x5e, 0x7a, 0xa7, 0xe0, 0xe1, 0x72, 0x93, 0x53, 0x34, 0x92,
- 0x9d, 0x93, 0x51, 0x98, 0xb1, 0x15, 0xde, 0xf7, 0x71, 0xb6, 0x03, 0x21, 0xdb, 0x2e, 0xa7, 0x48,
- 0x63, 0x9b, 0x5e, 0x58, 0xfd, 0xbd, 0x7c, 0x32, 0x77, 0xed, 0x69, 0xd7, 0xef, 0xaf, 0xeb, 0xd5,
- 0xaf, 0x16, 0xe2, 0xf9, 0x7b, 0x4f, 0x17, 0x88, 0xfd, 0x77, 0x87, 0x2f, 0x49, 0x1c, 0x37, 0xd2,
- 0x57, 0xf8, 0xf0, 0xac, 0xaf, 0xf0, 0xf1, 0xea, 0xaf, 0x15, 0xe3, 0xb9, 0x90, 0x4f, 0xbb, 0xe3,
- 0xe8, 0xba, 0x83, 0x2c, 0xc0, 0x79, 0x31, 0xb7, 0xf9, 0x20, 0x4c, 0x51, 0x20, 0xe6, 0x2f, 0x9e,
- 0xe9, 0x4c, 0x4c, 0x8b, 0x5d, 0x97, 0x3a, 0x0d, 0x4f, 0x77, 0xd7, 0x1b, 0x98, 0xd3, 0x40, 0x4b,
- 0x2d, 0xc8, 0x18, 0x8a, 0x59, 0x2d, 0xca, 0xb0, 0x1c, 0x32, 0xf4, 0x27, 0xc4, 0x04, 0xc3, 0xb4,
- 0x82, 0xea, 0x6f, 0xe7, 0x60, 0x2c, 0xfe, 0x39, 0xe4, 0x26, 0x94, 0xd9, 0xef, 0xe0, 0x59, 0xb8,
- 0x94, 0x47, 0x99, 0x73, 0xe4, 0x57, 0xc6, 0x3e, 0x0d, 0x79, 0x0d, 0x06, 0xf1, 0x76, 0x1e, 0x0b,
- 0xe4, 0xc3, 0xd7, 0xf8, 0x61, 0x01, 0x4c, 0xee, 0xc9, 0x8b, 0x85, 0xa4, 0xe4, 0x2d, 0x18, 0xaa,
- 0x85, 0x6e, 0x48, 0xe2, 0x4e, 0x06, 0xbd, 0x1f, 0xa5, 0x92, 0x21, 0x81, 0x26, 0x53, 0xab, 0xdf,
- 0xc9, 0xc7, 0x73, 0x76, 0x9f, 0xaa, 0xfa, 0xfe, 0x54, 0xfd, 0x85, 0x39, 0xae, 0xea, 0xf7, 0x4d,
- 0xcb, 0x20, 0x4f, 0xc1, 0x85, 0x07, 0xf5, 0x29, 0xad, 0x71, 0xbf, 0x36, 0x5f, 0x6d, 0x3c, 0x98,
- 0xaf, 0x2f, 0x4e, 0x4d, 0xd6, 0xa6, 0x6b, 0x53, 0xd5, 0xb1, 0x3e, 0x72, 0x0e, 0xce, 0x84, 0xa8,
- 0x99, 0x07, 0x73, 0x95, 0xf9, 0xb1, 0x1c, 0x39, 0x0b, 0x23, 0x21, 0x70, 0x62, 0x61, 0x69, 0x2c,
- 0xff, 0xc2, 0xa7, 0x60, 0x08, 0xdd, 0xaf, 0xf8, 0x75, 0x31, 0x19, 0x86, 0xf2, 0xc2, 0x44, 0x7d,
- 0x4a, 0x7b, 0x88, 0x4c, 0x00, 0x4a, 0xd5, 0xa9, 0x79, 0xc6, 0x30, 0xf7, 0xc2, 0xff, 0x9d, 0x03,
- 0xa8, 0x4f, 0x2f, 0x2d, 0x0a, 0xc2, 0x21, 0x18, 0xa8, 0xcd, 0x3f, 0xac, 0xcc, 0xd6, 0x18, 0x5d,
- 0x19, 0x8a, 0x0b, 0x8b, 0x53, 0xac, 0x86, 0x41, 0xe8, 0x9f, 0x9c, 0x5d, 0xa8, 0x4f, 0x8d, 0xe5,
- 0x19, 0x50, 0x9b, 0xaa, 0x54, 0xc7, 0x0a, 0x0c, 0xf8, 0x48, 0xab, 0x2d, 0x4d, 0x8d, 0x15, 0xd9,
- 0x9f, 0xb3, 0xf5, 0xa5, 0xca, 0xd2, 0x58, 0x3f, 0xfb, 0x73, 0x1a, 0xff, 0x2c, 0x31, 0x66, 0xf5,
- 0xa9, 0x25, 0xfc, 0x31, 0xc0, 0x9a, 0x30, 0xed, 0xff, 0x2a, 0x33, 0x14, 0x63, 0x5d, 0xad, 0x69,
- 0x63, 0x83, 0xec, 0x07, 0x63, 0xc9, 0x7e, 0x00, 0x6b, 0x9c, 0x36, 0x35, 0xb7, 0xf0, 0x70, 0x6a,
- 0x6c, 0x88, 0xf1, 0x9a, 0xbb, 0xcf, 0xc0, 0xc3, 0xec, 0x4f, 0x6d, 0x8e, 0xfd, 0x39, 0xc2, 0x38,
- 0x69, 0x53, 0x95, 0xd9, 0xc5, 0xca, 0xd2, 0xcc, 0xd8, 0x28, 0x6b, 0x0f, 0xf2, 0x3c, 0xc3, 0x4b,
- 0xce, 0x57, 0xe6, 0xa6, 0xc6, 0xc6, 0x04, 0x4d, 0x75, 0xb6, 0x36, 0x7f, 0x7f, 0xec, 0x2c, 0x36,
- 0xe4, 0xfd, 0x39, 0xfc, 0x41, 0x58, 0x01, 0xfc, 0xeb, 0xdc, 0x0b, 0x3f, 0x0c, 0xa5, 0x85, 0x3a,
- 0x8e, 0x82, 0x4b, 0x70, 0x6e, 0xa1, 0xde, 0x58, 0x7a, 0x7f, 0x71, 0x2a, 0x26, 0xef, 0xb3, 0x30,
- 0xe2, 0x23, 0x66, 0x6b, 0xf3, 0x0f, 0xbe, 0xc0, 0xa5, 0xed, 0x83, 0xe6, 0x2a, 0x93, 0x0b, 0xf5,
- 0xb1, 0x3c, 0xeb, 0x15, 0x1f, 0xf4, 0xa8, 0x36, 0x5f, 0x5d, 0x78, 0x54, 0x1f, 0x2b, 0xbc, 0xf0,
- 0x18, 0x86, 0x79, 0x6e, 0xc7, 0x05, 0xc7, 0x5c, 0x35, 0x2d, 0xf2, 0x0c, 0x3c, 0x55, 0x9d, 0x7a,
- 0x58, 0x9b, 0x9c, 0x6a, 0x2c, 0x68, 0xb5, 0xbb, 0xb5, 0xf9, 0x58, 0x4d, 0x17, 0xe0, 0x6c, 0x14,
- 0x5d, 0x59, 0xac, 0x8d, 0xe5, 0xc8, 0x45, 0x20, 0x51, 0xf0, 0xbd, 0xca, 0xdc, 0xf4, 0x58, 0x9e,
- 0x28, 0x70, 0x3e, 0x0a, 0xaf, 0xcd, 0x2f, 0x3d, 0x98, 0x9f, 0x1a, 0x2b, 0xbc, 0xf0, 0x17, 0x73,
- 0x70, 0x21, 0x35, 0xfe, 0x2f, 0x51, 0xe1, 0xea, 0xd4, 0x6c, 0xa5, 0xbe, 0x54, 0x9b, 0xac, 0x4f,
- 0x55, 0xb4, 0xc9, 0x99, 0xc6, 0x64, 0x65, 0x69, 0xea, 0xee, 0x82, 0xf6, 0x7e, 0xe3, 0xee, 0xd4,
- 0xfc, 0x94, 0x56, 0x99, 0x1d, 0xeb, 0x23, 0xcf, 0xc3, 0x78, 0x06, 0x4d, 0x7d, 0x6a, 0xf2, 0x81,
- 0x56, 0x5b, 0x7a, 0x7f, 0x2c, 0x47, 0x9e, 0x83, 0x67, 0x32, 0x89, 0xd8, 0xef, 0xb1, 0x3c, 0xb9,
- 0x0a, 0x97, 0xb3, 0x48, 0xde, 0x9b, 0x1d, 0x2b, 0xbc, 0xf0, 0xf3, 0x39, 0x20, 0xc9, 0x00, 0xae,
- 0xe4, 0x59, 0xb8, 0xc2, 0xf4, 0xa2, 0x91, 0xdd, 0xc0, 0xe7, 0xe0, 0x99, 0x54, 0x0a, 0xa9, 0x79,
- 0xe3, 0xf0, 0x74, 0x06, 0x89, 0x68, 0xdc, 0x15, 0x50, 0xd2, 0x09, 0xb0, 0x69, 0xbf, 0x95, 0x83,
- 0x0b, 0xa9, 0x1e, 0x1a, 0xe4, 0x3a, 0x7c, 0xa2, 0x52, 0x9d, 0x63, 0x7d, 0x33, 0xb9, 0x54, 0x5b,
- 0x98, 0xaf, 0x37, 0xe6, 0xa6, 0x2b, 0x0d, 0xa6, 0x7d, 0x0f, 0xea, 0xb1, 0xde, 0xbc, 0x06, 0x6a,
- 0x0f, 0xca, 0xc9, 0x99, 0xca, 0xfc, 0x5d, 0x36, 0xfc, 0xc8, 0x27, 0xe0, 0xd9, 0x4c, 0xba, 0xa9,
- 0xf9, 0xca, 0xc4, 0xec, 0x54, 0x75, 0x2c, 0x4f, 0x3e, 0x09, 0xcf, 0x65, 0x52, 0x55, 0x6b, 0x75,
- 0x4e, 0x56, 0x98, 0xa8, 0x7e, 0xe7, 0x7f, 0xba, 0xda, 0xf7, 0x9d, 0x3f, 0xbc, 0x9a, 0xfb, 0xfb,
- 0x7f, 0x78, 0x35, 0xf7, 0x4f, 0xff, 0xf0, 0x6a, 0xee, 0x8b, 0xb7, 0xf7, 0x12, 0x98, 0x97, 0x4f,
- 0x5b, 0xcb, 0x25, 0xbc, 0x2d, 0x7d, 0xe5, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x3c, 0x03, 0xd5,
- 0x2c, 0xde, 0x7b, 0x01, 0x00,
+ 0xe0, 0x87, 0x8d, 0xc3, 0x20, 0x0f, 0x6e, 0xc7, 0x85, 0x86, 0x2e, 0x0c, 0x1a, 0x70, 0x10, 0xca,
+ 0xeb, 0x12, 0x08, 0xef, 0x0a, 0xee, 0xd5, 0xad, 0x89, 0x5f, 0xea, 0x57, 0x0b, 0x69, 0x59, 0x4f,
+ 0x0e, 0xa5, 0x68, 0xe1, 0xb4, 0x9a, 0xdf, 0xd7, 0xb4, 0x7a, 0xce, 0xea, 0xb4, 0xea, 0x7a, 0xbb,
+ 0x5d, 0x5f, 0x35, 0x9b, 0xf8, 0xac, 0x0a, 0x17, 0x3e, 0x6d, 0xd8, 0xea, 0xb4, 0xca, 0xed, 0xf6,
+ 0x34, 0x07, 0x92, 0x17, 0x60, 0x8c, 0xd1, 0x61, 0x27, 0x05, 0x94, 0x45, 0xa4, 0x64, 0x0c, 0x30,
+ 0x3a, 0xac, 0x4f, 0xfb, 0x14, 0xf4, 0x0b, 0x9e, 0x7c, 0xad, 0xea, 0xd5, 0xfa, 0x38, 0x33, 0x97,
+ 0xf5, 0x5c, 0xc0, 0x86, 0x4f, 0xae, 0xbd, 0xda, 0x80, 0x5f, 0x1e, 0x63, 0x20, 0x5b, 0x9d, 0x16,
+ 0x8f, 0x88, 0xd5, 0x87, 0xc8, 0xe0, 0x37, 0xb9, 0x0e, 0x23, 0x8c, 0x4b, 0x20, 0x30, 0x1e, 0x36,
+ 0xb6, 0x57, 0x8b, 0x41, 0xc9, 0x1d, 0xb8, 0x10, 0x81, 0x70, 0x1b, 0x94, 0x3f, 0x13, 0xe8, 0xd5,
+ 0x52, 0x71, 0xea, 0x6f, 0x17, 0xa2, 0xb9, 0x58, 0x8e, 0xa1, 0x23, 0x2e, 0x43, 0x9f, 0xed, 0xac,
+ 0xd5, 0x3b, 0x4e, 0x53, 0x8c, 0xbd, 0x92, 0xed, 0xac, 0x2d, 0x3b, 0x4d, 0x72, 0x11, 0x4a, 0xac,
+ 0x77, 0x4c, 0x43, 0x0c, 0xb1, 0x5e, 0xbd, 0xdd, 0xae, 0x1a, 0xa4, 0xcc, 0x3b, 0x04, 0x43, 0x8e,
+ 0xd6, 0x1b, 0xb8, 0xb5, 0xe7, 0x4e, 0x09, 0xbd, 0x7c, 0xc5, 0x4b, 0x20, 0xb1, 0x9f, 0x30, 0x10,
+ 0x29, 0x3f, 0x08, 0x88, 0xb1, 0x30, 0x70, 0x5b, 0x62, 0xf0, 0x3e, 0x89, 0xb3, 0x10, 0xc8, 0x90,
+ 0x05, 0xdf, 0xc4, 0x18, 0xa4, 0x02, 0x24, 0xa4, 0x6a, 0xd9, 0x86, 0xb9, 0x6a, 0x52, 0xfe, 0xaa,
+ 0xa3, 0x97, 0x5f, 0xfc, 0x26, 0xb1, 0xda, 0xa8, 0xcf, 0x64, 0x4e, 0x40, 0xc8, 0x5b, 0x5c, 0x09,
+ 0x39, 0x1d, 0xae, 0x7d, 0xbc, 0x6f, 0xb9, 0x9d, 0x16, 0x43, 0xa1, 0x66, 0x62, 0x79, 0x5c, 0x08,
+ 0xd5, 0xbf, 0x5a, 0x4c, 0x26, 0xe4, 0x39, 0x16, 0xbb, 0x66, 0x06, 0x40, 0xe4, 0xdb, 0x0a, 0x2f,
+ 0xd7, 0x02, 0x8f, 0xf3, 0x10, 0x93, 0xc1, 0x43, 0x2a, 0x4b, 0x6e, 0x42, 0x3f, 0xff, 0xa2, 0x6a,
+ 0x45, 0xd8, 0x3b, 0xe8, 0x22, 0xe6, 0xb6, 0xcd, 0xd5, 0x55, 0xf4, 0x27, 0x0b, 0xd0, 0xe4, 0x3a,
+ 0xf4, 0x55, 0xe6, 0x6b, 0xb5, 0xf2, 0xbc, 0x7f, 0x53, 0x8c, 0xef, 0x4b, 0x0c, 0xcb, 0xad, 0xbb,
+ 0xba, 0xe5, 0x6a, 0x3e, 0x92, 0x3c, 0x0f, 0xa5, 0xea, 0x22, 0x92, 0xf1, 0x57, 0x93, 0x83, 0x3b,
+ 0xdb, 0xe3, 0x7d, 0x66, 0x9b, 0x53, 0x09, 0x14, 0xd6, 0xfb, 0xb0, 0x5a, 0x91, 0xdc, 0x25, 0x78,
+ 0xbd, 0x8f, 0x4d, 0x03, 0xaf, 0x9d, 0xb5, 0x00, 0x4d, 0x5e, 0x85, 0xa1, 0x1a, 0x75, 0x4c, 0xbd,
+ 0x39, 0xdf, 0xc1, 0xad, 0xa2, 0x14, 0x4a, 0xd1, 0x45, 0x78, 0xdd, 0x42, 0x84, 0x16, 0x21, 0x23,
+ 0x57, 0xa1, 0x38, 0x63, 0x5a, 0xfe, 0x13, 0x06, 0xf4, 0x71, 0x5f, 0x37, 0x2d, 0x4f, 0x43, 0x28,
+ 0x79, 0x1e, 0x0a, 0xf7, 0x97, 0xaa, 0xc2, 0x13, 0x0c, 0x79, 0x7d, 0xe0, 0x45, 0xc2, 0x32, 0xde,
+ 0x5f, 0xaa, 0x92, 0x57, 0x61, 0x80, 0x2d, 0x62, 0xd4, 0x6a, 0x50, 0x57, 0x19, 0xc4, 0x8f, 0xe1,
+ 0x61, 0x04, 0x7d, 0xa0, 0xec, 0xd3, 0x11, 0x50, 0xaa, 0xff, 0x47, 0x3e, 0x3d, 0x63, 0xd2, 0x31,
+ 0x0c, 0xf5, 0x03, 0xde, 0x22, 0xc7, 0x14, 0xac, 0x78, 0x08, 0x05, 0x5b, 0x85, 0x73, 0x65, 0xa3,
+ 0x65, 0x5a, 0x65, 0xfc, 0xe9, 0xce, 0x4d, 0x97, 0x71, 0xea, 0x90, 0x9e, 0xe7, 0xc5, 0xd0, 0xe2,
+ 0x7b, 0x78, 0xc0, 0x5f, 0x86, 0xaa, 0xeb, 0x1c, 0x57, 0x6f, 0xad, 0xea, 0xf5, 0x06, 0x4f, 0x36,
+ 0xa4, 0xc5, 0x99, 0xaa, 0x3f, 0x9d, 0xdf, 0x25, 0xc9, 0xd3, 0x69, 0x94, 0xbe, 0xfa, 0x8d, 0x7c,
+ 0xf7, 0x3c, 0x5b, 0xa7, 0x52, 0x28, 0x7f, 0x94, 0x4f, 0xc9, 0x7a, 0x75, 0x28, 0x49, 0xdc, 0x84,
+ 0x7e, 0xce, 0x26, 0x70, 0xe3, 0xc5, 0xd9, 0x8c, 0x2b, 0x2b, 0xce, 0xa2, 0x3e, 0x9a, 0xcc, 0xc3,
+ 0x85, 0xf2, 0xea, 0x2a, 0x6d, 0x78, 0x61, 0xe8, 0xe7, 0xf9, 0x30, 0x08, 0x2b, 0x0f, 0x75, 0x2b,
+ 0xf0, 0x61, 0xe8, 0x68, 0x0c, 0x36, 0x92, 0x5a, 0x8e, 0x2c, 0xc1, 0xa5, 0x38, 0xbc, 0xc6, 0xb7,
+ 0x00, 0x45, 0x29, 0xfa, 0x6d, 0x82, 0x23, 0xff, 0x4f, 0xcb, 0x28, 0x9b, 0xd6, 0x4a, 0x9c, 0xaa,
+ 0x7b, 0xbb, 0xb5, 0x12, 0xe7, 0xed, 0xd4, 0x72, 0xea, 0x37, 0x0b, 0x72, 0x72, 0xb0, 0xd3, 0xeb,
+ 0x70, 0x75, 0x37, 0xe2, 0x66, 0xbd, 0xd7, 0x21, 0xf3, 0xaa, 0x88, 0x20, 0x62, 0x74, 0x1c, 0xdf,
+ 0x23, 0x31, 0x88, 0x60, 0x80, 0x40, 0x79, 0x1d, 0x0a, 0x28, 0x49, 0x15, 0x8a, 0x65, 0x67, 0x8d,
+ 0x9b, 0xb7, 0xbb, 0x3d, 0xaa, 0xd2, 0x9d, 0x35, 0x37, 0xfd, 0x51, 0x15, 0x63, 0xa1, 0xfe, 0x99,
+ 0x7c, 0x97, 0x7c, 0x5e, 0xa7, 0x72, 0x12, 0xf9, 0xf3, 0xf9, 0xac, 0xcc, 0x5c, 0x27, 0xd5, 0x75,
+ 0xec, 0x23, 0x16, 0xce, 0xc9, 0xf6, 0xab, 0x3b, 0x42, 0xe1, 0xfc, 0x7e, 0x3e, 0x2b, 0xcd, 0xd8,
+ 0x99, 0x70, 0x0e, 0x36, 0x41, 0xa6, 0x8a, 0xf4, 0x14, 0xdb, 0xdc, 0xb2, 0x2a, 0xf4, 0x1e, 0xd0,
+ 0x7d, 0x2a, 0x4d, 0xa4, 0x67, 0x43, 0xf8, 0x50, 0x5a, 0xfa, 0x07, 0xf9, 0xcc, 0x74, 0x7a, 0x67,
+ 0x32, 0x3d, 0x4a, 0x99, 0x9e, 0x0d, 0xfd, 0x43, 0x0d, 0xfd, 0x54, 0x99, 0x9e, 0x8d, 0xfd, 0x43,
+ 0xe9, 0xe9, 0xef, 0xe5, 0xd3, 0x13, 0x46, 0x1e, 0x83, 0x92, 0x1e, 0x85, 0x87, 0xa3, 0xdf, 0x0d,
+ 0xc5, 0x43, 0x75, 0x43, 0xef, 0x21, 0xac, 0xa8, 0xa4, 0x40, 0x8f, 0x6d, 0xd4, 0x7f, 0xbf, 0x0a,
+ 0xf4, 0x08, 0x86, 0xfc, 0x69, 0x16, 0xe8, 0x4f, 0x16, 0x92, 0x49, 0x52, 0x4f, 0xeb, 0x9a, 0xe4,
+ 0x1c, 0x70, 0x4d, 0xf2, 0xcb, 0x91, 0x77, 0xe1, 0x5c, 0x28, 0x4b, 0x39, 0xf2, 0x17, 0x5e, 0x1f,
+ 0x35, 0x18, 0xaa, 0xfe, 0x01, 0xc3, 0x89, 0x10, 0x35, 0x71, 0x6a, 0xf5, 0x7b, 0x85, 0x64, 0xa6,
+ 0xd9, 0xb3, 0xde, 0x38, 0x60, 0x6f, 0x2c, 0xc3, 0xa5, 0xc9, 0x8e, 0xe3, 0x50, 0xcb, 0x4b, 0xef,
+ 0x14, 0x3c, 0xbc, 0x6f, 0x70, 0x8a, 0x7a, 0xb2, 0x73, 0x32, 0x0a, 0x33, 0xb6, 0xe2, 0x75, 0x43,
+ 0x9c, 0x6d, 0x5f, 0xc8, 0xb6, 0xc3, 0x29, 0xd2, 0xd8, 0xa6, 0x17, 0x56, 0x7f, 0x27, 0x9f, 0xcc,
+ 0x0d, 0x7c, 0xd6, 0xf5, 0x07, 0xeb, 0x7a, 0xf5, 0xab, 0x85, 0x78, 0x7e, 0xe4, 0xb3, 0x05, 0xe2,
+ 0xe0, 0xdd, 0xe1, 0x4b, 0x12, 0xc7, 0x8d, 0xf4, 0x15, 0x3e, 0x3c, 0xeb, 0x2b, 0x7c, 0xbc, 0xfa,
+ 0x2b, 0xc5, 0x78, 0xae, 0xe9, 0xb3, 0xee, 0x38, 0xbe, 0xee, 0x20, 0x0b, 0x70, 0x41, 0xcc, 0x6d,
+ 0x3e, 0x08, 0x53, 0x40, 0x88, 0xf9, 0x8b, 0x67, 0x92, 0x13, 0xd3, 0x62, 0xc7, 0xa5, 0x4e, 0xdd,
+ 0xd3, 0xdd, 0x8d, 0x3a, 0xe6, 0x8c, 0xd0, 0x52, 0x0b, 0x32, 0x86, 0x62, 0x56, 0x8b, 0x32, 0xec,
+ 0x0f, 0x19, 0xfa, 0x13, 0x62, 0x82, 0x61, 0x5a, 0x41, 0xf5, 0x37, 0x73, 0x30, 0x1a, 0xff, 0x1c,
+ 0x72, 0x0b, 0xfa, 0xd9, 0xef, 0xe0, 0xd9, 0xbd, 0x94, 0xa7, 0x9a, 0x73, 0xe4, 0x57, 0xf2, 0x3e,
+ 0x0d, 0x79, 0x0d, 0x06, 0xd0, 0xfb, 0x01, 0x0b, 0xe4, 0xc3, 0x68, 0x07, 0x61, 0x01, 0x4c, 0x9e,
+ 0xca, 0x8b, 0x85, 0xa4, 0xe4, 0x2d, 0x18, 0xac, 0x86, 0x6e, 0x5e, 0xe2, 0xce, 0x0b, 0xbd, 0x4b,
+ 0xa5, 0x92, 0x21, 0x81, 0x26, 0x53, 0xab, 0xdf, 0xce, 0xc7, 0x73, 0xa2, 0x9f, 0xa9, 0xfa, 0xc1,
+ 0x54, 0xfd, 0x85, 0x39, 0xae, 0xea, 0x0f, 0x4c, 0xcb, 0x20, 0x4f, 0xc1, 0xc5, 0xe5, 0xda, 0x94,
+ 0x56, 0x7f, 0x50, 0x9d, 0xaf, 0xd4, 0x97, 0xe7, 0x6b, 0x8b, 0x53, 0x93, 0xd5, 0xe9, 0xea, 0x54,
+ 0x65, 0xb4, 0x87, 0x9c, 0x87, 0x73, 0x21, 0x6a, 0x66, 0x79, 0xae, 0x3c, 0x3f, 0x9a, 0x23, 0x63,
+ 0x30, 0x1c, 0x02, 0x27, 0x16, 0x96, 0x46, 0xf3, 0x2f, 0x7c, 0x0a, 0x06, 0xd1, 0xbd, 0x8d, 0x5f,
+ 0xc7, 0x93, 0x21, 0xe8, 0x5f, 0x98, 0xa8, 0x4d, 0x69, 0x0f, 0x91, 0x09, 0x40, 0xa9, 0x32, 0x35,
+ 0xcf, 0x18, 0xe6, 0x5e, 0xf8, 0xbf, 0x73, 0x00, 0xb5, 0xe9, 0xa5, 0x45, 0x41, 0x38, 0x08, 0x7d,
+ 0xd5, 0xf9, 0x87, 0xe5, 0xd9, 0x2a, 0xa3, 0xeb, 0x87, 0xe2, 0xc2, 0xe2, 0x14, 0xab, 0x61, 0x00,
+ 0x7a, 0x27, 0x67, 0x17, 0x6a, 0x53, 0xa3, 0x79, 0x06, 0xd4, 0xa6, 0xca, 0x95, 0xd1, 0x02, 0x03,
+ 0x3e, 0xd2, 0xaa, 0x4b, 0x53, 0xa3, 0x45, 0xf6, 0xe7, 0x6c, 0x6d, 0xa9, 0xbc, 0x34, 0xda, 0xcb,
+ 0xfe, 0x9c, 0xc6, 0x3f, 0x4b, 0x8c, 0x59, 0x6d, 0x6a, 0x09, 0x7f, 0xf4, 0xb1, 0x26, 0x4c, 0xfb,
+ 0xbf, 0xfa, 0x19, 0x8a, 0xb1, 0xae, 0x54, 0xb5, 0xd1, 0x01, 0xf6, 0x83, 0xb1, 0x64, 0x3f, 0x80,
+ 0x35, 0x4e, 0x9b, 0x9a, 0x5b, 0x78, 0x38, 0x35, 0x3a, 0xc8, 0x78, 0xcd, 0x3d, 0x60, 0xe0, 0x21,
+ 0xf6, 0xa7, 0x36, 0xc7, 0xfe, 0x1c, 0x66, 0x9c, 0xb4, 0xa9, 0xf2, 0xec, 0x62, 0x79, 0x69, 0x66,
+ 0x74, 0x84, 0xb5, 0x07, 0x79, 0x9e, 0xe3, 0x25, 0xe7, 0xcb, 0x73, 0x53, 0xa3, 0xa3, 0x82, 0xa6,
+ 0x32, 0x5b, 0x9d, 0x7f, 0x30, 0x3a, 0x86, 0x0d, 0x79, 0x7f, 0x0e, 0x7f, 0x10, 0x56, 0x00, 0xff,
+ 0x3a, 0xff, 0xc2, 0x0f, 0x42, 0x69, 0xa1, 0x86, 0xa3, 0xe0, 0x32, 0x9c, 0x5f, 0xa8, 0xd5, 0x97,
+ 0xde, 0x5f, 0x9c, 0x8a, 0xc9, 0x7b, 0x0c, 0x86, 0x7d, 0xc4, 0x6c, 0x75, 0x7e, 0xf9, 0x0b, 0x5c,
+ 0xda, 0x3e, 0x68, 0xae, 0x3c, 0xb9, 0x50, 0x1b, 0xcd, 0xb3, 0x5e, 0xf1, 0x41, 0x8f, 0xaa, 0xf3,
+ 0x95, 0x85, 0x47, 0xb5, 0xd1, 0xc2, 0x0b, 0x8f, 0x61, 0x88, 0xe7, 0xce, 0x5c, 0x70, 0xcc, 0x35,
+ 0xd3, 0x22, 0xcf, 0xc0, 0x53, 0x95, 0xa9, 0x87, 0xd5, 0xc9, 0xa9, 0xfa, 0x82, 0x56, 0xbd, 0x57,
+ 0x9d, 0x8f, 0xd5, 0x74, 0x11, 0xc6, 0xa2, 0xe8, 0xf2, 0x62, 0x75, 0x34, 0x47, 0x2e, 0x01, 0x89,
+ 0x82, 0xef, 0x97, 0xe7, 0xa6, 0x47, 0xf3, 0x44, 0x81, 0x0b, 0x51, 0x78, 0x75, 0x7e, 0x69, 0x79,
+ 0x7e, 0x6a, 0xb4, 0xf0, 0xc2, 0x5f, 0xc9, 0xc1, 0xc5, 0xd4, 0xf8, 0xca, 0x44, 0x85, 0x6b, 0x53,
+ 0xb3, 0xe5, 0xda, 0x52, 0x75, 0xb2, 0x36, 0x55, 0xd6, 0x26, 0x67, 0xea, 0x93, 0xe5, 0xa5, 0xa9,
+ 0x7b, 0x0b, 0xda, 0xfb, 0xf5, 0x7b, 0x53, 0xf3, 0x53, 0x5a, 0x79, 0x76, 0xb4, 0x87, 0x3c, 0x0f,
+ 0xe3, 0x19, 0x34, 0xb5, 0xa9, 0xc9, 0x65, 0xad, 0xba, 0xf4, 0xfe, 0x68, 0x8e, 0x3c, 0x07, 0xcf,
+ 0x64, 0x12, 0xb1, 0xdf, 0xa3, 0x79, 0x72, 0x0d, 0xae, 0x64, 0x91, 0xbc, 0x37, 0x3b, 0x5a, 0x78,
+ 0xe1, 0xe7, 0x72, 0x40, 0x92, 0x01, 0x72, 0xc9, 0xb3, 0x70, 0x95, 0xe9, 0x45, 0x3d, 0xbb, 0x81,
+ 0xcf, 0xc1, 0x33, 0xa9, 0x14, 0x52, 0xf3, 0xc6, 0xe1, 0xe9, 0x0c, 0x12, 0xd1, 0xb8, 0xab, 0xa0,
+ 0xa4, 0x13, 0x60, 0xd3, 0x7e, 0x23, 0x07, 0x17, 0x53, 0x3d, 0x60, 0xc8, 0x0d, 0xf8, 0x44, 0xb9,
+ 0x32, 0xc7, 0xfa, 0x66, 0x72, 0xa9, 0xba, 0x30, 0x5f, 0xab, 0xcf, 0x4d, 0x97, 0xeb, 0x4c, 0xfb,
+ 0x96, 0x6b, 0xb1, 0xde, 0xbc, 0x0e, 0x6a, 0x17, 0xca, 0xc9, 0x99, 0xf2, 0xfc, 0x3d, 0x36, 0xfc,
+ 0xc8, 0x27, 0xe0, 0xd9, 0x4c, 0xba, 0xa9, 0xf9, 0xf2, 0xc4, 0xec, 0x54, 0x65, 0x34, 0x4f, 0x3e,
+ 0x09, 0xcf, 0x65, 0x52, 0x55, 0xaa, 0x35, 0x4e, 0x56, 0x98, 0xa8, 0x7c, 0xfb, 0x7f, 0xba, 0xd6,
+ 0xf3, 0xed, 0x3f, 0xbc, 0x96, 0xfb, 0xfd, 0x3f, 0xbc, 0x96, 0xfb, 0x67, 0x7f, 0x78, 0x2d, 0xf7,
+ 0xc5, 0x3b, 0xfb, 0x09, 0x7c, 0xcc, 0xa7, 0xad, 0x95, 0x12, 0xde, 0x46, 0xbf, 0xf2, 0xff, 0x07,
+ 0x00, 0x00, 0xff, 0xff, 0xac, 0xbd, 0xf2, 0x0f, 0x3e, 0x7d, 0x01, 0x00,
}
func (m *Metadata) Marshal() (dAtA []byte, err error) {
@@ -36577,6 +36589,16 @@ func (m *AutoUpdateConfigCreate) MarshalToSizedBuffer(dAtA []byte) (int, error)
i -= len(m.XXX_unrecognized)
copy(dAtA[i:], m.XXX_unrecognized)
}
+ {
+ size, err := m.Status.MarshalToSizedBuffer(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = encodeVarintEvents(dAtA, i, uint64(size))
+ }
+ i--
+ dAtA[i] = 0x2a
{
size, err := m.ConnectionMetadata.MarshalToSizedBuffer(dAtA[:i])
if err != nil {
@@ -36644,6 +36666,16 @@ func (m *AutoUpdateConfigUpdate) MarshalToSizedBuffer(dAtA []byte) (int, error)
i -= len(m.XXX_unrecognized)
copy(dAtA[i:], m.XXX_unrecognized)
}
+ {
+ size, err := m.ResourceMetadata.MarshalToSizedBuffer(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = encodeVarintEvents(dAtA, i, uint64(size))
+ }
+ i--
+ dAtA[i] = 0x2a
{
size, err := m.ConnectionMetadata.MarshalToSizedBuffer(dAtA[:i])
if err != nil {
@@ -36711,6 +36743,16 @@ func (m *AutoUpdateConfigDelete) MarshalToSizedBuffer(dAtA []byte) (int, error)
i -= len(m.XXX_unrecognized)
copy(dAtA[i:], m.XXX_unrecognized)
}
+ {
+ size, err := m.Status.MarshalToSizedBuffer(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = encodeVarintEvents(dAtA, i, uint64(size))
+ }
+ i--
+ dAtA[i] = 0x2a
{
size, err := m.ConnectionMetadata.MarshalToSizedBuffer(dAtA[:i])
if err != nil {
@@ -36778,6 +36820,16 @@ func (m *AutoUpdateVersionCreate) MarshalToSizedBuffer(dAtA []byte) (int, error)
i -= len(m.XXX_unrecognized)
copy(dAtA[i:], m.XXX_unrecognized)
}
+ {
+ size, err := m.Status.MarshalToSizedBuffer(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = encodeVarintEvents(dAtA, i, uint64(size))
+ }
+ i--
+ dAtA[i] = 0x2a
{
size, err := m.ConnectionMetadata.MarshalToSizedBuffer(dAtA[:i])
if err != nil {
@@ -36845,6 +36897,16 @@ func (m *AutoUpdateVersionUpdate) MarshalToSizedBuffer(dAtA []byte) (int, error)
i -= len(m.XXX_unrecognized)
copy(dAtA[i:], m.XXX_unrecognized)
}
+ {
+ size, err := m.ResourceMetadata.MarshalToSizedBuffer(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = encodeVarintEvents(dAtA, i, uint64(size))
+ }
+ i--
+ dAtA[i] = 0x2a
{
size, err := m.ConnectionMetadata.MarshalToSizedBuffer(dAtA[:i])
if err != nil {
@@ -36912,6 +36974,16 @@ func (m *AutoUpdateVersionDelete) MarshalToSizedBuffer(dAtA []byte) (int, error)
i -= len(m.XXX_unrecognized)
copy(dAtA[i:], m.XXX_unrecognized)
}
+ {
+ size, err := m.Status.MarshalToSizedBuffer(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = encodeVarintEvents(dAtA, i, uint64(size))
+ }
+ i--
+ dAtA[i] = 0x2a
{
size, err := m.ConnectionMetadata.MarshalToSizedBuffer(dAtA[:i])
if err != nil {
@@ -45928,6 +46000,8 @@ func (m *AutoUpdateConfigCreate) Size() (n int) {
n += 1 + l + sovEvents(uint64(l))
l = m.ConnectionMetadata.Size()
n += 1 + l + sovEvents(uint64(l))
+ l = m.Status.Size()
+ n += 1 + l + sovEvents(uint64(l))
if m.XXX_unrecognized != nil {
n += len(m.XXX_unrecognized)
}
@@ -45948,6 +46022,8 @@ func (m *AutoUpdateConfigUpdate) Size() (n int) {
n += 1 + l + sovEvents(uint64(l))
l = m.ConnectionMetadata.Size()
n += 1 + l + sovEvents(uint64(l))
+ l = m.ResourceMetadata.Size()
+ n += 1 + l + sovEvents(uint64(l))
if m.XXX_unrecognized != nil {
n += len(m.XXX_unrecognized)
}
@@ -45968,6 +46044,8 @@ func (m *AutoUpdateConfigDelete) Size() (n int) {
n += 1 + l + sovEvents(uint64(l))
l = m.ConnectionMetadata.Size()
n += 1 + l + sovEvents(uint64(l))
+ l = m.Status.Size()
+ n += 1 + l + sovEvents(uint64(l))
if m.XXX_unrecognized != nil {
n += len(m.XXX_unrecognized)
}
@@ -45988,6 +46066,8 @@ func (m *AutoUpdateVersionCreate) Size() (n int) {
n += 1 + l + sovEvents(uint64(l))
l = m.ConnectionMetadata.Size()
n += 1 + l + sovEvents(uint64(l))
+ l = m.Status.Size()
+ n += 1 + l + sovEvents(uint64(l))
if m.XXX_unrecognized != nil {
n += len(m.XXX_unrecognized)
}
@@ -46008,6 +46088,8 @@ func (m *AutoUpdateVersionUpdate) Size() (n int) {
n += 1 + l + sovEvents(uint64(l))
l = m.ConnectionMetadata.Size()
n += 1 + l + sovEvents(uint64(l))
+ l = m.ResourceMetadata.Size()
+ n += 1 + l + sovEvents(uint64(l))
if m.XXX_unrecognized != nil {
n += len(m.XXX_unrecognized)
}
@@ -46028,6 +46110,8 @@ func (m *AutoUpdateVersionDelete) Size() (n int) {
n += 1 + l + sovEvents(uint64(l))
l = m.ConnectionMetadata.Size()
n += 1 + l + sovEvents(uint64(l))
+ l = m.Status.Size()
+ n += 1 + l + sovEvents(uint64(l))
if m.XXX_unrecognized != nil {
n += len(m.XXX_unrecognized)
}
@@ -101541,6 +101625,39 @@ func (m *AutoUpdateConfigCreate) Unmarshal(dAtA []byte) error {
return err
}
iNdEx = postIndex
+ case 5:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowEvents
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return ErrInvalidLengthEvents
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return ErrInvalidLengthEvents
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if err := m.Status.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipEvents(dAtA[iNdEx:])
@@ -101724,6 +101841,39 @@ func (m *AutoUpdateConfigUpdate) Unmarshal(dAtA []byte) error {
return err
}
iNdEx = postIndex
+ case 5:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field ResourceMetadata", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowEvents
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return ErrInvalidLengthEvents
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return ErrInvalidLengthEvents
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if err := m.ResourceMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipEvents(dAtA[iNdEx:])
@@ -101907,6 +102057,39 @@ func (m *AutoUpdateConfigDelete) Unmarshal(dAtA []byte) error {
return err
}
iNdEx = postIndex
+ case 5:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowEvents
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return ErrInvalidLengthEvents
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return ErrInvalidLengthEvents
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if err := m.Status.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipEvents(dAtA[iNdEx:])
@@ -102090,6 +102273,39 @@ func (m *AutoUpdateVersionCreate) Unmarshal(dAtA []byte) error {
return err
}
iNdEx = postIndex
+ case 5:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowEvents
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return ErrInvalidLengthEvents
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return ErrInvalidLengthEvents
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if err := m.Status.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipEvents(dAtA[iNdEx:])
@@ -102273,6 +102489,39 @@ func (m *AutoUpdateVersionUpdate) Unmarshal(dAtA []byte) error {
return err
}
iNdEx = postIndex
+ case 5:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field ResourceMetadata", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowEvents
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return ErrInvalidLengthEvents
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return ErrInvalidLengthEvents
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if err := m.ResourceMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipEvents(dAtA[iNdEx:])
@@ -102456,6 +102705,39 @@ func (m *AutoUpdateVersionDelete) Unmarshal(dAtA []byte) error {
return err
}
iNdEx = postIndex
+ case 5:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowEvents
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return ErrInvalidLengthEvents
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return ErrInvalidLengthEvents
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if err := m.Status.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipEvents(dAtA[iNdEx:])
diff --git a/api/types/events/oneof.go b/api/types/events/oneof.go
index 1cb8cad1aa509..54db0c936bb67 100644
--- a/api/types/events/oneof.go
+++ b/api/types/events/oneof.go
@@ -760,6 +760,31 @@ func ToOneOf(in AuditEvent) (*OneOf, error) {
out.Event = &OneOf_UserTaskDelete{
UserTaskDelete: e,
}
+ case *AutoUpdateConfigCreate:
+ out.Event = &OneOf_AutoUpdateConfigCreate{
+ AutoUpdateConfigCreate: e,
+ }
+ case *AutoUpdateConfigUpdate:
+ out.Event = &OneOf_AutoUpdateConfigUpdate{
+ AutoUpdateConfigUpdate: e,
+ }
+ case *AutoUpdateConfigDelete:
+ out.Event = &OneOf_AutoUpdateConfigDelete{
+ AutoUpdateConfigDelete: e,
+ }
+
+ case *AutoUpdateVersionCreate:
+ out.Event = &OneOf_AutoUpdateVersionCreate{
+ AutoUpdateVersionCreate: e,
+ }
+ case *AutoUpdateVersionUpdate:
+ out.Event = &OneOf_AutoUpdateVersionUpdate{
+ AutoUpdateVersionUpdate: e,
+ }
+ case *AutoUpdateVersionDelete:
+ out.Event = &OneOf_AutoUpdateVersionDelete{
+ AutoUpdateVersionDelete: e,
+ }
default:
slog.ErrorContext(context.Background(), "Attempted to convert dynamic event of unknown type into protobuf event.", "event_type", in.GetType())
unknown := &Unknown{}
diff --git a/build.assets/macos/tsh/tsh.app/Contents/Library/LaunchDaemons/com.gravitational.teleport.tsh.vnetd.plist b/build.assets/macos/tsh/tsh.app/Contents/Library/LaunchDaemons/com.gravitational.teleport.tsh.vnetd.plist
index 5bd6b0884a1ce..6ee39856cb2af 100644
--- a/build.assets/macos/tsh/tsh.app/Contents/Library/LaunchDaemons/com.gravitational.teleport.tsh.vnetd.plist
+++ b/build.assets/macos/tsh/tsh.app/Contents/Library/LaunchDaemons/com.gravitational.teleport.tsh.vnetd.plist
@@ -22,5 +22,12 @@
/var/log/vnet.log
ThrottleInterval
5
+ EnvironmentVariables
+
+
+ TELEPORT_TOOLS_VERSION
+ off
+
diff --git a/build.assets/macos/tshdev/tsh.app/Contents/Library/LaunchDaemons/com.goteleport.tshdev.vnetd.plist b/build.assets/macos/tshdev/tsh.app/Contents/Library/LaunchDaemons/com.goteleport.tshdev.vnetd.plist
index 8b51b2a044191..90d6139ac96ad 100644
--- a/build.assets/macos/tshdev/tsh.app/Contents/Library/LaunchDaemons/com.goteleport.tshdev.vnetd.plist
+++ b/build.assets/macos/tshdev/tsh.app/Contents/Library/LaunchDaemons/com.goteleport.tshdev.vnetd.plist
@@ -22,5 +22,12 @@
/var/log/vnet.log
ThrottleInterval
5
+ EnvironmentVariables
+
+
+ TELEPORT_TOOLS_VERSION
+ off
+
diff --git a/integration/autoupdate/tools/helper_test.go b/integration/autoupdate/tools/helper_test.go
new file mode 100644
index 0000000000000..a3c37a9e94b55
--- /dev/null
+++ b/integration/autoupdate/tools/helper_test.go
@@ -0,0 +1,89 @@
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package tools_test
+
+import (
+ "net/http"
+ "sync"
+)
+
+type limitRequest struct {
+ limit int64
+ lock chan struct{}
+}
+
+// limitedResponseWriter wraps http.ResponseWriter and enforces a write limit
+// then block the response until signal is received.
+type limitedResponseWriter struct {
+ requests chan limitRequest
+}
+
+// newLimitedResponseWriter creates a new limitedResponseWriter with the lock.
+func newLimitedResponseWriter() *limitedResponseWriter {
+ lw := &limitedResponseWriter{
+ requests: make(chan limitRequest, 10),
+ }
+ return lw
+}
+
+// Wrap wraps response writer if limit was previously requested, if not, return original one.
+func (lw *limitedResponseWriter) Wrap(w http.ResponseWriter) http.ResponseWriter {
+ select {
+ case request := <-lw.requests:
+ return &wrapper{
+ ResponseWriter: w,
+ request: request,
+ }
+ default:
+ return w
+ }
+}
+
+// SetLimitRequest sends limit request to the pool to wrap next response writer with defined limits.
+func (lw *limitedResponseWriter) SetLimitRequest(limit limitRequest) {
+ lw.requests <- limit
+}
+
+// wrapper wraps the http response writer to control writing operation by blocking it.
+type wrapper struct {
+ http.ResponseWriter
+
+ written int64
+ request limitRequest
+ released bool
+
+ mutex sync.Mutex
+}
+
+// Write writes data to the underlying ResponseWriter but respects the byte limit.
+func (lw *wrapper) Write(p []byte) (int, error) {
+ lw.mutex.Lock()
+ defer lw.mutex.Unlock()
+
+ if lw.written >= lw.request.limit && !lw.released {
+ // Send signal that lock is acquired and wait till it was released by response.
+ lw.request.lock <- struct{}{}
+ <-lw.request.lock
+ lw.released = true
+ }
+
+ n, err := lw.ResponseWriter.Write(p)
+ lw.written += int64(n)
+ return n, err
+}
diff --git a/integration/autoupdate/tools/helper_unix_test.go b/integration/autoupdate/tools/helper_unix_test.go
new file mode 100644
index 0000000000000..61ba0766b90d4
--- /dev/null
+++ b/integration/autoupdate/tools/helper_unix_test.go
@@ -0,0 +1,37 @@
+//go:build !windows
+
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package tools_test
+
+import (
+ "errors"
+ "syscall"
+
+ "github.com/gravitational/trace"
+)
+
+// sendInterrupt sends a SIGINT to the process.
+func sendInterrupt(pid int) error {
+ err := syscall.Kill(pid, syscall.SIGINT)
+ if errors.Is(err, syscall.ESRCH) {
+ return trace.BadParameter("can't find the process: %v", pid)
+ }
+ return trace.Wrap(err)
+}
diff --git a/integration/autoupdate/tools/helper_windows_test.go b/integration/autoupdate/tools/helper_windows_test.go
new file mode 100644
index 0000000000000..b2ede9ade8c19
--- /dev/null
+++ b/integration/autoupdate/tools/helper_windows_test.go
@@ -0,0 +1,42 @@
+//go:build windows
+
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package tools_test
+
+import (
+ "syscall"
+
+ "github.com/gravitational/trace"
+ "golang.org/x/sys/windows"
+)
+
+var (
+ kernel = windows.NewLazyDLL("kernel32.dll")
+ ctrlEvent = kernel.NewProc("GenerateConsoleCtrlEvent")
+)
+
+// sendInterrupt sends a Ctrl-Break event to the process.
+func sendInterrupt(pid int) error {
+ r, _, err := ctrlEvent.Call(uintptr(syscall.CTRL_BREAK_EVENT), uintptr(pid))
+ if r == 0 {
+ return trace.Wrap(err)
+ }
+ return nil
+}
diff --git a/integration/autoupdate/tools/main_test.go b/integration/autoupdate/tools/main_test.go
new file mode 100644
index 0000000000000..bbc3f559f65c0
--- /dev/null
+++ b/integration/autoupdate/tools/main_test.go
@@ -0,0 +1,174 @@
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package tools_test
+
+import (
+ "context"
+ "crypto/sha256"
+ "encoding/hex"
+ "errors"
+ "fmt"
+ "io"
+ "log"
+ "net/http"
+ "net/http/httptest"
+ "os"
+ "os/exec"
+ "path/filepath"
+ "runtime"
+ "strings"
+ "testing"
+
+ "github.com/gravitational/trace"
+
+ "github.com/gravitational/teleport/api/constants"
+ "github.com/gravitational/teleport/integration/helpers/archive"
+)
+
+const (
+ testBinaryName = "updater"
+ teleportToolsVersion = "TELEPORT_TOOLS_VERSION"
+)
+
+var (
+ // testVersions list of the pre-compiled binaries with encoded versions to check.
+ testVersions = []string{
+ "1.2.3",
+ "3.2.1",
+ }
+ limitedWriter = newLimitedResponseWriter()
+
+ toolsDir string
+ baseURL string
+)
+
+func TestMain(m *testing.M) {
+ ctx := context.Background()
+ tmp, err := os.MkdirTemp(os.TempDir(), testBinaryName)
+ if err != nil {
+ log.Fatalf("failed to create temporary directory: %v", err)
+ }
+
+ toolsDir, err = os.MkdirTemp(os.TempDir(), "tools")
+ if err != nil {
+ log.Fatalf("failed to create temporary directory: %v", err)
+ }
+
+ server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
+ filePath := filepath.Join(tmp, r.URL.Path)
+ switch {
+ case strings.HasSuffix(r.URL.Path, ".sha256"):
+ serve256File(w, r, strings.TrimSuffix(filePath, ".sha256"))
+ default:
+ http.ServeFile(limitedWriter.Wrap(w), r, filePath)
+ }
+ }))
+ baseURL = server.URL
+ for _, version := range testVersions {
+ if err := buildAndArchiveApps(ctx, tmp, toolsDir, version, server.URL); err != nil {
+ log.Fatalf("failed to build testing app binary archive: %v", err)
+ }
+ }
+
+ // Run tests after binary is built.
+ code := m.Run()
+
+ server.Close()
+ if err := os.RemoveAll(tmp); err != nil {
+ log.Fatalf("failed to remove temporary directory: %v", err)
+ }
+ if err := os.RemoveAll(toolsDir); err != nil {
+ log.Fatalf("failed to remove tools directory: %v", err)
+ }
+
+ os.Exit(code)
+}
+
+// serve256File calculates sha256 checksum for requested file.
+func serve256File(w http.ResponseWriter, _ *http.Request, filePath string) {
+ log.Printf("Calculating and serving file checksum: %s\n", filePath)
+
+ w.Header().Set("Content-Disposition", "attachment; filename=\""+filepath.Base(filePath)+".sha256\"")
+ w.Header().Set("Content-Type", "plain/text")
+
+ file, err := os.Open(filePath)
+ if errors.Is(err, os.ErrNotExist) {
+ http.Error(w, "file not found", http.StatusNotFound)
+ return
+ }
+ if err != nil {
+ http.Error(w, "failed to open file", http.StatusInternalServerError)
+ return
+ }
+ defer file.Close()
+
+ hash := sha256.New()
+ if _, err := io.Copy(hash, file); err != nil {
+ http.Error(w, "failed to write to hash", http.StatusInternalServerError)
+ return
+ }
+ if _, err := hex.NewEncoder(w).Write(hash.Sum(nil)); err != nil {
+ http.Error(w, "failed to write checksum", http.StatusInternalServerError)
+ }
+}
+
+// buildAndArchiveApps compiles the updater integration and pack it depends on platform is used.
+func buildAndArchiveApps(ctx context.Context, path string, toolsDir string, version string, baseURL string) error {
+ versionPath := filepath.Join(path, version)
+ for _, app := range []string{"tsh", "tctl"} {
+ output := filepath.Join(versionPath, app)
+ switch runtime.GOOS {
+ case constants.WindowsOS:
+ output = filepath.Join(versionPath, app+".exe")
+ case constants.DarwinOS:
+ output = filepath.Join(versionPath, app+".app", "Contents", "MacOS", app)
+ }
+ if err := buildBinary(output, toolsDir, version, baseURL); err != nil {
+ return trace.Wrap(err)
+ }
+ }
+ switch runtime.GOOS {
+ case constants.DarwinOS:
+ archivePath := filepath.Join(path, fmt.Sprintf("teleport-%s.pkg", version))
+ return trace.Wrap(archive.CompressDirToPkgFile(ctx, versionPath, archivePath, "com.example.pkgtest"))
+ case constants.WindowsOS:
+ archivePath := filepath.Join(path, fmt.Sprintf("teleport-v%s-windows-amd64-bin.zip", version))
+ return trace.Wrap(archive.CompressDirToZipFile(ctx, versionPath, archivePath))
+ default:
+ archivePath := filepath.Join(path, fmt.Sprintf("teleport-v%s-linux-%s-bin.tar.gz", version, runtime.GOARCH))
+ return trace.Wrap(archive.CompressDirToTarGzFile(ctx, versionPath, archivePath))
+ }
+}
+
+// buildBinary executes command to build binary with updater logic only for testing.
+func buildBinary(output string, toolsDir string, version string, baseURL string) error {
+ cmd := exec.Command(
+ "go", "build", "-o", output,
+ "-ldflags", strings.Join([]string{
+ fmt.Sprintf("-X 'main.toolsDir=%s'", toolsDir),
+ fmt.Sprintf("-X 'main.version=%s'", version),
+ fmt.Sprintf("-X 'main.baseURL=%s'", baseURL),
+ }, " "),
+ "./updater",
+ )
+ cmd.Stdout = os.Stdout
+ cmd.Stderr = os.Stderr
+
+ return trace.Wrap(cmd.Run())
+}
diff --git a/integration/autoupdate/tools/updater/main.go b/integration/autoupdate/tools/updater/main.go
new file mode 100644
index 0000000000000..8a12dbbd1c9f7
--- /dev/null
+++ b/integration/autoupdate/tools/updater/main.go
@@ -0,0 +1,78 @@
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package main
+
+import (
+ "context"
+ "errors"
+ "fmt"
+ "log"
+ "os"
+ "os/signal"
+ "syscall"
+ "time"
+
+ "github.com/gravitational/teleport/lib/autoupdate/tools"
+)
+
+var (
+ version = "development"
+ baseURL = "http://localhost"
+ toolsDir = ""
+)
+
+func main() {
+ ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
+ defer cancel()
+ ctx, _ = signal.NotifyContext(ctx, syscall.SIGINT, syscall.SIGTERM)
+
+ updater := tools.NewUpdater(
+ toolsDir,
+ version,
+ tools.WithBaseURL(baseURL),
+ )
+ toolsVersion, reExec, err := updater.CheckLocal()
+ if err != nil {
+ log.Fatal(err)
+ }
+ if reExec {
+ // Download and update the version of client tools required by the cluster.
+ // This is required if the user passed in the TELEPORT_TOOLS_VERSION explicitly.
+ err := updater.UpdateWithLock(ctx, toolsVersion)
+ if errors.Is(err, context.Canceled) {
+ os.Exit(0)
+ return
+ }
+ if err != nil {
+ log.Fatalf("failed to download version (%v): %v\n", toolsVersion, err)
+ return
+ }
+
+ // Re-execute client tools with the correct version of client tools.
+ code, err := updater.Exec()
+ if err != nil {
+ log.Fatalf("Failed to re-exec client tool: %v\n", err)
+ } else {
+ os.Exit(code)
+ }
+ }
+ if len(os.Args) > 1 && os.Args[1] == "version" {
+ fmt.Printf("Teleport v%v git\n", version)
+ }
+}
diff --git a/integration/autoupdate/tools/updater_test.go b/integration/autoupdate/tools/updater_test.go
new file mode 100644
index 0000000000000..6e617b3e3cdb1
--- /dev/null
+++ b/integration/autoupdate/tools/updater_test.go
@@ -0,0 +1,217 @@
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package tools_test
+
+import (
+ "bytes"
+ "context"
+ "fmt"
+ "os"
+ "os/exec"
+ "path/filepath"
+ "regexp"
+ "strings"
+ "testing"
+ "time"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
+
+ "github.com/gravitational/teleport/lib/autoupdate/tools"
+)
+
+var (
+ // pattern is template for response on version command for client tools {tsh, tctl}.
+ pattern = regexp.MustCompile(`(?m)Teleport v(.*) git`)
+)
+
+// TestUpdate verifies the basic update logic. We first download a lower version, then request
+// an update to a newer version, expecting it to re-execute with the updated version.
+func TestUpdate(t *testing.T) {
+ ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
+ defer cancel()
+
+ // Fetch compiled test binary with updater logic and install to $TELEPORT_HOME.
+ updater := tools.NewUpdater(
+ toolsDir,
+ testVersions[0],
+ tools.WithBaseURL(baseURL),
+ )
+ err := updater.Update(ctx, testVersions[0])
+ require.NoError(t, err)
+
+ // Verify that the installed version is equal to requested one.
+ cmd := exec.CommandContext(ctx, filepath.Join(toolsDir, "tsh"), "version")
+ out, err := cmd.Output()
+ require.NoError(t, err)
+
+ matches := pattern.FindStringSubmatch(string(out))
+ require.Len(t, matches, 2)
+ require.Equal(t, testVersions[0], matches[1])
+
+ // Execute version command again with setting the new version which must
+ // trigger re-execution of the same command after downloading requested version.
+ cmd = exec.CommandContext(ctx, filepath.Join(toolsDir, "tsh"), "version")
+ cmd.Env = append(
+ os.Environ(),
+ fmt.Sprintf("%s=%s", teleportToolsVersion, testVersions[1]),
+ )
+ out, err = cmd.Output()
+ require.NoError(t, err)
+
+ matches = pattern.FindStringSubmatch(string(out))
+ require.Len(t, matches, 2)
+ require.Equal(t, testVersions[1], matches[1])
+}
+
+// TestParallelUpdate launches multiple updater commands in parallel while defining a new version.
+// The first process should acquire a lock and block execution for the other processes. After the
+// first update is complete, other processes should acquire the lock one by one and re-execute
+// the command with the updated version without any new downloads.
+func TestParallelUpdate(t *testing.T) {
+ ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
+ defer cancel()
+
+ // Initial fetch the updater binary un-archive and replace.
+ updater := tools.NewUpdater(
+ toolsDir,
+ testVersions[0],
+ tools.WithBaseURL(baseURL),
+ )
+ err := updater.Update(ctx, testVersions[0])
+ require.NoError(t, err)
+
+ // By setting the limit request next test http serving file going blocked until unlock is sent.
+ lock := make(chan struct{})
+ limitedWriter.SetLimitRequest(limitRequest{
+ limit: 1024,
+ lock: lock,
+ })
+
+ outputs := make([]bytes.Buffer, 3)
+ errChan := make(chan error, 3)
+ for i := 0; i < len(outputs); i++ {
+ cmd := exec.Command(filepath.Join(toolsDir, "tsh"), "version")
+ cmd.Stdout = &outputs[i]
+ cmd.Stderr = &outputs[i]
+ cmd.Env = append(
+ os.Environ(),
+ fmt.Sprintf("%s=%s", teleportToolsVersion, testVersions[1]),
+ )
+ err = cmd.Start()
+ require.NoError(t, err, "failed to start updater")
+
+ go func(cmd *exec.Cmd) {
+ errChan <- cmd.Wait()
+ }(cmd)
+ }
+
+ select {
+ case err := <-errChan:
+ require.Fail(t, "we shouldn't receive any error", err)
+ case <-time.After(5 * time.Second):
+ require.Fail(t, "failed to wait till the download is started")
+ case <-lock:
+ // Wait for a short period to allow other processes to launch and attempt to acquire the lock.
+ time.Sleep(100 * time.Millisecond)
+ lock <- struct{}{}
+ }
+
+ // Wait till process finished with exit code 0, but we still should get progress
+ // bar in output content.
+ for i := 0; i < cap(outputs); i++ {
+ select {
+ case <-time.After(5 * time.Second):
+ require.Fail(t, "failed to wait till the process is finished")
+ case err := <-errChan:
+ require.NoError(t, err)
+ }
+ }
+
+ var progressCount int
+ for i := 0; i < cap(outputs); i++ {
+ matches := pattern.FindStringSubmatch(outputs[i].String())
+ require.Len(t, matches, 2)
+ assert.Equal(t, testVersions[1], matches[1])
+ if strings.Contains(outputs[i].String(), "Update progress:") {
+ progressCount++
+ }
+ }
+ assert.Equal(t, 1, progressCount, "we should have only one progress bar downloading new version")
+}
+
+// TestUpdateInterruptSignal verifies the interrupt signal send to the process must stop downloading.
+func TestUpdateInterruptSignal(t *testing.T) {
+ ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
+ defer cancel()
+
+ // Initial fetch the updater binary un-archive and replace.
+ updater := tools.NewUpdater(
+ toolsDir,
+ testVersions[0],
+ tools.WithBaseURL(baseURL),
+ )
+ err := updater.Update(ctx, testVersions[0])
+ require.NoError(t, err)
+
+ var output bytes.Buffer
+ cmd := exec.Command(filepath.Join(toolsDir, "tsh"), "version")
+ cmd.Stdout = &output
+ cmd.Stderr = &output
+ cmd.Env = append(
+ os.Environ(),
+ fmt.Sprintf("%s=%s", teleportToolsVersion, testVersions[1]),
+ )
+ err = cmd.Start()
+ require.NoError(t, err, "failed to start updater")
+ pid := cmd.Process.Pid
+
+ errChan := make(chan error)
+ go func() {
+ errChan <- cmd.Wait()
+ }()
+
+ // By setting the limit request next test http serving file going blocked until unlock is sent.
+ lock := make(chan struct{})
+ limitedWriter.SetLimitRequest(limitRequest{
+ limit: 1024,
+ lock: lock,
+ })
+
+ select {
+ case err := <-errChan:
+ require.Fail(t, "we shouldn't receive any error", err)
+ case <-time.After(5 * time.Second):
+ require.Fail(t, "failed to wait till the download is started")
+ case <-lock:
+ time.Sleep(100 * time.Millisecond)
+ require.NoError(t, sendInterrupt(pid))
+ lock <- struct{}{}
+ }
+
+ // Wait till process finished with exit code 0, but we still should get progress
+ // bar in output content.
+ select {
+ case <-time.After(5 * time.Second):
+ require.Fail(t, "failed to wait till the process interrupted")
+ case err := <-errChan:
+ require.NoError(t, err)
+ }
+ assert.Contains(t, output.String(), "Update progress:")
+}
diff --git a/integration/helpers/archive/packaging.go b/integration/helpers/archive/packaging.go
new file mode 100644
index 0000000000000..ee237749115a3
--- /dev/null
+++ b/integration/helpers/archive/packaging.go
@@ -0,0 +1,170 @@
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package archive
+
+import (
+ "archive/tar"
+ "archive/zip"
+ "compress/gzip"
+ "context"
+ "io"
+ "log/slog"
+ "os"
+ "os/exec"
+ "path/filepath"
+ "runtime"
+
+ "github.com/gravitational/trace"
+
+ "github.com/gravitational/teleport"
+)
+
+// CompressDirToZipFile compresses a source directory into `.zip` format and stores at `archivePath`,
+// preserving the relative file path structure of the source directory.
+func CompressDirToZipFile(ctx context.Context, sourceDir, archivePath string) (err error) {
+ archive, err := os.Create(archivePath)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ defer func() {
+ if closeErr := archive.Close(); closeErr != nil {
+ err = trace.NewAggregate(err, closeErr)
+ return
+ }
+ if err != nil {
+ if err := os.Remove(archivePath); err != nil {
+ slog.ErrorContext(ctx, "failed to remove archive", "error", err)
+ }
+ }
+ }()
+
+ zipWriter := zip.NewWriter(archive)
+ err = filepath.Walk(sourceDir, func(path string, info os.FileInfo, err error) error {
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ if info.IsDir() {
+ return nil
+ }
+ file, err := os.Open(path)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ defer file.Close()
+ relPath, err := filepath.Rel(sourceDir, path)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ zipFileWriter, err := zipWriter.Create(relPath)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ if _, err = io.Copy(zipFileWriter, file); err != nil {
+ return trace.Wrap(err)
+ }
+ return trace.Wrap(file.Close())
+ })
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ if err = zipWriter.Close(); err != nil {
+ return trace.Wrap(err)
+ }
+
+ return
+}
+
+// CompressDirToTarGzFile compresses a source directory into .tar.gz format and stores at `archivePath`,
+// preserving the relative file path structure of the source directory.
+func CompressDirToTarGzFile(ctx context.Context, sourceDir, archivePath string) (err error) {
+ archive, err := os.Create(archivePath)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ defer func() {
+ if closeErr := archive.Close(); closeErr != nil {
+ err = trace.NewAggregate(err, closeErr)
+ return
+ }
+ if err != nil {
+ if err := os.Remove(archivePath); err != nil {
+ slog.ErrorContext(ctx, "failed to remove archive", "error", err)
+ }
+ }
+ }()
+ gzipWriter := gzip.NewWriter(archive)
+ tarWriter := tar.NewWriter(gzipWriter)
+ err = filepath.Walk(sourceDir, func(path string, info os.FileInfo, err error) error {
+ if err != nil {
+ return err
+ }
+ if info.IsDir() {
+ return nil
+ }
+ file, err := os.Open(path)
+ if err != nil {
+ return err
+ }
+ defer file.Close()
+ header, err := tar.FileInfoHeader(info, info.Name())
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ header.Name, err = filepath.Rel(sourceDir, path)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ if err := tarWriter.WriteHeader(header); err != nil {
+ return trace.Wrap(err)
+ }
+ if _, err = io.Copy(tarWriter, file); err != nil {
+ return trace.Wrap(err)
+ }
+ return trace.Wrap(file.Close())
+ })
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ if err = tarWriter.Close(); err != nil {
+ return trace.Wrap(err)
+ }
+ if err = gzipWriter.Close(); err != nil {
+ return trace.Wrap(err)
+ }
+
+ return
+}
+
+// CompressDirToPkgFile runs for the macOS `pkgbuild` command to generate a .pkg
+// archive file from the source directory.
+func CompressDirToPkgFile(ctx context.Context, sourceDir, archivePath, identifier string) error {
+ if runtime.GOOS != "darwin" {
+ return trace.BadParameter("only darwin platform is supported for pkg file")
+ }
+ cmd := exec.CommandContext(
+ ctx,
+ "pkgbuild",
+ "--root", sourceDir,
+ "--identifier", identifier,
+ "--version", teleport.Version,
+ archivePath,
+ )
+
+ return trace.Wrap(cmd.Run())
+}
diff --git a/integrations/terraform/go.mod b/integrations/terraform/go.mod
index eb54785f95ca8..0ffbd03206aa4 100644
--- a/integrations/terraform/go.mod
+++ b/integrations/terraform/go.mod
@@ -181,6 +181,7 @@ require (
github.com/google/go-tpm-tools v0.4.4 // indirect
github.com/google/go-tspi v0.3.0 // indirect
github.com/google/gofuzz v1.2.0 // indirect
+ github.com/google/renameio/v2 v2.0.0 // indirect
github.com/google/s2a-go v0.1.7 // indirect
github.com/google/safetext v0.0.0-20240104143208-7a7d9b3d812f // indirect
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
diff --git a/integrations/terraform/go.sum b/integrations/terraform/go.sum
index 3b8dc37509e8e..1a00e4a20768e 100644
--- a/integrations/terraform/go.sum
+++ b/integrations/terraform/go.sum
@@ -1250,7 +1250,6 @@ github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLe
github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 h1:K6RDEckDVWvDI9JAJYCmNdQXq6neHJOYx3V6jnqNEec=
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
-github.com/google/renameio v0.1.0 h1:GOZbcHa3HfsPKPlmyPyN2KEohoMXOhdMbHrvbpl2QaA=
github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
github.com/google/renameio/v2 v2.0.0 h1:UifI23ZTGY8Tt29JbYFiuyIU3eX+RNFtUwefq9qAhxg=
github.com/google/renameio/v2 v2.0.0/go.mod h1:BtmJXm5YlszgC+TD4HOEEUFgkJP3nLxehU6hfe7jRt4=
diff --git a/lib/auth/autoupdate/autoupdatev1/service.go b/lib/auth/autoupdate/autoupdatev1/service.go
index b14edeb13d6f9..e88ff95d87382 100644
--- a/lib/auth/autoupdate/autoupdatev1/service.go
+++ b/lib/auth/autoupdate/autoupdatev1/service.go
@@ -20,13 +20,16 @@ package autoupdatev1
import (
"context"
+ "log/slog"
"github.com/gravitational/trace"
"google.golang.org/protobuf/types/known/emptypb"
"github.com/gravitational/teleport/api/gen/proto/go/teleport/autoupdate/v1"
"github.com/gravitational/teleport/api/types"
+ apievents "github.com/gravitational/teleport/api/types/events"
"github.com/gravitational/teleport/lib/authz"
+ "github.com/gravitational/teleport/lib/events"
"github.com/gravitational/teleport/lib/services"
)
@@ -47,6 +50,8 @@ type ServiceConfig struct {
Backend services.AutoUpdateService
// Cache is the cache used to store AutoUpdate resources.
Cache Cache
+ // Emitter is the event emitter.
+ Emitter apievents.Emitter
}
// Service implements the gRPC API layer for the AutoUpdate.
@@ -55,6 +60,7 @@ type Service struct {
authorizer authz.Authorizer
backend services.AutoUpdateService
+ emitter apievents.Emitter
cache Cache
}
@@ -67,11 +73,14 @@ func NewService(cfg ServiceConfig) (*Service, error) {
return nil, trace.BadParameter("authorizer is required")
case cfg.Cache == nil:
return nil, trace.BadParameter("cache is required")
+ case cfg.Emitter == nil:
+ return nil, trace.BadParameter("Emitter is required")
}
return &Service{
authorizer: cfg.Authorizer,
backend: cfg.Backend,
cache: cfg.Cache,
+ emitter: cfg.Emitter,
}, nil
}
@@ -110,6 +119,27 @@ func (s *Service) CreateAutoUpdateConfig(ctx context.Context, req *autoupdate.Cr
}
config, err := s.backend.CreateAutoUpdateConfig(ctx, req.Config)
+ var errMsg string
+ if err != nil {
+ errMsg = err.Error()
+ }
+ userMetadata := authz.ClientUserMetadata(ctx)
+ s.emitEvent(ctx, &apievents.AutoUpdateConfigCreate{
+ Metadata: apievents.Metadata{
+ Type: events.AutoUpdateConfigCreateEvent,
+ Code: events.AutoUpdateConfigCreateCode,
+ },
+ UserMetadata: userMetadata,
+ ResourceMetadata: apievents.ResourceMetadata{
+ Name: types.MetaNameAutoUpdateConfig,
+ UpdatedBy: userMetadata.User,
+ },
+ ConnectionMetadata: authz.ConnectionMetadata(ctx),
+ Status: apievents.Status{
+ Success: err == nil,
+ Error: errMsg,
+ },
+ })
return config, trace.Wrap(err)
}
@@ -129,6 +159,27 @@ func (s *Service) UpdateAutoUpdateConfig(ctx context.Context, req *autoupdate.Up
}
config, err := s.backend.UpdateAutoUpdateConfig(ctx, req.Config)
+ var errMsg string
+ if err != nil {
+ errMsg = err.Error()
+ }
+ userMetadata := authz.ClientUserMetadata(ctx)
+ s.emitEvent(ctx, &apievents.AutoUpdateConfigUpdate{
+ Metadata: apievents.Metadata{
+ Type: events.AutoUpdateConfigUpdateEvent,
+ Code: events.AutoUpdateConfigUpdateCode,
+ },
+ UserMetadata: userMetadata,
+ ResourceMetadata: apievents.ResourceMetadata{
+ Name: types.MetaNameAutoUpdateConfig,
+ UpdatedBy: userMetadata.User,
+ },
+ ConnectionMetadata: authz.ConnectionMetadata(ctx),
+ Status: apievents.Status{
+ Success: err == nil,
+ Error: errMsg,
+ },
+ })
return config, trace.Wrap(err)
}
@@ -148,6 +199,27 @@ func (s *Service) UpsertAutoUpdateConfig(ctx context.Context, req *autoupdate.Up
}
config, err := s.backend.UpsertAutoUpdateConfig(ctx, req.Config)
+ var errMsg string
+ if err != nil {
+ errMsg = err.Error()
+ }
+ userMetadata := authz.ClientUserMetadata(ctx)
+ s.emitEvent(ctx, &apievents.AutoUpdateConfigUpdate{
+ Metadata: apievents.Metadata{
+ Type: events.AutoUpdateConfigUpdateEvent,
+ Code: events.AutoUpdateConfigUpdateCode,
+ },
+ UserMetadata: userMetadata,
+ ResourceMetadata: apievents.ResourceMetadata{
+ Name: types.MetaNameAutoUpdateConfig,
+ UpdatedBy: userMetadata.User,
+ },
+ ConnectionMetadata: authz.ConnectionMetadata(ctx),
+ Status: apievents.Status{
+ Success: err == nil,
+ Error: errMsg,
+ },
+ })
return config, trace.Wrap(err)
}
@@ -166,10 +238,29 @@ func (s *Service) DeleteAutoUpdateConfig(ctx context.Context, req *autoupdate.De
return nil, trace.Wrap(err)
}
- if err := s.backend.DeleteAutoUpdateConfig(ctx); err != nil {
- return nil, trace.Wrap(err)
- }
- return &emptypb.Empty{}, nil
+ err = s.backend.DeleteAutoUpdateConfig(ctx)
+ var errMsg string
+ if err != nil {
+ errMsg = err.Error()
+ }
+ userMetadata := authz.ClientUserMetadata(ctx)
+ s.emitEvent(ctx, &apievents.AutoUpdateConfigDelete{
+ Metadata: apievents.Metadata{
+ Type: events.AutoUpdateConfigDeleteEvent,
+ Code: events.AutoUpdateConfigDeleteCode,
+ },
+ UserMetadata: userMetadata,
+ ResourceMetadata: apievents.ResourceMetadata{
+ Name: types.MetaNameAutoUpdateConfig,
+ UpdatedBy: userMetadata.User,
+ },
+ ConnectionMetadata: authz.ConnectionMetadata(ctx),
+ Status: apievents.Status{
+ Success: err == nil,
+ Error: errMsg,
+ },
+ })
+ return &emptypb.Empty{}, trace.Wrap(err)
}
// GetAutoUpdateVersion gets the current AutoUpdateVersion singleton.
@@ -207,6 +298,28 @@ func (s *Service) CreateAutoUpdateVersion(ctx context.Context, req *autoupdate.C
}
autoUpdateVersion, err := s.backend.CreateAutoUpdateVersion(ctx, req.Version)
+ var errMsg string
+ if err != nil {
+ errMsg = err.Error()
+ }
+ userMetadata := authz.ClientUserMetadata(ctx)
+ s.emitEvent(ctx, &apievents.AutoUpdateVersionCreate{
+ Metadata: apievents.Metadata{
+ Type: events.AutoUpdateVersionCreateEvent,
+ Code: events.AutoUpdateVersionCreateCode,
+ },
+ UserMetadata: userMetadata,
+ ResourceMetadata: apievents.ResourceMetadata{
+ Name: types.MetaNameAutoUpdateVersion,
+ UpdatedBy: userMetadata.User,
+ },
+ ConnectionMetadata: authz.ConnectionMetadata(ctx),
+ Status: apievents.Status{
+ Success: err == nil,
+ Error: errMsg,
+ },
+ })
+
return autoUpdateVersion, trace.Wrap(err)
}
@@ -226,6 +339,28 @@ func (s *Service) UpdateAutoUpdateVersion(ctx context.Context, req *autoupdate.U
}
autoUpdateVersion, err := s.backend.UpdateAutoUpdateVersion(ctx, req.Version)
+ var errMsg string
+ if err != nil {
+ errMsg = err.Error()
+ }
+ userMetadata := authz.ClientUserMetadata(ctx)
+ s.emitEvent(ctx, &apievents.AutoUpdateVersionUpdate{
+ Metadata: apievents.Metadata{
+ Type: events.AutoUpdateVersionUpdateEvent,
+ Code: events.AutoUpdateVersionUpdateCode,
+ },
+ UserMetadata: userMetadata,
+ ResourceMetadata: apievents.ResourceMetadata{
+ Name: types.MetaNameAutoUpdateVersion,
+ UpdatedBy: userMetadata.User,
+ },
+ ConnectionMetadata: authz.ConnectionMetadata(ctx),
+ Status: apievents.Status{
+ Success: err == nil,
+ Error: errMsg,
+ },
+ })
+
return autoUpdateVersion, trace.Wrap(err)
}
@@ -245,6 +380,28 @@ func (s *Service) UpsertAutoUpdateVersion(ctx context.Context, req *autoupdate.U
}
autoUpdateVersion, err := s.backend.UpsertAutoUpdateVersion(ctx, req.Version)
+ var errMsg string
+ if err != nil {
+ errMsg = err.Error()
+ }
+ userMetadata := authz.ClientUserMetadata(ctx)
+ s.emitEvent(ctx, &apievents.AutoUpdateVersionUpdate{
+ Metadata: apievents.Metadata{
+ Type: events.AutoUpdateVersionUpdateEvent,
+ Code: events.AutoUpdateVersionUpdateCode,
+ },
+ UserMetadata: userMetadata,
+ ResourceMetadata: apievents.ResourceMetadata{
+ Name: types.MetaNameAutoUpdateVersion,
+ UpdatedBy: userMetadata.User,
+ },
+ ConnectionMetadata: authz.ConnectionMetadata(ctx),
+ Status: apievents.Status{
+ Success: err == nil,
+ Error: errMsg,
+ },
+ })
+
return autoUpdateVersion, trace.Wrap(err)
}
@@ -263,8 +420,36 @@ func (s *Service) DeleteAutoUpdateVersion(ctx context.Context, req *autoupdate.D
return nil, trace.Wrap(err)
}
- if err := s.backend.DeleteAutoUpdateVersion(ctx); err != nil {
- return nil, trace.Wrap(err)
+ err = s.backend.DeleteAutoUpdateVersion(ctx)
+ var errMsg string
+ if err != nil {
+ errMsg = err.Error()
+ }
+ userMetadata := authz.ClientUserMetadata(ctx)
+ s.emitEvent(ctx, &apievents.AutoUpdateVersionDelete{
+ Metadata: apievents.Metadata{
+ Type: events.AutoUpdateVersionDeleteEvent,
+ Code: events.AutoUpdateVersionDeleteCode,
+ },
+ UserMetadata: userMetadata,
+ ResourceMetadata: apievents.ResourceMetadata{
+ Name: types.MetaNameAutoUpdateVersion,
+ UpdatedBy: userMetadata.User,
+ },
+ ConnectionMetadata: authz.ConnectionMetadata(ctx),
+ Status: apievents.Status{
+ Success: err == nil,
+ Error: errMsg,
+ },
+ })
+ return &emptypb.Empty{}, trace.Wrap(err)
+}
+
+func (s *Service) emitEvent(ctx context.Context, e apievents.AuditEvent) {
+ if err := s.emitter.EmitAuditEvent(ctx, e); err != nil {
+ slog.WarnContext(ctx, "Failed to emit audit event",
+ "type", e.GetType(),
+ "error", err,
+ )
}
- return &emptypb.Empty{}, nil
}
diff --git a/lib/auth/autoupdate/autoupdatev1/service_test.go b/lib/auth/autoupdate/autoupdatev1/service_test.go
index 840fd9bbf94cd..eed042614cc37 100644
--- a/lib/auth/autoupdate/autoupdatev1/service_test.go
+++ b/lib/auth/autoupdate/autoupdatev1/service_test.go
@@ -25,10 +25,14 @@ import (
"github.com/gravitational/trace"
"github.com/stretchr/testify/require"
- "github.com/gravitational/teleport/api/gen/proto/go/teleport/autoupdate/v1"
+ autoupdatev1pb "github.com/gravitational/teleport/api/gen/proto/go/teleport/autoupdate/v1"
"github.com/gravitational/teleport/api/types"
+ "github.com/gravitational/teleport/api/types/autoupdate"
+ apievents "github.com/gravitational/teleport/api/types/events"
"github.com/gravitational/teleport/lib/authz"
"github.com/gravitational/teleport/lib/backend/memory"
+ libevents "github.com/gravitational/teleport/lib/events"
+ "github.com/gravitational/teleport/lib/events/eventstest"
"github.com/gravitational/teleport/lib/services"
"github.com/gravitational/teleport/lib/services/local"
"github.com/gravitational/teleport/lib/utils"
@@ -63,7 +67,7 @@ func otherAdminStates(states []authz.AdminActionAuthState) []authz.AdminActionAu
// callMethod calls a method with given name in the DatabaseObjectService service
func callMethod(t *testing.T, service *Service, method string) error {
- for _, desc := range autoupdate.AutoUpdateService_ServiceDesc.Methods {
+ for _, desc := range autoupdatev1pb.AutoUpdateService_ServiceDesc.Methods {
if desc.MethodName == method {
_, err := desc.Handler(service, context.Background(), func(_ any) error { return nil }, nil)
return err
@@ -177,7 +181,7 @@ func TestServiceAccess(t *testing.T) {
t.Run(stateToString(state), func(t *testing.T) {
for _, verbs := range utils.Combinations(tt.allowedVerbs) {
t.Run(fmt.Sprintf("verbs=%v", verbs), func(t *testing.T) {
- service := newService(t, state, fakeChecker{allowedVerbs: verbs})
+ service := newService(t, state, fakeChecker{allowedVerbs: verbs}, &libevents.DiscardEmitter{})
err := callMethod(t, service, tt.name)
// expect access denied except with full set of verbs.
if len(verbs) == len(tt.allowedVerbs) {
@@ -201,7 +205,7 @@ func TestServiceAccess(t *testing.T) {
t.Run(stateToString(state), func(t *testing.T) {
// it is enough to test against tt.allowedVerbs,
// this is the only different data point compared to the test cases above.
- service := newService(t, state, fakeChecker{allowedVerbs: tt.allowedVerbs})
+ service := newService(t, state, fakeChecker{allowedVerbs: tt.allowedVerbs}, &libevents.DiscardEmitter{})
err := callMethod(t, service, tt.name)
require.True(t, trace.IsAccessDenied(err))
})
@@ -212,7 +216,7 @@ func TestServiceAccess(t *testing.T) {
// verify that all declared methods have matching test cases
t.Run("verify coverage", func(t *testing.T) {
- for _, method := range autoupdate.AutoUpdateService_ServiceDesc.Methods {
+ for _, method := range autoupdatev1pb.AutoUpdateService_ServiceDesc.Methods {
t.Run(method.MethodName, func(t *testing.T) {
match := false
for _, testCase := range testCases {
@@ -224,6 +228,98 @@ func TestServiceAccess(t *testing.T) {
})
}
+func TestAutoUpdateConfigEvents(t *testing.T) {
+ rwVerbs := []string{types.VerbList, types.VerbCreate, types.VerbRead, types.VerbUpdate, types.VerbDelete}
+ mockEmitter := &eventstest.MockRecorderEmitter{}
+ service := newService(t, authz.AdminActionAuthMFAVerified, fakeChecker{allowedVerbs: rwVerbs}, mockEmitter)
+ ctx := context.Background()
+
+ config, err := autoupdate.NewAutoUpdateConfig(&autoupdatev1pb.AutoUpdateConfigSpec{
+ Tools: &autoupdatev1pb.AutoUpdateConfigSpecTools{
+ Mode: autoupdate.ToolsUpdateModeEnabled,
+ },
+ })
+ require.NoError(t, err)
+
+ _, err = service.CreateAutoUpdateConfig(ctx, &autoupdatev1pb.CreateAutoUpdateConfigRequest{Config: config})
+ require.NoError(t, err)
+ require.Len(t, mockEmitter.Events(), 1)
+ require.Equal(t, libevents.AutoUpdateConfigCreateEvent, mockEmitter.LastEvent().GetType())
+ require.Equal(t, libevents.AutoUpdateConfigCreateCode, mockEmitter.LastEvent().GetCode())
+ require.Equal(t, types.MetaNameAutoUpdateConfig, mockEmitter.LastEvent().(*apievents.AutoUpdateConfigCreate).Name)
+ mockEmitter.Reset()
+
+ _, err = service.UpdateAutoUpdateConfig(ctx, &autoupdatev1pb.UpdateAutoUpdateConfigRequest{Config: config})
+ require.NoError(t, err)
+ require.Len(t, mockEmitter.Events(), 1)
+ require.Equal(t, libevents.AutoUpdateConfigUpdateEvent, mockEmitter.LastEvent().GetType())
+ require.Equal(t, libevents.AutoUpdateConfigUpdateCode, mockEmitter.LastEvent().GetCode())
+ require.Equal(t, types.MetaNameAutoUpdateConfig, mockEmitter.LastEvent().(*apievents.AutoUpdateConfigUpdate).Name)
+ mockEmitter.Reset()
+
+ _, err = service.UpsertAutoUpdateConfig(ctx, &autoupdatev1pb.UpsertAutoUpdateConfigRequest{Config: config})
+ require.NoError(t, err)
+ require.Len(t, mockEmitter.Events(), 1)
+ require.Equal(t, libevents.AutoUpdateConfigUpdateEvent, mockEmitter.LastEvent().GetType())
+ require.Equal(t, libevents.AutoUpdateConfigUpdateCode, mockEmitter.LastEvent().GetCode())
+ require.Equal(t, types.MetaNameAutoUpdateConfig, mockEmitter.LastEvent().(*apievents.AutoUpdateConfigUpdate).Name)
+ mockEmitter.Reset()
+
+ _, err = service.DeleteAutoUpdateConfig(ctx, &autoupdatev1pb.DeleteAutoUpdateConfigRequest{})
+ require.NoError(t, err)
+ require.Len(t, mockEmitter.Events(), 1)
+ require.Equal(t, libevents.AutoUpdateConfigDeleteEvent, mockEmitter.LastEvent().GetType())
+ require.Equal(t, libevents.AutoUpdateConfigDeleteCode, mockEmitter.LastEvent().GetCode())
+ require.Equal(t, types.MetaNameAutoUpdateConfig, mockEmitter.LastEvent().(*apievents.AutoUpdateConfigDelete).Name)
+ mockEmitter.Reset()
+}
+
+func TestAutoUpdateVersionEvents(t *testing.T) {
+ rwVerbs := []string{types.VerbList, types.VerbCreate, types.VerbRead, types.VerbUpdate, types.VerbDelete}
+ mockEmitter := &eventstest.MockRecorderEmitter{}
+ service := newService(t, authz.AdminActionAuthMFAVerified, fakeChecker{allowedVerbs: rwVerbs}, mockEmitter)
+ ctx := context.Background()
+
+ config, err := autoupdate.NewAutoUpdateVersion(&autoupdatev1pb.AutoUpdateVersionSpec{
+ Tools: &autoupdatev1pb.AutoUpdateVersionSpecTools{
+ TargetVersion: "1.2.3",
+ },
+ })
+ require.NoError(t, err)
+
+ _, err = service.CreateAutoUpdateVersion(ctx, &autoupdatev1pb.CreateAutoUpdateVersionRequest{Version: config})
+ require.NoError(t, err)
+ require.Len(t, mockEmitter.Events(), 1)
+ require.Equal(t, libevents.AutoUpdateVersionCreateEvent, mockEmitter.LastEvent().GetType())
+ require.Equal(t, libevents.AutoUpdateVersionCreateCode, mockEmitter.LastEvent().GetCode())
+ require.Equal(t, types.MetaNameAutoUpdateVersion, mockEmitter.LastEvent().(*apievents.AutoUpdateVersionCreate).Name)
+ mockEmitter.Reset()
+
+ _, err = service.UpdateAutoUpdateVersion(ctx, &autoupdatev1pb.UpdateAutoUpdateVersionRequest{Version: config})
+ require.NoError(t, err)
+ require.Len(t, mockEmitter.Events(), 1)
+ require.Equal(t, libevents.AutoUpdateVersionUpdateEvent, mockEmitter.LastEvent().GetType())
+ require.Equal(t, libevents.AutoUpdateVersionUpdateCode, mockEmitter.LastEvent().GetCode())
+ require.Equal(t, types.MetaNameAutoUpdateVersion, mockEmitter.LastEvent().(*apievents.AutoUpdateVersionUpdate).Name)
+ mockEmitter.Reset()
+
+ _, err = service.UpsertAutoUpdateVersion(ctx, &autoupdatev1pb.UpsertAutoUpdateVersionRequest{Version: config})
+ require.NoError(t, err)
+ require.Len(t, mockEmitter.Events(), 1)
+ require.Equal(t, libevents.AutoUpdateVersionUpdateEvent, mockEmitter.LastEvent().GetType())
+ require.Equal(t, libevents.AutoUpdateVersionUpdateCode, mockEmitter.LastEvent().GetCode())
+ require.Equal(t, types.MetaNameAutoUpdateVersion, mockEmitter.LastEvent().(*apievents.AutoUpdateVersionUpdate).Name)
+ mockEmitter.Reset()
+
+ _, err = service.DeleteAutoUpdateVersion(ctx, &autoupdatev1pb.DeleteAutoUpdateVersionRequest{})
+ require.NoError(t, err)
+ require.Len(t, mockEmitter.Events(), 1)
+ require.Equal(t, libevents.AutoUpdateVersionDeleteEvent, mockEmitter.LastEvent().GetType())
+ require.Equal(t, libevents.AutoUpdateVersionDeleteCode, mockEmitter.LastEvent().GetCode())
+ require.Equal(t, types.MetaNameAutoUpdateVersion, mockEmitter.LastEvent().(*apievents.AutoUpdateVersionDelete).Name)
+ mockEmitter.Reset()
+}
+
type fakeChecker struct {
allowedVerbs []string
services.AccessChecker
@@ -241,7 +337,7 @@ func (f fakeChecker) CheckAccessToRule(_ services.RuleContext, _ string, resourc
return trace.AccessDenied("access denied to rule=%v/verb=%v", resource, verb)
}
-func newService(t *testing.T, authState authz.AdminActionAuthState, checker services.AccessChecker) *Service {
+func newService(t *testing.T, authState authz.AdminActionAuthState, checker services.AccessChecker, emitter apievents.Emitter) *Service {
t.Helper()
bk, err := memory.New(memory.Config{})
@@ -250,10 +346,10 @@ func newService(t *testing.T, authState authz.AdminActionAuthState, checker serv
storage, err := local.NewAutoUpdateService(bk)
require.NoError(t, err)
- return newServiceWithStorage(t, authState, checker, storage)
+ return newServiceWithStorage(t, authState, checker, storage, emitter)
}
-func newServiceWithStorage(t *testing.T, authState authz.AdminActionAuthState, checker services.AccessChecker, storage services.AutoUpdateService) *Service {
+func newServiceWithStorage(t *testing.T, authState authz.AdminActionAuthState, checker services.AccessChecker, storage services.AutoUpdateService, emitter apievents.Emitter) *Service {
t.Helper()
authorizer := authz.AuthorizerFunc(func(ctx context.Context) (*authz.Context, error) {
@@ -272,6 +368,7 @@ func newServiceWithStorage(t *testing.T, authState authz.AdminActionAuthState, c
Authorizer: authorizer,
Backend: storage,
Cache: storage,
+ Emitter: emitter,
})
require.NoError(t, err)
return service
diff --git a/lib/auth/grpcserver.go b/lib/auth/grpcserver.go
index 053603468001d..d091f467ed5b7 100644
--- a/lib/auth/grpcserver.go
+++ b/lib/auth/grpcserver.go
@@ -5456,6 +5456,7 @@ func NewGRPCServer(cfg GRPCServerConfig) (*GRPCServer, error) {
autoUpdateServiceServer, err := autoupdatev1.NewService(autoupdatev1.ServiceConfig{
Authorizer: cfg.Authorizer,
+ Emitter: cfg.Emitter,
Backend: cfg.AuthServer.Services,
Cache: cfg.AuthServer.Cache,
})
diff --git a/lib/autoupdate/tools/helper.go b/lib/autoupdate/tools/helper.go
new file mode 100644
index 0000000000000..79069c3d3c90b
--- /dev/null
+++ b/lib/autoupdate/tools/helper.go
@@ -0,0 +1,111 @@
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package tools
+
+import (
+ "context"
+ "errors"
+ "log/slog"
+ "os"
+
+ "github.com/gravitational/trace"
+
+ stacksignal "github.com/gravitational/teleport/lib/utils/signal"
+)
+
+// CheckAndUpdateLocal verifies if the TELEPORT_TOOLS_VERSION environment variable
+// is set and a version is defined (or disabled by setting it to "off"). The requested
+// version is compared with the current client tools version. If they differ, the version
+// package is downloaded, extracted to the client tools directory, and re-executed
+// with the updated version.
+// If $TELEPORT_HOME/bin contains downloaded client tools, it always re-executes
+// using the version from the home directory.
+func CheckAndUpdateLocal(ctx context.Context, currentVersion string) error {
+ toolsDir, err := Dir()
+ if err != nil {
+ slog.WarnContext(ctx, "Client tools update is disabled", "error", err)
+ return nil
+ }
+ updater := NewUpdater(toolsDir, currentVersion)
+ // At process startup, check if a version has already been downloaded to
+ // $TELEPORT_HOME/bin or if the user has set the TELEPORT_TOOLS_VERSION
+ // environment variable. If so, re-exec that version of client tools.
+ toolsVersion, reExec, err := updater.CheckLocal()
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ if reExec {
+ return trace.Wrap(updateAndReExec(ctx, updater, toolsVersion))
+ }
+
+ return nil
+}
+
+// CheckAndUpdateRemote verifies client tools version is set for update in cluster
+// configuration by making the http request to `webapi/find` endpoint. The requested
+// version is compared with the current client tools version. If they differ, the version
+// package is downloaded, extracted to the client tools directory, and re-executed
+// with the updated version.
+// If $TELEPORT_HOME/bin contains downloaded client tools, it always re-executes
+// using the version from the home directory.
+func CheckAndUpdateRemote(ctx context.Context, currentVersion string, proxy string, insecure bool) error {
+ toolsDir, err := Dir()
+ if err != nil {
+ slog.WarnContext(ctx, "Client tools update is disabled", "error", err)
+ return nil
+ }
+ updater := NewUpdater(toolsDir, currentVersion)
+ // The user has typed a command like `tsh ssh ...` without being logged in,
+ // if the running binary needs to be updated, update and re-exec.
+ //
+ // If needed, download the new version of client tools and re-exec. Make
+ // sure to exit this process with the same exit code as the child process.
+ toolsVersion, reExec, err := updater.CheckRemote(ctx, proxy, insecure)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ if reExec {
+ return trace.Wrap(updateAndReExec(ctx, updater, toolsVersion))
+ }
+
+ return nil
+}
+
+func updateAndReExec(ctx context.Context, updater *Updater, toolsVersion string) error {
+ ctxUpdate, cancel := stacksignal.GetSignalHandler().NotifyContext(ctx)
+ defer cancel()
+ // Download the version of client tools required by the cluster. This
+ // is required if the user passed in the TELEPORT_TOOLS_VERSION
+ // explicitly.
+ err := updater.UpdateWithLock(ctxUpdate, toolsVersion)
+ if err != nil && !errors.Is(err, context.Canceled) {
+ return trace.Wrap(err)
+ }
+
+ // Re-execute client tools with the correct version of client tools.
+ code, err := updater.Exec()
+ if err != nil && !errors.Is(err, os.ErrNotExist) {
+ slog.DebugContext(ctx, "Failed to re-exec client tool", "error", err)
+ os.Exit(code)
+ } else if err == nil {
+ os.Exit(code)
+ }
+
+ return nil
+}
diff --git a/lib/autoupdate/tools/progress.go b/lib/autoupdate/tools/progress.go
new file mode 100644
index 0000000000000..34bbad2ff888d
--- /dev/null
+++ b/lib/autoupdate/tools/progress.go
@@ -0,0 +1,78 @@
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package tools
+
+import (
+ "fmt"
+ "io"
+ "strings"
+
+ "github.com/gravitational/trace"
+)
+
+type progressWriter struct {
+ n int64
+ limit int64
+ size int
+ progress int
+}
+
+// newProgressWriter creates progress writer instance and prints empty
+// progress bar right after initialisation.
+func newProgressWriter(size int) (*progressWriter, func()) {
+ pw := &progressWriter{size: size}
+ pw.Print(0)
+ return pw, func() {
+ fmt.Print("\n")
+ }
+}
+
+// Print prints the update progress bar with `n` bricks.
+func (w *progressWriter) Print(n int) {
+ bricks := strings.Repeat("â–’", n) + strings.Repeat(" ", w.size-n)
+ fmt.Print("\rUpdate progress: [" + bricks + "] (Ctrl-C to cancel update)")
+}
+
+func (w *progressWriter) Write(p []byte) (int, error) {
+ if w.limit == 0 || w.size == 0 {
+ return len(p), nil
+ }
+
+ w.n += int64(len(p))
+ bricks := int((w.n*100)/w.limit) / w.size
+ if w.progress != bricks {
+ w.Print(bricks)
+ w.progress = bricks
+ }
+
+ return len(p), nil
+}
+
+// CopyLimit sets the limit of writing bytes to the progress writer and initiate copying process.
+func (w *progressWriter) CopyLimit(dst io.Writer, src io.Reader, limit int64) (written int64, err error) {
+ if limit < 0 {
+ n, err := io.Copy(dst, io.TeeReader(src, w))
+ w.Print(w.size)
+ return n, trace.Wrap(err)
+ }
+
+ w.limit = limit
+ n, err := io.CopyN(dst, io.TeeReader(src, w), limit)
+ return n, trace.Wrap(err)
+}
diff --git a/lib/autoupdate/tools/updater.go b/lib/autoupdate/tools/updater.go
new file mode 100644
index 0000000000000..8bad07c395391
--- /dev/null
+++ b/lib/autoupdate/tools/updater.go
@@ -0,0 +1,428 @@
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package tools
+
+import (
+ "bytes"
+ "context"
+ "crypto/sha256"
+ "crypto/x509"
+ "encoding/hex"
+ "fmt"
+ "io"
+ "log/slog"
+ "net/http"
+ "os"
+ "os/exec"
+ "path/filepath"
+ "regexp"
+ "runtime"
+ "syscall"
+ "time"
+
+ "github.com/coreos/go-semver/semver"
+ "github.com/google/uuid"
+ "github.com/gravitational/trace"
+
+ "github.com/gravitational/teleport/api/client/webclient"
+ "github.com/gravitational/teleport/api/constants"
+ "github.com/gravitational/teleport/lib/utils"
+ "github.com/gravitational/teleport/lib/utils/packaging"
+)
+
+const (
+ // teleportToolsVersionEnv is environment name for requesting specific version for update.
+ teleportToolsVersionEnv = "TELEPORT_TOOLS_VERSION"
+ // baseURL is CDN URL for downloading official Teleport packages.
+ baseURL = "https://cdn.teleport.dev"
+ // reservedFreeDisk is the predefined amount of free disk space (in bytes) required
+ // to remain available after downloading archives.
+ reservedFreeDisk = 10 * 1024 * 1024 // 10 Mb
+ // lockFileName is file used for locking update process in parallel.
+ lockFileName = ".lock"
+ // updatePackageSuffix is directory suffix used for package extraction in tools directory.
+ updatePackageSuffix = "-update-pkg"
+)
+
+var (
+ // // pattern is template for response on version command for client tools {tsh, tctl}.
+ pattern = regexp.MustCompile(`(?m)Teleport v(.*) git`)
+)
+
+// Option applies an option value for the Updater.
+type Option func(u *Updater)
+
+// WithBaseURL defines custom base url for the updater.
+func WithBaseURL(baseURL string) Option {
+ return func(u *Updater) {
+ u.baseURL = baseURL
+ }
+}
+
+// WithClient defines custom http client for the Updater.
+func WithClient(client *http.Client) Option {
+ return func(u *Updater) {
+ u.client = client
+ }
+}
+
+// WithTools defines custom list of the tools has to be installed by updater.
+func WithTools(tools []string) Option {
+ return func(u *Updater) {
+ u.tools = tools
+ }
+}
+
+// Updater is updater implementation for the client tools auto updates.
+type Updater struct {
+ toolsDir string
+ localVersion string
+ tools []string
+
+ baseURL string
+ client *http.Client
+}
+
+// NewUpdater initializes the updater for client tools auto updates. We need to specify the tools directory
+// path where we download, extract package archives with the new version, and replace symlinks
+// (e.g., `$TELEPORT_HOME/bin`).
+// The base URL of the CDN with Teleport packages, the `http.Client` and the list of tools (e.g., `tsh`, `tctl`)
+// that must be updated can be customized via options.
+func NewUpdater(toolsDir, localVersion string, options ...Option) *Updater {
+ updater := &Updater{
+ tools: DefaultClientTools(),
+ toolsDir: toolsDir,
+ localVersion: localVersion,
+ baseURL: baseURL,
+ client: http.DefaultClient,
+ }
+ for _, option := range options {
+ option(updater)
+ }
+
+ return updater
+}
+
+// CheckLocal is run at client tool startup and will only perform local checks.
+// Returns the version needs to be updated and re-executed, by re-execution flag we
+// understand that update and re-execute is required.
+func (u *Updater) CheckLocal() (version string, reExec bool, err error) {
+ // Check if the user has requested a specific version of client tools.
+ requestedVersion := os.Getenv(teleportToolsVersionEnv)
+ switch requestedVersion {
+ // The user has turned off any form of automatic updates.
+ case "off":
+ return "", false, nil
+ // Requested version already the same as client version.
+ case u.localVersion:
+ return u.localVersion, false, nil
+ // No requested version, we continue.
+ case "":
+ // Requested version that is not the local one.
+ default:
+ if _, err := semver.NewVersion(requestedVersion); err != nil {
+ return "", false, trace.Wrap(err, "checking that request version is semantic")
+ }
+ return requestedVersion, true, nil
+ }
+
+ // If a version of client tools has already been downloaded to
+ // tools directory, return that.
+ toolsVersion, err := CheckToolVersion(u.toolsDir)
+ if trace.IsNotFound(err) {
+ return u.localVersion, false, nil
+ }
+ if err != nil {
+ return "", false, trace.Wrap(err)
+ }
+
+ return toolsVersion, true, nil
+}
+
+// CheckRemote first checks the version set by the environment variable. If not set or disabled,
+// it checks against the Proxy Service to determine if client tools need updating by requesting
+// the `webapi/find` handler, which stores information about the required client tools version to
+// operate with this cluster. It returns the semantic version that needs updating and whether
+// re-execution is necessary, by re-execution flag we understand that update and re-execute is required.
+func (u *Updater) CheckRemote(ctx context.Context, proxyAddr string, insecure bool) (version string, reExec bool, err error) {
+ // Check if the user has requested a specific version of client tools.
+ requestedVersion := os.Getenv(teleportToolsVersionEnv)
+ switch requestedVersion {
+ // The user has turned off any form of automatic updates.
+ case "off":
+ return "", false, nil
+ // Requested version already the same as client version.
+ case u.localVersion:
+ return u.localVersion, false, nil
+ // No requested version, we continue.
+ case "":
+ // Requested version that is not the local one.
+ default:
+ if _, err := semver.NewVersion(requestedVersion); err != nil {
+ return "", false, trace.Wrap(err, "checking that request version is semantic")
+ }
+ return requestedVersion, true, nil
+ }
+
+ certPool, err := x509.SystemCertPool()
+ if err != nil {
+ return "", false, trace.Wrap(err)
+ }
+ resp, err := webclient.Find(&webclient.Config{
+ Context: ctx,
+ ProxyAddr: proxyAddr,
+ Pool: certPool,
+ Timeout: 10 * time.Second,
+ Insecure: insecure,
+ })
+ if err != nil {
+ return "", false, trace.Wrap(err)
+ }
+
+ // If a version of client tools has already been downloaded to
+ // tools directory, return that.
+ toolsVersion, err := CheckToolVersion(u.toolsDir)
+ if err != nil && !trace.IsNotFound(err) {
+ return "", false, trace.Wrap(err)
+ }
+
+ switch {
+ case !resp.AutoUpdate.ToolsAutoUpdate || resp.AutoUpdate.ToolsVersion == "":
+ if toolsVersion == "" {
+ return u.localVersion, false, nil
+ }
+ case u.localVersion == resp.AutoUpdate.ToolsVersion:
+ return u.localVersion, false, nil
+ case resp.AutoUpdate.ToolsVersion != toolsVersion:
+ return resp.AutoUpdate.ToolsVersion, true, nil
+ }
+
+ return toolsVersion, true, nil
+}
+
+// UpdateWithLock acquires filesystem lock, downloads requested version package,
+// unarchive and replace existing one.
+func (u *Updater) UpdateWithLock(ctx context.Context, updateToolsVersion string) (err error) {
+ // Create tools directory if it does not exist.
+ if err := os.MkdirAll(u.toolsDir, 0o755); err != nil {
+ return trace.Wrap(err)
+ }
+ // Lock concurrent client tools execution util requested version is updated.
+ unlock, err := utils.FSWriteLock(filepath.Join(u.toolsDir, lockFileName))
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ defer func() {
+ err = trace.NewAggregate(err, unlock())
+ }()
+
+ // If the version of the running binary or the version downloaded to
+ // tools directory is the same as the requested version of client tools,
+ // nothing to be done, exit early.
+ toolsVersion, err := CheckToolVersion(u.toolsDir)
+ if err != nil && !trace.IsNotFound(err) {
+ return trace.Wrap(err)
+ }
+ if updateToolsVersion == toolsVersion {
+ return nil
+ }
+
+ // Download and update client tools in tools directory.
+ if err := u.Update(ctx, updateToolsVersion); err != nil {
+ return trace.Wrap(err)
+ }
+
+ return nil
+}
+
+// Update downloads requested version and replace it with existing one and cleanups the previous downloads
+// with defined updater directory suffix.
+func (u *Updater) Update(ctx context.Context, toolsVersion string) error {
+ // Get platform specific download URLs.
+ packages, err := teleportPackageURLs(u.baseURL, toolsVersion)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+
+ var pkgNames []string
+ for _, pkg := range packages {
+ pkgName := fmt.Sprint(uuid.New().String(), updatePackageSuffix)
+ if err := u.update(ctx, pkg, pkgName); err != nil {
+ return trace.Wrap(err)
+ }
+ pkgNames = append(pkgNames, pkgName)
+ }
+
+ // Cleanup the tools directory with previously downloaded and un-archived versions.
+ if err := packaging.RemoveWithSuffix(u.toolsDir, updatePackageSuffix, pkgNames); err != nil {
+ slog.WarnContext(ctx, "failed to clean up tools directory", "error", err)
+ }
+
+ return nil
+}
+
+// update downloads the archive and validate against the hash. Download to a
+// temporary path within tools directory.
+func (u *Updater) update(ctx context.Context, pkg packageURL, pkgName string) error {
+ f, err := os.CreateTemp("", "teleport-")
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ defer func() {
+ _ = f.Close()
+ if err := os.Remove(f.Name()); err != nil {
+ slog.WarnContext(ctx, "failed to remove temporary archive file", "error", err)
+ }
+ }()
+
+ archiveHash, err := u.downloadArchive(ctx, pkg.Archive, f)
+ if pkg.Optional && trace.IsNotFound(err) {
+ return nil
+ }
+ if err != nil {
+ return trace.Wrap(err)
+ }
+
+ hash, err := u.downloadHash(ctx, pkg.Hash)
+ if pkg.Optional && trace.IsNotFound(err) {
+ return nil
+ }
+ if err != nil {
+ return trace.Wrap(err)
+ }
+
+ if !bytes.Equal(archiveHash, hash) {
+ return trace.BadParameter("hash of archive does not match downloaded archive")
+ }
+
+ extractDir := filepath.Join(u.toolsDir, pkgName)
+ if runtime.GOOS != constants.DarwinOS {
+ if err := os.Mkdir(extractDir, 0o755); err != nil {
+ return trace.Wrap(err)
+ }
+ }
+
+ // Perform atomic replace so concurrent exec do not fail.
+ if err := packaging.ReplaceToolsBinaries(u.toolsDir, f.Name(), extractDir, u.tools); err != nil {
+ return trace.Wrap(err)
+ }
+
+ return nil
+}
+
+// Exec re-executes tool command with same arguments and environ variables.
+func (u *Updater) Exec() (int, error) {
+ path, err := toolName(u.toolsDir)
+ if err != nil {
+ return 0, trace.Wrap(err)
+ }
+ // To prevent re-execution loop we have to disable update logic for re-execution.
+ env := append(os.Environ(), teleportToolsVersionEnv+"=off")
+
+ if runtime.GOOS == constants.WindowsOS {
+ cmd := exec.Command(path, os.Args[1:]...)
+ cmd.Env = env
+ cmd.Stdin = os.Stdin
+ cmd.Stdout = os.Stdout
+ cmd.Stderr = os.Stderr
+ if err := cmd.Run(); err != nil {
+ return 0, trace.Wrap(err)
+ }
+
+ return cmd.ProcessState.ExitCode(), nil
+ }
+
+ if err := syscall.Exec(path, append([]string{path}, os.Args[1:]...), env); err != nil {
+ return 0, trace.Wrap(err)
+ }
+
+ return 0, nil
+}
+
+// downloadHash downloads the hash file `.sha256` for package checksum validation and return the hash sum.
+func (u *Updater) downloadHash(ctx context.Context, url string) ([]byte, error) {
+ req, err := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
+ if err != nil {
+ return nil, trace.Wrap(err)
+ }
+ resp, err := u.client.Do(req)
+ if err != nil {
+ return nil, trace.Wrap(err)
+ }
+ defer resp.Body.Close()
+ if resp.StatusCode == http.StatusNotFound {
+ return nil, trace.NotFound("hash file is not found: %q", url)
+ }
+ if resp.StatusCode != http.StatusOK {
+ return nil, trace.BadParameter("bad status when downloading archive hash: %v", resp.StatusCode)
+ }
+
+ var buf bytes.Buffer
+ _, err = io.CopyN(&buf, resp.Body, sha256.Size*2) // SHA bytes to hex
+ if err != nil {
+ return nil, trace.Wrap(err)
+ }
+ hexBytes, err := hex.DecodeString(buf.String())
+ if err != nil {
+ return nil, trace.Wrap(err)
+ }
+
+ return hexBytes, nil
+}
+
+// downloadArchive downloads the archive package by `url` and writes content to the writer interface,
+// return calculated sha256 hash sum of the content.
+func (u *Updater) downloadArchive(ctx context.Context, url string, f io.Writer) ([]byte, error) {
+ // Display a progress bar before initiating the update request to inform the user that
+ // an update is in progress, allowing them the option to cancel before actual response
+ // which might be delayed with slow internet connection or complete isolation to CDN.
+ pw, finish := newProgressWriter(10)
+ defer finish()
+ req, err := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
+ if err != nil {
+ return nil, trace.Wrap(err)
+ }
+ resp, err := u.client.Do(req)
+ if err != nil {
+ return nil, trace.Wrap(err)
+ }
+ defer resp.Body.Close()
+ if resp.StatusCode == http.StatusNotFound {
+ return nil, trace.NotFound("archive file is not found: %v", resp.StatusCode)
+ }
+ if resp.StatusCode != http.StatusOK {
+ return nil, trace.BadParameter("bad status when downloading archive: %v", resp.StatusCode)
+ }
+
+ if resp.ContentLength != -1 {
+ if err := checkFreeSpace(u.toolsDir, uint64(resp.ContentLength)); err != nil {
+ return nil, trace.Wrap(err)
+ }
+ }
+
+ h := sha256.New()
+ // It is a little inefficient to download the file to disk and then re-load
+ // it into memory to unarchive later, but this is safer as it allows client
+ // tools to validate the hash before trying to operate on the archive.
+ if _, err := pw.CopyLimit(f, io.TeeReader(resp.Body, h), resp.ContentLength); err != nil {
+ return nil, trace.Wrap(err)
+ }
+
+ return h.Sum(nil), nil
+}
diff --git a/lib/autoupdate/tools/utils.go b/lib/autoupdate/tools/utils.go
new file mode 100644
index 0000000000000..f937d228b5cd4
--- /dev/null
+++ b/lib/autoupdate/tools/utils.go
@@ -0,0 +1,188 @@
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package tools
+
+import (
+ "bufio"
+ "bytes"
+ "context"
+ "errors"
+ "os"
+ "os/exec"
+ "path/filepath"
+ "runtime"
+ "strings"
+ "time"
+
+ "github.com/coreos/go-semver/semver"
+ "github.com/gravitational/trace"
+
+ "github.com/gravitational/teleport/api/constants"
+ "github.com/gravitational/teleport/api/types"
+ "github.com/gravitational/teleport/lib/modules"
+ "github.com/gravitational/teleport/lib/utils"
+)
+
+// Dir returns the path to client tools in $TELEPORT_HOME/bin.
+func Dir() (string, error) {
+ home := os.Getenv(types.HomeEnvVar)
+ if home == "" {
+ var err error
+ home, err = os.UserHomeDir()
+ if err != nil {
+ return "", trace.Wrap(err)
+ }
+ }
+
+ return filepath.Join(home, ".tsh", "bin"), nil
+}
+
+// DefaultClientTools list of the client tools needs to be updated by default.
+func DefaultClientTools() []string {
+ switch runtime.GOOS {
+ case constants.WindowsOS:
+ return []string{"tsh.exe", "tctl.exe"}
+ default:
+ return []string{"tsh", "tctl"}
+ }
+}
+
+// CheckToolVersion returns current installed client tools version, must return NotFoundError if
+// the client tools is not found in tools directory.
+func CheckToolVersion(toolsDir string) (string, error) {
+ // Find the path to the current executable.
+ path, err := toolName(toolsDir)
+ if err != nil {
+ return "", trace.Wrap(err)
+ }
+ if _, err := os.Stat(path); errors.Is(err, os.ErrNotExist) {
+ return "", trace.NotFound("autoupdate tool not found in %q", toolsDir)
+ } else if err != nil {
+ return "", trace.Wrap(err)
+ }
+
+ // Set a timeout to not let "{tsh, tctl} version" block forever. Allow up
+ // to 10 seconds because sometimes MDM tools like Jamf cause a lot of
+ // latency in launching binaries.
+ ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
+ defer cancel()
+
+ // Execute "{tsh, tctl} version" and pass in TELEPORT_TOOLS_VERSION=off to
+ // turn off all automatic updates code paths to prevent any recursion.
+ command := exec.CommandContext(ctx, path, "version")
+ command.Env = []string{teleportToolsVersionEnv + "=off"}
+ output, err := command.Output()
+ if err != nil {
+ return "", trace.WrapWithMessage(err, "failed to determine version of %q tool", path)
+ }
+
+ // The output for "{tsh, tctl} version" can be multiple lines. Find the
+ // actual version line and extract the version.
+ scanner := bufio.NewScanner(bytes.NewReader(output))
+ for scanner.Scan() {
+ line := scanner.Text()
+
+ if !strings.HasPrefix(line, "Teleport") {
+ continue
+ }
+
+ matches := pattern.FindStringSubmatch(line)
+ if len(matches) != 2 {
+ return "", trace.BadParameter("invalid version line: %v", line)
+ }
+ version, err := semver.NewVersion(matches[1])
+ if err != nil {
+ return "", trace.Wrap(err)
+ }
+ return version.String(), nil
+ }
+
+ return "", trace.BadParameter("unable to determine version")
+}
+
+// packageURL defines URLs to the archive and their archive sha256 hash file, and marks
+// if this package is optional, for such case download needs to be ignored if package
+// not found in CDN.
+type packageURL struct {
+ Archive string
+ Hash string
+ Optional bool
+}
+
+// teleportPackageURLs returns the URL for the Teleport archive to download. The format is:
+// https://cdn.teleport.dev/teleport-{, ent-}v15.3.0-{linux, darwin, windows}-{amd64,arm64,arm,386}-{fips-}bin.tar.gz
+func teleportPackageURLs(baseURL, toolsVersion string) ([]packageURL, error) {
+ switch runtime.GOOS {
+ case "darwin":
+ tsh := baseURL + "/tsh-" + toolsVersion + ".pkg"
+ teleport := baseURL + "/teleport-" + toolsVersion + ".pkg"
+ return []packageURL{
+ {Archive: teleport, Hash: teleport + ".sha256"},
+ {Archive: tsh, Hash: tsh + ".sha256", Optional: true},
+ }, nil
+ case "windows":
+ archive := baseURL + "/teleport-v" + toolsVersion + "-windows-amd64-bin.zip"
+ return []packageURL{
+ {Archive: archive, Hash: archive + ".sha256"},
+ }, nil
+ case "linux":
+ m := modules.GetModules()
+ var b strings.Builder
+ b.WriteString(baseURL + "/teleport-")
+ if m.IsEnterpriseBuild() || m.IsBoringBinary() {
+ b.WriteString("ent-")
+ }
+ b.WriteString("v" + toolsVersion + "-" + runtime.GOOS + "-" + runtime.GOARCH + "-")
+ if m.IsBoringBinary() {
+ b.WriteString("fips-")
+ }
+ b.WriteString("bin.tar.gz")
+ archive := b.String()
+ return []packageURL{
+ {Archive: archive, Hash: archive + ".sha256"},
+ }, nil
+ default:
+ return nil, trace.BadParameter("unsupported runtime: %v", runtime.GOOS)
+ }
+}
+
+// toolName returns the path to {tsh, tctl} for the executable that started
+// the current process.
+func toolName(toolsDir string) (string, error) {
+ executablePath, err := os.Executable()
+ if err != nil {
+ return "", trace.Wrap(err)
+ }
+
+ return filepath.Join(toolsDir, filepath.Base(executablePath)), nil
+}
+
+// checkFreeSpace verifies that we have enough requested space at specific directory.
+func checkFreeSpace(path string, requested uint64) error {
+ free, err := utils.FreeDiskWithReserve(path, reservedFreeDisk)
+ if err != nil {
+ return trace.Errorf("failed to calculate free disk in %q: %v", path, err)
+ }
+ // Bail if there's not enough free disk space at the target.
+ if requested > free {
+ return trace.Errorf("%q needs %d additional bytes of disk space", path, requested-free)
+ }
+
+ return nil
+}
diff --git a/lib/cache/cache_test.go b/lib/cache/cache_test.go
index 13849f4855ccf..19e625561dbc1 100644
--- a/lib/cache/cache_test.go
+++ b/lib/cache/cache_test.go
@@ -4004,7 +4004,9 @@ func newAutoUpdateConfig(t *testing.T) *autoupdate.AutoUpdateConfig {
t.Helper()
r, err := update.NewAutoUpdateConfig(&autoupdate.AutoUpdateConfigSpec{
- ToolsAutoupdate: true,
+ Tools: &autoupdate.AutoUpdateConfigSpecTools{
+ Mode: update.ToolsUpdateModeEnabled,
+ },
})
require.NoError(t, err)
return r
@@ -4014,7 +4016,9 @@ func newAutoUpdateVersion(t *testing.T) *autoupdate.AutoUpdateVersion {
t.Helper()
r, err := update.NewAutoUpdateVersion(&autoupdate.AutoUpdateVersionSpec{
- ToolsVersion: "1.2.3",
+ Tools: &autoupdate.AutoUpdateVersionSpecTools{
+ TargetVersion: "1.2.3",
+ },
})
require.NoError(t, err)
return r
diff --git a/lib/client/api.go b/lib/client/api.go
index 7663a1b127cb6..84244bb705519 100644
--- a/lib/client/api.go
+++ b/lib/client/api.go
@@ -74,6 +74,7 @@ import (
"github.com/gravitational/teleport/lib/auth/touchid"
wancli "github.com/gravitational/teleport/lib/auth/webauthncli"
"github.com/gravitational/teleport/lib/authz"
+ "github.com/gravitational/teleport/lib/autoupdate/tools"
libmfa "github.com/gravitational/teleport/lib/client/mfa"
"github.com/gravitational/teleport/lib/client/sso"
"github.com/gravitational/teleport/lib/client/terminal"
@@ -682,6 +683,10 @@ func RetryWithRelogin(ctx context.Context, tc *TeleportClient, fn func() error,
return trace.Wrap(err)
}
+ if err := tools.CheckAndUpdateRemote(ctx, teleport.Version, tc.WebProxyAddr, tc.InsecureSkipVerify); err != nil {
+ return trace.Wrap(err)
+ }
+
if opt.afterLoginHook != nil {
if err := opt.afterLoginHook(); err != nil {
return trace.Wrap(err)
diff --git a/lib/events/api.go b/lib/events/api.go
index 3e55b5d575d2c..f8cbf2a328fb4 100644
--- a/lib/events/api.go
+++ b/lib/events/api.go
@@ -822,6 +822,20 @@ const (
UserTaskUpdateEvent = "user_task.update"
// UserTaskDeleteEvent is emitted when a user task resource is deleted.
UserTaskDeleteEvent = "user_task.delete"
+
+ // AutoUpdateConfigCreateEvent is emitted when a AutoUpdateConfig resource is created.
+ AutoUpdateConfigCreateEvent = "auto_update_config.create"
+ // AutoUpdateConfigUpdateEvent is emitted when a AutoUpdateConfig resource is updated.
+ AutoUpdateConfigUpdateEvent = "auto_update_config.update"
+ // AutoUpdateConfigDeleteEvent is emitted when a AutoUpdateConfig resource is deleted.
+ AutoUpdateConfigDeleteEvent = "auto_update_config.delete"
+
+ // AutoUpdateVersionCreateEvent is emitted when a AutoUpdateVersion resource is created.
+ AutoUpdateVersionCreateEvent = "auto_update_version.create"
+ // AutoUpdateVersionUpdateEvent is emitted when a AutoUpdateVersion resource is updated.
+ AutoUpdateVersionUpdateEvent = "auto_update_version.update"
+ // AutoUpdateVersionDeleteEvent is emitted when a AutoUpdateVersion resource is deleted.
+ AutoUpdateVersionDeleteEvent = "auto_update_version.delete"
)
// Add an entry to eventsMap in lib/events/events_test.go when you add
diff --git a/lib/events/codes.go b/lib/events/codes.go
index e26cc1294d257..1d1fe265aa41a 100644
--- a/lib/events/codes.go
+++ b/lib/events/codes.go
@@ -671,6 +671,20 @@ const (
// UserTaskDeleteCode is the user task delete event code.
UserTaskDeleteCode = "UT003I"
+ // AutoUpdateConfigCreateCode is the auto update config create event code.
+ AutoUpdateConfigCreateCode = "AUC001I"
+ // AutoUpdateConfigUpdateCode is the auto update config update event code.
+ AutoUpdateConfigUpdateCode = "AUC002I"
+ // AutoUpdateConfigDeleteCode is the auto update config delete event code.
+ AutoUpdateConfigDeleteCode = "AUC003I"
+
+ // AutoUpdateVersionCreateCode is the auto update version create event code.
+ AutoUpdateVersionCreateCode = "AUV001I"
+ // AutoUpdateVersionUpdateCode is the auto update version update event code.
+ AutoUpdateVersionUpdateCode = "AUV002I"
+ // AutoUpdateVersionDeleteCode is the auto update version delete event code.
+ AutoUpdateVersionDeleteCode = "AUV003I"
+
// UnknownCode is used when an event of unknown type is encountered.
UnknownCode = apievents.UnknownCode
)
diff --git a/lib/events/dynamic.go b/lib/events/dynamic.go
index 96dded31b85a1..3b3cabf3f271c 100644
--- a/lib/events/dynamic.go
+++ b/lib/events/dynamic.go
@@ -444,6 +444,20 @@ func FromEventFields(fields EventFields) (events.AuditEvent, error) {
e = &events.UserTaskUpdate{}
case UserTaskDeleteEvent:
e = &events.UserTaskDelete{}
+
+ case AutoUpdateConfigCreateEvent:
+ e = &events.AutoUpdateConfigCreate{}
+ case AutoUpdateConfigUpdateEvent:
+ e = &events.AutoUpdateConfigUpdate{}
+ case AutoUpdateConfigDeleteEvent:
+ e = &events.AutoUpdateConfigDelete{}
+
+ case AutoUpdateVersionCreateEvent:
+ e = &events.AutoUpdateVersionCreate{}
+ case AutoUpdateVersionUpdateEvent:
+ e = &events.AutoUpdateVersionUpdate{}
+ case AutoUpdateVersionDeleteEvent:
+ e = &events.AutoUpdateVersionDelete{}
default:
log.Errorf("Attempted to convert dynamic event of unknown type %q into protobuf event.", eventType)
unknown := &events.Unknown{}
diff --git a/lib/events/events_test.go b/lib/events/events_test.go
index cfee0b600c467..7797810423216 100644
--- a/lib/events/events_test.go
+++ b/lib/events/events_test.go
@@ -235,6 +235,12 @@ var eventsMap = map[string]apievents.AuditEvent{
UserTaskCreateEvent: &apievents.UserTaskCreate{},
UserTaskUpdateEvent: &apievents.UserTaskUpdate{},
UserTaskDeleteEvent: &apievents.UserTaskDelete{},
+ AutoUpdateConfigCreateEvent: &apievents.AutoUpdateConfigCreate{},
+ AutoUpdateConfigUpdateEvent: &apievents.AutoUpdateConfigUpdate{},
+ AutoUpdateConfigDeleteEvent: &apievents.AutoUpdateConfigDelete{},
+ AutoUpdateVersionCreateEvent: &apievents.AutoUpdateVersionCreate{},
+ AutoUpdateVersionUpdateEvent: &apievents.AutoUpdateVersionUpdate{},
+ AutoUpdateVersionDeleteEvent: &apievents.AutoUpdateVersionDelete{},
}
// TestJSON tests JSON marshal events
diff --git a/lib/services/local/autoupdate_test.go b/lib/services/local/autoupdate_test.go
index 77e13937ac47a..ae858d65cc47c 100644
--- a/lib/services/local/autoupdate_test.go
+++ b/lib/services/local/autoupdate_test.go
@@ -51,7 +51,11 @@ func TestAutoUpdateServiceConfigCRUD(t *testing.T) {
Kind: types.KindAutoUpdateConfig,
Version: types.V1,
Metadata: &headerv1.Metadata{Name: types.MetaNameAutoUpdateConfig},
- Spec: &autoupdatev1pb.AutoUpdateConfigSpec{ToolsAutoupdate: true},
+ Spec: &autoupdatev1pb.AutoUpdateConfigSpec{
+ Tools: &autoupdatev1pb.AutoUpdateConfigSpecTools{
+ Mode: autoupdate.ToolsUpdateModeEnabled,
+ },
+ },
}
created, err := service.CreateAutoUpdateConfig(ctx, config)
@@ -72,10 +76,12 @@ func TestAutoUpdateServiceConfigCRUD(t *testing.T) {
require.Empty(t, diff)
require.Equal(t, created.GetMetadata().GetRevision(), got.GetMetadata().GetRevision())
- config.Spec.ToolsAutoupdate = false
+ config.Spec.Tools = &autoupdatev1pb.AutoUpdateConfigSpecTools{
+ Mode: autoupdate.ToolsUpdateModeDisabled,
+ }
updated, err := service.UpdateAutoUpdateConfig(ctx, config)
require.NoError(t, err)
- require.NotEqual(t, got.GetSpec().GetToolsAutoupdate(), updated.GetSpec().GetToolsAutoupdate())
+ require.NotEqual(t, got.GetSpec().GetTools(), updated.GetSpec().GetTools())
_, err = service.UpsertAutoUpdateConfig(ctx, config)
require.NoError(t, err)
@@ -107,7 +113,11 @@ func TestAutoUpdateServiceVersionCRUD(t *testing.T) {
Kind: types.KindAutoUpdateVersion,
Version: types.V1,
Metadata: &headerv1.Metadata{Name: types.MetaNameAutoUpdateVersion},
- Spec: &autoupdatev1pb.AutoUpdateVersionSpec{ToolsVersion: "1.2.3"},
+ Spec: &autoupdatev1pb.AutoUpdateVersionSpec{
+ Tools: &autoupdatev1pb.AutoUpdateVersionSpecTools{
+ TargetVersion: "1.2.3",
+ },
+ },
}
created, err := service.CreateAutoUpdateVersion(ctx, version)
@@ -128,10 +138,12 @@ func TestAutoUpdateServiceVersionCRUD(t *testing.T) {
require.Empty(t, diff)
require.Equal(t, created.GetMetadata().GetRevision(), got.GetMetadata().GetRevision())
- version.Spec.ToolsVersion = "3.2.1"
+ version.Spec.Tools = &autoupdatev1pb.AutoUpdateVersionSpecTools{
+ TargetVersion: "3.2.1",
+ }
updated, err := service.UpdateAutoUpdateVersion(ctx, version)
require.NoError(t, err)
- require.NotEqual(t, got.GetSpec().GetToolsVersion(), updated.GetSpec().GetToolsVersion())
+ require.NotEqual(t, got.GetSpec().GetTools().GetTargetVersion(), updated.GetSpec().GetTools().GetTargetVersion())
_, err = service.UpsertAutoUpdateVersion(ctx, version)
require.NoError(t, err)
@@ -163,7 +175,11 @@ func TestAutoUpdateServiceInvalidNameCreate(t *testing.T) {
Kind: types.KindAutoUpdateConfig,
Version: types.V1,
Metadata: &headerv1.Metadata{Name: "invalid-auto-update-config-name"},
- Spec: &autoupdatev1pb.AutoUpdateConfigSpec{ToolsAutoupdate: true},
+ Spec: &autoupdatev1pb.AutoUpdateConfigSpec{
+ Tools: &autoupdatev1pb.AutoUpdateConfigSpecTools{
+ Mode: autoupdate.ToolsUpdateModeEnabled,
+ },
+ },
}
createdConfig, err := service.CreateAutoUpdateConfig(ctx, config)
@@ -174,7 +190,11 @@ func TestAutoUpdateServiceInvalidNameCreate(t *testing.T) {
Kind: types.KindAutoUpdateVersion,
Version: types.V1,
Metadata: &headerv1.Metadata{Name: "invalid-auto-update-version-name"},
- Spec: &autoupdatev1pb.AutoUpdateVersionSpec{ToolsVersion: "1.2.3"},
+ Spec: &autoupdatev1pb.AutoUpdateVersionSpec{
+ Tools: &autoupdatev1pb.AutoUpdateVersionSpecTools{
+ TargetVersion: "1.2.3",
+ },
+ },
}
createdVersion, err := service.CreateAutoUpdateVersion(ctx, version)
@@ -196,7 +216,11 @@ func TestAutoUpdateServiceInvalidNameUpdate(t *testing.T) {
ctx := context.Background()
// Validate the config update restriction.
- config, err := autoupdate.NewAutoUpdateConfig(&autoupdatev1pb.AutoUpdateConfigSpec{ToolsAutoupdate: true})
+ config, err := autoupdate.NewAutoUpdateConfig(&autoupdatev1pb.AutoUpdateConfigSpec{
+ Tools: &autoupdatev1pb.AutoUpdateConfigSpecTools{
+ Mode: autoupdate.ToolsUpdateModeEnabled,
+ },
+ })
require.NoError(t, err)
createdConfig, err := service.UpsertAutoUpdateConfig(ctx, config)
@@ -209,7 +233,11 @@ func TestAutoUpdateServiceInvalidNameUpdate(t *testing.T) {
require.Nil(t, createdConfig)
// Validate the version update restriction.
- version, err := autoupdate.NewAutoUpdateVersion(&autoupdatev1pb.AutoUpdateVersionSpec{ToolsVersion: "1.2.3"})
+ version, err := autoupdate.NewAutoUpdateVersion(&autoupdatev1pb.AutoUpdateVersionSpec{
+ Tools: &autoupdatev1pb.AutoUpdateVersionSpecTools{
+ TargetVersion: "1.2.3",
+ },
+ })
require.NoError(t, err)
createdVersion, err := service.UpsertAutoUpdateVersion(ctx, version)
diff --git a/lib/utils/disk.go b/lib/utils/disk.go
index 78fba5457099b..782c598d26229 100644
--- a/lib/utils/disk.go
+++ b/lib/utils/disk.go
@@ -46,6 +46,21 @@ func PercentUsed(path string) (float64, error) {
return Round(ratio * 100), nil
}
+// FreeDiskWithReserve returns the available disk space (in bytes) on the disk at dir, minus `reservedFreeDisk`.
+func FreeDiskWithReserve(dir string, reservedFreeDisk uint64) (uint64, error) {
+ var stat syscall.Statfs_t
+ err := syscall.Statfs(dir, &stat)
+ if err != nil {
+ return 0, trace.Wrap(err)
+ }
+ //nolint:unconvert // The cast is only necessary for linux platform.
+ avail := uint64(stat.Bavail) * uint64(stat.Bsize)
+ if reservedFreeDisk > avail {
+ return 0, trace.Errorf("no free space left")
+ }
+ return avail - reservedFreeDisk, nil
+}
+
// CanUserWriteTo attempts to check if a user has write access to certain path.
// It also works around the program being run as root and tries to check
// the permissions of the user who executed the program as root.
diff --git a/lib/utils/disk_windows.go b/lib/utils/disk_windows.go
index cde568b4c9589..8056849afa82b 100644
--- a/lib/utils/disk_windows.go
+++ b/lib/utils/disk_windows.go
@@ -21,13 +21,29 @@
package utils
-import "github.com/gravitational/trace"
+import (
+ "github.com/gravitational/trace"
+ "golang.org/x/sys/windows"
+)
// PercentUsed is not supported on Windows.
func PercentUsed(path string) (float64, error) {
return 0.0, trace.NotImplemented("disk usage not supported on Windows")
}
+// FreeDiskWithReserve returns the available disk space (in bytes) on the disk at dir, minus `reservedFreeDisk`.
+func FreeDiskWithReserve(dir string, reservedFreeDisk uint64) (uint64, error) {
+ var avail uint64
+ err := windows.GetDiskFreeSpaceEx(windows.StringToUTF16Ptr(dir), &avail, nil, nil)
+ if err != nil {
+ return 0, trace.Wrap(err)
+ }
+ if reservedFreeDisk > avail {
+ return 0, trace.Errorf("no free space left")
+ }
+ return avail - reservedFreeDisk, nil
+}
+
// CanUserWriteTo is not supported on Windows.
func CanUserWriteTo(path string) (bool, error) {
return false, trace.NotImplemented("path permission checking is not supported on Windows")
diff --git a/lib/utils/packaging/unarchive.go b/lib/utils/packaging/unarchive.go
new file mode 100644
index 0000000000000..6496afbc182c3
--- /dev/null
+++ b/lib/utils/packaging/unarchive.go
@@ -0,0 +1,162 @@
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package packaging
+
+import (
+ "archive/zip"
+ "io"
+ "os"
+ "path/filepath"
+ "slices"
+ "strings"
+
+ "github.com/gravitational/trace"
+
+ "github.com/gravitational/teleport/lib/utils"
+)
+
+const (
+ // reservedFreeDisk is the predefined amount of free disk space (in bytes) required
+ // to remain available after extracting Teleport binaries.
+ reservedFreeDisk = 10 * 1024 * 1024
+)
+
+// RemoveWithSuffix removes all that matches the provided suffix, except for file or directory with `skipName`.
+func RemoveWithSuffix(dir, suffix string, skipNames []string) error {
+ var removePaths []string
+ err := filepath.Walk(dir, func(path string, info os.FileInfo, err error) error {
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ if slices.Contains(skipNames, info.Name()) {
+ return nil
+ }
+ if !strings.HasSuffix(info.Name(), suffix) {
+ return nil
+ }
+ removePaths = append(removePaths, path)
+ if info.IsDir() {
+ return filepath.SkipDir
+ }
+ return nil
+ })
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ var aggErr []error
+ for _, path := range removePaths {
+ if err := os.RemoveAll(path); err != nil {
+ aggErr = append(aggErr, err)
+ }
+ }
+ return trace.NewAggregate(aggErr...)
+}
+
+// replaceZip un-archives the Teleport package in .zip format, iterates through
+// the compressed content, and ignores everything not matching the binaries specified
+// in the execNames argument. The data is extracted to extractDir, and symlinks are created
+// in toolsDir pointing to the extractDir path with binaries.
+func replaceZip(toolsDir string, archivePath string, extractDir string, execNames []string) error {
+ f, err := os.Open(archivePath)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ defer f.Close()
+
+ fi, err := f.Stat()
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ zipReader, err := zip.NewReader(f, fi.Size())
+ if err != nil {
+ return trace.Wrap(err)
+ }
+
+ var totalSize uint64 = 0
+ for _, zipFile := range zipReader.File {
+ baseName := filepath.Base(zipFile.Name)
+ // Skip over any files in the archive that are not defined execNames.
+ if !slices.ContainsFunc(execNames, func(s string) bool {
+ return baseName == s
+ }) {
+ continue
+ }
+ totalSize += zipFile.UncompressedSize64
+ }
+ // Verify that we have enough space for uncompressed zipFile.
+ if err := checkFreeSpace(extractDir, totalSize); err != nil {
+ return trace.Wrap(err)
+ }
+
+ for _, zipFile := range zipReader.File {
+ baseName := filepath.Base(zipFile.Name)
+ // Skip over any files in the archive that are not defined execNames.
+ if !slices.Contains(execNames, baseName) {
+ continue
+ }
+
+ if err := func(zipFile *zip.File) error {
+ file, err := zipFile.Open()
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ defer file.Close()
+
+ dest := filepath.Join(extractDir, baseName)
+ destFile, err := os.OpenFile(dest, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o755)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ defer destFile.Close()
+
+ if _, err := io.Copy(destFile, file); err != nil {
+ return trace.Wrap(err)
+ }
+ appPath := filepath.Join(toolsDir, baseName)
+ if err := os.Remove(appPath); err != nil && !os.IsNotExist(err) {
+ return trace.Wrap(err)
+ }
+ // For the Windows build we have to copy binary to be able
+ // to do this without administrative access as it required
+ // for symlinks.
+ if err := utils.CopyFile(dest, appPath, 0o755); err != nil {
+ return trace.Wrap(err)
+ }
+ return trace.Wrap(destFile.Close())
+ }(zipFile); err != nil {
+ return trace.Wrap(err)
+ }
+ }
+
+ return nil
+}
+
+// checkFreeSpace verifies that we have enough requested space (in bytes) at specific directory.
+func checkFreeSpace(path string, requested uint64) error {
+ free, err := utils.FreeDiskWithReserve(path, reservedFreeDisk)
+ if err != nil {
+ return trace.Errorf("failed to calculate free disk in %q: %v", path, err)
+ }
+ // Bail if there's not enough free disk space at the target.
+ if requested > free {
+ return trace.Errorf("%q needs %d additional bytes of disk space", path, requested-free)
+ }
+
+ return nil
+}
diff --git a/lib/utils/packaging/unarchive_test.go b/lib/utils/packaging/unarchive_test.go
new file mode 100644
index 0000000000000..b124b603b0fd5
--- /dev/null
+++ b/lib/utils/packaging/unarchive_test.go
@@ -0,0 +1,147 @@
+//go:build !windows
+
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package packaging
+
+import (
+ "context"
+ "os"
+ "path/filepath"
+ "runtime"
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
+
+ "github.com/gravitational/teleport/integration/helpers/archive"
+)
+
+// TestPackaging verifies un-archiving of all supported teleport package formats.
+func TestPackaging(t *testing.T) {
+ script := "#!/bin/sh\necho test"
+
+ sourceDir, err := os.MkdirTemp(os.TempDir(), "source")
+ require.NoError(t, err)
+
+ toolsDir, err := os.MkdirTemp(os.TempDir(), "dest")
+ require.NoError(t, err)
+
+ extractDir, err := os.MkdirTemp(toolsDir, "extract")
+ require.NoError(t, err)
+
+ t.Cleanup(func() {
+ require.NoError(t, os.RemoveAll(extractDir))
+ require.NoError(t, os.RemoveAll(sourceDir))
+ require.NoError(t, os.RemoveAll(toolsDir))
+ })
+
+ // Create test script for packaging in relative path `teleport\bin` to ensure that
+ // binaries going to be identified and extracted flatten to `extractDir`.
+ binPath := filepath.Join(sourceDir, "teleport", "bin")
+ require.NoError(t, os.MkdirAll(binPath, 0o755))
+ require.NoError(t, os.WriteFile(filepath.Join(binPath, "tsh"), []byte(script), 0o755))
+ require.NoError(t, os.WriteFile(filepath.Join(binPath, "tctl"), []byte(script), 0o755))
+
+ ctx := context.Background()
+
+ t.Run("tar.gz", func(t *testing.T) {
+ archivePath := filepath.Join(toolsDir, "tsh.tar.gz")
+ err = archive.CompressDirToTarGzFile(ctx, sourceDir, archivePath)
+ require.NoError(t, err)
+ require.FileExists(t, archivePath, "archive not created")
+
+ // For the .tar.gz format we extract app by app to check that content discard is not required.
+ err = replaceTarGz(toolsDir, archivePath, extractDir, []string{"tctl"})
+ require.NoError(t, err)
+ err = replaceTarGz(toolsDir, archivePath, extractDir, []string{"tsh"})
+ require.NoError(t, err)
+ assert.FileExists(t, filepath.Join(toolsDir, "tsh"), "script not created")
+ assert.FileExists(t, filepath.Join(toolsDir, "tctl"), "script not created")
+
+ data, err := os.ReadFile(filepath.Join(toolsDir, "tsh"))
+ require.NoError(t, err)
+ assert.Equal(t, script, string(data))
+ })
+
+ t.Run("pkg", func(t *testing.T) {
+ if runtime.GOOS != "darwin" {
+ t.Skip("unsupported platform")
+ }
+ archivePath := filepath.Join(toolsDir, "tsh.pkg")
+ err = archive.CompressDirToPkgFile(ctx, sourceDir, archivePath, "com.example.pkgtest")
+ require.NoError(t, err)
+ require.FileExists(t, archivePath, "archive not created")
+
+ err = replacePkg(toolsDir, archivePath, filepath.Join(extractDir, "apps"), []string{"tsh", "tctl"})
+ require.NoError(t, err)
+ assert.FileExists(t, filepath.Join(toolsDir, "tsh"), "script not created")
+ assert.FileExists(t, filepath.Join(toolsDir, "tctl"), "script not created")
+
+ data, err := os.ReadFile(filepath.Join(toolsDir, "tsh"))
+ require.NoError(t, err)
+ assert.Equal(t, script, string(data))
+ })
+
+ t.Run("zip", func(t *testing.T) {
+ archivePath := filepath.Join(toolsDir, "tsh.zip")
+ err = archive.CompressDirToZipFile(ctx, sourceDir, archivePath)
+ require.NoError(t, err)
+ require.FileExists(t, archivePath, "archive not created")
+
+ err = replaceZip(toolsDir, archivePath, extractDir, []string{"tsh", "tctl"})
+ require.NoError(t, err)
+ assert.FileExists(t, filepath.Join(toolsDir, "tsh"), "script not created")
+ assert.FileExists(t, filepath.Join(toolsDir, "tctl"), "script not created")
+
+ data, err := os.ReadFile(filepath.Join(toolsDir, "tsh"))
+ require.NoError(t, err)
+ assert.Equal(t, script, string(data))
+ })
+}
+
+// TestRemoveWithSuffix verifies that helper for the cleanup removes directories
+func TestRemoveWithSuffix(t *testing.T) {
+ testDir := t.TempDir()
+ dirForRemove := "test-extract-pkg"
+
+ // Creates directories `test/test-extract-pkg/test-extract-pkg` with exact names
+ // to ensure that only root one going to be removed recursively without any error.
+ path := filepath.Join(testDir, dirForRemove, dirForRemove)
+ require.NoError(t, os.MkdirAll(path, 0o755))
+ // Also we create the directory that needs to be skipped, and it matches the remove
+ // pattern `test/skip-test-extract-pkg/test-extract-pkg`.
+ skipName := "skip-" + dirForRemove
+ skipPath := filepath.Join(testDir, skipName)
+ dirInSkipPath := filepath.Join(skipPath, dirForRemove)
+ require.NoError(t, os.MkdirAll(skipPath, 0o755))
+
+ err := RemoveWithSuffix(testDir, dirForRemove, []string{skipName})
+ require.NoError(t, err)
+
+ _, err = os.Stat(filepath.Join(testDir, dirForRemove))
+ assert.True(t, os.IsNotExist(err))
+
+ filePath, err := os.Stat(skipPath)
+ require.NoError(t, err)
+ assert.True(t, filePath.IsDir())
+
+ _, err = os.Stat(dirInSkipPath)
+ assert.True(t, os.IsNotExist(err))
+}
diff --git a/lib/utils/packaging/unarchive_unix.go b/lib/utils/packaging/unarchive_unix.go
new file mode 100644
index 0000000000000..8daf1b3aa5525
--- /dev/null
+++ b/lib/utils/packaging/unarchive_unix.go
@@ -0,0 +1,208 @@
+//go:build !windows
+
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package packaging
+
+import (
+ "archive/tar"
+ "compress/gzip"
+ "errors"
+ "io"
+ "os"
+ "os/exec"
+ "path/filepath"
+ "runtime"
+ "slices"
+
+ "github.com/google/renameio/v2"
+ "github.com/gravitational/trace"
+
+ "github.com/gravitational/teleport/api/constants"
+)
+
+// ReplaceToolsBinaries extracts executables specified by execNames from archivePath into
+// extractDir. After each executable is extracted, it is symlinked from extractDir/[name] to
+// toolsDir/[name].
+//
+// For Darwin, archivePath must be a .pkg file.
+// For other POSIX, archivePath must be a gzipped tarball.
+func ReplaceToolsBinaries(toolsDir string, archivePath string, extractDir string, execNames []string) error {
+ switch runtime.GOOS {
+ case constants.DarwinOS:
+ return replacePkg(toolsDir, archivePath, extractDir, execNames)
+ default:
+ return replaceTarGz(toolsDir, archivePath, extractDir, execNames)
+ }
+}
+
+// replaceTarGz un-archives the Teleport package in .tar.gz format, iterates through
+// the compressed content, and ignores everything not matching the app binaries specified
+// in the apps argument. The data is extracted to extractDir, and symlinks are created
+// in toolsDir pointing to the extractDir path with binaries.
+func replaceTarGz(toolsDir string, archivePath string, extractDir string, execNames []string) error {
+ if err := validateFreeSpaceTarGz(archivePath, extractDir, execNames); err != nil {
+ return trace.Wrap(err)
+ }
+ f, err := os.Open(archivePath)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ defer f.Close()
+
+ gzipReader, err := gzip.NewReader(f)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ tarReader := tar.NewReader(gzipReader)
+ for {
+ header, err := tarReader.Next()
+ if errors.Is(err, io.EOF) {
+ break
+ }
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ baseName := filepath.Base(header.Name)
+ // Skip over any files in the archive that are not in execNames.
+ if !slices.Contains(execNames, baseName) {
+ continue
+ }
+
+ if err = func(header *tar.Header) error {
+ tempFile, err := renameio.TempFile(extractDir, filepath.Join(toolsDir, baseName))
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ defer tempFile.Cleanup()
+ if err := os.Chmod(tempFile.Name(), 0o755); err != nil {
+ return trace.Wrap(err)
+ }
+ if _, err := io.Copy(tempFile, tarReader); err != nil {
+ return trace.Wrap(err)
+ }
+ if err := tempFile.CloseAtomicallyReplace(); err != nil {
+ return trace.Wrap(err)
+ }
+ return trace.Wrap(tempFile.Cleanup())
+ }(header); err != nil {
+ return trace.Wrap(err)
+ }
+ }
+
+ return trace.Wrap(gzipReader.Close())
+}
+
+// validateFreeSpaceTarGz validates that extraction size match available disk space in `extractDir`.
+func validateFreeSpaceTarGz(archivePath string, extractDir string, execNames []string) error {
+ f, err := os.Open(archivePath)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ defer f.Close()
+
+ var totalSize uint64
+ gzipReader, err := gzip.NewReader(f)
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ tarReader := tar.NewReader(gzipReader)
+ for {
+ header, err := tarReader.Next()
+ if errors.Is(err, io.EOF) {
+ break
+ }
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ baseName := filepath.Base(header.Name)
+ // Skip over any files in the archive that are not defined execNames.
+ if !slices.Contains(execNames, baseName) {
+ continue
+ }
+ totalSize += uint64(header.Size)
+ }
+
+ return trace.Wrap(checkFreeSpace(extractDir, totalSize))
+}
+
+// replacePkg expands the Teleport package in .pkg format using the platform-dependent pkgutil utility.
+// The data is extracted to extractDir, and symlinks are created in toolsDir pointing to the binaries
+// in extractDir. Before creating the symlinks, each binary must be executed at least once to pass
+// OS signature verification.
+func replacePkg(toolsDir string, archivePath string, extractDir string, execNames []string) error {
+ // Use "pkgutil" from the filesystem to expand the archive. In theory .pkg
+ // files are xz archives, however it's still safer to use "pkgutil" in-case
+ // Apple makes non-standard changes to the format.
+ //
+ // Full command: pkgutil --expand-full NAME.pkg DIRECTORY/
+ pkgutil, err := exec.LookPath("pkgutil")
+ if err != nil {
+ return trace.Wrap(err)
+ }
+
+ if err = exec.Command(pkgutil, "--expand-full", archivePath, extractDir).Run(); err != nil {
+ return trace.Wrap(err)
+ }
+
+ err = filepath.Walk(extractDir, func(path string, info os.FileInfo, err error) error {
+ if err != nil {
+ return trace.Wrap(err)
+ }
+ if info.IsDir() {
+ return nil
+ }
+ // Skip over any files in the archive that are not in execNames.
+ if !slices.ContainsFunc(execNames, func(s string) bool {
+ return filepath.Base(info.Name()) == s
+ }) {
+ return nil
+ }
+
+ // The first time a signed and notarized binary macOS application is run,
+ // execution is paused while it gets sent to Apple to verify. Once Apple
+ // approves the binary, the "com.apple.macl" extended attribute is added
+ // and the process is allowed to execute. This process is not concurrent, any
+ // other operations (like moving the application) on the application during
+ // this time will lead to the application being sent SIGKILL.
+ //
+ // Since apps have to be concurrent, execute app before performing any
+ // swap operations. This ensures that the "com.apple.macl" extended
+ // attribute is set and macOS will not send a SIGKILL to the process
+ // if multiple processes are trying to operate on it.
+ command := exec.Command(path, "version")
+ command.Env = []string{"TELEPORT_TOOLS_VERSION=off"}
+ if err := command.Run(); err != nil {
+ return trace.WrapWithMessage(err, "failed to validate binary")
+ }
+
+ // Due to macOS applications not being a single binary (they are a
+ // directory), atomic operations are not possible. To work around this, use
+ // a symlink (which can be atomically swapped), then do a cleanup pass
+ // removing any stale copies of the expanded package.
+ newName := filepath.Join(toolsDir, filepath.Base(path))
+ if err := renameio.Symlink(path, newName); err != nil {
+ return trace.Wrap(err)
+ }
+
+ return nil
+ })
+
+ return trace.Wrap(err)
+}
diff --git a/lib/utils/packaging/unarchive_windows.go b/lib/utils/packaging/unarchive_windows.go
new file mode 100644
index 0000000000000..c07471adce83c
--- /dev/null
+++ b/lib/utils/packaging/unarchive_windows.go
@@ -0,0 +1,30 @@
+//go:build windows
+
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package packaging
+
+// ReplaceToolsBinaries extracts executables specified by execNames from archivePath into
+// extractDir. After each executable is extracted, it is symlinked from extractDir/[name] to
+// toolsDir/[name].
+//
+// For Windows, archivePath must be a .zip file.
+func ReplaceToolsBinaries(toolsDir string, archivePath string, extractPath string, execNames []string) error {
+ return replaceZip(toolsDir, archivePath, extractPath, execNames)
+}
diff --git a/lib/utils/signal/stack_handler.go b/lib/utils/signal/stack_handler.go
new file mode 100644
index 0000000000000..0fcbefb081d11
--- /dev/null
+++ b/lib/utils/signal/stack_handler.go
@@ -0,0 +1,98 @@
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package signal
+
+import (
+ "container/list"
+ "context"
+ "os"
+ "os/signal"
+ "sync"
+ "syscall"
+)
+
+// Handler implements stack for context cancellation.
+type Handler struct {
+ mu sync.Mutex
+ list *list.List
+}
+
+var handler = &Handler{
+ list: list.New(),
+}
+
+// GetSignalHandler returns global singleton instance of signal
+func GetSignalHandler() *Handler {
+ return handler
+}
+
+// NotifyContext creates context which going to be canceled after SIGINT, SIGTERM
+// in order of adding them to the stack. When very first context is canceled
+// we stop watching the OS signals.
+func (s *Handler) NotifyContext(parent context.Context) (context.Context, context.CancelFunc) {
+ s.mu.Lock()
+ defer s.mu.Unlock()
+
+ if s.list.Len() == 0 {
+ s.listenSignals()
+ }
+
+ ctx, cancel := context.WithCancel(parent)
+ element := s.list.PushBack(cancel)
+
+ return ctx, func() {
+ s.mu.Lock()
+ defer s.mu.Unlock()
+
+ s.list.Remove(element)
+ cancel()
+ }
+}
+
+// listenSignals sets up the signal listener for SIGINT, SIGTERM.
+func (s *Handler) listenSignals() {
+ sigChan := make(chan os.Signal, 1)
+ signal.Notify(sigChan, syscall.SIGINT, syscall.SIGTERM)
+ go func() {
+ for {
+ if sig := <-sigChan; sig == nil {
+ return
+ }
+ if !s.cancelNext() {
+ signal.Stop(sigChan)
+ return
+ }
+ }
+ }()
+}
+
+// cancelNext calls the most recent cancel func in the stack.
+func (s *Handler) cancelNext() bool {
+ s.mu.Lock()
+ defer s.mu.Unlock()
+
+ if s.list.Len() > 0 {
+ cancel := s.list.Remove(s.list.Back())
+ if cancel != nil {
+ cancel.(context.CancelFunc)()
+ }
+ }
+
+ return s.list.Len() != 0
+}
diff --git a/lib/utils/signal/stack_handler_test.go b/lib/utils/signal/stack_handler_test.go
new file mode 100644
index 0000000000000..b900939b886e8
--- /dev/null
+++ b/lib/utils/signal/stack_handler_test.go
@@ -0,0 +1,88 @@
+/*
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package signal
+
+import (
+ "context"
+ "os"
+ "syscall"
+ "testing"
+ "time"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
+)
+
+// TestGetSignalHandler verifies the cancellation stack order.
+func TestGetSignalHandler(t *testing.T) {
+ testHandler := GetSignalHandler()
+ parent := context.Background()
+
+ ctx1, cancel1 := testHandler.NotifyContext(parent)
+ ctx2, cancel2 := testHandler.NotifyContext(parent)
+ ctx3, cancel3 := testHandler.NotifyContext(parent)
+ ctx4, cancel4 := testHandler.NotifyContext(parent)
+ t.Cleanup(func() {
+ cancel4()
+ cancel2()
+ cancel1()
+ })
+
+ // Verify that all context not canceled.
+ require.NoError(t, ctx4.Err())
+ require.NoError(t, ctx3.Err())
+ require.NoError(t, ctx2.Err())
+ require.NoError(t, ctx1.Err())
+
+ // Cancel context manually to ensure it was removed from stack in right order.
+ cancel3()
+
+ // Check that last added context is canceled.
+ require.NoError(t, syscall.Kill(os.Getpid(), syscall.SIGINT))
+ select {
+ case <-ctx4.Done():
+ assert.ErrorIs(t, ctx3.Err(), context.Canceled)
+ assert.NoError(t, ctx2.Err())
+ assert.NoError(t, ctx1.Err())
+ case <-time.After(time.Second):
+ assert.Fail(t, "context 3 must be canceled")
+ }
+
+ // Send interrupt signal to cancel next context in the stack.
+ require.NoError(t, syscall.Kill(os.Getpid(), syscall.SIGINT))
+ select {
+ case <-ctx2.Done():
+ assert.ErrorIs(t, ctx4.Err(), context.Canceled)
+ assert.ErrorIs(t, ctx3.Err(), context.Canceled)
+ assert.NoError(t, ctx1.Err())
+ case <-time.After(time.Second):
+ assert.Fail(t, "context 2 must be canceled")
+ }
+
+ // All context must be canceled.
+ require.NoError(t, syscall.Kill(os.Getpid(), syscall.SIGINT))
+ select {
+ case <-ctx1.Done():
+ assert.ErrorIs(t, ctx4.Err(), context.Canceled)
+ assert.ErrorIs(t, ctx3.Err(), context.Canceled)
+ assert.ErrorIs(t, ctx2.Err(), context.Canceled)
+ case <-time.After(time.Second):
+ assert.Fail(t, "context 1 must be canceled")
+ }
+}
diff --git a/lib/web/apiserver.go b/lib/web/apiserver.go
index 43d7052b9ba22..28b9db91c9adc 100644
--- a/lib/web/apiserver.go
+++ b/lib/web/apiserver.go
@@ -60,15 +60,18 @@ import (
"google.golang.org/protobuf/types/known/timestamppb"
"github.com/gravitational/teleport"
+ "github.com/gravitational/teleport/api"
apiclient "github.com/gravitational/teleport/api/client"
"github.com/gravitational/teleport/api/client/proto"
"github.com/gravitational/teleport/api/client/webclient"
"github.com/gravitational/teleport/api/constants"
apidefaults "github.com/gravitational/teleport/api/defaults"
+ autoupdatepb "github.com/gravitational/teleport/api/gen/proto/go/teleport/autoupdate/v1"
notificationsv1 "github.com/gravitational/teleport/api/gen/proto/go/teleport/notifications/v1"
"github.com/gravitational/teleport/api/mfa"
apitracing "github.com/gravitational/teleport/api/observability/tracing"
"github.com/gravitational/teleport/api/types"
+ "github.com/gravitational/teleport/api/types/autoupdate"
apievents "github.com/gravitational/teleport/api/types/events"
"github.com/gravitational/teleport/api/types/installers"
"github.com/gravitational/teleport/api/utils/keys"
@@ -129,6 +132,10 @@ const (
// DefaultFeatureWatchInterval is the default time in which the feature watcher
// should ping the auth server to check for updated features
DefaultFeatureWatchInterval = time.Minute * 5
+ // findEndpointCacheTTL is the cache TTL for the find endpoint generic answer.
+ // This cache is here to protect against accidental or intentional DDoS, the TTL must be low to quickly reflect
+ // cluster configuration changes.
+ findEndpointCacheTTL = 10 * time.Second
)
// healthCheckAppServerFunc defines a function used to perform a health check
@@ -176,6 +183,11 @@ type Handler struct {
// featureWatcherReady is a chan that the feature watcher closes
// to signal it is ready. Used in tests.
featureWatcherReady chan struct{}
+
+ // findEndpointCache is used to cache the find endpoint answer. As this endpoint is unprotected and has high
+ // rate-limits, each call must cause minimal work. The cached answer can be modulated after, for example if the
+ // caller specified its Automatic Updates UUID or group.
+ findEndpointCache *utils.FnCache
}
// HandlerOption is a functional argument - an option that can be passed
@@ -482,6 +494,18 @@ func NewHandler(cfg Config, opts ...HandlerOption) (*APIHandler, error) {
}
}
+ // We create the cache after applying the options to make sure we use the fake clock if it was passed.
+ findCache, err := utils.NewFnCache(utils.FnCacheConfig{
+ TTL: findEndpointCacheTTL,
+ Clock: h.clock,
+ Context: cfg.Context,
+ ReloadOnErr: false,
+ })
+ if err != nil {
+ return nil, trace.Wrap(err, "creating /find cache")
+ }
+ h.findEndpointCache = findCache
+
sessionLingeringThreshold := cachedSessionLingeringThreshold
if cfg.CachedSessionLingeringThreshold != nil {
sessionLingeringThreshold = *cfg.CachedSessionLingeringThreshold
@@ -1525,21 +1549,50 @@ func (h *Handler) ping(w http.ResponseWriter, r *http.Request, p httprouter.Para
MinClientVersion: teleport.MinClientVersion,
ClusterName: h.auth.clusterName,
AutomaticUpgrades: pr.ServerFeatures.GetAutomaticUpgrades(),
+ AutoUpdate: h.automaticUpdateSettings(r.Context()),
}, nil
}
func (h *Handler) find(w http.ResponseWriter, r *http.Request, p httprouter.Params) (interface{}, error) {
- // TODO(jent,espadolini): add a time-based cache to further reduce load on this endpoint
- proxyConfig, err := h.cfg.ProxySettings.GetProxySettings(r.Context())
+ // cache the generic answer to avoid doing work for each request
+ resp, err := utils.FnCacheGet[*webclient.PingResponse](r.Context(), h.findEndpointCache, "find", func(ctx context.Context) (*webclient.PingResponse, error) {
+ proxyConfig, err := h.cfg.ProxySettings.GetProxySettings(ctx)
+ if err != nil {
+ return nil, trace.Wrap(err)
+ }
+
+ return &webclient.PingResponse{
+ Proxy: *proxyConfig,
+ ServerVersion: teleport.Version,
+ MinClientVersion: teleport.MinClientVersion,
+ ClusterName: h.auth.clusterName,
+ AutoUpdate: h.automaticUpdateSettings(ctx),
+ }, nil
+ })
if err != nil {
return nil, trace.Wrap(err)
}
- return webclient.PingResponse{
- Proxy: *proxyConfig,
- ServerVersion: teleport.Version,
- MinClientVersion: teleport.MinClientVersion,
- ClusterName: h.auth.clusterName,
- }, nil
+ return resp, nil
+}
+
+// TODO: add the request as a parameter when we'll need to modulate the content based on the UUID and group
+func (h *Handler) automaticUpdateSettings(ctx context.Context) webclient.AutoUpdateSettings {
+ autoUpdateConfig, err := h.cfg.AccessPoint.GetAutoUpdateConfig(ctx)
+ // TODO(vapopov) DELETE IN v18.0.0 check of IsNotImplemented, must be backported to all latest supported versions.
+ if err != nil && !trace.IsNotFound(err) && !trace.IsNotImplemented(err) {
+ h.logger.ErrorContext(ctx, "failed to receive AutoUpdateConfig", "error", err)
+ }
+
+ autoUpdateVersion, err := h.cfg.AccessPoint.GetAutoUpdateVersion(ctx)
+ // TODO(vapopov) DELETE IN v18.0.0 check of IsNotImplemented, must be backported to all latest supported versions.
+ if err != nil && !trace.IsNotFound(err) && !trace.IsNotImplemented(err) {
+ h.logger.ErrorContext(ctx, "failed to receive AutoUpdateVersion", "error", err)
+ }
+
+ return webclient.AutoUpdateSettings{
+ ToolsAutoUpdate: getToolsAutoUpdate(autoUpdateConfig),
+ ToolsVersion: getToolsVersion(autoUpdateVersion),
+ }
}
func (h *Handler) pingWithConnector(w http.ResponseWriter, r *http.Request, p httprouter.Params) (interface{}, error) {
@@ -5155,3 +5208,23 @@ func readEtagFromAppHash(fs http.FileSystem) (string, error) {
return etag, nil
}
+
+func getToolsAutoUpdate(config *autoupdatepb.AutoUpdateConfig) bool {
+ // If we can't get the AU config or if AUs are not configured, we default to "disabled".
+ // This ensures we fail open and don't accidentally update agents if something is going wrong.
+ // If we want to enable AUs by default, it would be better to create a default "autoupdate_config" resource
+ // than changing this logic.
+ if config.GetSpec().GetTools() != nil {
+ return config.GetSpec().GetTools().GetMode() == autoupdate.ToolsUpdateModeEnabled
+ }
+ return false
+}
+
+func getToolsVersion(version *autoupdatepb.AutoUpdateVersion) string {
+ // If we can't get the AU version or tools AU version is not specified, we default to the current proxy version.
+ // This ensures we always advertise a version compatible with the cluster.
+ if version.GetSpec().GetTools() == nil {
+ return api.Version
+ }
+ return version.GetSpec().GetTools().GetTargetVersion()
+}
diff --git a/lib/web/apiserver_ping_test.go b/lib/web/apiserver_ping_test.go
index e4c8d7a57c90f..b35e6b884010f 100644
--- a/lib/web/apiserver_ping_test.go
+++ b/lib/web/apiserver_ping_test.go
@@ -26,12 +26,16 @@ import (
"testing"
"github.com/gravitational/roundtrip"
+ "github.com/gravitational/trace"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
+ "github.com/gravitational/teleport/api"
"github.com/gravitational/teleport/api/client/webclient"
"github.com/gravitational/teleport/api/constants"
+ autoupdatev1pb "github.com/gravitational/teleport/api/gen/proto/go/teleport/autoupdate/v1"
"github.com/gravitational/teleport/api/types"
+ "github.com/gravitational/teleport/api/types/autoupdate"
"github.com/gravitational/teleport/lib/client"
"github.com/gravitational/teleport/lib/modules"
)
@@ -233,5 +237,140 @@ func TestPing_minimalAPI(t *testing.T) {
require.NoError(t, resp.Body.Close())
})
}
+}
+
+// TestPing_autoUpdateResources tests that find endpoint return correct data related to auto updates.
+func TestPing_autoUpdateResources(t *testing.T) {
+ env := newWebPack(t, 1, func(cfg *proxyConfig) {
+ cfg.minimalHandler = true
+ })
+ proxy := env.proxies[0]
+
+ ctx, cancel := context.WithCancel(context.Background())
+ defer cancel()
+
+ req, err := http.NewRequest(http.MethodGet, proxy.newClient(t).Endpoint("webapi", "find"), nil)
+ require.NoError(t, err)
+ req.Host = proxy.handler.handler.cfg.ProxyPublicAddrs[0].Host()
+
+ tests := []struct {
+ name string
+ config *autoupdatev1pb.AutoUpdateConfigSpec
+ version *autoupdatev1pb.AutoUpdateVersionSpec
+ cleanup bool
+ expected webclient.AutoUpdateSettings
+ }{
+ {
+ name: "resources not defined",
+ expected: webclient.AutoUpdateSettings{
+ ToolsVersion: api.Version,
+ ToolsAutoUpdate: false,
+ },
+ },
+ {
+ name: "enable auto update",
+ config: &autoupdatev1pb.AutoUpdateConfigSpec{
+ Tools: &autoupdatev1pb.AutoUpdateConfigSpecTools{
+ Mode: autoupdate.ToolsUpdateModeEnabled,
+ },
+ },
+ expected: webclient.AutoUpdateSettings{
+ ToolsAutoUpdate: true,
+ ToolsVersion: api.Version,
+ },
+ cleanup: true,
+ },
+ {
+ name: "empty config and version",
+ config: &autoupdatev1pb.AutoUpdateConfigSpec{},
+ version: &autoupdatev1pb.AutoUpdateVersionSpec{},
+ expected: webclient.AutoUpdateSettings{
+ ToolsVersion: api.Version,
+ ToolsAutoUpdate: false,
+ },
+ cleanup: true,
+ },
+ {
+ name: "set tools auto update version",
+ version: &autoupdatev1pb.AutoUpdateVersionSpec{
+ Tools: &autoupdatev1pb.AutoUpdateVersionSpecTools{
+ TargetVersion: "1.2.3",
+ },
+ },
+ expected: webclient.AutoUpdateSettings{
+ ToolsVersion: "1.2.3",
+ ToolsAutoUpdate: false,
+ },
+ cleanup: true,
+ },
+ {
+ name: "enable tools auto update and set version",
+ config: &autoupdatev1pb.AutoUpdateConfigSpec{
+ Tools: &autoupdatev1pb.AutoUpdateConfigSpecTools{
+ Mode: autoupdate.ToolsUpdateModeEnabled,
+ },
+ },
+ version: &autoupdatev1pb.AutoUpdateVersionSpec{
+ Tools: &autoupdatev1pb.AutoUpdateVersionSpecTools{
+ TargetVersion: "1.2.3",
+ },
+ },
+ expected: webclient.AutoUpdateSettings{
+ ToolsAutoUpdate: true,
+ ToolsVersion: "1.2.3",
+ },
+ },
+ {
+ name: "modify auto update config and version",
+ config: &autoupdatev1pb.AutoUpdateConfigSpec{
+ Tools: &autoupdatev1pb.AutoUpdateConfigSpecTools{
+ Mode: autoupdate.ToolsUpdateModeDisabled,
+ },
+ },
+ version: &autoupdatev1pb.AutoUpdateVersionSpec{
+ Tools: &autoupdatev1pb.AutoUpdateVersionSpecTools{
+ TargetVersion: "3.2.1",
+ },
+ },
+ expected: webclient.AutoUpdateSettings{
+ ToolsAutoUpdate: false,
+ ToolsVersion: "3.2.1",
+ },
+ },
+ }
+ for _, tc := range tests {
+ t.Run(tc.name, func(t *testing.T) {
+ if tc.config != nil {
+ config, err := autoupdate.NewAutoUpdateConfig(tc.config)
+ require.NoError(t, err)
+ _, err = env.server.Auth().UpsertAutoUpdateConfig(ctx, config)
+ require.NoError(t, err)
+ }
+ if tc.version != nil {
+ version, err := autoupdate.NewAutoUpdateVersion(tc.version)
+ require.NoError(t, err)
+ _, err = env.server.Auth().UpsertAutoUpdateVersion(ctx, version)
+ require.NoError(t, err)
+ }
+
+ // expire the fn cache to force the next answer to be fresh
+ for _, proxy := range env.proxies {
+ proxy.clock.Advance(2 * findEndpointCacheTTL)
+ }
+
+ resp, err := client.NewInsecureWebClient().Do(req)
+ require.NoError(t, err)
+
+ pr := &webclient.PingResponse{}
+ require.NoError(t, json.NewDecoder(resp.Body).Decode(pr))
+ require.NoError(t, resp.Body.Close())
+
+ assert.Equal(t, tc.expected, pr.AutoUpdate)
+ if tc.cleanup {
+ require.NotErrorIs(t, env.server.Auth().DeleteAutoUpdateConfig(ctx), &trace.NotFoundError{})
+ require.NotErrorIs(t, env.server.Auth().DeleteAutoUpdateVersion(ctx), &trace.NotFoundError{})
+ }
+ })
+ }
}
diff --git a/tool/tctl/common/collection.go b/tool/tctl/common/collection.go
index d74bd31ceba2f..0d10de79c610b 100644
--- a/tool/tctl/common/collection.go
+++ b/tool/tctl/common/collection.go
@@ -1842,7 +1842,7 @@ func (c *autoUpdateConfigCollection) writeText(w io.Writer, verbose bool) error
t := asciitable.MakeTable([]string{"Name", "Tools AutoUpdate Enabled"})
t.AddRow([]string{
c.config.GetMetadata().GetName(),
- fmt.Sprintf("%v", c.config.GetSpec().GetToolsAutoupdate()),
+ fmt.Sprintf("%v", c.config.GetSpec().GetTools().GetMode()),
})
_, err := t.AsBuffer().WriteTo(w)
return trace.Wrap(err)
@@ -1860,7 +1860,7 @@ func (c *autoUpdateVersionCollection) writeText(w io.Writer, verbose bool) error
t := asciitable.MakeTable([]string{"Name", "Tools AutoUpdate Version"})
t.AddRow([]string{
c.version.GetMetadata().GetName(),
- fmt.Sprintf("%v", c.version.GetSpec().GetToolsVersion()),
+ fmt.Sprintf("%v", c.version.GetSpec().GetTools().TargetVersion),
})
_, err := t.AsBuffer().WriteTo(w)
return trace.Wrap(err)
diff --git a/tool/tctl/common/edit_command_test.go b/tool/tctl/common/edit_command_test.go
index c587080d33d86..869508b9e674d 100644
--- a/tool/tctl/common/edit_command_test.go
+++ b/tool/tctl/common/edit_command_test.go
@@ -556,10 +556,18 @@ func testEditStaticHostUser(t *testing.T, clt *authclient.Client) {
func testEditAutoUpdateConfig(t *testing.T, clt *authclient.Client) {
ctx := context.Background()
- expected, err := autoupdate.NewAutoUpdateConfig(&autoupdatev1pb.AutoUpdateConfigSpec{ToolsAutoupdate: true})
+ expected, err := autoupdate.NewAutoUpdateConfig(&autoupdatev1pb.AutoUpdateConfigSpec{
+ Tools: &autoupdatev1pb.AutoUpdateConfigSpecTools{
+ Mode: autoupdate.ToolsUpdateModeEnabled,
+ },
+ })
require.NoError(t, err)
- initial, err := autoupdate.NewAutoUpdateConfig(&autoupdatev1pb.AutoUpdateConfigSpec{ToolsAutoupdate: false})
+ initial, err := autoupdate.NewAutoUpdateConfig(&autoupdatev1pb.AutoUpdateConfigSpec{
+ Tools: &autoupdatev1pb.AutoUpdateConfigSpecTools{
+ Mode: autoupdate.ToolsUpdateModeDisabled,
+ },
+ })
require.NoError(t, err)
serviceClient := autoupdatev1pb.NewAutoUpdateServiceClient(clt.GetConnection())
@@ -582,18 +590,26 @@ func testEditAutoUpdateConfig(t *testing.T, clt *authclient.Client) {
actual, err := clt.GetAutoUpdateConfig(ctx)
require.NoError(t, err, "failed to get autoupdate config after edit")
- assert.NotEqual(t, initial.GetSpec().GetToolsAutoupdate(), actual.GetSpec().GetToolsAutoupdate(),
+ assert.NotEqual(t, initial.GetSpec().GetTools().Mode, actual.GetSpec().GetTools().GetMode(),
"tools_autoupdate should have been modified by edit")
- assert.Equal(t, expected.GetSpec().GetToolsAutoupdate(), actual.GetSpec().GetToolsAutoupdate())
+ assert.Equal(t, expected.GetSpec().GetTools().GetMode(), actual.GetSpec().GetTools().GetMode())
}
func testEditAutoUpdateVersion(t *testing.T, clt *authclient.Client) {
ctx := context.Background()
- expected, err := autoupdate.NewAutoUpdateVersion(&autoupdatev1pb.AutoUpdateVersionSpec{ToolsVersion: "3.2.1"})
+ expected, err := autoupdate.NewAutoUpdateVersion(&autoupdatev1pb.AutoUpdateVersionSpec{
+ Tools: &autoupdatev1pb.AutoUpdateVersionSpecTools{
+ TargetVersion: "3.2.1",
+ },
+ })
require.NoError(t, err)
- initial, err := autoupdate.NewAutoUpdateVersion(&autoupdatev1pb.AutoUpdateVersionSpec{ToolsVersion: "1.2.3"})
+ initial, err := autoupdate.NewAutoUpdateVersion(&autoupdatev1pb.AutoUpdateVersionSpec{
+ Tools: &autoupdatev1pb.AutoUpdateVersionSpecTools{
+ TargetVersion: "1.2.3",
+ },
+ })
require.NoError(t, err)
serviceClient := autoupdatev1pb.NewAutoUpdateServiceClient(clt.GetConnection())
@@ -616,7 +632,7 @@ func testEditAutoUpdateVersion(t *testing.T, clt *authclient.Client) {
actual, err := clt.GetAutoUpdateVersion(ctx)
require.NoError(t, err, "failed to get autoupdate version after edit")
- assert.NotEqual(t, initial.GetSpec().GetToolsVersion(), actual.GetSpec().GetToolsVersion(),
+ assert.NotEqual(t, initial.GetSpec().GetTools().GetTargetVersion(), actual.GetSpec().GetTools().GetTargetVersion(),
"tools_autoupdate should have been modified by edit")
- assert.Equal(t, expected.GetSpec().GetToolsVersion(), actual.GetSpec().GetToolsVersion())
+ assert.Equal(t, expected.GetSpec().GetTools().GetTargetVersion(), actual.GetSpec().GetTools().GetTargetVersion())
}
diff --git a/tool/tctl/common/resource_command_test.go b/tool/tctl/common/resource_command_test.go
index 7307b8ff401e1..06a2e2a028bf4 100644
--- a/tool/tctl/common/resource_command_test.go
+++ b/tool/tctl/common/resource_command_test.go
@@ -2291,7 +2291,8 @@ metadata:
name: autoupdate-config
revision: 3a43b44a-201e-4d7f-aef1-ae2f6d9811ed
spec:
- tools_autoupdate: true
+ tools:
+ mode: enabled
version: v1
`
_, err := runResourceCommand(t, clt, []string{"get", types.KindAutoUpdateConfig, "--format=json"})
@@ -2332,7 +2333,8 @@ metadata:
name: autoupdate-version
revision: 3a43b44a-201e-4d7f-aef1-ae2f6d9811ed
spec:
- tools_version: 1.2.3
+ tools:
+ target_version: 1.2.3
version: v1
`
_, err := runResourceCommand(t, clt, []string{"get", types.KindAutoUpdateVersion, "--format=json"})
diff --git a/tool/tctl/common/tctl.go b/tool/tctl/common/tctl.go
index a10cae5ffa079..b71301cb27981 100644
--- a/tool/tctl/common/tctl.go
+++ b/tool/tctl/common/tctl.go
@@ -43,6 +43,7 @@ import (
"github.com/gravitational/teleport/lib/auth/authclient"
"github.com/gravitational/teleport/lib/auth/state"
"github.com/gravitational/teleport/lib/auth/storage"
+ "github.com/gravitational/teleport/lib/autoupdate/tools"
"github.com/gravitational/teleport/lib/client"
"github.com/gravitational/teleport/lib/client/identityfile"
libmfa "github.com/gravitational/teleport/lib/client/mfa"
@@ -103,7 +104,11 @@ type CLICommand interface {
// "distributions" like OSS or Enterprise
//
// distribution: name of the Teleport distribution
-func Run(commands []CLICommand) {
+func Run(ctx context.Context, commands []CLICommand) {
+ if err := tools.CheckAndUpdateLocal(ctx, teleport.Version); err != nil {
+ utils.FatalError(err)
+ }
+
err := TryRun(commands, os.Args[1:])
if err != nil {
var exitError *common.ExitCodeError
diff --git a/tool/tctl/main.go b/tool/tctl/main.go
index f363e347f25c9..6dfae87ffdef2 100644
--- a/tool/tctl/main.go
+++ b/tool/tctl/main.go
@@ -19,9 +19,15 @@
package main
import (
+ "context"
+
+ "github.com/gravitational/teleport/lib/utils/signal"
"github.com/gravitational/teleport/tool/tctl/common"
)
func main() {
- common.Run(common.Commands())
+ ctx, cancel := signal.GetSignalHandler().NotifyContext(context.Background())
+ defer cancel()
+
+ common.Run(ctx, common.Commands())
}
diff --git a/tool/tsh/common/tsh.go b/tool/tsh/common/tsh.go
index 988b5a726d1ff..6fe76a016cd46 100644
--- a/tool/tsh/common/tsh.go
+++ b/tool/tsh/common/tsh.go
@@ -41,7 +41,6 @@ import (
"strconv"
"strings"
"sync"
- "syscall"
"time"
"github.com/alecthomas/kingpin/v2"
@@ -74,6 +73,7 @@ import (
"github.com/gravitational/teleport/lib/asciitable"
"github.com/gravitational/teleport/lib/auth/authclient"
wancli "github.com/gravitational/teleport/lib/auth/webauthncli"
+ "github.com/gravitational/teleport/lib/autoupdate/tools"
"github.com/gravitational/teleport/lib/benchmark"
benchmarkdb "github.com/gravitational/teleport/lib/benchmark/db"
"github.com/gravitational/teleport/lib/client"
@@ -94,6 +94,7 @@ import (
"github.com/gravitational/teleport/lib/utils"
"github.com/gravitational/teleport/lib/utils/diagnostics/latency"
"github.com/gravitational/teleport/lib/utils/mlock"
+ stacksignal "github.com/gravitational/teleport/lib/utils/signal"
"github.com/gravitational/teleport/tool/common"
"github.com/gravitational/teleport/tool/common/fido2"
"github.com/gravitational/teleport/tool/common/touchid"
@@ -607,7 +608,7 @@ func Main() {
cmdLineOrig := os.Args[1:]
var cmdLine []string
- ctx, cancel := signal.NotifyContext(context.Background(), syscall.SIGTERM, syscall.SIGINT)
+ ctx, cancel := stacksignal.GetSignalHandler().NotifyContext(context.Background())
defer cancel()
// lets see: if the executable name is 'ssh' or 'scp' we convert
@@ -705,6 +706,10 @@ func initLogger(cf *CLIConf) {
//
// DO NOT RUN TESTS that call Run() in parallel (unless you taken precautions).
func Run(ctx context.Context, args []string, opts ...CliOption) error {
+ if err := tools.CheckAndUpdateLocal(ctx, teleport.Version); err != nil {
+ return trace.Wrap(err)
+ }
+
cf := CLIConf{
Context: ctx,
TracingProvider: tracing.NoopProvider(),
@@ -1240,7 +1245,6 @@ func Run(ctx context.Context, args []string, opts ...CliOption) error {
}
var err error
-
cf.executablePath, err = os.Executable()
if err != nil {
return trace.Wrap(err)
@@ -1866,6 +1870,14 @@ func onLogin(cf *CLIConf) error {
}
tc.HomePath = cf.HomePath
+ // The user is not logged in and has typed in `tsh --proxy=... login`, if
+ // the running binary needs to be updated, update and re-exec.
+ if profile == nil {
+ if err := tools.CheckAndUpdateRemote(cf.Context, teleport.Version, tc.WebProxyAddr, tc.InsecureSkipVerify); err != nil {
+ return trace.Wrap(err)
+ }
+ }
+
// client is already logged in and profile is not expired
if profile != nil && !profile.IsExpired(time.Now()) {
switch {
@@ -1876,6 +1888,13 @@ func onLogin(cf *CLIConf) error {
// current status
case cf.Proxy == "" && cf.SiteName == "" && cf.DesiredRoles == "" && cf.RequestID == "" && cf.IdentityFileOut == "" ||
host(cf.Proxy) == host(profile.ProxyURL.Host) && cf.SiteName == profile.Cluster && cf.DesiredRoles == "" && cf.RequestID == "":
+
+ // The user has typed `tsh login`, if the running binary needs to
+ // be updated, update and re-exec.
+ if err := tools.CheckAndUpdateRemote(cf.Context, teleport.Version, tc.WebProxyAddr, tc.InsecureSkipVerify); err != nil {
+ return trace.Wrap(err)
+ }
+
_, err := tc.PingAndShowMOTD(cf.Context)
if err != nil {
return trace.Wrap(err)
@@ -1889,6 +1908,13 @@ func onLogin(cf *CLIConf) error {
// if the proxy names match but nothing else is specified; show motd and update active profile and kube configs
case host(cf.Proxy) == host(profile.ProxyURL.Host) &&
cf.SiteName == "" && cf.DesiredRoles == "" && cf.RequestID == "" && cf.IdentityFileOut == "":
+
+ // The user has typed `tsh login`, if the running binary needs to
+ // be updated, update and re-exec.
+ if err := tools.CheckAndUpdateRemote(cf.Context, teleport.Version, tc.WebProxyAddr, tc.InsecureSkipVerify); err != nil {
+ return trace.Wrap(err)
+ }
+
_, err := tc.PingAndShowMOTD(cf.Context)
if err != nil {
return trace.Wrap(err)
@@ -1959,7 +1985,11 @@ func onLogin(cf *CLIConf) error {
// otherwise just pass through to standard login
default:
-
+ // The user is logged in and has typed in `tsh --proxy=... login`, if
+ // the running binary needs to be updated, update and re-exec.
+ if err := tools.CheckAndUpdateRemote(cf.Context, teleport.Version, tc.WebProxyAddr, tc.InsecureSkipVerify); err != nil {
+ return trace.Wrap(err)
+ }
}
}
diff --git a/web/packages/teleterm/src/mainProcess/mainProcess.ts b/web/packages/teleterm/src/mainProcess/mainProcess.ts
index 665fa2cccc357..2987f4e5c7dc9 100644
--- a/web/packages/teleterm/src/mainProcess/mainProcess.ts
+++ b/web/packages/teleterm/src/mainProcess/mainProcess.ts
@@ -53,6 +53,10 @@ import * as grpcCreds from 'teleterm/services/grpcCredentials';
import { createTshdClient, TshdClient } from 'teleterm/services/tshd';
import { loggingInterceptor } from 'teleterm/services/tshd/interceptors';
import { staticConfig } from 'teleterm/staticConfig';
+import {
+ TSH_AUTOUPDATE_ENV_VAR,
+ TSH_AUTOUPDATE_OFF,
+} from 'teleterm/node/tshAutoupdate';
import {
ConfigService,
@@ -188,6 +192,7 @@ export default class MainProcess {
env: {
...process.env,
TELEPORT_HOME: homeDir,
+ [TSH_AUTOUPDATE_ENV_VAR]: TSH_AUTOUPDATE_OFF,
},
}
);
diff --git a/web/packages/teleterm/src/node/README.md b/web/packages/teleterm/src/node/README.md
new file mode 100644
index 0000000000000..28ea74a4d8d5c
--- /dev/null
+++ b/web/packages/teleterm/src/node/README.md
@@ -0,0 +1,2 @@
+Files in this directory are executed within a Node.js process, be it the main process or the shared
+process.
diff --git a/web/packages/teleterm/src/node/tshAutoupdate.ts b/web/packages/teleterm/src/node/tshAutoupdate.ts
new file mode 100644
index 0000000000000..8ac6d73d9b8b2
--- /dev/null
+++ b/web/packages/teleterm/src/node/tshAutoupdate.ts
@@ -0,0 +1,27 @@
+/**
+ * Teleport
+ * Copyright (C) 2024 Gravitational, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+/**
+ * An env var which controls whether tsh is going to download an up-to-date version of itself
+ * to ~/.tsh/bin and re-execute itself. In Connect, we always want it to be set to 'off', as Connect
+ * needs to use the bundled tsh where the version of tsh matches exactly the version of Connect.
+ *
+ * See RFD 144 for more details.
+ */
+export const TSH_AUTOUPDATE_ENV_VAR = 'TELEPORT_TOOLS_VERSION';
+export const TSH_AUTOUPDATE_OFF = 'off';
diff --git a/web/packages/teleterm/src/services/pty/ptyHost/buildPtyOptions.test.ts b/web/packages/teleterm/src/services/pty/ptyHost/buildPtyOptions.test.ts
index 1b910e59c94b0..4c3ccc926f40e 100644
--- a/web/packages/teleterm/src/services/pty/ptyHost/buildPtyOptions.test.ts
+++ b/web/packages/teleterm/src/services/pty/ptyHost/buildPtyOptions.test.ts
@@ -331,7 +331,7 @@ describe('buildPtyOptions', () => {
});
expect(processOptions.env.WSLENV).toBe(
- 'CUSTOM_VAR:TERM_PROGRAM:TERM_PROGRAM_VERSION:TELEPORT_CLUSTER:TELEPORT_PROXY:TELEPORT_HOME/p:KUBECONFIG/p'
+ 'CUSTOM_VAR:KUBECONFIG/p:TERM_PROGRAM:TERM_PROGRAM_VERSION:TELEPORT_CLUSTER:TELEPORT_PROXY:TELEPORT_HOME/p:TELEPORT_TOOLS_VERSION'
);
});
});
diff --git a/web/packages/teleterm/src/services/pty/ptyHost/buildPtyOptions.ts b/web/packages/teleterm/src/services/pty/ptyHost/buildPtyOptions.ts
index 0019f255ee44a..d73f888ebefb0 100644
--- a/web/packages/teleterm/src/services/pty/ptyHost/buildPtyOptions.ts
+++ b/web/packages/teleterm/src/services/pty/ptyHost/buildPtyOptions.ts
@@ -21,9 +21,12 @@ import path, { delimiter } from 'path';
import { RuntimeSettings } from 'teleterm/mainProcess/types';
import { PtyProcessOptions } from 'teleterm/sharedProcess/ptyHost';
import { assertUnreachable } from 'teleterm/ui/utils';
-
import { Shell, makeCustomShellFromPath } from 'teleterm/mainProcess/shell';
import { CUSTOM_SHELL_ID } from 'teleterm/services/config/appConfigSchema';
+import {
+ TSH_AUTOUPDATE_ENV_VAR,
+ TSH_AUTOUPDATE_OFF,
+} from 'teleterm/node/tshAutoupdate';
import {
PtyCommand,
@@ -92,6 +95,9 @@ export async function buildPtyOptions({
throw error;
})
.then(({ shellEnv, creationStatus }) => {
+ // combinedEnv is going to be used as env by every command coming out of buildPtyOptions. Some
+ // commands might add extra variables, but they shouldn't remove any of the env vars that are
+ // added here.
const combinedEnv = {
...processEnv,
...shellEnv,
@@ -100,6 +106,7 @@ export async function buildPtyOptions({
TELEPORT_HOME: settings.tshd.homeDir,
TELEPORT_CLUSTER: cmd.clusterName,
TELEPORT_PROXY: cmd.proxyHost,
+ [TSH_AUTOUPDATE_ENV_VAR]: TSH_AUTOUPDATE_OFF,
};
// The regular env vars are not available in WSL,
@@ -108,12 +115,13 @@ export async function buildPtyOptions({
// https://devblogs.microsoft.com/commandline/share-environment-vars-between-wsl-and-windows/
if (settings.platform === 'win32' && shell.binName === 'wsl.exe') {
const wslEnv = [
+ 'KUBECONFIG/p',
'TERM_PROGRAM',
'TERM_PROGRAM_VERSION',
'TELEPORT_CLUSTER',
'TELEPORT_PROXY',
'TELEPORT_HOME/p',
- 'KUBECONFIG/p',
+ TSH_AUTOUPDATE_ENV_VAR,
];
// Preserve the user defined WSLENV and add ours (ours takes precedence).
combinedEnv[WSLENV_VAR] = [combinedEnv[WSLENV_VAR], wslEnv]