Files
protocol/rpc/ingress.psrpc.go
Paul Wells 48d85c2066 normalize protobuf "id" log field names (#1451)
* normalize protobuf "id" log field names

* Update changeset for '@livekit/protocol' patch

Updated the changeset to include a patch for '@livekit/protocol' and normalize protobuf 'id' log field names.

* generated protobuf

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2026-03-15 04:06:59 -07:00

447 lines
20 KiB
Go

// Code generated by protoc-gen-psrpc v0.7.0, DO NOT EDIT.
// source: rpc/ingress.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 livekit5 "github.com/livekit/protocol/livekit"
var _ = version.PsrpcVersion_0_7
// ================================
// IngressInternal Client Interface
// ================================
type IngressInternalClient interface {
StartIngress(ctx context.Context, req *StartIngressRequest, opts ...psrpc.RequestOption) (*livekit5.IngressInfo, error)
ListActiveIngress(ctx context.Context, topic string, req *ListActiveIngressRequest, opts ...psrpc.RequestOption) (<-chan *psrpc.Response[*ListActiveIngressResponse], error)
// Close immediately, without waiting for pending RPCs
Close()
}
// ====================================
// IngressInternal ServerImpl Interface
// ====================================
type IngressInternalServerImpl interface {
StartIngress(context.Context, *StartIngressRequest) (*livekit5.IngressInfo, error)
StartIngressAffinity(context.Context, *StartIngressRequest) float32
ListActiveIngress(context.Context, *ListActiveIngressRequest) (*ListActiveIngressResponse, error)
}
// ================================
// IngressInternal Server Interface
// ================================
type IngressInternalServer interface {
RegisterListActiveIngressTopic(topic string) error
DeregisterListActiveIngressTopic(topic string)
// Close and wait for pending RPCs to complete
Shutdown()
// Close immediately, without waiting for pending RPCs
Kill()
}
// ======================
// IngressInternal Client
// ======================
type ingressInternalClient struct {
client *client.RPCClient
}
// NewIngressInternalClient creates a psrpc client that implements the IngressInternalClient interface.
func NewIngressInternalClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (IngressInternalClient, error) {
sd := &info.ServiceDefinition{
Name: "IngressInternal",
ID: rand.NewClientID(),
}
sd.RegisterMethod("StartIngress", true, false, true, false)
sd.RegisterMethod("ListActiveIngress", false, true, false, false)
rpcClient, err := client.NewRPCClient(sd, bus, opts...)
if err != nil {
return nil, err
}
return &ingressInternalClient{
client: rpcClient,
}, nil
}
func (c *ingressInternalClient) StartIngress(ctx context.Context, req *StartIngressRequest, opts ...psrpc.RequestOption) (*livekit5.IngressInfo, error) {
return client.RequestSingle[*livekit5.IngressInfo](ctx, c.client, "StartIngress", nil, req, opts...)
}
func (c *ingressInternalClient) ListActiveIngress(ctx context.Context, topic string, req *ListActiveIngressRequest, opts ...psrpc.RequestOption) (<-chan *psrpc.Response[*ListActiveIngressResponse], error) {
return client.RequestMulti[*ListActiveIngressResponse](ctx, c.client, "ListActiveIngress", []string{topic}, req, opts...)
}
func (s *ingressInternalClient) Close() {
s.client.Close()
}
// ======================
// IngressInternal Server
// ======================
type ingressInternalServer struct {
svc IngressInternalServerImpl
rpc *server.RPCServer
}
// NewIngressInternalServer builds a RPCServer that will route requests
// to the corresponding method in the provided svc implementation.
func NewIngressInternalServer(svc IngressInternalServerImpl, bus psrpc.MessageBus, opts ...psrpc.ServerOption) (IngressInternalServer, error) {
sd := &info.ServiceDefinition{
Name: "IngressInternal",
ID: rand.NewServerID(),
}
s := server.NewRPCServer(sd, bus, opts...)
sd.RegisterMethod("StartIngress", true, false, true, false)
var err error
err = server.RegisterHandler(s, "StartIngress", nil, svc.StartIngress, svc.StartIngressAffinity)
if err != nil {
s.Close(false)
return nil, err
}
sd.RegisterMethod("ListActiveIngress", false, true, false, false)
return &ingressInternalServer{
svc: svc,
rpc: s,
}, nil
}
func (s *ingressInternalServer) RegisterListActiveIngressTopic(topic string) error {
return server.RegisterHandler(s.rpc, "ListActiveIngress", []string{topic}, s.svc.ListActiveIngress, nil)
}
func (s *ingressInternalServer) DeregisterListActiveIngressTopic(topic string) {
s.rpc.DeregisterHandler("ListActiveIngress", []string{topic})
}
func (s *ingressInternalServer) Shutdown() {
s.rpc.Close(false)
}
func (s *ingressInternalServer) Kill() {
s.rpc.Close(true)
}
// ====================================
// IngressInternal Unimplemented Server
// ====================================
type UnimplementedIngressInternalServer struct{}
func (UnimplementedIngressInternalServer) StartIngress(context.Context, *StartIngressRequest) (*livekit5.IngressInfo, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIngressInternalServer) StartIngressAffinity(context.Context, *StartIngressRequest) float32 {
return -1
}
func (UnimplementedIngressInternalServer) ListActiveIngress(context.Context, *ListActiveIngressRequest) (*ListActiveIngressResponse, error) {
return nil, psrpc.ErrUnimplemented
}
// ===============================
// IngressHandler Client Interface
// ===============================
type IngressHandlerClient interface {
UpdateIngress(ctx context.Context, topic string, req *livekit5.UpdateIngressRequest, opts ...psrpc.RequestOption) (*livekit5.IngressState, error)
DeleteIngress(ctx context.Context, topic string, req *livekit5.DeleteIngressRequest, opts ...psrpc.RequestOption) (*livekit5.IngressState, error)
DeleteWHIPResource(ctx context.Context, topic string, req *DeleteWHIPResourceRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
ICERestartWHIPResource(ctx context.Context, topic string, req *ICERestartWHIPResourceRequest, opts ...psrpc.RequestOption) (*ICERestartWHIPResourceResponse, error)
WHIPRTCConnectionNotify(ctx context.Context, topic string, req *WHIPRTCConnectionNotifyRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
// Close immediately, without waiting for pending RPCs
Close()
}
// ===================================
// IngressHandler ServerImpl Interface
// ===================================
type IngressHandlerServerImpl interface {
UpdateIngress(context.Context, *livekit5.UpdateIngressRequest) (*livekit5.IngressState, error)
DeleteIngress(context.Context, *livekit5.DeleteIngressRequest) (*livekit5.IngressState, error)
DeleteWHIPResource(context.Context, *DeleteWHIPResourceRequest) (*google_protobuf.Empty, error)
ICERestartWHIPResource(context.Context, *ICERestartWHIPResourceRequest) (*ICERestartWHIPResourceResponse, error)
WHIPRTCConnectionNotify(context.Context, *WHIPRTCConnectionNotifyRequest) (*google_protobuf.Empty, error)
}
// ===============================
// IngressHandler Server Interface
// ===============================
type IngressHandlerServer interface {
RegisterUpdateIngressTopic(topic string) error
DeregisterUpdateIngressTopic(topic string)
RegisterDeleteIngressTopic(topic string) error
DeregisterDeleteIngressTopic(topic string)
RegisterDeleteWHIPResourceTopic(topic string) error
DeregisterDeleteWHIPResourceTopic(topic string)
RegisterICERestartWHIPResourceTopic(topic string) error
DeregisterICERestartWHIPResourceTopic(topic string)
RegisterWHIPRTCConnectionNotifyTopic(topic string) error
DeregisterWHIPRTCConnectionNotifyTopic(topic string)
// Close and wait for pending RPCs to complete
Shutdown()
// Close immediately, without waiting for pending RPCs
Kill()
}
// =====================
// IngressHandler Client
// =====================
type ingressHandlerClient struct {
client *client.RPCClient
}
// NewIngressHandlerClient creates a psrpc client that implements the IngressHandlerClient interface.
func NewIngressHandlerClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (IngressHandlerClient, error) {
sd := &info.ServiceDefinition{
Name: "IngressHandler",
ID: rand.NewClientID(),
}
sd.RegisterMethod("UpdateIngress", false, false, true, true)
sd.RegisterMethod("DeleteIngress", false, false, true, true)
sd.RegisterMethod("DeleteWHIPResource", false, false, true, true)
sd.RegisterMethod("ICERestartWHIPResource", false, false, true, true)
sd.RegisterMethod("WHIPRTCConnectionNotify", false, false, false, true)
rpcClient, err := client.NewRPCClient(sd, bus, opts...)
if err != nil {
return nil, err
}
return &ingressHandlerClient{
client: rpcClient,
}, nil
}
func (c *ingressHandlerClient) UpdateIngress(ctx context.Context, topic string, req *livekit5.UpdateIngressRequest, opts ...psrpc.RequestOption) (*livekit5.IngressState, error) {
return client.RequestSingle[*livekit5.IngressState](ctx, c.client, "UpdateIngress", []string{topic}, req, opts...)
}
func (c *ingressHandlerClient) DeleteIngress(ctx context.Context, topic string, req *livekit5.DeleteIngressRequest, opts ...psrpc.RequestOption) (*livekit5.IngressState, error) {
return client.RequestSingle[*livekit5.IngressState](ctx, c.client, "DeleteIngress", []string{topic}, req, opts...)
}
func (c *ingressHandlerClient) DeleteWHIPResource(ctx context.Context, topic string, req *DeleteWHIPResourceRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "DeleteWHIPResource", []string{topic}, req, opts...)
}
func (c *ingressHandlerClient) ICERestartWHIPResource(ctx context.Context, topic string, req *ICERestartWHIPResourceRequest, opts ...psrpc.RequestOption) (*ICERestartWHIPResourceResponse, error) {
return client.RequestSingle[*ICERestartWHIPResourceResponse](ctx, c.client, "ICERestartWHIPResource", []string{topic}, req, opts...)
}
func (c *ingressHandlerClient) WHIPRTCConnectionNotify(ctx context.Context, topic string, req *WHIPRTCConnectionNotifyRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "WHIPRTCConnectionNotify", []string{topic}, req, opts...)
}
func (s *ingressHandlerClient) Close() {
s.client.Close()
}
// =====================
// IngressHandler Server
// =====================
type ingressHandlerServer struct {
svc IngressHandlerServerImpl
rpc *server.RPCServer
}
// NewIngressHandlerServer builds a RPCServer that will route requests
// to the corresponding method in the provided svc implementation.
func NewIngressHandlerServer(svc IngressHandlerServerImpl, bus psrpc.MessageBus, opts ...psrpc.ServerOption) (IngressHandlerServer, error) {
sd := &info.ServiceDefinition{
Name: "IngressHandler",
ID: rand.NewServerID(),
}
s := server.NewRPCServer(sd, bus, opts...)
sd.RegisterMethod("UpdateIngress", false, false, true, true)
sd.RegisterMethod("DeleteIngress", false, false, true, true)
sd.RegisterMethod("DeleteWHIPResource", false, false, true, true)
sd.RegisterMethod("ICERestartWHIPResource", false, false, true, true)
sd.RegisterMethod("WHIPRTCConnectionNotify", false, false, false, true)
return &ingressHandlerServer{
svc: svc,
rpc: s,
}, nil
}
func (s *ingressHandlerServer) RegisterUpdateIngressTopic(topic string) error {
return server.RegisterHandler(s.rpc, "UpdateIngress", []string{topic}, s.svc.UpdateIngress, nil)
}
func (s *ingressHandlerServer) DeregisterUpdateIngressTopic(topic string) {
s.rpc.DeregisterHandler("UpdateIngress", []string{topic})
}
func (s *ingressHandlerServer) RegisterDeleteIngressTopic(topic string) error {
return server.RegisterHandler(s.rpc, "DeleteIngress", []string{topic}, s.svc.DeleteIngress, nil)
}
func (s *ingressHandlerServer) DeregisterDeleteIngressTopic(topic string) {
s.rpc.DeregisterHandler("DeleteIngress", []string{topic})
}
func (s *ingressHandlerServer) RegisterDeleteWHIPResourceTopic(topic string) error {
return server.RegisterHandler(s.rpc, "DeleteWHIPResource", []string{topic}, s.svc.DeleteWHIPResource, nil)
}
func (s *ingressHandlerServer) DeregisterDeleteWHIPResourceTopic(topic string) {
s.rpc.DeregisterHandler("DeleteWHIPResource", []string{topic})
}
func (s *ingressHandlerServer) RegisterICERestartWHIPResourceTopic(topic string) error {
return server.RegisterHandler(s.rpc, "ICERestartWHIPResource", []string{topic}, s.svc.ICERestartWHIPResource, nil)
}
func (s *ingressHandlerServer) DeregisterICERestartWHIPResourceTopic(topic string) {
s.rpc.DeregisterHandler("ICERestartWHIPResource", []string{topic})
}
func (s *ingressHandlerServer) RegisterWHIPRTCConnectionNotifyTopic(topic string) error {
return server.RegisterHandler(s.rpc, "WHIPRTCConnectionNotify", []string{topic}, s.svc.WHIPRTCConnectionNotify, nil)
}
func (s *ingressHandlerServer) DeregisterWHIPRTCConnectionNotifyTopic(topic string) {
s.rpc.DeregisterHandler("WHIPRTCConnectionNotify", []string{topic})
}
func (s *ingressHandlerServer) Shutdown() {
s.rpc.Close(false)
}
func (s *ingressHandlerServer) Kill() {
s.rpc.Close(true)
}
// ===================================
// IngressHandler Unimplemented Server
// ===================================
type UnimplementedIngressHandlerServer struct{}
func (UnimplementedIngressHandlerServer) UpdateIngress(context.Context, *livekit5.UpdateIngressRequest) (*livekit5.IngressState, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIngressHandlerServer) DeleteIngress(context.Context, *livekit5.DeleteIngressRequest) (*livekit5.IngressState, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIngressHandlerServer) DeleteWHIPResource(context.Context, *DeleteWHIPResourceRequest) (*google_protobuf.Empty, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIngressHandlerServer) ICERestartWHIPResource(context.Context, *ICERestartWHIPResourceRequest) (*ICERestartWHIPResourceResponse, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedIngressHandlerServer) WHIPRTCConnectionNotify(context.Context, *WHIPRTCConnectionNotifyRequest) (*google_protobuf.Empty, error) {
return nil, psrpc.ErrUnimplemented
}
var psrpcFileDescriptor3 = []byte{
// 958 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0xcd, 0x72, 0xe3, 0x44,
0x10, 0x2e, 0xd9, 0x89, 0x37, 0x69, 0xc7, 0xd9, 0x78, 0xf2, 0xb3, 0x8a, 0xa8, 0x84, 0xa0, 0x5c,
0x5c, 0x10, 0x64, 0xca, 0x14, 0x55, 0x5b, 0x1c, 0x20, 0x9b, 0xbf, 0x8a, 0xd9, 0x5d, 0xa0, 0x94,
0x2c, 0x54, 0x71, 0x40, 0xa5, 0x48, 0x23, 0xed, 0x94, 0x65, 0x8d, 0x98, 0x19, 0xc5, 0xe5, 0x1b,
0xd7, 0xdc, 0x39, 0xe5, 0xc8, 0x23, 0xe4, 0xca, 0x5b, 0xc0, 0x6b, 0xe4, 0x21, 0x28, 0xcd, 0x8c,
0x1c, 0x3b, 0xb6, 0x03, 0x5c, 0xb8, 0xa9, 0xbb, 0xbf, 0xfa, 0x7a, 0x66, 0xba, 0xfb, 0x6b, 0x41,
0x93, 0x65, 0x41, 0x9b, 0xa4, 0x31, 0xc3, 0x9c, 0x3b, 0x19, 0xa3, 0x82, 0xa2, 0x2a, 0xcb, 0x02,
0xab, 0x41, 0x33, 0x41, 0x68, 0xaa, 0x7d, 0xd6, 0x66, 0x42, 0xae, 0x71, 0x8f, 0x08, 0x6f, 0x02,
0x6a, 0x7d, 0x10, 0x53, 0x1a, 0x27, 0xb8, 0x2d, 0xad, 0xab, 0x3c, 0x6a, 0xe3, 0x7e, 0x26, 0x86,
0x3a, 0xb8, 0x91, 0xd0, 0x38, 0xc6, 0xac, 0x3d, 0xc1, 0x64, 0x5b, 0x60, 0xbe, 0x21, 0x5c, 0xbc,
0x0a, 0x04, 0xb9, 0xc6, 0x5d, 0xc5, 0xe6, 0xe2, 0x5f, 0x72, 0xcc, 0x85, 0xfd, 0xab, 0x01, 0xdb,
0x33, 0x82, 0x3c, 0xa3, 0x29, 0xc7, 0x68, 0x1f, 0xea, 0x3a, 0xbb, 0x47, 0x42, 0x6e, 0x1a, 0x7b,
0xd5, 0xd6, 0xf2, 0x51, 0xc5, 0x34, 0x5c, 0xd0, 0xee, 0x6e, 0xc8, 0xd1, 0x57, 0xb0, 0x56, 0x82,
0x38, 0xe6, 0xbc, 0x48, 0x6c, 0x56, 0xf6, 0xaa, 0xad, 0x7a, 0x67, 0xdd, 0x61, 0x59, 0xe0, 0x68,
0xd2, 0x0b, 0x15, 0x73, 0x9f, 0x93, 0x09, 0x9b, 0xdb, 0x3d, 0xd8, 0x3e, 0xc1, 0x09, 0x16, 0xf8,
0xc7, 0xf3, 0xee, 0xf7, 0x2e, 0xe6, 0x34, 0x67, 0x01, 0xd6, 0xe7, 0x43, 0x6d, 0xa8, 0x33, 0xed,
0xf2, 0x48, 0x68, 0x1a, 0x7b, 0x46, 0x6b, 0xf9, 0x68, 0xf5, 0xf6, 0xfe, 0x00, 0x4a, 0x77, 0xf7,
0xc4, 0x7d, 0xf8, 0x0e, 0xd1, 0x0e, 0x00, 0x17, 0x0c, 0xfb, 0x7d, 0xaf, 0x87, 0x87, 0x66, 0xa5,
0xc0, 0xbb, 0xcb, 0xca, 0xf3, 0x1a, 0x0f, 0xed, 0xdf, 0x2b, 0xb0, 0xd3, 0x3d, 0x3e, 0x75, 0x31,
0x17, 0x3e, 0x13, 0xff, 0x43, 0x46, 0xb4, 0x0f, 0x8d, 0x9c, 0x63, 0xe6, 0x45, 0xcc, 0x8f, 0xfb,
0x38, 0x15, 0x66, 0x55, 0x22, 0x56, 0x0a, 0xe7, 0x99, 0xf6, 0x21, 0x0b, 0x96, 0x32, 0x9f, 0xf3,
0x01, 0x65, 0xa1, 0xb9, 0x20, 0xe3, 0x23, 0x1b, 0xed, 0x02, 0x04, 0x7e, 0x1a, 0x92, 0xd0, 0x17,
0x98, 0x9b, 0x8b, 0x45, 0x0d, 0xdc, 0x31, 0x0f, 0xfa, 0x02, 0x5e, 0x30, 0x7f, 0xe0, 0x09, 0x46,
0x82, 0x5e, 0x82, 0x3d, 0x12, 0x60, 0x8f, 0x87, 0x59, 0x91, 0xce, 0xac, 0x49, 0xaa, 0x0d, 0xe6,
0x0f, 0x2e, 0x55, 0xb4, 0x1b, 0xe0, 0x0b, 0x15, 0x43, 0xdb, 0xb0, 0x44, 0x22, 0xaf, 0xef, 0x8b,
0xe0, 0xbd, 0xf9, 0x4c, 0xe2, 0x9e, 0x91, 0xe8, 0x6d, 0x61, 0xda, 0x21, 0xec, 0xce, 0x7b, 0x23,
0xdd, 0x18, 0x0e, 0xac, 0xcf, 0xca, 0x27, 0x1f, 0xcb, 0x6d, 0x8a, 0xa9, 0x64, 0x08, 0x16, 0xb0,
0xf0, 0x63, 0xfd, 0x3a, 0xf2, 0xdb, 0xfe, 0xd3, 0x80, 0x5d, 0x49, 0x7e, 0x79, 0x7c, 0x4c, 0xd3,
0x14, 0x07, 0x45, 0xcf, 0x7e, 0x4b, 0x05, 0x89, 0x86, 0x65, 0x2d, 0x5e, 0xc2, 0x6a, 0xe6, 0x33,
0x41, 0x02, 0x92, 0xf9, 0xa9, 0x78, 0x28, 0x47, 0xf3, 0xf6, 0xfe, 0xa0, 0x31, 0x16, 0xe9, 0x9e,
0xb8, 0x13, 0x66, 0x88, 0xb6, 0xa0, 0x16, 0x24, 0x94, 0xe3, 0x50, 0xa6, 0x5c, 0x72, 0xb5, 0x85,
0x1c, 0x58, 0xbc, 0x26, 0x21, 0xa6, 0xb2, 0x0a, 0xf5, 0x8e, 0xe9, 0xe8, 0x29, 0x73, 0xba, 0x69,
0x96, 0x8b, 0x1f, 0x8a, 0xd0, 0x85, 0xf0, 0x05, 0x76, 0x15, 0xac, 0xc0, 0xfb, 0x79, 0x48, 0xa8,
0xac, 0xca, 0x14, 0xfe, 0x55, 0x11, 0xd2, 0x78, 0x09, 0xb3, 0x7f, 0xab, 0xc2, 0xfa, 0x45, 0xf1,
0x6c, 0x93, 0x73, 0x86, 0x5a, 0xb0, 0x40, 0xd2, 0x88, 0xca, 0xf3, 0xd7, 0x3b, 0x1b, 0x63, 0x34,
0x6a, 0x8e, 0xd2, 0x88, 0xba, 0x12, 0x81, 0x36, 0x60, 0x51, 0xd0, 0x1e, 0x4e, 0xf5, 0x5b, 0x29,
0x03, 0x6d, 0x42, 0x6d, 0xc0, 0xbd, 0x9c, 0x25, 0xba, 0x7d, 0x16, 0x07, 0xfc, 0x1d, 0x4b, 0x90,
0x0b, 0xab, 0xc5, 0xc8, 0x93, 0x34, 0xf6, 0x22, 0x82, 0x93, 0x90, 0x9b, 0x0b, 0x72, 0xf2, 0x3e,
0x91, 0x93, 0x37, 0xe3, 0x20, 0xce, 0x1b, 0x05, 0x3f, 0x93, 0xe8, 0xd3, 0x54, 0xb0, 0xa1, 0xdb,
0x48, 0xc6, 0x7d, 0xe8, 0x3b, 0x68, 0x44, 0xd8, 0x17, 0x39, 0xc3, 0x5e, 0x94, 0xf8, 0xb1, 0x6a,
0xb9, 0x7a, 0xe7, 0xe3, 0xb9, 0x94, 0x67, 0x0a, 0x7d, 0x56, 0x80, 0x15, 0xe3, 0x4a, 0x34, 0xe6,
0xb2, 0x0e, 0x01, 0x4d, 0x67, 0x45, 0x6b, 0x50, 0x2d, 0xe6, 0x45, 0xb5, 0x4c, 0xf1, 0x59, 0xdc,
0xfc, 0xda, 0x4f, 0x72, 0x5c, 0xde, 0x5c, 0x1a, 0x5f, 0x56, 0x5e, 0x1a, 0xd6, 0xd7, 0xd0, 0x9c,
0x4a, 0xf2, 0x5f, 0x08, 0x6c, 0x0a, 0xab, 0x93, 0x32, 0x84, 0x0e, 0x00, 0x1e, 0xa4, 0x4d, 0xb7,
0x55, 0xe3, 0xf6, 0xfe, 0x60, 0xb9, 0x54, 0xb6, 0x13, 0x77, 0xf4, 0x19, 0x3e, 0x16, 0x85, 0xca,
0x3f, 0x89, 0x82, 0xfd, 0x0d, 0x6c, 0xbf, 0x26, 0x49, 0xf2, 0x48, 0xfb, 0x74, 0x33, 0x7c, 0x0a,
0xcf, 0xb4, 0x52, 0xea, 0x7e, 0x98, 0x29, 0x94, 0x25, 0xa6, 0xf3, 0x87, 0x01, 0xcf, 0x47, 0x7d,
0x22, 0x30, 0x4b, 0xfd, 0x04, 0x9d, 0xc3, 0xca, 0x78, 0x29, 0x90, 0x39, 0xaf, 0x3a, 0xd6, 0xcc,
0x5e, 0xb3, 0x97, 0xee, 0x6e, 0x8c, 0x85, 0x43, 0xe3, 0x33, 0x03, 0xfd, 0x0c, 0xcd, 0xa9, 0x05,
0x80, 0x76, 0x24, 0xdd, 0xbc, 0xad, 0x61, 0xed, 0xce, 0x0b, 0x2b, 0x79, 0xb0, 0xe1, 0xee, 0xc6,
0xa8, 0xad, 0x19, 0x87, 0x95, 0x96, 0xd1, 0xf9, 0xab, 0x3a, 0x7a, 0xfb, 0x73, 0x3f, 0x0d, 0x13,
0xcc, 0xd0, 0x5b, 0x68, 0xbc, 0xcb, 0x0a, 0xf1, 0x7a, 0x48, 0x57, 0x9e, 0x71, 0xc2, 0x5f, 0xa6,
0xdb, 0x7c, 0x7c, 0x05, 0x39, 0x72, 0x76, 0xed, 0xee, 0xc6, 0xa8, 0xac, 0x19, 0x05, 0x9d, 0x5a,
0x20, 0xd3, 0x74, 0x13, 0xfe, 0x7f, 0x49, 0x77, 0x09, 0x68, 0x7a, 0x1f, 0x21, 0x75, 0xe5, 0xb9,
0x8b, 0xca, 0xda, 0x72, 0xd4, 0x62, 0x76, 0xca, 0xc5, 0xec, 0x9c, 0x16, 0x8b, 0x79, 0xc4, 0x4a,
0x60, 0x6b, 0xb6, 0xa6, 0x22, 0x5b, 0x15, 0xff, 0xa9, 0xa5, 0x64, 0xed, 0x3f, 0x89, 0xd1, 0xaf,
0x5e, 0xa6, 0xba, 0x82, 0x17, 0x73, 0x74, 0x15, 0x29, 0x9e, 0xa7, 0x55, 0x77, 0xee, 0x55, 0x74,
0x55, 0xad, 0xca, 0x9e, 0x71, 0xf4, 0xd1, 0x4f, 0x1f, 0xc6, 0x44, 0xbc, 0xcf, 0xaf, 0x9c, 0x80,
0xf6, 0xdb, 0xfa, 0x3d, 0xd5, 0x4f, 0x49, 0x40, 0x93, 0x36, 0xcb, 0x82, 0xab, 0x9a, 0xb4, 0x3e,
0xff, 0x3b, 0x00, 0x00, 0xff, 0xff, 0xc2, 0xe2, 0xee, 0x32, 0xf0, 0x08, 0x00, 0x00,
}