// Code generated by protoc-gen-psrpc v0.7.0, DO NOT EDIT. // source: rpc/io.proto package rpc import ( "context" "github.com/livekit/psrpc" "github.com/livekit/psrpc/pkg/client" "github.com/livekit/psrpc/pkg/info" "github.com/livekit/psrpc/pkg/rand" "github.com/livekit/psrpc/pkg/server" "github.com/livekit/psrpc/version" ) import google_protobuf "google.golang.org/protobuf/types/known/emptypb" import livekit4 "github.com/livekit/protocol/livekit" import livekit5 "github.com/livekit/protocol/livekit" var _ = version.PsrpcVersion_0_7 // ======================= // IOInfo Client Interface // ======================= type IOInfoClient interface { // egress CreateEgress(ctx context.Context, req *livekit4.EgressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) UpdateEgress(ctx context.Context, req *livekit4.EgressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) GetEgress(ctx context.Context, req *GetEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error) ListEgress(ctx context.Context, req *livekit4.ListEgressRequest, opts ...psrpc.RequestOption) (*livekit4.ListEgressResponse, error) UpdateMetrics(ctx context.Context, req *UpdateMetricsRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) // ingress CreateIngress(ctx context.Context, req *livekit5.IngressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) GetIngressInfo(ctx context.Context, req *GetIngressInfoRequest, opts ...psrpc.RequestOption) (*GetIngressInfoResponse, error) UpdateIngressState(ctx context.Context, req *UpdateIngressStateRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) // sip GetSIPTrunkAuthentication(ctx context.Context, req *GetSIPTrunkAuthenticationRequest, opts ...psrpc.RequestOption) (*GetSIPTrunkAuthenticationResponse, error) EvaluateSIPDispatchRules(ctx context.Context, req *EvaluateSIPDispatchRulesRequest, opts ...psrpc.RequestOption) (*EvaluateSIPDispatchRulesResponse, error) UpdateSIPCallState(ctx context.Context, req *UpdateSIPCallStateRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) RecordCallContext(ctx context.Context, req *RecordCallContextRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) // Close immediately, without waiting for pending RPCs Close() } // =========================== // IOInfo ServerImpl Interface // =========================== type IOInfoServerImpl interface { // egress CreateEgress(context.Context, *livekit4.EgressInfo) (*google_protobuf.Empty, error) UpdateEgress(context.Context, *livekit4.EgressInfo) (*google_protobuf.Empty, error) GetEgress(context.Context, *GetEgressRequest) (*livekit4.EgressInfo, error) ListEgress(context.Context, *livekit4.ListEgressRequest) (*livekit4.ListEgressResponse, error) UpdateMetrics(context.Context, *UpdateMetricsRequest) (*google_protobuf.Empty, error) // ingress CreateIngress(context.Context, *livekit5.IngressInfo) (*google_protobuf.Empty, error) GetIngressInfo(context.Context, *GetIngressInfoRequest) (*GetIngressInfoResponse, error) UpdateIngressState(context.Context, *UpdateIngressStateRequest) (*google_protobuf.Empty, error) // sip GetSIPTrunkAuthentication(context.Context, *GetSIPTrunkAuthenticationRequest) (*GetSIPTrunkAuthenticationResponse, error) EvaluateSIPDispatchRules(context.Context, *EvaluateSIPDispatchRulesRequest) (*EvaluateSIPDispatchRulesResponse, error) UpdateSIPCallState(context.Context, *UpdateSIPCallStateRequest) (*google_protobuf.Empty, error) RecordCallContext(context.Context, *RecordCallContextRequest) (*google_protobuf.Empty, error) } // ======================= // IOInfo Server Interface // ======================= type IOInfoServer interface { // Close and wait for pending RPCs to complete Shutdown() // Close immediately, without waiting for pending RPCs Kill() } // ============= // IOInfo Client // ============= type iOInfoClient struct { client *client.RPCClient } // NewIOInfoClient creates a psrpc client that implements the IOInfoClient interface. func NewIOInfoClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (IOInfoClient, error) { sd := &info.ServiceDefinition{ Name: "IOInfo", ID: rand.NewClientID(), } sd.RegisterMethod("CreateEgress", false, false, true, true) sd.RegisterMethod("UpdateEgress", false, false, true, true) sd.RegisterMethod("GetEgress", false, false, true, true) sd.RegisterMethod("ListEgress", false, false, true, true) sd.RegisterMethod("UpdateMetrics", false, false, true, true) sd.RegisterMethod("CreateIngress", false, false, true, true) sd.RegisterMethod("GetIngressInfo", false, false, true, true) sd.RegisterMethod("UpdateIngressState", false, false, true, true) sd.RegisterMethod("GetSIPTrunkAuthentication", false, false, true, true) sd.RegisterMethod("EvaluateSIPDispatchRules", false, false, true, true) sd.RegisterMethod("UpdateSIPCallState", false, false, true, true) sd.RegisterMethod("RecordCallContext", false, false, true, true) rpcClient, err := client.NewRPCClient(sd, bus, opts...) if err != nil { return nil, err } return &iOInfoClient{ client: rpcClient, }, nil } func (c *iOInfoClient) CreateEgress(ctx context.Context, req *livekit4.EgressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) { return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "CreateEgress", nil, req, opts...) } func (c *iOInfoClient) UpdateEgress(ctx context.Context, req *livekit4.EgressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) { return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "UpdateEgress", nil, req, opts...) } func (c *iOInfoClient) GetEgress(ctx context.Context, req *GetEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error) { return client.RequestSingle[*livekit4.EgressInfo](ctx, c.client, "GetEgress", nil, req, opts...) } func (c *iOInfoClient) ListEgress(ctx context.Context, req *livekit4.ListEgressRequest, opts ...psrpc.RequestOption) (*livekit4.ListEgressResponse, error) { return client.RequestSingle[*livekit4.ListEgressResponse](ctx, c.client, "ListEgress", nil, req, opts...) } func (c *iOInfoClient) UpdateMetrics(ctx context.Context, req *UpdateMetricsRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) { return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "UpdateMetrics", nil, req, opts...) } func (c *iOInfoClient) CreateIngress(ctx context.Context, req *livekit5.IngressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) { return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "CreateIngress", nil, req, opts...) } func (c *iOInfoClient) GetIngressInfo(ctx context.Context, req *GetIngressInfoRequest, opts ...psrpc.RequestOption) (*GetIngressInfoResponse, error) { return client.RequestSingle[*GetIngressInfoResponse](ctx, c.client, "GetIngressInfo", nil, req, opts...) } func (c *iOInfoClient) UpdateIngressState(ctx context.Context, req *UpdateIngressStateRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) { return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "UpdateIngressState", nil, req, opts...) } func (c *iOInfoClient) GetSIPTrunkAuthentication(ctx context.Context, req *GetSIPTrunkAuthenticationRequest, opts ...psrpc.RequestOption) (*GetSIPTrunkAuthenticationResponse, error) { return client.RequestSingle[*GetSIPTrunkAuthenticationResponse](ctx, c.client, "GetSIPTrunkAuthentication", nil, req, opts...) } func (c *iOInfoClient) EvaluateSIPDispatchRules(ctx context.Context, req *EvaluateSIPDispatchRulesRequest, opts ...psrpc.RequestOption) (*EvaluateSIPDispatchRulesResponse, error) { return client.RequestSingle[*EvaluateSIPDispatchRulesResponse](ctx, c.client, "EvaluateSIPDispatchRules", nil, req, opts...) } func (c *iOInfoClient) UpdateSIPCallState(ctx context.Context, req *UpdateSIPCallStateRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) { return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "UpdateSIPCallState", nil, req, opts...) } func (c *iOInfoClient) RecordCallContext(ctx context.Context, req *RecordCallContextRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) { return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "RecordCallContext", nil, req, opts...) } func (s *iOInfoClient) Close() { s.client.Close() } // ============= // IOInfo Server // ============= type iOInfoServer struct { svc IOInfoServerImpl rpc *server.RPCServer } // NewIOInfoServer builds a RPCServer that will route requests // to the corresponding method in the provided svc implementation. func NewIOInfoServer(svc IOInfoServerImpl, bus psrpc.MessageBus, opts ...psrpc.ServerOption) (IOInfoServer, error) { sd := &info.ServiceDefinition{ Name: "IOInfo", ID: rand.NewServerID(), } s := server.NewRPCServer(sd, bus, opts...) sd.RegisterMethod("CreateEgress", false, false, true, true) var err error err = server.RegisterHandler(s, "CreateEgress", nil, svc.CreateEgress, nil) if err != nil { s.Close(false) return nil, err } sd.RegisterMethod("UpdateEgress", false, false, true, true) err = server.RegisterHandler(s, "UpdateEgress", nil, svc.UpdateEgress, nil) if err != nil { s.Close(false) return nil, err } sd.RegisterMethod("GetEgress", false, false, true, true) err = server.RegisterHandler(s, "GetEgress", nil, svc.GetEgress, nil) if err != nil { s.Close(false) return nil, err } sd.RegisterMethod("ListEgress", false, false, true, true) err = server.RegisterHandler(s, "ListEgress", nil, svc.ListEgress, nil) if err != nil { s.Close(false) return nil, err } sd.RegisterMethod("UpdateMetrics", false, false, true, true) err = server.RegisterHandler(s, "UpdateMetrics", nil, svc.UpdateMetrics, nil) if err != nil { s.Close(false) return nil, err } sd.RegisterMethod("CreateIngress", false, false, true, true) err = server.RegisterHandler(s, "CreateIngress", nil, svc.CreateIngress, nil) if err != nil { s.Close(false) return nil, err } sd.RegisterMethod("GetIngressInfo", false, false, true, true) err = server.RegisterHandler(s, "GetIngressInfo", nil, svc.GetIngressInfo, nil) if err != nil { s.Close(false) return nil, err } sd.RegisterMethod("UpdateIngressState", false, false, true, true) err = server.RegisterHandler(s, "UpdateIngressState", nil, svc.UpdateIngressState, nil) if err != nil { s.Close(false) return nil, err } sd.RegisterMethod("GetSIPTrunkAuthentication", false, false, true, true) err = server.RegisterHandler(s, "GetSIPTrunkAuthentication", nil, svc.GetSIPTrunkAuthentication, nil) if err != nil { s.Close(false) return nil, err } sd.RegisterMethod("EvaluateSIPDispatchRules", false, false, true, true) err = server.RegisterHandler(s, "EvaluateSIPDispatchRules", nil, svc.EvaluateSIPDispatchRules, nil) if err != nil { s.Close(false) return nil, err } sd.RegisterMethod("UpdateSIPCallState", false, false, true, true) err = server.RegisterHandler(s, "UpdateSIPCallState", nil, svc.UpdateSIPCallState, nil) if err != nil { s.Close(false) return nil, err } sd.RegisterMethod("RecordCallContext", false, false, true, true) err = server.RegisterHandler(s, "RecordCallContext", nil, svc.RecordCallContext, nil) if err != nil { s.Close(false) return nil, err } return &iOInfoServer{ svc: svc, rpc: s, }, nil } func (s *iOInfoServer) Shutdown() { s.rpc.Close(false) } func (s *iOInfoServer) Kill() { s.rpc.Close(true) } // =========================== // IOInfo Unimplemented Server // =========================== type UnimplementedIOInfoServer struct{} func (UnimplementedIOInfoServer) CreateEgress(context.Context, *livekit4.EgressInfo) (*google_protobuf.Empty, error) { return nil, psrpc.ErrUnimplemented } func (UnimplementedIOInfoServer) UpdateEgress(context.Context, *livekit4.EgressInfo) (*google_protobuf.Empty, error) { return nil, psrpc.ErrUnimplemented } func (UnimplementedIOInfoServer) GetEgress(context.Context, *GetEgressRequest) (*livekit4.EgressInfo, error) { return nil, psrpc.ErrUnimplemented } func (UnimplementedIOInfoServer) ListEgress(context.Context, *livekit4.ListEgressRequest) (*livekit4.ListEgressResponse, error) { return nil, psrpc.ErrUnimplemented } func (UnimplementedIOInfoServer) UpdateMetrics(context.Context, *UpdateMetricsRequest) (*google_protobuf.Empty, error) { return nil, psrpc.ErrUnimplemented } func (UnimplementedIOInfoServer) CreateIngress(context.Context, *livekit5.IngressInfo) (*google_protobuf.Empty, error) { return nil, psrpc.ErrUnimplemented } func (UnimplementedIOInfoServer) GetIngressInfo(context.Context, *GetIngressInfoRequest) (*GetIngressInfoResponse, error) { return nil, psrpc.ErrUnimplemented } func (UnimplementedIOInfoServer) UpdateIngressState(context.Context, *UpdateIngressStateRequest) (*google_protobuf.Empty, error) { return nil, psrpc.ErrUnimplemented } func (UnimplementedIOInfoServer) GetSIPTrunkAuthentication(context.Context, *GetSIPTrunkAuthenticationRequest) (*GetSIPTrunkAuthenticationResponse, error) { return nil, psrpc.ErrUnimplemented } func (UnimplementedIOInfoServer) EvaluateSIPDispatchRules(context.Context, *EvaluateSIPDispatchRulesRequest) (*EvaluateSIPDispatchRulesResponse, error) { return nil, psrpc.ErrUnimplemented } func (UnimplementedIOInfoServer) UpdateSIPCallState(context.Context, *UpdateSIPCallStateRequest) (*google_protobuf.Empty, error) { return nil, psrpc.ErrUnimplemented } func (UnimplementedIOInfoServer) RecordCallContext(context.Context, *RecordCallContextRequest) (*google_protobuf.Empty, error) { return nil, psrpc.ErrUnimplemented } var psrpcFileDescriptor4 = []byte{ // 1993 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x58, 0xcd, 0x73, 0xdb, 0xc6, 0x15, 0x0f, 0x3f, 0x44, 0x91, 0x8f, 0x14, 0x45, 0xad, 0x28, 0x0d, 0x44, 0xd5, 0x36, 0x4d, 0xd7, 0xb1, 0x9c, 0xa6, 0x54, 0xa3, 0x1e, 0xda, 0x3a, 0x89, 0x13, 0x89, 0x82, 0x6c, 0x26, 0xb6, 0x44, 0x83, 0xe4, 0x4c, 0xd3, 0x0b, 0x0a, 0x01, 0x4b, 0x0a, 0x11, 0x88, 0x45, 0x17, 0x0b, 0xd9, 0x6a, 0x26, 0xe7, 0xf4, 0xd0, 0xf4, 0xd0, 0x4b, 0x4f, 0x9d, 0xfe, 0x83, 0xb9, 0xf7, 0xd2, 0xce, 0x64, 0xf6, 0x03, 0x24, 0x28, 0x92, 0xb6, 0xe8, 0x13, 0x89, 0xf7, 0xbd, 0x6f, 0x7f, 0xfb, 0xf6, 0xbd, 0x85, 0x12, 0x0d, 0xec, 0x7d, 0x97, 0x34, 0x03, 0x4a, 0x18, 0x41, 0x19, 0x1a, 0xd8, 0xb5, 0xaa, 0xe7, 0x5e, 0xe1, 0x4b, 0x97, 0x99, 0x78, 0x48, 0x71, 0x18, 0x4a, 0x56, 0x6d, 0x2b, 0xa6, 0xba, 0x7e, 0x92, 0xbc, 0x11, 0x93, 0x43, 0x37, 0x50, 0x24, 0x14, 0x93, 0x28, 0x21, 0x23, 0x45, 0xab, 0x7a, 0x64, 0x38, 0xc4, 0x74, 0x9f, 0x04, 0xcc, 0x25, 0x7e, 0xac, 0xbc, 0x3b, 0x24, 0x64, 0xe8, 0xe1, 0x7d, 0xf1, 0x75, 0x1e, 0x0d, 0xf6, 0xf1, 0x28, 0x60, 0xd7, 0x8a, 0x79, 0xf7, 0x26, 0xd3, 0x89, 0xa8, 0xc5, 0xb5, 0x25, 0xbf, 0xb1, 0x0f, 0x95, 0x67, 0x98, 0xe9, 0x22, 0x18, 0x03, 0xff, 0x25, 0xc2, 0x21, 0x43, 0xbb, 0x50, 0x90, 0x41, 0x9b, 0xae, 0xa3, 0xa5, 0xea, 0xa9, 0xbd, 0x82, 0x91, 0x97, 0x84, 0xb6, 0xd3, 0xf8, 0x21, 0x05, 0xd5, 0x7e, 0xe0, 0x58, 0x0c, 0xbf, 0xc4, 0x8c, 0xba, 0xf6, 0x58, 0xeb, 0x11, 0x64, 0x5d, 0x7f, 0x40, 0x84, 0x42, 0xf1, 0x60, 0xb3, 0xa9, 0xe2, 0x6f, 0x4a, 0xdb, 0x6d, 0x7f, 0x40, 0x0c, 0x21, 0x80, 0x1a, 0xb0, 0x66, 0x5d, 0x0d, 0x4d, 0x3b, 0x88, 0xcc, 0x28, 0xb4, 0x86, 0x58, 0xcb, 0xd4, 0x53, 0x7b, 0x69, 0xa3, 0x68, 0x5d, 0x0d, 0x5b, 0x41, 0xd4, 0xe7, 0x24, 0x2e, 0x33, 0xb2, 0xde, 0x24, 0x64, 0xb2, 0x52, 0x66, 0x64, 0xbd, 0x89, 0x65, 0x1a, 0x7d, 0xd8, 0x7a, 0x86, 0x59, 0xdb, 0x9f, 0xd8, 0x57, 0x91, 0xdc, 0x01, 0x50, 0xe9, 0x9d, 0x2c, 0xa0, 0xa0, 0x28, 0x6d, 0x87, 0xb3, 0x43, 0x46, 0xb1, 0x35, 0x32, 0x2f, 0xf1, 0xb5, 0x96, 0x96, 0x6c, 0x49, 0xf9, 0x1a, 0x5f, 0x37, 0xfe, 0x9d, 0x81, 0xed, 0x9b, 0x76, 0xc3, 0x80, 0xf8, 0x21, 0x46, 0x7b, 0x53, 0x4b, 0xac, 0x8e, 0x97, 0x98, 0x94, 0x95, 0x6b, 0xac, 0xc2, 0x0a, 0x23, 0x97, 0xd8, 0x57, 0xe6, 0xe5, 0x07, 0xda, 0x82, 0xdc, 0xeb, 0xd0, 0x8c, 0xa8, 0x27, 0x96, 0x5c, 0x30, 0x56, 0x5e, 0x87, 0x7d, 0xea, 0xa1, 0x3e, 0x94, 0xf9, 0xc6, 0xba, 0xfe, 0xd0, 0x1c, 0xb8, 0xd8, 0x73, 0x42, 0x2d, 0x5b, 0xcf, 0xec, 0x15, 0x0f, 0x9a, 0x4d, 0x1a, 0xd8, 0xcd, 0xf9, 0xb1, 0x34, 0x5f, 0x48, 0x8d, 0x13, 0xa1, 0xa0, 0xfb, 0x8c, 0x5e, 0x1b, 0x6b, 0x5e, 0x92, 0x86, 0x0c, 0x58, 0x1b, 0x60, 0x8b, 0x45, 0x14, 0x9b, 0x03, 0xcf, 0x1a, 0x86, 0xda, 0x8a, 0xb0, 0xfa, 0xeb, 0xb7, 0x59, 0x3d, 0x91, 0x0a, 0x27, 0x5c, 0x5e, 0x1a, 0x2d, 0x0d, 0x12, 0xa4, 0xda, 0x97, 0x80, 0x66, 0x1d, 0xa3, 0x0a, 0x64, 0x78, 0x2a, 0x65, 0xa6, 0xf9, 0x5f, 0xbe, 0xfe, 0x2b, 0xcb, 0x8b, 0x70, 0xbc, 0x7e, 0xf1, 0xf1, 0x24, 0xfd, 0xfb, 0x54, 0xed, 0x0b, 0xd8, 0x98, 0x71, 0xb2, 0x8c, 0x81, 0xc6, 0x10, 0x76, 0x24, 0xfe, 0x54, 0xfc, 0x5d, 0x66, 0x31, 0x7c, 0xcb, 0xad, 0xff, 0x15, 0xac, 0x84, 0x5c, 0x5c, 0x58, 0x2d, 0x1e, 0x6c, 0xdd, 0xdc, 0x41, 0x69, 0x4b, 0xca, 0x34, 0xfe, 0x9b, 0x82, 0xfa, 0x33, 0xcc, 0xba, 0xed, 0x4e, 0x8f, 0x46, 0xfe, 0xe5, 0x61, 0xc4, 0x2e, 0xb0, 0xcf, 0x5c, 0x5b, 0x1c, 0x9f, 0xd8, 0x61, 0x03, 0x8a, 0xa1, 0x1b, 0x98, 0xb6, 0xe5, 0x79, 0xdc, 0x63, 0x8e, 0x7b, 0x3c, 0x4a, 0x6b, 0x29, 0xa3, 0x10, 0xba, 0x41, 0xcb, 0xf2, 0xbc, 0xb6, 0x83, 0xb6, 0x21, 0x3b, 0xa0, 0x64, 0x24, 0x97, 0x22, 0x98, 0xe2, 0x1b, 0xdd, 0x83, 0x02, 0xff, 0x35, 0x2f, 0x48, 0xc8, 0xb4, 0xd5, 0x31, 0x33, 0xcf, 0x89, 0xcf, 0x49, 0xc8, 0x10, 0x82, 0x34, 0x23, 0x12, 0x2b, 0x82, 0x93, 0x66, 0x04, 0xed, 0xc2, 0x2a, 0x23, 0x52, 0x65, 0x65, 0xcc, 0xc8, 0x31, 0x22, 0x14, 0x1e, 0x40, 0x31, 0xa4, 0xb6, 0x69, 0x39, 0x0e, 0x5f, 0x8d, 0x38, 0x34, 0x52, 0x00, 0x42, 0x6a, 0x1f, 0x4a, 0x2a, 0xaa, 0x43, 0x96, 0x87, 0xab, 0xe5, 0x45, 0x0e, 0x4a, 0x02, 0x0e, 0xdd, 0x76, 0x87, 0x07, 0x6b, 0x08, 0x4e, 0xe3, 0xff, 0x69, 0xb8, 0xff, 0x96, 0x95, 0xab, 0xd3, 0x70, 0x04, 0xf9, 0x28, 0xc4, 0xd4, 0xb7, 0x46, 0x58, 0x66, 0xfa, 0xe8, 0xc3, 0xbf, 0xfd, 0xf4, 0x71, 0xea, 0x9f, 0x3f, 0x7d, 0x7c, 0xf7, 0x33, 0x8a, 0x1d, 0xcb, 0x66, 0xd8, 0xa9, 0xef, 0x7d, 0xf7, 0x5d, 0xbd, 0xd9, 0x75, 0xff, 0x8a, 0xeb, 0xdf, 0x7f, 0x5f, 0x3f, 0xbf, 0x66, 0x38, 0x7c, 0xfc, 0xd4, 0x18, 0xeb, 0x71, 0x1b, 0x81, 0x15, 0x86, 0xaf, 0x09, 0x75, 0x54, 0x7a, 0x6e, 0x6d, 0x23, 0xd6, 0x43, 0x08, 0xb2, 0x0e, 0x25, 0x81, 0xc8, 0x53, 0xde, 0x10, 0xff, 0x51, 0x1d, 0x4a, 0x7c, 0x5b, 0x18, 0x0f, 0x9f, 0xef, 0x8b, 0xc8, 0x84, 0x01, 0xa1, 0x1b, 0x88, 0x15, 0xc9, 0x2a, 0x10, 0x50, 0xf2, 0x2d, 0xb6, 0x19, 0xe7, 0xaf, 0x48, 0xa4, 0x28, 0x4a, 0xdb, 0x41, 0x4f, 0x60, 0x2d, 0xa0, 0xe4, 0xca, 0x75, 0x30, 0x35, 0xc5, 0x99, 0xcf, 0xdd, 0x40, 0x4c, 0x47, 0x71, 0xc5, 0xf1, 0x29, 0x05, 0x89, 0x2f, 0xf4, 0x05, 0x00, 0xa6, 0x94, 0x50, 0xd3, 0x26, 0x0e, 0x16, 0x1b, 0x5b, 0x3e, 0xa8, 0xc7, 0x69, 0x9e, 0x93, 0x51, 0x9d, 0x0b, 0x1b, 0x05, 0xa1, 0xd3, 0x22, 0x0e, 0x6e, 0xfc, 0x2f, 0x0b, 0xf7, 0x74, 0x8e, 0x78, 0x8b, 0xe1, 0x6e, 0xbb, 0x73, 0xec, 0x86, 0x81, 0xc5, 0xec, 0x0b, 0x23, 0xf2, 0x70, 0xb8, 0x00, 0x78, 0xf9, 0x79, 0xc0, 0xfb, 0x0d, 0x20, 0x2e, 0x13, 0x58, 0x94, 0xb9, 0xb6, 0x1b, 0x58, 0x3e, 0x1b, 0x9f, 0x0a, 0x21, 0x5a, 0x09, 0xdd, 0xa0, 0x33, 0x61, 0xb6, 0x9d, 0x99, 0xbc, 0xc1, 0x4c, 0xde, 0x1e, 0x43, 0x99, 0xfb, 0xe4, 0xc5, 0xca, 0x8f, 0x46, 0xe7, 0x98, 0x26, 0x60, 0xbd, 0xa6, 0x38, 0xa7, 0x82, 0x81, 0x1e, 0x42, 0x29, 0x16, 0x15, 0x78, 0x2d, 0x8e, 0x05, 0x8b, 0x8a, 0x2e, 0x40, 0xfb, 0x08, 0x84, 0x1e, 0x76, 0x62, 0x83, 0x13, 0xc0, 0x97, 0x24, 0x43, 0xd9, 0xbb, 0x15, 0xba, 0x2b, 0x90, 0x09, 0x5c, 0x5f, 0x6d, 0x28, 0xff, 0xcb, 0xab, 0xae, 0x4f, 0x4c, 0x4e, 0xcc, 0x09, 0x84, 0xac, 0xf8, 0xa4, 0xe3, 0xfa, 0xdc, 0x9a, 0x72, 0x7b, 0xe3, 0xfc, 0x81, 0x24, 0x8b, 0xd8, 0xfe, 0x9e, 0x82, 0x0a, 0x7e, 0xc3, 0xa8, 0x65, 0x5a, 0x8c, 0x51, 0xf7, 0x3c, 0x62, 0x38, 0xd4, 0x0a, 0xa2, 0x8e, 0xfe, 0x41, 0xec, 0xe8, 0x3b, 0xb6, 0xa9, 0xa9, 0x73, 0xe5, 0xc3, 0xb1, 0xae, 0x28, 0x77, 0xb7, 0xc6, 0xf8, 0x3a, 0x9e, 0xd6, 0x1e, 0x1f, 0xdd, 0xd2, 0xa2, 0xa3, 0x5b, 0x3b, 0x82, 0xea, 0x3c, 0x97, 0x4b, 0x55, 0xd8, 0x1f, 0xca, 0x50, 0x5f, 0xbc, 0x2e, 0x75, 0xfa, 0x77, 0xa1, 0xc0, 0x3b, 0x13, 0x73, 0x72, 0xfc, 0x8d, 0x3c, 0x27, 0x9c, 0xf2, 0x63, 0xfd, 0x09, 0x54, 0xa7, 0x41, 0xc7, 0xc1, 0xce, 0xe2, 0xcb, 0x76, 0x33, 0x48, 0x62, 0x4e, 0xb2, 0xd0, 0x2b, 0xa8, 0x24, 0x55, 0x84, 0xd9, 0xd5, 0xa5, 0x2a, 0xc2, 0x7a, 0x42, 0x5f, 0x44, 0xf1, 0xcd, 0x74, 0x14, 0x23, 0xcc, 0x2c, 0xc7, 0x62, 0x96, 0x3a, 0x2b, 0xb7, 0x35, 0x9b, 0x8c, 0xf6, 0xa5, 0x32, 0x81, 0xfe, 0x93, 0x82, 0xed, 0xa4, 0xed, 0x04, 0x3a, 0x8a, 0x02, 0x1d, 0x5f, 0xbe, 0x03, 0x1d, 0xea, 0xbe, 0x4d, 0x9c, 0xbe, 0xf7, 0x05, 0xc9, 0x56, 0x30, 0xcf, 0x06, 0x87, 0x37, 0x95, 0x18, 0x14, 0xd0, 0x17, 0xc5, 0x51, 0xc2, 0x5b, 0x91, 0xf9, 0x19, 0xf8, 0x2c, 0x6e, 0x53, 0xb2, 0x4b, 0xa5, 0x64, 0xa6, 0x9d, 0x59, 0x49, 0xb6, 0x33, 0x4d, 0xc8, 0x51, 0x1c, 0x46, 0x1e, 0x13, 0xe7, 0xad, 0x7c, 0xb0, 0x1d, 0xc3, 0x74, 0x9c, 0x02, 0xc1, 0x35, 0x94, 0xd4, 0x4c, 0xcd, 0x29, 0xcc, 0xd4, 0x9c, 0x7d, 0xa8, 0x72, 0x09, 0x47, 0xe9, 0x9b, 0x34, 0xf2, 0xf0, 0xa4, 0x3a, 0x6d, 0x84, 0x6e, 0x90, 0xcc, 0xee, 0x4c, 0x71, 0x2f, 0xdd, 0x2c, 0xee, 0x0c, 0x56, 0x2f, 0xb0, 0xe5, 0x60, 0x1a, 0x6a, 0x6b, 0x62, 0xb7, 0x0e, 0x6e, 0xb7, 0x5b, 0xcf, 0xa5, 0xd2, 0x72, 0xfb, 0x13, 0xbb, 0x42, 0x14, 0xb6, 0xd4, 0x5f, 0x93, 0x91, 0x24, 0x62, 0xca, 0x22, 0x86, 0xa7, 0x4b, 0xc5, 0xd0, 0x23, 0x37, 0xf0, 0x62, 0x6c, 0x5e, 0xcc, 0x72, 0xb8, 0xcf, 0x89, 0x23, 0xee, 0x36, 0x5e, 0x37, 0x5a, 0xc6, 0xe7, 0xc4, 0x60, 0x8f, 0x24, 0x73, 0x60, 0x6c, 0x5a, 0xb3, 0x1c, 0x74, 0x04, 0xeb, 0xae, 0x6f, 0x7b, 0x91, 0x83, 0xc7, 0xde, 0x36, 0x05, 0x10, 0x76, 0xc6, 0x97, 0x67, 0xb7, 0xdd, 0x91, 0xd2, 0x67, 0x72, 0x92, 0x31, 0xca, 0x4a, 0x23, 0xb6, 0xf1, 0x14, 0x2a, 0xd8, 0xb7, 0xce, 0x79, 0x75, 0x56, 0xfd, 0x67, 0xa8, 0xad, 0xd7, 0x33, 0x7b, 0xe5, 0xc4, 0x60, 0xd1, 0x6d, 0x77, 0x54, 0x27, 0x69, 0xac, 0x2b, 0x61, 0xf5, 0x2d, 0x62, 0xa0, 0xae, 0x2f, 0x5a, 0x6a, 0xe6, 0x8e, 0x30, 0x89, 0x98, 0x56, 0x11, 0x35, 0x73, 0xa7, 0x29, 0x07, 0xa2, 0x66, 0x3c, 0x10, 0x35, 0x8f, 0xd5, 0x40, 0x64, 0x94, 0x95, 0x46, 0x4f, 0x2a, 0x20, 0x1d, 0x36, 0xc4, 0x0c, 0xc2, 0x6f, 0xd8, 0x78, 0x6a, 0xd2, 0x36, 0xde, 0x65, 0x65, 0x9d, 0x8f, 0x28, 0x96, 0xe7, 0xc5, 0x04, 0x74, 0x0f, 0x8a, 0xa2, 0x50, 0x06, 0x14, 0x87, 0x98, 0x69, 0x55, 0x89, 0x6e, 0x4e, 0xea, 0x08, 0x0a, 0xfa, 0x54, 0x09, 0xd8, 0xc4, 0x1f, 0xb8, 0x43, 0x6d, 0x4b, 0x78, 0xa8, 0x8d, 0x97, 0x69, 0x10, 0x32, 0x6a, 0x09, 0x56, 0xec, 0x42, 0x28, 0x4b, 0x12, 0x3a, 0x81, 0xca, 0x08, 0x3b, 0xae, 0x65, 0x62, 0xdf, 0xa6, 0xd7, 0x22, 0x9b, 0xda, 0xb6, 0xc8, 0xf6, 0x6e, 0x32, 0x51, 0x2f, 0xb9, 0x8c, 0x3e, 0x16, 0x31, 0xd6, 0x47, 0xd3, 0x84, 0xda, 0x73, 0xa8, 0x2d, 0xae, 0x45, 0x4b, 0x35, 0xf8, 0x4f, 0xa0, 0x94, 0xc4, 0xc8, 0x52, 0xba, 0x27, 0xa0, 0x2d, 0xc2, 0xf7, 0xb2, 0x76, 0x16, 0x61, 0x76, 0xa9, 0x9b, 0xf0, 0xc7, 0x54, 0x3c, 0x6c, 0xa8, 0x5b, 0x76, 0x6a, 0xd8, 0xf8, 0x04, 0x0a, 0xb2, 0xfd, 0x9a, 0x37, 0x13, 0x2a, 0x05, 0xd1, 0x1e, 0xe6, 0x6d, 0xf5, 0x0f, 0x7d, 0x0e, 0x6b, 0x8c, 0x5a, 0x7e, 0x38, 0x88, 0xdb, 0x4a, 0x39, 0x88, 0x68, 0x49, 0xb5, 0x9e, 0x12, 0x90, 0x9d, 0x25, 0x4b, 0x7c, 0x35, 0x5e, 0x82, 0x66, 0x60, 0x9b, 0x50, 0x87, 0x9b, 0x6e, 0x11, 0x9f, 0xe1, 0x37, 0xec, 0xfd, 0xa3, 0x69, 0xfc, 0x2b, 0x0d, 0xab, 0x8a, 0x83, 0x7e, 0x01, 0xe0, 0x5d, 0x8e, 0xdb, 0x49, 0x75, 0xa1, 0x7b, 0x97, 0xaa, 0x93, 0xdc, 0x85, 0x42, 0x48, 0x22, 0x6a, 0x63, 0xd3, 0x0d, 0x54, 0x9a, 0xf2, 0x92, 0xd0, 0x0e, 0xd0, 0x63, 0x58, 0x8d, 0x7b, 0xb2, 0x8c, 0xf0, 0xbb, 0x9e, 0xf4, 0xdb, 0xa7, 0xae, 0x11, 0xf3, 0xd1, 0x03, 0x35, 0x0a, 0x65, 0xe7, 0xcb, 0xc5, 0x73, 0x11, 0x1f, 0x7b, 0x56, 0xe6, 0x8b, 0xf0, 0x19, 0xe8, 0x3e, 0x64, 0xae, 0x5c, 0x4b, 0xcb, 0x89, 0x1a, 0x36, 0x23, 0xc1, 0x79, 0xe8, 0xee, 0x74, 0x7b, 0xbc, 0xaa, 0xa6, 0xfc, 0x71, 0x6b, 0x3c, 0x7d, 0x43, 0xe4, 0x6f, 0xdc, 0x10, 0x1f, 0xfd, 0x19, 0x36, 0x66, 0x2e, 0x2c, 0xa4, 0x41, 0xf5, 0x85, 0xfe, 0xec, 0xb0, 0xf5, 0x8d, 0x79, 0xd8, 0x6a, 0xe9, 0x9d, 0x9e, 0x79, 0x66, 0x98, 0x9d, 0xf6, 0x69, 0xe5, 0x03, 0x04, 0x90, 0x93, 0xa4, 0x4a, 0x0a, 0xad, 0x43, 0xd1, 0xd0, 0x5f, 0xf5, 0xf5, 0x6e, 0x4f, 0x30, 0xd3, 0x9c, 0x69, 0xe8, 0x5f, 0xe9, 0xad, 0x5e, 0x25, 0x83, 0xf2, 0x90, 0x3d, 0x36, 0xce, 0x3a, 0x95, 0xec, 0x47, 0xff, 0x48, 0xc1, 0xee, 0x5b, 0xc6, 0x01, 0x74, 0x07, 0x76, 0xba, 0xed, 0x8e, 0xd9, 0x33, 0xfa, 0xa7, 0x5f, 0x9b, 0x87, 0xfd, 0xde, 0x73, 0x53, 0x37, 0x8c, 0x33, 0xc3, 0x3c, 0x3d, 0x3b, 0xd5, 0x2b, 0x1f, 0xa0, 0x47, 0xf0, 0x60, 0x2e, 0xfb, 0x55, 0xff, 0xac, 0x77, 0x68, 0xea, 0x7f, 0x6c, 0xe9, 0xfa, 0xb1, 0x7e, 0x5c, 0x49, 0x2d, 0x14, 0x3c, 0x3d, 0x53, 0xb4, 0x93, 0xb3, 0xfe, 0xe9, 0x71, 0x25, 0x7d, 0xf0, 0xe3, 0x2a, 0xe4, 0xda, 0x67, 0x02, 0xa5, 0x9f, 0x42, 0xa9, 0x45, 0xb1, 0xc5, 0xb0, 0x7c, 0xbb, 0x41, 0xf3, 0x1e, 0x73, 0x6a, 0xdb, 0x33, 0x35, 0x50, 0x1f, 0x05, 0xec, 0x9a, 0x2b, 0xcb, 0x23, 0xf3, 0x3e, 0xca, 0xbf, 0x83, 0xc2, 0xf8, 0x39, 0x0a, 0x6d, 0xc5, 0x2f, 0x15, 0x53, 0xcf, 0x53, 0xb5, 0x79, 0x06, 0x91, 0x0e, 0xf0, 0xc2, 0x0d, 0x63, 0xcd, 0x49, 0xf5, 0x9c, 0x10, 0x63, 0xf5, 0xdd, 0xb9, 0xbc, 0xf1, 0x4c, 0xbb, 0x36, 0xf5, 0xb8, 0x85, 0x76, 0x44, 0x0c, 0xf3, 0x1e, 0xbc, 0x16, 0xae, 0xe1, 0x73, 0x58, 0x93, 0xd9, 0x53, 0x8f, 0x0a, 0x68, 0xee, 0x43, 0xd1, 0x42, 0xf5, 0x36, 0x94, 0xa7, 0x1f, 0x67, 0x50, 0x6d, 0xee, 0x8b, 0x4d, 0xbc, 0x9a, 0xc5, 0xaf, 0x39, 0xe8, 0x05, 0xa0, 0xd9, 0xa7, 0x12, 0x74, 0x37, 0xb1, 0xa4, 0x39, 0x6f, 0x28, 0x0b, 0x03, 0xfb, 0x16, 0x76, 0x16, 0x3e, 0x0a, 0xa0, 0x87, 0x71, 0x1c, 0x6f, 0x7d, 0x2e, 0xa9, 0x7d, 0xf8, 0x2e, 0x31, 0x15, 0xf9, 0x10, 0xb4, 0x45, 0x5d, 0x09, 0xfa, 0xe5, 0x6d, 0x06, 0xaf, 0xda, 0xc3, 0x5b, 0xb5, 0x36, 0x93, 0x14, 0x25, 0x0b, 0xfc, 0x54, 0x8a, 0xe6, 0x54, 0xfe, 0x85, 0x29, 0xfa, 0x0a, 0x36, 0x66, 0xea, 0x33, 0xba, 0x23, 0x8c, 0x2d, 0xaa, 0xdb, 0x8b, 0x6c, 0x1d, 0xdd, 0xff, 0xd3, 0xbd, 0xa1, 0xcb, 0x2e, 0xa2, 0xf3, 0xa6, 0x4d, 0x46, 0xfb, 0x0a, 0x41, 0xf2, 0x1d, 0xd7, 0x26, 0xde, 0x3e, 0x0d, 0xec, 0xf3, 0x9c, 0xf8, 0xfa, 0xed, 0xcf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x73, 0xbd, 0x92, 0x2d, 0x7f, 0x16, 0x00, 0x00, }