Files
protocol/rpc/ingress.psrpc.go
Benjamin Pracht d35d87c63f Changes for ingress observability support (#1392)
- Add projectID explicitly to GetIngressInfoResponse as we cannot send it in headers on a response
- move ingressobs.Reporter to protocol
- Remove the unused KillIngressSession RPC
- Random fmt fixes by the protobuf linter included in my editor...

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2026-01-30 15:50:27 -08:00

445 lines
19 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{
// 922 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcf, 0x6f, 0xe3, 0x44,
0x14, 0x96, 0x93, 0x34, 0x6d, 0x5f, 0x9a, 0x6e, 0x3b, 0xfd, 0xb1, 0xae, 0x51, 0xbb, 0xc5, 0x15,
0x52, 0x04, 0xc2, 0x41, 0x41, 0x48, 0x88, 0x03, 0x74, 0xb7, 0xb4, 0x6a, 0xd8, 0x5d, 0x58, 0xb9,
0x5d, 0x90, 0x40, 0xc2, 0x9a, 0xda, 0x63, 0xef, 0xa8, 0x8e, 0xc7, 0xcc, 0x8c, 0x1b, 0xe5, 0xc6,
0xb5, 0x57, 0xc4, 0x5f, 0xd2, 0x2b, 0x07, 0xfe, 0x08, 0xfe, 0x21, 0xe4, 0x99, 0x71, 0x9a, 0x34,
0x49, 0x05, 0x87, 0xbd, 0xf9, 0xbd, 0xf7, 0xe5, 0x7b, 0x33, 0xdf, 0xcc, 0xfb, 0x26, 0xb0, 0xc9,
0xf3, 0xb0, 0x4b, 0xb3, 0x84, 0x13, 0x21, 0xbc, 0x9c, 0x33, 0xc9, 0x50, 0x9d, 0xe7, 0xa1, 0xd3,
0x66, 0xb9, 0xa4, 0x2c, 0x33, 0x39, 0x67, 0x27, 0xa5, 0x37, 0xe4, 0x9a, 0xca, 0x60, 0x0a, 0xea,
0x7c, 0x90, 0x30, 0x96, 0xa4, 0xa4, 0xab, 0xa2, 0xab, 0x22, 0xee, 0x92, 0x41, 0x2e, 0x47, 0xba,
0xe8, 0x3a, 0x60, 0xbf, 0xa2, 0x42, 0x3e, 0x0f, 0x25, 0xbd, 0x21, 0x7d, 0xfd, 0x3b, 0x9f, 0xfc,
0x56, 0x10, 0x21, 0xdd, 0xdf, 0x2d, 0xd8, 0x9b, 0x53, 0x14, 0x39, 0xcb, 0x04, 0x41, 0x47, 0xd0,
0x32, 0x7d, 0x02, 0x1a, 0x09, 0xdb, 0x3a, 0xac, 0x77, 0x56, 0x5f, 0xd4, 0x6c, 0xcb, 0x07, 0x93,
0xee, 0x47, 0x02, 0x7d, 0x0d, 0x1b, 0x15, 0x48, 0x10, 0x21, 0xca, 0xc5, 0xda, 0xb5, 0xc3, 0x7a,
0xa7, 0xd5, 0xdb, 0xf2, 0x78, 0x1e, 0x7a, 0x86, 0xf4, 0x42, 0xd7, 0xfc, 0x27, 0x74, 0x2a, 0x16,
0xee, 0x2f, 0xb0, 0xf7, 0x2d, 0x49, 0x89, 0x24, 0x3f, 0x9d, 0xf7, 0xdf, 0xf8, 0x44, 0xb0, 0x82,
0x87, 0xc4, 0xac, 0x0f, 0x3d, 0x83, 0x16, 0x37, 0xa9, 0x80, 0x46, 0xb6, 0x75, 0x68, 0x75, 0x56,
0x7d, 0xa8, 0x52, 0xfd, 0x08, 0xed, 0x03, 0x08, 0xc9, 0x09, 0x1e, 0x04, 0xd7, 0x64, 0x64, 0xd7,
0x54, 0x7d, 0x55, 0x67, 0x5e, 0x92, 0x91, 0xfb, 0x47, 0x0d, 0xf6, 0xfb, 0x27, 0xa7, 0x3e, 0x11,
0x12, 0x73, 0xf9, 0x1e, 0x3a, 0xa0, 0x23, 0x68, 0x17, 0x82, 0xf0, 0x20, 0xe6, 0x38, 0x19, 0x90,
0x4c, 0xda, 0x75, 0x85, 0x58, 0x2b, 0x93, 0x67, 0x26, 0x87, 0x1c, 0x58, 0xc9, 0xb1, 0x10, 0x43,
0xc6, 0x23, 0xbb, 0xa1, 0xea, 0xe3, 0x18, 0x1d, 0x00, 0x84, 0x38, 0x8b, 0x68, 0x84, 0x25, 0x11,
0xf6, 0x52, 0xa9, 0xb1, 0x3f, 0x91, 0x41, 0x5f, 0xc0, 0x53, 0x8e, 0x87, 0x81, 0xe4, 0x34, 0xbc,
0x4e, 0x49, 0x40, 0x43, 0x12, 0x88, 0x28, 0x2f, 0xdb, 0xd9, 0x4d, 0x45, 0xb5, 0xcd, 0xf1, 0xf0,
0x52, 0x57, 0xfb, 0x21, 0xb9, 0xd0, 0x35, 0xb4, 0x07, 0x2b, 0x34, 0x0e, 0x06, 0x58, 0x86, 0xef,
0xec, 0x65, 0x85, 0x5b, 0xa6, 0xf1, 0xeb, 0x32, 0x74, 0x23, 0x38, 0x58, 0xa4, 0x89, 0x39, 0x78,
0x0f, 0xb6, 0xe6, 0xf5, 0xd3, 0xe2, 0x6c, 0xca, 0x99, 0x66, 0x08, 0x1a, 0x44, 0xe2, 0xc4, 0xa8,
0xa3, 0xbe, 0xdd, 0xbf, 0x2d, 0x38, 0x50, 0xe4, 0x97, 0x27, 0x27, 0x2c, 0xcb, 0x48, 0x58, 0xde,
0xe3, 0xef, 0x99, 0xa4, 0xf1, 0xa8, 0xd2, 0xfe, 0x23, 0x58, 0xcf, 0x31, 0x97, 0x34, 0xa4, 0x39,
0xce, 0xe4, 0xbd, 0xfc, 0xed, 0x89, 0x6c, 0x3f, 0x42, 0xbb, 0xd0, 0x0c, 0x53, 0x26, 0x48, 0xa4,
0xf8, 0x57, 0x7c, 0x13, 0x21, 0x0f, 0x96, 0x6e, 0x68, 0x44, 0x98, 0x92, 0xbc, 0xd5, 0xb3, 0x3d,
0x33, 0x1c, 0x5e, 0x3f, 0xcb, 0x0b, 0xf9, 0x63, 0x59, 0xba, 0x90, 0x58, 0x12, 0x5f, 0xc3, 0x4a,
0x3c, 0x2e, 0x22, 0xca, 0xd4, 0x11, 0xcc, 0xe0, 0x9f, 0x97, 0x25, 0x83, 0x57, 0x30, 0xf7, 0xcf,
0x3a, 0x6c, 0x5d, 0x94, 0x1a, 0x4d, 0x0f, 0x0d, 0xea, 0x40, 0x83, 0x66, 0x31, 0x53, 0x8b, 0x6d,
0xf5, 0xb6, 0x27, 0x68, 0xf4, 0x50, 0x64, 0x31, 0xf3, 0x15, 0x02, 0x6d, 0xc3, 0x92, 0x64, 0xd7,
0x24, 0x33, 0xc2, 0xe8, 0x00, 0xed, 0x40, 0x73, 0x28, 0x82, 0x82, 0xa7, 0xe6, 0xae, 0x2c, 0x0d,
0xc5, 0x5b, 0x9e, 0x22, 0x1f, 0xd6, 0x53, 0x96, 0x24, 0x34, 0x4b, 0x82, 0x98, 0x92, 0x34, 0x12,
0x76, 0x43, 0x8d, 0xd1, 0x27, 0x6a, 0x8c, 0xe6, 0x2c, 0xc4, 0x7b, 0xa5, 0xe1, 0x67, 0x0a, 0x7d,
0x9a, 0x49, 0x3e, 0xf2, 0xdb, 0xe9, 0x64, 0x0e, 0xfd, 0x00, 0xed, 0x98, 0x60, 0x59, 0x70, 0x12,
0xc4, 0x29, 0x4e, 0xf4, 0xfd, 0x6a, 0xf5, 0x3e, 0x5e, 0x48, 0x79, 0xa6, 0xd1, 0x67, 0x25, 0x58,
0x33, 0xae, 0xc5, 0x13, 0x29, 0xe7, 0x18, 0xd0, 0x6c, 0x57, 0xb4, 0x01, 0xf5, 0x72, 0x38, 0xf4,
0xe9, 0x95, 0x9f, 0xe5, 0xce, 0x6f, 0x70, 0x5a, 0x90, 0x6a, 0xe7, 0x2a, 0xf8, 0xaa, 0xf6, 0xa5,
0xe5, 0x7c, 0x03, 0x9b, 0x33, 0x4d, 0xfe, 0x0f, 0x81, 0xfb, 0x06, 0xd6, 0xa7, 0x3d, 0xa5, 0x1c,
0xd1, 0x7b, 0x9f, 0x32, 0x24, 0xab, 0x63, 0x8b, 0x7a, 0x38, 0xe2, 0xb5, 0x87, 0x23, 0xee, 0x7e,
0x07, 0x7b, 0x2f, 0x69, 0x9a, 0x3e, 0x70, 0x2a, 0x73, 0xda, 0x9f, 0xc2, 0xb2, 0xf1, 0x35, 0x73,
0xe0, 0x73, 0x6d, 0xad, 0xc2, 0xf4, 0xfe, 0xb2, 0xe0, 0xc9, 0xf8, 0x22, 0x48, 0xc2, 0x33, 0x9c,
0xa2, 0x73, 0x58, 0x9b, 0xd4, 0x1a, 0xd9, 0x8b, 0xe4, 0x77, 0xe6, 0x5e, 0x26, 0x77, 0xe5, 0xee,
0xd6, 0x6a, 0x1c, 0x5b, 0x9f, 0x59, 0xe8, 0x57, 0xd8, 0x9c, 0xb1, 0x6b, 0xb4, 0xaf, 0xe8, 0x16,
0x79, 0xbc, 0x73, 0xb0, 0xa8, 0xac, 0x87, 0xdd, 0x85, 0xbb, 0x5b, 0xab, 0xb9, 0x61, 0x1d, 0xd7,
0x3a, 0x56, 0xef, 0x9f, 0xfa, 0x58, 0xdc, 0x73, 0x9c, 0x45, 0x29, 0xe1, 0xe8, 0x35, 0xb4, 0xdf,
0xe6, 0xa5, 0x15, 0xdd, 0xb7, 0xab, 0xd6, 0x38, 0x95, 0xaf, 0xda, 0xed, 0x3c, 0xdc, 0x82, 0x9a,
0x29, 0xb7, 0x79, 0x77, 0x6b, 0xd5, 0x36, 0xac, 0x92, 0x4e, 0xdb, 0xfd, 0x2c, 0xdd, 0x54, 0xfe,
0x3f, 0xd2, 0x5d, 0x02, 0x9a, 0x7d, 0x3d, 0x90, 0xde, 0xf2, 0xc2, 0x67, 0xc5, 0xd9, 0xf5, 0xf4,
0x83, 0xe9, 0x55, 0x0f, 0xa6, 0x77, 0x5a, 0x3e, 0x98, 0x63, 0x56, 0x0a, 0xbb, 0xf3, 0x1d, 0x12,
0xb9, 0xfa, 0xf0, 0x1f, 0x7b, 0x52, 0x9c, 0xa3, 0x47, 0x31, 0x46, 0xf5, 0xaa, 0xd5, 0x15, 0x3c,
0x5d, 0xe0, 0x92, 0x48, 0xf3, 0x3c, 0xee, 0xa1, 0x0b, 0xb7, 0x62, 0x4e, 0xd5, 0xa9, 0x1d, 0x5a,
0x2f, 0x3e, 0xfc, 0xf9, 0x59, 0x42, 0xe5, 0xbb, 0xe2, 0xca, 0x0b, 0xd9, 0xa0, 0x6b, 0xf4, 0xd4,
0x7f, 0x16, 0x42, 0x96, 0x76, 0x79, 0x1e, 0x5e, 0x35, 0x55, 0xf4, 0xf9, 0xbf, 0x01, 0x00, 0x00,
0xff, 0xff, 0x7b, 0x9c, 0x67, 0x49, 0x88, 0x08, 0x00, 0x00,
}