pulumi/sdk/proto/go/analyzer.pb.go
Alex Clemmer cd86475009 Add GetAnalyzerInfo to Analyzer gRPC definition
`GetAnalyzerInfo` is an RPC command that allows the Pulumi CLI to ask an
`Analyzer` for metadata about the resource policies it defines.

This is useful because the Pulumi service needs to be able to render
metadata about a policy pack after the user runs a `pulumi policy
publish`. Since we don't execute code on the server, the first step of
`policy publish` is to interrogate the policy pack program about what
policies it has, so that this metadata can be sent to the server, along
with a packed version of those policies.
2019-07-16 00:58:33 -07:00

537 lines
19 KiB
Go

// Code generated by protoc-gen-go. DO NOT EDIT.
// source: analyzer.proto
package pulumirpc
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import empty "github.com/golang/protobuf/ptypes/empty"
import _struct "github.com/golang/protobuf/ptypes/struct"
import (
context "golang.org/x/net/context"
grpc "google.golang.org/grpc"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
// EnforcementLevel indicates the severity of a policy violation.
type EnforcementLevel int32
const (
EnforcementLevel_ADVISORY EnforcementLevel = 0
EnforcementLevel_MANDATORY EnforcementLevel = 1
)
var EnforcementLevel_name = map[int32]string{
0: "ADVISORY",
1: "MANDATORY",
}
var EnforcementLevel_value = map[string]int32{
"ADVISORY": 0,
"MANDATORY": 1,
}
func (x EnforcementLevel) String() string {
return proto.EnumName(EnforcementLevel_name, int32(x))
}
func (EnforcementLevel) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_analyzer_eb1faef40b250be3, []int{0}
}
type AnalyzeRequest struct {
Type string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"`
Properties *_struct.Struct `protobuf:"bytes,2,opt,name=properties" json:"properties,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AnalyzeRequest) Reset() { *m = AnalyzeRequest{} }
func (m *AnalyzeRequest) String() string { return proto.CompactTextString(m) }
func (*AnalyzeRequest) ProtoMessage() {}
func (*AnalyzeRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_analyzer_eb1faef40b250be3, []int{0}
}
func (m *AnalyzeRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AnalyzeRequest.Unmarshal(m, b)
}
func (m *AnalyzeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AnalyzeRequest.Marshal(b, m, deterministic)
}
func (dst *AnalyzeRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_AnalyzeRequest.Merge(dst, src)
}
func (m *AnalyzeRequest) XXX_Size() int {
return xxx_messageInfo_AnalyzeRequest.Size(m)
}
func (m *AnalyzeRequest) XXX_DiscardUnknown() {
xxx_messageInfo_AnalyzeRequest.DiscardUnknown(m)
}
var xxx_messageInfo_AnalyzeRequest proto.InternalMessageInfo
func (m *AnalyzeRequest) GetType() string {
if m != nil {
return m.Type
}
return ""
}
func (m *AnalyzeRequest) GetProperties() *_struct.Struct {
if m != nil {
return m.Properties
}
return nil
}
type AnalyzeResponse struct {
Diagnostics []*AnalyzeDiagnostic `protobuf:"bytes,2,rep,name=diagnostics" json:"diagnostics,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AnalyzeResponse) Reset() { *m = AnalyzeResponse{} }
func (m *AnalyzeResponse) String() string { return proto.CompactTextString(m) }
func (*AnalyzeResponse) ProtoMessage() {}
func (*AnalyzeResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_analyzer_eb1faef40b250be3, []int{1}
}
func (m *AnalyzeResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AnalyzeResponse.Unmarshal(m, b)
}
func (m *AnalyzeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AnalyzeResponse.Marshal(b, m, deterministic)
}
func (dst *AnalyzeResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_AnalyzeResponse.Merge(dst, src)
}
func (m *AnalyzeResponse) XXX_Size() int {
return xxx_messageInfo_AnalyzeResponse.Size(m)
}
func (m *AnalyzeResponse) XXX_DiscardUnknown() {
xxx_messageInfo_AnalyzeResponse.DiscardUnknown(m)
}
var xxx_messageInfo_AnalyzeResponse proto.InternalMessageInfo
func (m *AnalyzeResponse) GetDiagnostics() []*AnalyzeDiagnostic {
if m != nil {
return m.Diagnostics
}
return nil
}
type AnalyzeDiagnostic struct {
PolicyName string `protobuf:"bytes,1,opt,name=policyName" json:"policyName,omitempty"`
PolicyPackName string `protobuf:"bytes,2,opt,name=policyPackName" json:"policyPackName,omitempty"`
PolicyPackVersion string `protobuf:"bytes,3,opt,name=policyPackVersion" json:"policyPackVersion,omitempty"`
Description string `protobuf:"bytes,4,opt,name=description" json:"description,omitempty"`
Message string `protobuf:"bytes,5,opt,name=message" json:"message,omitempty"`
Tags []string `protobuf:"bytes,6,rep,name=tags" json:"tags,omitempty"`
EnforcementLevel EnforcementLevel `protobuf:"varint,7,opt,name=enforcementLevel,enum=pulumirpc.EnforcementLevel" json:"enforcementLevel,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AnalyzeDiagnostic) Reset() { *m = AnalyzeDiagnostic{} }
func (m *AnalyzeDiagnostic) String() string { return proto.CompactTextString(m) }
func (*AnalyzeDiagnostic) ProtoMessage() {}
func (*AnalyzeDiagnostic) Descriptor() ([]byte, []int) {
return fileDescriptor_analyzer_eb1faef40b250be3, []int{2}
}
func (m *AnalyzeDiagnostic) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AnalyzeDiagnostic.Unmarshal(m, b)
}
func (m *AnalyzeDiagnostic) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AnalyzeDiagnostic.Marshal(b, m, deterministic)
}
func (dst *AnalyzeDiagnostic) XXX_Merge(src proto.Message) {
xxx_messageInfo_AnalyzeDiagnostic.Merge(dst, src)
}
func (m *AnalyzeDiagnostic) XXX_Size() int {
return xxx_messageInfo_AnalyzeDiagnostic.Size(m)
}
func (m *AnalyzeDiagnostic) XXX_DiscardUnknown() {
xxx_messageInfo_AnalyzeDiagnostic.DiscardUnknown(m)
}
var xxx_messageInfo_AnalyzeDiagnostic proto.InternalMessageInfo
func (m *AnalyzeDiagnostic) GetPolicyName() string {
if m != nil {
return m.PolicyName
}
return ""
}
func (m *AnalyzeDiagnostic) GetPolicyPackName() string {
if m != nil {
return m.PolicyPackName
}
return ""
}
func (m *AnalyzeDiagnostic) GetPolicyPackVersion() string {
if m != nil {
return m.PolicyPackVersion
}
return ""
}
func (m *AnalyzeDiagnostic) GetDescription() string {
if m != nil {
return m.Description
}
return ""
}
func (m *AnalyzeDiagnostic) GetMessage() string {
if m != nil {
return m.Message
}
return ""
}
func (m *AnalyzeDiagnostic) GetTags() []string {
if m != nil {
return m.Tags
}
return nil
}
func (m *AnalyzeDiagnostic) GetEnforcementLevel() EnforcementLevel {
if m != nil {
return m.EnforcementLevel
}
return EnforcementLevel_ADVISORY
}
// AnalyzerInfo provides metadata about a PolicyPack inside an analyzer.
type AnalyzerInfo struct {
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
DisplayName string `protobuf:"bytes,2,opt,name=displayName" json:"displayName,omitempty"`
Policies []*PolicyInfo `protobuf:"bytes,3,rep,name=policies" json:"policies,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AnalyzerInfo) Reset() { *m = AnalyzerInfo{} }
func (m *AnalyzerInfo) String() string { return proto.CompactTextString(m) }
func (*AnalyzerInfo) ProtoMessage() {}
func (*AnalyzerInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_analyzer_eb1faef40b250be3, []int{3}
}
func (m *AnalyzerInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AnalyzerInfo.Unmarshal(m, b)
}
func (m *AnalyzerInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AnalyzerInfo.Marshal(b, m, deterministic)
}
func (dst *AnalyzerInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_AnalyzerInfo.Merge(dst, src)
}
func (m *AnalyzerInfo) XXX_Size() int {
return xxx_messageInfo_AnalyzerInfo.Size(m)
}
func (m *AnalyzerInfo) XXX_DiscardUnknown() {
xxx_messageInfo_AnalyzerInfo.DiscardUnknown(m)
}
var xxx_messageInfo_AnalyzerInfo proto.InternalMessageInfo
func (m *AnalyzerInfo) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *AnalyzerInfo) GetDisplayName() string {
if m != nil {
return m.DisplayName
}
return ""
}
func (m *AnalyzerInfo) GetPolicies() []*PolicyInfo {
if m != nil {
return m.Policies
}
return nil
}
// PolicyInfo provides metadata about an individual Policy within a Policy Pack.
type PolicyInfo struct {
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
DisplayName string `protobuf:"bytes,2,opt,name=displayName" json:"displayName,omitempty"`
Description string `protobuf:"bytes,3,opt,name=description" json:"description,omitempty"`
Message string `protobuf:"bytes,4,opt,name=message" json:"message,omitempty"`
EnforcementLevel EnforcementLevel `protobuf:"varint,5,opt,name=enforcementLevel,enum=pulumirpc.EnforcementLevel" json:"enforcementLevel,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PolicyInfo) Reset() { *m = PolicyInfo{} }
func (m *PolicyInfo) String() string { return proto.CompactTextString(m) }
func (*PolicyInfo) ProtoMessage() {}
func (*PolicyInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_analyzer_eb1faef40b250be3, []int{4}
}
func (m *PolicyInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PolicyInfo.Unmarshal(m, b)
}
func (m *PolicyInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PolicyInfo.Marshal(b, m, deterministic)
}
func (dst *PolicyInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_PolicyInfo.Merge(dst, src)
}
func (m *PolicyInfo) XXX_Size() int {
return xxx_messageInfo_PolicyInfo.Size(m)
}
func (m *PolicyInfo) XXX_DiscardUnknown() {
xxx_messageInfo_PolicyInfo.DiscardUnknown(m)
}
var xxx_messageInfo_PolicyInfo proto.InternalMessageInfo
func (m *PolicyInfo) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *PolicyInfo) GetDisplayName() string {
if m != nil {
return m.DisplayName
}
return ""
}
func (m *PolicyInfo) GetDescription() string {
if m != nil {
return m.Description
}
return ""
}
func (m *PolicyInfo) GetMessage() string {
if m != nil {
return m.Message
}
return ""
}
func (m *PolicyInfo) GetEnforcementLevel() EnforcementLevel {
if m != nil {
return m.EnforcementLevel
}
return EnforcementLevel_ADVISORY
}
func init() {
proto.RegisterType((*AnalyzeRequest)(nil), "pulumirpc.AnalyzeRequest")
proto.RegisterType((*AnalyzeResponse)(nil), "pulumirpc.AnalyzeResponse")
proto.RegisterType((*AnalyzeDiagnostic)(nil), "pulumirpc.AnalyzeDiagnostic")
proto.RegisterType((*AnalyzerInfo)(nil), "pulumirpc.AnalyzerInfo")
proto.RegisterType((*PolicyInfo)(nil), "pulumirpc.PolicyInfo")
proto.RegisterEnum("pulumirpc.EnforcementLevel", EnforcementLevel_name, EnforcementLevel_value)
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion4
// Client API for Analyzer service
type AnalyzerClient interface {
// Analyze analyzes a single resource object, and returns any errors that it finds.
Analyze(ctx context.Context, in *AnalyzeRequest, opts ...grpc.CallOption) (*AnalyzeResponse, error)
// GetAnalyzerInfo returns metadata about the analyzer (e.g., list of policies contained).
GetAnalyzerInfo(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*AnalyzerInfo, error)
// GetPluginInfo returns generic information about this plugin, like its version.
GetPluginInfo(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*PluginInfo, error)
}
type analyzerClient struct {
cc *grpc.ClientConn
}
func NewAnalyzerClient(cc *grpc.ClientConn) AnalyzerClient {
return &analyzerClient{cc}
}
func (c *analyzerClient) Analyze(ctx context.Context, in *AnalyzeRequest, opts ...grpc.CallOption) (*AnalyzeResponse, error) {
out := new(AnalyzeResponse)
err := grpc.Invoke(ctx, "/pulumirpc.Analyzer/Analyze", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *analyzerClient) GetAnalyzerInfo(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*AnalyzerInfo, error) {
out := new(AnalyzerInfo)
err := grpc.Invoke(ctx, "/pulumirpc.Analyzer/GetAnalyzerInfo", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *analyzerClient) GetPluginInfo(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*PluginInfo, error) {
out := new(PluginInfo)
err := grpc.Invoke(ctx, "/pulumirpc.Analyzer/GetPluginInfo", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for Analyzer service
type AnalyzerServer interface {
// Analyze analyzes a single resource object, and returns any errors that it finds.
Analyze(context.Context, *AnalyzeRequest) (*AnalyzeResponse, error)
// GetAnalyzerInfo returns metadata about the analyzer (e.g., list of policies contained).
GetAnalyzerInfo(context.Context, *empty.Empty) (*AnalyzerInfo, error)
// GetPluginInfo returns generic information about this plugin, like its version.
GetPluginInfo(context.Context, *empty.Empty) (*PluginInfo, error)
}
func RegisterAnalyzerServer(s *grpc.Server, srv AnalyzerServer) {
s.RegisterService(&_Analyzer_serviceDesc, srv)
}
func _Analyzer_Analyze_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(AnalyzeRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnalyzerServer).Analyze(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/pulumirpc.Analyzer/Analyze",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnalyzerServer).Analyze(ctx, req.(*AnalyzeRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Analyzer_GetAnalyzerInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnalyzerServer).GetAnalyzerInfo(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/pulumirpc.Analyzer/GetAnalyzerInfo",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnalyzerServer).GetAnalyzerInfo(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _Analyzer_GetPluginInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(empty.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnalyzerServer).GetPluginInfo(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/pulumirpc.Analyzer/GetPluginInfo",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnalyzerServer).GetPluginInfo(ctx, req.(*empty.Empty))
}
return interceptor(ctx, in, info, handler)
}
var _Analyzer_serviceDesc = grpc.ServiceDesc{
ServiceName: "pulumirpc.Analyzer",
HandlerType: (*AnalyzerServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "Analyze",
Handler: _Analyzer_Analyze_Handler,
},
{
MethodName: "GetAnalyzerInfo",
Handler: _Analyzer_GetAnalyzerInfo_Handler,
},
{
MethodName: "GetPluginInfo",
Handler: _Analyzer_GetPluginInfo_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "analyzer.proto",
}
func init() { proto.RegisterFile("analyzer.proto", fileDescriptor_analyzer_eb1faef40b250be3) }
var fileDescriptor_analyzer_eb1faef40b250be3 = []byte{
// 512 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x9c, 0x54, 0xc1, 0x6e, 0xd3, 0x4c,
0x10, 0x8e, 0x93, 0xb4, 0x49, 0x26, 0x69, 0x9a, 0xae, 0xf4, 0xff, 0x35, 0x6e, 0x85, 0x2c, 0x1f,
0x50, 0x84, 0x90, 0x23, 0xc2, 0x81, 0x1b, 0x22, 0x28, 0x55, 0x54, 0x09, 0x4a, 0x70, 0x51, 0x25,
0x0e, 0x1c, 0x5c, 0x77, 0x62, 0x59, 0xd8, 0xde, 0x65, 0x77, 0x0d, 0x32, 0x8f, 0xc3, 0xcb, 0xf0,
0x06, 0x3c, 0x0f, 0xf2, 0xda, 0x71, 0x1c, 0xbb, 0xea, 0xa1, 0xb7, 0x9d, 0xf9, 0xbe, 0xf9, 0x76,
0xf6, 0x1b, 0x8f, 0x61, 0xec, 0xc6, 0x6e, 0x98, 0xfe, 0x42, 0x6e, 0x33, 0x4e, 0x25, 0x25, 0x03,
0x96, 0x84, 0x49, 0x14, 0x70, 0xe6, 0x19, 0x23, 0x16, 0x26, 0x7e, 0x10, 0xe7, 0x80, 0x71, 0xe6,
0x53, 0xea, 0x87, 0x38, 0x53, 0xd1, 0x6d, 0xb2, 0x99, 0x61, 0xc4, 0x64, 0x5a, 0x80, 0xe7, 0x75,
0x50, 0x48, 0x9e, 0x78, 0x32, 0x47, 0xad, 0xaf, 0x30, 0x5e, 0xe4, 0xb7, 0x38, 0xf8, 0x3d, 0x41,
0x21, 0x09, 0x81, 0xae, 0x4c, 0x19, 0xea, 0x9a, 0xa9, 0x4d, 0x07, 0x8e, 0x3a, 0x93, 0xd7, 0x00,
0x8c, 0x53, 0x86, 0x5c, 0x06, 0x28, 0xf4, 0xb6, 0xa9, 0x4d, 0x87, 0xf3, 0x53, 0x3b, 0x17, 0xb6,
0xb7, 0xc2, 0xf6, 0xb5, 0x12, 0x76, 0x2a, 0x54, 0xeb, 0x13, 0x1c, 0x97, 0xf2, 0x82, 0xd1, 0x58,
0x20, 0x79, 0x03, 0xc3, 0xbb, 0xc0, 0xf5, 0x63, 0x2a, 0x64, 0xe0, 0x65, 0x62, 0x9d, 0xe9, 0x70,
0x7e, 0x6e, 0x97, 0x6f, 0xb3, 0x8b, 0x82, 0x65, 0x49, 0x72, 0xaa, 0x05, 0xd6, 0xef, 0x36, 0x9c,
0x34, 0x28, 0xe4, 0x29, 0x00, 0xa3, 0x61, 0xe0, 0xa5, 0x57, 0x6e, 0xb4, 0xed, 0xbd, 0x92, 0x21,
0xcf, 0x60, 0x9c, 0x47, 0x6b, 0xd7, 0xfb, 0xa6, 0x38, 0x6d, 0xc5, 0xa9, 0x65, 0xc9, 0x0b, 0x38,
0xd9, 0x65, 0x6e, 0x90, 0x8b, 0x80, 0xc6, 0x7a, 0x47, 0x51, 0x9b, 0x00, 0x31, 0x61, 0x78, 0x87,
0xc2, 0xe3, 0x01, 0x93, 0x19, 0xaf, 0xab, 0x78, 0xd5, 0x14, 0xd1, 0xa1, 0x17, 0xa1, 0x10, 0xae,
0x8f, 0xfa, 0x81, 0x42, 0xb7, 0xa1, 0xf2, 0xd9, 0xf5, 0x85, 0x7e, 0x68, 0x76, 0x94, 0xcf, 0xae,
0x2f, 0xc8, 0x0a, 0x26, 0x18, 0x6f, 0x28, 0xf7, 0x30, 0xc2, 0x58, 0xbe, 0xc7, 0x1f, 0x18, 0xea,
0x3d, 0x53, 0x9b, 0x8e, 0xe7, 0x67, 0x15, 0x83, 0x2e, 0x6a, 0x14, 0xa7, 0x51, 0x64, 0xfd, 0x84,
0x51, 0xe1, 0x11, 0xbf, 0x8c, 0x37, 0x34, 0xbb, 0x2c, 0xde, 0x19, 0xa3, 0xce, 0xaa, 0xf9, 0x40,
0xb0, 0xd0, 0x4d, 0x2b, 0x7e, 0x54, 0x53, 0xe4, 0x25, 0xf4, 0xd5, 0x9b, 0xb3, 0xa1, 0x77, 0xd4,
0x9c, 0xfe, 0xab, 0xb4, 0xb1, 0x56, 0x76, 0x64, 0xf2, 0x4e, 0x49, 0xb3, 0xfe, 0x68, 0x00, 0x3b,
0xe0, 0x91, 0xf7, 0xd6, 0x6c, 0xed, 0x3c, 0x68, 0x6b, 0x77, 0xdf, 0xd6, 0xfb, 0x2c, 0x3c, 0x78,
0x84, 0x85, 0xcf, 0x67, 0x30, 0xa9, 0xb3, 0xc8, 0x08, 0xfa, 0x8b, 0xe5, 0xcd, 0xe5, 0xf5, 0x47,
0xe7, 0xcb, 0xa4, 0x45, 0x8e, 0x60, 0xf0, 0x61, 0x71, 0xb5, 0x5c, 0x7c, 0xce, 0x42, 0x6d, 0xfe,
0x57, 0x83, 0xfe, 0xd6, 0x74, 0xf2, 0x0e, 0x7a, 0xc5, 0x99, 0x3c, 0x69, 0x7e, 0xdb, 0xc5, 0xae,
0x19, 0xc6, 0x7d, 0x50, 0xbe, 0x27, 0x56, 0x8b, 0x2c, 0xe1, 0x78, 0x85, 0x72, 0x6f, 0x8e, 0xff,
0x37, 0x96, 0xee, 0x22, 0x5b, 0x75, 0xe3, 0xb4, 0x29, 0xa4, 0x0a, 0xac, 0x16, 0x79, 0x0b, 0x47,
0x2b, 0x94, 0x6b, 0xf5, 0xbf, 0x78, 0x50, 0x63, 0x6f, 0xb6, 0x25, 0xdd, 0x6a, 0xdd, 0x1e, 0x2a,
0xe2, 0xab, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x83, 0xde, 0x75, 0xe5, 0x90, 0x04, 0x00, 0x00,
}