// Code generated by protoc-gen-go. DO NOT EDIT. // source: BlockStore.proto /* Package generated is a generated protocol buffer package. It is generated from these files: BlockStore.proto ObjectStore.proto Shared.proto It has these top-level messages: CreateVolumeRequest CreateVolumeResponse GetVolumeInfoRequest GetVolumeInfoResponse IsVolumeReadyRequest IsVolumeReadyResponse ListSnapshotsRequest ListSnapshotsResponse CreateSnapshotRequest CreateSnapshotResponse DeleteSnapshotRequest PutObjectRequest GetObjectRequest Bytes ListCommonPrefixesRequest ListCommonPrefixesResponse ListObjectsRequest ListObjectsResponse DeleteObjectRequest CreateSignedURLRequest CreateSignedURLResponse Empty InitRequest */ package generated import proto "github.com/golang/protobuf/proto" import fmt "fmt" import math "math" import ( context "golang.org/x/net/context" grpc "google.golang.org/grpc" ) // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package type CreateVolumeRequest struct { SnapshotID string `protobuf:"bytes,1,opt,name=snapshotID" json:"snapshotID,omitempty"` VolumeType string `protobuf:"bytes,2,opt,name=volumeType" json:"volumeType,omitempty"` VolumeAZ string `protobuf:"bytes,3,opt,name=volumeAZ" json:"volumeAZ,omitempty"` Iops int64 `protobuf:"varint,4,opt,name=iops" json:"iops,omitempty"` } func (m *CreateVolumeRequest) Reset() { *m = CreateVolumeRequest{} } func (m *CreateVolumeRequest) String() string { return proto.CompactTextString(m) } func (*CreateVolumeRequest) ProtoMessage() {} func (*CreateVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } func (m *CreateVolumeRequest) GetSnapshotID() string { if m != nil { return m.SnapshotID } return "" } func (m *CreateVolumeRequest) GetVolumeType() string { if m != nil { return m.VolumeType } return "" } func (m *CreateVolumeRequest) GetVolumeAZ() string { if m != nil { return m.VolumeAZ } return "" } func (m *CreateVolumeRequest) GetIops() int64 { if m != nil { return m.Iops } return 0 } type CreateVolumeResponse struct { VolumeID string `protobuf:"bytes,1,opt,name=volumeID" json:"volumeID,omitempty"` } func (m *CreateVolumeResponse) Reset() { *m = CreateVolumeResponse{} } func (m *CreateVolumeResponse) String() string { return proto.CompactTextString(m) } func (*CreateVolumeResponse) ProtoMessage() {} func (*CreateVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } func (m *CreateVolumeResponse) GetVolumeID() string { if m != nil { return m.VolumeID } return "" } type GetVolumeInfoRequest struct { VolumeID string `protobuf:"bytes,1,opt,name=volumeID" json:"volumeID,omitempty"` VolumeAZ string `protobuf:"bytes,2,opt,name=volumeAZ" json:"volumeAZ,omitempty"` } func (m *GetVolumeInfoRequest) Reset() { *m = GetVolumeInfoRequest{} } func (m *GetVolumeInfoRequest) String() string { return proto.CompactTextString(m) } func (*GetVolumeInfoRequest) ProtoMessage() {} func (*GetVolumeInfoRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } func (m *GetVolumeInfoRequest) GetVolumeID() string { if m != nil { return m.VolumeID } return "" } func (m *GetVolumeInfoRequest) GetVolumeAZ() string { if m != nil { return m.VolumeAZ } return "" } type GetVolumeInfoResponse struct { VolumeType string `protobuf:"bytes,1,opt,name=volumeType" json:"volumeType,omitempty"` Iops int64 `protobuf:"varint,2,opt,name=iops" json:"iops,omitempty"` } func (m *GetVolumeInfoResponse) Reset() { *m = GetVolumeInfoResponse{} } func (m *GetVolumeInfoResponse) String() string { return proto.CompactTextString(m) } func (*GetVolumeInfoResponse) ProtoMessage() {} func (*GetVolumeInfoResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } func (m *GetVolumeInfoResponse) GetVolumeType() string { if m != nil { return m.VolumeType } return "" } func (m *GetVolumeInfoResponse) GetIops() int64 { if m != nil { return m.Iops } return 0 } type IsVolumeReadyRequest struct { VolumeID string `protobuf:"bytes,1,opt,name=volumeID" json:"volumeID,omitempty"` VolumeAZ string `protobuf:"bytes,2,opt,name=volumeAZ" json:"volumeAZ,omitempty"` } func (m *IsVolumeReadyRequest) Reset() { *m = IsVolumeReadyRequest{} } func (m *IsVolumeReadyRequest) String() string { return proto.CompactTextString(m) } func (*IsVolumeReadyRequest) ProtoMessage() {} func (*IsVolumeReadyRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } func (m *IsVolumeReadyRequest) GetVolumeID() string { if m != nil { return m.VolumeID } return "" } func (m *IsVolumeReadyRequest) GetVolumeAZ() string { if m != nil { return m.VolumeAZ } return "" } type IsVolumeReadyResponse struct { Ready bool `protobuf:"varint,1,opt,name=ready" json:"ready,omitempty"` } func (m *IsVolumeReadyResponse) Reset() { *m = IsVolumeReadyResponse{} } func (m *IsVolumeReadyResponse) String() string { return proto.CompactTextString(m) } func (*IsVolumeReadyResponse) ProtoMessage() {} func (*IsVolumeReadyResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } func (m *IsVolumeReadyResponse) GetReady() bool { if m != nil { return m.Ready } return false } type ListSnapshotsRequest struct { TagFilters map[string]string `protobuf:"bytes,1,rep,name=tagFilters" json:"tagFilters,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` } func (m *ListSnapshotsRequest) Reset() { *m = ListSnapshotsRequest{} } func (m *ListSnapshotsRequest) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsRequest) ProtoMessage() {} func (*ListSnapshotsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } func (m *ListSnapshotsRequest) GetTagFilters() map[string]string { if m != nil { return m.TagFilters } return nil } type ListSnapshotsResponse struct { SnapshotIDs []string `protobuf:"bytes,2,rep,name=snapshotIDs" json:"snapshotIDs,omitempty"` } func (m *ListSnapshotsResponse) Reset() { *m = ListSnapshotsResponse{} } func (m *ListSnapshotsResponse) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsResponse) ProtoMessage() {} func (*ListSnapshotsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} } func (m *ListSnapshotsResponse) GetSnapshotIDs() []string { if m != nil { return m.SnapshotIDs } return nil } type CreateSnapshotRequest struct { VolumeID string `protobuf:"bytes,1,opt,name=volumeID" json:"volumeID,omitempty"` VolumeAZ string `protobuf:"bytes,2,opt,name=volumeAZ" json:"volumeAZ,omitempty"` Tags map[string]string `protobuf:"bytes,3,rep,name=tags" json:"tags,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` } func (m *CreateSnapshotRequest) Reset() { *m = CreateSnapshotRequest{} } func (m *CreateSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*CreateSnapshotRequest) ProtoMessage() {} func (*CreateSnapshotRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} } func (m *CreateSnapshotRequest) GetVolumeID() string { if m != nil { return m.VolumeID } return "" } func (m *CreateSnapshotRequest) GetVolumeAZ() string { if m != nil { return m.VolumeAZ } return "" } func (m *CreateSnapshotRequest) GetTags() map[string]string { if m != nil { return m.Tags } return nil } type CreateSnapshotResponse struct { SnapshotID string `protobuf:"bytes,1,opt,name=snapshotID" json:"snapshotID,omitempty"` } func (m *CreateSnapshotResponse) Reset() { *m = CreateSnapshotResponse{} } func (m *CreateSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*CreateSnapshotResponse) ProtoMessage() {} func (*CreateSnapshotResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} } func (m *CreateSnapshotResponse) GetSnapshotID() string { if m != nil { return m.SnapshotID } return "" } type DeleteSnapshotRequest struct { SnapshotID string `protobuf:"bytes,1,opt,name=snapshotID" json:"snapshotID,omitempty"` } func (m *DeleteSnapshotRequest) Reset() { *m = DeleteSnapshotRequest{} } func (m *DeleteSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*DeleteSnapshotRequest) ProtoMessage() {} func (*DeleteSnapshotRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} } func (m *DeleteSnapshotRequest) GetSnapshotID() string { if m != nil { return m.SnapshotID } return "" } func init() { proto.RegisterType((*CreateVolumeRequest)(nil), "generated.CreateVolumeRequest") proto.RegisterType((*CreateVolumeResponse)(nil), "generated.CreateVolumeResponse") proto.RegisterType((*GetVolumeInfoRequest)(nil), "generated.GetVolumeInfoRequest") proto.RegisterType((*GetVolumeInfoResponse)(nil), "generated.GetVolumeInfoResponse") proto.RegisterType((*IsVolumeReadyRequest)(nil), "generated.IsVolumeReadyRequest") proto.RegisterType((*IsVolumeReadyResponse)(nil), "generated.IsVolumeReadyResponse") proto.RegisterType((*ListSnapshotsRequest)(nil), "generated.ListSnapshotsRequest") proto.RegisterType((*ListSnapshotsResponse)(nil), "generated.ListSnapshotsResponse") proto.RegisterType((*CreateSnapshotRequest)(nil), "generated.CreateSnapshotRequest") proto.RegisterType((*CreateSnapshotResponse)(nil), "generated.CreateSnapshotResponse") proto.RegisterType((*DeleteSnapshotRequest)(nil), "generated.DeleteSnapshotRequest") } // Reference imports to suppress errors if they are not otherwise used. var _ context.Context var _ grpc.ClientConn // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. const _ = grpc.SupportPackageIsVersion4 // Client API for BlockStore service type BlockStoreClient interface { Init(ctx context.Context, in *InitRequest, opts ...grpc.CallOption) (*Empty, error) CreateVolumeFromSnapshot(ctx context.Context, in *CreateVolumeRequest, opts ...grpc.CallOption) (*CreateVolumeResponse, error) GetVolumeInfo(ctx context.Context, in *GetVolumeInfoRequest, opts ...grpc.CallOption) (*GetVolumeInfoResponse, error) IsVolumeReady(ctx context.Context, in *IsVolumeReadyRequest, opts ...grpc.CallOption) (*IsVolumeReadyResponse, error) ListSnapshots(ctx context.Context, in *ListSnapshotsRequest, opts ...grpc.CallOption) (*ListSnapshotsResponse, error) CreateSnapshot(ctx context.Context, in *CreateSnapshotRequest, opts ...grpc.CallOption) (*CreateSnapshotResponse, error) DeleteSnapshot(ctx context.Context, in *DeleteSnapshotRequest, opts ...grpc.CallOption) (*Empty, error) } type blockStoreClient struct { cc *grpc.ClientConn } func NewBlockStoreClient(cc *grpc.ClientConn) BlockStoreClient { return &blockStoreClient{cc} } func (c *blockStoreClient) Init(ctx context.Context, in *InitRequest, opts ...grpc.CallOption) (*Empty, error) { out := new(Empty) err := grpc.Invoke(ctx, "/generated.BlockStore/Init", in, out, c.cc, opts...) if err != nil { return nil, err } return out, nil } func (c *blockStoreClient) CreateVolumeFromSnapshot(ctx context.Context, in *CreateVolumeRequest, opts ...grpc.CallOption) (*CreateVolumeResponse, error) { out := new(CreateVolumeResponse) err := grpc.Invoke(ctx, "/generated.BlockStore/CreateVolumeFromSnapshot", in, out, c.cc, opts...) if err != nil { return nil, err } return out, nil } func (c *blockStoreClient) GetVolumeInfo(ctx context.Context, in *GetVolumeInfoRequest, opts ...grpc.CallOption) (*GetVolumeInfoResponse, error) { out := new(GetVolumeInfoResponse) err := grpc.Invoke(ctx, "/generated.BlockStore/GetVolumeInfo", in, out, c.cc, opts...) if err != nil { return nil, err } return out, nil } func (c *blockStoreClient) IsVolumeReady(ctx context.Context, in *IsVolumeReadyRequest, opts ...grpc.CallOption) (*IsVolumeReadyResponse, error) { out := new(IsVolumeReadyResponse) err := grpc.Invoke(ctx, "/generated.BlockStore/IsVolumeReady", in, out, c.cc, opts...) if err != nil { return nil, err } return out, nil } func (c *blockStoreClient) ListSnapshots(ctx context.Context, in *ListSnapshotsRequest, opts ...grpc.CallOption) (*ListSnapshotsResponse, error) { out := new(ListSnapshotsResponse) err := grpc.Invoke(ctx, "/generated.BlockStore/ListSnapshots", in, out, c.cc, opts...) if err != nil { return nil, err } return out, nil } func (c *blockStoreClient) CreateSnapshot(ctx context.Context, in *CreateSnapshotRequest, opts ...grpc.CallOption) (*CreateSnapshotResponse, error) { out := new(CreateSnapshotResponse) err := grpc.Invoke(ctx, "/generated.BlockStore/CreateSnapshot", in, out, c.cc, opts...) if err != nil { return nil, err } return out, nil } func (c *blockStoreClient) DeleteSnapshot(ctx context.Context, in *DeleteSnapshotRequest, opts ...grpc.CallOption) (*Empty, error) { out := new(Empty) err := grpc.Invoke(ctx, "/generated.BlockStore/DeleteSnapshot", in, out, c.cc, opts...) if err != nil { return nil, err } return out, nil } // Server API for BlockStore service type BlockStoreServer interface { Init(context.Context, *InitRequest) (*Empty, error) CreateVolumeFromSnapshot(context.Context, *CreateVolumeRequest) (*CreateVolumeResponse, error) GetVolumeInfo(context.Context, *GetVolumeInfoRequest) (*GetVolumeInfoResponse, error) IsVolumeReady(context.Context, *IsVolumeReadyRequest) (*IsVolumeReadyResponse, error) ListSnapshots(context.Context, *ListSnapshotsRequest) (*ListSnapshotsResponse, error) CreateSnapshot(context.Context, *CreateSnapshotRequest) (*CreateSnapshotResponse, error) DeleteSnapshot(context.Context, *DeleteSnapshotRequest) (*Empty, error) } func RegisterBlockStoreServer(s *grpc.Server, srv BlockStoreServer) { s.RegisterService(&_BlockStore_serviceDesc, srv) } func _BlockStore_Init_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(InitRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(BlockStoreServer).Init(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/generated.BlockStore/Init", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(BlockStoreServer).Init(ctx, req.(*InitRequest)) } return interceptor(ctx, in, info, handler) } func _BlockStore_CreateVolumeFromSnapshot_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CreateVolumeRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(BlockStoreServer).CreateVolumeFromSnapshot(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/generated.BlockStore/CreateVolumeFromSnapshot", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(BlockStoreServer).CreateVolumeFromSnapshot(ctx, req.(*CreateVolumeRequest)) } return interceptor(ctx, in, info, handler) } func _BlockStore_GetVolumeInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetVolumeInfoRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(BlockStoreServer).GetVolumeInfo(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/generated.BlockStore/GetVolumeInfo", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(BlockStoreServer).GetVolumeInfo(ctx, req.(*GetVolumeInfoRequest)) } return interceptor(ctx, in, info, handler) } func _BlockStore_IsVolumeReady_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(IsVolumeReadyRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(BlockStoreServer).IsVolumeReady(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/generated.BlockStore/IsVolumeReady", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(BlockStoreServer).IsVolumeReady(ctx, req.(*IsVolumeReadyRequest)) } return interceptor(ctx, in, info, handler) } func _BlockStore_ListSnapshots_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ListSnapshotsRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(BlockStoreServer).ListSnapshots(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/generated.BlockStore/ListSnapshots", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(BlockStoreServer).ListSnapshots(ctx, req.(*ListSnapshotsRequest)) } return interceptor(ctx, in, info, handler) } func _BlockStore_CreateSnapshot_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CreateSnapshotRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(BlockStoreServer).CreateSnapshot(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/generated.BlockStore/CreateSnapshot", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(BlockStoreServer).CreateSnapshot(ctx, req.(*CreateSnapshotRequest)) } return interceptor(ctx, in, info, handler) } func _BlockStore_DeleteSnapshot_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(DeleteSnapshotRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(BlockStoreServer).DeleteSnapshot(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/generated.BlockStore/DeleteSnapshot", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(BlockStoreServer).DeleteSnapshot(ctx, req.(*DeleteSnapshotRequest)) } return interceptor(ctx, in, info, handler) } var _BlockStore_serviceDesc = grpc.ServiceDesc{ ServiceName: "generated.BlockStore", HandlerType: (*BlockStoreServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Init", Handler: _BlockStore_Init_Handler, }, { MethodName: "CreateVolumeFromSnapshot", Handler: _BlockStore_CreateVolumeFromSnapshot_Handler, }, { MethodName: "GetVolumeInfo", Handler: _BlockStore_GetVolumeInfo_Handler, }, { MethodName: "IsVolumeReady", Handler: _BlockStore_IsVolumeReady_Handler, }, { MethodName: "ListSnapshots", Handler: _BlockStore_ListSnapshots_Handler, }, { MethodName: "CreateSnapshot", Handler: _BlockStore_CreateSnapshot_Handler, }, { MethodName: "DeleteSnapshot", Handler: _BlockStore_DeleteSnapshot_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "BlockStore.proto", } func init() { proto.RegisterFile("BlockStore.proto", fileDescriptor0) } var fileDescriptor0 = []byte{ // 539 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0xc1, 0x6e, 0xd3, 0x40, 0x10, 0xd5, 0xc6, 0x06, 0x35, 0x53, 0x5a, 0xa2, 0xc5, 0xae, 0x2c, 0x1f, 0x8a, 0xf1, 0x29, 0x42, 0x22, 0xa0, 0x70, 0x68, 0x41, 0x02, 0x09, 0x48, 0x8b, 0x22, 0x50, 0x91, 0x9c, 0xc2, 0x01, 0x4e, 0x86, 0x2c, 0x69, 0x54, 0xc7, 0x6b, 0x76, 0x37, 0x95, 0xfc, 0x01, 0xfc, 0x0a, 0x5f, 0xc0, 0x47, 0xf0, 0x59, 0xc8, 0xf6, 0xda, 0xde, 0xb5, 0xdd, 0x54, 0x55, 0x6e, 0x9e, 0x19, 0xcf, 0xdb, 0x37, 0xcf, 0x6f, 0xd6, 0x30, 0x78, 0x1b, 0xd1, 0x1f, 0x97, 0x33, 0x41, 0x19, 0x19, 0x25, 0x8c, 0x0a, 0x8a, 0xfb, 0x0b, 0x12, 0x13, 0x16, 0x0a, 0x32, 0x77, 0xef, 0xcd, 0x2e, 0x42, 0x46, 0xe6, 0x45, 0xc1, 0xff, 0x8d, 0xe0, 0xc1, 0x3b, 0x46, 0x42, 0x41, 0xbe, 0xd0, 0x68, 0xbd, 0x22, 0x01, 0xf9, 0xb5, 0x26, 0x5c, 0xe0, 0x43, 0x00, 0x1e, 0x87, 0x09, 0xbf, 0xa0, 0x62, 0x3a, 0x71, 0x90, 0x87, 0x86, 0xfd, 0x40, 0xc9, 0x64, 0xf5, 0xab, 0xbc, 0xe1, 0x3c, 0x4d, 0x88, 0xd3, 0x2b, 0xea, 0x75, 0x06, 0xbb, 0xb0, 0x53, 0x44, 0x6f, 0xbe, 0x3a, 0x46, 0x5e, 0xad, 0x62, 0x8c, 0xc1, 0x5c, 0xd2, 0x84, 0x3b, 0xa6, 0x87, 0x86, 0x46, 0x90, 0x3f, 0xfb, 0x63, 0xb0, 0x74, 0x1a, 0x3c, 0xa1, 0x31, 0x57, 0x70, 0x2a, 0x16, 0x55, 0xec, 0x9f, 0x81, 0xf5, 0x9e, 0x88, 0xa2, 0x61, 0x1a, 0xff, 0xa4, 0x25, 0xf7, 0x0d, 0x3d, 0x1a, 0xaf, 0x9e, 0xce, 0xcb, 0xff, 0x00, 0x76, 0x03, 0x4f, 0x92, 0xd0, 0x87, 0x45, 0xad, 0x61, 0xcb, 0x81, 0x7a, 0xca, 0x40, 0x67, 0x60, 0x4d, 0x79, 0x39, 0x4c, 0x38, 0x4f, 0xb7, 0x25, 0xf7, 0x04, 0xec, 0x06, 0x9e, 0x24, 0x67, 0xc1, 0x1d, 0x96, 0x25, 0x72, 0xb4, 0x9d, 0xa0, 0x08, 0xfc, 0x3f, 0x08, 0xac, 0x8f, 0x4b, 0x2e, 0x66, 0xf2, 0x93, 0xf1, 0xf2, 0xfc, 0x4f, 0x00, 0x22, 0x5c, 0x9c, 0x2e, 0x23, 0x41, 0x18, 0x77, 0x90, 0x67, 0x0c, 0x77, 0xc7, 0x4f, 0x47, 0x95, 0x3d, 0x46, 0x5d, 0x4d, 0xa3, 0xf3, 0xaa, 0xe3, 0x24, 0x16, 0x2c, 0x0d, 0x14, 0x08, 0xf7, 0x15, 0xdc, 0x6f, 0x94, 0xf1, 0x00, 0x8c, 0x4b, 0x92, 0xca, 0xf1, 0xb2, 0xc7, 0x8c, 0xe4, 0x55, 0x18, 0xad, 0x4b, 0xa7, 0x14, 0xc1, 0xcb, 0xde, 0x31, 0xf2, 0x5f, 0x80, 0xdd, 0x38, 0x52, 0xce, 0xe5, 0xc1, 0x6e, 0xed, 0xb7, 0x4c, 0x5b, 0x63, 0xd8, 0x0f, 0xd4, 0x94, 0xff, 0x0f, 0x81, 0x5d, 0x98, 0xa6, 0xec, 0xde, 0x52, 0x64, 0xfc, 0x1a, 0x4c, 0x11, 0x2e, 0xb8, 0x63, 0xe4, 0xb2, 0x3c, 0x56, 0x64, 0xe9, 0x3c, 0x27, 0xd3, 0x45, 0x2a, 0x92, 0xf7, 0xb9, 0x47, 0xd0, 0xaf, 0x52, 0xb7, 0x52, 0xe1, 0x18, 0x0e, 0x9a, 0x27, 0xd4, 0xde, 0xdb, 0xb4, 0x88, 0xfe, 0x11, 0xd8, 0x13, 0x12, 0x91, 0xb6, 0x06, 0x37, 0x34, 0x8e, 0xff, 0x9a, 0x00, 0xf5, 0x3d, 0x81, 0x9f, 0x81, 0x39, 0x8d, 0x97, 0x02, 0x1f, 0x28, 0x43, 0x67, 0x09, 0x09, 0xe7, 0x0e, 0x94, 0xfc, 0xc9, 0x2a, 0x11, 0x29, 0xfe, 0x06, 0x8e, 0xba, 0xb2, 0xa7, 0x8c, 0xae, 0x4a, 0x0e, 0xf8, 0xb0, 0x25, 0x9d, 0x76, 0xbd, 0xb8, 0x0f, 0xaf, 0xad, 0xcb, 0xb1, 0x03, 0xd8, 0xd3, 0x76, 0x11, 0xab, 0x1d, 0x5d, 0x5b, 0xef, 0x7a, 0xd7, 0xbf, 0x50, 0x63, 0x6a, 0x2b, 0xa4, 0x61, 0x76, 0x2d, 0xab, 0x86, 0xd9, 0xbd, 0x7d, 0x01, 0xec, 0x69, 0xf6, 0xd5, 0x30, 0xbb, 0x76, 0x49, 0xc3, 0xec, 0x76, 0xfe, 0x67, 0xd8, 0xd7, 0xcd, 0x80, 0xbd, 0x9b, 0x9c, 0xe8, 0x3e, 0xda, 0xf0, 0x86, 0x84, 0x9d, 0xc0, 0xbe, 0xee, 0x14, 0x0d, 0xb6, 0xd3, 0x44, 0xed, 0xaf, 0xfe, 0xfd, 0x6e, 0xfe, 0xdf, 0x78, 0xfe, 0x3f, 0x00, 0x00, 0xff, 0xff, 0xd7, 0x15, 0x7f, 0x32, 0x64, 0x06, 0x00, 0x00, }