load volume info from .vif file, use superblock as a backup

This commit is contained in:
Chris Lu 2019-12-28 12:28:58 -08:00
parent b7bc08cf52
commit c06f7eb48a
9 changed files with 292 additions and 251 deletions

79
weed/pb/volume_info.go Normal file
View file

@ -0,0 +1,79 @@
package pb
import (
"bytes"
"fmt"
"io/ioutil"
_ "github.com/chrislusf/seaweedfs/weed/storage/backend/s3_backend"
"github.com/chrislusf/seaweedfs/weed/util"
"github.com/golang/protobuf/jsonpb"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
)
// MaybeLoadVolumeInfo load the file data as *volume_server_pb.VolumeInfo, the returned volumeInfo will not be nil
func MaybeLoadVolumeInfo(fileName string) (*volume_server_pb.VolumeInfo, bool) {
volumeInfo := &volume_server_pb.VolumeInfo{}
glog.V(1).Infof("maybeLoadVolumeInfo checks %s", fileName)
if exists, canRead, _, _, _ := util.CheckFile(fileName); !exists || !canRead {
if !exists {
return volumeInfo, false
}
if !canRead {
glog.Warningf("can not read %s", fileName)
}
return volumeInfo, false
}
glog.V(1).Infof("maybeLoadVolumeInfo reads %s", fileName)
tierData, readErr := ioutil.ReadFile(fileName)
if readErr != nil {
glog.Warningf("fail to read %s : %v", fileName, readErr)
return volumeInfo, false
}
glog.V(1).Infof("maybeLoadVolumeInfo Unmarshal volume info %v", fileName)
if err := jsonpb.Unmarshal(bytes.NewReader(tierData), volumeInfo); err != nil {
glog.Warningf("unmarshal error: %v", err)
return volumeInfo, false
}
if len(volumeInfo.GetFiles()) == 0 {
return volumeInfo, false
}
return volumeInfo, true
}
func SaveVolumeInfo(fileName string, volumeInfo *volume_server_pb.VolumeInfo) error {
tierFileName := fileName + ".vif"
if exists, _, canWrite, _, _ := util.CheckFile(tierFileName); exists && !canWrite {
return fmt.Errorf("%s not writable", tierFileName)
}
m := jsonpb.Marshaler{
EmitDefaults: true,
Indent: " ",
}
text, marshalErr := m.MarshalToString(volumeInfo)
if marshalErr != nil {
return fmt.Errorf("marshal to %s: %v", fileName, marshalErr)
}
writeErr := ioutil.WriteFile(tierFileName, []byte(text), 0755)
if writeErr != nil {
return fmt.Errorf("fail to write %s : %v", tierFileName, writeErr)
}
return nil
}

View file

