|
|
@ -8,7 +8,8 @@ import (
|
|
|
|
fmt "fmt"
|
|
|
|
fmt "fmt"
|
|
|
|
proto "github.com/gogo/protobuf/proto"
|
|
|
|
proto "github.com/gogo/protobuf/proto"
|
|
|
|
control "github.com/moby/buildkit/api/services/control"
|
|
|
|
control "github.com/moby/buildkit/api/services/control"
|
|
|
|
pb "github.com/moby/buildkit/sourcepolicy/pb"
|
|
|
|
pb "github.com/moby/buildkit/solver/pb"
|
|
|
|
|
|
|
|
pb1 "github.com/moby/buildkit/sourcepolicy/pb"
|
|
|
|
grpc "google.golang.org/grpc"
|
|
|
|
grpc "google.golang.org/grpc"
|
|
|
|
codes "google.golang.org/grpc/codes"
|
|
|
|
codes "google.golang.org/grpc/codes"
|
|
|
|
status "google.golang.org/grpc/status"
|
|
|
|
status "google.golang.org/grpc/status"
|
|
|
@ -270,35 +271,107 @@ func (m *BuildRequest) GetOptions() *BuildOptions {
|
|
|
|
return nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type BuildOptions struct {
|
|
|
|
type Inputs struct {
|
|
|
|
ContextPath string `protobuf:"bytes,1,opt,name=ContextPath,proto3" json:"ContextPath,omitempty"`
|
|
|
|
ContextPath string `protobuf:"bytes,1,opt,name=ContextPath,proto3" json:"ContextPath,omitempty"`
|
|
|
|
DockerfileName string `protobuf:"bytes,2,opt,name=DockerfileName,proto3" json:"DockerfileName,omitempty"`
|
|
|
|
ContextPathHash string `protobuf:"bytes,2,opt,name=ContextPathHash,proto3" json:"ContextPathHash,omitempty"`
|
|
|
|
PrintFunc *PrintFunc `protobuf:"bytes,3,opt,name=PrintFunc,proto3" json:"PrintFunc,omitempty"`
|
|
|
|
DockerfileName string `protobuf:"bytes,3,opt,name=DockerfileName,proto3" json:"DockerfileName,omitempty"`
|
|
|
|
NamedContexts map[string]string `protobuf:"bytes,4,rep,name=NamedContexts,proto3" json:"NamedContexts,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
|
|
|
DockerfileInline string `protobuf:"bytes,4,opt,name=DockerfileInline,proto3" json:"DockerfileInline,omitempty"`
|
|
|
|
Allow []string `protobuf:"bytes,5,rep,name=Allow,proto3" json:"Allow,omitempty"`
|
|
|
|
ContextDefinition *pb.Definition `protobuf:"bytes,5,opt,name=ContextDefinition,proto3" json:"ContextDefinition,omitempty"`
|
|
|
|
Attests []*Attest `protobuf:"bytes,6,rep,name=Attests,proto3" json:"Attests,omitempty"`
|
|
|
|
NamedContexts map[string]*NamedContext `protobuf:"bytes,6,rep,name=NamedContexts,proto3" json:"NamedContexts,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
|
|
|
BuildArgs map[string]string `protobuf:"bytes,7,rep,name=BuildArgs,proto3" json:"BuildArgs,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
CacheFrom []*CacheOptionsEntry `protobuf:"bytes,8,rep,name=CacheFrom,proto3" json:"CacheFrom,omitempty"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
CacheTo []*CacheOptionsEntry `protobuf:"bytes,9,rep,name=CacheTo,proto3" json:"CacheTo,omitempty"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
CgroupParent string `protobuf:"bytes,10,opt,name=CgroupParent,proto3" json:"CgroupParent,omitempty"`
|
|
|
|
}
|
|
|
|
Exports []*ExportEntry `protobuf:"bytes,11,rep,name=Exports,proto3" json:"Exports,omitempty"`
|
|
|
|
|
|
|
|
ExtraHosts []string `protobuf:"bytes,12,rep,name=ExtraHosts,proto3" json:"ExtraHosts,omitempty"`
|
|
|
|
func (m *Inputs) Reset() { *m = Inputs{} }
|
|
|
|
Labels map[string]string `protobuf:"bytes,13,rep,name=Labels,proto3" json:"Labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
|
|
|
func (m *Inputs) String() string { return proto.CompactTextString(m) }
|
|
|
|
NetworkMode string `protobuf:"bytes,14,opt,name=NetworkMode,proto3" json:"NetworkMode,omitempty"`
|
|
|
|
func (*Inputs) ProtoMessage() {}
|
|
|
|
NoCacheFilter []string `protobuf:"bytes,15,rep,name=NoCacheFilter,proto3" json:"NoCacheFilter,omitempty"`
|
|
|
|
func (*Inputs) Descriptor() ([]byte, []int) {
|
|
|
|
Platforms []string `protobuf:"bytes,16,rep,name=Platforms,proto3" json:"Platforms,omitempty"`
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{6}
|
|
|
|
Secrets []*Secret `protobuf:"bytes,17,rep,name=Secrets,proto3" json:"Secrets,omitempty"`
|
|
|
|
}
|
|
|
|
ShmSize int64 `protobuf:"varint,18,opt,name=ShmSize,proto3" json:"ShmSize,omitempty"`
|
|
|
|
func (m *Inputs) XXX_Unmarshal(b []byte) error {
|
|
|
|
SSH []*SSH `protobuf:"bytes,19,rep,name=SSH,proto3" json:"SSH,omitempty"`
|
|
|
|
return xxx_messageInfo_Inputs.Unmarshal(m, b)
|
|
|
|
Tags []string `protobuf:"bytes,20,rep,name=Tags,proto3" json:"Tags,omitempty"`
|
|
|
|
}
|
|
|
|
Target string `protobuf:"bytes,21,opt,name=Target,proto3" json:"Target,omitempty"`
|
|
|
|
func (m *Inputs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
Ulimits *UlimitOpt `protobuf:"bytes,22,opt,name=Ulimits,proto3" json:"Ulimits,omitempty"`
|
|
|
|
return xxx_messageInfo_Inputs.Marshal(b, m, deterministic)
|
|
|
|
Builder string `protobuf:"bytes,23,opt,name=Builder,proto3" json:"Builder,omitempty"`
|
|
|
|
}
|
|
|
|
NoCache bool `protobuf:"varint,24,opt,name=NoCache,proto3" json:"NoCache,omitempty"`
|
|
|
|
func (m *Inputs) XXX_Merge(src proto.Message) {
|
|
|
|
Pull bool `protobuf:"varint,25,opt,name=Pull,proto3" json:"Pull,omitempty"`
|
|
|
|
xxx_messageInfo_Inputs.Merge(m, src)
|
|
|
|
ExportPush bool `protobuf:"varint,26,opt,name=ExportPush,proto3" json:"ExportPush,omitempty"`
|
|
|
|
}
|
|
|
|
ExportLoad bool `protobuf:"varint,27,opt,name=ExportLoad,proto3" json:"ExportLoad,omitempty"`
|
|
|
|
func (m *Inputs) XXX_Size() int {
|
|
|
|
SourcePolicy *pb.Policy `protobuf:"bytes,28,opt,name=SourcePolicy,proto3" json:"SourcePolicy,omitempty"`
|
|
|
|
return xxx_messageInfo_Inputs.Size(m)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Inputs) XXX_DiscardUnknown() {
|
|
|
|
|
|
|
|
xxx_messageInfo_Inputs.DiscardUnknown(m)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var xxx_messageInfo_Inputs proto.InternalMessageInfo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *Inputs) GetContextPath() string {
|
|
|
|
|
|
|
|
if m != nil {
|
|
|
|
|
|
|
|
return m.ContextPath
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *Inputs) GetContextPathHash() string {
|
|
|
|
|
|
|
|
if m != nil {
|
|
|
|
|
|
|
|
return m.ContextPathHash
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *Inputs) GetDockerfileName() string {
|
|
|
|
|
|
|
|
if m != nil {
|
|
|
|
|
|
|
|
return m.DockerfileName
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *Inputs) GetDockerfileInline() string {
|
|
|
|
|
|
|
|
if m != nil {
|
|
|
|
|
|
|
|
return m.DockerfileInline
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *Inputs) GetContextDefinition() *pb.Definition {
|
|
|
|
|
|
|
|
if m != nil {
|
|
|
|
|
|
|
|
return m.ContextDefinition
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *Inputs) GetNamedContexts() map[string]*NamedContext {
|
|
|
|
|
|
|
|
if m != nil {
|
|
|
|
|
|
|
|
return m.NamedContexts
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type BuildOptions struct {
|
|
|
|
|
|
|
|
Inputs *Inputs `protobuf:"bytes,1,opt,name=Inputs,proto3" json:"Inputs,omitempty"`
|
|
|
|
|
|
|
|
PrintFunc *PrintFunc `protobuf:"bytes,2,opt,name=PrintFunc,proto3" json:"PrintFunc,omitempty"`
|
|
|
|
|
|
|
|
Opts *CommonOptions `protobuf:"bytes,3,opt,name=Opts,proto3" json:"Opts,omitempty"`
|
|
|
|
|
|
|
|
Allow []string `protobuf:"bytes,4,rep,name=Allow,proto3" json:"Allow,omitempty"`
|
|
|
|
|
|
|
|
Attests []*Attest `protobuf:"bytes,5,rep,name=Attests,proto3" json:"Attests,omitempty"`
|
|
|
|
|
|
|
|
BuildArgs map[string]string `protobuf:"bytes,6,rep,name=BuildArgs,proto3" json:"BuildArgs,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
|
|
|
|
|
|
|
CacheFrom []*CacheOptionsEntry `protobuf:"bytes,7,rep,name=CacheFrom,proto3" json:"CacheFrom,omitempty"`
|
|
|
|
|
|
|
|
CacheTo []*CacheOptionsEntry `protobuf:"bytes,8,rep,name=CacheTo,proto3" json:"CacheTo,omitempty"`
|
|
|
|
|
|
|
|
CgroupParent string `protobuf:"bytes,9,opt,name=CgroupParent,proto3" json:"CgroupParent,omitempty"`
|
|
|
|
|
|
|
|
Exports []*ExportEntry `protobuf:"bytes,10,rep,name=Exports,proto3" json:"Exports,omitempty"`
|
|
|
|
|
|
|
|
ExtraHosts []string `protobuf:"bytes,11,rep,name=ExtraHosts,proto3" json:"ExtraHosts,omitempty"`
|
|
|
|
|
|
|
|
Labels map[string]string `protobuf:"bytes,12,rep,name=Labels,proto3" json:"Labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
|
|
|
|
|
|
|
NetworkMode string `protobuf:"bytes,13,opt,name=NetworkMode,proto3" json:"NetworkMode,omitempty"`
|
|
|
|
|
|
|
|
NoCacheFilter []string `protobuf:"bytes,14,rep,name=NoCacheFilter,proto3" json:"NoCacheFilter,omitempty"`
|
|
|
|
|
|
|
|
Platforms []string `protobuf:"bytes,15,rep,name=Platforms,proto3" json:"Platforms,omitempty"`
|
|
|
|
|
|
|
|
Secrets []*Secret `protobuf:"bytes,16,rep,name=Secrets,proto3" json:"Secrets,omitempty"`
|
|
|
|
|
|
|
|
ShmSize int64 `protobuf:"varint,17,opt,name=ShmSize,proto3" json:"ShmSize,omitempty"`
|
|
|
|
|
|
|
|
SSH []*SSH `protobuf:"bytes,18,rep,name=SSH,proto3" json:"SSH,omitempty"`
|
|
|
|
|
|
|
|
Tags []string `protobuf:"bytes,19,rep,name=Tags,proto3" json:"Tags,omitempty"`
|
|
|
|
|
|
|
|
Target string `protobuf:"bytes,20,opt,name=Target,proto3" json:"Target,omitempty"`
|
|
|
|
|
|
|
|
Ulimits *UlimitOpt `protobuf:"bytes,21,opt,name=Ulimits,proto3" json:"Ulimits,omitempty"`
|
|
|
|
|
|
|
|
SourcePolicy *pb1.Policy `protobuf:"bytes,22,opt,name=SourcePolicy,proto3" json:"SourcePolicy,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
@ -308,7 +381,7 @@ func (m *BuildOptions) Reset() { *m = BuildOptions{} }
|
|
|
|
func (m *BuildOptions) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *BuildOptions) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*BuildOptions) ProtoMessage() {}
|
|
|
|
func (*BuildOptions) ProtoMessage() {}
|
|
|
|
func (*BuildOptions) Descriptor() ([]byte, []int) {
|
|
|
|
func (*BuildOptions) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{6}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{7}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *BuildOptions) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *BuildOptions) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_BuildOptions.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_BuildOptions.Unmarshal(m, b)
|
|
|
@ -328,18 +401,11 @@ func (m *BuildOptions) XXX_DiscardUnknown() {
|
|
|
|
|
|
|
|
|
|
|
|
var xxx_messageInfo_BuildOptions proto.InternalMessageInfo
|
|
|
|
var xxx_messageInfo_BuildOptions proto.InternalMessageInfo
|
|
|
|
|
|
|
|
|
|
|
|
func (m *BuildOptions) GetContextPath() string {
|
|
|
|
func (m *BuildOptions) GetInputs() *Inputs {
|
|
|
|
if m != nil {
|
|
|
|
if m != nil {
|
|
|
|
return m.ContextPath
|
|
|
|
return m.Inputs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *BuildOptions) GetDockerfileName() string {
|
|
|
|
|
|
|
|
if m != nil {
|
|
|
|
|
|
|
|
return m.DockerfileName
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (m *BuildOptions) GetPrintFunc() *PrintFunc {
|
|
|
|
func (m *BuildOptions) GetPrintFunc() *PrintFunc {
|
|
|
@ -349,9 +415,9 @@ func (m *BuildOptions) GetPrintFunc() *PrintFunc {
|
|
|
|
return nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (m *BuildOptions) GetNamedContexts() map[string]string {
|
|
|
|
func (m *BuildOptions) GetOpts() *CommonOptions {
|
|
|
|
if m != nil {
|
|
|
|
if m != nil {
|
|
|
|
return m.NamedContexts
|
|
|
|
return m.Opts
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -482,46 +548,140 @@ func (m *BuildOptions) GetUlimits() *UlimitOpt {
|
|
|
|
return nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (m *BuildOptions) GetBuilder() string {
|
|
|
|
func (m *BuildOptions) GetSourcePolicy() *pb1.Policy {
|
|
|
|
|
|
|
|
if m != nil {
|
|
|
|
|
|
|
|
return m.SourcePolicy
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type NamedContext struct {
|
|
|
|
|
|
|
|
Path string `protobuf:"bytes,1,opt,name=Path,proto3" json:"Path,omitempty"`
|
|
|
|
|
|
|
|
Definition *pb.Definition `protobuf:"bytes,2,opt,name=Definition,proto3" json:"Definition,omitempty"`
|
|
|
|
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *NamedContext) Reset() { *m = NamedContext{} }
|
|
|
|
|
|
|
|
func (m *NamedContext) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
|
|
|
func (*NamedContext) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (*NamedContext) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{8}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *NamedContext) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
|
|
|
return xxx_messageInfo_NamedContext.Unmarshal(m, b)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *NamedContext) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
|
|
|
return xxx_messageInfo_NamedContext.Marshal(b, m, deterministic)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *NamedContext) XXX_Merge(src proto.Message) {
|
|
|
|
|
|
|
|
xxx_messageInfo_NamedContext.Merge(m, src)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *NamedContext) XXX_Size() int {
|
|
|
|
|
|
|
|
return xxx_messageInfo_NamedContext.Size(m)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *NamedContext) XXX_DiscardUnknown() {
|
|
|
|
|
|
|
|
xxx_messageInfo_NamedContext.DiscardUnknown(m)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var xxx_messageInfo_NamedContext proto.InternalMessageInfo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *NamedContext) GetPath() string {
|
|
|
|
|
|
|
|
if m != nil {
|
|
|
|
|
|
|
|
return m.Path
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *NamedContext) GetDefinition() *pb.Definition {
|
|
|
|
|
|
|
|
if m != nil {
|
|
|
|
|
|
|
|
return m.Definition
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type CommonOptions struct {
|
|
|
|
|
|
|
|
Builder string `protobuf:"bytes,1,opt,name=Builder,proto3" json:"Builder,omitempty"`
|
|
|
|
|
|
|
|
NoCache bool `protobuf:"varint,2,opt,name=NoCache,proto3" json:"NoCache,omitempty"`
|
|
|
|
|
|
|
|
// string Progress: no progress view on server side
|
|
|
|
|
|
|
|
Pull bool `protobuf:"varint,3,opt,name=Pull,proto3" json:"Pull,omitempty"`
|
|
|
|
|
|
|
|
ExportPush bool `protobuf:"varint,4,opt,name=ExportPush,proto3" json:"ExportPush,omitempty"`
|
|
|
|
|
|
|
|
ExportLoad bool `protobuf:"varint,5,opt,name=ExportLoad,proto3" json:"ExportLoad,omitempty"`
|
|
|
|
|
|
|
|
// TODO: we should remove Linked from the controllerapi, it's only used to
|
|
|
|
|
|
|
|
// produce a single warning. To allow this, we need to move the default
|
|
|
|
|
|
|
|
// export detection out from the controller server, as well as load the
|
|
|
|
|
|
|
|
// driver on the controller client.
|
|
|
|
|
|
|
|
Linked bool `protobuf:"varint,6,opt,name=Linked,proto3" json:"Linked,omitempty"`
|
|
|
|
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *CommonOptions) Reset() { *m = CommonOptions{} }
|
|
|
|
|
|
|
|
func (m *CommonOptions) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
|
|
|
func (*CommonOptions) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (*CommonOptions) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{9}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CommonOptions) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
|
|
|
return xxx_messageInfo_CommonOptions.Unmarshal(m, b)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CommonOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
|
|
|
return xxx_messageInfo_CommonOptions.Marshal(b, m, deterministic)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CommonOptions) XXX_Merge(src proto.Message) {
|
|
|
|
|
|
|
|
xxx_messageInfo_CommonOptions.Merge(m, src)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CommonOptions) XXX_Size() int {
|
|
|
|
|
|
|
|
return xxx_messageInfo_CommonOptions.Size(m)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CommonOptions) XXX_DiscardUnknown() {
|
|
|
|
|
|
|
|
xxx_messageInfo_CommonOptions.DiscardUnknown(m)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var xxx_messageInfo_CommonOptions proto.InternalMessageInfo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (m *CommonOptions) GetBuilder() string {
|
|
|
|
if m != nil {
|
|
|
|
if m != nil {
|
|
|
|
return m.Builder
|
|
|
|
return m.Builder
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (m *BuildOptions) GetNoCache() bool {
|
|
|
|
func (m *CommonOptions) GetNoCache() bool {
|
|
|
|
if m != nil {
|
|
|
|
if m != nil {
|
|
|
|
return m.NoCache
|
|
|
|
return m.NoCache
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (m *BuildOptions) GetPull() bool {
|
|
|
|
func (m *CommonOptions) GetPull() bool {
|
|
|
|
if m != nil {
|
|
|
|
if m != nil {
|
|
|
|
return m.Pull
|
|
|
|
return m.Pull
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (m *BuildOptions) GetExportPush() bool {
|
|
|
|
func (m *CommonOptions) GetExportPush() bool {
|
|
|
|
if m != nil {
|
|
|
|
if m != nil {
|
|
|
|
return m.ExportPush
|
|
|
|
return m.ExportPush
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (m *BuildOptions) GetExportLoad() bool {
|
|
|
|
func (m *CommonOptions) GetExportLoad() bool {
|
|
|
|
if m != nil {
|
|
|
|
if m != nil {
|
|
|
|
return m.ExportLoad
|
|
|
|
return m.ExportLoad
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (m *BuildOptions) GetSourcePolicy() *pb.Policy {
|
|
|
|
func (m *CommonOptions) GetLinked() bool {
|
|
|
|
if m != nil {
|
|
|
|
if m != nil {
|
|
|
|
return m.SourcePolicy
|
|
|
|
return m.Linked
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type ExportEntry struct {
|
|
|
|
type ExportEntry struct {
|
|
|
@ -537,7 +697,7 @@ func (m *ExportEntry) Reset() { *m = ExportEntry{} }
|
|
|
|
func (m *ExportEntry) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *ExportEntry) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ExportEntry) ProtoMessage() {}
|
|
|
|
func (*ExportEntry) ProtoMessage() {}
|
|
|
|
func (*ExportEntry) Descriptor() ([]byte, []int) {
|
|
|
|
func (*ExportEntry) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{7}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{10}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *ExportEntry) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *ExportEntry) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ExportEntry.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_ExportEntry.Unmarshal(m, b)
|
|
|
@ -590,7 +750,7 @@ func (m *CacheOptionsEntry) Reset() { *m = CacheOptionsEntry{} }
|
|
|
|
func (m *CacheOptionsEntry) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *CacheOptionsEntry) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*CacheOptionsEntry) ProtoMessage() {}
|
|
|
|
func (*CacheOptionsEntry) ProtoMessage() {}
|
|
|
|
func (*CacheOptionsEntry) Descriptor() ([]byte, []int) {
|
|
|
|
func (*CacheOptionsEntry) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{8}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{11}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *CacheOptionsEntry) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *CacheOptionsEntry) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_CacheOptionsEntry.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_CacheOptionsEntry.Unmarshal(m, b)
|
|
|
@ -637,7 +797,7 @@ func (m *Attest) Reset() { *m = Attest{} }
|
|
|
|
func (m *Attest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *Attest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Attest) ProtoMessage() {}
|
|
|
|
func (*Attest) ProtoMessage() {}
|
|
|
|
func (*Attest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*Attest) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{9}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{12}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *Attest) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *Attest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Attest.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_Attest.Unmarshal(m, b)
|
|
|
@ -690,7 +850,7 @@ func (m *SSH) Reset() { *m = SSH{} }
|
|
|
|
func (m *SSH) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *SSH) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*SSH) ProtoMessage() {}
|
|
|
|
func (*SSH) ProtoMessage() {}
|
|
|
|
func (*SSH) Descriptor() ([]byte, []int) {
|
|
|
|
func (*SSH) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{10}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{13}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *SSH) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *SSH) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_SSH.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_SSH.Unmarshal(m, b)
|
|
|
@ -737,7 +897,7 @@ func (m *Secret) Reset() { *m = Secret{} }
|
|
|
|
func (m *Secret) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *Secret) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Secret) ProtoMessage() {}
|
|
|
|
func (*Secret) ProtoMessage() {}
|
|
|
|
func (*Secret) Descriptor() ([]byte, []int) {
|
|
|
|
func (*Secret) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{11}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{14}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *Secret) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *Secret) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Secret.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_Secret.Unmarshal(m, b)
|
|
|
@ -790,7 +950,7 @@ func (m *PrintFunc) Reset() { *m = PrintFunc{} }
|
|
|
|
func (m *PrintFunc) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *PrintFunc) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*PrintFunc) ProtoMessage() {}
|
|
|
|
func (*PrintFunc) ProtoMessage() {}
|
|
|
|
func (*PrintFunc) Descriptor() ([]byte, []int) {
|
|
|
|
func (*PrintFunc) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{12}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{15}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *PrintFunc) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *PrintFunc) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_PrintFunc.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_PrintFunc.Unmarshal(m, b)
|
|
|
@ -835,7 +995,7 @@ func (m *InspectRequest) Reset() { *m = InspectRequest{} }
|
|
|
|
func (m *InspectRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *InspectRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*InspectRequest) ProtoMessage() {}
|
|
|
|
func (*InspectRequest) ProtoMessage() {}
|
|
|
|
func (*InspectRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*InspectRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{13}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{16}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *InspectRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *InspectRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_InspectRequest.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_InspectRequest.Unmarshal(m, b)
|
|
|
@ -873,7 +1033,7 @@ func (m *InspectResponse) Reset() { *m = InspectResponse{} }
|
|
|
|
func (m *InspectResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *InspectResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*InspectResponse) ProtoMessage() {}
|
|
|
|
func (*InspectResponse) ProtoMessage() {}
|
|
|
|
func (*InspectResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*InspectResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{14}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{17}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *InspectResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *InspectResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_InspectResponse.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_InspectResponse.Unmarshal(m, b)
|
|
|
@ -911,7 +1071,7 @@ func (m *UlimitOpt) Reset() { *m = UlimitOpt{} }
|
|
|
|
func (m *UlimitOpt) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *UlimitOpt) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*UlimitOpt) ProtoMessage() {}
|
|
|
|
func (*UlimitOpt) ProtoMessage() {}
|
|
|
|
func (*UlimitOpt) Descriptor() ([]byte, []int) {
|
|
|
|
func (*UlimitOpt) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{15}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{18}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *UlimitOpt) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *UlimitOpt) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_UlimitOpt.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_UlimitOpt.Unmarshal(m, b)
|
|
|
@ -951,7 +1111,7 @@ func (m *Ulimit) Reset() { *m = Ulimit{} }
|
|
|
|
func (m *Ulimit) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *Ulimit) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Ulimit) ProtoMessage() {}
|
|
|
|
func (*Ulimit) ProtoMessage() {}
|
|
|
|
func (*Ulimit) Descriptor() ([]byte, []int) {
|
|
|
|
func (*Ulimit) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{16}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{19}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *Ulimit) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *Ulimit) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Ulimit.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_Ulimit.Unmarshal(m, b)
|
|
|
@ -1003,7 +1163,7 @@ func (m *BuildResponse) Reset() { *m = BuildResponse{} }
|
|
|
|
func (m *BuildResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *BuildResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*BuildResponse) ProtoMessage() {}
|
|
|
|
func (*BuildResponse) ProtoMessage() {}
|
|
|
|
func (*BuildResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*BuildResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{17}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{20}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *BuildResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *BuildResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_BuildResponse.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_BuildResponse.Unmarshal(m, b)
|
|
|
@ -1041,7 +1201,7 @@ func (m *DisconnectRequest) Reset() { *m = DisconnectRequest{} }
|
|
|
|
func (m *DisconnectRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *DisconnectRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*DisconnectRequest) ProtoMessage() {}
|
|
|
|
func (*DisconnectRequest) ProtoMessage() {}
|
|
|
|
func (*DisconnectRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*DisconnectRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{18}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{21}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *DisconnectRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *DisconnectRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_DisconnectRequest.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_DisconnectRequest.Unmarshal(m, b)
|
|
|
@ -1078,7 +1238,7 @@ func (m *DisconnectResponse) Reset() { *m = DisconnectResponse{} }
|
|
|
|
func (m *DisconnectResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *DisconnectResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*DisconnectResponse) ProtoMessage() {}
|
|
|
|
func (*DisconnectResponse) ProtoMessage() {}
|
|
|
|
func (*DisconnectResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*DisconnectResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{19}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{22}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *DisconnectResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *DisconnectResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_DisconnectResponse.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_DisconnectResponse.Unmarshal(m, b)
|
|
|
@ -1109,7 +1269,7 @@ func (m *ListRequest) Reset() { *m = ListRequest{} }
|
|
|
|
func (m *ListRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *ListRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ListRequest) ProtoMessage() {}
|
|
|
|
func (*ListRequest) ProtoMessage() {}
|
|
|
|
func (*ListRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*ListRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{20}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{23}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *ListRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *ListRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ListRequest.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_ListRequest.Unmarshal(m, b)
|
|
|
@ -1147,7 +1307,7 @@ func (m *ListResponse) Reset() { *m = ListResponse{} }
|
|
|
|
func (m *ListResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *ListResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ListResponse) ProtoMessage() {}
|
|
|
|
func (*ListResponse) ProtoMessage() {}
|
|
|
|
func (*ListResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*ListResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{21}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{24}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *ListResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *ListResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ListResponse.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_ListResponse.Unmarshal(m, b)
|
|
|
@ -1188,7 +1348,7 @@ func (m *InputMessage) Reset() { *m = InputMessage{} }
|
|
|
|
func (m *InputMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *InputMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*InputMessage) ProtoMessage() {}
|
|
|
|
func (*InputMessage) ProtoMessage() {}
|
|
|
|
func (*InputMessage) Descriptor() ([]byte, []int) {
|
|
|
|
func (*InputMessage) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{22}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{25}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *InputMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *InputMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_InputMessage.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_InputMessage.Unmarshal(m, b)
|
|
|
@ -1262,7 +1422,7 @@ func (m *InputInitMessage) Reset() { *m = InputInitMessage{} }
|
|
|
|
func (m *InputInitMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *InputInitMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*InputInitMessage) ProtoMessage() {}
|
|
|
|
func (*InputInitMessage) ProtoMessage() {}
|
|
|
|
func (*InputInitMessage) Descriptor() ([]byte, []int) {
|
|
|
|
func (*InputInitMessage) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{23}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{26}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *InputInitMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *InputInitMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_InputInitMessage.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_InputInitMessage.Unmarshal(m, b)
|
|
|
@ -1301,7 +1461,7 @@ func (m *DataMessage) Reset() { *m = DataMessage{} }
|
|
|
|
func (m *DataMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *DataMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*DataMessage) ProtoMessage() {}
|
|
|
|
func (*DataMessage) ProtoMessage() {}
|
|
|
|
func (*DataMessage) Descriptor() ([]byte, []int) {
|
|
|
|
func (*DataMessage) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{24}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{27}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *DataMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *DataMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_DataMessage.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_DataMessage.Unmarshal(m, b)
|
|
|
@ -1345,7 +1505,7 @@ func (m *InputResponse) Reset() { *m = InputResponse{} }
|
|
|
|
func (m *InputResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *InputResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*InputResponse) ProtoMessage() {}
|
|
|
|
func (*InputResponse) ProtoMessage() {}
|
|
|
|
func (*InputResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*InputResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{25}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{28}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *InputResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *InputResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_InputResponse.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_InputResponse.Unmarshal(m, b)
|
|
|
@ -1381,7 +1541,7 @@ func (m *Message) Reset() { *m = Message{} }
|
|
|
|
func (m *Message) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *Message) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Message) ProtoMessage() {}
|
|
|
|
func (*Message) ProtoMessage() {}
|
|
|
|
func (*Message) Descriptor() ([]byte, []int) {
|
|
|
|
func (*Message) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{26}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{29}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *Message) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *Message) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Message.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_Message.Unmarshal(m, b)
|
|
|
@ -1483,7 +1643,7 @@ func (m *InitMessage) Reset() { *m = InitMessage{} }
|
|
|
|
func (m *InitMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *InitMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*InitMessage) ProtoMessage() {}
|
|
|
|
func (*InitMessage) ProtoMessage() {}
|
|
|
|
func (*InitMessage) Descriptor() ([]byte, []int) {
|
|
|
|
func (*InitMessage) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{27}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{30}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *InitMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *InitMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_InitMessage.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_InitMessage.Unmarshal(m, b)
|
|
|
@ -1544,7 +1704,7 @@ func (m *InvokeConfig) Reset() { *m = InvokeConfig{} }
|
|
|
|
func (m *InvokeConfig) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *InvokeConfig) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*InvokeConfig) ProtoMessage() {}
|
|
|
|
func (*InvokeConfig) ProtoMessage() {}
|
|
|
|
func (*InvokeConfig) Descriptor() ([]byte, []int) {
|
|
|
|
func (*InvokeConfig) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{28}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{31}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *InvokeConfig) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *InvokeConfig) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_InvokeConfig.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_InvokeConfig.Unmarshal(m, b)
|
|
|
@ -1647,7 +1807,7 @@ func (m *FdMessage) Reset() { *m = FdMessage{} }
|
|
|
|
func (m *FdMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *FdMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*FdMessage) ProtoMessage() {}
|
|
|
|
func (*FdMessage) ProtoMessage() {}
|
|
|
|
func (*FdMessage) Descriptor() ([]byte, []int) {
|
|
|
|
func (*FdMessage) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{29}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{32}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *FdMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *FdMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_FdMessage.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_FdMessage.Unmarshal(m, b)
|
|
|
@ -1700,7 +1860,7 @@ func (m *ResizeMessage) Reset() { *m = ResizeMessage{} }
|
|
|
|
func (m *ResizeMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *ResizeMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ResizeMessage) ProtoMessage() {}
|
|
|
|
func (*ResizeMessage) ProtoMessage() {}
|
|
|
|
func (*ResizeMessage) Descriptor() ([]byte, []int) {
|
|
|
|
func (*ResizeMessage) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{30}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{33}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *ResizeMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *ResizeMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ResizeMessage.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_ResizeMessage.Unmarshal(m, b)
|
|
|
@ -1747,7 +1907,7 @@ func (m *SignalMessage) Reset() { *m = SignalMessage{} }
|
|
|
|
func (m *SignalMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *SignalMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*SignalMessage) ProtoMessage() {}
|
|
|
|
func (*SignalMessage) ProtoMessage() {}
|
|
|
|
func (*SignalMessage) Descriptor() ([]byte, []int) {
|
|
|
|
func (*SignalMessage) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{31}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{34}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *SignalMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *SignalMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_SignalMessage.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_SignalMessage.Unmarshal(m, b)
|
|
|
@ -1785,7 +1945,7 @@ func (m *StatusRequest) Reset() { *m = StatusRequest{} }
|
|
|
|
func (m *StatusRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *StatusRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*StatusRequest) ProtoMessage() {}
|
|
|
|
func (*StatusRequest) ProtoMessage() {}
|
|
|
|
func (*StatusRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*StatusRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{32}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{35}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *StatusRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *StatusRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_StatusRequest.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_StatusRequest.Unmarshal(m, b)
|
|
|
@ -1826,7 +1986,7 @@ func (m *StatusResponse) Reset() { *m = StatusResponse{} }
|
|
|
|
func (m *StatusResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *StatusResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*StatusResponse) ProtoMessage() {}
|
|
|
|
func (*StatusResponse) ProtoMessage() {}
|
|
|
|
func (*StatusResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*StatusResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{33}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{36}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *StatusResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *StatusResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_StatusResponse.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_StatusResponse.Unmarshal(m, b)
|
|
|
@ -1884,7 +2044,7 @@ func (m *InfoRequest) Reset() { *m = InfoRequest{} }
|
|
|
|
func (m *InfoRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *InfoRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*InfoRequest) ProtoMessage() {}
|
|
|
|
func (*InfoRequest) ProtoMessage() {}
|
|
|
|
func (*InfoRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*InfoRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{34}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{37}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *InfoRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *InfoRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_InfoRequest.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_InfoRequest.Unmarshal(m, b)
|
|
|
@ -1915,7 +2075,7 @@ func (m *InfoResponse) Reset() { *m = InfoResponse{} }
|
|
|
|
func (m *InfoResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *InfoResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*InfoResponse) ProtoMessage() {}
|
|
|
|
func (*InfoResponse) ProtoMessage() {}
|
|
|
|
func (*InfoResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*InfoResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{35}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{38}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *InfoResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *InfoResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_InfoResponse.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_InfoResponse.Unmarshal(m, b)
|
|
|
@ -1955,7 +2115,7 @@ func (m *BuildxVersion) Reset() { *m = BuildxVersion{} }
|
|
|
|
func (m *BuildxVersion) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (m *BuildxVersion) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*BuildxVersion) ProtoMessage() {}
|
|
|
|
func (*BuildxVersion) ProtoMessage() {}
|
|
|
|
func (*BuildxVersion) Descriptor() ([]byte, []int) {
|
|
|
|
func (*BuildxVersion) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{36}
|
|
|
|
return fileDescriptor_ed7f10298fa1d90f, []int{39}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *BuildxVersion) XXX_Unmarshal(b []byte) error {
|
|
|
|
func (m *BuildxVersion) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_BuildxVersion.Unmarshal(m, b)
|
|
|
|
return xxx_messageInfo_BuildxVersion.Unmarshal(m, b)
|
|
|
@ -2003,10 +2163,13 @@ func init() {
|
|
|
|
proto.RegisterType((*DisconnectProcessRequest)(nil), "buildx.controller.v1.DisconnectProcessRequest")
|
|
|
|
proto.RegisterType((*DisconnectProcessRequest)(nil), "buildx.controller.v1.DisconnectProcessRequest")
|
|
|
|
proto.RegisterType((*DisconnectProcessResponse)(nil), "buildx.controller.v1.DisconnectProcessResponse")
|
|
|
|
proto.RegisterType((*DisconnectProcessResponse)(nil), "buildx.controller.v1.DisconnectProcessResponse")
|
|
|
|
proto.RegisterType((*BuildRequest)(nil), "buildx.controller.v1.BuildRequest")
|
|
|
|
proto.RegisterType((*BuildRequest)(nil), "buildx.controller.v1.BuildRequest")
|
|
|
|
|
|
|
|
proto.RegisterType((*Inputs)(nil), "buildx.controller.v1.Inputs")
|
|
|
|
|
|
|
|
proto.RegisterMapType((map[string]*NamedContext)(nil), "buildx.controller.v1.Inputs.NamedContextsEntry")
|
|
|
|
proto.RegisterType((*BuildOptions)(nil), "buildx.controller.v1.BuildOptions")
|
|
|
|
proto.RegisterType((*BuildOptions)(nil), "buildx.controller.v1.BuildOptions")
|
|
|
|
proto.RegisterMapType((map[string]string)(nil), "buildx.controller.v1.BuildOptions.BuildArgsEntry")
|
|
|
|
proto.RegisterMapType((map[string]string)(nil), "buildx.controller.v1.BuildOptions.BuildArgsEntry")
|
|
|
|
proto.RegisterMapType((map[string]string)(nil), "buildx.controller.v1.BuildOptions.LabelsEntry")
|
|
|
|
proto.RegisterMapType((map[string]string)(nil), "buildx.controller.v1.BuildOptions.LabelsEntry")
|
|
|
|
proto.RegisterMapType((map[string]string)(nil), "buildx.controller.v1.BuildOptions.NamedContextsEntry")
|
|
|
|
proto.RegisterType((*NamedContext)(nil), "buildx.controller.v1.NamedContext")
|
|
|
|
|
|
|
|
proto.RegisterType((*CommonOptions)(nil), "buildx.controller.v1.CommonOptions")
|
|
|
|
proto.RegisterType((*ExportEntry)(nil), "buildx.controller.v1.ExportEntry")
|
|
|
|
proto.RegisterType((*ExportEntry)(nil), "buildx.controller.v1.ExportEntry")
|
|
|
|
proto.RegisterMapType((map[string]string)(nil), "buildx.controller.v1.ExportEntry.AttrsEntry")
|
|
|
|
proto.RegisterMapType((map[string]string)(nil), "buildx.controller.v1.ExportEntry.AttrsEntry")
|
|
|
|
proto.RegisterType((*CacheOptionsEntry)(nil), "buildx.controller.v1.CacheOptionsEntry")
|
|
|
|
proto.RegisterType((*CacheOptionsEntry)(nil), "buildx.controller.v1.CacheOptionsEntry")
|
|
|
@ -2046,125 +2209,134 @@ func init() {
|
|
|
|
func init() { proto.RegisterFile("controller.proto", fileDescriptor_ed7f10298fa1d90f) }
|
|
|
|
func init() { proto.RegisterFile("controller.proto", fileDescriptor_ed7f10298fa1d90f) }
|
|
|
|
|
|
|
|
|
|
|
|
var fileDescriptor_ed7f10298fa1d90f = []byte{
|
|
|
|
var fileDescriptor_ed7f10298fa1d90f = []byte{
|
|
|
|
// 1881 bytes of a gzipped FileDescriptorProto
|
|
|
|
// 2030 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x58, 0x5f, 0x6f, 0xdb, 0xc8,
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x58, 0x5f, 0x73, 0xdb, 0xc6,
|
|
|
|
0x11, 0x2f, 0x25, 0x59, 0x7f, 0x46, 0x96, 0xe3, 0x6c, 0x9d, 0x74, 0xc3, 0xa4, 0x17, 0x87, 0x49,
|
|
|
|
0x11, 0x2f, 0x48, 0x8a, 0x7f, 0x96, 0xa2, 0x2c, 0x5f, 0x65, 0x0f, 0xc2, 0xb8, 0x89, 0x0c, 0xdb,
|
|
|
|
0xae, 0x42, 0x53, 0x48, 0x77, 0xbe, 0xa6, 0xbe, 0x5c, 0xee, 0x80, 0xda, 0xb2, 0x05, 0xfb, 0x90,
|
|
|
|
0x29, 0x27, 0xce, 0x80, 0x89, 0x92, 0x54, 0x76, 0xec, 0x3c, 0x48, 0x94, 0x38, 0x52, 0x46, 0x96,
|
|
|
|
0xd8, 0xc6, 0xca, 0xc9, 0xa1, 0x2d, 0xd0, 0x80, 0x92, 0xd6, 0x32, 0x21, 0x8a, 0xab, 0x72, 0x57,
|
|
|
|
0x34, 0x47, 0xd9, 0x99, 0xf6, 0xa1, 0x19, 0x90, 0x3c, 0x51, 0x18, 0x82, 0x38, 0x14, 0x77, 0x94,
|
|
|
|
0xb6, 0xd5, 0xa7, 0xbe, 0xf4, 0xad, 0xe8, 0xf7, 0x28, 0xfa, 0x11, 0xfa, 0xd2, 0x7e, 0xa1, 0xa2,
|
|
|
|
0xc4, 0x3e, 0xf5, 0xa5, 0x6f, 0x9d, 0x7e, 0x89, 0x3e, 0x75, 0xfa, 0xd0, 0x0f, 0xd0, 0x99, 0xce,
|
|
|
|
0x1f, 0xa1, 0xd8, 0x3f, 0xa4, 0x48, 0x4b, 0x94, 0xed, 0xf6, 0x49, 0x3b, 0xc3, 0xdf, 0x6f, 0x76,
|
|
|
|
0xf4, 0x0b, 0x75, 0xfa, 0x11, 0x3a, 0xf7, 0x07, 0x20, 0x20, 0x12, 0x90, 0xd4, 0x3e, 0xf1, 0x6e,
|
|
|
|
0x67, 0x38, 0x3b, 0x33, 0x14, 0xac, 0xf7, 0x58, 0x20, 0x42, 0xe6, 0xfb, 0x34, 0x6c, 0x8c, 0x43,
|
|
|
|
0xf1, 0xfb, 0xed, 0xdd, 0xee, 0xed, 0xed, 0xee, 0x11, 0xd6, 0x07, 0xd4, 0xe7, 0x21, 0xf5, 0x3c,
|
|
|
|
0x26, 0x18, 0xda, 0xe8, 0x4e, 0x3c, 0xbf, 0x7f, 0xd5, 0x48, 0x3c, 0xb8, 0xf8, 0xd2, 0x7e, 0x3b,
|
|
|
|
0x12, 0xda, 0x41, 0x48, 0x39, 0x45, 0x1b, 0xfd, 0xa9, 0xeb, 0x0d, 0xaf, 0xed, 0xc4, 0x87, 0xcb,
|
|
|
|
0xf0, 0xc4, 0xf9, 0xa4, 0xdb, 0xe8, 0xb1, 0x51, 0x73, 0xc4, 0xba, 0xd3, 0xa6, 0x42, 0x0d, 0x3d,
|
|
|
|
0xaf, 0x9a, 0x6f, 0x46, 0x2e, 0xbf, 0x98, 0xf6, 0xed, 0x01, 0x9d, 0xb4, 0x27, 0xb4, 0x3f, 0x6b,
|
|
|
|
0xd1, 0x74, 0xc7, 0x5e, 0x93, 0xd3, 0xf0, 0xc2, 0xeb, 0x51, 0xde, 0x34, 0xa4, 0xe8, 0x57, 0x9b,
|
|
|
|
0x4b, 0xd4, 0xd8, 0xe5, 0x6d, 0x27, 0x70, 0xdb, 0x8c, 0x84, 0x97, 0xee, 0x80, 0xb0, 0xb6, 0x26,
|
|
|
|
0xb4, 0x5f, 0x67, 0x92, 0x39, 0x9b, 0x84, 0x3d, 0x3a, 0x66, 0xbe, 0xd7, 0x9b, 0x36, 0xc7, 0xdd,
|
|
|
|
0x45, 0xbf, 0x4a, 0x65, 0xf3, 0xdb, 0x4c, 0x32, 0xa3, 0xd3, 0x70, 0x40, 0x02, 0xea, 0xb9, 0x83,
|
|
|
|
0xa6, 0x5e, 0x69, 0x9a, 0x53, 0x87, 0x8d, 0x77, 0x1e, 0x17, 0x27, 0x21, 0xeb, 0x51, 0xce, 0x29,
|
|
|
|
0x59, 0x3b, 0xe8, 0xb7, 0xd5, 0x48, 0xd3, 0xbe, 0xc8, 0xa1, 0x79, 0x97, 0x24, 0x14, 0x04, 0x1a,
|
|
|
|
0x27, 0xf4, 0x0f, 0x13, 0xca, 0x05, 0x5a, 0x87, 0x3c, 0xa1, 0x67, 0xd8, 0xda, 0xb4, 0xea, 0x15,
|
|
|
|
0x30, 0x85, 0xb6, 0x5a, 0xb0, 0x71, 0xe4, 0x32, 0x7e, 0x1a, 0xd2, 0x01, 0x61, 0x8c, 0x30, 0x4c,
|
|
|
|
0x22, 0x97, 0xce, 0x09, 0x3c, 0xb8, 0x86, 0xe4, 0x63, 0x16, 0x70, 0x8a, 0xb6, 0x61, 0xe5, 0x30,
|
|
|
|
0x7e, 0x37, 0x25, 0x8c, 0xa3, 0x75, 0x28, 0x62, 0x72, 0x6e, 0x1a, 0x9b, 0x46, 0xab, 0x86, 0xc5,
|
|
|
|
0x38, 0x63, 0x1c, 0x5b, 0x9b, 0xf9, 0x7a, 0x75, 0xeb, 0x59, 0x63, 0x91, 0x73, 0x0d, 0xc3, 0x93,
|
|
|
|
0xd0, 0x3a, 0x85, 0x47, 0x37, 0x90, 0x2c, 0xa0, 0x3e, 0x23, 0x68, 0x1b, 0x56, 0x0e, 0xfd, 0x73,
|
|
|
|
0x48, 0xa2, 0xf1, 0x0e, 0x87, 0x6a, 0x42, 0x8b, 0x9e, 0x40, 0x25, 0x12, 0xf7, 0xcc, 0xc6, 0x33,
|
|
|
|
0xca, 0x4c, 0x63, 0xb3, 0xd8, 0xaa, 0x6f, 0x3d, 0xb5, 0x97, 0xb9, 0xc2, 0xd6, 0x3c, 0x81, 0xc4,
|
|
|
|
0x05, 0x6a, 0xc3, 0xea, 0x61, 0x70, 0xc1, 0x86, 0xb4, 0xc5, 0x82, 0x33, 0x6f, 0x80, 0x73, 0x9b,
|
|
|
|
0x0a, 0x6f, 0x31, 0xa8, 0x27, 0xa4, 0xe8, 0x09, 0xd4, 0xa2, 0xe9, 0x9e, 0x5e, 0x78, 0x2e, 0x40,
|
|
|
|
0x56, 0xbd, 0xba, 0xe5, 0x2c, 0xde, 0x2c, 0x89, 0x24, 0x29, 0x9e, 0xf3, 0x3d, 0xe0, 0x3d, 0x8f,
|
|
|
|
0x5d, 0x58, 0x3d, 0xf4, 0x2f, 0xe9, 0x98, 0x74, 0xa8, 0x7f, 0xee, 0x8e, 0xcc, 0xc2, 0xa6, 0xd1,
|
|
|
|
0xf7, 0x58, 0x10, 0xd0, 0x5e, 0xe4, 0x4c, 0xa6, 0xd3, 0xe9, 0x33, 0xe5, 0xae, 0x9d, 0xc9, 0x79,
|
|
|
|
0xaa, 0x6f, 0x59, 0xcb, 0x17, 0x4b, 0x22, 0x71, 0x8a, 0x67, 0xfd, 0x00, 0xe6, 0x9e, 0xcb, 0x06,
|
|
|
|
0x0c, 0x8f, 0x16, 0xd8, 0xd2, 0x61, 0x71, 0x7e, 0x0f, 0xab, 0xbb, 0xf2, 0x6c, 0xd9, 0xc6, 0xbf,
|
|
|
|
0xd4, 0xf7, 0xc9, 0x20, 0x32, 0x26, 0xd3, 0xe8, 0xf4, 0x9e, 0x0a, 0x37, 0xf6, 0x64, 0x7d, 0x0c,
|
|
|
|
0x85, 0xd2, 0xf1, 0x58, 0x78, 0x2c, 0xe0, 0xcb, 0xbd, 0x51, 0x66, 0x0c, 0x92, 0x44, 0x14, 0xe7,
|
|
|
|
0x1f, 0x2d, 0xd1, 0xa5, 0xdc, 0x62, 0xfd, 0x16, 0x56, 0x77, 0xc5, 0xde, 0xb2, 0x95, 0xbf, 0x85,
|
|
|
|
0x9f, 0x55, 0xb3, 0x81, 0x51, 0xa0, 0x4d, 0xa8, 0xb6, 0x58, 0x20, 0xe8, 0x95, 0x38, 0x71, 0xc5,
|
|
|
|
0xca, 0x49, 0xc0, 0x5d, 0xea, 0xb3, 0x7c, 0x6b, 0xa4, 0x1a, 0x8d, 0xc4, 0x11, 0xc5, 0xfa, 0x4b,
|
|
|
|
0xb9, 0xd9, 0x28, 0xa9, 0x42, 0x9f, 0xc3, 0xda, 0x1e, 0xeb, 0x0d, 0x69, 0x78, 0xe6, 0xf9, 0xf4,
|
|
|
|
0x11, 0xca, 0x87, 0x7e, 0x30, 0xe5, 0x0c, 0x6d, 0x42, 0xbd, 0x43, 0x7d, 0x4e, 0xae, 0xf9, 0xa9,
|
|
|
|
0xc8, 0x1d, 0x51, 0xe3, 0xd2, 0x35, 0x2d, 0xfa, 0x4e, 0x7a, 0xed, 0x05, 0xa2, 0x3d, 0x09, 0x7a,
|
|
|
|
0xc3, 0x2f, 0xf4, 0x12, 0x49, 0x11, 0x6a, 0xc1, 0x83, 0xc4, 0xf4, 0xc0, 0x61, 0x17, 0xda, 0x9a,
|
|
|
|
0x38, 0xaf, 0x8e, 0xf6, 0x34, 0xeb, 0xad, 0x1a, 0x18, 0x99, 0x31, 0xd0, 0xef, 0xa0, 0x26, 0xcd,
|
|
|
|
0x9b, 0x62, 0xf4, 0x19, 0xac, 0xed, 0xd1, 0xc1, 0x98, 0x84, 0xe7, 0xae, 0x47, 0x8e, 0x9d, 0x09,
|
|
|
|
0xf4, 0xcd, 0xd6, 0x1c, 0x17, 0x54, 0x62, 0xbc, 0xbe, 0xd9, 0xbb, 0x46, 0x8a, 0xb7, 0x1f, 0x88,
|
|
|
|
0x31, 0x8b, 0x12, 0x78, 0x43, 0x8a, 0x3e, 0x87, 0xf5, 0xb9, 0xe4, 0xd0, 0xf7, 0x5c, 0x9f, 0x98,
|
|
|
|
0x70, 0x4a, 0xd2, 0xb6, 0xd0, 0x06, 0xac, 0xec, 0xf8, 0x3e, 0xbb, 0xc4, 0x2b, 0x9b, 0xf9, 0x7a,
|
|
|
|
0x25, 0x89, 0x5c, 0x90, 0xa3, 0xb7, 0xf0, 0x50, 0x2f, 0xb3, 0x47, 0xce, 0x5d, 0xdf, 0x15, 0x06,
|
|
|
|
0x85, 0x68, 0x01, 0xfd, 0x0a, 0x4a, 0x3b, 0x42, 0x50, 0x2e, 0x38, 0x2e, 0xaa, 0xcd, 0x9e, 0x2c,
|
|
|
|
0x98, 0x2b, 0xd2, 0xe4, 0x35, 0x3b, 0xe8, 0xdb, 0x73, 0x29, 0x5e, 0x04, 0xa2, 0xf7, 0xd0, 0x10,
|
|
|
|
0xde, 0x4c, 0x83, 0x48, 0x04, 0x46, 0xc7, 0x50, 0x51, 0xfb, 0xef, 0x84, 0x03, 0x8e, 0x4b, 0x8a,
|
|
|
|
0x2b, 0x0e, 0xf5, 0x17, 0x66, 0x96, 0x65, 0x9c, 0xb5, 0xb3, 0x8e, 0x5e, 0xb8, 0xc4, 0x4e, 0x31,
|
|
|
|
0xf9, 0xe5, 0x2d, 0x8e, 0x19, 0x73, 0xf4, 0x11, 0x67, 0x36, 0xd0, 0x3e, 0x54, 0x5a, 0x6e, 0xef,
|
|
|
|
0xf6, 0x7d, 0x1e, 0xce, 0x70, 0x5a, 0x4b, 0x73, 0x08, 0x68, 0x11, 0x24, 0x4e, 0x69, 0x4c, 0x66,
|
|
|
|
0x9c, 0xb6, 0x43, 0x36, 0xc2, 0x65, 0x65, 0xf0, 0x67, 0x8b, 0x0d, 0x2a, 0x98, 0x31, 0x68, 0xcc,
|
|
|
|
0xd1, 0x29, 0x8d, 0xc9, 0x0c, 0xbd, 0x82, 0x95, 0x4b, 0xc7, 0x9b, 0x92, 0xfc, 0x33, 0x4a, 0xaa,
|
|
|
|
0xc4, 0x4c, 0xb4, 0x03, 0x25, 0x25, 0x9c, 0x32, 0x5c, 0xb9, 0x9b, 0x91, 0x88, 0x87, 0x1c, 0x58,
|
|
|
|
0xc2, 0x8a, 0xf0, 0x5d, 0xe1, 0x95, 0x61, 0xfd, 0xb3, 0xa6, 0xc3, 0x40, 0x1f, 0x1b, 0xfa, 0x26,
|
|
|
|
0x6d, 0x0d, 0x42, 0x36, 0x19, 0x9f, 0xb8, 0x21, 0x0d, 0x04, 0x06, 0xf5, 0xaa, 0x53, 0x3a, 0xf4,
|
|
|
|
0x3a, 0x35, 0xb9, 0x46, 0x7d, 0xeb, 0x49, 0x9e, 0x19, 0x38, 0x3a, 0xe1, 0xef, 0x45, 0x1c, 0xba,
|
|
|
|
0x16, 0x4a, 0xfb, 0x57, 0x63, 0x16, 0x0a, 0x8e, 0xab, 0xcb, 0x2e, 0xaf, 0x06, 0x99, 0x0d, 0x0c,
|
|
|
|
0x3e, 0xef, 0x4e, 0xfd, 0x81, 0xde, 0xc8, 0xa7, 0x59, 0xf7, 0x4c, 0xc3, 0xf0, 0x9c, 0x81, 0xb6,
|
|
|
|
0x03, 0x7d, 0x06, 0xb0, 0x7f, 0x25, 0x42, 0xf7, 0x80, 0xc9, 0xb0, 0xaf, 0xaa, 0xd7, 0x91, 0xd0,
|
|
|
|
0xa1, 0x74, 0x12, 0x70, 0x26, 0x8f, 0xb2, 0xbe, 0xf5, 0x6c, 0x39, 0xb3, 0x43, 0x27, 0x13, 0xea,
|
|
|
|
0xa0, 0x36, 0x14, 0xdf, 0xb9, 0x5d, 0xea, 0x73, 0x5c, 0x53, 0xb6, 0x1b, 0xb7, 0x08, 0xac, 0x26,
|
|
|
|
0x47, 0x71, 0x26, 0x09, 0x68, 0x03, 0x56, 0x76, 0x3c, 0x8f, 0x5e, 0x99, 0xa5, 0xcd, 0x62, 0xab,
|
|
|
|
0xe8, 0x8d, 0x0c, 0x5b, 0xe6, 0xf5, 0x11, 0x15, 0x97, 0x2c, 0x1c, 0xbe, 0x67, 0x7d, 0x8a, 0xd7,
|
|
|
|
0x86, 0xd5, 0x04, 0xfd, 0x0a, 0x2a, 0x3b, 0x9c, 0x13, 0xc6, 0x99, 0xb9, 0x22, 0xcf, 0x22, 0xc3,
|
|
|
|
0x74, 0x5e, 0x27, 0x54, 0xe8, 0x05, 0xd4, 0x8e, 0x98, 0x0e, 0x9e, 0xe7, 0x0b, 0x1a, 0xe2, 0x7b,
|
|
|
|
0x08, 0x05, 0xc2, 0x11, 0x18, 0x9d, 0x40, 0x4d, 0xfa, 0x62, 0x27, 0x1c, 0x45, 0xa7, 0xf8, 0xd5,
|
|
|
|
0xea, 0x30, 0x69, 0xa5, 0xba, 0xcb, 0xbe, 0x2b, 0xce, 0x58, 0x38, 0xe2, 0x78, 0x5d, 0x21, 0x66,
|
|
|
|
0xed, 0x21, 0x6f, 0xc7, 0x1c, 0x75, 0x8e, 0x73, 0x1d, 0x68, 0x1f, 0x6a, 0x1d, 0x67, 0x70, 0x41,
|
|
|
|
0x0a, 0x99, 0x41, 0x1d, 0xda, 0x0b, 0xa9, 0xe0, 0xf8, 0xfe, 0xb2, 0x0c, 0xd2, 0x20, 0x12, 0x81,
|
|
|
|
0xba, 0x21, 0x9d, 0x98, 0x15, 0xa9, 0xf0, 0x97, 0x19, 0xc6, 0x09, 0x98, 0x56, 0xa8, 0xd5, 0xc4,
|
|
|
|
0x11, 0x86, 0x52, 0xe7, 0x7c, 0xd4, 0xf1, 0xfe, 0x48, 0x31, 0xda, 0xb4, 0xea, 0x79, 0x12, 0x89,
|
|
|
|
0x4c, 0xb4, 0x03, 0x15, 0x39, 0x39, 0xa3, 0x66, 0xf5, 0x7e, 0x4a, 0x22, 0x1e, 0xb2, 0x60, 0xb5,
|
|
|
|
0xe8, 0x15, 0xe4, 0x3b, 0x9d, 0x03, 0xfc, 0x63, 0x65, 0xed, 0x51, 0x86, 0xb5, 0xce, 0x01, 0x91,
|
|
|
|
0x33, 0x0a, 0xe9, 0x34, 0x38, 0x75, 0x42, 0xe2, 0x73, 0xb3, 0x26, 0x03, 0x28, 0x25, 0x43, 0x6f,
|
|
|
|
0x28, 0x84, 0xa0, 0x70, 0xea, 0x0e, 0x38, 0xde, 0x50, 0xe7, 0x52, 0x6b, 0xf4, 0x10, 0x8a, 0xa7,
|
|
|
|
0xa0, 0xb2, 0x7f, 0x1d, 0xd0, 0x90, 0x33, 0x13, 0xf2, 0x52, 0xa5, 0x02, 0xe9, 0x05, 0x34, 0x03,
|
|
|
|
0x6e, 0x38, 0xa0, 0x02, 0x3f, 0x50, 0x3e, 0x1b, 0x09, 0xbd, 0x81, 0xd2, 0x07, 0xdf, 0x1b, 0x79,
|
|
|
|
0x7d, 0x02, 0xb0, 0x7f, 0xcd, 0x43, 0xe7, 0x80, 0x0a, 0xb7, 0xd7, 0xe5, 0x71, 0x24, 0x24, 0xa8,
|
|
|
|
0x82, 0xe3, 0x87, 0xcb, 0x2e, 0xa7, 0x06, 0x1d, 0x8f, 0x05, 0x89, 0xf0, 0xf2, 0xb4, 0x2a, 0xde,
|
|
|
|
0x0b, 0xe5, 0x23, 0xa7, 0x4f, 0x3c, 0x66, 0xae, 0x4a, 0xdd, 0xf6, 0x1d, 0x1c, 0xab, 0x08, 0x6a,
|
|
|
|
0x34, 0xc4, 0x3f, 0x51, 0x36, 0x23, 0x51, 0x3e, 0x31, 0xe1, 0xc2, 0x78, 0xd3, 0xaa, 0x97, 0x49,
|
|
|
|
0x21, 0xcd, 0x16, 0xb9, 0xe4, 0x98, 0xf0, 0x2b, 0x1a, 0x8e, 0xdf, 0xd1, 0x21, 0x31, 0x1b, 0x2a,
|
|
|
|
0x24, 0xca, 0xa3, 0x9d, 0x4c, 0x7c, 0x1f, 0x3f, 0x52, 0x6a, 0xb5, 0xd6, 0xef, 0x5e, 0xa6, 0xc1,
|
|
|
|
0x97, 0x24, 0x44, 0xe8, 0x39, 0x34, 0x8e, 0xa9, 0x72, 0x9e, 0xeb, 0x71, 0x12, 0x9a, 0x6b, 0x72,
|
|
|
|
0xc9, 0x84, 0x9f, 0x63, 0x5b, 0x3d, 0x49, 0x68, 0x66, 0xcf, 0xdf, 0x31, 0xb7, 0x8f, 0x1f, 0x27,
|
|
|
|
0x33, 0x69, 0xa1, 0xcc, 0x9c, 0x9e, 0xc3, 0xcf, 0x69, 0x38, 0x61, 0xe6, 0x03, 0x89, 0x98, 0x0b,
|
|
|
|
0x9f, 0x4b, 0x0d, 0x3a, 0x84, 0xd5, 0x8e, 0x6a, 0x4b, 0x27, 0xaa, 0x19, 0xe1, 0x27, 0xca, 0x8f,
|
|
|
|
0x44, 0x04, 0xf5, 0xc8, 0x20, 0x24, 0x9c, 0x99, 0xeb, 0x79, 0x11, 0xa4, 0x40, 0x38, 0x02, 0x23,
|
|
|
|
0x97, 0x0d, 0xd9, 0xb9, 0x1a, 0x51, 0xe7, 0x92, 0x3e, 0x24, 0x9b, 0x57, 0x43, 0x83, 0x49, 0x8a,
|
|
|
|
0x13, 0x2a, 0xbd, 0x8b, 0x49, 0xcf, 0xfd, 0x3d, 0x31, 0x1f, 0x6e, 0x1a, 0xad, 0x22, 0x8e, 0xa6,
|
|
|
|
0x6a, 0xff, 0x1a, 0xd0, 0x7c, 0xd5, 0x90, 0xd5, 0x76, 0x48, 0xa7, 0x51, 0xb5, 0x1d, 0xd2, 0xa9,
|
|
|
|
0xe8, 0x25, 0x14, 0x7b, 0xbd, 0x03, 0x13, 0x49, 0x6d, 0x1f, 0x65, 0x68, 0xeb, 0x1d, 0x60, 0x81,
|
|
|
|
0x2c, 0x1c, 0x17, 0xae, 0x3f, 0x89, 0x6a, 0x9e, 0x16, 0xbe, 0xc9, 0x7d, 0x6d, 0xd9, 0xdf, 0xc2,
|
|
|
|
0x42, 0x08, 0x4a, 0x67, 0xce, 0x88, 0x99, 0x3f, 0x97, 0xfb, 0x92, 0x63, 0xf4, 0x18, 0xca, 0x67,
|
|
|
|
0x5a, 0xfa, 0x42, 0xdf, 0x89, 0xfd, 0x06, 0xaa, 0x89, 0xac, 0xbd, 0x0b, 0xd5, 0xf9, 0x97, 0x05,
|
|
|
|
0x4e, 0x38, 0x22, 0xdc, 0xdc, 0x90, 0x36, 0xeb, 0x19, 0x7a, 0x0d, 0x95, 0xf7, 0x9e, 0x3b, 0x71,
|
|
|
|
0xd5, 0xc4, 0xd5, 0x52, 0x49, 0x30, 0x1d, 0x53, 0x43, 0x56, 0x6b, 0xb4, 0x0b, 0x2b, 0x3b, 0x42,
|
|
|
|
0x39, 0x33, 0x1f, 0xe5, 0x5d, 0x3c, 0x05, 0x3a, 0x09, 0x38, 0x8e, 0xf0, 0xe8, 0x10, 0x56, 0x7b,
|
|
|
|
0x84, 0xb2, 0x45, 0xc8, 0x3c, 0xfa, 0xc5, 0x8d, 0x17, 0xb4, 0xa1, 0xe0, 0xfa, 0x0a, 0x69, 0xaa,
|
|
|
|
0xb2, 0x54, 0x9f, 0xca, 0x02, 0x6d, 0x3e, 0x96, 0xfc, 0x17, 0xb6, 0x28, 0xcb, 0x76, 0x54, 0x96,
|
|
|
|
0xbc, 0x41, 0x7b, 0x94, 0x0b, 0x2f, 0x70, 0xe5, 0x2d, 0x53, 0x15, 0xbd, 0x42, 0x92, 0x2a, 0xfb,
|
|
|
|
0x05, 0x37, 0x59, 0xd0, 0x6d, 0x05, 0xc6, 0x29, 0x6a, 0xf3, 0x2d, 0xac, 0xa5, 0xaf, 0xc1, 0x92,
|
|
|
|
0x6b, 0x80, 0x19, 0xed, 0x4e, 0x3e, 0xfc, 0xdd, 0x82, 0xfb, 0x73, 0x55, 0x68, 0xa1, 0x27, 0x07,
|
|
|
|
0x4c, 0xb5, 0x91, 0xcc, 0x54, 0xb5, 0x44, 0x16, 0x6a, 0xbe, 0x86, 0x7a, 0xe2, 0xac, 0xef, 0x43,
|
|
|
|
0x69, 0x4f, 0xb6, 0x6e, 0x59, 0xd1, 0xe6, 0xfd, 0xf9, 0x3f, 0x4e, 0x7b, 0x04, 0x45, 0x5d, 0xfa,
|
|
|
|
0xb5, 0x30, 0xac, 0x26, 0x73, 0x9b, 0x70, 0x5d, 0xa2, 0xc8, 0xc8, 0x31, 0xb2, 0x01, 0x12, 0x89,
|
|
|
|
0x17, 0x9e, 0xd0, 0x86, 0xf2, 0x9e, 0xc7, 0xdd, 0xae, 0x4f, 0xfb, 0x8a, 0x5a, 0x26, 0xb1, 0xac,
|
|
|
|
0xbd, 0xb0, 0x34, 0xb1, 0x27, 0x10, 0xd6, 0xdf, 0x0d, 0x68, 0xa4, 0xb2, 0x8d, 0x38, 0x57, 0x69,
|
|
|
|
0xfa, 0x8e, 0x3a, 0xbd, 0x8e, 0x9e, 0x16, 0x1c, 0x7d, 0xc7, 0xd1, 0x1a, 0xe4, 0xe2, 0x99, 0x25,
|
|
|
|
0x1e, 0x09, 0xb5, 0xe2, 0x68, 0x2a, 0xbe, 0xe8, 0xc0, 0x92, 0x8a, 0xab, 0x38, 0x9a, 0xca, 0x9d,
|
|
|
|
0x77, 0xb8, 0x27, 0xc1, 0xb2, 0xe1, 0x6a, 0x57, 0x2b, 0x44, 0x0b, 0x4e, 0x1b, 0x8a, 0xba, 0x6a,
|
|
|
|
0x4c, 0x3d, 0x4f, 0x26, 0xb5, 0x2a, 0x96, 0x63, 0x75, 0x4b, 0xc4, 0x85, 0x39, 0x9d, 0xb2, 0x0b,
|
|
|
|
0xcc, 0xe1, 0x6d, 0x28, 0xb7, 0x3d, 0x9f, 0xaa, 0xbe, 0xad, 0xcf, 0x1c, 0xcb, 0xd2, 0xbd, 0xfd,
|
|
|
|
0x59, 0x8f, 0xaa, 0x38, 0x21, 0x99, 0x7f, 0x3f, 0xa2, 0xce, 0x50, 0x96, 0xa0, 0xf8, 0xbb, 0x90,
|
|
|
|
0xe0, 0xc2, 0x6c, 0x2b, 0x97, 0xce, 0x76, 0xa2, 0x3d, 0x4b, 0x3f, 0x54, 0x27, 0x37, 0x7e, 0xa8,
|
|
|
|
0x88, 0x20, 0x38, 0x72, 0xfd, 0x31, 0x19, 0x9a, 0x65, 0xf9, 0x4d, 0xcf, 0xac, 0x7f, 0x19, 0x50,
|
|
|
|
0xfe, 0xfd, 0x10, 0x8a, 0x6d, 0x16, 0x8e, 0x5c, 0x61, 0x8c, 0x19, 0xc9, 0x71, 0x60, 0xed, 0x30,
|
|
|
|
0x4f, 0x5c, 0x4b, 0x19, 0x40, 0xb3, 0x80, 0x44, 0x5e, 0x10, 0x63, 0xb4, 0x0b, 0x2b, 0x3b, 0x9c,
|
|
|
|
0xe0, 0x63, 0xda, 0x13, 0xd9, 0x63, 0xde, 0x31, 0xdc, 0x8b, 0x31, 0x66, 0xc0, 0x4b, 0xcc, 0x29,
|
|
|
|
0x87, 0xa2, 0x98, 0x8b, 0x18, 0xfc, 0xe2, 0xd6, 0xcb, 0x6d, 0x4b, 0xb8, 0xba, 0x7e, 0x8a, 0x2a,
|
|
|
|
0xd6, 0xdd, 0xe7, 0x94, 0xbf, 0x59, 0x50, 0x89, 0x2b, 0x11, 0x6a, 0x41, 0x51, 0xbd, 0x8d, 0x68,
|
|
|
|
0x6e, 0xdf, 0x1e, 0x61, 0xdc, 0xf5, 0x1d, 0xe9, 0x4a, 0x55, 0x7a, 0x93, 0xa2, 0xe6, 0x2b, 0x80,
|
|
|
|
0x5a, 0x7c, 0x75, 0x43, 0xe9, 0x6a, 0x7c, 0x54, 0x68, 0xd3, 0x11, 0x34, 0xd5, 0xfe, 0x01, 0xaa,
|
|
|
|
0x39, 0xed, 0x5e, 0x27, 0xf9, 0x37, 0x03, 0x1e, 0x2e, 0x64, 0xb0, 0xa5, 0x96, 0x1c, 0xa4, 0x2d,
|
|
|
|
0x09, 0xf5, 0x82, 0x04, 0xd8, 0x4a, 0x26, 0x40, 0x66, 0x29, 0xd7, 0x9b, 0x24, 0xd3, 0x63, 0x0f,
|
|
|
|
0xd9, 0xba, 0x63, 0x36, 0x5c, 0xb4, 0xe7, 0xff, 0xd8, 0xed, 0x31, 0x94, 0x55, 0xd9, 0x58, 0xba,
|
|
|
|
0x8a, 0x5a, 0xb9, 0x30, 0xac, 0x08, 0x0a, 0x07, 0x6e, 0xa8, 0x53, 0x23, 0x4f, 0xd4, 0x5a, 0xea,
|
|
|
|
0xc3, 0x26, 0x54, 0xf7, 0x5c, 0xe6, 0xf4, 0x3d, 0x32, 0xd4, 0x61, 0x11, 0xcf, 0x65, 0xcd, 0x92,
|
|
|
|
0x3a, 0xec, 0x4c, 0xa8, 0xd7, 0x93, 0x27, 0x6a, 0xed, 0xfc, 0xc3, 0x82, 0x9a, 0x19, 0xfd, 0x4c,
|
|
|
|
0xbb, 0x57, 0xde, 0x53, 0x13, 0x4b, 0xe5, 0x07, 0xb4, 0x06, 0x85, 0xb8, 0xbb, 0x2c, 0x1c, 0xee,
|
|
|
|
0x04, 0x29, 0xac, 0xeb, 0x1b, 0x4a, 0xc3, 0x48, 0x67, 0xfc, 0x7f, 0xb3, 0x24, 0x94, 0x11, 0xb4,
|
|
|
|
0x09, 0xb0, 0x08, 0x61, 0x65, 0x6a, 0x0d, 0xab, 0x89, 0xd5, 0x85, 0xb2, 0xca, 0x38, 0x0b, 0xf8,
|
|
|
|
0x71, 0x9d, 0xab, 0xa3, 0x31, 0x67, 0xd2, 0x6e, 0xc1, 0x83, 0x85, 0xd0, 0x3b, 0x5d, 0x91, 0x97,
|
|
|
|
0x26, 0x54, 0xbb, 0xae, 0x47, 0xe4, 0x15, 0x50, 0x7b, 0x8e, 0xe7, 0xc2, 0xbc, 0x7d, 0xff, 0x52,
|
|
|
|
0x70, 0x7f, 0x36, 0xd4, 0x66, 0xe7, 0xc9, 0x06, 0xa0, 0x24, 0xcc, 0x0c, 0xbd, 0x4f, 0xa1, 0x2a,
|
|
|
|
0x2f, 0x2b, 0x86, 0xd6, 0x76, 0xa2, 0x6c, 0x0b, 0x3b, 0x64, 0x3f, 0xa5, 0xed, 0x90, 0x5d, 0xd4,
|
|
|
|
0x3f, 0x12, 0xb2, 0x69, 0x0e, 0xac, 0x6a, 0x80, 0x89, 0x0c, 0x82, 0xc2, 0x90, 0x4e, 0x75, 0x36,
|
|
|
|
0x63, 0x28, 0x77, 0x69, 0x38, 0x71, 0xb8, 0x56, 0xa6, 0x67, 0x96, 0x05, 0x6b, 0x87, 0x3e, 0x0b,
|
|
|
|
0x54, 0x88, 0x5a, 0x3b, 0x7f, 0xb5, 0xe4, 0xac, 0x3f, 0x9e, 0x88, 0xf7, 0x94, 0x73, 0x77, 0x20,
|
|
|
|
0xc8, 0x80, 0x67, 0x37, 0xe4, 0x27, 0xf0, 0x20, 0xc6, 0xe8, 0x56, 0x3c, 0xd1, 0x51, 0x1a, 0xf7,
|
|
|
|
0x13, 0xb0, 0x70, 0x18, 0x78, 0xc2, 0x64, 0xdf, 0xe7, 0x59, 0x33, 0xff, 0x78, 0x22, 0x24, 0xcc,
|
|
|
|
0xef, 0x28, 0xff, 0x6a, 0x40, 0x2d, 0xce, 0x62, 0xa8, 0x03, 0x65, 0x79, 0x1a, 0x51, 0x5f, 0xff,
|
|
|
|
0xb0, 0x0e, 0x7e, 0x44, 0x14, 0x0b, 0x6d, 0x43, 0x61, 0xcf, 0x15, 0xae, 0xc9, 0x85, 0x8c, 0x09,
|
|
|
|
0xf2, 0x96, 0xb4, 0x67, 0x7f, 0x90, 0x68, 0x5d, 0x4d, 0x14, 0xb5, 0xf9, 0x23, 0xd4, 0x13, 0xe2,
|
|
|
|
0x47, 0x22, 0x12, 0x44, 0x29, 0xee, 0x96, 0xe4, 0x87, 0xcd, 0x78, 0x22, 0x9c, 0x17, 0xb0, 0x7e,
|
|
|
|
0x25, 0x01, 0xb0, 0x95, 0xee, 0xae, 0x9e, 0xe4, 0x2d, 0x92, 0x0c, 0x8f, 0x3d, 0x28, 0x2b, 0xe1,
|
|
|
|
0xdd, 0xfa, 0x02, 0xd7, 0xbe, 0x82, 0x6a, 0xc2, 0x8a, 0xba, 0xb7, 0xc7, 0x6d, 0x05, 0x28, 0x13,
|
|
|
|
0x52, 0xb7, 0x22, 0x28, 0x1d, 0x38, 0xa1, 0x0a, 0x8d, 0x22, 0x96, 0x63, 0x21, 0xeb, 0xd1, 0x73,
|
|
|
|
0xb9, 0x94, 0xbe, 0xc6, 0x07, 0x59, 0xd5, 0x7b, 0x38, 0xf7, 0xa0, 0xa6, 0x4c, 0xc7, 0x11, 0xfc,
|
|
|
|
0x2e, 0x8f, 0xa7, 0x88, 0xe5, 0xd8, 0xfa, 0x87, 0x01, 0x0d, 0xdd, 0xa4, 0x6b, 0x0f, 0x12, 0x58,
|
|
|
|
0x53, 0x0e, 0x4a, 0x91, 0x89, 0xed, 0x94, 0xdf, 0xcf, 0xb2, 0xfc, 0x9e, 0x77, 0xf9, 0x35, 0x14,
|
|
|
|
0x57, 0x37, 0x94, 0x84, 0x91, 0x4c, 0xdb, 0xff, 0x3a, 0xc7, 0x95, 0x11, 0xd4, 0xbe, 0xc9, 0x55,
|
|
|
|
0x64, 0xfd, 0x30, 0x2e, 0x67, 0x8c, 0x07, 0xed, 0x7e, 0x82, 0x26, 0xe1, 0xe8, 0x3b, 0x28, 0x12,
|
|
|
|
0xde, 0x58, 0x50, 0xd9, 0xec, 0xc0, 0xa3, 0xa5, 0xd0, 0x7b, 0x5d, 0x91, 0x17, 0xf0, 0x70, 0xfe,
|
|
|
|
0xca, 0xe5, 0x28, 0xa3, 0x87, 0xfe, 0xe7, 0x8b, 0x89, 0x1a, 0x33, 0x23, 0x1b, 0x92, 0xa4, 0x77,
|
|
|
|
0xfc, 0xc8, 0x8e, 0x93, 0x0d, 0x40, 0x49, 0x98, 0x7e, 0x9e, 0x7c, 0x0a, 0x75, 0xf1, 0x9c, 0xcb,
|
|
|
|
0xbc, 0x41, 0xe0, 0xfa, 0xb8, 0xb0, 0x8c, 0xae, 0x31, 0x09, 0xba, 0x56, 0xcc, 0xc2, 0xfd, 0x67,
|
|
|
|
0xa6, 0x59, 0xb0, 0xaa, 0x00, 0xda, 0x33, 0x08, 0x4a, 0x63, 0x32, 0x53, 0xd1, 0x50, 0xc3, 0x72,
|
|
|
|
0x0b, 0xaa, 0x4b, 0x43, 0xbd, 0xfc, 0xb3, 0x6c, 0xee, 0x53, 0x31, 0xff, 0x3f, 0x7e, 0x2a, 0xfe,
|
|
|
|
0x6c, 0xfd, 0xd9, 0x10, 0xaf, 0xb2, 0x60, 0xca, 0xdf, 0x11, 0xc6, 0x9c, 0x91, 0x08, 0xc0, 0xd2,
|
|
|
|
0xdb, 0x4a, 0x1b, 0x52, 0x53, 0x8d, 0xbc, 0x4f, 0x63, 0xe6, 0x05, 0xc2, 0xa4, 0x6c, 0x42, 0x23,
|
|
|
|
0xa1, 0xef, 0x72, 0x1d, 0x7d, 0x9f, 0xe5, 0xf4, 0xb6, 0x02, 0xa6, 0x59, 0x07, 0x3f, 0xc3, 0x92,
|
|
|
|
0x0f, 0xda, 0x1a, 0xf5, 0x4d, 0xd1, 0x97, 0xcb, 0x59, 0xf1, 0xce, 0x9b, 0xe2, 0x2d, 0x93, 0xe0,
|
|
|
|
0x25, 0xda, 0xd4, 0x3d, 0x87, 0x3b, 0x3a, 0x16, 0x32, 0xba, 0x23, 0x81, 0x48, 0x10, 0xc5, 0x74,
|
|
|
|
0x03, 0xa7, 0xa1, 0x0a, 0x51, 0x85, 0xa8, 0xb5, 0xac, 0xd7, 0x47, 0x4c, 0x69, 0x57, 0x54, 0xb6,
|
|
|
|
0xb7, 0x22, 0x9e, 0xa0, 0xc1, 0x94, 0x5b, 0xcf, 0x61, 0xfd, 0xa6, 0xf6, 0x25, 0xa6, 0x7d, 0x0d,
|
|
|
|
0x18, 0x49, 0xd9, 0xbb, 0xec, 0xe3, 0xa2, 0x76, 0xbc, 0x75, 0xa9, 0xba, 0xd0, 0x11, 0x93, 0xba,
|
|
|
|
0xf5, 0x84, 0x16, 0x79, 0x6f, 0x4f, 0xba, 0x12, 0x50, 0xc5, 0x62, 0x28, 0x6c, 0x8d, 0x37, 0xb2,
|
|
|
|
0x92, 0x02, 0x6a, 0x41, 0xe2, 0x4e, 0xc5, 0x14, 0x97, 0x75, 0xaa, 0x9d, 0x8a, 0xa9, 0x6c, 0x28,
|
|
|
|
0xaa, 0xd6, 0xb0, 0x1e, 0x40, 0x43, 0xaa, 0x8e, 0x3d, 0xf8, 0x87, 0x02, 0x54, 0x22, 0x15, 0xdb,
|
|
|
|
0x84, 0xf9, 0x7e, 0xd7, 0xed, 0x0d, 0x71, 0x45, 0x77, 0xb2, 0x48, 0x96, 0x93, 0x9e, 0x8c, 0xae,
|
|
|
|
0x29, 0xbb, 0x9f, 0x66, 0xd9, 0xbd, 0x68, 0xf2, 0xb7, 0x50, 0x12, 0xf9, 0x23, 0xbf, 0xa7, 0xef,
|
|
|
|
0xe7, 0xfa, 0xea, 0x9b, 0xa0, 0x4c, 0x22, 0xd1, 0xd9, 0x81, 0x4a, 0x9c, 0x14, 0xb2, 0x47, 0xb5,
|
|
|
|
0x0e, 0x13, 0x34, 0x01, 0x47, 0xdf, 0x43, 0x19, 0x13, 0x26, 0xda, 0xa0, 0xdc, 0x96, 0x5e, 0x61,
|
|
|
|
0xfb, 0x2a, 0xe8, 0x35, 0x92, 0x6b, 0xf7, 0xa3, 0x7c, 0xce, 0xcd, 0xe7, 0x73, 0x3e, 0x91, 0xcf,
|
|
|
|
0xe6, 0x64, 0x4d, 0x12, 0xf4, 0x9e, 0x3b, 0xf2, 0x1d, 0x4f, 0x96, 0xc8, 0x4c, 0xba, 0xc2, 0x24,
|
|
|
|
0xdb, 0x50, 0x4b, 0xa5, 0x87, 0x04, 0x11, 0x76, 0xc9, 0x8d, 0x21, 0xb5, 0x96, 0xba, 0x16, 0xf3,
|
|
|
|
0xe8, 0x4a, 0x30, 0x77, 0xf7, 0x1f, 0x0d, 0xa8, 0xe7, 0xba, 0x3a, 0xff, 0x01, 0xbd, 0xf0, 0xa8,
|
|
|
|
0xf5, 0x57, 0x6f, 0x8d, 0xa8, 0xb5, 0xf3, 0x1c, 0x6a, 0xa9, 0xc4, 0x58, 0x54, 0x81, 0x9d, 0x67,
|
|
|
|
0x2f, 0xfe, 0x8f, 0x8f, 0xfa, 0x7f, 0x1b, 0x69, 0x45, 0xb2, 0xce, 0x8b, 0xfb, 0x14, 0x50, 0xd7,
|
|
|
|
0x50, 0xeb, 0x08, 0x57, 0x4c, 0x96, 0xfc, 0x4d, 0xf1, 0x1f, 0x0b, 0xd6, 0x22, 0x8c, 0xa9, 0x31,
|
|
|
|
0xe7, 0x3a, 0x64, 0x13, 0x12, 0xb1, 0xd1, 0xce, 0x64, 0xa8, 0x93, 0xbe, 0x18, 0xce, 0x93, 0x77,
|
|
|
|
0xbf, 0x84, 0xf2, 0x05, 0x0d, 0x05, 0xbd, 0x8a, 0xbb, 0x0e, 0x9e, 0x1f, 0x34, 0x3f, 0x2a, 0x04,
|
|
|
|
0x51, 0x27, 0x6f, 0x11, 0x04, 0xef, 0x19, 0x09, 0xf5, 0xab, 0x56, 0x8e, 0x45, 0xbe, 0x3e, 0xa6,
|
|
|
|
0x89, 0x91, 0xe8, 0x1b, 0x28, 0x73, 0x65, 0x87, 0x46, 0x13, 0xcb, 0x67, 0x59, 0x2c, 0xb3, 0x5f,
|
|
|
|
0x52, 0xaa, 0x7a, 0x07, 0x3d, 0x93, 0xfa, 0xae, 0x54, 0xd3, 0x20, 0xf4, 0x5d, 0xc9, 0x2a, 0x74,
|
|
|
|
0x8c, 0x47, 0x4d, 0x28, 0xf8, 0x6c, 0xc0, 0xd5, 0x7b, 0xaf, 0x6e, 0x3d, 0xce, 0xe2, 0xbd, 0x63,
|
|
|
|
0x4c, 0x85, 0xac, 0x22, 0x81, 0x6a, 0x22, 0x70, 0x67, 0x7c, 0x66, 0x56, 0x55, 0xa8, 0x9d, 0xf1,
|
|
|
|
0x03, 0xa2, 0x80, 0xe8, 0x2d, 0x94, 0x2f, 0xdd, 0x30, 0xf0, 0x82, 0x41, 0xf4, 0xb5, 0xfc, 0x34,
|
|
|
|
0x99, 0x28, 0x28, 0x98, 0x7a, 0x5e, 0xdf, 0x19, 0x8c, 0xe5, 0xa3, 0xa1, 0x8a, 0xe3, 0xb9, 0xe8,
|
|
|
|
0x8b, 0xf4, 0x83, 0xc6, 0x91, 0x98, 0xe0, 0xd4, 0xe4, 0x75, 0x39, 0x63, 0x26, 0x26, 0xce, 0x6f,
|
|
|
|
0x7d, 0x84, 0x77, 0x5d, 0xc7, 0x33, 0x41, 0xf5, 0x3e, 0x7a, 0x6a, 0xed, 0x40, 0x2d, 0x0e, 0x0a,
|
|
|
|
0x64, 0xd6, 0x4a, 0xd1, 0xb8, 0x7f, 0x08, 0x35, 0x9d, 0xf9, 0x1f, 0x69, 0xc8, 0xe5, 0xfc, 0x67,
|
|
|
|
0x51, 0xa3, 0xba, 0x43, 0xe9, 0xf4, 0x06, 0x2e, 0x74, 0x87, 0x51, 0x3c, 0x17, 0x16, 0xe3, 0xb9,
|
|
|
|
0x2d, 0xbb, 0x9d, 0xbb, 0x49, 0x28, 0x49, 0x33, 0x9d, 0x4f, 0xa6, 0xb1, 0x45, 0x0a, 0x99, 0x4b,
|
|
|
|
0x98, 0x88, 0xe7, 0x6d, 0x68, 0xa4, 0xc2, 0x43, 0x80, 0x30, 0xbd, 0x62, 0x5a, 0x91, 0x1c, 0x0b,
|
|
|
|
0x63, 0xb7, 0x37, 0x74, 0x07, 0xd1, 0x7b, 0x8a, 0x44, 0xf9, 0xe4, 0xc2, 0xec, 0xa7, 0x2f, 0x68,
|
|
|
|
0x59, 0x87, 0x7a, 0xea, 0xff, 0x89, 0x06, 0x96, 0x63, 0xeb, 0x19, 0x34, 0x52, 0x81, 0xb1, 0x2c,
|
|
|
|
0x24, 0xca, 0xdc, 0x0c, 0xe9, 0x85, 0xc7, 0x67, 0xa3, 0x68, 0x2c, 0x6f, 0xfd, 0xa5, 0x04, 0xd0,
|
|
|
|
0x03, 0x5b, 0x4f, 0xa1, 0xd1, 0xe3, 0x0e, 0x9f, 0xe6, 0xfc, 0xa1, 0xf4, 0x1f, 0x03, 0xd6, 0x22,
|
|
|
|
0x8a, 0xcf, 0x83, 0x4e, 0x60, 0x45, 0xed, 0x87, 0x9c, 0xa5, 0x6d, 0x52, 0xf9, 0x6d, 0x3f, 0xbf,
|
|
|
|
0x8c, 0xce, 0x31, 0xdf, 0x40, 0xf5, 0x92, 0x84, 0x9c, 0x5c, 0xc7, 0x55, 0xc7, 0x5c, 0x6c, 0x96,
|
|
|
|
0x45, 0x2b, 0x45, 0x1f, 0x65, 0xf2, 0xab, 0xf1, 0x06, 0xbd, 0xc8, 0x2a, 0x08, 0xc9, 0x09, 0xc9,
|
|
|
|
0x3f, 0x48, 0x04, 0x8e, 0x91, 0xe8, 0x3b, 0xa8, 0x32, 0xa9, 0x87, 0x44, 0x1d, 0xcb, 0x27, 0x59,
|
|
|
|
0x7e, 0x79, 0x03, 0xca, 0xd8, 0xfd, 0x00, 0x45, 0x9d, 0x05, 0x28, 0xab, 0xea, 0x25, 0xf3, 0xd6,
|
|
|
|
0x2c, 0xbd, 0x5e, 0x8c, 0x47, 0x6d, 0x28, 0x79, 0x74, 0xc4, 0xe4, 0xb9, 0xd7, 0xb7, 0x3e, 0xce,
|
|
|
|
0x7e, 0xb1, 0x1c, 0xa4, 0x8d, 0x7e, 0x61, 0x21, 0x62, 0x6a, 0x22, 0x72, 0x96, 0x34, 0x3d, 0x73,
|
|
|
|
0xe2, 0x1d, 0xd1, 0x11, 0x96, 0x40, 0xf4, 0x06, 0xaa, 0x57, 0x4e, 0xe8, 0xbb, 0xfe, 0x88, 0xc9,
|
|
|
|
0x63, 0xb2, 0x02, 0x90, 0xea, 0x2f, 0x75, 0x0b, 0x7d, 0x0f, 0x45, 0x5d, 0xd5, 0xd0, 0x4f, 0x17,
|
|
|
|
0x47, 0xb1, 0xb8, 0xb4, 0x19, 0xa4, 0x1f, 0x15, 0x0e, 0xc7, 0x04, 0xab, 0x21, 0xae, 0xcb, 0x39,
|
|
|
|
0x13, 0x22, 0x7b, 0xcb, 0x1f, 0xd7, 0xad, 0x2f, 0x2c, 0xf4, 0x1e, 0x0a, 0xb2, 0x9d, 0xa3, 0x8c,
|
|
|
|
0xd5, 0x3e, 0xb1, 0x7e, 0x2d, 0xa2, 0x56, 0x4c, 0xb5, 0xf9, 0x87, 0xd0, 0x50, 0x91, 0xff, 0x81,
|
|
|
|
0xde, 0x94, 0x98, 0x05, 0x6c, 0x67, 0x19, 0xc4, 0x44, 0xf1, 0x13, 0xc0, 0x6c, 0xa8, 0x40, 0x19,
|
|
|
|
0x84, 0x4c, 0xf4, 0x7f, 0x46, 0xde, 0xed, 0xdc, 0x4d, 0x42, 0x71, 0x9a, 0x69, 0xfd, 0xa4, 0x0b,
|
|
|
|
0xff, 0x79, 0xcc, 0x4d, 0x27, 0x76, 0xfd, 0x66, 0xa0, 0xd9, 0xe0, 0xbd, 0xec, 0xa8, 0x67, 0x0c,
|
|
|
|
0x5b, 0x24, 0x10, 0xb1, 0x14, 0x38, 0x83, 0xb1, 0x33, 0x8a, 0xce, 0x29, 0x9a, 0x8a, 0x2f, 0x97,
|
|
|
|
0x65, 0xf6, 0xd2, 0xf8, 0x1a, 0xd9, 0xce, 0x32, 0x88, 0x31, 0x77, 0x0e, 0xb5, 0xd4, 0x7f, 0xa2,
|
|
|
|
0x7a, 0x3d, 0x75, 0x41, 0xa3, 0xa9, 0x88, 0xcd, 0x90, 0x5c, 0xba, 0x6c, 0xde, 0x8a, 0xc6, 0xf3,
|
|
|
|
0xe8, 0xe7, 0xd9, 0x4e, 0x5e, 0xff, 0x8b, 0xd5, 0x7e, 0x75, 0x2b, 0xac, 0xd9, 0x49, 0x24, 0xa7,
|
|
|
|
0xad, 0x3f, 0x55, 0x00, 0x3a, 0xf1, 0x7e, 0xd0, 0x29, 0xac, 0xc8, 0xf5, 0x90, 0x95, 0x5b, 0x26,
|
|
|
|
0x32, 0xf3, 0x18, 0x35, 0x6e, 0xf2, 0x3b, 0xfd, 0xff, 0xa6, 0xdd, 0xbc, 0x35, 0x5e, 0xef, 0xba,
|
|
|
|
0xa5, 0xdd, 0xcd, 0x67, 0x77, 0x28, 0xa5, 0xe8, 0x83, 0x08, 0x7e, 0xd9, 0xde, 0xa0, 0xe7, 0x59,
|
|
|
|
0x5b, 0xf8, 0x6d, 0x6e, 0xdc, 0xed, 0x16, 0xd5, 0x5f, 0xc5, 0x5f, 0xfd, 0x37, 0x00, 0x00, 0xff,
|
|
|
|
0x09, 0x21, 0xd9, 0x21, 0x35, 0x5f, 0xdc, 0x82, 0xd2, 0x7a, 0xdf, 0x43, 0x59, 0x45, 0x01, 0xca,
|
|
|
|
0xff, 0xc1, 0x4b, 0x2d, 0x65, 0xc8, 0x16, 0x00, 0x00,
|
|
|
|
0xca, 0x7a, 0xc9, 0xb8, 0x6d, 0x3e, 0xcf, 0x07, 0x29, 0xa5, 0x5f, 0x1a, 0x08, 0xeb, 0x9c, 0x88,
|
|
|
|
|
|
|
|
0xac, 0x9c, 0xa2, 0xa7, 0x6f, 0x4c, 0x96, 0x03, 0x52, 0xf5, 0xa5, 0x65, 0xa0, 0x1f, 0xa0, 0xac,
|
|
|
|
|
|
|
|
0xb2, 0x1a, 0xfa, 0xc5, 0x72, 0x42, 0xa4, 0x2f, 0xff, 0x73, 0xcb, 0xf8, 0xd2, 0x40, 0xef, 0xa0,
|
|
|
|
|
|
|
|
0x24, 0xca, 0x39, 0xca, 0xa8, 0x4d, 0x89, 0x5e, 0xa0, 0x69, 0xe5, 0x41, 0xb4, 0x17, 0x7f, 0x02,
|
|
|
|
|
|
|
|
0x98, 0x37, 0x15, 0x28, 0xe3, 0xff, 0x92, 0x85, 0xee, 0xa4, 0xd9, 0xba, 0x1d, 0xa8, 0x17, 0x78,
|
|
|
|
|
|
|
|
0x27, 0x2a, 0xea, 0x39, 0x45, 0x99, 0xb5, 0x34, 0xbe, 0x46, 0x4d, 0x2b, 0x0f, 0xa2, 0xd5, 0x5d,
|
|
|
|
|
|
|
|
0x40, 0x23, 0xf5, 0xef, 0x35, 0xfa, 0x3c, 0xdb, 0xc8, 0x9b, 0x7f, 0x86, 0x37, 0x5f, 0xde, 0x09,
|
|
|
|
|
|
|
|
0xab, 0x57, 0xe2, 0xc9, 0xae, 0x4c, 0x7f, 0x46, 0xf6, 0x6d, 0x76, 0xa7, 0xff, 0x89, 0x6e, 0xb6,
|
|
|
|
|
|
|
|
0xef, 0x8c, 0x57, 0xab, 0xee, 0x96, 0x7e, 0x53, 0x08, 0xfa, 0xfd, 0xb2, 0xfc, 0x53, 0xff, 0xeb,
|
|
|
|
|
|
|
|
0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x1f, 0x90, 0x18, 0xf3, 0xa0, 0x18, 0x00, 0x00,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|