-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathsip.psrpc.go
More file actions
251 lines (211 loc) · 13.3 KB
/
Copy pathsip.psrpc.go
File metadata and controls
251 lines (211 loc) · 13.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
// Code generated by protoc-gen-psrpc v0.7.3, DO NOT EDIT.
// source: rpc/sip.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"
var _ = version.PsrpcVersion_0_7
// ============================
// SIPInternal Client Interface
// ============================
type SIPInternalClient interface {
CreateSIPParticipant(ctx context.Context, topic string, req *InternalCreateSIPParticipantRequest, opts ...psrpc.RequestOption) (*InternalCreateSIPParticipantResponse, error)
TransferSIPParticipant(ctx context.Context, sipCallId string, req *InternalTransferSIPParticipantRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
// Close immediately, without waiting for pending RPCs
Close()
}
// ================================
// SIPInternal ServerImpl Interface
// ================================
type SIPInternalServerImpl interface {
CreateSIPParticipant(context.Context, *InternalCreateSIPParticipantRequest) (*InternalCreateSIPParticipantResponse, error)
TransferSIPParticipant(context.Context, *InternalTransferSIPParticipantRequest) (*google_protobuf.Empty, error)
}
// ============================
// SIPInternal Server Interface
// ============================
type SIPInternalServer interface {
RegisterCreateSIPParticipantTopic(topic string) error
DeregisterCreateSIPParticipantTopic(topic string)
RegisterTransferSIPParticipantTopic(sipCallId string) error
DeregisterTransferSIPParticipantTopic(sipCallId string)
// Close and wait for pending RPCs to complete
Shutdown()
// Close immediately, without waiting for pending RPCs
Kill()
}
// ==================
// SIPInternal Client
// ==================
type sIPInternalClient struct {
client *client.RPCClient
}
// NewSIPInternalClient creates a psrpc client that implements the SIPInternalClient interface.
func NewSIPInternalClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (SIPInternalClient, error) {
sd := &info.ServiceDefinition{
Name: "SIPInternal",
ID: rand.NewClientID(),
}
sd.RegisterMethod("CreateSIPParticipant", false, false, true, true)
sd.RegisterMethod("TransferSIPParticipant", false, false, true, true)
rpcClient, err := client.NewRPCClient(sd, bus, opts...)
if err != nil {
return nil, err
}
return &sIPInternalClient{
client: rpcClient,
}, nil
}
func (c *sIPInternalClient) CreateSIPParticipant(ctx context.Context, topic string, req *InternalCreateSIPParticipantRequest, opts ...psrpc.RequestOption) (*InternalCreateSIPParticipantResponse, error) {
return client.RequestSingle[*InternalCreateSIPParticipantResponse](ctx, c.client, "CreateSIPParticipant", []string{topic}, req, opts...)
}
func (c *sIPInternalClient) TransferSIPParticipant(ctx context.Context, sipCallId string, req *InternalTransferSIPParticipantRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "TransferSIPParticipant", []string{sipCallId}, req, opts...)
}
func (s *sIPInternalClient) Close() {
s.client.Close()
}
// ==================
// SIPInternal Server
// ==================
type sIPInternalServer struct {
svc SIPInternalServerImpl
rpc *server.RPCServer
}
// NewSIPInternalServer builds a RPCServer that will route requests
// to the corresponding method in the provided svc implementation.
func NewSIPInternalServer(svc SIPInternalServerImpl, bus psrpc.MessageBus, opts ...psrpc.ServerOption) (SIPInternalServer, error) {
sd := &info.ServiceDefinition{
Name: "SIPInternal",
ID: rand.NewServerID(),
}
s := server.NewRPCServer(sd, bus, opts...)
sd.RegisterMethod("CreateSIPParticipant", false, false, true, true)
sd.RegisterMethod("TransferSIPParticipant", false, false, true, true)
return &sIPInternalServer{
svc: svc,
rpc: s,
}, nil
}
func (s *sIPInternalServer) RegisterCreateSIPParticipantTopic(topic string) error {
return server.RegisterHandler(s.rpc, "CreateSIPParticipant", []string{topic}, s.svc.CreateSIPParticipant, nil)
}
func (s *sIPInternalServer) DeregisterCreateSIPParticipantTopic(topic string) {
s.rpc.DeregisterHandler("CreateSIPParticipant", []string{topic})
}
func (s *sIPInternalServer) RegisterTransferSIPParticipantTopic(sipCallId string) error {
return server.RegisterHandler(s.rpc, "TransferSIPParticipant", []string{sipCallId}, s.svc.TransferSIPParticipant, nil)
}
func (s *sIPInternalServer) DeregisterTransferSIPParticipantTopic(sipCallId string) {
s.rpc.DeregisterHandler("TransferSIPParticipant", []string{sipCallId})
}
func (s *sIPInternalServer) Shutdown() {
s.rpc.Close(false)
}
func (s *sIPInternalServer) Kill() {
s.rpc.Close(true)
}
// ================================
// SIPInternal Unimplemented Server
// ================================
type UnimplementedSIPInternalServer struct{}
func (UnimplementedSIPInternalServer) CreateSIPParticipant(context.Context, *InternalCreateSIPParticipantRequest) (*InternalCreateSIPParticipantResponse, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedSIPInternalServer) TransferSIPParticipant(context.Context, *InternalTransferSIPParticipantRequest) (*google_protobuf.Empty, error) {
return nil, psrpc.ErrUnimplemented
}
var psrpcFileDescriptor11 = []byte{
// 1341 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0xdd, 0x72, 0xdb, 0xb6,
0x12, 0x3e, 0xf4, 0xbf, 0x57, 0x92, 0x25, 0xc3, 0x3f, 0x41, 0xe4, 0x73, 0x12, 0xc5, 0x49, 0xce,
0x28, 0xe7, 0xb4, 0xd2, 0xd4, 0x99, 0x36, 0xad, 0x27, 0x4d, 0x1a, 0x5b, 0xf6, 0x44, 0x9d, 0xa6,
0xd1, 0xd0, 0xca, 0x74, 0xa6, 0x37, 0x1c, 0x48, 0x84, 0x64, 0xd4, 0x24, 0xc1, 0x02, 0x60, 0x1c,
0x35, 0x93, 0xfb, 0xe6, 0x01, 0x7a, 0xdf, 0x67, 0xc8, 0x55, 0x27, 0x57, 0x79, 0xab, 0xde, 0x76,
0x00, 0x92, 0x12, 0xe5, 0xbf, 0x48, 0x93, 0x3b, 0xee, 0xee, 0xb7, 0x1f, 0x16, 0x58, 0xec, 0x2e,
0x08, 0x05, 0x11, 0x76, 0xeb, 0x92, 0x85, 0xb5, 0x50, 0x70, 0xc5, 0xd1, 0xac, 0x08, 0xbb, 0xe5,
0xad, 0x3e, 0xe7, 0x7d, 0x8f, 0xd6, 0x8d, 0xaa, 0x13, 0xf5, 0xea, 0xd4, 0x0f, 0xd5, 0x20, 0x46,
0x94, 0x6f, 0x9c, 0x35, 0xba, 0x91, 0x20, 0x8a, 0xf1, 0x20, 0xb1, 0x17, 0x78, 0xa8, 0x25, 0x99,
0x88, 0xab, 0x1e, 0x7b, 0x49, 0x4f, 0x98, 0x72, 0x86, 0x6b, 0x94, 0xd7, 0x3d, 0xde, 0xef, 0x53,
0x51, 0x1f, 0x07, 0xe6, 0x75, 0x20, 0x8c, 0xc7, 0xd2, 0xf6, 0x1f, 0x1b, 0x70, 0xbb, 0x19, 0x28,
0x2a, 0x02, 0xe2, 0xed, 0x0b, 0x4a, 0x14, 0x3d, 0x6a, 0xb6, 0x5a, 0x44, 0x28, 0xd6, 0x65, 0x21,
0x09, 0x94, 0x4d, 0x7f, 0x8d, 0xa8, 0x54, 0xe8, 0xff, 0x00, 0xa1, 0xe0, 0xbf, 0xd0, 0xae, 0x72,
0x98, 0x8b, 0x51, 0xc5, 0xaa, 0x2e, 0xef, 0xe5, 0xdf, 0xb7, 0x96, 0x13, 0x65, 0xb3, 0x61, 0x0f,
0x3f, 0x5d, 0xf4, 0x19, 0xe4, 0x24, 0x0b, 0x9d, 0x2e, 0xf1, 0x3c, 0x8d, 0x2e, 0x0c, 0xd1, 0x92,
0x85, 0xfb, 0xc4, 0xf3, 0x34, 0x3a, 0xfd, 0x74, 0x51, 0x1d, 0xf2, 0x1a, 0xad, 0x44, 0x14, 0x9c,
0x68, 0xf8, 0x9a, 0x81, 0x17, 0xde, 0xb7, 0x40, 0xb2, 0xb0, 0xad, 0xb5, 0xcd, 0x86, 0x3d, 0xfa,
0x76, 0xd1, 0x63, 0x28, 0x6a, 0x07, 0x11, 0x87, 0xe6, 0x44, 0x82, 0xe1, 0xdb, 0x15, 0xab, 0x9a,
0xdb, 0xb9, 0x56, 0x4b, 0x0e, 0xa1, 0x76, 0xd4, 0x6c, 0x25, 0x91, 0x37, 0xa8, 0x54, 0x76, 0x41,
0xb2, 0x30, 0x91, 0x5f, 0x08, 0x86, 0xbe, 0x8d, 0x09, 0x7a, 0x82, 0xfb, 0xce, 0x31, 0x25, 0x2e,
0x15, 0xf8, 0x8e, 0x21, 0xd8, 0xc8, 0x12, 0xfc, 0x48, 0x7c, 0xea, 0x0e, 0xdd, 0x0f, 0x05, 0xf7,
0x9f, 0x1a, 0x2c, 0xfa, 0x06, 0x0a, 0x26, 0x60, 0x9e, 0x3a, 0xdf, 0xbd, 0xca, 0x59, 0x1f, 0x45,
0x9b, 0x27, 0xae, 0x18, 0x16, 0x89, 0xeb, 0x0a, 0x2a, 0x25, 0x9e, 0xd1, 0xdb, 0xb4, 0x53, 0x11,
0x95, 0x61, 0xe9, 0x98, 0x4b, 0x15, 0x10, 0x9f, 0xe2, 0x75, 0x63, 0x1a, 0xca, 0xa8, 0x0e, 0x6b,
0x2e, 0x95, 0x8a, 0x05, 0x26, 0xff, 0x4e, 0x97, 0x47, 0x81, 0x12, 0x03, 0x7c, 0xc3, 0xc0, 0x50,
0xc6, 0xb4, 0x1f, 0x5b, 0xd0, 0x7d, 0x58, 0x56, 0x82, 0x04, 0x32, 0xe4, 0x42, 0xe1, 0x52, 0xc5,
0xaa, 0xae, 0x8c, 0x47, 0xd7, 0x4e, 0x8d, 0xf6, 0x08, 0x87, 0x36, 0x61, 0x21, 0x88, 0xfc, 0x0e,
0x15, 0x78, 0xd6, 0x10, 0x27, 0x12, 0xba, 0x06, 0x8b, 0x26, 0x93, 0x8a, 0xe3, 0xb9, 0xd8, 0xa0,
0xc5, 0x36, 0x47, 0xdf, 0xc1, 0x52, 0x24, 0xf5, 0xcd, 0xf1, 0x29, 0x9e, 0x37, 0x49, 0xbb, 0xf3,
0xae, 0x75, 0xe3, 0xa1, 0xa0, 0x2e, 0xe9, 0x2a, 0xea, 0x56, 0xaa, 0xaf, 0x5f, 0x57, 0x6a, 0x47,
0xec, 0x37, 0x5a, 0x79, 0xf3, 0xa6, 0xd2, 0x19, 0x28, 0x2a, 0xef, 0x3d, 0xfa, 0xd0, 0xb2, 0xec,
0xa1, 0x97, 0x66, 0x08, 0x89, 0x94, 0xa7, 0x5c, 0xb8, 0x78, 0x61, 0x62, 0x86, 0x19, 0x7b, 0xe8,
0x85, 0xb6, 0x60, 0x59, 0x70, 0xee, 0x3b, 0x26, 0x88, 0xc5, 0xf8, 0xdc, 0xb4, 0x42, 0x9f, 0x3f,
0xfa, 0x02, 0xd6, 0xc3, 0xd1, 0x55, 0x76, 0x98, 0x4b, 0x03, 0xc5, 0xd4, 0x00, 0x2f, 0x19, 0xdc,
0x5a, 0xc6, 0xd6, 0x4c, 0x4c, 0xe8, 0x39, 0x94, 0xb2, 0x2e, 0x86, 0x76, 0x65, 0x8a, 0xbd, 0x15,
0x33, 0xde, 0x26, 0x86, 0x9f, 0xc6, 0x63, 0xf0, 0xa9, 0x22, 0x2e, 0x51, 0x04, 0x17, 0xa7, 0x20,
0xcd, 0x46, 0xfa, 0x2c, 0x21, 0x40, 0x7f, 0x5a, 0xb0, 0x99, 0x65, 0x26, 0x4a, 0x09, 0xd6, 0x89,
0x14, 0x95, 0x78, 0xb5, 0x32, 0x5b, 0xcd, 0xed, 0xec, 0xd7, 0x44, 0xd8, 0xad, 0x4d, 0x50, 0xdc,
0xb5, 0x8c, 0xea, 0xc9, 0x90, 0xe5, 0x40, 0xdf, 0xa4, 0x09, 0x03, 0xdc, 0x08, 0x2f, 0x62, 0x40,
0xbb, 0x30, 0xaf, 0xf8, 0x09, 0x0d, 0xf0, 0xf2, 0x14, 0xb9, 0x8d, 0x5d, 0xd0, 0x06, 0x2c, 0x9c,
0x4a, 0x27, 0x12, 0x1e, 0x06, 0x93, 0xad, 0xf9, 0x53, 0xf9, 0x42, 0x78, 0x08, 0xc1, 0x9c, 0xab,
0xfc, 0x1e, 0xce, 0x19, 0xa5, 0xf9, 0x46, 0xb7, 0xa1, 0x10, 0x7a, 0x64, 0xe0, 0xb8, 0x8c, 0x78,
0x8a, 0x07, 0x14, 0xe7, 0x2b, 0x56, 0x75, 0xc9, 0xce, 0x6b, 0x65, 0x23, 0xd1, 0xa1, 0x08, 0x16,
0xe3, 0x6a, 0x95, 0x78, 0xc3, 0x1c, 0xcf, 0x97, 0x13, 0x1f, 0x4f, 0x5c, 0xbb, 0x53, 0x1d, 0x48,
0xba, 0x16, 0x8a, 0x60, 0x23, 0xf9, 0xd4, 0xfd, 0x22, 0x93, 0xa3, 0x4d, 0x13, 0xc4, 0x93, 0x69,
0x83, 0x68, 0xf3, 0x33, 0x19, 0xb2, 0xd7, 0x8e, 0xcf, 0x5b, 0xf4, 0xb2, 0xa3, 0xb5, 0x46, 0x9d,
0x4a, 0xe2, 0xf2, 0x94, 0xcb, 0x8e, 0x38, 0xd3, 0x1e, 0x96, 0x2e, 0x4b, 0xce, 0x5b, 0xd0, 0x1e,
0x14, 0x59, 0xd0, 0xf5, 0x22, 0x97, 0x0e, 0x17, 0xdc, 0x32, 0xdd, 0xe7, 0x7a, 0xb6, 0xfb, 0xc4,
0xe8, 0xe7, 0xf1, 0x54, 0xb2, 0x57, 0x12, 0x8f, 0x94, 0xe3, 0x11, 0x94, 0x68, 0x40, 0x3a, 0x1e,
0x75, 0x9d, 0x1e, 0x25, 0x2a, 0x12, 0x54, 0xe2, 0xeb, 0x95, 0xd9, 0xea, 0xca, 0xce, 0x5a, 0x96,
0xe4, 0x30, 0xb6, 0xd9, 0xc5, 0x04, 0x9c, 0xc8, 0x26, 0x06, 0xc1, 0x82, 0x3e, 0x0b, 0xfa, 0x8e,
0x62, 0x3e, 0xe5, 0x91, 0xc2, 0xd7, 0x4c, 0x7f, 0xbe, 0x5e, 0x8b, 0x27, 0x6a, 0x2d, 0x9d, 0xa8,
0xb5, 0x46, 0x32, 0x51, 0xed, 0x95, 0xc4, 0xa3, 0x1d, 0x3b, 0xa0, 0x03, 0x58, 0xf5, 0xc9, 0xab,
0x78, 0x80, 0xa5, 0x63, 0x17, 0xe3, 0x8f, 0xb1, 0x14, 0x7d, 0xf2, 0x4a, 0xcf, 0xb4, 0x54, 0x81,
0xbe, 0x87, 0x92, 0x4f, 0x5d, 0x46, 0x1c, 0x1a, 0x74, 0xc5, 0xc0, 0xec, 0x17, 0xff, 0xdb, 0x9c,
0xc7, 0x56, 0x76, 0x2b, 0xcf, 0x34, 0xe6, 0x60, 0x08, 0xd9, 0x9b, 0xc1, 0x96, 0x5d, 0xf4, 0xc7,
0x95, 0xe8, 0x73, 0x98, 0x37, 0x2a, 0xbc, 0x7d, 0x7e, 0xd4, 0x19, 0x82, 0x7d, 0x1e, 0xf4, 0x58,
0xdf, 0x8e, 0x51, 0xa8, 0x06, 0x6b, 0xa7, 0x84, 0x29, 0x27, 0x0a, 0x14, 0xf3, 0x1c, 0x12, 0xc8,
0x53, 0x2a, 0xa8, 0x8b, 0xff, 0x63, 0x2a, 0x63, 0x55, 0x9b, 0x5e, 0x68, 0xcb, 0x93, 0xc4, 0x80,
0x7e, 0x80, 0xbc, 0xcb, 0xa4, 0x29, 0x23, 0xd3, 0xf3, 0x6e, 0x4e, 0xde, 0x9e, 0x9e, 0xfe, 0xcb,
0xce, 0x25, 0xbe, 0xba, 0xe3, 0xfd, 0x6e, 0x59, 0xe8, 0x2b, 0xc8, 0x65, 0xa6, 0x12, 0xae, 0x98,
0x90, 0xd7, 0x87, 0x21, 0x37, 0x46, 0x36, 0x3b, 0x0b, 0x44, 0x0e, 0x14, 0x92, 0x9c, 0x3b, 0x3d,
0x8f, 0xf4, 0x25, 0xbe, 0x65, 0xae, 0xeb, 0xee, 0xc4, 0xd7, 0x35, 0xb9, 0x05, 0x87, 0xda, 0x39,
0xbe, 0xa7, 0xf9, 0x5e, 0x46, 0x85, 0x1e, 0x43, 0x81, 0x77, 0x24, 0x15, 0x2f, 0x49, 0x87, 0x79,
0x7a, 0x14, 0xfc, 0x37, 0x49, 0xaa, 0x5e, 0xe0, 0xa8, 0xd9, 0xd2, 0xe9, 0x7b, 0x9e, 0x05, 0xd8,
0xe3, 0xf8, 0xf2, 0x53, 0x28, 0x5f, 0xde, 0x2d, 0x51, 0x09, 0x66, 0x4f, 0xe8, 0x00, 0x5b, 0xa6,
0x39, 0xe9, 0x4f, 0xb4, 0x0e, 0xf3, 0x2f, 0x89, 0x17, 0xd1, 0x64, 0xdc, 0xc7, 0xc2, 0xee, 0xcc,
0xd7, 0x56, 0x79, 0x17, 0xf2, 0xd9, 0x82, 0x9a, 0xca, 0xf7, 0x10, 0xf0, 0x65, 0xfd, 0x60, 0x5a,
0x9e, 0xcb, 0x0a, 0x7c, 0x2a, 0x9e, 0xc7, 0xb0, 0x7a, 0xee, 0xe4, 0xa7, 0x21, 0xd8, 0x2b, 0x42,
0xc1, 0xc9, 0xde, 0xbf, 0xed, 0x0f, 0x16, 0xdc, 0xb9, 0x3a, 0xe1, 0x32, 0xe4, 0x81, 0xa4, 0xe8,
0x01, 0xac, 0x8c, 0xcf, 0xf8, 0x78, 0xc1, 0xbd, 0xd2, 0xfb, 0x56, 0x21, 0x3b, 0xe0, 0x1b, 0xf6,
0x98, 0xe8, 0x5e, 0xfa, 0x38, 0x98, 0xb9, 0xfc, 0x71, 0x70, 0xe6, 0x5d, 0x3b, 0x7b, 0xe5, 0xbb,
0x76, 0xfb, 0xaf, 0x39, 0xb8, 0x9b, 0x6e, 0xc1, 0x3c, 0xb8, 0x7a, 0x54, 0x5c, 0xfc, 0xb8, 0x3e,
0xc3, 0x6b, 0x5d, 0xfd, 0x5e, 0xbe, 0x09, 0x39, 0x95, 0xd0, 0xe9, 0x37, 0x59, 0x1c, 0x2f, 0xa4,
0xaa, 0x36, 0x3f, 0x3f, 0x0f, 0x67, 0x2f, 0x98, 0x87, 0xa7, 0xa3, 0x79, 0x38, 0x67, 0x8a, 0xec,
0xc1, 0x58, 0x91, 0x5d, 0x19, 0xf0, 0x27, 0x4d, 0xc4, 0x0b, 0xfa, 0xf3, 0xfc, 0xb4, 0xfd, 0x99,
0x9c, 0xed, 0x13, 0x0b, 0x66, 0x0b, 0x0f, 0xa7, 0xd8, 0xc2, 0x47, 0x3a, 0xc5, 0x27, 0x95, 0xe7,
0xa7, 0x96, 0xc3, 0xce, 0xdf, 0x16, 0xe4, 0x8e, 0x9a, 0xad, 0x74, 0x27, 0x48, 0xc2, 0xfa, 0x45,
0x45, 0x80, 0xaa, 0x93, 0x36, 0xc6, 0xf2, 0xbd, 0x09, 0x90, 0x71, 0x45, 0x6d, 0x2f, 0xbc, 0x7b,
0x6b, 0xcd, 0x94, 0x2c, 0x24, 0x61, 0xf3, 0xe2, 0x23, 0x44, 0xff, 0x9b, 0xfc, 0x9c, 0xcb, 0x9b,
0xe7, 0xb2, 0x7a, 0xa0, 0x7f, 0x72, 0xb7, 0x37, 0xde, 0xbd, 0xb5, 0x56, 0x4b, 0x56, 0xb9, 0x80,
0xb2, 0x77, 0x7f, 0xef, 0xd6, 0xcf, 0x37, 0xfb, 0x4c, 0x1d, 0x47, 0x9d, 0x5a, 0x97, 0xfb, 0xf5,
0x64, 0x60, 0xc4, 0xff, 0xc0, 0x5d, 0xee, 0xd5, 0x45, 0xd8, 0xed, 0x2c, 0x18, 0xe9, 0xfe, 0x3f,
0x01, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x24, 0x92, 0x1a, 0x52, 0x0f, 0x00, 0x00,
}