@ -353,6 +353,7 @@ message RemoteFile {
}
message VolumeInfo {
repeated RemoteFile files = 1;
uint32 version = 2;
}
message VolumeTierMoveDatToRemoteRequest {

View file

@ -1516,7 +1516,8 @@ func (m *RemoteFile) GetExtension() string {
}
type VolumeInfo struct {
Files []*RemoteFile `protobuf:"bytes,1,rep,name=files" json:"files,omitempty"`
Files []*RemoteFile `protobuf:"bytes,1,rep,name=files" json:"files,omitempty"`
Version uint32 `protobuf:"varint,2,opt,name=version" json:"version,omitempty"`
}
func (m *VolumeInfo) Reset() { *m = VolumeInfo{} }
@ -1531,6 +1532,13 @@ func (m *VolumeInfo) GetFiles() []*RemoteFile {
return nil
}
func (m *VolumeInfo) GetVersion() uint32 {
if m != nil {
return m.Version
}
return 0
}
type VolumeTierMoveDatToRemoteRequest struct {
VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
@ -3313,11 +3321,11 @@ var _VolumeServer_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("volume_server.proto", fileDescriptor0) }
var fileDescriptor0 = []byte{
// 2885 bytes of a gzipped FileDescriptorProto
// 2891 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xd4, 0x3a, 0x4d, 0x73, 0xdc, 0xc6,
0xb1, 0x5c, 0x2e, 0x3f, 0x76, 0x7b, 0x97, 0x22, 0x35, 0xa4, 0xa9, 0x35, 0x44, 0x49, 0x34, 0xe4,
0x0f, 0x49, 0xb6, 0x28, 0x99, 0xb6, 0x9f, 0xfd, 0xec, 0x67, 0x3f, 0x4b, 0x94, 0xf4, 0x9e, 0x62,
0x8b, 0xb2, 0x41, 0x59, 0x71, 0x62, 0x57, 0x50, 0x43, 0x60, 0x28, 0xc2, 0x04, 0x30, 0x10, 0x30,
0x0f, 0x49, 0xb6, 0x28, 0x99, 0xb6, 0x9f, 0xfd, 0xec, 0x67, 0xbf, 0x27, 0x51, 0xd2, 0x8b, 0x62,
0x8b, 0xb2, 0x41, 0x59, 0x71, 0x6c, 0x57, 0x50, 0x43, 0x60, 0x28, 0xc2, 0x04, 0x30, 0x10, 0x30,
0x4b, 0x6b, 0x55, 0xc9, 0xc9, 0x39, 0xe4, 0x92, 0x1c, 0x52, 0xb9, 0xe4, 0x9c, 0x7b, 0xae, 0xf9,
0x03, 0x39, 0xf8, 0x0f, 0xa4, 0x2a, 0xa7, 0x5c, 0x72, 0xc8, 0x29, 0x87, 0xdc, 0x52, 0x95, 0x4b,
0x6a, 0xbe, 0xb0, 0xf8, 0xe4, 0x82, 0x16, 0x53, 0xa9, 0xdc, 0x06, 0x3d, 0xfd, 0x31, 0xdd, 0xd3,
@ -3334,165 +3342,165 @@ var fileDescriptor0 = []byte{
0x1f, 0x92, 0x38, 0xf1, 0x68, 0x38, 0x98, 0x15, 0x60, 0xfd, 0x69, 0xce, 0xc3, 0xec, 0xed, 0x20,
0x62, 0x23, 0xf3, 0x6d, 0x18, 0x3c, 0xc4, 0xce, 0x70, 0x18, 0x3c, 0x14, 0xcb, 0xdf, 0xda, 0x27,
0xce, 0x81, 0x36, 0xcb, 0x59, 0xe8, 0x2a, 0xa5, 0xd4, 0xda, 0x16, 0xac, 0x8e, 0x04, 0xdc, 0x75,
0xcd, 0x0f, 0xe1, 0xf9, 0x0a, 0x42, 0x65, 0x9e, 0x8b, 0xb0, 0xf0, 0x08, 0xc7, 0xbb, 0xf8, 0x11,
0xb1, 0x63, 0xcc, 0x3c, 0x2a, 0xa8, 0x5b, 0x56, 0x5f, 0x01, 0x2d, 0x0e, 0x33, 0xbf, 0x00, 0x23,
0xc7, 0x81, 0x06, 0x11, 0x76, 0x58, 0x13, 0xe1, 0x68, 0x1d, 0x7a, 0x51, 0x4c, 0xb0, 0xef, 0x53,
0x07, 0x33, 0x22, 0xec, 0xd3, 0xb6, 0xb2, 0x20, 0xf3, 0x1c, 0x9c, 0xad, 0x64, 0x2e, 0x17, 0x68,
0xbe, 0x53, 0x58, 0x3d, 0x0d, 0x02, 0xaf, 0x91, 0x68, 0x73, 0xad, 0xb4, 0x6a, 0x41, 0xa9, 0xf8,
0xfe, 0x77, 0x61, 0xd6, 0x27, 0x38, 0x1c, 0x46, 0x8d, 0x18, 0x17, 0x57, 0xac, 0x49, 0x53, 0xce,
0x67, 0xa4, 0xdb, 0x6c, 0x51, 0xdf, 0x27, 0x0e, 0xf3, 0x68, 0xa8, 0xd9, 0x9e, 0x07, 0x70, 0x52,
0xa0, 0x72, 0xa2, 0x0c, 0xc4, 0x34, 0x60, 0x50, 0x26, 0x55, 0x6c, 0xff, 0xd4, 0x82, 0xe7, 0x6e,
0x28, 0xa3, 0x49, 0xc1, 0x8d, 0x36, 0x20, 0x2f, 0x72, 0xba, 0x28, 0xb2, 0xb8, 0x41, 0xed, 0xd2,
0x06, 0x71, 0x8c, 0x98, 0x44, 0xbe, 0xe7, 0x60, 0xc1, 0x62, 0x46, 0xb0, 0xc8, 0x82, 0xd0, 0x12,
0xb4, 0x19, 0xf3, 0x85, 0xe7, 0x76, 0x2d, 0x3e, 0x44, 0x9b, 0xb0, 0x1a, 0x90, 0x80, 0xc6, 0x23,
0x3b, 0xc0, 0x91, 0x1d, 0xe0, 0x27, 0x36, 0x77, 0x73, 0x3b, 0xd8, 0x1d, 0xcc, 0x89, 0xf5, 0x21,
0x39, 0x7b, 0x0f, 0x47, 0xf7, 0xf0, 0x93, 0x1d, 0xef, 0x29, 0xb9, 0xb7, 0x6b, 0x0e, 0x60, 0xb5,
0xa8, 0x9f, 0x52, 0xfd, 0xbf, 0xe0, 0x8c, 0x84, 0xec, 0x8c, 0x42, 0x67, 0x47, 0xc4, 0x56, 0xa3,
0x8d, 0xfa, 0x47, 0x0b, 0x06, 0x65, 0x42, 0xe5, 0xf9, 0xcf, 0x6a, 0xb5, 0x63, 0xdb, 0xe4, 0x02,
0xf4, 0x18, 0xf6, 0x7c, 0x9b, 0xee, 0xed, 0x25, 0x84, 0x09, 0x43, 0xcc, 0x58, 0xc0, 0x41, 0xf7,
0x05, 0x04, 0x5d, 0x86, 0x25, 0x47, 0x7a, 0xbf, 0x1d, 0x93, 0x43, 0x4f, 0x64, 0x83, 0x79, 0xb1,
0xb0, 0x45, 0x47, 0x47, 0x85, 0x04, 0x23, 0x13, 0x16, 0x3c, 0xf7, 0x89, 0x2d, 0xd2, 0x91, 0x48,
0x26, 0x1d, 0xc1, 0xad, 0xe7, 0xb9, 0x4f, 0xee, 0x78, 0x3e, 0xe1, 0x16, 0x35, 0x1f, 0xc2, 0x9a,
0x54, 0xfe, 0x6e, 0xe8, 0xc4, 0x24, 0x20, 0x21, 0xc3, 0xfe, 0x16, 0x8d, 0x46, 0x8d, 0xdc, 0xe6,
0x79, 0xe8, 0x24, 0x5e, 0xe8, 0x10, 0x3b, 0x94, 0x49, 0x6d, 0xc6, 0x9a, 0x17, 0xdf, 0xdb, 0x89,
0x79, 0x13, 0xce, 0xd5, 0xf0, 0x55, 0x96, 0x7d, 0x01, 0xfa, 0x62, 0x61, 0x0e, 0x0d, 0x19, 0x09,
0x99, 0xe0, 0xdd, 0xb7, 0x7a, 0x1c, 0xb6, 0x25, 0x41, 0xe6, 0xeb, 0x80, 0x24, 0x8f, 0x7b, 0x74,
0x18, 0x36, 0x0b, 0xe7, 0xe7, 0x60, 0x39, 0x47, 0xa2, 0x7c, 0xe3, 0x0d, 0x58, 0x91, 0xe0, 0xcf,
0xc2, 0xa0, 0x31, 0xaf, 0x33, 0xf0, 0x5c, 0x81, 0x48, 0x71, 0xdb, 0xd4, 0x42, 0xf2, 0xc7, 0xce,
0x91, 0xcc, 0x56, 0xf5, 0x0a, 0xf2, 0x27, 0x8f, 0xc8, 0x5c, 0x72, 0xc1, 0x38, 0x3e, 0xb0, 0x08,
0x76, 0x69, 0xe8, 0x8f, 0x1a, 0x67, 0xae, 0x0a, 0x4a, 0xc5, 0xf7, 0xb7, 0x2d, 0x38, 0xad, 0x53,
0x5a, 0xc3, 0xdd, 0x3c, 0xa6, 0x3b, 0xb7, 0x6b, 0xdd, 0x79, 0x66, 0xec, 0xce, 0x97, 0x60, 0x29,
0xa1, 0xc3, 0xd8, 0x21, 0xb6, 0x8b, 0x19, 0xb6, 0x43, 0xea, 0x12, 0xe5, 0xed, 0xa7, 0x24, 0xfc,
0x16, 0x66, 0x78, 0x9b, 0xba, 0xc4, 0xfc, 0x5f, 0xbd, 0xd9, 0x39, 0x2f, 0xb9, 0x0c, 0xa7, 0x7d,
0x9c, 0x30, 0x1b, 0x47, 0x11, 0x09, 0x5d, 0x1b, 0x33, 0xee, 0x6a, 0x2d, 0xe1, 0x6a, 0xa7, 0xf8,
0xc4, 0x0d, 0x01, 0xbf, 0xc1, 0xb6, 0x13, 0xf3, 0x57, 0xd3, 0xb0, 0xc8, 0x69, 0xb9, 0x6b, 0x37,
0xd2, 0x77, 0x09, 0xda, 0xe4, 0x09, 0x53, 0x8a, 0xf2, 0x21, 0xba, 0x06, 0xcb, 0x2a, 0x86, 0x3c,
0x1a, 0x8e, 0xc3, 0xab, 0x2d, 0xb3, 0xd1, 0x78, 0x2a, 0x8d, 0xb0, 0x0b, 0xd0, 0x4b, 0x18, 0x8d,
0x74, 0xb4, 0xce, 0xc8, 0x68, 0xe5, 0x20, 0x15, 0xad, 0x79, 0x9b, 0xce, 0x56, 0xd8, 0xb4, 0xef,
0x25, 0x36, 0x71, 0x6c, 0xb9, 0x2a, 0x11, 0xef, 0x1d, 0x0b, 0xbc, 0xe4, 0xb6, 0x23, 0xad, 0x81,
0x3e, 0x80, 0x35, 0xef, 0x51, 0x48, 0x63, 0x62, 0x2b, 0x43, 0x8a, 0xa8, 0x09, 0x29, 0xb3, 0xf7,
0xe8, 0x30, 0x74, 0x45, 0xec, 0x77, 0xac, 0x81, 0xc4, 0xd9, 0x11, 0x28, 0xdc, 0x02, 0xdb, 0x94,
0xdd, 0xe1, 0xf3, 0xe6, 0x5b, 0xb0, 0x34, 0xb6, 0x4a, 0xf3, 0xd8, 0xfb, 0xa6, 0xa5, 0xd3, 0xe9,
0x03, 0xec, 0xf9, 0x3b, 0x24, 0x74, 0x49, 0xfc, 0x8c, 0x39, 0x01, 0x5d, 0x87, 0x15, 0xcf, 0xf5,
0x89, 0xcd, 0xbc, 0x80, 0xd0, 0x21, 0xb3, 0x13, 0xe2, 0xd0, 0xd0, 0x4d, 0xb4, 0x7d, 0xf9, 0xdc,
0x03, 0x39, 0xb5, 0x23, 0x67, 0xcc, 0x9f, 0xa6, 0xb9, 0x39, 0xbb, 0x8a, 0xf1, 0xad, 0x24, 0x24,
0x84, 0x33, 0xdc, 0x27, 0xd8, 0x25, 0xb1, 0x52, 0xa3, 0x2f, 0x81, 0xff, 0x2f, 0x60, 0x7c, 0x87,
0x14, 0xd2, 0x2e, 0x75, 0x47, 0x62, 0x45, 0x7d, 0x0b, 0x24, 0xe8, 0x26, 0x75, 0x47, 0x22, 0x49,
0x26, 0xb6, 0x70, 0x32, 0x67, 0x7f, 0x18, 0x1e, 0x88, 0xd5, 0x74, 0xac, 0x9e, 0x97, 0x7c, 0x8c,
0x13, 0xb6, 0xc5, 0x41, 0xe6, 0xef, 0x5a, 0x3a, 0x4a, 0xf9, 0x32, 0x2c, 0xe2, 0x10, 0xef, 0xf0,
0xdf, 0x60, 0x0e, 0x4e, 0xa1, 0x9c, 0x20, 0x77, 0x3b, 0x55, 0x01, 0x87, 0xe4, 0x9c, 0x3a, 0xcb,
0xc4, 0xcc, 0x38, 0x49, 0xe4, 0x17, 0xae, 0x92, 0xc4, 0x97, 0x3a, 0x49, 0xdf, 0x76, 0x76, 0xf6,
0x71, 0xec, 0x26, 0xff, 0x47, 0x42, 0x12, 0x63, 0x76, 0x22, 0x97, 0x06, 0x73, 0x1d, 0xce, 0xd7,
0x71, 0x57, 0xf2, 0xbf, 0xd0, 0x87, 0x8f, 0xc6, 0xb0, 0xc8, 0xee, 0xd0, 0xf3, 0xdd, 0x13, 0x11,
0xff, 0x51, 0x51, 0xb9, 0x94, 0xb9, 0xf2, 0x9f, 0x2b, 0x70, 0x3a, 0x16, 0x20, 0x66, 0x27, 0x1c,
0x21, 0xad, 0x17, 0x16, 0xac, 0x45, 0x35, 0x21, 0x08, 0x79, 0xdd, 0xf0, 0x97, 0xd4, 0x03, 0x34,
0xb7, 0x13, 0x4b, 0xab, 0x67, 0xa1, 0x3b, 0x16, 0xdf, 0x16, 0xe2, 0x3b, 0x89, 0x92, 0xcb, 0xbd,
0xd3, 0xa1, 0xd1, 0xc8, 0x26, 0x8e, 0x3c, 0xc7, 0xc5, 0x56, 0x77, 0xac, 0x1e, 0x07, 0xde, 0x76,
0xc4, 0x31, 0xde, 0x3c, 0xc7, 0x66, 0xb8, 0x7d, 0x25, 0xb9, 0xcd, 0x65, 0xb9, 0x7d, 0xc5, 0xb9,
0x8d, 0x3d, 0x26, 0xaf, 0xa8, 0xda, 0xb1, 0xaf, 0xe1, 0x6c, 0x7e, 0xb6, 0xf9, 0x11, 0xf8, 0x4c,
0x86, 0x30, 0xcf, 0x17, 0x5d, 0xa5, 0x70, 0x8e, 0x1e, 0x16, 0x97, 0xdd, 0xf8, 0xce, 0xf0, 0x6c,
0xeb, 0x3a, 0x57, 0x34, 0x48, 0xfe, 0xe2, 0xf1, 0x79, 0x71, 0xd9, 0xc7, 0xb8, 0x80, 0x1c, 0x2d,
0xf8, 0x42, 0xd1, 0xbd, 0x8b, 0xb7, 0x94, 0x5f, 0xa7, 0xb9, 0x53, 0x61, 0xf0, 0x3b, 0x42, 0xe3,
0x9c, 0xa5, 0xe4, 0x0a, 0x73, 0x2c, 0x58, 0xf3, 0x4a, 0x2c, 0x2f, 0x62, 0xd5, 0x59, 0x27, 0x6b,
0x00, 0xf5, 0x95, 0x2b, 0x57, 0xdb, 0xaa, 0x5c, 0xd5, 0x65, 0xf8, 0x01, 0x19, 0x09, 0x7f, 0x9c,
0x91, 0x65, 0xf8, 0x47, 0x64, 0x64, 0x6e, 0x17, 0xa2, 0x49, 0x2e, 0x4d, 0xc5, 0x25, 0x82, 0x19,
0xee, 0xc8, 0x2a, 0x9d, 0x8b, 0x31, 0x3a, 0x07, 0xe0, 0x25, 0xb6, 0x2b, 0xf6, 0x5c, 0x2e, 0xaa,
0x63, 0x75, 0x3d, 0xe5, 0x04, 0xae, 0xf9, 0xf3, 0x4c, 0x78, 0xde, 0xf4, 0xe9, 0xee, 0x09, 0x7a,
0x65, 0x56, 0x8b, 0x76, 0x4e, 0x8b, 0x6c, 0x3d, 0x3e, 0x93, 0xaf, 0xc7, 0x33, 0x41, 0x94, 0x5d,
0x4e, 0x5d, 0xda, 0x7d, 0x40, 0x4f, 0xae, 0x56, 0x2b, 0xa7, 0xdd, 0x31, 0x77, 0x25, 0xff, 0x5d,
0x38, 0xcb, 0x0d, 0x2e, 0xa1, 0xa2, 0x12, 0x68, 0x5e, 0x2d, 0xfd, 0x75, 0x1a, 0xd6, 0xaa, 0x89,
0x9b, 0x54, 0x4c, 0xef, 0x81, 0x91, 0x56, 0x24, 0xfc, 0xd8, 0x4b, 0x18, 0x0e, 0xa2, 0xf4, 0xe0,
0x93, 0xe7, 0xe3, 0x19, 0x55, 0x9e, 0x3c, 0xd0, 0xf3, 0xfa, 0xf4, 0x2b, 0x95, 0x33, 0xed, 0x52,
0x39, 0xc3, 0x05, 0xb8, 0x98, 0xd5, 0x09, 0x90, 0xf7, 0xb3, 0x33, 0x2e, 0x66, 0x75, 0x02, 0x52,
0x62, 0x21, 0x40, 0x7a, 0x6d, 0x4f, 0xe1, 0x0b, 0x01, 0xe7, 0x00, 0xd4, 0xd5, 0x69, 0x18, 0xea,
0xf2, 0xac, 0x2b, 0x2f, 0x4e, 0xc3, 0xb0, 0xf6, 0x06, 0x39, 0x5f, 0x7b, 0x83, 0xcc, 0xef, 0x66,
0xa7, 0xb4, 0x9b, 0x9f, 0x03, 0xdc, 0xf2, 0x92, 0x03, 0x69, 0x64, 0x7e, 0x65, 0x75, 0xbd, 0x58,
0xbd, 0x09, 0xf0, 0x21, 0x87, 0x60, 0xdf, 0x57, 0xa6, 0xe3, 0x43, 0x1e, 0x3e, 0xc3, 0x84, 0xb8,
0xca, 0x3a, 0x62, 0xcc, 0x61, 0x7b, 0x31, 0x21, 0xca, 0x00, 0x62, 0x6c, 0xfe, 0xa6, 0x05, 0xdd,
0x7b, 0x24, 0x50, 0x9c, 0xcf, 0x03, 0x3c, 0xa2, 0x31, 0x1d, 0x32, 0x2f, 0x24, 0xf2, 0x86, 0x3d,
0x6b, 0x65, 0x20, 0xdf, 0x5d, 0x8e, 0x48, 0x0d, 0xc4, 0xdf, 0x53, 0xc6, 0x14, 0x63, 0x0e, 0xdb,
0x27, 0x38, 0x52, 0xf6, 0x13, 0x63, 0xb4, 0x02, 0xb3, 0x09, 0xc3, 0xce, 0x81, 0x30, 0xd6, 0x8c,
0x25, 0x3f, 0xcc, 0x3f, 0xb6, 0x00, 0x2c, 0x12, 0x50, 0x26, 0x7c, 0x8d, 0xdf, 0x5c, 0x77, 0xb1,
0x73, 0xc0, 0x6b, 0x01, 0x36, 0x8a, 0x88, 0xb2, 0x44, 0x4f, 0xc1, 0x1e, 0x8c, 0x22, 0xb1, 0x43,
0x1a, 0x45, 0xe5, 0xaf, 0xae, 0xd5, 0x55, 0x10, 0x79, 0xeb, 0xd7, 0xa1, 0xdc, 0xb5, 0xf8, 0x30,
0x93, 0xd3, 0xe4, 0xb2, 0x75, 0x4e, 0x3b, 0x0b, 0xdd, 0xa2, 0x2b, 0x88, 0x54, 0x20, 0xfc, 0xe0,
0x22, 0x2c, 0x04, 0xd4, 0xf5, 0xf6, 0x3c, 0xe2, 0x0a, 0x47, 0x53, 0xaa, 0xf4, 0x35, 0x90, 0x3b,
0x17, 0x5a, 0x83, 0x2e, 0x79, 0xc2, 0x48, 0x98, 0xfa, 0x40, 0xd7, 0x1a, 0x03, 0xcc, 0x0f, 0x01,
0x74, 0x89, 0xbc, 0x47, 0xd1, 0x26, 0xcc, 0x72, 0xe6, 0xfa, 0x01, 0x72, 0xad, 0xfc, 0x00, 0x39,
0x36, 0x83, 0x25, 0x51, 0xcd, 0x6f, 0x5b, 0xb0, 0xae, 0xae, 0x77, 0x1e, 0x89, 0xef, 0xd1, 0x43,
0x7e, 0xd4, 0x3f, 0xa0, 0x12, 0xf1, 0x44, 0xb2, 0xdf, 0x3b, 0x30, 0x70, 0x49, 0xc2, 0xbc, 0x50,
0x14, 0x78, 0xb6, 0x36, 0x6c, 0x88, 0x03, 0xa2, 0x4c, 0xb8, 0x9a, 0x99, 0xbf, 0x29, 0xa7, 0xb7,
0x71, 0x40, 0xd0, 0x55, 0x58, 0x3e, 0x20, 0x24, 0xb2, 0x7d, 0xea, 0x60, 0xdf, 0xd6, 0x71, 0xa5,
0xee, 0x2f, 0x4b, 0x7c, 0xea, 0x63, 0x3e, 0x73, 0x4b, 0xc6, 0x96, 0x99, 0xc0, 0x0b, 0x47, 0x68,
0xa2, 0x72, 0xcb, 0x1a, 0x74, 0xa3, 0x98, 0x3a, 0x24, 0xe1, 0x7e, 0xd7, 0x12, 0x47, 0xcd, 0x18,
0x80, 0xae, 0xc3, 0x72, 0xfa, 0xf1, 0x09, 0x89, 0x1d, 0x12, 0x32, 0xfc, 0x48, 0xbe, 0x26, 0x4e,
0x5b, 0x55, 0x53, 0xe6, 0x2f, 0x5b, 0x60, 0x96, 0xa4, 0xde, 0x89, 0x69, 0x70, 0x82, 0x16, 0xbc,
0x06, 0x2b, 0xc2, 0x0e, 0xb1, 0x60, 0x39, 0x36, 0x84, 0x2c, 0x33, 0x4e, 0xf3, 0x39, 0x29, 0x4d,
0x5b, 0x62, 0x08, 0x17, 0x8f, 0x5c, 0xd3, 0xbf, 0xc8, 0x16, 0x7f, 0xef, 0x43, 0xff, 0xd3, 0x21,
0x89, 0x47, 0x99, 0x67, 0xc8, 0x84, 0x28, 0x2d, 0xf4, 0x3b, 0x7a, 0x06, 0xc2, 0xb3, 0xe5, 0x5e,
0x4c, 0x03, 0x3b, 0x7d, 0x6a, 0x9f, 0x16, 0x28, 0x3d, 0x0e, 0xbc, 0x23, 0x9f, 0xdb, 0xd1, 0xfb,
0x30, 0xb7, 0xe7, 0xf9, 0x8c, 0xc8, 0xc7, 0xed, 0xde, 0xe6, 0x4b, 0x65, 0xaf, 0xce, 0xca, 0xdc,
0xb8, 0x23, 0x90, 0x2d, 0x45, 0x84, 0x76, 0x61, 0xd9, 0x0b, 0x23, 0x51, 0x1a, 0xc5, 0x1e, 0xf6,
0xbd, 0xa7, 0xe3, 0x87, 0xb4, 0xde, 0xe6, 0xeb, 0x13, 0x78, 0xdd, 0xe5, 0x94, 0x3b, 0x59, 0x42,
0x0b, 0x79, 0x25, 0x18, 0x22, 0xb0, 0x42, 0x87, 0xac, 0x2c, 0x64, 0x56, 0x08, 0xd9, 0x9c, 0x20,
0xe4, 0xbe, 0x20, 0xcd, 0x4b, 0x59, 0xa6, 0x65, 0xa0, 0xb1, 0x0d, 0x73, 0x52, 0x39, 0x9e, 0xe7,
0xf6, 0x3c, 0xe2, 0xeb, 0xf6, 0x80, 0xfc, 0xe0, 0x77, 0x09, 0x1a, 0x91, 0x18, 0x87, 0x3a, 0x65,
0xe9, 0x4f, 0x8e, 0x7f, 0x88, 0xfd, 0xa1, 0x8e, 0x37, 0xf9, 0x61, 0xfc, 0x61, 0x16, 0x50, 0x59,
0x43, 0xfd, 0x3a, 0x18, 0x93, 0x84, 0xa7, 0x98, 0x6c, 0x8e, 0x5c, 0xcc, 0xc0, 0x45, 0x9e, 0xfc,
0x3e, 0x74, 0x9d, 0xe4, 0xd0, 0x16, 0x26, 0x11, 0x32, 0x7b, 0x9b, 0xef, 0x1e, 0xdb, 0xa4, 0x1b,
0x5b, 0x3b, 0x0f, 0x05, 0xd4, 0xea, 0x38, 0xc9, 0xa1, 0x18, 0xa1, 0x1f, 0x02, 0x7c, 0x95, 0xd0,
0x50, 0x71, 0x96, 0x1b, 0xff, 0xde, 0xf1, 0x39, 0x7f, 0x6f, 0xe7, 0xfe, 0xb6, 0x64, 0xdd, 0xe5,
0xec, 0x24, 0x6f, 0x07, 0x16, 0x22, 0x1c, 0x3f, 0x1e, 0x12, 0xa6, 0xd8, 0x4b, 0x5f, 0xf8, 0xe0,
0xf8, 0xec, 0x3f, 0x91, 0x6c, 0xa4, 0x84, 0x7e, 0x94, 0xf9, 0x32, 0xbe, 0x9d, 0x86, 0x8e, 0xd6,
0x8b, 0x57, 0x57, 0xc2, 0xc3, 0xe5, 0x1b, 0x83, 0xed, 0x85, 0x7b, 0x54, 0x59, 0xf4, 0x14, 0x87,
0xcb, 0x67, 0x06, 0x91, 0xc1, 0x2f, 0xc3, 0x52, 0x4c, 0x1c, 0x1a, 0xbb, 0xfc, 0x9e, 0xea, 0x05,
0x1e, 0x77, 0x7b, 0xb9, 0x97, 0x8b, 0x12, 0x7e, 0x4b, 0x83, 0xd1, 0x2b, 0xb0, 0x28, 0xb6, 0x3d,
0x83, 0xd9, 0xd6, 0x3c, 0x89, 0x9f, 0x41, 0xbc, 0x0c, 0x4b, 0x8f, 0x87, 0x3c, 0x6f, 0x38, 0xfb,
0x38, 0xc6, 0x0e, 0xa3, 0x69, 0xb5, 0xbf, 0x28, 0xe0, 0x5b, 0x29, 0x18, 0xbd, 0x09, 0xab, 0x12,
0x95, 0x24, 0x0e, 0x8e, 0x52, 0x0a, 0x12, 0xab, 0x62, 0x70, 0x45, 0xcc, 0xde, 0x16, 0x93, 0x5b,
0x7a, 0x0e, 0x19, 0xd0, 0x71, 0x68, 0x10, 0x90, 0x90, 0x25, 0xe2, 0x08, 0xeb, 0x5a, 0xe9, 0x37,
0xba, 0x01, 0xe7, 0xb0, 0xef, 0xd3, 0xaf, 0x6d, 0x41, 0xe9, 0xda, 0x25, 0xed, 0xe4, 0xdb, 0x93,
0x21, 0x90, 0x3e, 0x15, 0x38, 0x56, 0x5e, 0x51, 0xe3, 0x02, 0x74, 0xd3, 0x7d, 0xe4, 0xa7, 0x7e,
0xc6, 0x21, 0xc5, 0xd8, 0x38, 0x05, 0xfd, 0xec, 0x4e, 0x18, 0x7f, 0x6b, 0xc3, 0x72, 0x45, 0x50,
0xa1, 0x2f, 0x00, 0xb8, 0xb7, 0xca, 0xd0, 0x52, 0xee, 0xfa, 0x3f, 0xc7, 0x0f, 0x4e, 0xee, 0xaf,
0x12, 0x6c, 0x71, 0xef, 0x97, 0x43, 0xf4, 0x23, 0xe8, 0x09, 0x8f, 0x55, 0xdc, 0xa5, 0xcb, 0xbe,
0xff, 0x1d, 0xb8, 0x73, 0x5d, 0x15, 0x7b, 0x11, 0x03, 0x72, 0x6c, 0xfc, 0xb9, 0x05, 0xdd, 0x54,
0x30, 0xbf, 0xc3, 0xc8, 0x8d, 0x12, 0x7b, 0x9d, 0xe8, 0x3b, 0x8c, 0x80, 0xdd, 0x11, 0xa0, 0xff,
0x48, 0x57, 0x32, 0xde, 0x06, 0x18, 0xeb, 0x5f, 0xa9, 0x42, 0xab, 0x52, 0x05, 0xf3, 0x32, 0x2c,
0x70, 0xcb, 0x7a, 0xc4, 0xdd, 0x61, 0xb1, 0x17, 0x89, 0x46, 0xa7, 0xc4, 0x49, 0x54, 0x11, 0xa8,
0x3f, 0x37, 0x7f, 0x6f, 0x40, 0x3f, 0xfb, 0xc0, 0x85, 0xbe, 0x84, 0x5e, 0xa6, 0xa1, 0x8b, 0x5e,
0x2c, 0x6f, 0x5a, 0xb9, 0x41, 0x6c, 0xbc, 0x34, 0x01, 0x4b, 0xd5, 0x49, 0x53, 0x28, 0x84, 0xd3,
0xa5, 0xae, 0x28, 0xba, 0x52, 0xa6, 0xae, 0xeb, 0xb9, 0x1a, 0xaf, 0x36, 0xc2, 0x4d, 0xe5, 0x31,
0x58, 0xae, 0x68, 0x73, 0xa2, 0xd7, 0x26, 0x70, 0xc9, 0xb5, 0x5a, 0x8d, 0xab, 0x0d, 0xb1, 0x53,
0xa9, 0x8f, 0x01, 0x95, 0x7b, 0xa0, 0xe8, 0xd5, 0x89, 0x6c, 0xc6, 0x3d, 0x56, 0xe3, 0xb5, 0x66,
0xc8, 0xb5, 0x8a, 0xca, 0xee, 0xe8, 0x44, 0x45, 0x73, 0xfd, 0xd7, 0x89, 0x8a, 0x16, 0x5a, 0xae,
0x53, 0xe8, 0x00, 0x96, 0x8a, 0x9d, 0x53, 0x74, 0xb9, 0xae, 0xd3, 0x5f, 0x6a, 0xcc, 0x1a, 0x57,
0x9a, 0xa0, 0xa6, 0xc2, 0x08, 0x9c, 0xca, 0x77, 0x2a, 0xd1, 0x2b, 0x65, 0xfa, 0xca, 0x5e, 0xad,
0x71, 0x69, 0x32, 0x62, 0x56, 0xa7, 0x62, 0xf7, 0xb2, 0x4a, 0xa7, 0x9a, 0xd6, 0x68, 0x95, 0x4e,
0x75, 0xcd, 0x50, 0x73, 0x0a, 0xfd, 0x58, 0xb7, 0xc4, 0x0a, 0x5d, 0x3d, 0xb4, 0x51, 0xc7, 0xa6,
0xba, 0xad, 0x68, 0x5c, 0x6b, 0x8c, 0xaf, 0x65, 0x5f, 0x6f, 0xf1, 0x58, 0xcf, 0x34, 0xf7, 0xaa,
0x62, 0xbd, 0xdc, 0x2e, 0xac, 0x8a, 0xf5, 0xaa, 0x0e, 0xe1, 0x14, 0xda, 0x85, 0x85, 0x5c, 0xbb,
0x0f, 0xbd, 0x5c, 0x47, 0x99, 0x7f, 0xc3, 0x33, 0x5e, 0x99, 0x88, 0x97, 0xca, 0xb0, 0x75, 0xf6,
0x52, 0xe9, 0xaa, 0x76, 0x71, 0xf9, 0x7c, 0xf5, 0xf2, 0x24, 0xb4, 0x5c, 0x28, 0x97, 0x9a, 0x82,
0x95, 0xa1, 0x5c, 0xd7, 0x74, 0xac, 0x0c, 0xe5, 0xfa, 0x3e, 0xe3, 0x14, 0xfa, 0x81, 0x2e, 0x63,
0x85, 0x23, 0x5c, 0xac, 0xa3, 0xce, 0xee, 0xfe, 0x8b, 0x47, 0x23, 0xa5, 0xac, 0xbf, 0x86, 0x95,
0xaa, 0xb7, 0x26, 0x74, 0xb5, 0xaa, 0x38, 0xae, 0x7d, 0xd0, 0x32, 0x36, 0x9a, 0xa2, 0xa7, 0x82,
0x3f, 0x83, 0x8e, 0x6e, 0x9a, 0xa1, 0x17, 0xca, 0xd4, 0x85, 0x36, 0xa3, 0x61, 0x1e, 0x85, 0x92,
0x71, 0xe0, 0x40, 0xc7, 0xea, 0xb8, 0x9b, 0x55, 0x1f, 0xab, 0xa5, 0xbe, 0x5b, 0x7d, 0xac, 0x96,
0x9b, 0x63, 0x42, 0x5c, 0xea, 0x0c, 0xd9, 0xe6, 0x4f, 0xbd, 0x33, 0x54, 0xf4, 0xb6, 0xea, 0x9d,
0xa1, 0xb2, 0x9f, 0x34, 0x85, 0x7e, 0x02, 0xab, 0xd5, 0x3d, 0x1f, 0x54, 0x1b, 0xf1, 0x35, 0xbd,
0x27, 0xe3, 0x7a, 0x73, 0x82, 0x54, 0xfc, 0x53, 0x9d, 0x9f, 0x0a, 0x3d, 0x9f, 0xfa, 0xfc, 0x54,
0xdd, 0x79, 0x32, 0xae, 0x35, 0xc6, 0x2f, 0x87, 0x5e, 0xb6, 0x71, 0x52, 0x6f, 0xed, 0x8a, 0x3e,
0x52, 0xbd, 0xb5, 0x2b, 0x7b, 0x31, 0x22, 0x3e, 0xaa, 0x9a, 0x22, 0x55, 0xf1, 0x71, 0x44, 0xd7,
0xc6, 0xd8, 0x68, 0x8a, 0x9e, 0x3b, 0xbe, 0xcb, 0x5d, 0x0f, 0x34, 0x71, 0xfd, 0xb9, 0xcc, 0x7c,
0xb5, 0x21, 0x76, 0xfd, 0xee, 0xea, 0x4c, 0x3d, 0x51, 0x81, 0x42, 0xc6, 0xbe, 0xd6, 0x18, 0x3f,
0x95, 0x1d, 0xe9, 0xdf, 0x29, 0x32, 0x1d, 0x0b, 0x74, 0x65, 0x02, 0x9f, 0x4c, 0xc7, 0xc5, 0x78,
0xb5, 0x11, 0x6e, 0x55, 0xf4, 0x66, 0x7b, 0x08, 0x47, 0xf9, 0x53, 0xa9, 0xf1, 0x71, 0x94, 0x3f,
0x55, 0xb4, 0x25, 0x2a, 0xa2, 0x57, 0xb7, 0x0e, 0x26, 0x47, 0x6f, 0xa1, 0x85, 0x31, 0x39, 0x7a,
0x4b, 0x5d, 0x89, 0x29, 0xf4, 0xb3, 0x71, 0x9b, 0xbd, 0xfc, 0x08, 0x88, 0x36, 0x6b, 0x53, 0x51,
0xed, 0xdb, 0xa7, 0xf1, 0xc6, 0xb1, 0x68, 0x32, 0xc6, 0xff, 0x45, 0x4b, 0xf7, 0xf5, 0x2a, 0x5f,
0xe1, 0xd0, 0x9b, 0x0d, 0x18, 0x97, 0x1e, 0x12, 0x8d, 0xb7, 0x8e, 0x49, 0x95, 0x59, 0xd0, 0xc7,
0x30, 0x2b, 0xaa, 0x4f, 0x74, 0xfe, 0xe8, 0xb2, 0xd4, 0xb8, 0x50, 0x3d, 0x9f, 0x16, 0x57, 0x9c,
0xdb, 0xee, 0x9c, 0xf8, 0xa1, 0xf6, 0x8d, 0x7f, 0x06, 0x00, 0x00, 0xff, 0xff, 0x53, 0x96, 0x4c,
0x89, 0x67, 0x2b, 0x00, 0x00,
0xcd, 0xff, 0x83, 0xe7, 0x2b, 0x08, 0x95, 0x79, 0x2e, 0xc2, 0xc2, 0x23, 0x1c, 0xef, 0xe2, 0x47,
0xc4, 0x8e, 0x31, 0xf3, 0xa8, 0xa0, 0x6e, 0x59, 0x7d, 0x05, 0xb4, 0x38, 0xcc, 0xfc, 0x02, 0x8c,
0x1c, 0x07, 0x1a, 0x44, 0xd8, 0x61, 0x4d, 0x84, 0xa3, 0x75, 0xe8, 0x45, 0x31, 0xc1, 0xbe, 0x4f,
0x1d, 0xcc, 0x88, 0xb0, 0x4f, 0xdb, 0xca, 0x82, 0xcc, 0x73, 0x70, 0xb6, 0x92, 0xb9, 0x5c, 0xa0,
0xf9, 0x4e, 0x61, 0xf5, 0x34, 0x08, 0xbc, 0x46, 0xa2, 0xcd, 0xb5, 0xd2, 0xaa, 0x05, 0xa5, 0xe2,
0xfb, 0xdf, 0x85, 0x59, 0x9f, 0xe0, 0x70, 0x18, 0x35, 0x62, 0x5c, 0x5c, 0xb1, 0x26, 0x4d, 0x39,
0x9f, 0x91, 0x6e, 0xb3, 0x45, 0x7d, 0x9f, 0x38, 0xcc, 0xa3, 0xa1, 0x66, 0x7b, 0x1e, 0xc0, 0x49,
0x81, 0xca, 0x89, 0x32, 0x10, 0xd3, 0x80, 0x41, 0x99, 0x54, 0xb1, 0xfd, 0x53, 0x0b, 0x9e, 0xbb,
0xa1, 0x8c, 0x26, 0x05, 0x37, 0xda, 0x80, 0xbc, 0xc8, 0xe9, 0xa2, 0xc8, 0xe2, 0x06, 0xb5, 0x4b,
0x1b, 0xc4, 0x31, 0x62, 0x12, 0xf9, 0x9e, 0x83, 0x05, 0x8b, 0x19, 0xc1, 0x22, 0x0b, 0x42, 0x4b,
0xd0, 0x66, 0xcc, 0x17, 0x9e, 0xdb, 0xb5, 0xf8, 0x10, 0x6d, 0xc2, 0x6a, 0x40, 0x02, 0x1a, 0x8f,
0xec, 0x00, 0x47, 0x76, 0x80, 0x9f, 0xd8, 0xdc, 0xcd, 0xed, 0x60, 0x77, 0x30, 0x27, 0xd6, 0x87,
0xe4, 0xec, 0x3d, 0x1c, 0xdd, 0xc3, 0x4f, 0x76, 0xbc, 0xa7, 0xe4, 0xde, 0xae, 0x39, 0x80, 0xd5,
0xa2, 0x7e, 0x4a, 0xf5, 0xff, 0x82, 0x33, 0x12, 0xb2, 0x33, 0x0a, 0x9d, 0x1d, 0x11, 0x5b, 0x8d,
0x36, 0xea, 0x1f, 0x2d, 0x18, 0x94, 0x09, 0x95, 0xe7, 0x3f, 0xab, 0xd5, 0x8e, 0x6d, 0x93, 0x0b,
0xd0, 0x63, 0xd8, 0xf3, 0x6d, 0xba, 0xb7, 0x97, 0x10, 0x26, 0x0c, 0x31, 0x63, 0x01, 0x07, 0xdd,
0x17, 0x10, 0x74, 0x19, 0x96, 0x1c, 0xe9, 0xfd, 0x76, 0x4c, 0x0e, 0x3d, 0x91, 0x0d, 0xe6, 0xc5,
0xc2, 0x16, 0x1d, 0x1d, 0x15, 0x12, 0x8c, 0x4c, 0x58, 0xf0, 0xdc, 0x27, 0xb6, 0x48, 0x47, 0x22,
0x99, 0x74, 0x04, 0xb7, 0x9e, 0xe7, 0x3e, 0xb9, 0xe3, 0xf9, 0x84, 0x5b, 0xd4, 0x7c, 0x08, 0x6b,
0x52, 0xf9, 0xbb, 0xa1, 0x13, 0x93, 0x80, 0x84, 0x0c, 0xfb, 0x5b, 0x34, 0x1a, 0x35, 0x72, 0x9b,
0xe7, 0xa1, 0x93, 0x78, 0xa1, 0x43, 0xec, 0x50, 0x26, 0xb5, 0x19, 0x6b, 0x5e, 0x7c, 0x6f, 0x27,
0xe6, 0x4d, 0x38, 0x57, 0xc3, 0x57, 0x59, 0xf6, 0x05, 0xe8, 0x8b, 0x85, 0x39, 0x34, 0x64, 0x24,
0x64, 0x82, 0x77, 0xdf, 0xea, 0x71, 0xd8, 0x96, 0x04, 0x99, 0xaf, 0x03, 0x92, 0x3c, 0xee, 0xd1,
0x61, 0xd8, 0x2c, 0x9c, 0x9f, 0x83, 0xe5, 0x1c, 0x89, 0xf2, 0x8d, 0x37, 0x60, 0x45, 0x82, 0x3f,
0x0d, 0x83, 0xc6, 0xbc, 0xce, 0xc0, 0x73, 0x05, 0x22, 0xc5, 0x6d, 0x53, 0x0b, 0xc9, 0x1f, 0x3b,
0x47, 0x32, 0x5b, 0xd5, 0x2b, 0xc8, 0x9f, 0x3c, 0x22, 0x73, 0xc9, 0x05, 0xe3, 0xf8, 0xc0, 0x22,
0xd8, 0xa5, 0xa1, 0x3f, 0x6a, 0x9c, 0xb9, 0x2a, 0x28, 0x15, 0xdf, 0xdf, 0xb6, 0xe0, 0xb4, 0x4e,
0x69, 0x0d, 0x77, 0xf3, 0x98, 0xee, 0xdc, 0xae, 0x75, 0xe7, 0x99, 0xb1, 0x3b, 0x5f, 0x82, 0xa5,
0x84, 0x0e, 0x63, 0x87, 0xd8, 0x2e, 0x66, 0xd8, 0x0e, 0xa9, 0x4b, 0x94, 0xb7, 0x9f, 0x92, 0xf0,
0x5b, 0x98, 0xe1, 0x6d, 0xea, 0x12, 0xf3, 0x7f, 0xf5, 0x66, 0xe7, 0xbc, 0xe4, 0x32, 0x9c, 0xf6,
0x71, 0xc2, 0x6c, 0x1c, 0x45, 0x24, 0x74, 0x6d, 0xcc, 0xb8, 0xab, 0xb5, 0x84, 0xab, 0x9d, 0xe2,
0x13, 0x37, 0x04, 0xfc, 0x06, 0xdb, 0x4e, 0xcc, 0x5f, 0x4d, 0xc3, 0x22, 0xa7, 0xe5, 0xae, 0xdd,
0x48, 0xdf, 0x25, 0x68, 0x93, 0x27, 0x4c, 0x29, 0xca, 0x87, 0xe8, 0x1a, 0x2c, 0xab, 0x18, 0xf2,
0x68, 0x38, 0x0e, 0xaf, 0xb6, 0xcc, 0x46, 0xe3, 0xa9, 0x34, 0xc2, 0x2e, 0x40, 0x2f, 0x61, 0x34,
0xd2, 0xd1, 0x3a, 0x23, 0xa3, 0x95, 0x83, 0x54, 0xb4, 0xe6, 0x6d, 0x3a, 0x5b, 0x61, 0xd3, 0xbe,
0x97, 0xd8, 0xc4, 0xb1, 0xe5, 0xaa, 0x44, 0xbc, 0x77, 0x2c, 0xf0, 0x92, 0xdb, 0x8e, 0xb4, 0x06,
0xfa, 0x00, 0xd6, 0xbc, 0x47, 0x21, 0x8d, 0x89, 0xad, 0x0c, 0x29, 0xa2, 0x26, 0xa4, 0xcc, 0xde,
0xa3, 0xc3, 0xd0, 0x15, 0xb1, 0xdf, 0xb1, 0x06, 0x12, 0x67, 0x47, 0xa0, 0x70, 0x0b, 0x6c, 0x53,
0x76, 0x87, 0xcf, 0x9b, 0x6f, 0xc1, 0xd2, 0xd8, 0x2a, 0xcd, 0x63, 0xef, 0x9b, 0x96, 0x4e, 0xa7,
0x0f, 0xb0, 0xe7, 0xef, 0x90, 0xd0, 0x25, 0xf1, 0x33, 0xe6, 0x04, 0x74, 0x1d, 0x56, 0x3c, 0xd7,
0x27, 0x36, 0xf3, 0x02, 0x42, 0x87, 0xcc, 0x4e, 0x88, 0x43, 0x43, 0x37, 0xd1, 0xf6, 0xe5, 0x73,
0x0f, 0xe4, 0xd4, 0x8e, 0x9c, 0x31, 0x7f, 0x9a, 0xe6, 0xe6, 0xec, 0x2a, 0xc6, 0xb7, 0x92, 0x90,
0x10, 0xce, 0x70, 0x9f, 0x60, 0x97, 0xc4, 0x4a, 0x8d, 0xbe, 0x04, 0x7e, 0x4f, 0xc0, 0xf8, 0x0e,
0x29, 0xa4, 0x5d, 0xea, 0x8e, 0xc4, 0x8a, 0xfa, 0x16, 0x48, 0xd0, 0x4d, 0xea, 0x8e, 0x44, 0x92,
0x4c, 0x6c, 0xe1, 0x64, 0xce, 0xfe, 0x30, 0x3c, 0x10, 0xab, 0xe9, 0x58, 0x3d, 0x2f, 0xf9, 0x08,
0x27, 0x6c, 0x8b, 0x83, 0xcc, 0xdf, 0xb5, 0x74, 0x94, 0xf2, 0x65, 0x58, 0xc4, 0x21, 0xde, 0xe1,
0xbf, 0xc1, 0x1c, 0x9c, 0x42, 0x39, 0x41, 0xee, 0x76, 0xaa, 0x02, 0x0e, 0xc9, 0x39, 0x75, 0x96,
0x89, 0x99, 0x71, 0x92, 0xc8, 0x2f, 0x5c, 0x25, 0x89, 0x2f, 0x75, 0x92, 0xbe, 0xed, 0xec, 0xec,
0xe3, 0xd8, 0x4d, 0xfe, 0x9f, 0x84, 0x24, 0xc6, 0xec, 0x44, 0x2e, 0x0d, 0xe6, 0x3a, 0x9c, 0xaf,
0xe3, 0xae, 0xe4, 0x7f, 0xa1, 0x0f, 0x1f, 0x8d, 0x61, 0x91, 0xdd, 0xa1, 0xe7, 0xbb, 0x27, 0x22,
0xfe, 0xc3, 0xa2, 0x72, 0x29, 0x73, 0xe5, 0x3f, 0x57, 0xe0, 0x74, 0x2c, 0x40, 0xcc, 0x4e, 0x38,
0x42, 0x5a, 0x2f, 0x2c, 0x58, 0x8b, 0x6a, 0x42, 0x10, 0xf2, 0xba, 0xe1, 0x2f, 0xa9, 0x07, 0x68,
0x6e, 0x27, 0x96, 0x56, 0xcf, 0x42, 0x77, 0x2c, 0xbe, 0x2d, 0xc4, 0x77, 0x12, 0x25, 0x97, 0x7b,
0xa7, 0x43, 0xa3, 0x91, 0x4d, 0x1c, 0x79, 0x8e, 0x8b, 0xad, 0xee, 0x58, 0x3d, 0x0e, 0xbc, 0xed,
0x88, 0x63, 0xbc, 0x79, 0x8e, 0xcd, 0x70, 0xfb, 0x4a, 0x72, 0x9b, 0xcb, 0x72, 0xfb, 0x8a, 0x73,
0x1b, 0x7b, 0x4c, 0x5e, 0x51, 0xb5, 0x63, 0x5f, 0xc3, 0xd9, 0xfc, 0x6c, 0xf3, 0x23, 0xf0, 0x99,
0x0c, 0x61, 0x9e, 0x2f, 0xba, 0x4a, 0xe1, 0x1c, 0x3d, 0x2c, 0x2e, 0xbb, 0xf1, 0x9d, 0xe1, 0xd9,
0xd6, 0x75, 0xae, 0x68, 0x90, 0xfc, 0xc5, 0xe3, 0xb3, 0xe2, 0xb2, 0x8f, 0x71, 0x01, 0x39, 0x5a,
0xf0, 0x85, 0xa2, 0x7b, 0x17, 0x6f, 0x29, 0xbf, 0x4e, 0x73, 0xa7, 0xc2, 0xe0, 0x77, 0x84, 0xc6,
0x39, 0x4b, 0xc9, 0x15, 0xe6, 0x58, 0xb0, 0xe6, 0x95, 0x58, 0x5e, 0xc4, 0xaa, 0xb3, 0x4e, 0xd6,
0x00, 0xea, 0x2b, 0x57, 0xae, 0xb6, 0x55, 0xb9, 0xaa, 0xcb, 0xf0, 0x03, 0x32, 0x12, 0xfe, 0x38,
0x23, 0xcb, 0xf0, 0x0f, 0xc9, 0xc8, 0xdc, 0x2e, 0x44, 0x93, 0x5c, 0x9a, 0x8a, 0x4b, 0x04, 0x33,
0xdc, 0x91, 0x55, 0x3a, 0x17, 0x63, 0x74, 0x0e, 0xc0, 0x4b, 0x6c, 0x57, 0xec, 0xb9, 0x5c, 0x54,
0xc7, 0xea, 0x7a, 0xca, 0x09, 0x5c, 0xf3, 0xe7, 0x99, 0xf0, 0xbc, 0xe9, 0xd3, 0xdd, 0x13, 0xf4,
0xca, 0xac, 0x16, 0xed, 0x9c, 0x16, 0xd9, 0x7a, 0x7c, 0x26, 0x5f, 0x8f, 0x67, 0x82, 0x28, 0xbb,
0x9c, 0xba, 0xb4, 0xfb, 0x80, 0x9e, 0x5c, 0xad, 0x56, 0x4e, 0xbb, 0x63, 0xee, 0x4a, 0xfe, 0xbb,
0x70, 0x96, 0x1b, 0x5c, 0x42, 0x45, 0x25, 0xd0, 0xbc, 0x5a, 0xfa, 0xeb, 0x34, 0xac, 0x55, 0x13,
0x37, 0xa9, 0x98, 0xde, 0x03, 0x23, 0xad, 0x48, 0xf8, 0xb1, 0x97, 0x30, 0x1c, 0x44, 0xe9, 0xc1,
0x27, 0xcf, 0xc7, 0x33, 0xaa, 0x3c, 0x79, 0xa0, 0xe7, 0xf5, 0xe9, 0x57, 0x2a, 0x67, 0xda, 0xa5,
0x72, 0x86, 0x0b, 0x70, 0x31, 0xab, 0x13, 0x20, 0xef, 0x67, 0x67, 0x5c, 0xcc, 0xea, 0x04, 0xa4,
0xc4, 0x42, 0x80, 0xf4, 0xda, 0x9e, 0xc2, 0x17, 0x02, 0xce, 0x01, 0xa8, 0xab, 0xd3, 0x30, 0xd4,
0xe5, 0x59, 0x57, 0x5e, 0x9c, 0x86, 0x61, 0xed, 0x0d, 0x72, 0xbe, 0xf6, 0x06, 0x99, 0xdf, 0xcd,
0x4e, 0x69, 0x37, 0x3f, 0x03, 0xb8, 0xe5, 0x25, 0x07, 0xd2, 0xc8, 0xfc, 0xca, 0xea, 0x7a, 0xb1,
0x7a, 0x13, 0xe0, 0x43, 0x0e, 0xc1, 0xbe, 0xaf, 0x4c, 0xc7, 0x87, 0x3c, 0x7c, 0x86, 0x09, 0x71,
0x95, 0x75, 0xc4, 0x98, 0xc3, 0xf6, 0x62, 0x42, 0x94, 0x01, 0xc4, 0xd8, 0xfc, 0x4d, 0x0b, 0xba,
0xf7, 0x48, 0xa0, 0x38, 0x9f, 0x07, 0x78, 0x44, 0x63, 0x3a, 0x64, 0x5e, 0x48, 0xe4, 0x0d, 0x7b,
0xd6, 0xca, 0x40, 0xbe, 0xbb, 0x1c, 0x91, 0x1a, 0x88, 0xbf, 0xa7, 0x8c, 0x29, 0xc6, 0x1c, 0xb6,
0x4f, 0x70, 0xa4, 0xec, 0x27, 0xc6, 0x68, 0x05, 0x66, 0x13, 0x86, 0x9d, 0x03, 0x61, 0xac, 0x19,
0x4b, 0x7e, 0x98, 0x7f, 0x6c, 0x01, 0x58, 0x24, 0xa0, 0x4c, 0xf8, 0x1a, 0xbf, 0xb9, 0xee, 0x62,
0xe7, 0x80, 0xd7, 0x02, 0x6c, 0x14, 0x11, 0x65, 0x89, 0x9e, 0x82, 0x3d, 0x18, 0x45, 0x62, 0x87,
0x34, 0x8a, 0xca, 0x5f, 0x5d, 0xab, 0xab, 0x20, 0xf2, 0xd6, 0xaf, 0x43, 0xb9, 0x6b, 0xf1, 0x61,
0x26, 0xa7, 0xc9, 0x65, 0xeb, 0x9c, 0x76, 0x16, 0xba, 0x45, 0x57, 0x10, 0xa9, 0x40, 0xf8, 0xc1,
0x45, 0x58, 0x08, 0xa8, 0xeb, 0xed, 0x79, 0xc4, 0x15, 0x8e, 0xa6, 0x54, 0xe9, 0x6b, 0x20, 0x77,
0x2e, 0xb4, 0x06, 0x5d, 0xf2, 0x84, 0x91, 0x30, 0xf5, 0x81, 0xae, 0x35, 0x06, 0x98, 0x9f, 0x03,
0xe8, 0x12, 0x79, 0x8f, 0xa2, 0x4d, 0x98, 0xe5, 0xcc, 0xf5, 0x03, 0xe4, 0x5a, 0xf9, 0x01, 0x72,
0x6c, 0x06, 0x4b, 0xa2, 0x66, 0x13, 0xd0, 0x74, 0x3e, 0x01, 0x7d, 0xdb, 0x82, 0x75, 0x75, 0xf1,
0xf3, 0x48, 0x7c, 0x8f, 0x1e, 0xf2, 0x4b, 0xc0, 0x03, 0x2a, 0x59, 0x9c, 0x48, 0x5e, 0x7c, 0x07,
0x06, 0x2e, 0x49, 0x98, 0x17, 0x8a, 0xd2, 0xcf, 0xd6, 0x26, 0x0f, 0x71, 0x40, 0x94, 0x71, 0x57,
0x33, 0xf3, 0x37, 0xe5, 0xf4, 0x36, 0x0e, 0x08, 0xba, 0x0a, 0xcb, 0x07, 0x84, 0x44, 0xb6, 0x4f,
0x1d, 0xec, 0xdb, 0x3a, 0xe2, 0xd4, 0xcd, 0x66, 0x89, 0x4f, 0x7d, 0xc4, 0x67, 0x6e, 0xc9, 0xa8,
0x33, 0x13, 0x78, 0xe1, 0x08, 0x4d, 0x54, 0xd6, 0x59, 0x83, 0x6e, 0x14, 0x53, 0x87, 0x24, 0xdc,
0x23, 0x5b, 0xe2, 0x10, 0x1a, 0x03, 0xd0, 0x75, 0x58, 0x4e, 0x3f, 0x3e, 0x26, 0xb1, 0x43, 0x42,
0x86, 0x1f, 0xc9, 0x77, 0xc6, 0x69, 0xab, 0x6a, 0xca, 0xfc, 0x65, 0x0b, 0xcc, 0x92, 0xd4, 0x3b,
0x31, 0x0d, 0x4e, 0xd0, 0x82, 0xd7, 0x60, 0x45, 0xd8, 0x21, 0x16, 0x2c, 0xc7, 0x86, 0x90, 0x05,
0xc8, 0x69, 0x3e, 0x27, 0xa5, 0x69, 0x4b, 0x0c, 0xe1, 0xe2, 0x91, 0x6b, 0xfa, 0x17, 0xd9, 0xe2,
0xef, 0x7d, 0xe8, 0x7f, 0x32, 0x24, 0xf1, 0x28, 0xf3, 0x40, 0x99, 0x10, 0xa5, 0x85, 0x7e, 0x61,
0xcf, 0x40, 0x78, 0x1e, 0xdd, 0x8b, 0x69, 0x60, 0xa7, 0x8f, 0xf0, 0xd3, 0x02, 0xa5, 0xc7, 0x81,
0x77, 0xe4, 0x43, 0x3c, 0x7a, 0x1f, 0xe6, 0xf6, 0x3c, 0x9f, 0x11, 0xf9, 0xec, 0xdd, 0xdb, 0x7c,
0xa9, 0xec, 0xef, 0x59, 0x99, 0x1b, 0x77, 0x04, 0xb2, 0xa5, 0x88, 0xd0, 0x2e, 0x2c, 0x7b, 0x61,
0x24, 0x8a, 0xa6, 0xd8, 0xc3, 0xbe, 0xf7, 0x74, 0xfc, 0xc4, 0xd6, 0xdb, 0x7c, 0x7d, 0x02, 0xaf,
0xbb, 0x9c, 0x72, 0x27, 0x4b, 0x68, 0x21, 0xaf, 0x04, 0x43, 0x04, 0x56, 0xe8, 0x90, 0x95, 0x85,
0xcc, 0x0a, 0x21, 0x9b, 0x13, 0x84, 0xdc, 0x17, 0xa4, 0x79, 0x29, 0xcb, 0xb4, 0x0c, 0x34, 0xb6,
0x61, 0x4e, 0x2a, 0xc7, 0x33, 0xe0, 0x9e, 0x47, 0x7c, 0xdd, 0x38, 0x90, 0x1f, 0x3c, 0xc8, 0x69,
0x44, 0x62, 0x1c, 0xea, 0x64, 0xa6, 0x3f, 0x39, 0xfe, 0x21, 0xf6, 0x87, 0x3a, 0xde, 0xe4, 0x87,
0xf1, 0x87, 0x59, 0x40, 0x65, 0x0d, 0xf5, 0xbb, 0x61, 0x4c, 0x12, 0x9e, 0x20, 0xb2, 0xd9, 0x73,
0x31, 0x03, 0x17, 0x19, 0xf4, 0x07, 0xd0, 0x75, 0x92, 0x43, 0x5b, 0x98, 0x44, 0xc8, 0xec, 0x6d,
0xbe, 0x7b, 0x6c, 0x93, 0x6e, 0x6c, 0xed, 0x3c, 0x14, 0x50, 0xab, 0xe3, 0x24, 0x87, 0x62, 0x84,
0x3e, 0x07, 0xf8, 0x2a, 0xa1, 0xa1, 0xe2, 0x2c, 0x37, 0xfe, 0xbd, 0xe3, 0x73, 0xfe, 0xfe, 0xce,
0xfd, 0x6d, 0xc9, 0xba, 0xcb, 0xd9, 0x49, 0xde, 0x0e, 0x2c, 0x44, 0x38, 0x7e, 0x3c, 0x24, 0x4c,
0xb1, 0x97, 0xbe, 0xf0, 0xc1, 0xf1, 0xd9, 0x7f, 0x2c, 0xd9, 0x48, 0x09, 0xfd, 0x28, 0xf3, 0x65,
0x7c, 0x3b, 0x0d, 0x1d, 0xad, 0x17, 0xaf, 0xbb, 0x84, 0x87, 0xcb, 0xd7, 0x07, 0xdb, 0x0b, 0xf7,
0xa8, 0xb2, 0xe8, 0x29, 0x0e, 0x97, 0x0f, 0x10, 0x22, 0xb7, 0x5f, 0x86, 0xa5, 0x98, 0x38, 0x34,
0x76, 0xf9, 0x0d, 0xd6, 0x0b, 0x3c, 0xee, 0xf6, 0x72, 0x2f, 0x17, 0x25, 0xfc, 0x96, 0x06, 0xa3,
0x57, 0x60, 0x51, 0x6c, 0x7b, 0x06, 0xb3, 0xad, 0x79, 0x12, 0x3f, 0x83, 0x78, 0x19, 0x96, 0x1e,
0x0f, 0x79, 0xde, 0x70, 0xf6, 0x71, 0x8c, 0x1d, 0x46, 0xd3, 0x77, 0x80, 0x45, 0x01, 0xdf, 0x4a,
0xc1, 0xe8, 0x4d, 0x58, 0x95, 0xa8, 0x24, 0x71, 0x70, 0x94, 0x52, 0x90, 0x58, 0x95, 0x89, 0x2b,
0x62, 0xf6, 0xb6, 0x98, 0xdc, 0xd2, 0x73, 0xc8, 0x80, 0x8e, 0x43, 0x83, 0x80, 0x84, 0x2c, 0x11,
0x87, 0x5b, 0xd7, 0x4a, 0xbf, 0xd1, 0x0d, 0x38, 0x87, 0x7d, 0x9f, 0x7e, 0x6d, 0x0b, 0x4a, 0xd7,
0x2e, 0x69, 0x27, 0x5f, 0xa5, 0x0c, 0x81, 0xf4, 0x89, 0xc0, 0xb1, 0xf2, 0x8a, 0x1a, 0x17, 0xa0,
0x9b, 0xee, 0x23, 0xbf, 0x0f, 0x64, 0x1c, 0x52, 0x8c, 0x8d, 0x53, 0xd0, 0xcf, 0xee, 0x84, 0xf1,
0xb7, 0x36, 0x2c, 0x57, 0x04, 0x15, 0xfa, 0x02, 0x80, 0x7b, 0xab, 0x0c, 0x2d, 0xe5, 0xae, 0xff,
0x73, 0xfc, 0xe0, 0xe4, 0xfe, 0x2a, 0xc1, 0x16, 0xf7, 0x7e, 0x39, 0x44, 0x3f, 0x82, 0x9e, 0xf0,
0x58, 0xc5, 0x5d, 0xba, 0xec, 0xfb, 0xdf, 0x81, 0x3b, 0xd7, 0x55, 0xb1, 0x17, 0x31, 0x20, 0xc7,
0xc6, 0x9f, 0x5b, 0xd0, 0x4d, 0x05, 0xf3, 0xdb, 0x8d, 0xdc, 0x28, 0xb1, 0xd7, 0x89, 0xbe, 0xdd,
0x08, 0xd8, 0x1d, 0x01, 0xfa, 0x8f, 0x74, 0x25, 0xe3, 0x6d, 0x80, 0xb1, 0xfe, 0x95, 0x2a, 0xb4,
0x2a, 0x55, 0x30, 0x2f, 0xc3, 0x02, 0xb7, 0xac, 0x47, 0xdc, 0x1d, 0x16, 0x7b, 0x91, 0x68, 0x81,
0x4a, 0x9c, 0x44, 0x95, 0x87, 0xfa, 0x73, 0xf3, 0xf7, 0x06, 0xf4, 0xb3, 0x4f, 0x5f, 0xe8, 0x4b,
0xe8, 0x65, 0x5a, 0xbd, 0xe8, 0xc5, 0xf2, 0xa6, 0x95, 0x5b, 0xc7, 0xc6, 0x4b, 0x13, 0xb0, 0x54,
0x05, 0x35, 0x85, 0x42, 0x38, 0x5d, 0xea, 0x97, 0xa2, 0x2b, 0x65, 0xea, 0xba, 0x6e, 0xac, 0xf1,
0x6a, 0x23, 0xdc, 0x54, 0x1e, 0x83, 0xe5, 0x8a, 0x06, 0x28, 0x7a, 0x6d, 0x02, 0x97, 0x5c, 0x13,
0xd6, 0xb8, 0xda, 0x10, 0x3b, 0x95, 0xfa, 0x18, 0x50, 0xb9, 0x3b, 0x8a, 0x5e, 0x9d, 0xc8, 0x66,
0xdc, 0x7d, 0x35, 0x5e, 0x6b, 0x86, 0x5c, 0xab, 0xa8, 0xec, 0x9b, 0x4e, 0x54, 0x34, 0xd7, 0x99,
0x9d, 0xa8, 0x68, 0xa1, 0x19, 0x3b, 0x85, 0x0e, 0x60, 0xa9, 0xd8, 0x53, 0x45, 0x97, 0xeb, 0xfe,
0x01, 0x28, 0xb5, 0x6c, 0x8d, 0x2b, 0x4d, 0x50, 0x53, 0x61, 0x04, 0x4e, 0xe5, 0x7b, 0x98, 0xe8,
0x95, 0x32, 0x7d, 0x65, 0x17, 0xd7, 0xb8, 0x34, 0x19, 0x31, 0xab, 0x53, 0xb1, 0xaf, 0x59, 0xa5,
0x53, 0x4d, 0xd3, 0xb4, 0x4a, 0xa7, 0xba, 0x36, 0xa9, 0x39, 0x85, 0x7e, 0xac, 0x9b, 0x65, 0x85,
0x7e, 0x1f, 0xda, 0xa8, 0x63, 0x53, 0xdd, 0x70, 0x34, 0xae, 0x35, 0xc6, 0xd7, 0xb2, 0xaf, 0xb7,
0x78, 0xac, 0x67, 0xda, 0x7e, 0x55, 0xb1, 0x5e, 0x6e, 0x24, 0x56, 0xc5, 0x7a, 0x55, 0xef, 0x70,
0x0a, 0xed, 0xc2, 0x42, 0xae, 0x11, 0x88, 0x5e, 0xae, 0xa3, 0xcc, 0xbf, 0xee, 0x19, 0xaf, 0x4c,
0xc4, 0x4b, 0x65, 0xd8, 0x3a, 0x7b, 0xa9, 0x74, 0x55, 0xbb, 0xb8, 0x7c, 0xbe, 0x7a, 0x79, 0x12,
0x5a, 0x2e, 0x94, 0x4b, 0xed, 0xc2, 0xca, 0x50, 0xae, 0x6b, 0x47, 0x56, 0x86, 0x72, 0x7d, 0x07,
0x72, 0x0a, 0xfd, 0x50, 0x17, 0xb8, 0xc2, 0x11, 0x2e, 0xd6, 0x51, 0x67, 0x77, 0xff, 0xc5, 0xa3,
0x91, 0x52, 0xd6, 0x5f, 0xc3, 0x4a, 0xd5, 0x2b, 0x14, 0xba, 0x5a, 0x55, 0x36, 0xd7, 0x3e, 0x75,
0x19, 0x1b, 0x4d, 0xd1, 0x53, 0xc1, 0x9f, 0x42, 0x47, 0xb7, 0xd3, 0xd0, 0x0b, 0x65, 0xea, 0x42,
0x03, 0xd2, 0x30, 0x8f, 0x42, 0xc9, 0x38, 0x70, 0xa0, 0x63, 0x75, 0xdc, 0xe7, 0xaa, 0x8f, 0xd5,
0x52, 0x47, 0xae, 0x3e, 0x56, 0xcb, 0x6d, 0x33, 0x21, 0x2e, 0x75, 0x86, 0x6c, 0x5b, 0xa8, 0xde,
0x19, 0x2a, 0xba, 0x5e, 0xf5, 0xce, 0x50, 0xd9, 0x69, 0x9a, 0x42, 0x3f, 0x81, 0xd5, 0xea, 0x6e,
0x10, 0xaa, 0x8d, 0xf8, 0x9a, 0xae, 0x94, 0x71, 0xbd, 0x39, 0x41, 0x2a, 0xfe, 0xa9, 0xce, 0x4f,
0x85, 0x6e, 0x50, 0x7d, 0x7e, 0xaa, 0xee, 0x49, 0x19, 0xd7, 0x1a, 0xe3, 0x97, 0x43, 0x2f, 0xdb,
0x52, 0xa9, 0xb7, 0x76, 0x45, 0x87, 0xa9, 0xde, 0xda, 0x95, 0x5d, 0x1a, 0x11, 0x1f, 0x55, 0xed,
0x92, 0xaa, 0xf8, 0x38, 0xa2, 0x9f, 0x63, 0x6c, 0x34, 0x45, 0xcf, 0x1d, 0xdf, 0xe5, 0x7e, 0x08,
0x9a, 0xb8, 0xfe, 0x5c, 0x66, 0xbe, 0xda, 0x10, 0xbb, 0x7e, 0x77, 0x75, 0xa6, 0x9e, 0xa8, 0x40,
0x21, 0x63, 0x5f, 0x6b, 0x8c, 0x9f, 0xca, 0x8e, 0xf4, 0x8f, 0x16, 0x99, 0x5e, 0x06, 0xba, 0x32,
0x81, 0x4f, 0xa6, 0x17, 0x63, 0xbc, 0xda, 0x08, 0xb7, 0x2a, 0x7a, 0xb3, 0xdd, 0x85, 0xa3, 0xfc,
0xa9, 0xd4, 0x12, 0x39, 0xca, 0x9f, 0x2a, 0x1a, 0x16, 0x15, 0xd1, 0xab, 0x9b, 0x0a, 0x93, 0xa3,
0xb7, 0xd0, 0xdc, 0x98, 0x1c, 0xbd, 0xa5, 0x7e, 0xc5, 0x14, 0xfa, 0xd9, 0xb8, 0x01, 0x5f, 0x7e,
0x04, 0x44, 0x9b, 0xb5, 0xa9, 0xa8, 0xf6, 0xed, 0xd3, 0x78, 0xe3, 0x58, 0x34, 0x19, 0xe3, 0xff,
0xa2, 0xa5, 0x3b, 0x7e, 0x95, 0xaf, 0x70, 0xe8, 0xcd, 0x06, 0x8c, 0x4b, 0x0f, 0x89, 0xc6, 0x5b,
0xc7, 0xa4, 0xca, 0x2c, 0xe8, 0x23, 0x98, 0x15, 0xd5, 0x27, 0x3a, 0x7f, 0x74, 0x59, 0x6a, 0x5c,
0xa8, 0x9e, 0x4f, 0x8b, 0x2b, 0xce, 0x6d, 0x77, 0x4e, 0xfc, 0x6a, 0xfb, 0xc6, 0x3f, 0x03, 0x00,
0x00, 0xff, 0xff, 0xa1, 0xba, 0x89, 0x07, 0x81, 0x2b, 0x00, 0x00,
}

View file

@ -126,6 +126,7 @@ func (ev *EcVolume) Destroy() {
}
os.Remove(ev.FileName() + ".ecx")
os.Remove(ev.FileName() + ".ecj")
os.Remove(ev.FileName() + ".vif")
}
func (ev *EcVolume) FileName() string {

View file

@ -70,6 +70,9 @@ func (v *Volume) FileName() (fileName string) {
}
func (v *Volume) Version() needle.Version {
if v.volumeInfo.Version != 0 {
v.SuperBlock.Version = needle.Version(v.volumeInfo.Version)
}
return v.SuperBlock.Version
}

View file

@ -3,7 +3,6 @@ package storage
import (
"fmt"
"os"
"time"
"github.com/syndtr/goleveldb/leveldb/opt"
@ -12,6 +11,7 @@ import (
"github.com/chrislusf/seaweedfs/weed/storage/backend"
"github.com/chrislusf/seaweedfs/weed/storage/needle"
"github.com/chrislusf/seaweedfs/weed/storage/super_block"
"github.com/chrislusf/seaweedfs/weed/util"
)
func loadVolumeWithoutIndex(dirname string, collection string, id needle.VolumeId, needleMapKind NeedleMapType) (v *Volume, err error) {
@ -34,7 +34,7 @@ func (v *Volume) load(alsoLoadIndex bool, createDatIfMissing bool, needleMapKind
glog.V(0).Infof("loading volume %d from remote %v", v.Id, v.volumeInfo.Files)
v.LoadRemoteFile()
alreadyHasSuperBlock = true
} else if exists, canRead, canWrite, modifiedTime, fileSize := checkFile(fileName + ".dat"); exists {
} else if exists, canRead, canWrite, modifiedTime, fileSize := util.CheckFile(fileName + ".dat"); exists {
// open dat file
if !canRead {
return fmt.Errorf("cannot read Volume Data file %s.dat", fileName)
@ -144,20 +144,3 @@ func (v *Volume) load(alsoLoadIndex bool, createDatIfMissing bool, needleMapKind
return err
}
func checkFile(filename string) (exists, canRead, canWrite bool, modTime time.Time, fileSize int64) {
exists = true
fi, err := os.Stat(filename)
if os.IsNotExist(err) {
exists = false
return
}
if fi.Mode()&0400 != 0 {
canRead = true
}
if fi.Mode()&0200 != 0 {
canWrite = true
}
modTime = fi.ModTime()
fileSize = fi.Size()
return
}

View file

@ -184,8 +184,10 @@ func ScanVolumeFile(dirname string, collection string, id needle.VolumeId,
if v, err = loadVolumeWithoutIndex(dirname, collection, id, needleMapKind); err != nil {
return fmt.Errorf("failed to load volume %d: %v", id, err)
}
if err = volumeFileScanner.VisitSuperBlock(v.SuperBlock); err != nil {
return fmt.Errorf("failed to process volume %d super block: %v", id, err)
if v.volumeInfo.Version == 0 {
if err = volumeFileScanner.VisitSuperBlock(v.SuperBlock); err != nil {
return fmt.Errorf("failed to process volume %d super block: %v", id, err)
}
}
defer v.Close()

View file

@ -1,66 +1,29 @@
package storage
import (
"bytes"
"fmt"
"io/ioutil"
_ "github.com/chrislusf/seaweedfs/weed/storage/backend/s3_backend"
"github.com/golang/protobuf/jsonpb"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb"
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
"github.com/chrislusf/seaweedfs/weed/storage/backend"
_ "github.com/chrislusf/seaweedfs/weed/storage/backend/s3_backend"
)
func (v *Volume) GetVolumeInfo() *volume_server_pb.VolumeInfo {
return v.volumeInfo
}
func (v *Volume) maybeLoadVolumeInfo() bool {
func (v *Volume) maybeLoadVolumeInfo() {
v.volumeInfo = &volume_server_pb.VolumeInfo{}
var found bool
tierFileName := v.FileName() + ".vif"
v.volumeInfo, found = pb.MaybeLoadVolumeInfo(v.FileName() + ".vif")
if exists, canRead, _, _, _ := checkFile(tierFileName); !exists || !canRead {
if !exists {
return false
}
if !canRead {
glog.Warningf("can not read %s", tierFileName)
}
return false
if found {
glog.V(0).Infof("volume %d is tiered to %s as %s and read only", v.Id,
v.volumeInfo.Files[0].BackendName(), v.volumeInfo.Files[0].Key)
v.hasRemoteFile = true
}
glog.V(0).Infof("maybeLoadVolumeInfo loading volume %d check file", v.Id)
tierData, readErr := ioutil.ReadFile(tierFileName)
if readErr != nil {
glog.Warningf("fail to read %s : %v", tierFileName, readErr)
return false
}
glog.V(0).Infof("maybeLoadVolumeInfo loading volume %d ReadFile", v.Id)
if err := jsonpb.Unmarshal(bytes.NewReader(tierData), v.volumeInfo); err != nil {
glog.Warningf("unmarshal error: %v", err)
return false
}
glog.V(0).Infof("maybeLoadVolumeInfo loading volume %d Unmarshal tierInfo %v", v.Id, v.volumeInfo)
if len(v.volumeInfo.GetFiles()) == 0 {
return false
}
glog.V(0).Infof("volume %d is tiered to %s as %s and read only", v.Id,
v.volumeInfo.Files[0].BackendName(), v.volumeInfo.Files[0].Key)
v.hasRemoteFile = true
return true
}
func (v *Volume) HasRemoteFile() bool {
@ -83,24 +46,6 @@ func (v *Volume) SaveVolumeInfo() error {
tierFileName := v.FileName() + ".vif"
if exists, _, canWrite, _, _ := checkFile(tierFileName); exists && !canWrite {
return fmt.Errorf("%s not writable", tierFileName)
}
return pb.SaveVolumeInfo(tierFileName, v.volumeInfo)
m := jsonpb.Marshaler{
EmitDefaults: true,
Indent: " ",
}
text, marshalErr := m.MarshalToString(v.GetVolumeInfo())
if marshalErr != nil {
return fmt.Errorf("marshal volume %d tier info: %v", v.Id, marshalErr)
}
writeErr := ioutil.WriteFile(tierFileName, []byte(text), 0755)
if writeErr != nil {
return fmt.Errorf("fail to write %s : %v", tierFileName, writeErr)
}
return nil
}

View file

@ -3,6 +3,7 @@ package util
import (
"errors"
"os"
"time"
"github.com/chrislusf/seaweedfs/weed/glog"
)
@ -40,3 +41,21 @@ func FileExists(filename string) bool {
return true
}
func CheckFile(filename string) (exists, canRead, canWrite bool, modTime time.Time, fileSize int64) {
exists = true
fi, err := os.Stat(filename)
if os.IsNotExist(err) {
exists = false
return
}
if fi.Mode()&0400 != 0 {
canRead = true
}
if fi.Mode()&0200 != 0 {
canWrite = true
}
modTime = fi.ModTime()
fileSize = fi.Size()
return
}