From ea398ec266fa24ffc3ec180db44f8f83281e18a6 Mon Sep 17 00:00:00 2001 From: Penny Zheng Date: Fri, 11 Jan 2019 16:10:15 +0800 Subject: [PATCH] agent: add interface memHotplugByProbe for memory hotplug In order to support memory hotplug by probe interface, we need to notify guest kernel about hot-added momery event by echoing related addresses into /sys/devices/system/memory/probe. Fixes: #442 Signed-off-by: Penny Zheng --- grpc.go | 10 + protocols/grpc/agent.pb.go | 558 +++++++++++++++++++++++++------------ protocols/grpc/agent.proto | 7 + 3 files changed, 404 insertions(+), 171 deletions(-) diff --git a/grpc.go b/grpc.go index 266eb93945..fa6f049760 100644 --- a/grpc.go +++ b/grpc.go @@ -1430,6 +1430,16 @@ func (a *agentGRPC) GetGuestDetails(ctx context.Context, req *pb.GuestDetailsReq return &details, nil } +func (a *agentGRPC) MemHotplugByProbe(ctx context.Context, req *pb.MemHotplugByProbeRequest) (*gpb.Empty, error) { + for _, addr := range req.MemHotplugProbeAddr { + if err := ioutil.WriteFile(sysfsMemoryHotplugProbePath, []byte(fmt.Sprintf("0x%x", addr)), 0600); err != nil { + return emptyResp, err + } + } + + return emptyResp, nil +} + func (a *agentGRPC) haveSeccomp() bool { if seccompSupport == "yes" && seccomp.IsEnabled() { return true diff --git a/protocols/grpc/agent.pb.go b/protocols/grpc/agent.pb.go index f8cb420d84..c617fa60b1 100644 --- a/protocols/grpc/agent.pb.go +++ b/protocols/grpc/agent.pb.go @@ -55,6 +55,7 @@ AgentDetails GuestDetailsRequest GuestDetailsResponse + MemHotplugByProbeRequest SetGuestDateTimeRequest Storage Device @@ -1411,6 +1412,24 @@ func (m *GuestDetailsResponse) GetSupportMemHotplugProbe() bool { return false } +type MemHotplugByProbeRequest struct { + // server needs to send the value of memHotplugProbeAddr into file /sys/devices/system/memory/probe, + // in order to notify the guest kernel about hot-add memory event + MemHotplugProbeAddr []uint64 `protobuf:"varint,1,rep,packed,name=memHotplugProbeAddr" json:"memHotplugProbeAddr,omitempty"` +} + +func (m *MemHotplugByProbeRequest) Reset() { *m = MemHotplugByProbeRequest{} } +func (m *MemHotplugByProbeRequest) String() string { return proto.CompactTextString(m) } +func (*MemHotplugByProbeRequest) ProtoMessage() {} +func (*MemHotplugByProbeRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{45} } + +func (m *MemHotplugByProbeRequest) GetMemHotplugProbeAddr() []uint64 { + if m != nil { + return m.MemHotplugProbeAddr + } + return nil +} + type SetGuestDateTimeRequest struct { // Sec the second since the Epoch. Sec int64 `protobuf:"varint,1,opt,name=Sec,proto3" json:"Sec,omitempty"` @@ -1421,7 +1440,7 @@ type SetGuestDateTimeRequest struct { func (m *SetGuestDateTimeRequest) Reset() { *m = SetGuestDateTimeRequest{} } func (m *SetGuestDateTimeRequest) String() string { return proto.CompactTextString(m) } func (*SetGuestDateTimeRequest) ProtoMessage() {} -func (*SetGuestDateTimeRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{45} } +func (*SetGuestDateTimeRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{46} } func (m *SetGuestDateTimeRequest) GetSec() int64 { if m != nil { @@ -1470,7 +1489,7 @@ type Storage struct { func (m *Storage) Reset() { *m = Storage{} } func (m *Storage) String() string { return proto.CompactTextString(m) } func (*Storage) ProtoMessage() {} -func (*Storage) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{46} } +func (*Storage) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{47} } func (m *Storage) GetDriver() string { if m != nil { @@ -1553,7 +1572,7 @@ type Device struct { func (m *Device) Reset() { *m = Device{} } func (m *Device) String() string { return proto.CompactTextString(m) } func (*Device) ProtoMessage() {} -func (*Device) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{47} } +func (*Device) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{48} } func (m *Device) GetId() string { if m != nil { @@ -1599,7 +1618,7 @@ type StringUser struct { func (m *StringUser) Reset() { *m = StringUser{} } func (m *StringUser) String() string { return proto.CompactTextString(m) } func (*StringUser) ProtoMessage() {} -func (*StringUser) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{48} } +func (*StringUser) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{49} } func (m *StringUser) GetUid() string { if m != nil { @@ -1647,7 +1666,7 @@ type CopyFileRequest struct { func (m *CopyFileRequest) Reset() { *m = CopyFileRequest{} } func (m *CopyFileRequest) String() string { return proto.CompactTextString(m) } func (*CopyFileRequest) ProtoMessage() {} -func (*CopyFileRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{49} } +func (*CopyFileRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{50} } func (m *CopyFileRequest) GetPath() string { if m != nil { @@ -1751,6 +1770,7 @@ func init() { proto.RegisterType((*AgentDetails)(nil), "grpc.AgentDetails") proto.RegisterType((*GuestDetailsRequest)(nil), "grpc.GuestDetailsRequest") proto.RegisterType((*GuestDetailsResponse)(nil), "grpc.GuestDetailsResponse") + proto.RegisterType((*MemHotplugByProbeRequest)(nil), "grpc.MemHotplugByProbeRequest") proto.RegisterType((*SetGuestDateTimeRequest)(nil), "grpc.SetGuestDateTimeRequest") proto.RegisterType((*Storage)(nil), "grpc.Storage") proto.RegisterType((*Device)(nil), "grpc.Device") @@ -1806,6 +1826,7 @@ type AgentServiceClient interface { OnlineCPUMem(ctx context.Context, in *OnlineCPUMemRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error) ReseedRandomDev(ctx context.Context, in *ReseedRandomDevRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error) GetGuestDetails(ctx context.Context, in *GuestDetailsRequest, opts ...grpc1.CallOption) (*GuestDetailsResponse, error) + MemHotplugByProbe(ctx context.Context, in *MemHotplugByProbeRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error) SetGuestDateTime(ctx context.Context, in *SetGuestDateTimeRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error) CopyFile(ctx context.Context, in *CopyFileRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error) } @@ -2061,6 +2082,15 @@ func (c *agentServiceClient) GetGuestDetails(ctx context.Context, in *GuestDetai return out, nil } +func (c *agentServiceClient) MemHotplugByProbe(ctx context.Context, in *MemHotplugByProbeRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error) { + out := new(google_protobuf2.Empty) + err := grpc1.Invoke(ctx, "/grpc.AgentService/MemHotplugByProbe", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *agentServiceClient) SetGuestDateTime(ctx context.Context, in *SetGuestDateTimeRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error) { out := new(google_protobuf2.Empty) err := grpc1.Invoke(ctx, "/grpc.AgentService/SetGuestDateTime", in, out, c.cc, opts...) @@ -2119,6 +2149,7 @@ type AgentServiceServer interface { OnlineCPUMem(context.Context, *OnlineCPUMemRequest) (*google_protobuf2.Empty, error) ReseedRandomDev(context.Context, *ReseedRandomDevRequest) (*google_protobuf2.Empty, error) GetGuestDetails(context.Context, *GuestDetailsRequest) (*GuestDetailsResponse, error) + MemHotplugByProbe(context.Context, *MemHotplugByProbeRequest) (*google_protobuf2.Empty, error) SetGuestDateTime(context.Context, *SetGuestDateTimeRequest) (*google_protobuf2.Empty, error) CopyFile(context.Context, *CopyFileRequest) (*google_protobuf2.Empty, error) } @@ -2613,6 +2644,24 @@ func _AgentService_GetGuestDetails_Handler(srv interface{}, ctx context.Context, return interceptor(ctx, in, info, handler) } +func _AgentService_MemHotplugByProbe_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc1.UnaryServerInterceptor) (interface{}, error) { + in := new(MemHotplugByProbeRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(AgentServiceServer).MemHotplugByProbe(ctx, in) + } + info := &grpc1.UnaryServerInfo{ + Server: srv, + FullMethod: "/grpc.AgentService/MemHotplugByProbe", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(AgentServiceServer).MemHotplugByProbe(ctx, req.(*MemHotplugByProbeRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _AgentService_SetGuestDateTime_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc1.UnaryServerInterceptor) (interface{}, error) { in := new(SetGuestDateTimeRequest) if err := dec(in); err != nil { @@ -2761,6 +2810,10 @@ var _AgentService_serviceDesc = grpc1.ServiceDesc{ MethodName: "GetGuestDetails", Handler: _AgentService_GetGuestDetails_Handler, }, + { + MethodName: "MemHotplugByProbe", + Handler: _AgentService_MemHotplugByProbe_Handler, + }, { MethodName: "SetGuestDateTime", Handler: _AgentService_SetGuestDateTime_Handler, @@ -4499,6 +4552,41 @@ func (m *GuestDetailsResponse) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *MemHotplugByProbeRequest) 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 *MemHotplugByProbeRequest) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if len(m.MemHotplugProbeAddr) > 0 { + dAtA25 := make([]byte, len(m.MemHotplugProbeAddr)*10) + var j24 int + for _, num := range m.MemHotplugProbeAddr { + for num >= 1<<7 { + dAtA25[j24] = uint8(uint64(num)&0x7f | 0x80) + num >>= 7 + j24++ + } + dAtA25[j24] = uint8(num) + j24++ + } + dAtA[i] = 0xa + i++ + i = encodeVarintAgent(dAtA, i, uint64(j24)) + i += copy(dAtA[i:], dAtA25[:j24]) + } + return i, nil +} + func (m *SetGuestDateTimeRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -5496,6 +5584,19 @@ func (m *GuestDetailsResponse) Size() (n int) { return n } +func (m *MemHotplugByProbeRequest) Size() (n int) { + var l int + _ = l + if len(m.MemHotplugProbeAddr) > 0 { + l = 0 + for _, e := range m.MemHotplugProbeAddr { + l += sovAgent(uint64(e)) + } + n += 1 + sovAgent(uint64(l)) + l + } + return n +} + func (m *SetGuestDateTimeRequest) Size() (n int) { var l int _ = l @@ -11053,6 +11154,118 @@ func (m *GuestDetailsResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *MemHotplugByProbeRequest) 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 ErrIntOverflowAgent + } + 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: MemHotplugByProbeRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MemHotplugByProbeRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType == 0 { + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.MemHotplugProbeAddr = append(m.MemHotplugProbeAddr, v) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthAgent + } + postIndex := iNdEx + packedLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + for iNdEx < postIndex { + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.MemHotplugProbeAddr = append(m.MemHotplugProbeAddr, v) + } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field MemHotplugProbeAddr", wireType) + } + default: + iNdEx = preIndex + skippy, err := skipAgent(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthAgent + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *SetGuestDateTimeRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -12029,170 +12242,173 @@ var ( func init() { proto.RegisterFile("agent.proto", fileDescriptorAgent) } var fileDescriptorAgent = []byte{ - // 2636 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x38, 0x4b, 0x6f, 0x1c, 0xc7, - 0xd1, 0xd8, 0x07, 0xc9, 0xdd, 0xda, 0x5d, 0x2e, 0xb7, 0x49, 0x51, 0xab, 0x95, 0xed, 0x4f, 0x1e, - 0xfb, 0x93, 0xe9, 0x38, 0x5e, 0xc6, 0xb2, 0x11, 0x3f, 0x04, 0x47, 0x90, 0x28, 0x46, 0x64, 0x6c, - 0x45, 0xcc, 0xd0, 0x84, 0x03, 0x04, 0xc1, 0x60, 0x38, 0xd3, 0xdc, 0x6d, 0x73, 0x67, 0x7a, 0xdc, - 0xdd, 0x43, 0x69, 0x1d, 0x20, 0xc7, 0xfc, 0x8b, 0xfc, 0x81, 0x20, 0xb7, 0x1c, 0x73, 0x0b, 0x72, - 0x30, 0x72, 0xca, 0x3d, 0x40, 0x10, 0xf8, 0x27, 0xe4, 0x17, 0x04, 0xfd, 0x9a, 0xc7, 0x3e, 0x68, - 0x87, 0x26, 0x90, 0xcb, 0x60, 0xba, 0xaa, 0xba, 0x5e, 0xdd, 0x55, 0x5d, 0x55, 0xd0, 0xf2, 0x47, - 0x38, 0x16, 0xc3, 0x84, 0x51, 0x41, 0x51, 0x7d, 0xc4, 0x92, 0x60, 0xd0, 0xa4, 0x01, 0xd1, 0x80, - 0xc1, 0x8f, 0x47, 0x44, 0x8c, 0xd3, 0xd3, 0x61, 0x40, 0xa3, 0xdd, 0x73, 0x5f, 0xf8, 0x6f, 0x07, - 0x34, 0x16, 0x3e, 0x89, 0x31, 0xe3, 0xbb, 0x6a, 0xe3, 0x6e, 0x72, 0x3e, 0xda, 0x15, 0xd3, 0x04, - 0x73, 0xfd, 0x35, 0xfb, 0x6e, 0x8f, 0x28, 0x1d, 0x4d, 0xf0, 0xae, 0x5a, 0x9d, 0xa6, 0x67, 0xbb, - 0x38, 0x4a, 0xc4, 0x54, 0x23, 0x9d, 0xdf, 0x57, 0x61, 0x7b, 0x8f, 0x61, 0x5f, 0xe0, 0x3d, 0xcb, - 0xcd, 0xc5, 0x5f, 0xa6, 0x98, 0x0b, 0xf4, 0x2a, 0xb4, 0x33, 0x09, 0x1e, 0x09, 0xfb, 0x95, 0x3b, - 0x95, 0x9d, 0xa6, 0xdb, 0xca, 0x60, 0x87, 0x21, 0xba, 0x09, 0x6b, 0xf8, 0x05, 0x0e, 0x24, 0xb6, - 0xaa, 0xb0, 0xab, 0x72, 0x79, 0x18, 0xa2, 0x77, 0xa0, 0xc5, 0x05, 0x23, 0xf1, 0xc8, 0x4b, 0x39, - 0x66, 0xfd, 0xda, 0x9d, 0xca, 0x4e, 0xeb, 0xde, 0xc6, 0x50, 0x9a, 0x34, 0x3c, 0x56, 0x88, 0x13, - 0x8e, 0x99, 0x0b, 0x3c, 0xfb, 0x47, 0x77, 0x61, 0x2d, 0xc4, 0x17, 0x24, 0xc0, 0xbc, 0x5f, 0xbf, - 0x53, 0xdb, 0x69, 0xdd, 0x6b, 0x6b, 0xf2, 0xc7, 0x0a, 0xe8, 0x5a, 0x24, 0x7a, 0x13, 0x1a, 0x5c, - 0x50, 0xe6, 0x8f, 0x30, 0xef, 0xaf, 0x28, 0xc2, 0x8e, 0xe5, 0xab, 0xa0, 0x6e, 0x86, 0x46, 0x2f, - 0x41, 0xed, 0xd9, 0xde, 0x61, 0x7f, 0x55, 0x49, 0x07, 0x43, 0x95, 0xe0, 0xc0, 0x95, 0x60, 0xf4, - 0x1a, 0x74, 0xb8, 0x1f, 0x87, 0xa7, 0xf4, 0x85, 0x97, 0x90, 0x30, 0xe6, 0xfd, 0xb5, 0x3b, 0x95, - 0x9d, 0x86, 0xdb, 0x36, 0xc0, 0x23, 0x09, 0x73, 0x3e, 0x82, 0x1b, 0xc7, 0xc2, 0x67, 0xe2, 0x0a, - 0xde, 0x71, 0x4e, 0x60, 0xdb, 0xc5, 0x11, 0xbd, 0xb8, 0x92, 0x6b, 0xfb, 0xb0, 0x26, 0x48, 0x84, - 0x69, 0x2a, 0x94, 0x6b, 0x3b, 0xae, 0x5d, 0x3a, 0x7f, 0xac, 0x00, 0xda, 0x7f, 0x81, 0x83, 0x23, - 0x46, 0x03, 0xcc, 0xf9, 0xff, 0xe8, 0xb8, 0xde, 0x80, 0xb5, 0x44, 0x2b, 0xd0, 0xaf, 0x2b, 0x72, - 0x73, 0x0a, 0x56, 0x2b, 0x8b, 0x75, 0xbe, 0x80, 0xad, 0x63, 0x32, 0x8a, 0xfd, 0xc9, 0x35, 0xea, - 0xbb, 0x0d, 0xab, 0x5c, 0xf1, 0x54, 0xaa, 0x76, 0x5c, 0xb3, 0x72, 0x8e, 0x00, 0x7d, 0xee, 0x13, - 0x71, 0x7d, 0x92, 0x9c, 0xb7, 0x61, 0xb3, 0xc4, 0x91, 0x27, 0x34, 0xe6, 0x58, 0x29, 0x20, 0x7c, - 0x91, 0x72, 0xc5, 0x6c, 0xc5, 0x35, 0x2b, 0x07, 0xc3, 0xd6, 0xa7, 0x84, 0x5b, 0x72, 0xfc, 0xdf, - 0xa8, 0xb0, 0x0d, 0xab, 0x67, 0x94, 0x45, 0xbe, 0xb0, 0x1a, 0xe8, 0x15, 0x42, 0x50, 0xf7, 0xd9, - 0x88, 0xf7, 0x6b, 0x77, 0x6a, 0x3b, 0x4d, 0x57, 0xfd, 0xcb, 0x5b, 0x39, 0x23, 0xc6, 0xe8, 0xf5, - 0x2a, 0xb4, 0x8d, 0xdf, 0xbd, 0x09, 0xe1, 0x42, 0xc9, 0x69, 0xbb, 0x2d, 0x03, 0x93, 0x7b, 0x1c, - 0x0a, 0xdb, 0x27, 0x49, 0x78, 0xc5, 0x80, 0xbf, 0x07, 0x4d, 0x86, 0x39, 0x4d, 0x99, 0x0c, 0xd3, - 0xaa, 0x3a, 0xf7, 0x2d, 0x7d, 0xee, 0x9f, 0x92, 0x38, 0x7d, 0xe1, 0x5a, 0x9c, 0x9b, 0x93, 0x99, - 0x10, 0x12, 0xfc, 0x2a, 0x21, 0xf4, 0x11, 0xdc, 0x38, 0xf2, 0x53, 0x7e, 0x15, 0x5d, 0x9d, 0xfb, - 0x32, 0xfc, 0x78, 0x1a, 0x5d, 0x69, 0xf3, 0x1f, 0x2a, 0xd0, 0xd8, 0x4b, 0xd2, 0x13, 0xee, 0x8f, - 0x30, 0xfa, 0x3f, 0x68, 0x09, 0x2a, 0xfc, 0x89, 0x97, 0xca, 0xa5, 0x22, 0xaf, 0xbb, 0xa0, 0x40, - 0x9a, 0x40, 0xba, 0x1d, 0xb3, 0x20, 0x49, 0x0d, 0x45, 0xf5, 0x4e, 0x6d, 0xa7, 0xee, 0xb6, 0x34, - 0x4c, 0x93, 0x0c, 0x61, 0x53, 0xe1, 0x3c, 0x12, 0x7b, 0xe7, 0x98, 0xc5, 0x78, 0x12, 0xd1, 0x10, - 0xab, 0xfb, 0x5b, 0x77, 0x7b, 0x0a, 0x75, 0x18, 0x7f, 0x92, 0x21, 0xd0, 0x0f, 0xa0, 0x97, 0xd1, - 0xcb, 0xa0, 0x54, 0xd4, 0x75, 0x45, 0xdd, 0x35, 0xd4, 0x27, 0x06, 0xec, 0xfc, 0x16, 0xd6, 0x3f, - 0x1b, 0x33, 0x2a, 0xc4, 0x84, 0xc4, 0xa3, 0xc7, 0xbe, 0xf0, 0x65, 0xf6, 0x48, 0x30, 0x23, 0x34, - 0xe4, 0x46, 0x5b, 0xbb, 0x44, 0x6f, 0x41, 0x4f, 0x68, 0x5a, 0x1c, 0x7a, 0x96, 0xa6, 0xaa, 0x68, - 0x36, 0x32, 0xc4, 0x91, 0x21, 0xfe, 0x7f, 0x58, 0xcf, 0x89, 0x65, 0xfe, 0x31, 0xfa, 0x76, 0x32, - 0xe8, 0x67, 0x24, 0xc2, 0xce, 0x85, 0xf2, 0x95, 0x3a, 0x64, 0xf4, 0x16, 0x34, 0x73, 0x3f, 0x54, - 0xd4, 0x0d, 0x59, 0xd7, 0x37, 0xc4, 0xba, 0xd3, 0x6d, 0x64, 0x4e, 0xf9, 0x18, 0xba, 0x22, 0x53, - 0xdc, 0x0b, 0x7d, 0xe1, 0x97, 0x2f, 0x55, 0xd9, 0x2a, 0x77, 0x5d, 0x94, 0xd6, 0xce, 0x7d, 0x68, - 0x1e, 0x91, 0x90, 0x6b, 0xc1, 0x7d, 0x58, 0x0b, 0x52, 0xc6, 0x70, 0x2c, 0xac, 0xc9, 0x66, 0x89, - 0xb6, 0x60, 0x65, 0x42, 0x22, 0x22, 0x8c, 0x99, 0x7a, 0xe1, 0x50, 0x80, 0xa7, 0x38, 0xa2, 0x6c, - 0xaa, 0x1c, 0xb6, 0x05, 0x2b, 0xc5, 0xc3, 0xd5, 0x0b, 0x74, 0x1b, 0x9a, 0x91, 0xff, 0x22, 0x3b, - 0x54, 0x89, 0x69, 0x44, 0xfe, 0x0b, 0xad, 0x7c, 0x1f, 0xd6, 0xce, 0x7c, 0x32, 0x09, 0x62, 0x61, - 0xbc, 0x62, 0x97, 0xb9, 0xc0, 0x7a, 0x51, 0xe0, 0x5f, 0xab, 0xd0, 0xd2, 0x12, 0xb5, 0xc2, 0x5b, - 0xb0, 0x12, 0xf8, 0xc1, 0x38, 0x13, 0xa9, 0x16, 0xe8, 0xae, 0x55, 0xa4, 0x5a, 0x4c, 0xc2, 0xb9, - 0xa6, 0x56, 0xb5, 0x5d, 0x00, 0xfe, 0xdc, 0x4f, 0x8c, 0x6e, 0xb5, 0x25, 0xc4, 0x4d, 0x49, 0xa3, - 0xd5, 0x7d, 0x17, 0xda, 0xfa, 0xde, 0x99, 0x2d, 0xf5, 0x25, 0x5b, 0x5a, 0x9a, 0x4a, 0x6f, 0x7a, - 0x0d, 0x3a, 0x29, 0xc7, 0xde, 0x98, 0x60, 0xe6, 0xb3, 0x60, 0x3c, 0xed, 0xaf, 0xe8, 0x37, 0x32, - 0xe5, 0xf8, 0xc0, 0xc2, 0xd0, 0x3d, 0x58, 0x91, 0xe9, 0x8f, 0xf7, 0x57, 0xd5, 0x73, 0xfc, 0x52, - 0x91, 0xa5, 0x32, 0x75, 0xa8, 0xbe, 0xfb, 0xb1, 0x60, 0x53, 0x57, 0x93, 0x0e, 0x3e, 0x00, 0xc8, - 0x81, 0x68, 0x03, 0x6a, 0xe7, 0x78, 0x6a, 0xe2, 0x50, 0xfe, 0x4a, 0xe7, 0x5c, 0xf8, 0x93, 0xd4, - 0x7a, 0x5d, 0x2f, 0x3e, 0xaa, 0x7e, 0x50, 0x71, 0x02, 0xe8, 0x3e, 0x9a, 0x9c, 0x13, 0x5a, 0xd8, - 0xbe, 0x05, 0x2b, 0x91, 0xff, 0x05, 0x65, 0xd6, 0x93, 0x6a, 0xa1, 0xa0, 0x24, 0xa6, 0xcc, 0xb2, - 0x50, 0x0b, 0xb4, 0x0e, 0x55, 0x9a, 0x28, 0x7f, 0x35, 0xdd, 0x2a, 0x4d, 0x72, 0x41, 0xf5, 0x82, - 0x20, 0xe7, 0x9f, 0x75, 0x80, 0x5c, 0x0a, 0x72, 0x61, 0x40, 0xa8, 0xc7, 0x31, 0x93, 0x25, 0x88, - 0x77, 0x3a, 0x15, 0x98, 0x7b, 0x0c, 0x07, 0x29, 0xe3, 0xe4, 0x42, 0x9e, 0x9f, 0x34, 0xfb, 0x86, - 0x36, 0x7b, 0x46, 0x37, 0xf7, 0x26, 0xa1, 0xc7, 0x7a, 0xdf, 0x23, 0xb9, 0xcd, 0xb5, 0xbb, 0xd0, - 0x21, 0xdc, 0xc8, 0x79, 0x86, 0x05, 0x76, 0xd5, 0xcb, 0xd8, 0x6d, 0x66, 0xec, 0xc2, 0x9c, 0xd5, - 0x3e, 0x6c, 0x12, 0xea, 0x7d, 0x99, 0xe2, 0xb4, 0xc4, 0xa8, 0x76, 0x19, 0xa3, 0x1e, 0xa1, 0xbf, - 0x50, 0x1b, 0x72, 0x36, 0x47, 0x70, 0xab, 0x60, 0xa5, 0x0c, 0xf7, 0x02, 0xb3, 0xfa, 0x65, 0xcc, - 0xb6, 0x33, 0xad, 0x64, 0x3e, 0xc8, 0x39, 0xfe, 0x0c, 0xb6, 0x09, 0xf5, 0x9e, 0xfb, 0x44, 0xcc, - 0xb2, 0x5b, 0xf9, 0x16, 0x23, 0xe5, 0xa3, 0x5b, 0xe6, 0xa5, 0x8d, 0x8c, 0x30, 0x1b, 0x95, 0x8c, - 0x5c, 0xfd, 0x16, 0x23, 0x9f, 0xaa, 0x0d, 0x39, 0x9b, 0x87, 0xd0, 0x23, 0x74, 0x56, 0x9b, 0xb5, - 0xcb, 0x98, 0x74, 0x09, 0x2d, 0x6b, 0xf2, 0x08, 0x7a, 0x1c, 0x07, 0x82, 0xb2, 0xe2, 0x25, 0x68, - 0x5c, 0xc6, 0x62, 0xc3, 0xd0, 0x67, 0x3c, 0x9c, 0x5f, 0x41, 0xfb, 0x20, 0x1d, 0x61, 0x31, 0x39, - 0xcd, 0x92, 0xc1, 0xb5, 0xe5, 0x1f, 0xe7, 0xdf, 0x55, 0x68, 0xed, 0x8d, 0x18, 0x4d, 0x93, 0x52, - 0x4e, 0xd6, 0x41, 0x3a, 0x9b, 0x93, 0x15, 0x89, 0xca, 0xc9, 0x9a, 0xf8, 0x3d, 0x68, 0x47, 0x2a, - 0x74, 0x0d, 0xbd, 0xce, 0x43, 0xbd, 0xb9, 0xa0, 0x76, 0x5b, 0x51, 0x21, 0x99, 0x0d, 0x01, 0x12, - 0x12, 0x72, 0xb3, 0x47, 0xa7, 0xa3, 0xae, 0xa9, 0x08, 0x6d, 0x8a, 0x76, 0x9b, 0x49, 0x96, 0xad, - 0xdf, 0x81, 0xd6, 0xa9, 0x74, 0x92, 0xd9, 0x50, 0x4a, 0x46, 0xb9, 0xf7, 0x5c, 0x38, 0xcd, 0x83, - 0xf0, 0x00, 0x3a, 0x63, 0xed, 0x32, 0xb3, 0x49, 0xdf, 0xa1, 0xd7, 0x8c, 0x25, 0xb9, 0xbd, 0xc3, - 0xa2, 0x67, 0xf5, 0x01, 0xb4, 0xc7, 0x05, 0xd0, 0xe0, 0x18, 0x7a, 0x73, 0x24, 0x0b, 0x72, 0xd0, - 0x4e, 0x31, 0x07, 0xb5, 0xee, 0x21, 0x2d, 0xa8, 0xb8, 0xb3, 0x98, 0x97, 0x7e, 0x0e, 0xdb, 0xb3, - 0x65, 0x8e, 0x29, 0xca, 0xde, 0x83, 0x76, 0xa0, 0xb4, 0x2b, 0x9d, 0x40, 0x6f, 0x4e, 0x6f, 0xb7, - 0x15, 0xe4, 0x0b, 0x27, 0x04, 0xf4, 0x39, 0x23, 0x02, 0x1f, 0x0b, 0x86, 0xfd, 0xe8, 0x3a, 0xaa, - 0x66, 0x04, 0x75, 0xf5, 0xc4, 0xd6, 0x54, 0x51, 0xa8, 0xfe, 0x9d, 0x37, 0x60, 0xb3, 0x24, 0xc5, - 0xa8, 0xbc, 0x01, 0xb5, 0x09, 0x8e, 0x15, 0xf7, 0x8e, 0x2b, 0x7f, 0x1d, 0x1f, 0x7a, 0x2e, 0xf6, - 0xc3, 0xeb, 0xd3, 0xc6, 0x88, 0xa8, 0xe5, 0x22, 0x76, 0x00, 0x15, 0x45, 0x18, 0x55, 0xac, 0xd6, - 0x95, 0x82, 0xd6, 0xcf, 0xa0, 0xb7, 0x37, 0xa1, 0x1c, 0x1f, 0x8b, 0x90, 0xc4, 0xd7, 0x51, 0xe6, - 0xff, 0x06, 0x36, 0x3f, 0x13, 0xd3, 0xcf, 0x25, 0x33, 0x4e, 0xbe, 0xc2, 0xd7, 0x64, 0x1f, 0xa3, - 0xcf, 0xad, 0x7d, 0x8c, 0x3e, 0x97, 0x15, 0x7e, 0x40, 0x27, 0x69, 0x14, 0xab, 0xeb, 0xde, 0x71, - 0xcd, 0xca, 0xf9, 0x47, 0x05, 0xb6, 0x74, 0x0f, 0x7e, 0xac, 0x5b, 0x4f, 0x2b, 0x7e, 0x00, 0x8d, - 0x31, 0xe5, 0x22, 0xf6, 0x23, 0x6c, 0x44, 0x67, 0x6b, 0xc9, 0x5e, 0xf6, 0xac, 0x55, 0xd5, 0x15, - 0xc8, 0xdf, 0x52, 0x63, 0x5c, 0xbb, 0xbc, 0x31, 0x9e, 0x6b, 0x7d, 0xeb, 0xf3, 0xad, 0x2f, 0x7a, - 0x19, 0xc0, 0x12, 0x91, 0x50, 0x3d, 0xfc, 0x4d, 0xb7, 0x69, 0x20, 0x87, 0x21, 0xba, 0x0b, 0xdd, - 0x91, 0xd4, 0xd2, 0x1b, 0x53, 0x7a, 0xee, 0x25, 0xbe, 0x18, 0xab, 0x46, 0xbb, 0xe9, 0x76, 0x14, - 0xf8, 0x80, 0xd2, 0xf3, 0x23, 0x5f, 0x8c, 0x9d, 0x9b, 0x70, 0xe3, 0x31, 0xe6, 0x82, 0xd1, 0x69, - 0xd9, 0x3a, 0xe7, 0x27, 0x00, 0x87, 0xb1, 0xc0, 0xec, 0xcc, 0x97, 0x6d, 0xfd, 0x8f, 0x8a, 0x2b, - 0xf3, 0xa4, 0x6e, 0x0c, 0xf5, 0x1c, 0x23, 0x43, 0xb8, 0x05, 0x1a, 0x67, 0x08, 0xab, 0x2e, 0x4d, - 0x05, 0xe6, 0xe8, 0x75, 0xfb, 0x67, 0xf6, 0xb5, 0xcd, 0x3e, 0x05, 0x74, 0x0d, 0xce, 0x39, 0xb0, - 0x8d, 0x4f, 0xce, 0xce, 0xf8, 0x79, 0x08, 0x4d, 0x62, 0x61, 0x26, 0x3a, 0xe7, 0x45, 0xe7, 0x24, - 0xce, 0x3e, 0x6c, 0x3e, 0x0c, 0xc3, 0xef, 0xcd, 0xe6, 0xc0, 0xce, 0x07, 0xbe, 0x37, 0xa7, 0xfb, - 0xb0, 0xa9, 0x4d, 0xd3, 0xa6, 0x5a, 0x36, 0xaf, 0xc3, 0x2a, 0xb3, 0x7e, 0xa9, 0xe4, 0x13, 0x15, - 0x43, 0x64, 0x70, 0xf2, 0x80, 0x64, 0x63, 0x98, 0x7b, 0xd6, 0x1e, 0xd0, 0x26, 0xf4, 0x24, 0xa2, - 0xc4, 0xd3, 0xf9, 0x35, 0x6c, 0x3e, 0x8b, 0x27, 0x24, 0xc6, 0x7b, 0x47, 0x27, 0x4f, 0x71, 0x96, - 0x09, 0x10, 0xd4, 0xe5, 0x33, 0xaf, 0x04, 0x35, 0x5c, 0xf5, 0x2f, 0x43, 0x23, 0x3e, 0xf5, 0x82, - 0x24, 0xe5, 0x66, 0x84, 0xb1, 0x1a, 0x9f, 0xee, 0x25, 0x29, 0x47, 0xb7, 0x40, 0x3e, 0x37, 0x1e, - 0x8d, 0x27, 0x53, 0x15, 0x1f, 0x0d, 0x77, 0x2d, 0x48, 0xd2, 0x67, 0xf1, 0x64, 0xea, 0xfc, 0x50, - 0x35, 0x6d, 0x18, 0x87, 0xae, 0x1f, 0x87, 0x34, 0x7a, 0x8c, 0x2f, 0x0a, 0x12, 0xb2, 0x06, 0xc1, - 0xe6, 0x81, 0xaf, 0x2b, 0xd0, 0x7e, 0x38, 0xc2, 0xb1, 0x78, 0x8c, 0x85, 0x4f, 0x26, 0xaa, 0x09, - 0xb8, 0xc0, 0x8c, 0x13, 0x1a, 0x9b, 0x80, 0xb1, 0x4b, 0xd9, 0xc3, 0x91, 0x98, 0x08, 0x2f, 0xf4, - 0x71, 0x44, 0x63, 0xc5, 0xa5, 0xe1, 0x82, 0x04, 0x3d, 0x56, 0x10, 0xf4, 0x06, 0x74, 0xf5, 0x88, - 0xc9, 0x1b, 0xfb, 0x71, 0x38, 0xc1, 0xcc, 0xb6, 0xdc, 0xeb, 0x1a, 0x7c, 0x60, 0xa0, 0xe8, 0x4d, - 0xd8, 0x30, 0x81, 0x94, 0x53, 0xd6, 0x15, 0x65, 0xd7, 0xc0, 0x4b, 0xa4, 0x69, 0x92, 0x50, 0x26, - 0xb8, 0xc7, 0x71, 0x10, 0xd0, 0x28, 0x31, 0x15, 0x74, 0xd7, 0xc2, 0x8f, 0x35, 0xd8, 0x19, 0xc1, - 0xe6, 0x13, 0x69, 0xa7, 0xb1, 0x24, 0x3f, 0xc2, 0xf5, 0x08, 0x47, 0xde, 0xe9, 0x84, 0x06, 0xe7, - 0x9e, 0x4c, 0x4d, 0xc6, 0xc3, 0xf2, 0x8d, 0x7e, 0x24, 0x81, 0xc7, 0xe4, 0x2b, 0xd5, 0x2c, 0x4a, - 0xaa, 0x31, 0x15, 0xc9, 0x24, 0x1d, 0x79, 0x09, 0xa3, 0xa7, 0xd8, 0x98, 0xd8, 0x8d, 0x70, 0x74, - 0xa0, 0xe1, 0x47, 0x12, 0xec, 0xfc, 0xb9, 0x02, 0x5b, 0x65, 0x49, 0x26, 0xd1, 0xee, 0xc2, 0x56, - 0x59, 0x94, 0x2e, 0x74, 0x4d, 0x45, 0xd2, 0x2b, 0x0a, 0x54, 0xa5, 0x2c, 0x7a, 0x1f, 0x3a, 0x6a, - 0xee, 0xe8, 0x85, 0x9a, 0x53, 0xf9, 0x9d, 0x2c, 0x9e, 0x8b, 0xdb, 0xf6, 0x8b, 0xa7, 0xf4, 0x21, - 0xdc, 0x32, 0xe6, 0x7b, 0xf3, 0x6a, 0xeb, 0x0b, 0xb1, 0x6d, 0x08, 0x9e, 0xce, 0x68, 0xff, 0x00, - 0x6e, 0x1e, 0x63, 0xa1, 0xf5, 0xf7, 0x85, 0x29, 0x37, 0xb5, 0xab, 0x36, 0xa0, 0x76, 0x8c, 0x03, - 0xa5, 0x6e, 0xcd, 0x95, 0xbf, 0xf2, 0xca, 0x9c, 0x70, 0x1c, 0x28, 0xbd, 0x6a, 0xae, 0xfa, 0x77, - 0xfe, 0x54, 0x81, 0x35, 0x93, 0x10, 0x65, 0x42, 0x0e, 0x19, 0xb9, 0xc0, 0xcc, 0x5c, 0x16, 0xb3, - 0x92, 0x6d, 0xaf, 0xfe, 0xf3, 0x68, 0x22, 0x08, 0xcd, 0xd2, 0x6c, 0x47, 0x43, 0x9f, 0x69, 0xa0, - 0x1a, 0x02, 0xa9, 0x19, 0x87, 0x69, 0x27, 0xcc, 0x4a, 0x4d, 0x72, 0xb8, 0x8c, 0x56, 0x95, 0x56, - 0x9b, 0xae, 0x59, 0xc9, 0xcb, 0x69, 0xf9, 0xad, 0x28, 0x7e, 0x76, 0x29, 0x2f, 0x67, 0x44, 0xd3, - 0x58, 0x78, 0x09, 0x25, 0xb1, 0x30, 0x79, 0x14, 0x14, 0xe8, 0x48, 0x42, 0x9c, 0xdf, 0x55, 0x60, - 0x55, 0x0f, 0x42, 0x65, 0x03, 0x93, 0xbd, 0x44, 0x55, 0xa2, 0x5e, 0x75, 0x25, 0x4b, 0xbf, 0x3e, - 0xea, 0x5f, 0x46, 0xde, 0x45, 0xa4, 0x73, 0xb2, 0x51, 0xed, 0x22, 0x92, 0xc9, 0x58, 0x5a, 0x96, - 0x3f, 0x68, 0x0a, 0xaf, 0x55, 0xec, 0x64, 0x50, 0x45, 0xb6, 0x54, 0x53, 0xe7, 0x97, 0xb2, 0x6f, - 0xcb, 0x86, 0x80, 0x1b, 0x50, 0x4b, 0x33, 0x65, 0xe4, 0xaf, 0x84, 0x8c, 0xb2, 0xa7, 0x50, 0xfe, - 0xa2, 0xbb, 0xb0, 0xee, 0x87, 0x21, 0x91, 0xdb, 0xfd, 0xc9, 0x13, 0x12, 0x66, 0x61, 0x55, 0x86, - 0x3a, 0x7f, 0xab, 0x40, 0x77, 0x8f, 0x26, 0xd3, 0x9f, 0x92, 0x09, 0x2e, 0xc4, 0xbc, 0x52, 0x52, - 0x0b, 0x50, 0xff, 0xb2, 0x26, 0x3e, 0x23, 0x13, 0xac, 0x83, 0x41, 0x9f, 0x6c, 0x43, 0x02, 0x54, - 0x20, 0x58, 0x64, 0x36, 0x5b, 0xe9, 0x68, 0xe4, 0x53, 0x1a, 0x62, 0x99, 0x76, 0x42, 0xc2, 0xbc, - 0x6c, 0x92, 0xd2, 0x71, 0xd7, 0x42, 0xc2, 0x14, 0xca, 0x18, 0xb2, 0xa2, 0x86, 0x79, 0x45, 0x43, - 0x56, 0x35, 0x44, 0x1a, 0xb2, 0x0d, 0xab, 0xf4, 0xec, 0x8c, 0x63, 0xa1, 0x06, 0xc5, 0x35, 0xd7, - 0xac, 0xb2, 0xc4, 0xd4, 0xc8, 0x13, 0xd3, 0xbd, 0xbf, 0x74, 0x4d, 0x62, 0x32, 0x6d, 0x11, 0x7a, - 0x02, 0xdd, 0x99, 0x31, 0x3b, 0x32, 0x7d, 0xf2, 0xe2, 0xe9, 0xfb, 0x60, 0x7b, 0xa8, 0xc7, 0xf6, - 0x43, 0x3b, 0xb6, 0x1f, 0xee, 0x47, 0x89, 0x98, 0xa2, 0x7d, 0x58, 0x2f, 0x0f, 0xa4, 0xd1, 0x6d, - 0xfb, 0xca, 0x2f, 0x18, 0x53, 0x2f, 0x65, 0xf3, 0x04, 0xba, 0x33, 0xb3, 0x69, 0xab, 0xcf, 0xe2, - 0x91, 0xf5, 0x52, 0x46, 0x0f, 0xa0, 0x55, 0x18, 0x46, 0xa3, 0xbe, 0x66, 0x32, 0x3f, 0x9f, 0x5e, - 0xca, 0x60, 0x0f, 0x3a, 0xa5, 0xf9, 0x30, 0x1a, 0x18, 0x7b, 0x16, 0x0c, 0x8d, 0x97, 0x32, 0x79, - 0x04, 0xad, 0xc2, 0x98, 0xd6, 0x6a, 0x31, 0x3f, 0x0b, 0x1e, 0xdc, 0x5a, 0x80, 0x31, 0xf9, 0xef, - 0x00, 0x3a, 0xa5, 0xa1, 0xaa, 0x55, 0x64, 0xd1, 0x40, 0x77, 0x70, 0x7b, 0x21, 0xce, 0x70, 0x7a, - 0x02, 0xdd, 0x99, 0x11, 0xab, 0x75, 0xee, 0xe2, 0xc9, 0xeb, 0x52, 0xb3, 0x3e, 0x51, 0x87, 0x5d, - 0xe8, 0x29, 0x0a, 0x87, 0x3d, 0x3f, 0x50, 0x1d, 0xbc, 0xb4, 0x18, 0x69, 0xb4, 0xda, 0x87, 0xf5, - 0xf2, 0x2c, 0xd5, 0x32, 0x5b, 0x38, 0x61, 0xbd, 0xfc, 0xe6, 0x94, 0xc6, 0xaa, 0xf9, 0xcd, 0x59, - 0x34, 0x6d, 0x5d, 0xca, 0xe8, 0x21, 0x80, 0x69, 0x3d, 0x42, 0x12, 0x67, 0x47, 0x36, 0xd7, 0xf2, - 0x64, 0x47, 0xb6, 0xa0, 0x4d, 0x79, 0x00, 0xa0, 0x3b, 0x86, 0x90, 0xa6, 0x02, 0xdd, 0xb4, 0x6a, - 0xcc, 0xb4, 0x29, 0x83, 0xfe, 0x3c, 0x62, 0x8e, 0x01, 0x66, 0xec, 0x2a, 0x0c, 0x3e, 0x06, 0xc8, - 0x3b, 0x11, 0xcb, 0x60, 0xae, 0x37, 0xb9, 0xc4, 0x07, 0xed, 0x62, 0xdf, 0x81, 0x8c, 0xad, 0x0b, - 0x7a, 0x91, 0xa5, 0x2c, 0xee, 0x43, 0xbb, 0x58, 0x8c, 0x5a, 0x16, 0x0b, 0x0a, 0xd4, 0xc1, 0x5c, - 0x0d, 0x89, 0x1e, 0xda, 0x9b, 0x9a, 0x83, 0x4a, 0x37, 0xf5, 0xbb, 0xb1, 0x98, 0xa9, 0x62, 0xcb, - 0x99, 0xe4, 0x3b, 0xb0, 0x78, 0x1f, 0xda, 0xc5, 0xf2, 0xd5, 0x9a, 0xb0, 0xa0, 0xa4, 0x1d, 0x94, - 0x4a, 0x58, 0xf4, 0x00, 0xd6, 0xcb, 0xa5, 0x2b, 0x2a, 0xc4, 0xe5, 0x5c, 0x41, 0x3b, 0x30, 0xf3, - 0x85, 0x02, 0xf9, 0xbb, 0x00, 0x79, 0x89, 0x6b, 0x8f, 0x6f, 0xae, 0xe8, 0x9d, 0x91, 0xba, 0x07, - 0x9d, 0x52, 0xbb, 0x66, 0x13, 0xc5, 0xa2, 0x1e, 0xee, 0xb2, 0x3c, 0x5e, 0x6e, 0x8b, 0xac, 0xea, - 0x0b, 0x9b, 0xa5, 0xcb, 0x2e, 0x50, 0xb1, 0x1c, 0xb7, 0xae, 0x5b, 0x50, 0xa2, 0x7f, 0x4b, 0x40, - 0x17, 0x4b, 0xee, 0x42, 0x40, 0x2f, 0xa8, 0xc4, 0x97, 0x32, 0x3a, 0x80, 0xee, 0x13, 0x5b, 0x9b, - 0x99, 0x4a, 0xcf, 0xa8, 0xb3, 0xa0, 0xb2, 0x1d, 0x0c, 0x16, 0xa1, 0x4c, 0x54, 0x1d, 0xc2, 0xc6, - 0x6c, 0x95, 0x87, 0x5e, 0x36, 0xc9, 0x6d, 0x71, 0xf5, 0xb7, 0x54, 0xa9, 0x0f, 0xa1, 0x61, 0xab, - 0x0a, 0x64, 0xa6, 0x73, 0x33, 0x55, 0xc6, 0xb2, 0xad, 0x8f, 0xda, 0x5f, 0x7f, 0xf3, 0x4a, 0xe5, - 0xef, 0xdf, 0xbc, 0x52, 0xf9, 0xd7, 0x37, 0xaf, 0x54, 0x4e, 0x57, 0x15, 0xf6, 0xdd, 0xff, 0x04, - 0x00, 0x00, 0xff, 0xff, 0xbb, 0x60, 0x19, 0x39, 0xa5, 0x1f, 0x00, 0x00, + // 2675 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x19, 0xdb, 0x6e, 0x1b, 0xc7, + 0x15, 0xbc, 0x88, 0x22, 0x0f, 0x49, 0x51, 0x1c, 0xc9, 0x32, 0x4d, 0x27, 0xae, 0xb3, 0x49, 0x1d, + 0xa5, 0x69, 0xa8, 0xc4, 0x09, 0x9a, 0x8b, 0x91, 0x1a, 0x96, 0xac, 0x5a, 0x6a, 0xe2, 0x5a, 0x5d, + 0x45, 0x48, 0x81, 0xa2, 0x58, 0xac, 0x76, 0x47, 0xe4, 0x44, 0xdc, 0x9d, 0xcd, 0xce, 0xac, 0x6c, + 0xa6, 0x40, 0x1f, 0xfb, 0xda, 0x2f, 0xe8, 0x0f, 0x14, 0x7d, 0xeb, 0x63, 0x5f, 0xfb, 0x10, 0xf4, + 0xa9, 0xef, 0x05, 0x8a, 0x22, 0x9f, 0xd0, 0x2f, 0x28, 0xe6, 0xb6, 0x17, 0x72, 0xa9, 0xa4, 0x8a, + 0x80, 0xbe, 0x10, 0x73, 0x2e, 0x73, 0x6e, 0x33, 0x73, 0xf6, 0x9c, 0x43, 0x68, 0xbb, 0x63, 0x1c, + 0xf2, 0x51, 0x14, 0x53, 0x4e, 0x51, 0x7d, 0x1c, 0x47, 0xde, 0xb0, 0x45, 0x3d, 0xa2, 0x10, 0xc3, + 0x9f, 0x8c, 0x09, 0x9f, 0x24, 0xa7, 0x23, 0x8f, 0x06, 0x3b, 0xe7, 0x2e, 0x77, 0xdf, 0xf2, 0x68, + 0xc8, 0x5d, 0x12, 0xe2, 0x98, 0xed, 0xc8, 0x8d, 0x3b, 0xd1, 0xf9, 0x78, 0x87, 0xcf, 0x22, 0xcc, + 0xd4, 0xaf, 0xde, 0x77, 0x7b, 0x4c, 0xe9, 0x78, 0x8a, 0x77, 0x24, 0x74, 0x9a, 0x9c, 0xed, 0xe0, + 0x20, 0xe2, 0x33, 0x45, 0xb4, 0xfe, 0x58, 0x85, 0xad, 0xbd, 0x18, 0xbb, 0x1c, 0xef, 0x19, 0x69, + 0x36, 0xfe, 0x32, 0xc1, 0x8c, 0xa3, 0x57, 0xa0, 0x93, 0x6a, 0x70, 0x88, 0x3f, 0xa8, 0xdc, 0xad, + 0x6c, 0xb7, 0xec, 0x76, 0x8a, 0x3b, 0xf4, 0xd1, 0x4d, 0x58, 0xc5, 0x2f, 0xb0, 0x27, 0xa8, 0x55, + 0x49, 0x6d, 0x08, 0xf0, 0xd0, 0x47, 0xef, 0x40, 0x9b, 0xf1, 0x98, 0x84, 0x63, 0x27, 0x61, 0x38, + 0x1e, 0xd4, 0xee, 0x56, 0xb6, 0xdb, 0xf7, 0xd7, 0x47, 0xc2, 0xa5, 0xd1, 0xb1, 0x24, 0x9c, 0x30, + 0x1c, 0xdb, 0xc0, 0xd2, 0x35, 0xba, 0x07, 0xab, 0x3e, 0xbe, 0x20, 0x1e, 0x66, 0x83, 0xfa, 0xdd, + 0xda, 0x76, 0xfb, 0x7e, 0x47, 0xb1, 0x3f, 0x96, 0x48, 0xdb, 0x10, 0xd1, 0x1b, 0xd0, 0x64, 0x9c, + 0xc6, 0xee, 0x18, 0xb3, 0xc1, 0x8a, 0x64, 0xec, 0x1a, 0xb9, 0x12, 0x6b, 0xa7, 0x64, 0xf4, 0x12, + 0xd4, 0x9e, 0xed, 0x1d, 0x0e, 0x1a, 0x52, 0x3b, 0x68, 0xae, 0x08, 0x7b, 0xb6, 0x40, 0xa3, 0x57, + 0xa1, 0xcb, 0xdc, 0xd0, 0x3f, 0xa5, 0x2f, 0x9c, 0x88, 0xf8, 0x21, 0x1b, 0xac, 0xde, 0xad, 0x6c, + 0x37, 0xed, 0x8e, 0x46, 0x1e, 0x09, 0x9c, 0xf5, 0x11, 0xdc, 0x38, 0xe6, 0x6e, 0xcc, 0xaf, 0x10, + 0x1d, 0xeb, 0x04, 0xb6, 0x6c, 0x1c, 0xd0, 0x8b, 0x2b, 0x85, 0x76, 0x00, 0xab, 0x9c, 0x04, 0x98, + 0x26, 0x5c, 0x86, 0xb6, 0x6b, 0x1b, 0xd0, 0xfa, 0x73, 0x05, 0xd0, 0xfe, 0x0b, 0xec, 0x1d, 0xc5, + 0xd4, 0xc3, 0x8c, 0xfd, 0x9f, 0x8e, 0xeb, 0x75, 0x58, 0x8d, 0x94, 0x01, 0x83, 0xba, 0x64, 0xd7, + 0xa7, 0x60, 0xac, 0x32, 0x54, 0xeb, 0x0b, 0xd8, 0x3c, 0x26, 0xe3, 0xd0, 0x9d, 0x5e, 0xa3, 0xbd, + 0x5b, 0xd0, 0x60, 0x52, 0xa6, 0x34, 0xb5, 0x6b, 0x6b, 0xc8, 0x3a, 0x02, 0xf4, 0xb9, 0x4b, 0xf8, + 0xf5, 0x69, 0xb2, 0xde, 0x82, 0x8d, 0x82, 0x44, 0x16, 0xd1, 0x90, 0x61, 0x69, 0x00, 0x77, 0x79, + 0xc2, 0xa4, 0xb0, 0x15, 0x5b, 0x43, 0x16, 0x86, 0xcd, 0x4f, 0x09, 0x33, 0xec, 0xf8, 0x7f, 0x31, + 0x61, 0x0b, 0x1a, 0x67, 0x34, 0x0e, 0x5c, 0x6e, 0x2c, 0x50, 0x10, 0x42, 0x50, 0x77, 0xe3, 0x31, + 0x1b, 0xd4, 0xee, 0xd6, 0xb6, 0x5b, 0xb6, 0x5c, 0x8b, 0x5b, 0x39, 0xa7, 0x46, 0xdb, 0xf5, 0x0a, + 0x74, 0x74, 0xdc, 0x9d, 0x29, 0x61, 0x5c, 0xea, 0xe9, 0xd8, 0x6d, 0x8d, 0x13, 0x7b, 0x2c, 0x0a, + 0x5b, 0x27, 0x91, 0x7f, 0xc5, 0x07, 0x7f, 0x1f, 0x5a, 0x31, 0x66, 0x34, 0x89, 0xc5, 0x33, 0xad, + 0xca, 0x73, 0xdf, 0x54, 0xe7, 0xfe, 0x29, 0x09, 0x93, 0x17, 0xb6, 0xa1, 0xd9, 0x19, 0x9b, 0x7e, + 0x42, 0x9c, 0x5d, 0xe5, 0x09, 0x7d, 0x04, 0x37, 0x8e, 0xdc, 0x84, 0x5d, 0xc5, 0x56, 0xeb, 0x81, + 0x78, 0x7e, 0x2c, 0x09, 0xae, 0xb4, 0xf9, 0x4f, 0x15, 0x68, 0xee, 0x45, 0xc9, 0x09, 0x73, 0xc7, + 0x18, 0xfd, 0x00, 0xda, 0x9c, 0x72, 0x77, 0xea, 0x24, 0x02, 0x94, 0xec, 0x75, 0x1b, 0x24, 0x4a, + 0x31, 0x88, 0xb0, 0xe3, 0xd8, 0x8b, 0x12, 0xcd, 0x51, 0xbd, 0x5b, 0xdb, 0xae, 0xdb, 0x6d, 0x85, + 0x53, 0x2c, 0x23, 0xd8, 0x90, 0x34, 0x87, 0x84, 0xce, 0x39, 0x8e, 0x43, 0x3c, 0x0d, 0xa8, 0x8f, + 0xe5, 0xfd, 0xad, 0xdb, 0x7d, 0x49, 0x3a, 0x0c, 0x3f, 0x49, 0x09, 0xe8, 0x47, 0xd0, 0x4f, 0xf9, + 0xc5, 0xa3, 0x94, 0xdc, 0x75, 0xc9, 0xdd, 0xd3, 0xdc, 0x27, 0x1a, 0x6d, 0xfd, 0x0e, 0xd6, 0x3e, + 0x9b, 0xc4, 0x94, 0xf3, 0x29, 0x09, 0xc7, 0x8f, 0x5d, 0xee, 0x8a, 0xec, 0x11, 0xe1, 0x98, 0x50, + 0x9f, 0x69, 0x6b, 0x0d, 0x88, 0xde, 0x84, 0x3e, 0x57, 0xbc, 0xd8, 0x77, 0x0c, 0x4f, 0x55, 0xf2, + 0xac, 0xa7, 0x84, 0x23, 0xcd, 0xfc, 0x43, 0x58, 0xcb, 0x98, 0x45, 0xfe, 0xd1, 0xf6, 0x76, 0x53, + 0xec, 0x67, 0x24, 0xc0, 0xd6, 0x85, 0x8c, 0x95, 0x3c, 0x64, 0xf4, 0x26, 0xb4, 0xb2, 0x38, 0x54, + 0xe4, 0x0d, 0x59, 0x53, 0x37, 0xc4, 0x84, 0xd3, 0x6e, 0xa6, 0x41, 0xf9, 0x18, 0x7a, 0x3c, 0x35, + 0xdc, 0xf1, 0x5d, 0xee, 0x16, 0x2f, 0x55, 0xd1, 0x2b, 0x7b, 0x8d, 0x17, 0x60, 0xeb, 0x01, 0xb4, + 0x8e, 0x88, 0xcf, 0x94, 0xe2, 0x01, 0xac, 0x7a, 0x49, 0x1c, 0xe3, 0x90, 0x1b, 0x97, 0x35, 0x88, + 0x36, 0x61, 0x65, 0x4a, 0x02, 0xc2, 0xb5, 0x9b, 0x0a, 0xb0, 0x28, 0xc0, 0x53, 0x1c, 0xd0, 0x78, + 0x26, 0x03, 0xb6, 0x09, 0x2b, 0xf9, 0xc3, 0x55, 0x00, 0xba, 0x0d, 0xad, 0xc0, 0x7d, 0x91, 0x1e, + 0xaa, 0xa0, 0x34, 0x03, 0xf7, 0x85, 0x32, 0x7e, 0x00, 0xab, 0x67, 0x2e, 0x99, 0x7a, 0x21, 0xd7, + 0x51, 0x31, 0x60, 0xa6, 0xb0, 0x9e, 0x57, 0xf8, 0xb7, 0x2a, 0xb4, 0x95, 0x46, 0x65, 0xf0, 0x26, + 0xac, 0x78, 0xae, 0x37, 0x49, 0x55, 0x4a, 0x00, 0xdd, 0x33, 0x86, 0x54, 0xf3, 0x49, 0x38, 0xb3, + 0xd4, 0x98, 0xb6, 0x03, 0xc0, 0x9e, 0xbb, 0x91, 0xb6, 0xad, 0xb6, 0x84, 0xb9, 0x25, 0x78, 0x94, + 0xb9, 0xef, 0x42, 0x47, 0xdd, 0x3b, 0xbd, 0xa5, 0xbe, 0x64, 0x4b, 0x5b, 0x71, 0xa9, 0x4d, 0xaf, + 0x42, 0x37, 0x61, 0xd8, 0x99, 0x10, 0x1c, 0xbb, 0xb1, 0x37, 0x99, 0x0d, 0x56, 0xd4, 0x37, 0x32, + 0x61, 0xf8, 0xc0, 0xe0, 0xd0, 0x7d, 0x58, 0x11, 0xe9, 0x8f, 0x0d, 0x1a, 0xf2, 0x73, 0xfc, 0x52, + 0x5e, 0xa4, 0x74, 0x75, 0x24, 0x7f, 0xf7, 0x43, 0x1e, 0xcf, 0x6c, 0xc5, 0x3a, 0xfc, 0x00, 0x20, + 0x43, 0xa2, 0x75, 0xa8, 0x9d, 0xe3, 0x99, 0x7e, 0x87, 0x62, 0x29, 0x82, 0x73, 0xe1, 0x4e, 0x13, + 0x13, 0x75, 0x05, 0x7c, 0x54, 0xfd, 0xa0, 0x62, 0x79, 0xd0, 0xdb, 0x9d, 0x9e, 0x13, 0x9a, 0xdb, + 0xbe, 0x09, 0x2b, 0x81, 0xfb, 0x05, 0x8d, 0x4d, 0x24, 0x25, 0x20, 0xb1, 0x24, 0xa4, 0xb1, 0x11, + 0x21, 0x01, 0xb4, 0x06, 0x55, 0x1a, 0xc9, 0x78, 0xb5, 0xec, 0x2a, 0x8d, 0x32, 0x45, 0xf5, 0x9c, + 0x22, 0xeb, 0x5f, 0x75, 0x80, 0x4c, 0x0b, 0xb2, 0x61, 0x48, 0xa8, 0xc3, 0x70, 0x2c, 0x4a, 0x10, + 0xe7, 0x74, 0xc6, 0x31, 0x73, 0x62, 0xec, 0x25, 0x31, 0x23, 0x17, 0xe2, 0xfc, 0x84, 0xdb, 0x37, + 0x94, 0xdb, 0x73, 0xb6, 0xd9, 0x37, 0x09, 0x3d, 0x56, 0xfb, 0x76, 0xc5, 0x36, 0xdb, 0xec, 0x42, + 0x87, 0x70, 0x23, 0x93, 0xe9, 0xe7, 0xc4, 0x55, 0x2f, 0x13, 0xb7, 0x91, 0x8a, 0xf3, 0x33, 0x51, + 0xfb, 0xb0, 0x41, 0xa8, 0xf3, 0x65, 0x82, 0x93, 0x82, 0xa0, 0xda, 0x65, 0x82, 0xfa, 0x84, 0xfe, + 0x52, 0x6e, 0xc8, 0xc4, 0x1c, 0xc1, 0xad, 0x9c, 0x97, 0xe2, 0xb9, 0xe7, 0x84, 0xd5, 0x2f, 0x13, + 0xb6, 0x95, 0x5a, 0x25, 0xf2, 0x41, 0x26, 0xf1, 0xe7, 0xb0, 0x45, 0xa8, 0xf3, 0xdc, 0x25, 0x7c, + 0x5e, 0xdc, 0xca, 0xb7, 0x38, 0x29, 0x3e, 0xba, 0x45, 0x59, 0xca, 0xc9, 0x00, 0xc7, 0xe3, 0x82, + 0x93, 0x8d, 0x6f, 0x71, 0xf2, 0xa9, 0xdc, 0x90, 0x89, 0x79, 0x04, 0x7d, 0x42, 0xe7, 0xad, 0x59, + 0xbd, 0x4c, 0x48, 0x8f, 0xd0, 0xa2, 0x25, 0xbb, 0xd0, 0x67, 0xd8, 0xe3, 0x34, 0xce, 0x5f, 0x82, + 0xe6, 0x65, 0x22, 0xd6, 0x35, 0x7f, 0x2a, 0xc3, 0xfa, 0x35, 0x74, 0x0e, 0x92, 0x31, 0xe6, 0xd3, + 0xd3, 0x34, 0x19, 0x5c, 0x5b, 0xfe, 0xb1, 0xfe, 0x53, 0x85, 0xf6, 0xde, 0x38, 0xa6, 0x49, 0x54, + 0xc8, 0xc9, 0xea, 0x91, 0xce, 0xe7, 0x64, 0xc9, 0x22, 0x73, 0xb2, 0x62, 0x7e, 0x0f, 0x3a, 0x81, + 0x7c, 0xba, 0x9a, 0x5f, 0xe5, 0xa1, 0xfe, 0xc2, 0xa3, 0xb6, 0xdb, 0x41, 0x2e, 0x99, 0x8d, 0x00, + 0x22, 0xe2, 0x33, 0xbd, 0x47, 0xa5, 0xa3, 0x9e, 0xae, 0x08, 0x4d, 0x8a, 0xb6, 0x5b, 0x51, 0x9a, + 0xad, 0xdf, 0x81, 0xf6, 0xa9, 0x08, 0x92, 0xde, 0x50, 0x48, 0x46, 0x59, 0xf4, 0x6c, 0x38, 0xcd, + 0x1e, 0xe1, 0x01, 0x74, 0x27, 0x2a, 0x64, 0x7a, 0x93, 0xba, 0x43, 0xaf, 0x6a, 0x4f, 0x32, 0x7f, + 0x47, 0xf9, 0xc8, 0xaa, 0x03, 0xe8, 0x4c, 0x72, 0xa8, 0xe1, 0x31, 0xf4, 0x17, 0x58, 0x4a, 0x72, + 0xd0, 0x76, 0x3e, 0x07, 0xb5, 0xef, 0x23, 0xa5, 0x28, 0xbf, 0x33, 0x9f, 0x97, 0x7e, 0x01, 0x5b, + 0xf3, 0x65, 0x8e, 0x2e, 0xca, 0xde, 0x83, 0x8e, 0x27, 0xad, 0x2b, 0x9c, 0x40, 0x7f, 0xc1, 0x6e, + 0xbb, 0xed, 0x65, 0x80, 0xe5, 0x03, 0xfa, 0x3c, 0x26, 0x1c, 0x1f, 0xf3, 0x18, 0xbb, 0xc1, 0x75, + 0x54, 0xcd, 0x08, 0xea, 0xf2, 0x13, 0x5b, 0x93, 0x45, 0xa1, 0x5c, 0x5b, 0xaf, 0xc3, 0x46, 0x41, + 0x8b, 0x36, 0x79, 0x1d, 0x6a, 0x53, 0x1c, 0x4a, 0xe9, 0x5d, 0x5b, 0x2c, 0x2d, 0x17, 0xfa, 0x36, + 0x76, 0xfd, 0xeb, 0xb3, 0x46, 0xab, 0xa8, 0x65, 0x2a, 0xb6, 0x01, 0xe5, 0x55, 0x68, 0x53, 0x8c, + 0xd5, 0x95, 0x9c, 0xd5, 0xcf, 0xa0, 0xbf, 0x37, 0xa5, 0x0c, 0x1f, 0x73, 0x9f, 0x84, 0xd7, 0x51, + 0xe6, 0xff, 0x16, 0x36, 0x3e, 0xe3, 0xb3, 0xcf, 0x85, 0x30, 0x46, 0xbe, 0xc2, 0xd7, 0xe4, 0x5f, + 0x4c, 0x9f, 0x1b, 0xff, 0x62, 0xfa, 0x5c, 0x54, 0xf8, 0x1e, 0x9d, 0x26, 0x41, 0x28, 0xaf, 0x7b, + 0xd7, 0xd6, 0x90, 0xf5, 0xcf, 0x0a, 0x6c, 0xaa, 0x1e, 0xfc, 0x58, 0xb5, 0x9e, 0x46, 0xfd, 0x10, + 0x9a, 0x13, 0xca, 0x78, 0xe8, 0x06, 0x58, 0xab, 0x4e, 0x61, 0x21, 0x5e, 0xf4, 0xac, 0x55, 0xd9, + 0x15, 0x88, 0x65, 0xa1, 0x31, 0xae, 0x5d, 0xde, 0x18, 0x2f, 0xb4, 0xbe, 0xf5, 0xc5, 0xd6, 0x17, + 0xbd, 0x0c, 0x60, 0x98, 0x88, 0x2f, 0x3f, 0xfc, 0x2d, 0xbb, 0xa5, 0x31, 0x87, 0x3e, 0xba, 0x07, + 0xbd, 0xb1, 0xb0, 0xd2, 0x99, 0x50, 0x7a, 0xee, 0x44, 0x2e, 0x9f, 0xc8, 0x46, 0xbb, 0x65, 0x77, + 0x25, 0xfa, 0x80, 0xd2, 0xf3, 0x23, 0x97, 0x4f, 0xac, 0x9b, 0x70, 0xe3, 0x31, 0x66, 0x3c, 0xa6, + 0xb3, 0xa2, 0x77, 0xd6, 0x4f, 0x01, 0x0e, 0x43, 0x8e, 0xe3, 0x33, 0x57, 0xb4, 0xf5, 0x6f, 0xe7, + 0x21, 0xfd, 0x49, 0x5d, 0x1f, 0xa9, 0x39, 0x46, 0x4a, 0xb0, 0x73, 0x3c, 0xd6, 0x08, 0x1a, 0x36, + 0x4d, 0x38, 0x66, 0xe8, 0x35, 0xb3, 0xd2, 0xfb, 0x3a, 0x7a, 0x9f, 0x44, 0xda, 0x9a, 0x66, 0x1d, + 0x98, 0xc6, 0x27, 0x13, 0xa7, 0xe3, 0x3c, 0x82, 0x16, 0x31, 0x38, 0xfd, 0x3a, 0x17, 0x55, 0x67, + 0x2c, 0xd6, 0x3e, 0x6c, 0x3c, 0xf2, 0xfd, 0xef, 0x2d, 0xe6, 0xc0, 0xcc, 0x07, 0xbe, 0xb7, 0xa4, + 0x07, 0xb0, 0xa1, 0x5c, 0x53, 0xae, 0x1a, 0x31, 0xaf, 0x41, 0x23, 0x36, 0x71, 0xa9, 0x64, 0x13, + 0x15, 0xcd, 0xa4, 0x69, 0xe2, 0x80, 0x44, 0x63, 0x98, 0x45, 0xd6, 0x1c, 0xd0, 0x06, 0xf4, 0x05, + 0xa1, 0x20, 0xd3, 0xfa, 0x0d, 0x6c, 0x3c, 0x0b, 0xa7, 0x24, 0xc4, 0x7b, 0x47, 0x27, 0x4f, 0x71, + 0x9a, 0x09, 0x10, 0xd4, 0xc5, 0x67, 0x5e, 0x2a, 0x6a, 0xda, 0x72, 0x2d, 0x9e, 0x46, 0x78, 0xea, + 0x78, 0x51, 0xc2, 0xf4, 0x08, 0xa3, 0x11, 0x9e, 0xee, 0x45, 0x09, 0x43, 0xb7, 0x40, 0x7c, 0x6e, + 0x1c, 0x1a, 0x4e, 0x67, 0xf2, 0x7d, 0x34, 0xed, 0x55, 0x2f, 0x4a, 0x9e, 0x85, 0xd3, 0x99, 0xf5, + 0x63, 0xd9, 0xb4, 0x61, 0xec, 0xdb, 0x6e, 0xe8, 0xd3, 0xe0, 0x31, 0xbe, 0xc8, 0x69, 0x48, 0x1b, + 0x04, 0x93, 0x07, 0xbe, 0xae, 0x40, 0xe7, 0xd1, 0x18, 0x87, 0xfc, 0x31, 0xe6, 0x2e, 0x99, 0xca, + 0x26, 0xe0, 0x02, 0xc7, 0x8c, 0xd0, 0x50, 0x3f, 0x18, 0x03, 0x8a, 0x1e, 0x8e, 0x84, 0x84, 0x3b, + 0xbe, 0x8b, 0x03, 0x1a, 0x4a, 0x29, 0x4d, 0x1b, 0x04, 0xea, 0xb1, 0xc4, 0xa0, 0xd7, 0xa1, 0xa7, + 0x46, 0x4c, 0xce, 0xc4, 0x0d, 0xfd, 0x29, 0x8e, 0x4d, 0xcb, 0xbd, 0xa6, 0xd0, 0x07, 0x1a, 0x8b, + 0xde, 0x80, 0x75, 0xfd, 0x90, 0x32, 0xce, 0xba, 0xe4, 0xec, 0x69, 0x7c, 0x81, 0x35, 0x89, 0x22, + 0x1a, 0x73, 0xe6, 0x30, 0xec, 0x79, 0x34, 0x88, 0x74, 0x05, 0xdd, 0x33, 0xf8, 0x63, 0x85, 0xb6, + 0xc6, 0xb0, 0xf1, 0x44, 0xf8, 0xa9, 0x3d, 0xc9, 0x8e, 0x70, 0x2d, 0xc0, 0x81, 0x73, 0x3a, 0xa5, + 0xde, 0xb9, 0x23, 0x52, 0x93, 0x8e, 0xb0, 0xf8, 0x46, 0xef, 0x0a, 0xe4, 0x31, 0xf9, 0x4a, 0x36, + 0x8b, 0x82, 0x6b, 0x42, 0x79, 0x34, 0x4d, 0xc6, 0x4e, 0x14, 0xd3, 0x53, 0xac, 0x5d, 0xec, 0x05, + 0x38, 0x38, 0x50, 0xf8, 0x23, 0x81, 0xb6, 0xfe, 0x5a, 0x81, 0xcd, 0xa2, 0x26, 0x9d, 0x68, 0x77, + 0x60, 0xb3, 0xa8, 0x4a, 0x15, 0xba, 0xba, 0x22, 0xe9, 0xe7, 0x15, 0xca, 0x52, 0x16, 0xbd, 0x0f, + 0x5d, 0x39, 0x77, 0x74, 0x7c, 0x25, 0xa9, 0xf8, 0x9d, 0xcc, 0x9f, 0x8b, 0xdd, 0x71, 0xf3, 0xa7, + 0xf4, 0x21, 0xdc, 0xd2, 0xee, 0x3b, 0x8b, 0x66, 0xab, 0x0b, 0xb1, 0xa5, 0x19, 0x9e, 0xce, 0x59, + 0xff, 0x29, 0x0c, 0x32, 0xd4, 0xee, 0x4c, 0x22, 0x4d, 0xac, 0xde, 0x86, 0x8d, 0x39, 0x67, 0x1f, + 0xf9, 0x7e, 0x2c, 0x73, 0x42, 0xdd, 0x2e, 0x23, 0x59, 0x0f, 0xe1, 0xe6, 0x31, 0xe6, 0x2a, 0x1a, + 0x2e, 0xd7, 0xc5, 0xab, 0x12, 0xb6, 0x0e, 0xb5, 0x63, 0xec, 0x49, 0xe7, 0x6b, 0xb6, 0x58, 0x8a, + 0x0b, 0x78, 0xc2, 0xb0, 0x27, 0xbd, 0xac, 0xd9, 0x72, 0x6d, 0xfd, 0xa5, 0x02, 0xab, 0x3a, 0xbd, + 0x8a, 0xf4, 0xee, 0xc7, 0xe4, 0x02, 0xc7, 0xfa, 0xea, 0x69, 0x48, 0x34, 0xd1, 0x6a, 0xe5, 0xd0, + 0x88, 0x13, 0x9a, 0x26, 0xed, 0xae, 0xc2, 0x3e, 0x53, 0x48, 0x39, 0x52, 0x92, 0x13, 0x13, 0xdd, + 0x9c, 0x68, 0x48, 0xce, 0x85, 0x98, 0x78, 0xfb, 0x32, 0x49, 0xb7, 0x6c, 0x0d, 0x89, 0xab, 0x6e, + 0xe4, 0xad, 0x48, 0x79, 0x06, 0x14, 0x57, 0x3d, 0xa0, 0x49, 0xc8, 0x9d, 0x88, 0x92, 0x90, 0xeb, + 0xac, 0x0c, 0x12, 0x75, 0x24, 0x30, 0xd6, 0xef, 0x2b, 0xd0, 0x50, 0x63, 0x55, 0xd1, 0x0e, 0xa5, + 0xdf, 0xb5, 0x2a, 0x91, 0x35, 0x82, 0xd4, 0xa5, 0xbe, 0x65, 0x72, 0x2d, 0xde, 0xf1, 0x45, 0xa0, + 0x32, 0xbc, 0x36, 0xed, 0x22, 0x10, 0xa9, 0x5d, 0x78, 0x96, 0x7d, 0x1e, 0x25, 0x5d, 0x99, 0xd8, + 0x4d, 0xb1, 0x92, 0x6d, 0xa9, 0xa5, 0xd6, 0xaf, 0x44, 0x17, 0x98, 0x8e, 0x14, 0xd7, 0xa1, 0x96, + 0xa4, 0xc6, 0x88, 0xa5, 0xc0, 0x8c, 0xd3, 0x0f, 0xab, 0x58, 0xa2, 0x7b, 0xb0, 0xe6, 0xfa, 0x3e, + 0x11, 0xdb, 0xdd, 0xe9, 0x13, 0xe2, 0xa7, 0x8f, 0xb4, 0x88, 0xb5, 0xfe, 0x5e, 0x81, 0xde, 0x1e, + 0x8d, 0x66, 0x3f, 0x23, 0x53, 0x9c, 0xcb, 0x20, 0xd2, 0x48, 0xa5, 0x40, 0xae, 0x45, 0x85, 0x7d, + 0x46, 0xa6, 0x58, 0x3d, 0x2d, 0x75, 0xb2, 0x4d, 0x81, 0x90, 0xcf, 0xca, 0x10, 0xd3, 0x49, 0x4d, + 0x57, 0x11, 0x9f, 0x52, 0x1f, 0x8b, 0x24, 0xe6, 0x93, 0xd8, 0x49, 0xe7, 0x32, 0x5d, 0x7b, 0xd5, + 0x27, 0xb1, 0x24, 0x69, 0x47, 0x56, 0xe4, 0x68, 0x30, 0xef, 0x48, 0x43, 0x61, 0x84, 0x23, 0x5b, + 0xd0, 0xa0, 0x67, 0x67, 0x0c, 0x73, 0x39, 0x76, 0xae, 0xd9, 0x1a, 0x4a, 0xd3, 0x5c, 0x33, 0x4b, + 0x73, 0xf7, 0xff, 0xb0, 0xae, 0xd3, 0x9c, 0x6e, 0xb2, 0xd0, 0x13, 0xe8, 0xcd, 0x0d, 0xed, 0x91, + 0xee, 0xba, 0xcb, 0x67, 0xf9, 0xc3, 0xad, 0x91, 0xfa, 0x13, 0x60, 0x64, 0xfe, 0x04, 0x18, 0xed, + 0x07, 0x11, 0x9f, 0xa1, 0x7d, 0x58, 0x2b, 0x8e, 0xb7, 0xd1, 0x6d, 0x53, 0x33, 0x94, 0x0c, 0xbd, + 0x97, 0x8a, 0x79, 0x02, 0xbd, 0xb9, 0x49, 0xb7, 0xb1, 0xa7, 0x7c, 0x00, 0xbe, 0x54, 0xd0, 0x43, + 0x68, 0xe7, 0x46, 0xdb, 0x68, 0xa0, 0x84, 0x2c, 0x4e, 0xbb, 0x97, 0x0a, 0xd8, 0x83, 0x6e, 0x61, + 0xda, 0x8c, 0x86, 0xda, 0x9f, 0x92, 0x11, 0xf4, 0x52, 0x21, 0xbb, 0xd0, 0xce, 0x0d, 0x7d, 0x8d, + 0x15, 0x8b, 0x93, 0xe5, 0xe1, 0xad, 0x12, 0x8a, 0xce, 0xa6, 0x07, 0xd0, 0x2d, 0x8c, 0x68, 0x8d, + 0x21, 0x65, 0xe3, 0xe1, 0xe1, 0xed, 0x52, 0x9a, 0x96, 0xf4, 0x04, 0x7a, 0x73, 0x03, 0x5b, 0x13, + 0xdc, 0xf2, 0x39, 0xee, 0x52, 0xb7, 0x3e, 0x91, 0x87, 0x9d, 0xeb, 0x50, 0x72, 0x87, 0xbd, 0x38, + 0x9e, 0x1d, 0xbe, 0x54, 0x4e, 0xd4, 0x56, 0xed, 0xc3, 0x5a, 0x71, 0x32, 0x6b, 0x84, 0x95, 0xce, + 0x6b, 0x2f, 0xbf, 0x39, 0x85, 0x21, 0x6d, 0x76, 0x73, 0xca, 0x66, 0xb7, 0x4b, 0x05, 0x3d, 0x02, + 0xd0, 0x8d, 0x8c, 0x4f, 0xc2, 0xf4, 0xc8, 0x16, 0x1a, 0xa8, 0xf4, 0xc8, 0x4a, 0x9a, 0x9e, 0x87, + 0x00, 0xaa, 0xff, 0xf0, 0x69, 0xc2, 0xd1, 0x4d, 0x63, 0xc6, 0x5c, 0xd3, 0x33, 0x1c, 0x2c, 0x12, + 0x16, 0x04, 0xe0, 0x38, 0xbe, 0x8a, 0x80, 0x8f, 0x01, 0xb2, 0xbe, 0xc6, 0x08, 0x58, 0xe8, 0x74, + 0x2e, 0x89, 0x41, 0x27, 0xdf, 0xc5, 0x20, 0xed, 0x6b, 0x49, 0x67, 0xb3, 0x54, 0xc4, 0x03, 0xe8, + 0xe4, 0x4b, 0x5b, 0x23, 0xa2, 0xa4, 0xdc, 0x1d, 0x2e, 0x54, 0xa4, 0xe8, 0x91, 0xb9, 0xa9, 0x19, + 0xaa, 0x70, 0x53, 0xbf, 0x9b, 0x88, 0xb9, 0x9a, 0xb8, 0x98, 0x49, 0xbe, 0x83, 0x88, 0xf7, 0xa1, + 0x93, 0x2f, 0x86, 0x8d, 0x0b, 0x25, 0x05, 0xf2, 0xb0, 0x50, 0x10, 0xa3, 0x87, 0xb0, 0x56, 0x2c, + 0x84, 0x51, 0xee, 0x5d, 0x2e, 0x94, 0xc7, 0x43, 0x3d, 0xad, 0xc8, 0xb1, 0xbf, 0x0b, 0x90, 0x15, + 0xcc, 0xe6, 0xf8, 0x16, 0x4a, 0xe8, 0x39, 0xad, 0x7b, 0xd0, 0x2d, 0x34, 0x7f, 0x26, 0x51, 0x94, + 0x75, 0x84, 0x97, 0xe5, 0xf1, 0x62, 0x93, 0x65, 0x4c, 0x2f, 0x6d, 0xbd, 0x2e, 0xbb, 0x40, 0xf9, + 0xe2, 0xde, 0x84, 0xae, 0xa4, 0xe0, 0xff, 0x96, 0x07, 0x9d, 0x2f, 0xe0, 0x73, 0x0f, 0xba, 0xa4, + 0xae, 0x5f, 0x2a, 0xe8, 0x00, 0x7a, 0x4f, 0x4c, 0x6d, 0xa6, 0xeb, 0x46, 0x6d, 0x4e, 0x49, 0x9d, + 0x3c, 0x1c, 0x96, 0x91, 0xf4, 0xab, 0xfa, 0x04, 0xfa, 0x0b, 0x35, 0x23, 0xba, 0x93, 0x0e, 0xb4, + 0x4a, 0x8b, 0xc9, 0xa5, 0x66, 0x1d, 0xc2, 0xfa, 0x7c, 0xc9, 0x88, 0x5e, 0xd6, 0x99, 0xb2, 0xbc, + 0x94, 0x5c, 0x2a, 0xea, 0x43, 0x68, 0x9a, 0x12, 0x05, 0xe9, 0xc1, 0xe1, 0x5c, 0xc9, 0xb2, 0x6c, + 0xeb, 0x6e, 0xe7, 0xeb, 0x6f, 0xee, 0x54, 0xfe, 0xf1, 0xcd, 0x9d, 0xca, 0xbf, 0xbf, 0xb9, 0x53, + 0x39, 0x6d, 0x48, 0xea, 0xbb, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xbe, 0xbd, 0x6e, 0x1d, 0x40, + 0x20, 0x00, 0x00, } diff --git a/protocols/grpc/agent.proto b/protocols/grpc/agent.proto index a89b8c162b..2672e6a62f 100644 --- a/protocols/grpc/agent.proto +++ b/protocols/grpc/agent.proto @@ -55,6 +55,7 @@ service AgentService { rpc OnlineCPUMem(OnlineCPUMemRequest) returns (google.protobuf.Empty); rpc ReseedRandomDev(ReseedRandomDevRequest) returns (google.protobuf.Empty); rpc GetGuestDetails(GuestDetailsRequest) returns (GuestDetailsResponse); + rpc MemHotplugByProbe(MemHotplugByProbeRequest) returns (google.protobuf.Empty); rpc SetGuestDateTime(SetGuestDateTimeRequest) returns (google.protobuf.Empty); rpc CopyFile(CopyFileRequest) returns (google.protobuf.Empty); } @@ -364,6 +365,12 @@ message GuestDetailsResponse { bool support_mem_hotplug_probe = 3; } +message MemHotplugByProbeRequest { + // server needs to send the value of memHotplugProbeAddr into file /sys/devices/system/memory/probe, + // in order to notify the guest kernel about hot-add memory event + repeated uint64 memHotplugProbeAddr = 1; +} + message SetGuestDateTimeRequest { // Sec the second since the Epoch. int64 Sec = 1;