|
@@ -106,7 +106,7 @@ func (x EndpointSpec_ResolutionMode) String() string {
|
|
|
return proto.EnumName(EndpointSpec_ResolutionMode_name, int32(x))
|
|
|
}
|
|
|
func (EndpointSpec_ResolutionMode) EnumDescriptor() ([]byte, []int) {
|
|
|
- return fileDescriptorSpecs, []int{8, 0}
|
|
|
+ return fileDescriptorSpecs, []int{7, 0}
|
|
|
}
|
|
|
|
|
|
type NodeSpec struct {
|
|
@@ -289,7 +289,6 @@ type TaskSpec struct {
|
|
|
// Types that are valid to be assigned to Runtime:
|
|
|
// *TaskSpec_Attachment
|
|
|
// *TaskSpec_Container
|
|
|
- // *TaskSpec_Plugin
|
|
|
Runtime isTaskSpec_Runtime `protobuf_oneof:"runtime"`
|
|
|
// Resource requirements for the container.
|
|
|
Resources *ResourceRequirements `protobuf:"bytes,2,opt,name=resources" json:"resources,omitempty"`
|
|
@@ -327,13 +326,9 @@ type TaskSpec_Attachment struct {
|
|
|
type TaskSpec_Container struct {
|
|
|
Container *ContainerSpec `protobuf:"bytes,1,opt,name=container,oneof"`
|
|
|
}
|
|
|
-type TaskSpec_Plugin struct {
|
|
|
- Plugin *PluginSpec `protobuf:"bytes,10,opt,name=plugin,oneof"`
|
|
|
-}
|
|
|
|
|
|
func (*TaskSpec_Attachment) isTaskSpec_Runtime() {}
|
|
|
func (*TaskSpec_Container) isTaskSpec_Runtime() {}
|
|
|
-func (*TaskSpec_Plugin) isTaskSpec_Runtime() {}
|
|
|
|
|
|
func (m *TaskSpec) GetRuntime() isTaskSpec_Runtime {
|
|
|
if m != nil {
|
|
@@ -356,19 +351,11 @@ func (m *TaskSpec) GetContainer() *ContainerSpec {
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-func (m *TaskSpec) GetPlugin() *PluginSpec {
|
|
|
- if x, ok := m.GetRuntime().(*TaskSpec_Plugin); ok {
|
|
|
- return x.Plugin
|
|
|
- }
|
|
|
- return nil
|
|
|
-}
|
|
|
-
|
|
|
// XXX_OneofFuncs is for the internal use of the proto package.
|
|
|
func (*TaskSpec) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
|
|
|
return _TaskSpec_OneofMarshaler, _TaskSpec_OneofUnmarshaler, _TaskSpec_OneofSizer, []interface{}{
|
|
|
(*TaskSpec_Attachment)(nil),
|
|
|
(*TaskSpec_Container)(nil),
|
|
|
- (*TaskSpec_Plugin)(nil),
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -386,11 +373,6 @@ func _TaskSpec_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
|
|
if err := b.EncodeMessage(x.Container); err != nil {
|
|
|
return err
|
|
|
}
|
|
|
- case *TaskSpec_Plugin:
|
|
|
- _ = b.EncodeVarint(10<<3 | proto.WireBytes)
|
|
|
- if err := b.EncodeMessage(x.Plugin); err != nil {
|
|
|
- return err
|
|
|
- }
|
|
|
case nil:
|
|
|
default:
|
|
|
return fmt.Errorf("TaskSpec.Runtime has unexpected type %T", x)
|
|
@@ -417,14 +399,6 @@ func _TaskSpec_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffe
|
|
|
err := b.DecodeMessage(msg)
|
|
|
m.Runtime = &TaskSpec_Container{msg}
|
|
|
return true, err
|
|
|
- case 10: // runtime.plugin
|
|
|
- if wire != proto.WireBytes {
|
|
|
- return true, proto.ErrInternalBadWireType
|
|
|
- }
|
|
|
- msg := new(PluginSpec)
|
|
|
- err := b.DecodeMessage(msg)
|
|
|
- m.Runtime = &TaskSpec_Plugin{msg}
|
|
|
- return true, err
|
|
|
default:
|
|
|
return false, nil
|
|
|
}
|
|
@@ -444,11 +418,6 @@ func _TaskSpec_OneofSizer(msg proto.Message) (n int) {
|
|
|
n += proto.SizeVarint(1<<3 | proto.WireBytes)
|
|
|
n += proto.SizeVarint(uint64(s))
|
|
|
n += s
|
|
|
- case *TaskSpec_Plugin:
|
|
|
- s := proto.Size(x.Plugin)
|
|
|
- n += proto.SizeVarint(10<<3 | proto.WireBytes)
|
|
|
- n += proto.SizeVarint(uint64(s))
|
|
|
- n += s
|
|
|
case nil:
|
|
|
default:
|
|
|
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
|
|
@@ -590,18 +559,6 @@ func (m *ContainerSpec_DNSConfig) Reset() { *m = ContainerSpe
|
|
|
func (*ContainerSpec_DNSConfig) ProtoMessage() {}
|
|
|
func (*ContainerSpec_DNSConfig) Descriptor() ([]byte, []int) { return fileDescriptorSpecs, []int{6, 2} }
|
|
|
|
|
|
-// PluginSpec specifies runtime parameters for a plugin.
|
|
|
-type PluginSpec struct {
|
|
|
- // image defines the image reference, as specified in the
|
|
|
- // distribution/reference package. This may include a registry host, name,
|
|
|
- // tag or digest.
|
|
|
- Image string `protobuf:"bytes,1,opt,name=image,proto3" json:"image,omitempty"`
|
|
|
-}
|
|
|
-
|
|
|
-func (m *PluginSpec) Reset() { *m = PluginSpec{} }
|
|
|
-func (*PluginSpec) ProtoMessage() {}
|
|
|
-func (*PluginSpec) Descriptor() ([]byte, []int) { return fileDescriptorSpecs, []int{7} }
|
|
|
-
|
|
|
// EndpointSpec defines the properties that can be configured to
|
|
|
// access and loadbalance the service.
|
|
|
type EndpointSpec struct {
|
|
@@ -613,7 +570,7 @@ type EndpointSpec struct {
|
|
|
|
|
|
func (m *EndpointSpec) Reset() { *m = EndpointSpec{} }
|
|
|
func (*EndpointSpec) ProtoMessage() {}
|
|
|
-func (*EndpointSpec) Descriptor() ([]byte, []int) { return fileDescriptorSpecs, []int{8} }
|
|
|
+func (*EndpointSpec) Descriptor() ([]byte, []int) { return fileDescriptorSpecs, []int{7} }
|
|
|
|
|
|
// NetworkSpec specifies user defined network parameters.
|
|
|
type NetworkSpec struct {
|
|
@@ -638,7 +595,7 @@ type NetworkSpec struct {
|
|
|
|
|
|
func (m *NetworkSpec) Reset() { *m = NetworkSpec{} }
|
|
|
func (*NetworkSpec) ProtoMessage() {}
|
|
|
-func (*NetworkSpec) Descriptor() ([]byte, []int) { return fileDescriptorSpecs, []int{9} }
|
|
|
+func (*NetworkSpec) Descriptor() ([]byte, []int) { return fileDescriptorSpecs, []int{8} }
|
|
|
|
|
|
// ClusterSpec specifies global cluster settings.
|
|
|
type ClusterSpec struct {
|
|
@@ -663,7 +620,7 @@ type ClusterSpec struct {
|
|
|
|
|
|
func (m *ClusterSpec) Reset() { *m = ClusterSpec{} }
|
|
|
func (*ClusterSpec) ProtoMessage() {}
|
|
|
-func (*ClusterSpec) Descriptor() ([]byte, []int) { return fileDescriptorSpecs, []int{10} }
|
|
|
+func (*ClusterSpec) Descriptor() ([]byte, []int) { return fileDescriptorSpecs, []int{9} }
|
|
|
|
|
|
// SecretSpec specifies a user-provided secret.
|
|
|
type SecretSpec struct {
|
|
@@ -674,7 +631,7 @@ type SecretSpec struct {
|
|
|
|
|
|
func (m *SecretSpec) Reset() { *m = SecretSpec{} }
|
|
|
func (*SecretSpec) ProtoMessage() {}
|
|
|
-func (*SecretSpec) Descriptor() ([]byte, []int) { return fileDescriptorSpecs, []int{11} }
|
|
|
+func (*SecretSpec) Descriptor() ([]byte, []int) { return fileDescriptorSpecs, []int{10} }
|
|
|
|
|
|
func init() {
|
|
|
proto.RegisterType((*NodeSpec)(nil), "docker.swarmkit.v1.NodeSpec")
|
|
@@ -686,7 +643,6 @@ func init() {
|
|
|
proto.RegisterType((*ContainerSpec)(nil), "docker.swarmkit.v1.ContainerSpec")
|
|
|
proto.RegisterType((*ContainerSpec_PullOptions)(nil), "docker.swarmkit.v1.ContainerSpec.PullOptions")
|
|
|
proto.RegisterType((*ContainerSpec_DNSConfig)(nil), "docker.swarmkit.v1.ContainerSpec.DNSConfig")
|
|
|
- proto.RegisterType((*PluginSpec)(nil), "docker.swarmkit.v1.PluginSpec")
|
|
|
proto.RegisterType((*EndpointSpec)(nil), "docker.swarmkit.v1.EndpointSpec")
|
|
|
proto.RegisterType((*NetworkSpec)(nil), "docker.swarmkit.v1.NetworkSpec")
|
|
|
proto.RegisterType((*ClusterSpec)(nil), "docker.swarmkit.v1.ClusterSpec")
|
|
@@ -842,12 +798,6 @@ func (m *TaskSpec) CopyFrom(src interface{}) {
|
|
|
}
|
|
|
github_com_docker_swarmkit_api_deepcopy.Copy(v.Container, o.GetContainer())
|
|
|
m.Runtime = &v
|
|
|
- case *TaskSpec_Plugin:
|
|
|
- v := TaskSpec_Plugin{
|
|
|
- Plugin: &PluginSpec{},
|
|
|
- }
|
|
|
- github_com_docker_swarmkit_api_deepcopy.Copy(v.Plugin, o.GetPlugin())
|
|
|
- m.Runtime = &v
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -991,21 +941,6 @@ func (m *ContainerSpec_DNSConfig) CopyFrom(src interface{}) {
|
|
|
|
|
|
}
|
|
|
|
|
|
-func (m *PluginSpec) Copy() *PluginSpec {
|
|
|
- if m == nil {
|
|
|
- return nil
|
|
|
- }
|
|
|
- o := &PluginSpec{}
|
|
|
- o.CopyFrom(m)
|
|
|
- return o
|
|
|
-}
|
|
|
-
|
|
|
-func (m *PluginSpec) CopyFrom(src interface{}) {
|
|
|
-
|
|
|
- o := src.(*PluginSpec)
|
|
|
- *m = *o
|
|
|
-}
|
|
|
-
|
|
|
func (m *EndpointSpec) Copy() *EndpointSpec {
|
|
|
if m == nil {
|
|
|
return nil
|
|
@@ -1395,20 +1330,6 @@ func (m *TaskSpec_Attachment) MarshalTo(dAtA []byte) (int, error) {
|
|
|
}
|
|
|
return i, nil
|
|
|
}
|
|
|
-func (m *TaskSpec_Plugin) MarshalTo(dAtA []byte) (int, error) {
|
|
|
- i := 0
|
|
|
- if m.Plugin != nil {
|
|
|
- dAtA[i] = 0x52
|
|
|
- i++
|
|
|
- i = encodeVarintSpecs(dAtA, i, uint64(m.Plugin.Size()))
|
|
|
- n17, err := m.Plugin.MarshalTo(dAtA[i:])
|
|
|
- if err != nil {
|
|
|
- return 0, err
|
|
|
- }
|
|
|
- i += n17
|
|
|
- }
|
|
|
- return i, nil
|
|
|
-}
|
|
|
func (m *NetworkAttachmentSpec) Marshal() (dAtA []byte, err error) {
|
|
|
size := m.Size()
|
|
|
dAtA = make([]byte, size)
|
|
@@ -1544,21 +1465,21 @@ func (m *ContainerSpec) MarshalTo(dAtA []byte) (int, error) {
|
|
|
dAtA[i] = 0x4a
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.StopGracePeriod.Size()))
|
|
|
- n18, err := m.StopGracePeriod.MarshalTo(dAtA[i:])
|
|
|
+ n17, err := m.StopGracePeriod.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n18
|
|
|
+ i += n17
|
|
|
}
|
|
|
if m.PullOptions != nil {
|
|
|
dAtA[i] = 0x52
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.PullOptions.Size()))
|
|
|
- n19, err := m.PullOptions.MarshalTo(dAtA[i:])
|
|
|
+ n18, err := m.PullOptions.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n19
|
|
|
+ i += n18
|
|
|
}
|
|
|
if len(m.Groups) > 0 {
|
|
|
for _, s := range m.Groups {
|
|
@@ -1607,11 +1528,11 @@ func (m *ContainerSpec) MarshalTo(dAtA []byte) (int, error) {
|
|
|
dAtA[i] = 0x7a
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.DNSConfig.Size()))
|
|
|
- n20, err := m.DNSConfig.MarshalTo(dAtA[i:])
|
|
|
+ n19, err := m.DNSConfig.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n20
|
|
|
+ i += n19
|
|
|
}
|
|
|
if m.Healthcheck != nil {
|
|
|
dAtA[i] = 0x82
|
|
@@ -1619,11 +1540,11 @@ func (m *ContainerSpec) MarshalTo(dAtA []byte) (int, error) {
|
|
|
dAtA[i] = 0x1
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.Healthcheck.Size()))
|
|
|
- n21, err := m.Healthcheck.MarshalTo(dAtA[i:])
|
|
|
+ n20, err := m.Healthcheck.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n21
|
|
|
+ i += n20
|
|
|
}
|
|
|
if len(m.Hosts) > 0 {
|
|
|
for _, s := range m.Hosts {
|
|
@@ -1766,30 +1687,6 @@ func (m *ContainerSpec_DNSConfig) MarshalTo(dAtA []byte) (int, error) {
|
|
|
return i, nil
|
|
|
}
|
|
|
|
|
|
-func (m *PluginSpec) Marshal() (dAtA []byte, err error) {
|
|
|
- size := m.Size()
|
|
|
- dAtA = make([]byte, size)
|
|
|
- n, err := m.MarshalTo(dAtA)
|
|
|
- if err != nil {
|
|
|
- return nil, err
|
|
|
- }
|
|
|
- return dAtA[:n], nil
|
|
|
-}
|
|
|
-
|
|
|
-func (m *PluginSpec) MarshalTo(dAtA []byte) (int, error) {
|
|
|
- var i int
|
|
|
- _ = i
|
|
|
- var l int
|
|
|
- _ = l
|
|
|
- if len(m.Image) > 0 {
|
|
|
- dAtA[i] = 0xa
|
|
|
- i++
|
|
|
- i = encodeVarintSpecs(dAtA, i, uint64(len(m.Image)))
|
|
|
- i += copy(dAtA[i:], m.Image)
|
|
|
- }
|
|
|
- return i, nil
|
|
|
-}
|
|
|
-
|
|
|
func (m *EndpointSpec) Marshal() (dAtA []byte, err error) {
|
|
|
size := m.Size()
|
|
|
dAtA = make([]byte, size)
|
|
@@ -1843,20 +1740,20 @@ func (m *NetworkSpec) MarshalTo(dAtA []byte) (int, error) {
|
|
|
dAtA[i] = 0xa
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.Annotations.Size()))
|
|
|
- n22, err := m.Annotations.MarshalTo(dAtA[i:])
|
|
|
+ n21, err := m.Annotations.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n22
|
|
|
+ i += n21
|
|
|
if m.DriverConfig != nil {
|
|
|
dAtA[i] = 0x12
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.DriverConfig.Size()))
|
|
|
- n23, err := m.DriverConfig.MarshalTo(dAtA[i:])
|
|
|
+ n22, err := m.DriverConfig.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n23
|
|
|
+ i += n22
|
|
|
}
|
|
|
if m.Ipv6Enabled {
|
|
|
dAtA[i] = 0x18
|
|
@@ -1882,11 +1779,11 @@ func (m *NetworkSpec) MarshalTo(dAtA []byte) (int, error) {
|
|
|
dAtA[i] = 0x2a
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.IPAM.Size()))
|
|
|
- n24, err := m.IPAM.MarshalTo(dAtA[i:])
|
|
|
+ n23, err := m.IPAM.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n24
|
|
|
+ i += n23
|
|
|
}
|
|
|
if m.Attachable {
|
|
|
dAtA[i] = 0x30
|
|
@@ -1919,67 +1816,67 @@ func (m *ClusterSpec) MarshalTo(dAtA []byte) (int, error) {
|
|
|
dAtA[i] = 0xa
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.Annotations.Size()))
|
|
|
- n25, err := m.Annotations.MarshalTo(dAtA[i:])
|
|
|
+ n24, err := m.Annotations.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n25
|
|
|
+ i += n24
|
|
|
dAtA[i] = 0x12
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.AcceptancePolicy.Size()))
|
|
|
- n26, err := m.AcceptancePolicy.MarshalTo(dAtA[i:])
|
|
|
+ n25, err := m.AcceptancePolicy.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n26
|
|
|
+ i += n25
|
|
|
dAtA[i] = 0x1a
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.Orchestration.Size()))
|
|
|
- n27, err := m.Orchestration.MarshalTo(dAtA[i:])
|
|
|
+ n26, err := m.Orchestration.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n27
|
|
|
+ i += n26
|
|
|
dAtA[i] = 0x22
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.Raft.Size()))
|
|
|
- n28, err := m.Raft.MarshalTo(dAtA[i:])
|
|
|
+ n27, err := m.Raft.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n28
|
|
|
+ i += n27
|
|
|
dAtA[i] = 0x2a
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.Dispatcher.Size()))
|
|
|
- n29, err := m.Dispatcher.MarshalTo(dAtA[i:])
|
|
|
+ n28, err := m.Dispatcher.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n29
|
|
|
+ i += n28
|
|
|
dAtA[i] = 0x32
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.CAConfig.Size()))
|
|
|
- n30, err := m.CAConfig.MarshalTo(dAtA[i:])
|
|
|
+ n29, err := m.CAConfig.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n30
|
|
|
+ i += n29
|
|
|
dAtA[i] = 0x3a
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.TaskDefaults.Size()))
|
|
|
- n31, err := m.TaskDefaults.MarshalTo(dAtA[i:])
|
|
|
+ n30, err := m.TaskDefaults.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n31
|
|
|
+ i += n30
|
|
|
dAtA[i] = 0x42
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.EncryptionConfig.Size()))
|
|
|
- n32, err := m.EncryptionConfig.MarshalTo(dAtA[i:])
|
|
|
+ n31, err := m.EncryptionConfig.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n32
|
|
|
+ i += n31
|
|
|
return i, nil
|
|
|
}
|
|
|
|
|
@@ -2001,11 +1898,11 @@ func (m *SecretSpec) MarshalTo(dAtA []byte) (int, error) {
|
|
|
dAtA[i] = 0xa
|
|
|
i++
|
|
|
i = encodeVarintSpecs(dAtA, i, uint64(m.Annotations.Size()))
|
|
|
- n33, err := m.Annotations.MarshalTo(dAtA[i:])
|
|
|
+ n32, err := m.Annotations.MarshalTo(dAtA[i:])
|
|
|
if err != nil {
|
|
|
return 0, err
|
|
|
}
|
|
|
- i += n33
|
|
|
+ i += n32
|
|
|
if len(m.Data) > 0 {
|
|
|
dAtA[i] = 0x12
|
|
|
i++
|
|
@@ -2176,15 +2073,6 @@ func (m *TaskSpec_Attachment) Size() (n int) {
|
|
|
}
|
|
|
return n
|
|
|
}
|
|
|
-func (m *TaskSpec_Plugin) Size() (n int) {
|
|
|
- var l int
|
|
|
- _ = l
|
|
|
- if m.Plugin != nil {
|
|
|
- l = m.Plugin.Size()
|
|
|
- n += 1 + l + sovSpecs(uint64(l))
|
|
|
- }
|
|
|
- return n
|
|
|
-}
|
|
|
func (m *NetworkAttachmentSpec) Size() (n int) {
|
|
|
var l int
|
|
|
_ = l
|
|
@@ -2330,16 +2218,6 @@ func (m *ContainerSpec_DNSConfig) Size() (n int) {
|
|
|
return n
|
|
|
}
|
|
|
|
|
|
-func (m *PluginSpec) Size() (n int) {
|
|
|
- var l int
|
|
|
- _ = l
|
|
|
- l = len(m.Image)
|
|
|
- if l > 0 {
|
|
|
- n += 1 + l + sovSpecs(uint64(l))
|
|
|
- }
|
|
|
- return n
|
|
|
-}
|
|
|
-
|
|
|
func (m *EndpointSpec) Size() (n int) {
|
|
|
var l int
|
|
|
_ = l
|
|
@@ -2531,16 +2409,6 @@ func (this *TaskSpec_Attachment) String() string {
|
|
|
}, "")
|
|
|
return s
|
|
|
}
|
|
|
-func (this *TaskSpec_Plugin) String() string {
|
|
|
- if this == nil {
|
|
|
- return "nil"
|
|
|
- }
|
|
|
- s := strings.Join([]string{`&TaskSpec_Plugin{`,
|
|
|
- `Plugin:` + strings.Replace(fmt.Sprintf("%v", this.Plugin), "PluginSpec", "PluginSpec", 1) + `,`,
|
|
|
- `}`,
|
|
|
- }, "")
|
|
|
- return s
|
|
|
-}
|
|
|
func (this *NetworkAttachmentSpec) String() string {
|
|
|
if this == nil {
|
|
|
return "nil"
|
|
@@ -2612,16 +2480,6 @@ func (this *ContainerSpec_DNSConfig) String() string {
|
|
|
}, "")
|
|
|
return s
|
|
|
}
|
|
|
-func (this *PluginSpec) String() string {
|
|
|
- if this == nil {
|
|
|
- return "nil"
|
|
|
- }
|
|
|
- s := strings.Join([]string{`&PluginSpec{`,
|
|
|
- `Image:` + fmt.Sprintf("%v", this.Image) + `,`,
|
|
|
- `}`,
|
|
|
- }, "")
|
|
|
- return s
|
|
|
-}
|
|
|
func (this *EndpointSpec) String() string {
|
|
|
if this == nil {
|
|
|
return "nil"
|
|
@@ -3519,38 +3377,6 @@ func (m *TaskSpec) Unmarshal(dAtA []byte) error {
|
|
|
break
|
|
|
}
|
|
|
}
|
|
|
- case 10:
|
|
|
- if wireType != 2 {
|
|
|
- return fmt.Errorf("proto: wrong wireType = %d for field Plugin", wireType)
|
|
|
- }
|
|
|
- var msglen int
|
|
|
- for shift := uint(0); ; shift += 7 {
|
|
|
- if shift >= 64 {
|
|
|
- return ErrIntOverflowSpecs
|
|
|
- }
|
|
|
- if iNdEx >= l {
|
|
|
- return io.ErrUnexpectedEOF
|
|
|
- }
|
|
|
- b := dAtA[iNdEx]
|
|
|
- iNdEx++
|
|
|
- msglen |= (int(b) & 0x7F) << shift
|
|
|
- if b < 0x80 {
|
|
|
- break
|
|
|
- }
|
|
|
- }
|
|
|
- if msglen < 0 {
|
|
|
- return ErrInvalidLengthSpecs
|
|
|
- }
|
|
|
- postIndex := iNdEx + msglen
|
|
|
- if postIndex > l {
|
|
|
- return io.ErrUnexpectedEOF
|
|
|
- }
|
|
|
- v := &PluginSpec{}
|
|
|
- if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
|
- return err
|
|
|
- }
|
|
|
- m.Runtime = &TaskSpec_Plugin{v}
|
|
|
- iNdEx = postIndex
|
|
|
default:
|
|
|
iNdEx = preIndex
|
|
|
skippy, err := skipSpecs(dAtA[iNdEx:])
|
|
@@ -4577,85 +4403,6 @@ func (m *ContainerSpec_DNSConfig) Unmarshal(dAtA []byte) error {
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
-func (m *PluginSpec) Unmarshal(dAtA []byte) error {
|
|
|
- l := len(dAtA)
|
|
|
- iNdEx := 0
|
|
|
- for iNdEx < l {
|
|
|
- preIndex := iNdEx
|
|
|
- var wire uint64
|
|
|
- for shift := uint(0); ; shift += 7 {
|
|
|
- if shift >= 64 {
|
|
|
- return ErrIntOverflowSpecs
|
|
|
- }
|
|
|
- if iNdEx >= l {
|
|
|
- return io.ErrUnexpectedEOF
|
|
|
- }
|
|
|
- b := dAtA[iNdEx]
|
|
|
- iNdEx++
|
|
|
- wire |= (uint64(b) & 0x7F) << shift
|
|
|
- if b < 0x80 {
|
|
|
- break
|
|
|
- }
|
|
|
- }
|
|
|
- fieldNum := int32(wire >> 3)
|
|
|
- wireType := int(wire & 0x7)
|
|
|
- if wireType == 4 {
|
|
|
- return fmt.Errorf("proto: PluginSpec: wiretype end group for non-group")
|
|
|
- }
|
|
|
- if fieldNum <= 0 {
|
|
|
- return fmt.Errorf("proto: PluginSpec: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
- }
|
|
|
- switch fieldNum {
|
|
|
- case 1:
|
|
|
- if wireType != 2 {
|
|
|
- return fmt.Errorf("proto: wrong wireType = %d for field Image", wireType)
|
|
|
- }
|
|
|
- var stringLen uint64
|
|
|
- for shift := uint(0); ; shift += 7 {
|
|
|
- if shift >= 64 {
|
|
|
- return ErrIntOverflowSpecs
|
|
|
- }
|
|
|
- if iNdEx >= l {
|
|
|
- return io.ErrUnexpectedEOF
|
|
|
- }
|
|
|
- b := dAtA[iNdEx]
|
|
|
- iNdEx++
|
|
|
- stringLen |= (uint64(b) & 0x7F) << shift
|
|
|
- if b < 0x80 {
|
|
|
- break
|
|
|
- }
|
|
|
- }
|
|
|
- intStringLen := int(stringLen)
|
|
|
- if intStringLen < 0 {
|
|
|
- return ErrInvalidLengthSpecs
|
|
|
- }
|
|
|
- postIndex := iNdEx + intStringLen
|
|
|
- if postIndex > l {
|
|
|
- return io.ErrUnexpectedEOF
|
|
|
- }
|
|
|
- m.Image = string(dAtA[iNdEx:postIndex])
|
|
|
- iNdEx = postIndex
|
|
|
- default:
|
|
|
- iNdEx = preIndex
|
|
|
- skippy, err := skipSpecs(dAtA[iNdEx:])
|
|
|
- if err != nil {
|
|
|
- return err
|
|
|
- }
|
|
|
- if skippy < 0 {
|
|
|
- return ErrInvalidLengthSpecs
|
|
|
- }
|
|
|
- if (iNdEx + skippy) > l {
|
|
|
- return io.ErrUnexpectedEOF
|
|
|
- }
|
|
|
- iNdEx += skippy
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if iNdEx > l {
|
|
|
- return io.ErrUnexpectedEOF
|
|
|
- }
|
|
|
- return nil
|
|
|
-}
|
|
|
func (m *EndpointSpec) Unmarshal(dAtA []byte) error {
|
|
|
l := len(dAtA)
|
|
|
iNdEx := 0
|
|
@@ -5471,114 +5218,112 @@ var (
|
|
|
func init() { proto.RegisterFile("specs.proto", fileDescriptorSpecs) }
|
|
|
|
|
|
var fileDescriptorSpecs = []byte{
|
|
|
- // 1730 bytes of a gzipped FileDescriptorProto
|
|
|
+ // 1707 bytes of a gzipped FileDescriptorProto
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x57, 0x41, 0x73, 0x1b, 0xb7,
|
|
|
- 0x15, 0x26, 0x25, 0x8a, 0x5a, 0xbe, 0xa5, 0x6c, 0x0a, 0x4d, 0xd2, 0x35, 0xdd, 0x90, 0x34, 0xe3,
|
|
|
+ 0x15, 0x26, 0x25, 0x8a, 0x5a, 0xbe, 0xa5, 0x6c, 0x1a, 0x75, 0xd2, 0x35, 0xdd, 0x90, 0x34, 0xe3,
|
|
|
0xa6, 0x4a, 0x33, 0xa5, 0xa6, 0x6a, 0x27, 0x75, 0xea, 0x66, 0x5a, 0x52, 0x64, 0x65, 0x55, 0x95,
|
|
|
0xcc, 0x01, 0x15, 0x77, 0x7c, 0xe2, 0x80, 0xbb, 0x10, 0xb9, 0xa3, 0xe5, 0x62, 0x0b, 0x60, 0x99,
|
|
|
- 0xe1, 0xad, 0xc7, 0x8c, 0xcf, 0xbd, 0x6a, 0x7a, 0xe8, 0x6f, 0xe8, 0x7f, 0xf0, 0xb1, 0xc7, 0x9e,
|
|
|
- 0x34, 0x0d, 0xff, 0x42, 0x7f, 0x40, 0x3b, 0xc0, 0x82, 0xe4, 0x32, 0x59, 0xc5, 0x9e, 0xa9, 0x6f,
|
|
|
- 0xc0, 0xdb, 0xef, 0x7b, 0x78, 0x78, 0xf8, 0xf0, 0xf0, 0x16, 0x6c, 0x11, 0x51, 0x57, 0xb4, 0x22,
|
|
|
- 0xce, 0x24, 0x43, 0xc8, 0x63, 0xee, 0x35, 0xe5, 0x2d, 0xf1, 0x15, 0xe1, 0xd3, 0x6b, 0x5f, 0xb6,
|
|
|
- 0x66, 0x3f, 0xaf, 0xda, 0x72, 0x1e, 0x51, 0x03, 0xa8, 0xbe, 0x37, 0x66, 0x63, 0xa6, 0x87, 0x87,
|
|
|
- 0x6a, 0x64, 0xac, 0xb5, 0x31, 0x63, 0xe3, 0x80, 0x1e, 0xea, 0xd9, 0x28, 0xbe, 0x3a, 0xf4, 0x62,
|
|
|
- 0x4e, 0xa4, 0xcf, 0xc2, 0xe4, 0x7b, 0xf3, 0xa6, 0x00, 0xd6, 0x05, 0xf3, 0xe8, 0x20, 0xa2, 0x2e,
|
|
|
- 0x3a, 0x01, 0x9b, 0x84, 0x21, 0x93, 0x1a, 0x20, 0x9c, 0x7c, 0x23, 0x7f, 0x60, 0x1f, 0xd5, 0x5b,
|
|
|
- 0xdf, 0x5d, 0xb9, 0xd5, 0x5e, 0xc3, 0x3a, 0x85, 0xd7, 0xb7, 0xf5, 0x1c, 0x4e, 0x33, 0xd1, 0x6f,
|
|
|
- 0xa1, 0xec, 0x51, 0xe1, 0x73, 0xea, 0x0d, 0x39, 0x0b, 0xa8, 0xb3, 0xd5, 0xc8, 0x1f, 0xdc, 0x3b,
|
|
|
- 0xfa, 0x51, 0x96, 0x27, 0xb5, 0x38, 0x66, 0x01, 0xc5, 0xb6, 0x61, 0xa8, 0x09, 0x3a, 0x01, 0x98,
|
|
|
- 0xd2, 0xe9, 0x88, 0x72, 0x31, 0xf1, 0x23, 0x67, 0x5b, 0xd3, 0x7f, 0x72, 0x17, 0x5d, 0xc5, 0xde,
|
|
|
- 0x3a, 0x5f, 0xc1, 0x71, 0x8a, 0x8a, 0xce, 0xa1, 0x4c, 0x66, 0xc4, 0x0f, 0xc8, 0xc8, 0x0f, 0x7c,
|
|
|
- 0x39, 0x77, 0x0a, 0xda, 0xd5, 0x27, 0xdf, 0xeb, 0xaa, 0x9d, 0x22, 0xe0, 0x0d, 0x7a, 0xd3, 0x03,
|
|
|
- 0x58, 0x2f, 0x84, 0x3e, 0x86, 0xdd, 0x7e, 0xef, 0xa2, 0x7b, 0x7a, 0x71, 0x52, 0xc9, 0x55, 0x1f,
|
|
|
- 0xbc, 0xba, 0x69, 0xbc, 0xaf, 0x7c, 0xac, 0x01, 0x7d, 0x1a, 0x7a, 0x7e, 0x38, 0x46, 0x07, 0x60,
|
|
|
- 0xb5, 0x8f, 0x8f, 0x7b, 0xfd, 0xcb, 0x5e, 0xb7, 0x92, 0xaf, 0x56, 0x5f, 0xdd, 0x34, 0x3e, 0xd8,
|
|
|
- 0x04, 0xb6, 0x5d, 0x97, 0x46, 0x92, 0x7a, 0xd5, 0xc2, 0xd7, 0x7f, 0xaf, 0xe5, 0x9a, 0x5f, 0xe7,
|
|
|
- 0xa1, 0x9c, 0x0e, 0x02, 0x7d, 0x0c, 0xc5, 0xf6, 0xf1, 0xe5, 0xe9, 0x8b, 0x5e, 0x25, 0xb7, 0xa6,
|
|
|
- 0xa7, 0x11, 0x6d, 0x57, 0xfa, 0x33, 0x8a, 0x1e, 0xc3, 0x4e, 0xbf, 0xfd, 0xe5, 0xa0, 0x57, 0xc9,
|
|
|
- 0xaf, 0xc3, 0x49, 0xc3, 0xfa, 0x24, 0x16, 0x1a, 0xd5, 0xc5, 0xed, 0xd3, 0x8b, 0xca, 0x56, 0x36,
|
|
|
- 0xaa, 0xcb, 0x89, 0x1f, 0x9a, 0x50, 0xfe, 0x56, 0x00, 0x7b, 0x40, 0xf9, 0xcc, 0x77, 0xdf, 0xb1,
|
|
|
- 0x44, 0x3e, 0x83, 0x82, 0x24, 0xe2, 0x5a, 0x4b, 0xc3, 0xce, 0x96, 0xc6, 0x25, 0x11, 0xd7, 0x6a,
|
|
|
- 0x51, 0x43, 0xd7, 0x78, 0xa5, 0x0c, 0x4e, 0xa3, 0xc0, 0x77, 0x89, 0xa4, 0x9e, 0x56, 0x86, 0x7d,
|
|
|
- 0xf4, 0xe3, 0x2c, 0x36, 0x5e, 0xa1, 0x4c, 0xfc, 0xcf, 0x72, 0x38, 0x45, 0x45, 0x4f, 0xa1, 0x38,
|
|
|
- 0x0e, 0xd8, 0x88, 0x04, 0x5a, 0x13, 0xf6, 0xd1, 0xa3, 0x2c, 0x27, 0x27, 0x1a, 0xb1, 0x76, 0x60,
|
|
|
- 0x28, 0xe8, 0x09, 0x14, 0xe3, 0xc8, 0x23, 0x92, 0x3a, 0x45, 0x4d, 0x6e, 0x64, 0x91, 0xbf, 0xd4,
|
|
|
- 0x88, 0x63, 0x16, 0x5e, 0xf9, 0x63, 0x6c, 0xf0, 0xe8, 0x0c, 0xac, 0x90, 0xca, 0xaf, 0x18, 0xbf,
|
|
|
- 0x16, 0xce, 0x6e, 0x63, 0xfb, 0xc0, 0x3e, 0xfa, 0x34, 0x53, 0x8c, 0x09, 0xa6, 0x2d, 0x25, 0x71,
|
|
|
- 0x27, 0x53, 0x1a, 0xca, 0xc4, 0x4d, 0x67, 0xcb, 0xc9, 0xe3, 0x95, 0x03, 0xf4, 0x1b, 0xb0, 0x68,
|
|
|
- 0xe8, 0x45, 0xcc, 0x0f, 0xa5, 0x63, 0xdd, 0x1d, 0x48, 0xcf, 0x60, 0x54, 0x32, 0xf1, 0x8a, 0xa1,
|
|
|
- 0xd8, 0x9c, 0x05, 0xc1, 0x88, 0xb8, 0xd7, 0x4e, 0xe9, 0x2d, 0xb7, 0xb1, 0x62, 0x74, 0x8a, 0x50,
|
|
|
- 0x98, 0x32, 0x8f, 0x36, 0x0f, 0x61, 0xff, 0x3b, 0xa9, 0x46, 0x55, 0xb0, 0x4c, 0xaa, 0x13, 0x8d,
|
|
|
- 0x14, 0xf0, 0x6a, 0xde, 0xbc, 0x0f, 0x7b, 0x1b, 0x69, 0x6d, 0xbe, 0x2e, 0x80, 0xb5, 0x3c, 0x6b,
|
|
|
- 0xd4, 0x86, 0x92, 0xcb, 0x42, 0x49, 0xfc, 0x90, 0x72, 0x23, 0xaf, 0xcc, 0x93, 0x39, 0x5e, 0x82,
|
|
|
- 0x14, 0xeb, 0x59, 0x0e, 0xaf, 0x59, 0xe8, 0xf7, 0x50, 0xe2, 0x54, 0xb0, 0x98, 0xbb, 0x54, 0x18,
|
|
|
- 0x7d, 0x1d, 0x64, 0x2b, 0x24, 0x01, 0x61, 0xfa, 0xe7, 0xd8, 0xe7, 0x54, 0x65, 0x59, 0xe0, 0x35,
|
|
|
- 0x15, 0x3d, 0x85, 0x5d, 0x4e, 0x85, 0x24, 0x5c, 0x7e, 0x9f, 0x44, 0x70, 0x02, 0xe9, 0xb3, 0xc0,
|
|
|
- 0x77, 0xe7, 0x78, 0xc9, 0x40, 0x4f, 0xa1, 0x14, 0x05, 0xc4, 0xd5, 0x5e, 0x9d, 0x1d, 0x4d, 0xff,
|
|
|
- 0x30, 0x8b, 0xde, 0x5f, 0x82, 0xf0, 0x1a, 0x8f, 0x3e, 0x07, 0x08, 0xd8, 0x78, 0xe8, 0x71, 0x7f,
|
|
|
- 0x46, 0xb9, 0x91, 0x58, 0x35, 0x8b, 0xdd, 0xd5, 0x08, 0x5c, 0x0a, 0xd8, 0x38, 0x19, 0xa2, 0x93,
|
|
|
- 0xff, 0x4b, 0x5f, 0x29, 0x6d, 0x9d, 0x01, 0x90, 0xd5, 0x57, 0xa3, 0xae, 0x4f, 0xde, 0xca, 0x95,
|
|
|
- 0x39, 0x91, 0x14, 0x1d, 0x3d, 0x82, 0xf2, 0x15, 0xe3, 0x2e, 0x1d, 0x9a, 0x5b, 0x53, 0xd2, 0x9a,
|
|
|
- 0xb0, 0xb5, 0x2d, 0xd1, 0x97, 0xba, 0x52, 0x51, 0x10, 0x8f, 0xfd, 0xd0, 0x01, 0xbd, 0x56, 0x2d,
|
|
|
- 0x3b, 0x5b, 0x0a, 0x61, 0x16, 0x30, 0xf8, 0x4e, 0x09, 0x76, 0x79, 0x1c, 0x4a, 0x7f, 0x4a, 0x9b,
|
|
|
- 0x67, 0xf0, 0x7e, 0x66, 0x38, 0xe8, 0x08, 0xca, 0x2b, 0x81, 0x0c, 0x7d, 0x4f, 0x2b, 0xab, 0xd4,
|
|
|
- 0xb9, 0xbf, 0xb8, 0xad, 0xdb, 0x2b, 0x25, 0x9d, 0x76, 0xb1, 0xbd, 0x02, 0x9d, 0x7a, 0xcd, 0xbf,
|
|
|
- 0x5a, 0xb0, 0xb7, 0x21, 0x33, 0xf4, 0x1e, 0xec, 0xf8, 0x53, 0x32, 0xa6, 0x09, 0x1d, 0x27, 0x13,
|
|
|
- 0xd4, 0x83, 0x62, 0x40, 0x46, 0x34, 0x50, 0x62, 0x53, 0x09, 0xff, 0xd9, 0x1b, 0xf5, 0xda, 0xfa,
|
|
|
- 0xa3, 0xc6, 0xf7, 0x42, 0xc9, 0xe7, 0xd8, 0x90, 0x91, 0x03, 0xbb, 0x2e, 0x9b, 0x4e, 0x49, 0xa8,
|
|
|
- 0xca, 0xda, 0xf6, 0x41, 0x09, 0x2f, 0xa7, 0x08, 0x41, 0x81, 0xf0, 0xb1, 0x70, 0x0a, 0xda, 0xac,
|
|
|
- 0xc7, 0xa8, 0x02, 0xdb, 0x34, 0x9c, 0x39, 0x3b, 0xda, 0xa4, 0x86, 0xca, 0xe2, 0xf9, 0x89, 0x5a,
|
|
|
- 0x4a, 0x58, 0x0d, 0x15, 0x2f, 0x16, 0x94, 0x3b, 0xbb, 0xda, 0xa4, 0xc7, 0xe8, 0x57, 0x50, 0x9c,
|
|
|
- 0xb2, 0x38, 0x94, 0xc2, 0xb1, 0x74, 0xb0, 0x0f, 0xb2, 0x82, 0x3d, 0x57, 0x08, 0x53, 0x76, 0x0d,
|
|
|
- 0x1c, 0xf5, 0x60, 0x5f, 0x48, 0x16, 0x0d, 0xc7, 0x9c, 0xb8, 0x74, 0x18, 0x51, 0xee, 0x33, 0xcf,
|
|
|
- 0x94, 0x8d, 0x07, 0xad, 0xa4, 0xcb, 0x68, 0x2d, 0xbb, 0x8c, 0x56, 0xd7, 0x74, 0x19, 0xf8, 0xbe,
|
|
|
- 0xe2, 0x9c, 0x28, 0x4a, 0x5f, 0x33, 0x50, 0x1f, 0xca, 0x51, 0x1c, 0x04, 0x43, 0x16, 0x25, 0x2f,
|
|
|
- 0x48, 0x72, 0xd8, 0x6f, 0x91, 0xb2, 0x7e, 0x1c, 0x04, 0xcf, 0x13, 0x12, 0xb6, 0xa3, 0xf5, 0x04,
|
|
|
- 0x7d, 0x00, 0xc5, 0x31, 0x67, 0x71, 0x24, 0x1c, 0x5b, 0x27, 0xc3, 0xcc, 0xd0, 0x17, 0xb0, 0x2b,
|
|
|
- 0xa8, 0xcb, 0xa9, 0x14, 0x4e, 0x59, 0x6f, 0xf5, 0xa3, 0xac, 0x45, 0x06, 0x1a, 0x82, 0xe9, 0x15,
|
|
|
- 0xe5, 0x34, 0x74, 0x29, 0x5e, 0x72, 0xd0, 0x03, 0xd8, 0x96, 0x72, 0xee, 0xec, 0x35, 0xf2, 0x07,
|
|
|
- 0x56, 0x67, 0x77, 0x71, 0x5b, 0xdf, 0xbe, 0xbc, 0x7c, 0x89, 0x95, 0x4d, 0x55, 0xb7, 0x09, 0x13,
|
|
|
- 0x32, 0x24, 0x53, 0xea, 0xdc, 0xd3, 0xb9, 0x5d, 0xcd, 0xd1, 0x4b, 0x00, 0x2f, 0x14, 0x43, 0x57,
|
|
|
- 0x5f, 0x27, 0xe7, 0xbe, 0xde, 0xdd, 0xa7, 0x6f, 0xde, 0x5d, 0xf7, 0x62, 0x60, 0x2a, 0xfc, 0xde,
|
|
|
- 0xe2, 0xb6, 0x5e, 0x5a, 0x4d, 0x71, 0xc9, 0x0b, 0x45, 0x32, 0x44, 0x1d, 0xb0, 0x27, 0x94, 0x04,
|
|
|
- 0x72, 0xe2, 0x4e, 0xa8, 0x7b, 0xed, 0x54, 0xee, 0x2e, 0xd9, 0xcf, 0x34, 0xcc, 0x78, 0x48, 0x93,
|
|
|
- 0x94, 0x82, 0x55, 0xa8, 0xc2, 0xd9, 0xd7, 0xb9, 0x4a, 0x26, 0xe8, 0x43, 0x00, 0x16, 0xd1, 0x70,
|
|
|
- 0x28, 0xa4, 0xe7, 0x87, 0x0e, 0x52, 0x5b, 0xc6, 0x25, 0x65, 0x19, 0x28, 0x03, 0x7a, 0xa8, 0x0a,
|
|
|
- 0x2a, 0xf1, 0x86, 0x2c, 0x0c, 0xe6, 0xce, 0x0f, 0xf4, 0x57, 0x4b, 0x19, 0x9e, 0x87, 0xc1, 0x1c,
|
|
|
- 0xd5, 0xc1, 0xd6, 0xba, 0x10, 0xfe, 0x38, 0x24, 0x81, 0xf3, 0x9e, 0xce, 0x07, 0x28, 0xd3, 0x40,
|
|
|
- 0x5b, 0xaa, 0x9f, 0x83, 0x9d, 0x92, 0xbb, 0x92, 0xe9, 0x35, 0x9d, 0x9b, 0x1b, 0xa4, 0x86, 0x2a,
|
|
|
- 0xa6, 0x19, 0x09, 0xe2, 0xa4, 0x4d, 0x2c, 0xe1, 0x64, 0xf2, 0xeb, 0xad, 0x27, 0xf9, 0xea, 0x11,
|
|
|
- 0xd8, 0xa9, 0x63, 0x47, 0x1f, 0xc1, 0x1e, 0xa7, 0x63, 0x5f, 0x48, 0x3e, 0x1f, 0x92, 0x58, 0x4e,
|
|
|
- 0x9c, 0xdf, 0x69, 0x42, 0x79, 0x69, 0x6c, 0xc7, 0x72, 0x52, 0x1d, 0xc2, 0x3a, 0x7b, 0xa8, 0x01,
|
|
|
- 0xb6, 0x3a, 0x15, 0x41, 0xf9, 0x8c, 0x72, 0xf5, 0x14, 0xa9, 0x4d, 0xa7, 0x4d, 0x4a, 0x3d, 0x82,
|
|
|
- 0x12, 0xee, 0x4e, 0xf4, 0xe5, 0x2d, 0x61, 0x33, 0x53, 0xb7, 0x71, 0x29, 0x51, 0x73, 0x1b, 0xcd,
|
|
|
- 0xb4, 0xd9, 0x04, 0x58, 0x97, 0xa1, 0xec, 0x92, 0xd0, 0xfc, 0x4f, 0x1e, 0xca, 0xe9, 0x57, 0x17,
|
|
|
- 0x1d, 0x27, 0xaf, 0xa5, 0x46, 0xdd, 0x3b, 0x3a, 0x7c, 0xd3, 0x2b, 0xad, 0xdf, 0xa6, 0x20, 0x56,
|
|
|
- 0x0b, 0x9e, 0xab, 0x06, 0x59, 0x93, 0xd1, 0x2f, 0x61, 0x27, 0x62, 0x5c, 0x2e, 0xeb, 0x4c, 0x76,
|
|
|
- 0x85, 0x64, 0x7c, 0x59, 0xcb, 0x13, 0x70, 0x73, 0x02, 0xf7, 0x36, 0xbd, 0xa1, 0xc7, 0xb0, 0xfd,
|
|
|
- 0xe2, 0xb4, 0x5f, 0xc9, 0x55, 0x1f, 0xbe, 0xba, 0x69, 0xfc, 0x70, 0xf3, 0xe3, 0x0b, 0x9f, 0xcb,
|
|
|
- 0x98, 0x04, 0xa7, 0x7d, 0xf4, 0x53, 0xd8, 0xe9, 0x5e, 0x0c, 0x30, 0xae, 0xe4, 0xab, 0xf5, 0x57,
|
|
|
- 0x37, 0x8d, 0x87, 0x9b, 0x38, 0xf5, 0x89, 0xc5, 0xa1, 0x87, 0xd9, 0x68, 0xd5, 0x2c, 0xfe, 0x63,
|
|
|
- 0x0b, 0x6c, 0x53, 0x7e, 0xdf, 0xf5, 0xff, 0xc4, 0x5e, 0xf2, 0x16, 0x2e, 0xef, 0xd5, 0xd6, 0x1b,
|
|
|
- 0x9f, 0xc4, 0x72, 0x42, 0x30, 0x3a, 0x78, 0x04, 0x65, 0x3f, 0x9a, 0x7d, 0x36, 0xa4, 0x21, 0x19,
|
|
|
- 0x05, 0xa6, 0x6f, 0xb4, 0xb0, 0xad, 0x6c, 0xbd, 0xc4, 0xa4, 0x2e, 0xb5, 0x1f, 0x4a, 0xca, 0x43,
|
|
|
- 0xd3, 0x11, 0x5a, 0x78, 0x35, 0x47, 0x5f, 0x40, 0xc1, 0x8f, 0xc8, 0xd4, 0xbc, 0xe3, 0x99, 0x3b,
|
|
|
- 0x38, 0xed, 0xb7, 0xcf, 0x8d, 0x4e, 0x3b, 0xd6, 0xe2, 0xb6, 0x5e, 0x50, 0x06, 0xac, 0x69, 0xa8,
|
|
|
- 0xb6, 0x7c, 0x4a, 0xd5, 0x4a, 0xba, 0x40, 0x5b, 0x38, 0x65, 0x69, 0xfe, 0xb7, 0x00, 0xf6, 0x71,
|
|
|
- 0x10, 0x0b, 0x69, 0x9e, 0x99, 0x77, 0x96, 0xb7, 0x97, 0xb0, 0x4f, 0xf4, 0xaf, 0x05, 0x09, 0x55,
|
|
|
- 0xcd, 0xd6, 0x2d, 0x8a, 0xc9, 0xdd, 0xe3, 0x4c, 0x77, 0x2b, 0x70, 0xd2, 0xce, 0x74, 0x8a, 0xca,
|
|
|
- 0xa7, 0x93, 0xc7, 0x15, 0xf2, 0xad, 0x2f, 0x68, 0x00, 0x7b, 0x8c, 0xbb, 0x13, 0x2a, 0x64, 0x52,
|
|
|
- 0xe9, 0x4d, 0x2b, 0x9e, 0xf9, 0x93, 0xf6, 0x3c, 0x0d, 0x34, 0x65, 0x2e, 0x89, 0x76, 0xd3, 0x07,
|
|
|
- 0x7a, 0x02, 0x05, 0x4e, 0xae, 0x96, 0xed, 0x56, 0xa6, 0xbe, 0x31, 0xb9, 0x92, 0x1b, 0x2e, 0x34,
|
|
|
- 0x03, 0xfd, 0x01, 0xc0, 0xf3, 0x45, 0x44, 0xa4, 0x3b, 0xa1, 0xdc, 0x9c, 0x53, 0xe6, 0x16, 0xbb,
|
|
|
- 0x2b, 0xd4, 0x86, 0x97, 0x14, 0x1b, 0x9d, 0x41, 0xc9, 0x25, 0x4b, 0xa5, 0x15, 0xef, 0xfe, 0x3f,
|
|
|
- 0x39, 0x6e, 0x1b, 0x17, 0x15, 0xe5, 0x62, 0x71, 0x5b, 0xb7, 0x96, 0x16, 0x6c, 0xb9, 0xc4, 0x28,
|
|
|
- 0xef, 0x0c, 0xf6, 0xd4, 0x7f, 0xcb, 0xd0, 0xa3, 0x57, 0x24, 0x0e, 0xa4, 0xd0, 0x8f, 0xf1, 0x1d,
|
|
|
- 0x65, 0x5b, 0x35, 0xc1, 0x5d, 0x83, 0x33, 0x71, 0x95, 0x65, 0xca, 0x86, 0xfe, 0x04, 0xfb, 0x34,
|
|
|
- 0x74, 0xf9, 0x5c, 0xeb, 0x6c, 0x19, 0xa1, 0x75, 0xf7, 0x66, 0x7b, 0x2b, 0xf0, 0xc6, 0x66, 0x2b,
|
|
|
- 0xf4, 0x5b, 0xf6, 0xa6, 0x0f, 0x90, 0x3c, 0x84, 0xef, 0x56, 0x7f, 0x08, 0x0a, 0x1e, 0x91, 0x44,
|
|
|
- 0x4b, 0xae, 0x8c, 0xf5, 0xb8, 0xe3, 0xbc, 0xfe, 0xa6, 0x96, 0xfb, 0xd7, 0x37, 0xb5, 0xdc, 0x5f,
|
|
|
- 0x16, 0xb5, 0xfc, 0xeb, 0x45, 0x2d, 0xff, 0xcf, 0x45, 0x2d, 0xff, 0xef, 0x45, 0x2d, 0x3f, 0x2a,
|
|
|
- 0xea, 0xf6, 0xe1, 0x17, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x91, 0xbf, 0x5e, 0xca, 0xf8, 0x10,
|
|
|
- 0x00, 0x00,
|
|
|
+ 0xe1, 0xad, 0xc7, 0x8c, 0x0f, 0x3d, 0xf5, 0xaa, 0xe9, 0xa1, 0xbf, 0xa1, 0xff, 0xc1, 0xc7, 0x1e,
|
|
|
+ 0x7b, 0xd2, 0x34, 0xfc, 0x0b, 0xfd, 0x01, 0xed, 0x00, 0x0b, 0x92, 0xcb, 0x64, 0x15, 0x7b, 0x26,
|
|
|
+ 0xbe, 0xe1, 0xbd, 0xfd, 0xbe, 0x07, 0xe0, 0xe1, 0xc3, 0xc3, 0x5b, 0xb0, 0x45, 0x44, 0x5d, 0xd1,
|
|
|
+ 0x8a, 0x38, 0x93, 0x0c, 0x21, 0x8f, 0xb9, 0x57, 0x94, 0xb7, 0xc4, 0x97, 0x84, 0x4f, 0xaf, 0x7c,
|
|
|
+ 0xd9, 0x9a, 0xfd, 0xbc, 0x6a, 0xcb, 0x79, 0x44, 0x0d, 0xa0, 0x7a, 0x7f, 0xcc, 0xc6, 0x4c, 0x0f,
|
|
|
+ 0x0f, 0xd4, 0xc8, 0x78, 0x6b, 0x63, 0xc6, 0xc6, 0x01, 0x3d, 0xd0, 0xd6, 0x28, 0xbe, 0x3c, 0xf0,
|
|
|
+ 0x62, 0x4e, 0xa4, 0xcf, 0xc2, 0xe4, 0x7b, 0xf3, 0xba, 0x00, 0xd6, 0x39, 0xf3, 0xe8, 0x20, 0xa2,
|
|
|
+ 0x2e, 0x3a, 0x06, 0x9b, 0x84, 0x21, 0x93, 0x1a, 0x20, 0x9c, 0x7c, 0x23, 0xbf, 0x6f, 0x1f, 0xd6,
|
|
|
+ 0x5b, 0xdf, 0x9e, 0xb9, 0xd5, 0x5e, 0xc3, 0x3a, 0x85, 0xd7, 0x37, 0xf5, 0x1c, 0x4e, 0x33, 0xd1,
|
|
|
+ 0x6f, 0xa1, 0xec, 0x51, 0xe1, 0x73, 0xea, 0x0d, 0x39, 0x0b, 0xa8, 0xb3, 0xd5, 0xc8, 0xef, 0xdf,
|
|
|
+ 0x39, 0xfc, 0x51, 0x56, 0x24, 0x35, 0x39, 0x66, 0x01, 0xc5, 0xb6, 0x61, 0x28, 0x03, 0x1d, 0x03,
|
|
|
+ 0x4c, 0xe9, 0x74, 0x44, 0xb9, 0x98, 0xf8, 0x91, 0xb3, 0xad, 0xe9, 0x3f, 0xb9, 0x8d, 0xae, 0xd6,
|
|
|
+ 0xde, 0x3a, 0x5b, 0xc1, 0x71, 0x8a, 0x8a, 0xce, 0xa0, 0x4c, 0x66, 0xc4, 0x0f, 0xc8, 0xc8, 0x0f,
|
|
|
+ 0x7c, 0x39, 0x77, 0x0a, 0x3a, 0xd4, 0xc7, 0xdf, 0x19, 0xaa, 0x9d, 0x22, 0xe0, 0x0d, 0x7a, 0xd3,
|
|
|
+ 0x03, 0x58, 0x4f, 0x84, 0x3e, 0x82, 0xdd, 0x7e, 0xef, 0xbc, 0x7b, 0x72, 0x7e, 0x5c, 0xc9, 0x55,
|
|
|
+ 0x1f, 0xbc, 0xba, 0x6e, 0xbc, 0xa7, 0x62, 0xac, 0x01, 0x7d, 0x1a, 0x7a, 0x7e, 0x38, 0x46, 0xfb,
|
|
|
+ 0x60, 0xb5, 0x8f, 0x8e, 0x7a, 0xfd, 0x8b, 0x5e, 0xb7, 0x92, 0xaf, 0x56, 0x5f, 0x5d, 0x37, 0xde,
|
|
|
+ 0xdf, 0x04, 0xb6, 0x5d, 0x97, 0x46, 0x92, 0x7a, 0xd5, 0xc2, 0x57, 0xff, 0xa8, 0xe5, 0x9a, 0x5f,
|
|
|
+ 0xe5, 0xa1, 0x9c, 0x5e, 0x04, 0xfa, 0x08, 0x8a, 0xed, 0xa3, 0x8b, 0x93, 0x17, 0xbd, 0x4a, 0x6e,
|
|
|
+ 0x4d, 0x4f, 0x23, 0xda, 0xae, 0xf4, 0x67, 0x14, 0x3d, 0x86, 0x9d, 0x7e, 0xfb, 0x8b, 0x41, 0xaf,
|
|
|
+ 0x92, 0x5f, 0x2f, 0x27, 0x0d, 0xeb, 0x93, 0x58, 0x68, 0x54, 0x17, 0xb7, 0x4f, 0xce, 0x2b, 0x5b,
|
|
|
+ 0xd9, 0xa8, 0x2e, 0x27, 0x7e, 0x68, 0x96, 0xf2, 0xf7, 0x02, 0xd8, 0x03, 0xca, 0x67, 0xbe, 0xfb,
|
|
|
+ 0x8e, 0x25, 0xf2, 0x29, 0x14, 0x24, 0x11, 0x57, 0x5a, 0x1a, 0x76, 0xb6, 0x34, 0x2e, 0x88, 0xb8,
|
|
|
+ 0x52, 0x93, 0x1a, 0xba, 0xc6, 0x2b, 0x65, 0x70, 0x1a, 0x05, 0xbe, 0x4b, 0x24, 0xf5, 0xb4, 0x32,
|
|
|
+ 0xec, 0xc3, 0x1f, 0x67, 0xb1, 0xf1, 0x0a, 0x65, 0xd6, 0xff, 0x2c, 0x87, 0x53, 0x54, 0xf4, 0x14,
|
|
|
+ 0x8a, 0xe3, 0x80, 0x8d, 0x48, 0xa0, 0x35, 0x61, 0x1f, 0x3e, 0xca, 0x0a, 0x72, 0xac, 0x11, 0xeb,
|
|
|
+ 0x00, 0x86, 0x82, 0x9e, 0x40, 0x31, 0x8e, 0x3c, 0x22, 0xa9, 0x53, 0xd4, 0xe4, 0x46, 0x16, 0xf9,
|
|
|
+ 0x0b, 0x8d, 0x38, 0x62, 0xe1, 0xa5, 0x3f, 0xc6, 0x06, 0x8f, 0x4e, 0xc1, 0x0a, 0xa9, 0xfc, 0x92,
|
|
|
+ 0xf1, 0x2b, 0xe1, 0xec, 0x36, 0xb6, 0xf7, 0xed, 0xc3, 0x4f, 0x32, 0xc5, 0x98, 0x60, 0xda, 0x52,
|
|
|
+ 0x12, 0x77, 0x32, 0xa5, 0xa1, 0x4c, 0xc2, 0x74, 0xb6, 0x9c, 0x3c, 0x5e, 0x05, 0x40, 0xbf, 0x01,
|
|
|
+ 0x8b, 0x86, 0x5e, 0xc4, 0xfc, 0x50, 0x3a, 0xd6, 0xed, 0x0b, 0xe9, 0x19, 0x8c, 0x4a, 0x26, 0x5e,
|
|
|
+ 0x31, 0x14, 0x9b, 0xb3, 0x20, 0x18, 0x11, 0xf7, 0xca, 0x29, 0xbd, 0xe5, 0x36, 0x56, 0x8c, 0x4e,
|
|
|
+ 0x11, 0x0a, 0x53, 0xe6, 0xd1, 0xe6, 0x01, 0xdc, 0xfb, 0x56, 0xaa, 0x51, 0x15, 0x2c, 0x93, 0xea,
|
|
|
+ 0x44, 0x23, 0x05, 0xbc, 0xb2, 0x9b, 0x77, 0x61, 0x6f, 0x23, 0xad, 0xcd, 0xbf, 0x16, 0xc0, 0x5a,
|
|
|
+ 0x9e, 0x35, 0x6a, 0x43, 0xc9, 0x65, 0xa1, 0x24, 0x7e, 0x48, 0xb9, 0x91, 0x57, 0xe6, 0xc9, 0x1c,
|
|
|
+ 0x2d, 0x41, 0x8a, 0xf5, 0x2c, 0x87, 0xd7, 0x2c, 0xf4, 0x7b, 0x28, 0x71, 0x2a, 0x58, 0xcc, 0x5d,
|
|
|
+ 0x2a, 0x8c, 0xbe, 0xf6, 0xb3, 0x15, 0x92, 0x80, 0x30, 0xfd, 0x73, 0xec, 0x73, 0xaa, 0xb2, 0x2c,
|
|
|
+ 0xf0, 0x9a, 0x8a, 0x9e, 0xc2, 0x2e, 0xa7, 0x42, 0x12, 0x2e, 0xbf, 0x4b, 0x22, 0x38, 0x81, 0xf4,
|
|
|
+ 0x59, 0xe0, 0xbb, 0x73, 0xbc, 0x64, 0xa0, 0xa7, 0x50, 0x8a, 0x02, 0xe2, 0xea, 0xa8, 0xce, 0x8e,
|
|
|
+ 0xa6, 0x7f, 0x90, 0x45, 0xef, 0x2f, 0x41, 0x78, 0x8d, 0x47, 0x9f, 0x01, 0x04, 0x6c, 0x3c, 0xf4,
|
|
|
+ 0xb8, 0x3f, 0xa3, 0xdc, 0x48, 0xac, 0x9a, 0xc5, 0xee, 0x6a, 0x04, 0x2e, 0x05, 0x6c, 0x9c, 0x0c,
|
|
|
+ 0xd1, 0xf1, 0xf7, 0xd2, 0x57, 0x4a, 0x5b, 0xa7, 0x00, 0x64, 0xf5, 0xd5, 0xa8, 0xeb, 0xe3, 0xb7,
|
|
|
+ 0x0a, 0x65, 0x4e, 0x24, 0x45, 0x47, 0x8f, 0xa0, 0x7c, 0xc9, 0xb8, 0x4b, 0x87, 0xe6, 0xd6, 0x94,
|
|
|
+ 0xb4, 0x26, 0x6c, 0xed, 0x4b, 0xf4, 0xd5, 0x29, 0xc1, 0x2e, 0x8f, 0x43, 0xe9, 0x4f, 0x69, 0xf3,
|
|
|
+ 0x14, 0xde, 0xcb, 0x0c, 0x8a, 0x0e, 0xa1, 0xbc, 0x3a, 0xe6, 0xa1, 0xef, 0x69, 0x7d, 0x94, 0x3a,
|
|
|
+ 0x77, 0x17, 0x37, 0x75, 0x7b, 0xa5, 0x87, 0x93, 0x2e, 0xb6, 0x57, 0xa0, 0x13, 0xaf, 0xf9, 0x37,
|
|
|
+ 0x0b, 0xf6, 0x36, 0xc4, 0x82, 0xee, 0xc3, 0x8e, 0x3f, 0x25, 0x63, 0x9a, 0xd0, 0x71, 0x62, 0xa0,
|
|
|
+ 0x1e, 0x14, 0x03, 0x32, 0xa2, 0x81, 0x92, 0x8c, 0x4a, 0xdb, 0xcf, 0xde, 0xa8, 0xba, 0xd6, 0x1f,
|
|
|
+ 0x35, 0xbe, 0x17, 0x4a, 0x3e, 0xc7, 0x86, 0x8c, 0x1c, 0xd8, 0x75, 0xd9, 0x74, 0x4a, 0x42, 0x55,
|
|
|
+ 0x9c, 0xb6, 0xf7, 0x4b, 0x78, 0x69, 0x22, 0x04, 0x05, 0xc2, 0xc7, 0xc2, 0x29, 0x68, 0xb7, 0x1e,
|
|
|
+ 0xa3, 0x0a, 0x6c, 0xd3, 0x70, 0xe6, 0xec, 0x68, 0x97, 0x1a, 0x2a, 0x8f, 0xe7, 0x27, 0x67, 0x5e,
|
|
|
+ 0xc2, 0x6a, 0xa8, 0x78, 0xb1, 0xa0, 0xdc, 0xd9, 0xd5, 0x2e, 0x3d, 0x46, 0xbf, 0x82, 0xe2, 0x94,
|
|
|
+ 0xc5, 0xa1, 0x14, 0x8e, 0xa5, 0x17, 0xfb, 0x20, 0x6b, 0xb1, 0x67, 0x0a, 0x61, 0x8a, 0xa7, 0x81,
|
|
|
+ 0xa3, 0x1e, 0xdc, 0x13, 0x92, 0x45, 0xc3, 0x31, 0x27, 0x2e, 0x1d, 0x46, 0x94, 0xfb, 0xcc, 0x33,
|
|
|
+ 0x97, 0xff, 0x41, 0x2b, 0xe9, 0x15, 0x5a, 0xcb, 0x5e, 0xa1, 0xd5, 0x35, 0xbd, 0x02, 0xbe, 0xab,
|
|
|
+ 0x38, 0xc7, 0x8a, 0xd2, 0xd7, 0x0c, 0xd4, 0x87, 0x72, 0x14, 0x07, 0xc1, 0x90, 0x45, 0xc9, 0x3b,
|
|
|
+ 0x00, 0x3a, 0xc2, 0x5b, 0xa4, 0xac, 0x1f, 0x07, 0xc1, 0xf3, 0x84, 0x84, 0xed, 0x68, 0x6d, 0xa0,
|
|
|
+ 0xf7, 0xa1, 0x38, 0xe6, 0x2c, 0x8e, 0x84, 0x63, 0xeb, 0x64, 0x18, 0x0b, 0x7d, 0x0e, 0xbb, 0x82,
|
|
|
+ 0xba, 0x9c, 0x4a, 0xe1, 0x94, 0xf5, 0x56, 0x3f, 0xcc, 0x9a, 0x64, 0xa0, 0x21, 0x98, 0x5e, 0x52,
|
|
|
+ 0x4e, 0x43, 0x97, 0xe2, 0x25, 0x07, 0x3d, 0x80, 0x6d, 0x29, 0xe7, 0xce, 0x5e, 0x23, 0xbf, 0x6f,
|
|
|
+ 0x75, 0x76, 0x17, 0x37, 0xf5, 0xed, 0x8b, 0x8b, 0x97, 0x58, 0xf9, 0x54, 0x8d, 0x9a, 0x30, 0x21,
|
|
|
+ 0x43, 0x32, 0xa5, 0xce, 0x1d, 0x9d, 0xdb, 0x95, 0x8d, 0x5e, 0x02, 0x78, 0xa1, 0x18, 0xba, 0xfa,
|
|
|
+ 0x52, 0x38, 0x77, 0xf5, 0xee, 0x3e, 0x79, 0xf3, 0xee, 0xba, 0xe7, 0x03, 0x53, 0xa7, 0xf7, 0x16,
|
|
|
+ 0x37, 0xf5, 0xd2, 0xca, 0xc4, 0x25, 0x2f, 0x14, 0xc9, 0x10, 0x75, 0xc0, 0x9e, 0x50, 0x12, 0xc8,
|
|
|
+ 0x89, 0x3b, 0xa1, 0xee, 0x95, 0x53, 0xb9, 0xbd, 0xf0, 0x3e, 0xd3, 0x30, 0x13, 0x21, 0x4d, 0x52,
|
|
|
+ 0x0a, 0x56, 0x4b, 0x15, 0xce, 0x3d, 0x9d, 0xab, 0xc4, 0x40, 0x1f, 0x00, 0xb0, 0x88, 0x86, 0x43,
|
|
|
+ 0x21, 0x3d, 0x3f, 0x74, 0x90, 0xda, 0x32, 0x2e, 0x29, 0xcf, 0x40, 0x39, 0xd0, 0x43, 0x55, 0x16,
|
|
|
+ 0x89, 0x37, 0x64, 0x61, 0x30, 0x77, 0x7e, 0xa0, 0xbf, 0x5a, 0xca, 0xf1, 0x3c, 0x0c, 0xe6, 0xa8,
|
|
|
+ 0x0e, 0xb6, 0xd6, 0x85, 0xf0, 0xc7, 0x21, 0x09, 0x9c, 0xfb, 0x3a, 0x1f, 0xa0, 0x5c, 0x03, 0xed,
|
|
|
+ 0xa9, 0x7e, 0x06, 0x76, 0x4a, 0xee, 0x4a, 0xa6, 0x57, 0x74, 0x6e, 0x6e, 0x90, 0x1a, 0xaa, 0x35,
|
|
|
+ 0xcd, 0x48, 0x10, 0x27, 0xcd, 0x5e, 0x09, 0x27, 0xc6, 0xaf, 0xb7, 0x9e, 0xe4, 0xab, 0x87, 0x60,
|
|
|
+ 0xa7, 0x8e, 0x1d, 0x7d, 0x08, 0x7b, 0x9c, 0x8e, 0x7d, 0x21, 0xf9, 0x7c, 0x48, 0x62, 0x39, 0x71,
|
|
|
+ 0x7e, 0xa7, 0x09, 0xe5, 0xa5, 0xb3, 0x1d, 0xcb, 0x49, 0x75, 0x08, 0xeb, 0xec, 0xa1, 0x06, 0xd8,
|
|
|
+ 0xea, 0x54, 0x04, 0xe5, 0x33, 0xca, 0xd5, 0x83, 0xa2, 0x36, 0x9d, 0x76, 0x29, 0xf5, 0x08, 0x4a,
|
|
|
+ 0xb8, 0x3b, 0xd1, 0x97, 0xb7, 0x84, 0x8d, 0xa5, 0x6e, 0xe3, 0x52, 0xa2, 0xe6, 0x36, 0x1a, 0xb3,
|
|
|
+ 0xf9, 0xdf, 0x3c, 0x94, 0xd3, 0xef, 0x22, 0x3a, 0x4a, 0xde, 0x33, 0xbd, 0xa5, 0x3b, 0x87, 0x07,
|
|
|
+ 0x6f, 0x7a, 0x47, 0xf5, 0xeb, 0x11, 0xc4, 0x2a, 0xd8, 0x99, 0x6a, 0x61, 0x35, 0x19, 0xfd, 0x12,
|
|
|
+ 0x76, 0x22, 0xc6, 0xe5, 0xb2, 0x86, 0xd4, 0x32, 0x2b, 0x3e, 0xe3, 0xcb, 0x6a, 0x9b, 0x80, 0x9b,
|
|
|
+ 0x13, 0xb8, 0xb3, 0x19, 0x0d, 0x3d, 0x86, 0xed, 0x17, 0x27, 0xfd, 0x4a, 0xae, 0xfa, 0xf0, 0xd5,
|
|
|
+ 0x75, 0xe3, 0x87, 0x9b, 0x1f, 0x5f, 0xf8, 0x5c, 0xc6, 0x24, 0x38, 0xe9, 0xa3, 0x9f, 0xc2, 0x4e,
|
|
|
+ 0xf7, 0x7c, 0x80, 0x71, 0x25, 0x5f, 0xad, 0xbf, 0xba, 0x6e, 0x3c, 0xdc, 0xc4, 0xa9, 0x4f, 0x2c,
|
|
|
+ 0x0e, 0x3d, 0xcc, 0x46, 0xab, 0x76, 0xee, 0x9f, 0x5b, 0x60, 0x9b, 0xd2, 0xfa, 0xae, 0x3b, 0xfe,
|
|
|
+ 0xbd, 0xe4, 0xb5, 0x5a, 0xde, 0x99, 0xad, 0x37, 0x3e, 0x5a, 0xe5, 0x84, 0x60, 0xce, 0xf8, 0x11,
|
|
|
+ 0x94, 0xfd, 0x68, 0xf6, 0xe9, 0x90, 0x86, 0x64, 0x14, 0x98, 0xce, 0xce, 0xc2, 0xb6, 0xf2, 0xf5,
|
|
|
+ 0x12, 0x97, 0xba, 0xb0, 0x7e, 0x28, 0x29, 0x0f, 0x4d, 0xcf, 0x66, 0xe1, 0x95, 0x8d, 0x3e, 0x87,
|
|
|
+ 0x82, 0x1f, 0x91, 0xa9, 0x79, 0x69, 0x33, 0x77, 0x70, 0xd2, 0x6f, 0x9f, 0x19, 0x0d, 0x76, 0xac,
|
|
|
+ 0xc5, 0x4d, 0xbd, 0xa0, 0x1c, 0x58, 0xd3, 0x50, 0x6d, 0xf9, 0xd8, 0xa9, 0x99, 0x74, 0xf1, 0xb5,
|
|
|
+ 0x70, 0xca, 0xd3, 0xfc, 0x5f, 0x01, 0xec, 0xa3, 0x20, 0x16, 0xd2, 0x3c, 0x21, 0xef, 0x2c, 0x6f,
|
|
|
+ 0x2f, 0xe1, 0x1e, 0xd1, 0xcd, 0x3f, 0x09, 0x55, 0x3d, 0xd6, 0x4d, 0x84, 0xc9, 0xdd, 0xe3, 0xcc,
|
|
|
+ 0x70, 0x2b, 0x70, 0xd2, 0x70, 0x74, 0x8a, 0x2a, 0xa6, 0x93, 0xc7, 0x15, 0xf2, 0x8d, 0x2f, 0x68,
|
|
|
+ 0x00, 0x7b, 0x8c, 0xbb, 0x13, 0x2a, 0x64, 0x52, 0xc5, 0x4d, 0xb3, 0x9c, 0xf9, 0x1b, 0xf5, 0x3c,
|
|
|
+ 0x0d, 0x34, 0x25, 0x2c, 0x59, 0xed, 0x66, 0x0c, 0xf4, 0x04, 0x0a, 0x9c, 0x5c, 0x2e, 0x1b, 0xa2,
|
|
|
+ 0x4c, 0x7d, 0x63, 0x72, 0x29, 0x37, 0x42, 0x68, 0x06, 0xfa, 0x03, 0x80, 0xe7, 0x8b, 0x88, 0x48,
|
|
|
+ 0x77, 0x42, 0xb9, 0x39, 0xa7, 0xcc, 0x2d, 0x76, 0x57, 0xa8, 0x8d, 0x28, 0x29, 0x36, 0x3a, 0x85,
|
|
|
+ 0x92, 0x4b, 0x96, 0x4a, 0x2b, 0xde, 0xfe, 0x07, 0x71, 0xd4, 0x36, 0x21, 0x2a, 0x2a, 0xc4, 0xe2,
|
|
|
+ 0xa6, 0x6e, 0x2d, 0x3d, 0xd8, 0x72, 0x89, 0x51, 0xde, 0x29, 0xec, 0xa9, 0x3f, 0x8b, 0xa1, 0x47,
|
|
|
+ 0x2f, 0x49, 0x1c, 0x48, 0xa1, 0x1f, 0xda, 0x5b, 0x4a, 0xb2, 0x6a, 0x53, 0xbb, 0x06, 0x67, 0xd6,
|
|
|
+ 0x55, 0x96, 0x29, 0x1f, 0xfa, 0x13, 0xdc, 0xa3, 0xa1, 0xcb, 0xe7, 0x5a, 0x67, 0xcb, 0x15, 0x5a,
|
|
|
+ 0xb7, 0x6f, 0xb6, 0xb7, 0x02, 0x6f, 0x6c, 0xb6, 0x42, 0xbf, 0xe1, 0x6f, 0xfa, 0x00, 0xc9, 0x23,
|
|
|
+ 0xf7, 0x6e, 0xf5, 0x87, 0xa0, 0xe0, 0x11, 0x49, 0xb4, 0xe4, 0xca, 0x58, 0x8f, 0x3b, 0xce, 0xeb,
|
|
|
+ 0xaf, 0x6b, 0xb9, 0x7f, 0x7f, 0x5d, 0xcb, 0xfd, 0x65, 0x51, 0xcb, 0xbf, 0x5e, 0xd4, 0xf2, 0xff,
|
|
|
+ 0x5a, 0xd4, 0xf2, 0xff, 0x59, 0xd4, 0xf2, 0xa3, 0xa2, 0x6e, 0x0d, 0x7e, 0xf1, 0xff, 0x00, 0x00,
|
|
|
+ 0x00, 0xff, 0xff, 0xed, 0xbe, 0x26, 0xe6, 0x9a, 0x10, 0x00, 0x00,
|
|
|
}
|