Partial implementation of TriggerAction manager

This commit is contained in:
MaMe82 2018-09-26 12:37:51 +02:00
parent 416b6413bd
commit fbf439b7bd
7 changed files with 584 additions and 248 deletions

View File

@ -4,7 +4,10 @@ package common
// P4wnP1 or startup scripts)
import (
"bufio"
"bytes"
"fmt"
"os"
"os/exec"
)
@ -13,7 +16,15 @@ type LogWriter struct {
}
func (lw LogWriter) Write(p []byte) (n int, err error) {
fmt.Printf("%s: %s\n", lw.Prefix, string(p))
//fmt.Printf("%s: %s", lw.Prefix, string(p))
lineScanner := bufio.NewScanner(bytes.NewReader(p))
lineScanner.Split(bufio.ScanLines)
for lineScanner.Scan() {
fmt.Printf("%s: %s\n", lw.Prefix, string(lineScanner.Bytes()))
}
return len(p),nil
}
@ -27,3 +38,15 @@ func RunBashScript(scriptPath string) (err error) {
if err != nil { return }
return cmd.Wait()
}
func RunBashScriptEnv(scriptPath string, env ...string) (err error) {
cmd := exec.Command("/bin/bash", scriptPath)
cmd.Env = append(os.Environ(), env...) // keep os environment and append additional env
wStdout := LogWriter{scriptPath}
wStderr := LogWriter{scriptPath + " error"}
cmd.Stdout = wStdout
cmd.Stderr = wStderr
err = cmd.Start()
if err != nil { return }
return cmd.Wait()
}

131
desktest.go Normal file
View File

@ -0,0 +1,131 @@
package main
import (
"fmt"
"github.com/mame82/P4wnP1_go/common_web"
pb "github.com/mame82/P4wnP1_go/proto"
"github.com/mame82/P4wnP1_go/service"
"log"
"os"
"os/signal"
"syscall"
"time"
)
/*
#!/bin/bash
# /tmp/test.sh
echo "Bash DHCP Lease"
echo "Interface: $DHCP_LEASE_IFACE"
echo "Mac: $DHCP_LEASE_MAC"
echo "IP: $DHCP_LEASE_IP"
#!/bin/bash
# /tmp/test1.sh
echo "Bash SSH Login"
echo "Interface: $SSH_LOGIN_USER"
*/
func main() {
pseudoService := &service.Service{
SubSysEvent: service.NewEventManager(10),
}
tam := service.NewTriggerActionManager(pseudoService)
pseudoService.SubSysEvent.Start()
tam.Start()
// create test trigger
serviceUpRunScript := &pb.TriggerAction{
Trigger: &pb.TriggerAction_ServiceStarted{
ServiceStarted: &pb.TriggerServiceStarted{},
},
Action: &pb.TriggerAction_BashScript{
BashScript: &pb.ActionStartBashScript{
ScriptPath: "/usr/local/P4wnP1/scripts/servicestart1.sh",
},
},
}
dhcpLeaseScript := &pb.TriggerAction{
Trigger: &pb.TriggerAction_DhcpLeaseGranted{
DhcpLeaseGranted: &pb.TriggerDHCPLeaseGranted{},
},
Action: &pb.TriggerAction_BashScript{
BashScript: &pb.ActionStartBashScript{
ScriptPath: "/tmp/test.sh",
},
},
}
sshLoginScript := &pb.TriggerAction{
OneShot: true,
Trigger: &pb.TriggerAction_SshLogin{
SshLogin: &pb.TriggerSSHLogin{},
},
Action: &pb.TriggerAction_BashScript{
BashScript: &pb.ActionStartBashScript{
ScriptPath: "/tmp/test1.sh",
},
},
}
serviceUpLog := &pb.TriggerAction{
Trigger: &pb.TriggerAction_ServiceStarted{
ServiceStarted: &pb.TriggerServiceStarted{},
},
Action: &pb.TriggerAction_Log{
Log: &pb.ActionLog{},
},
}
tam.AddTriggerAction(serviceUpRunScript)
tam.AddTriggerAction(serviceUpLog)
tam.AddTriggerAction(dhcpLeaseScript)
tam.AddTriggerAction(sshLoginScript)
/*
// Pause TriggerActionManager after 5 seconds for 5 seconds
go func() {
time.Sleep(time.Second * 5)
tam.Stop()
time.Sleep(time.Second * 5)
tam.Start()
}()
*/
go func() {
for {
pseudoService.SubSysEvent.Emit(service.ConstructEventTriggerDHCPLease("wlan0", "aa:bb:cc:dd:ee:ff", "172.24.0.6"))
time.Sleep(1800*time.Millisecond)
}
}()
go func() {
time.Sleep(time.Second)
for {
pseudoService.SubSysEvent.Emit(service.ConstructEventTriggerSSHLogin("testuser"))
time.Sleep(5*time.Second)
}
}()
go func() {
time.Sleep(2*time.Second)
for {
pseudoService.SubSysEvent.Emit(service.ConstructEventTrigger(common_web.EVT_TRIGGER_TYPE_SERVICE_STARTED))
time.Sleep(5*time.Second)
}
}()
//use a channel to wait for SIGTERM or SIGINT
fmt.Println("P4wnP1 service initialized, stop with SIGTERM or SIGINT")
sig := make(chan os.Signal)
signal.Notify(sig, syscall.SIGINT, syscall.SIGTERM)
si := <-sig
log.Printf("Signal (%v) received, ending P4wnP1_service ...\n", si)
pseudoService.SubSysEvent.Stop()
tam.Stop()
return
}

View File

@ -262,7 +262,8 @@ func (m *TriggerActionSettings) Unmarshal(rawBytes []byte) (*TriggerActionSettin
}
type TriggerAction struct {
Id uint32
Id uint32
OneShot bool
// Types that are valid to be assigned to Trigger:
// *TriggerAction_ServiceStarted
// *TriggerAction_UsbGadgetConnected
@ -377,6 +378,14 @@ func (m *TriggerAction) GetId() (x uint32) {
return m.Id
}
// GetOneShot gets the OneShot of the TriggerAction.
func (m *TriggerAction) GetOneShot() (x bool) {
if m == nil {
return x
}
return m.OneShot
}
// GetServiceStarted gets the ServiceStarted of the TriggerAction.
func (m *TriggerAction) GetServiceStarted() (x *TriggerServiceStarted) {
if v, ok := m.GetTrigger().(*TriggerAction_ServiceStarted); ok {
@ -547,6 +556,10 @@ func (m *TriggerAction) MarshalToWriter(writer jspb.Writer) {
writer.WriteUint32(1, m.Id)
}
if m.OneShot {
writer.WriteBool(13, m.OneShot)
}
return
}
@ -567,6 +580,8 @@ func (m *TriggerAction) UnmarshalFromReader(reader jspb.Reader) *TriggerAction {
switch reader.GetFieldNumber() {
case 1:
m.Id = reader.ReadUint32()
case 13:
m.OneShot = reader.ReadBool()
case 2:
reader.ReadMessage(func() {
m.Trigger = &TriggerAction_ServiceStarted{

View File

@ -228,7 +228,8 @@ func (m *TriggerActionSettings) GetRegisteredTriggerActions() []*TriggerAction {
}
type TriggerAction struct {
Id uint32 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
Id uint32 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
OneShot bool `protobuf:"varint,13,opt,name=oneShot" json:"oneShot,omitempty"`
// Types that are valid to be assigned to Trigger:
// *TriggerAction_ServiceStarted
// *TriggerAction_UsbGadgetConnected
@ -324,6 +325,13 @@ func (m *TriggerAction) GetId() uint32 {
return 0
}
func (m *TriggerAction) GetOneShot() bool {
if m != nil {
return m.OneShot
}
return false
}
func (m *TriggerAction) GetServiceStarted() *TriggerServiceStarted {
if x, ok := m.GetTrigger().(*TriggerAction_ServiceStarted); ok {
return x.ServiceStarted
@ -3128,188 +3136,189 @@ var _P4WNP1_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("grpc.proto", fileDescriptor0) }
var fileDescriptor0 = []byte{
// 2918 bytes of a gzipped FileDescriptorProto
// 2934 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x5a, 0x5b, 0x77, 0xdb, 0xc6,
0xf1, 0x27, 0x45, 0x4a, 0x22, 0x87, 0xa2, 0x04, 0x6d, 0x2c, 0x99, 0x56, 0x1c, 0x5f, 0xf6, 0xef,
0x24, 0xfe, 0x3b, 0x3d, 0x6a, 0xe2, 0x3a, 0x6e, 0x8e, 0x4f, 0x7b, 0x12, 0x5e, 0x45, 0xda, 0xbc,
0x9d, 0x05, 0x69, 0xf5, 0xf2, 0xc0, 0x40, 0xc0, 0x8a, 0x44, 0x4d, 0x02, 0x2c, 0x76, 0x29, 0x47,
0x7d, 0xc8, 0x43, 0xfb, 0xde, 0xd7, 0x7e, 0x82, 0xbe, 0xf6, 0x33, 0xf5, 0xa5, 0x9f, 0xa3, 0x3d,
0xbb, 0xb8, 0x10, 0x80, 0x00, 0xca, 0x69, 0xdf, 0x76, 0x07, 0x33, 0xbf, 0x9d, 0x9d, 0x9d, 0x9d,
0xd9, 0x19, 0x12, 0x60, 0xea, 0x2c, 0xf5, 0xd3, 0xa5, 0x63, 0x73, 0x1b, 0x95, 0x86, 0x2f, 0xde,
0x5b, 0xc3, 0xaf, 0x26, 0x82, 0x84, 0x6d, 0x38, 0x1a, 0x39, 0xe6, 0x74, 0x4a, 0x9d, 0xaa, 0xce,
0x4d, 0xdb, 0x52, 0x29, 0xe7, 0xa6, 0x35, 0x65, 0xe8, 0x2d, 0x54, 0x1c, 0x3a, 0x35, 0x19, 0xa7,
0x0e, 0x35, 0x22, 0x2c, 0xac, 0x92, 0x7d, 0x94, 0x7b, 0x5a, 0x7a, 0x7e, 0x72, 0x1a, 0x02, 0x3a,
0x8d, 0xb0, 0x90, 0x54, 0x59, 0xfc, 0xd7, 0x5d, 0x28, 0x47, 0x48, 0x68, 0x1f, 0xb6, 0x4c, 0xa3,
0x92, 0x7d, 0x94, 0x7d, 0x5a, 0x26, 0x5b, 0xa6, 0x81, 0xba, 0xb0, 0xcf, 0xa8, 0x73, 0x65, 0xea,
0x54, 0xe5, 0x9a, 0xc3, 0xa9, 0x51, 0xd9, 0x7a, 0x94, 0x7d, 0x5a, 0x7a, 0x8e, 0x93, 0xd6, 0x53,
0x23, 0x9c, 0xed, 0x0c, 0x89, 0xc9, 0xa2, 0xdf, 0x00, 0x5a, 0xb1, 0x8b, 0x33, 0xcd, 0x98, 0x52,
0x5e, 0xb7, 0x2d, 0x8b, 0xea, 0x02, 0x31, 0x27, 0x11, 0x3f, 0x4b, 0x42, 0x1c, 0xab, 0xb5, 0x18,
0x77, 0x3b, 0x43, 0x12, 0x30, 0x90, 0x06, 0x47, 0x01, 0xb5, 0x61, 0x32, 0x3d, 0x00, 0xcf, 0x4b,
0xf0, 0xff, 0xdf, 0x08, 0x1e, 0x16, 0x68, 0x67, 0x48, 0x32, 0x12, 0xea, 0x40, 0xf9, 0xbd, 0x79,
0x69, 0x56, 0x87, 0xbe, 0x25, 0xb6, 0x25, 0xf4, 0xe3, 0x24, 0xe8, 0xf3, 0x30, 0x63, 0x3b, 0x43,
0xa2, 0x92, 0xc2, 0x0e, 0x82, 0x10, 0xa8, 0x5f, 0x65, 0x2a, 0xd7, 0x2a, 0x3b, 0xe9, 0x76, 0x38,
0xbf, 0xc1, 0x2d, 0xec, 0x70, 0x13, 0x03, 0xbd, 0x82, 0x02, 0x63, 0xb3, 0xae, 0x3d, 0x35, 0xad,
0xca, 0xae, 0xc4, 0xbb, 0x9f, 0x78, 0x52, 0x6a, 0x5b, 0xf2, 0xb4, 0x33, 0x24, 0xe0, 0x47, 0x04,
0x14, 0x63, 0xa6, 0x2f, 0xbb, 0x54, 0x63, 0xf4, 0xcc, 0xd1, 0x2c, 0xb1, 0xc7, 0x82, 0xc4, 0x78,
0x92, 0x84, 0xd1, 0x68, 0xd7, 0x87, 0x61, 0xde, 0x76, 0x86, 0xdc, 0x90, 0x47, 0x0d, 0x80, 0x0b,
0x8d, 0xcd, 0x54, 0xdd, 0x31, 0x97, 0xbc, 0x52, 0x4c, 0xf0, 0x1d, 0xcf, 0xd5, 0x85, 0x65, 0x6a,
0x01, 0x67, 0x3b, 0x4b, 0x42, 0x72, 0xa8, 0x0a, 0xc5, 0x99, 0x69, 0x78, 0x20, 0x90, 0x60, 0xf6,
0x10, 0x48, 0xbb, 0xd3, 0x08, 0x30, 0xd6, 0x52, 0x48, 0x87, 0x63, 0x83, 0x2e, 0xe7, 0xf6, 0xb5,
0x7f, 0xa9, 0x46, 0x74, 0xb1, 0x9c, 0x6b, 0x9c, 0x56, 0x4a, 0x09, 0x1e, 0xe2, 0xe2, 0x35, 0x12,
0x05, 0xda, 0x59, 0x92, 0x02, 0x85, 0x9e, 0x41, 0x6e, 0x6e, 0x4f, 0x2b, 0x7b, 0x12, 0xf1, 0x38,
0x01, 0xb1, 0x6b, 0x4f, 0xdb, 0x59, 0x22, 0x98, 0x6a, 0x45, 0xd8, 0xf5, 0x0c, 0x59, 0x2b, 0xc0,
0x8e, 0xfb, 0x19, 0xdf, 0x0d, 0x22, 0x40, 0xf4, 0x2e, 0xe1, 0x32, 0x94, 0xbc, 0x0f, 0x67, 0xc3,
0xce, 0x00, 0x7f, 0x0c, 0xf7, 0x52, 0x6f, 0x08, 0x7e, 0x00, 0xf7, 0x37, 0x79, 0x38, 0x3e, 0x86,
0x3b, 0x49, 0x6e, 0x1a, 0x02, 0xbd, 0xe9, 0x6e, 0xf8, 0x6b, 0x38, 0x88, 0xf9, 0x0e, 0xc2, 0xb0,
0xe7, 0x50, 0x26, 0xc7, 0x63, 0x46, 0x1d, 0x19, 0x35, 0x8a, 0x24, 0x42, 0xc3, 0x7f, 0xc9, 0xc2,
0xdd, 0x14, 0x7f, 0xf1, 0xe4, 0x3b, 0x16, 0xa7, 0xce, 0xa5, 0xa6, 0xd3, 0x90, 0x7c, 0x40, 0x43,
0x8f, 0xa0, 0xe4, 0x50, 0x56, 0x9f, 0x9b, 0xd4, 0xe2, 0x9d, 0xa1, 0x0c, 0x3e, 0x45, 0x12, 0x26,
0x79, 0x28, 0xee, 0xb4, 0xa7, 0xe9, 0x32, 0x9a, 0xb8, 0x28, 0x01, 0x0d, 0xff, 0x12, 0x8e, 0x12,
0xdd, 0x0c, 0x3d, 0x00, 0x60, 0x72, 0x34, 0xd4, 0xf8, 0xcc, 0x53, 0x20, 0x44, 0xc1, 0x2f, 0xe1,
0x4e, 0x92, 0x6b, 0xad, 0xe5, 0xfa, 0xda, 0x82, 0x46, 0xe5, 0x04, 0x05, 0xff, 0x33, 0x0b, 0xf7,
0x37, 0xf9, 0x90, 0xd0, 0x9a, 0x7b, 0xe3, 0x10, 0x44, 0x84, 0x86, 0x5e, 0x43, 0x9e, 0x5f, 0x2f,
0xa9, 0xdc, 0xf4, 0xfe, 0xf3, 0x97, 0x1f, 0xec, 0xa0, 0xa7, 0xfe, 0x60, 0x74, 0xbd, 0xa4, 0x44,
0x62, 0xe0, 0x21, 0xec, 0x85, 0xa9, 0xe8, 0x10, 0xca, 0xad, 0x71, 0xb7, 0x3b, 0x51, 0x9b, 0xa3,
0x51, 0xa7, 0x7f, 0xa6, 0x2a, 0x19, 0x54, 0x82, 0xdd, 0x7e, 0x73, 0x74, 0x3e, 0x20, 0x6f, 0x94,
0x2c, 0x2a, 0x40, 0xfe, 0xbc, 0xd3, 0xea, 0x28, 0x5b, 0x68, 0x17, 0x72, 0x63, 0xb5, 0xa6, 0xe4,
0x50, 0x19, 0x8a, 0xb5, 0xee, 0xb8, 0x39, 0x1a, 0x0c, 0x46, 0x6d, 0x25, 0x8f, 0x4b, 0x50, 0x0c,
0x7c, 0x1a, 0xbf, 0x87, 0x13, 0xe1, 0x33, 0x84, 0xfe, 0x71, 0x45, 0x19, 0xf7, 0x15, 0x52, 0xb9,
0xed, 0x68, 0x53, 0xb9, 0xd9, 0x51, 0xc2, 0x66, 0xc3, 0x34, 0xf4, 0x35, 0x14, 0x98, 0x27, 0xe6,
0xa5, 0x98, 0x7b, 0x91, 0x0d, 0x9f, 0x9b, 0x2d, 0xd3, 0xc7, 0x25, 0x01, 0x2b, 0xfe, 0x5b, 0x0e,
0xf6, 0xc2, 0x9f, 0x10, 0x82, 0xbc, 0xb5, 0x5e, 0x43, 0x8e, 0xd1, 0x09, 0x14, 0x0c, 0x93, 0x69,
0x17, 0x73, 0x2f, 0x7d, 0x15, 0x48, 0x30, 0x17, 0x27, 0xe9, 0xd0, 0xe9, 0x6a, 0xae, 0x71, 0xdb,
0xb9, 0xf6, 0x9c, 0x27, 0x44, 0x41, 0xdf, 0xc2, 0xde, 0x7b, 0xdb, 0x79, 0x67, 0x5a, 0xd3, 0xc9,
0xc2, 0x36, 0xa8, 0xcc, 0x27, 0xfb, 0xb1, 0xa0, 0x2a, 0x14, 0x38, 0x77, 0x99, 0x7a, 0xb6, 0x41,
0x49, 0xe9, 0xfd, 0x7a, 0x82, 0x5e, 0x42, 0x51, 0x5b, 0xf1, 0x99, 0x2b, 0xbd, 0x2d, 0xa5, 0x6f,
0xee, 0xac, 0xba, 0xe2, 0x33, 0x29, 0x5a, 0xd0, 0xbc, 0x11, 0xaa, 0xc0, 0xae, 0x3e, 0xd3, 0x2c,
0x8b, 0xce, 0x65, 0x62, 0x28, 0x13, 0x7f, 0x8a, 0x4e, 0x61, 0x47, 0x5b, 0x4e, 0x6a, 0xaa, 0xea,
0x45, 0xf8, 0xbb, 0x37, 0xe0, 0x6a, 0xaa, 0x5a, 0xbf, 0x9c, 0x92, 0x6d, 0x6d, 0x59, 0x53, 0x55,
0xf4, 0x2d, 0x1c, 0xe8, 0xf2, 0x2a, 0x08, 0x99, 0xc9, 0xdc, 0x64, 0xbc, 0x52, 0x90, 0x8f, 0x86,
0x54, 0xc1, 0xb2, 0xcb, 0x5f, 0x53, 0xd5, 0xae, 0xc9, 0x38, 0xfa, 0x58, 0x86, 0x5f, 0x3a, 0x61,
0xcc, 0x34, 0x64, 0x0c, 0x2f, 0x90, 0x82, 0x20, 0xa8, 0xcc, 0x34, 0xd0, 0x31, 0xec, 0x58, 0xf4,
0x87, 0x85, 0x6d, 0x55, 0xca, 0xf2, 0x8b, 0x37, 0xc3, 0xff, 0xc8, 0x42, 0x51, 0x9e, 0x0c, 0x17,
0xfe, 0x7e, 0x0a, 0x79, 0x69, 0x80, 0xac, 0x34, 0xc0, 0xc9, 0xcd, 0xa3, 0x15, 0x5c, 0xd2, 0x02,
0x92, 0x2f, 0xbc, 0xfb, 0xad, 0xe8, 0xee, 0x11, 0xe4, 0xa5, 0x1e, 0xee, 0x51, 0xc9, 0x31, 0xaa,
0xc3, 0x81, 0xbe, 0x72, 0x1c, 0x6a, 0x05, 0xae, 0xe7, 0xe5, 0xfd, 0x0d, 0x3e, 0x14, 0x97, 0xc0,
0xcf, 0x01, 0xd6, 0x26, 0x10, 0xcb, 0xa8, 0x6a, 0xa7, 0xe1, 0xfb, 0x91, 0x18, 0x23, 0x05, 0x72,
0x43, 0xf5, 0x8d, 0x17, 0x84, 0xc4, 0x10, 0x3f, 0x86, 0xb2, 0xca, 0x1d, 0x71, 0xd4, 0x94, 0x31,
0xe1, 0xea, 0x0a, 0xe4, 0x16, 0x6c, 0xea, 0x49, 0x89, 0x21, 0xfe, 0x12, 0x50, 0x84, 0xa5, 0xea,
0x38, 0xda, 0xb5, 0x70, 0xc9, 0x05, 0x9b, 0xca, 0xb1, 0x7c, 0xc1, 0x15, 0x49, 0x30, 0xc7, 0xa7,
0xb0, 0xd7, 0xbc, 0xa2, 0x16, 0xf7, 0x6e, 0x93, 0x70, 0x51, 0x71, 0x68, 0xd4, 0x12, 0x37, 0x57,
0x42, 0xe7, 0x48, 0x88, 0x82, 0x35, 0x00, 0xc9, 0xff, 0x56, 0x9b, 0xaf, 0x84, 0xb3, 0xef, 0x72,
0x26, 0x17, 0x74, 0xb5, 0x68, 0x67, 0x88, 0x4f, 0x40, 0xc7, 0xb0, 0xcd, 0x2f, 0x6c, 0xdb, 0xb5,
0x69, 0xa1, 0x9d, 0x21, 0xee, 0x14, 0x55, 0x60, 0x87, 0x9b, 0x16, 0x7f, 0xf9, 0x42, 0x5a, 0x35,
0xd7, 0xce, 0x10, 0x6f, 0x5e, 0xdb, 0x86, 0xdc, 0x95, 0x36, 0xc7, 0x5d, 0xd8, 0x96, 0x4b, 0x08,
0xb3, 0xf0, 0xb5, 0x16, 0x72, 0x8c, 0x7e, 0x0e, 0x3b, 0x57, 0x62, 0x69, 0x71, 0x71, 0x6f, 0xba,
0xd5, 0x5a, 0x35, 0xe2, 0xb1, 0xe1, 0xef, 0xe1, 0x8e, 0xb8, 0xfb, 0x0d, 0xd3, 0x19, 0x38, 0x2d,
0x73, 0x4e, 0xfd, 0x8d, 0x2a, 0x90, 0x33, 0x4c, 0x3f, 0x8f, 0x88, 0xa1, 0x70, 0xae, 0xa5, 0x43,
0x2f, 0xcd, 0x1f, 0x3c, 0xa3, 0x7b, 0x33, 0x61, 0x12, 0xdb, 0x9a, 0x5f, 0xb7, 0xec, 0xb9, 0x41,
0x1d, 0xa9, 0x74, 0x81, 0x84, 0x28, 0x22, 0xe0, 0xc7, 0x56, 0x60, 0x4b, 0xdb, 0x62, 0xd4, 0xbd,
0xee, 0x6c, 0x35, 0x8f, 0x04, 0xfc, 0x35, 0x05, 0x0f, 0xe0, 0x80, 0x50, 0xcd, 0x08, 0x6b, 0x85,
0x20, 0xbf, 0x5c, 0x33, 0xcb, 0x31, 0xba, 0x03, 0xdb, 0x4c, 0x64, 0x04, 0xa9, 0x56, 0x8e, 0xb8,
0x13, 0xc1, 0x69, 0x68, 0x5c, 0x93, 0xfa, 0xec, 0x11, 0x39, 0xc6, 0x5f, 0x82, 0xb2, 0x06, 0xf4,
0x94, 0xb8, 0x0f, 0x45, 0x87, 0x6a, 0x46, 0xdd, 0x5e, 0x59, 0xdc, 0xb3, 0xe4, 0x9a, 0x80, 0xaf,
0x40, 0x39, 0x77, 0x4c, 0x4e, 0x6f, 0xd3, 0xe1, 0x58, 0x84, 0x81, 0x25, 0xb5, 0xfc, 0x98, 0xe6,
0xcd, 0x44, 0xb4, 0x5d, 0xac, 0x18, 0xef, 0xdb, 0xbc, 0xf9, 0x83, 0xb8, 0xeb, 0xae, 0x75, 0x22,
0xb4, 0x40, 0xd3, 0x7c, 0x48, 0xd3, 0x4f, 0xe1, 0x40, 0x2c, 0xd9, 0xb1, 0x2e, 0xed, 0x0d, 0xcb,
0xe2, 0x1f, 0x41, 0x59, 0xb3, 0x79, 0x1b, 0x4a, 0x0a, 0xba, 0xe2, 0x9e, 0x9a, 0x7f, 0xa2, 0x9e,
0x85, 0xe4, 0x58, 0xd0, 0x64, 0x14, 0xc8, 0xc9, 0x2b, 0x1d, 0xdc, 0xf4, 0x85, 0x6d, 0x8c, 0xcc,
0x85, 0x1b, 0x5b, 0x73, 0xc4, 0x9f, 0x0a, 0x23, 0x9b, 0xac, 0x61, 0x3a, 0x32, 0x6a, 0x16, 0x88,
0x3b, 0xc1, 0xbf, 0x03, 0x25, 0xc8, 0xc3, 0xa1, 0x1b, 0xb2, 0x29, 0x8d, 0xa3, 0xcf, 0x60, 0x9f,
0x9b, 0x0b, 0x6a, 0xaf, 0xb8, 0x4a, 0x75, 0xdb, 0x32, 0x98, 0x17, 0x54, 0x62, 0x54, 0xfc, 0x00,
0xf6, 0x02, 0xec, 0xd7, 0xf6, 0x45, 0xbc, 0x1a, 0xc2, 0x4f, 0x42, 0x6b, 0xbf, 0xb6, 0x2f, 0x64,
0x70, 0x54, 0x20, 0x67, 0x1a, 0x6e, 0x19, 0x56, 0x26, 0x62, 0x88, 0xdf, 0x42, 0xa5, 0xdd, 0x69,
0x90, 0x95, 0x65, 0x99, 0xd6, 0xf4, 0xb5, 0x7d, 0x21, 0x63, 0x1b, 0x91, 0x3e, 0x16, 0x42, 0xcc,
0xc9, 0xfa, 0x0a, 0x41, 0xfe, 0x6a, 0xd1, 0x31, 0x7c, 0x2b, 0x89, 0xb1, 0x38, 0x58, 0x66, 0xaf,
0x1c, 0x9d, 0x7a, 0x31, 0xce, 0x9b, 0xe1, 0x1f, 0xe1, 0x20, 0xb4, 0x73, 0x09, 0xf7, 0x05, 0xe4,
0xfe, 0x60, 0x5f, 0x48, 0xbc, 0x78, 0xb0, 0x0b, 0x2b, 0x4a, 0x04, 0x97, 0xb0, 0x92, 0xc9, 0x5a,
0xa6, 0x65, 0xb2, 0x59, 0x90, 0x08, 0x43, 0x94, 0xf5, 0xdd, 0x78, 0xcd, 0x6c, 0x6b, 0x9d, 0x0a,
0x7d, 0x0a, 0x3e, 0x85, 0x52, 0xb7, 0xd9, 0x08, 0x32, 0xed, 0x43, 0x28, 0x5d, 0xcc, 0x4d, 0xeb,
0xdd, 0x44, 0x0f, 0xfc, 0xb8, 0x4c, 0x40, 0x92, 0x5c, 0x47, 0xfe, 0x57, 0x1e, 0xf6, 0xdd, 0xe7,
0x67, 0x20, 0x53, 0x81, 0x5d, 0x6a, 0xb9, 0x89, 0x38, 0x2b, 0xd7, 0xf7, 0xa7, 0xc2, 0x8c, 0x57,
0xa6, 0xe1, 0xc7, 0xd6, 0x2b, 0x53, 0x52, 0x96, 0x41, 0x9c, 0x17, 0x43, 0xe9, 0xd9, 0x9a, 0xb5,
0xba, 0xd4, 0x74, 0xbe, 0x72, 0xa8, 0x23, 0xfd, 0xa5, 0x48, 0x22, 0x34, 0xb1, 0xc2, 0xd2, 0xb1,
0x8d, 0x95, 0xce, 0xa5, 0xdb, 0x14, 0x89, 0x3f, 0x95, 0x66, 0xa5, 0x8e, 0xa9, 0xb9, 0xf9, 0x54,
0x98, 0x55, 0xce, 0xd0, 0x03, 0x28, 0xad, 0x18, 0x9d, 0xd4, 0x1b, 0xf5, 0x49, 0xb3, 0xde, 0x93,
0x39, 0xb5, 0x40, 0x8a, 0x2b, 0x46, 0xeb, 0x8d, 0x7a, 0xb3, 0xde, 0x13, 0xd9, 0x4f, 0x7c, 0x27,
0xfd, 0x46, 0x47, 0x95, 0xf5, 0x50, 0x81, 0x14, 0x56, 0x8c, 0xca, 0x39, 0x7a, 0x0a, 0x8a, 0xf8,
0xd8, 0xee, 0x34, 0x26, 0x6f, 0x9a, 0xbf, 0xad, 0x0d, 0xaa, 0xa4, 0xe1, 0x65, 0xc8, 0xfd, 0x15,
0xa3, 0xed, 0x4e, 0xc3, 0xa7, 0x22, 0x0c, 0x65, 0x9f, 0xb3, 0x37, 0x18, 0xab, 0x4d, 0x59, 0xc7,
0x14, 0x48, 0xc9, 0x65, 0x93, 0x24, 0x5f, 0x15, 0xc1, 0x43, 0xaa, 0xe7, 0xb2, 0x32, 0x71, 0x55,
0x11, 0xfe, 0x54, 0x3d, 0x47, 0x77, 0x61, 0x57, 0x7c, 0x1f, 0xf7, 0x54, 0x59, 0x63, 0x14, 0xc8,
0xce, 0x8a, 0xd1, 0x71, 0x4f, 0x45, 0x9f, 0x00, 0x88, 0x0f, 0x6a, 0x93, 0x74, 0xaa, 0x5d, 0x2f,
0x11, 0x0b, 0x39, 0x97, 0x80, 0x5e, 0xc3, 0xbe, 0x63, 0x19, 0x26, 0x9b, 0x04, 0x4f, 0xac, 0x7d,
0xe9, 0x31, 0xff, 0x17, 0xf1, 0x98, 0xe8, 0x59, 0x35, 0xf9, 0x8c, 0x3a, 0x16, 0xe5, 0xa4, 0x2c,
0x45, 0x83, 0x23, 0xec, 0x81, 0xa2, 0x1b, 0xfa, 0x84, 0xea, 0x8b, 0x35, 0xda, 0xc1, 0x87, 0xa3,
0xed, 0xeb, 0x86, 0xde, 0xd4, 0x17, 0x01, 0x5c, 0x15, 0xf6, 0x56, 0x8b, 0x90, 0x62, 0x8a, 0x84,
0x7a, 0xb0, 0x01, 0x6a, 0xdc, 0x53, 0x49, 0x69, 0xb5, 0x08, 0x34, 0xc2, 0x43, 0x38, 0x4e, 0x5e,
0x4c, 0x3e, 0x5c, 0x6c, 0xc6, 0x27, 0x9a, 0x61, 0xf8, 0x69, 0xa5, 0x20, 0x08, 0x55, 0xc3, 0x70,
0xd0, 0x3d, 0x28, 0x18, 0xf4, 0xca, 0xfd, 0xe6, 0xba, 0xdd, 0xae, 0x41, 0xaf, 0xc4, 0x27, 0xfc,
0x6b, 0x38, 0xbc, 0xb1, 0xa6, 0x08, 0x47, 0xba, 0xe1, 0xd8, 0x0b, 0xcf, 0x73, 0xdd, 0x89, 0xb8,
0xc0, 0x97, 0xe6, 0x9c, 0x7a, 0x08, 0x72, 0x8c, 0x27, 0xf0, 0xd8, 0x7d, 0x99, 0x53, 0xc3, 0x57,
0x25, 0xa8, 0x68, 0x82, 0x8d, 0xbf, 0x82, 0xbc, 0x7c, 0x8a, 0xb9, 0xfd, 0x9b, 0x68, 0xd5, 0x9f,
0x2a, 0x45, 0xa4, 0x0c, 0xfe, 0x73, 0x0e, 0xee, 0xa5, 0x23, 0x27, 0x45, 0xe3, 0x6f, 0xbd, 0xc8,
0xeb, 0xd6, 0x12, 0x5f, 0x7c, 0xd8, 0x6a, 0xa7, 0xa1, 0x07, 0x99, 0x08, 0x1e, 0x4b, 0x61, 0x1c,
0xca, 0xd8, 0x0b, 0x3f, 0x38, 0xac, 0x29, 0xe2, 0x41, 0x63, 0x51, 0xbe, 0xd0, 0xd8, 0xbb, 0x17,
0xde, 0xbd, 0x0c, 0xe6, 0xe1, 0x5b, 0xbf, 0x1d, 0xbd, 0xf5, 0x03, 0x40, 0xc6, 0x4c, 0x5f, 0x8a,
0x62, 0x57, 0x94, 0xbc, 0x9e, 0x0f, 0xb8, 0x8d, 0x90, 0x87, 0x11, 0x25, 0x45, 0xf5, 0x18, 0x65,
0x23, 0x09, 0xa2, 0xe8, 0x09, 0x94, 0x7d, 0x57, 0xea, 0x88, 0x0a, 0xd4, 0xbb, 0xce, 0x51, 0x22,
0xae, 0x43, 0x5e, 0xbe, 0xb1, 0x01, 0x76, 0x7a, 0xd5, 0xfe, 0xb8, 0xda, 0x55, 0x32, 0xe8, 0x00,
0x4a, 0x62, 0x8d, 0x49, 0xbd, 0xdb, 0x69, 0xf6, 0x47, 0x4a, 0x36, 0x20, 0xa8, 0x4d, 0xf2, 0xb6,
0x49, 0x94, 0x2d, 0x51, 0x00, 0x8d, 0xfb, 0xbd, 0x6a, 0xbf, 0x7a, 0xd6, 0x6c, 0x28, 0x39, 0xfc,
0xef, 0x1c, 0xa0, 0x9b, 0x5a, 0xad, 0x5f, 0x6b, 0x43, 0xdb, 0x09, 0xa2, 0xe2, 0x9a, 0x82, 0x9e,
0xc2, 0x81, 0x3b, 0x5b, 0x17, 0xbe, 0xae, 0xef, 0xc4, 0xc9, 0xe2, 0x99, 0x30, 0x17, 0xf5, 0xb2,
0x48, 0xb7, 0x9e, 0xc5, 0xd7, 0x04, 0xf4, 0x0c, 0x14, 0xcb, 0xe6, 0xa2, 0x70, 0xb0, 0x1d, 0x93,
0x6b, 0xdc, 0xbc, 0x72, 0x13, 0x68, 0x81, 0xdc, 0xa0, 0xa3, 0x53, 0x40, 0x86, 0xdd, 0xb7, 0x79,
0xcd, 0xb4, 0x8c, 0xf5, 0xb2, 0xee, 0x59, 0x24, 0x7c, 0x11, 0xf9, 0x52, 0xd7, 0xe6, 0xf3, 0x0b,
0x4d, 0x7f, 0xe7, 0x35, 0x5d, 0xdc, 0x90, 0x19, 0xa3, 0xa2, 0x17, 0xb0, 0xe3, 0x68, 0xd6, 0x94,
0xb2, 0xca, 0xae, 0xf4, 0xe2, 0xfb, 0x29, 0x47, 0x46, 0x04, 0x13, 0xf1, 0x78, 0x51, 0x0b, 0x76,
0xed, 0xa5, 0xdb, 0xbc, 0x74, 0xeb, 0x90, 0x9f, 0xdd, 0x72, 0xd2, 0xa7, 0x03, 0x97, 0xbd, 0x69,
0x71, 0xe7, 0x9a, 0xf8, 0xc2, 0xa8, 0x0e, 0x25, 0x26, 0x36, 0xa8, 0xb7, 0x6d, 0xc6, 0x59, 0xa5,
0x28, 0xb1, 0x1e, 0xa7, 0x61, 0x05, 0x9c, 0x24, 0x2c, 0x75, 0xf2, 0x0a, 0xf6, 0xc2, 0xe8, 0x22,
0xeb, 0xbc, 0xa3, 0xd7, 0xde, 0xb9, 0x89, 0xa1, 0xb8, 0xf7, 0xf2, 0xdd, 0xea, 0x1d, 0x93, 0x3b,
0x79, 0xb5, 0xf5, 0x4d, 0x16, 0xdb, 0x70, 0x10, 0xdb, 0xa3, 0xcc, 0xa1, 0x62, 0xd0, 0xb5, 0xdf,
0x07, 0x1d, 0x91, 0x10, 0x25, 0xf8, 0x3e, 0x5e, 0x2e, 0xa9, 0x1f, 0x76, 0x42, 0x94, 0xe0, 0xcc,
0xe5, 0x7b, 0x28, 0x7c, 0xe6, 0x82, 0x80, 0xbf, 0x81, 0x3b, 0x49, 0x3b, 0x92, 0x55, 0x87, 0xa6,
0x07, 0x55, 0x87, 0xa6, 0xcb, 0x77, 0xc6, 0xd2, 0xc3, 0xdf, 0x32, 0x97, 0x78, 0x17, 0xb6, 0x9b,
0x8b, 0x25, 0xbf, 0x7e, 0xd6, 0x80, 0x83, 0x58, 0xb9, 0x2a, 0x0a, 0xff, 0x71, 0xff, 0x4d, 0x7f,
0x70, 0xde, 0x57, 0x32, 0x68, 0x07, 0xb6, 0xaa, 0x43, 0x25, 0x2b, 0xca, 0x7e, 0x75, 0x54, 0x55,
0xb6, 0xd0, 0x47, 0x70, 0xa0, 0x8e, 0xaa, 0x93, 0x56, 0xb5, 0xd3, 0x1d, 0xbc, 0x6d, 0x92, 0x49,
0x75, 0xa8, 0xe4, 0x9e, 0x35, 0xa0, 0x1c, 0xa9, 0xda, 0xd0, 0x11, 0x1c, 0x0a, 0xae, 0xfe, 0x60,
0x34, 0xa9, 0x0f, 0xfa, 0xfd, 0x66, 0x7d, 0xd4, 0x6c, 0x28, 0x19, 0x54, 0x84, 0xed, 0xea, 0x70,
0x32, 0x16, 0x80, 0x87, 0x50, 0x16, 0x1c, 0xeb, 0xaf, 0x5b, 0xcf, 0x3e, 0x73, 0x6b, 0x77, 0xbf,
0xf8, 0x45, 0x7b, 0x50, 0x38, 0x1f, 0x56, 0x9f, 0x4f, 0x86, 0xea, 0x1b, 0x25, 0x83, 0x0a, 0x90,
0x1f, 0x0c, 0x9b, 0x7d, 0x25, 0xfb, 0xfc, 0xef, 0x1f, 0xc1, 0xce, 0xf0, 0xc5, 0x79, 0x7f, 0xf8,
0x15, 0xea, 0x41, 0xe5, 0x8c, 0x72, 0x3f, 0xba, 0x46, 0x82, 0x34, 0x42, 0xd1, 0xa8, 0x26, 0xb6,
0x7b, 0xf2, 0xf1, 0x86, 0x44, 0x82, 0x33, 0xa8, 0x0d, 0x1f, 0xb9, 0x58, 0xff, 0x33, 0x52, 0x0b,
0x0e, 0xcf, 0x28, 0x8f, 0x3d, 0x77, 0xfe, 0x0b, 0x9c, 0x01, 0x1c, 0xaa, 0x37, 0x70, 0x36, 0xc9,
0xdc, 0x06, 0xf8, 0x1d, 0xec, 0x9f, 0x51, 0x1e, 0x7e, 0xb8, 0x25, 0x69, 0x55, 0x89, 0xd0, 0x42,
0xdc, 0x2e, 0x82, 0x1a, 0x45, 0x48, 0xe5, 0x3e, 0x49, 0xc0, 0xc6, 0x19, 0xd4, 0x80, 0xbd, 0x9e,
0x78, 0x12, 0x8e, 0x7b, 0xaa, 0x8c, 0x5d, 0xb7, 0xa4, 0xf7, 0x14, 0x94, 0x09, 0x3c, 0x74, 0x0f,
0x2b, 0x3d, 0xf5, 0x7d, 0x60, 0x1a, 0x4d, 0x59, 0xc0, 0x86, 0xcf, 0xcf, 0x28, 0xaf, 0xce, 0xe7,
0xb7, 0x67, 0xef, 0x24, 0x1b, 0x9e, 0x46, 0x43, 0xcf, 0x6d, 0x18, 0x38, 0x83, 0xe6, 0xf0, 0x24,
0xe4, 0xcd, 0xe9, 0xab, 0x45, 0xfb, 0x25, 0x91, 0x76, 0xc2, 0xc9, 0x07, 0x6e, 0x19, 0x67, 0x50,
0x4f, 0x56, 0x37, 0x64, 0x65, 0x79, 0xd1, 0xfb, 0x93, 0xe4, 0x7a, 0xc1, 0x2b, 0xaa, 0x4e, 0xee,
0xa7, 0x7d, 0x16, 0x05, 0x81, 0x84, 0x3b, 0x08, 0xc3, 0x89, 0x7a, 0xe9, 0x16, 0xc4, 0xf4, 0x02,
0x05, 0x67, 0x10, 0x81, 0xa3, 0x76, 0xa7, 0x71, 0x46, 0xf9, 0xba, 0x6a, 0x71, 0x6b, 0x9c, 0x74,
0xa9, 0x5b, 0x55, 0x6c, 0x02, 0x6a, 0x77, 0x1a, 0x75, 0xcd, 0xd2, 0xe9, 0x7c, 0xad, 0xe5, 0x06,
0xc0, 0x64, 0xbf, 0xe8, 0xc3, 0x5d, 0x57, 0x35, 0xaf, 0xa6, 0x0b, 0xf8, 0x93, 0xfd, 0xe0, 0x93,
0x54, 0x7c, 0x51, 0x30, 0xe2, 0x0c, 0xaa, 0xc1, 0x71, 0xa0, 0x56, 0x75, 0x3e, 0xbf, 0x05, 0x2e,
0x59, 0xa7, 0xdf, 0xfb, 0xe6, 0x8a, 0xd5, 0x99, 0x9b, 0x76, 0xf7, 0x69, 0xfc, 0x53, 0x62, 0x8d,
0x2a, 0x15, 0x2c, 0xb5, 0xd4, 0xa0, 0x09, 0x11, 0x3b, 0xd6, 0x78, 0x73, 0x22, 0x45, 0xc1, 0x37,
0x00, 0x2d, 0xd5, 0x6f, 0x7d, 0xa0, 0xe8, 0x49, 0xc5, 0x5a, 0x2c, 0x31, 0x8b, 0xc5, 0xfb, 0x25,
0xf2, 0x04, 0xca, 0x2d, 0xf5, 0x8c, 0x72, 0xbf, 0xf3, 0x10, 0xc3, 0x8b, 0xf5, 0x2d, 0x62, 0x78,
0xf1, 0x76, 0x05, 0xce, 0xa0, 0xef, 0xe1, 0xa8, 0xa5, 0xd6, 0x1d, 0xaa, 0x71, 0x1a, 0xe9, 0x13,
0xa1, 0xd8, 0xaf, 0x79, 0x09, 0x5d, 0xaa, 0x13, 0xbc, 0x89, 0x25, 0x58, 0xe1, 0x3b, 0x28, 0xc9,
0xce, 0x57, 0x57, 0x3e, 0xea, 0x62, 0xa7, 0x12, 0x6e, 0xef, 0xc5, 0xcd, 0x27, 0x3e, 0xe1, 0xcc,
0x97, 0x59, 0x74, 0x06, 0xa5, 0xa6, 0x3e, 0x0b, 0x7a, 0x31, 0x9b, 0x62, 0xc0, 0x86, 0x6f, 0x38,
0x83, 0x3a, 0x80, 0xdc, 0x10, 0x13, 0x69, 0x94, 0xa7, 0xb7, 0x46, 0x4f, 0x8e, 0x93, 0xdb, 0xb3,
0x38, 0x83, 0x7e, 0x05, 0x7b, 0x67, 0x94, 0xaf, 0xdb, 0xba, 0x49, 0xfe, 0x9a, 0x2e, 0xdd, 0x82,
0x63, 0xd7, 0x1c, 0x01, 0xb1, 0x3e, 0x73, 0x9f, 0x84, 0x3f, 0x0d, 0x87, 0xc0, 0xa1, 0xca, 0x6d,
0x87, 0x9e, 0x9b, 0x97, 0xeb, 0xfd, 0x7c, 0x1e, 0x63, 0x4f, 0xfb, 0x35, 0x22, 0xc5, 0x5d, 0x87,
0x70, 0x24, 0x62, 0x8f, 0x80, 0x35, 0x22, 0xb8, 0x9b, 0xec, 0x9e, 0x6e, 0x43, 0x89, 0x58, 0xf1,
0x7e, 0x9f, 0xf9, 0x69, 0xa0, 0xe9, 0xfb, 0xee, 0xc1, 0x3d, 0x89, 0xe5, 0x27, 0x8c, 0x0f, 0x86,
0x4c, 0xde, 0xf2, 0xc0, 0x3d, 0x8e, 0x04, 0xf5, 0x92, 0x8e, 0xe3, 0x61, 0x3a, 0xbe, 0xdb, 0xb6,
0xce, 0x5c, 0xec, 0xc8, 0xff, 0x34, 0xfc, 0xe2, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x96, 0xac,
0x7d, 0x4b, 0xe1, 0x20, 0x00, 0x00,
0x7d, 0xc8, 0x43, 0xfb, 0x21, 0xfa, 0x09, 0x7a, 0x4e, 0x9f, 0xfa, 0x99, 0xfa, 0xd2, 0xcf, 0xd1,
0x9e, 0x5d, 0x5c, 0x08, 0x40, 0x00, 0xe5, 0xb4, 0x6f, 0xbb, 0x83, 0x99, 0xdf, 0xce, 0xce, 0xce,
0xce, 0xec, 0x0c, 0x09, 0x30, 0x75, 0x96, 0xfa, 0xe9, 0xd2, 0xb1, 0xb9, 0x8d, 0x4a, 0xc3, 0x17,
0xef, 0xad, 0xe1, 0x57, 0x13, 0x41, 0xc2, 0x36, 0x1c, 0x8d, 0x1c, 0x73, 0x3a, 0xa5, 0x4e, 0x55,
0xe7, 0xa6, 0x6d, 0xa9, 0x94, 0x73, 0xd3, 0x9a, 0x32, 0xf4, 0x16, 0x2a, 0x0e, 0x9d, 0x9a, 0x8c,
0x53, 0x87, 0x1a, 0x11, 0x16, 0x56, 0xc9, 0x3e, 0xca, 0x3d, 0x2d, 0x3d, 0x3f, 0x39, 0x0d, 0x01,
0x9d, 0x46, 0x58, 0x48, 0xaa, 0x2c, 0xfe, 0xfb, 0x2e, 0x94, 0x23, 0x24, 0xb4, 0x0f, 0x5b, 0xa6,
0x51, 0xc9, 0x3e, 0xca, 0x3e, 0x2d, 0x93, 0x2d, 0xd3, 0x40, 0x15, 0xd8, 0xb5, 0x2d, 0xaa, 0xce,
0x6c, 0x5e, 0x29, 0x3f, 0xca, 0x3e, 0x2d, 0x10, 0x7f, 0x8a, 0xba, 0xb0, 0xcf, 0xa8, 0x73, 0x65,
0xea, 0x54, 0xe5, 0x9a, 0xc3, 0xa9, 0x51, 0xd9, 0x7a, 0x94, 0x7d, 0x5a, 0x7a, 0x8e, 0x93, 0x34,
0x51, 0x23, 0x9c, 0xed, 0x0c, 0x89, 0xc9, 0xa2, 0xdf, 0x00, 0x5a, 0xb1, 0x8b, 0x33, 0xcd, 0x98,
0x52, 0x5e, 0xb7, 0x2d, 0x8b, 0xea, 0x02, 0x31, 0x27, 0x11, 0x3f, 0x4b, 0x42, 0x1c, 0xab, 0xb5,
0x18, 0x77, 0x3b, 0x43, 0x12, 0x30, 0x90, 0x06, 0x47, 0x01, 0xb5, 0x61, 0x32, 0x3d, 0x00, 0xcf,
0x4b, 0xf0, 0xff, 0xdf, 0x08, 0x1e, 0x16, 0x68, 0x67, 0x48, 0x32, 0x12, 0xea, 0x40, 0xf9, 0xbd,
0x79, 0x69, 0x56, 0x87, 0xbe, 0x25, 0xb6, 0x25, 0xf4, 0xe3, 0x24, 0xe8, 0xf3, 0x30, 0x63, 0x3b,
0x43, 0xa2, 0x92, 0xc2, 0x0e, 0x82, 0x10, 0xa8, 0x5f, 0x65, 0x2a, 0xd7, 0x2a, 0x3b, 0xe9, 0x76,
0x38, 0xbf, 0xc1, 0x2d, 0xec, 0x70, 0x13, 0x03, 0xbd, 0x82, 0x02, 0x63, 0xb3, 0xae, 0x3d, 0x35,
0xad, 0xca, 0xae, 0xc4, 0xbb, 0x9f, 0x78, 0x52, 0x6a, 0x5b, 0xf2, 0xb4, 0x33, 0x24, 0xe0, 0x47,
0x04, 0x14, 0x63, 0xa6, 0x2f, 0xbb, 0x54, 0x63, 0xf4, 0xcc, 0xd1, 0x2c, 0xb1, 0xc7, 0x82, 0xc4,
0x78, 0x92, 0x84, 0xd1, 0x68, 0xd7, 0x87, 0x61, 0xde, 0x76, 0x86, 0xdc, 0x90, 0x47, 0x0d, 0x80,
0x0b, 0x8d, 0xcd, 0x54, 0xdd, 0x31, 0x97, 0xbc, 0x52, 0x4c, 0xf0, 0x1d, 0xef, 0x12, 0x08, 0xcb,
0xd4, 0x02, 0xce, 0x76, 0x96, 0x84, 0xe4, 0x50, 0x15, 0x8a, 0x33, 0xd3, 0xf0, 0x40, 0x20, 0xc1,
0xec, 0x21, 0x90, 0x76, 0xa7, 0x11, 0x60, 0xac, 0xa5, 0x90, 0x0e, 0xc7, 0x06, 0x5d, 0xce, 0xed,
0x6b, 0xff, 0xba, 0x8d, 0xe8, 0x62, 0x39, 0xd7, 0x38, 0xad, 0x94, 0x12, 0x3c, 0xc4, 0xc5, 0x6b,
0x24, 0x0a, 0xb4, 0xb3, 0x24, 0x05, 0x0a, 0x3d, 0x83, 0xdc, 0xdc, 0x9e, 0x56, 0xf6, 0x24, 0xe2,
0x71, 0x02, 0x62, 0xd7, 0x9e, 0xb6, 0xb3, 0x44, 0x30, 0xd5, 0x8a, 0xb0, 0xeb, 0x19, 0xb2, 0x56,
0x80, 0x1d, 0xf7, 0x33, 0xbe, 0x1b, 0xc4, 0x86, 0xe8, 0x5d, 0xc2, 0x65, 0x28, 0x79, 0x1f, 0xce,
0x86, 0x9d, 0x01, 0xfe, 0x18, 0xee, 0xa5, 0xde, 0x10, 0xfc, 0x00, 0xee, 0x6f, 0xf2, 0x70, 0x7c,
0x0c, 0x77, 0x92, 0xdc, 0x34, 0x04, 0x7a, 0xd3, 0xdd, 0xf0, 0xd7, 0x70, 0x10, 0xf3, 0x1d, 0x84,
0x61, 0xcf, 0xa1, 0x4c, 0x8e, 0xc7, 0x8c, 0x3a, 0x32, 0x9e, 0x14, 0x49, 0x84, 0x86, 0xff, 0x92,
0x85, 0xbb, 0x29, 0xfe, 0xe2, 0xc9, 0x77, 0x2c, 0x4e, 0x9d, 0x4b, 0x4d, 0xa7, 0x21, 0xf9, 0x80,
0x86, 0x1e, 0x41, 0xc9, 0xa1, 0xac, 0x3e, 0x37, 0xa9, 0xc5, 0x3b, 0x43, 0x19, 0x7c, 0x8a, 0x24,
0x4c, 0xf2, 0x50, 0xdc, 0x69, 0x4f, 0xd3, 0x65, 0x34, 0x71, 0x51, 0x02, 0x1a, 0xfe, 0x25, 0x1c,
0x25, 0xba, 0x19, 0x7a, 0x00, 0xc0, 0xe4, 0x68, 0xa8, 0xf1, 0x99, 0xa7, 0x40, 0x88, 0x82, 0x5f,
0xc2, 0x9d, 0x24, 0xd7, 0x5a, 0xcb, 0xf5, 0xb5, 0x05, 0x8d, 0xca, 0x09, 0x0a, 0xfe, 0x67, 0x16,
0xee, 0x6f, 0xf2, 0x21, 0xa1, 0x35, 0xf7, 0xc6, 0x21, 0x88, 0x08, 0x0d, 0xbd, 0x86, 0x3c, 0xbf,
0x5e, 0x52, 0xb9, 0xe9, 0xfd, 0xe7, 0x2f, 0x3f, 0xd8, 0x41, 0x4f, 0xfd, 0xc1, 0xe8, 0x7a, 0x49,
0x89, 0xc4, 0xc0, 0x43, 0xd8, 0x0b, 0x53, 0xd1, 0x21, 0x94, 0x5b, 0xe3, 0x6e, 0x77, 0xa2, 0x36,
0x47, 0xa3, 0x4e, 0xff, 0x4c, 0x55, 0x32, 0xa8, 0x04, 0xbb, 0xfd, 0xe6, 0xe8, 0x7c, 0x40, 0xde,
0x28, 0x59, 0x54, 0x80, 0xfc, 0x79, 0xa7, 0xd5, 0x51, 0xb6, 0xd0, 0x2e, 0xe4, 0xc6, 0x6a, 0x4d,
0xc9, 0xa1, 0x32, 0x14, 0x6b, 0xdd, 0x71, 0x73, 0x34, 0x18, 0x8c, 0xda, 0x4a, 0x1e, 0x97, 0xa0,
0x18, 0xf8, 0x34, 0x7e, 0x0f, 0x27, 0xc2, 0x67, 0x08, 0xfd, 0xe3, 0x8a, 0x32, 0xee, 0x2b, 0xa4,
0x72, 0xdb, 0xd1, 0xa6, 0x72, 0xb3, 0xa3, 0x84, 0xcd, 0x86, 0x69, 0xe8, 0x6b, 0x28, 0x30, 0x4f,
0xcc, 0x4b, 0x31, 0xf7, 0x22, 0x1b, 0x3e, 0x37, 0x5b, 0xa6, 0x8f, 0x4b, 0x02, 0x56, 0xfc, 0xd7,
0x1c, 0xec, 0x85, 0x3f, 0x21, 0x04, 0x79, 0x6b, 0xbd, 0x86, 0x1c, 0xa3, 0x13, 0x28, 0x18, 0x26,
0xd3, 0x2e, 0xe6, 0x5e, 0xfa, 0x2a, 0x90, 0x60, 0x2e, 0x4e, 0xd2, 0xa1, 0xd3, 0xd5, 0x5c, 0xe3,
0xb6, 0x73, 0xed, 0x39, 0x4f, 0x88, 0x82, 0xbe, 0x85, 0xbd, 0xf7, 0xb6, 0xf3, 0xce, 0xb4, 0xa6,
0x93, 0x85, 0x6d, 0x50, 0x99, 0x4f, 0xf6, 0x63, 0x41, 0x55, 0x28, 0x70, 0xee, 0x32, 0xf5, 0x6c,
0x83, 0x92, 0xd2, 0xfb, 0xf5, 0x04, 0xbd, 0x84, 0xa2, 0xb6, 0xe2, 0x33, 0x57, 0x7a, 0x5b, 0x4a,
0xdf, 0xdc, 0x59, 0x75, 0xc5, 0x67, 0x52, 0xb4, 0xa0, 0x79, 0x23, 0x91, 0x93, 0xf5, 0x99, 0x66,
0x59, 0x74, 0x2e, 0x13, 0x43, 0x99, 0xf8, 0x53, 0x74, 0x0a, 0x3b, 0xda, 0x72, 0x52, 0x53, 0x55,
0x2f, 0xc2, 0xdf, 0xbd, 0x01, 0x57, 0x53, 0xd5, 0xfa, 0xe5, 0x94, 0x6c, 0x6b, 0xcb, 0x9a, 0xaa,
0xa2, 0x6f, 0xe1, 0x40, 0x97, 0x57, 0x41, 0xc8, 0x4c, 0xe6, 0x26, 0xe3, 0x95, 0x82, 0x7c, 0x4e,
0xa4, 0x0a, 0x96, 0x5d, 0xfe, 0x9a, 0xaa, 0x76, 0x4d, 0xc6, 0xd1, 0xc7, 0x32, 0xfc, 0xd2, 0x09,
0x63, 0xa6, 0x21, 0x63, 0x78, 0x81, 0x14, 0x04, 0x41, 0x65, 0xa6, 0x81, 0x8e, 0x61, 0xc7, 0xa2,
0x3f, 0x2c, 0x6c, 0xcb, 0x7b, 0x3a, 0x78, 0x33, 0xfc, 0x8f, 0x2c, 0x14, 0xe5, 0xc9, 0x70, 0xe1,
0xef, 0xa7, 0x90, 0x97, 0x06, 0xc8, 0x4a, 0x03, 0x9c, 0xdc, 0x3c, 0x5a, 0xc1, 0x25, 0x2d, 0x20,
0xf9, 0xc2, 0xbb, 0xdf, 0x8a, 0xee, 0x1e, 0x41, 0x5e, 0xea, 0xe1, 0x1e, 0x95, 0x1c, 0xa3, 0x3a,
0x1c, 0xe8, 0x2b, 0xc7, 0xa1, 0x56, 0xe0, 0x7a, 0x5e, 0xde, 0xdf, 0xe0, 0x43, 0x71, 0x09, 0xfc,
0x1c, 0x60, 0x6d, 0x02, 0xb1, 0x8c, 0xaa, 0x76, 0x1a, 0xbe, 0x1f, 0x89, 0x31, 0x52, 0x20, 0x37,
0x54, 0xdf, 0x78, 0x41, 0x48, 0x0c, 0xf1, 0x63, 0x28, 0xab, 0xdc, 0x11, 0x47, 0x4d, 0x19, 0x13,
0xae, 0xae, 0x40, 0x6e, 0xc1, 0xa6, 0x9e, 0x94, 0x18, 0xe2, 0x2f, 0x01, 0x45, 0x58, 0xaa, 0x8e,
0xa3, 0x5d, 0x0b, 0x97, 0x5c, 0xb0, 0xa9, 0x1c, 0xcb, 0xb7, 0x5d, 0x91, 0x04, 0x73, 0x7c, 0x0a,
0x7b, 0xcd, 0x2b, 0x6a, 0x71, 0xef, 0x36, 0x09, 0x17, 0x15, 0x87, 0x46, 0x2d, 0x71, 0x73, 0x25,
0x74, 0x8e, 0x84, 0x28, 0x58, 0x03, 0x90, 0xfc, 0x6f, 0xb5, 0xf9, 0x4a, 0x38, 0xfb, 0x2e, 0x67,
0x72, 0x41, 0x57, 0x8b, 0x76, 0x86, 0xf8, 0x04, 0x74, 0x0c, 0xdb, 0xfc, 0xc2, 0xb6, 0x5d, 0x9b,
0x16, 0xda, 0x19, 0xe2, 0x4e, 0x51, 0x05, 0x76, 0xb8, 0x69, 0xf1, 0x97, 0x2f, 0xa4, 0x55, 0x73,
0xed, 0x0c, 0xf1, 0xe6, 0xb5, 0x6d, 0xc8, 0x5d, 0x69, 0x73, 0xdc, 0x85, 0x6d, 0xb9, 0x84, 0x30,
0x0b, 0x5f, 0x6b, 0x21, 0xc7, 0xe8, 0xe7, 0xb0, 0x73, 0x25, 0x96, 0x16, 0x17, 0xf7, 0xa6, 0x5b,
0xad, 0x55, 0x23, 0x1e, 0x1b, 0xfe, 0x1e, 0xee, 0x88, 0xbb, 0xdf, 0x30, 0x9d, 0x81, 0xd3, 0x32,
0xe7, 0xd4, 0xdf, 0xa8, 0x02, 0x39, 0xc3, 0xf4, 0xf3, 0x88, 0x18, 0x0a, 0xe7, 0x5a, 0x3a, 0xf4,
0xd2, 0xfc, 0xc1, 0x33, 0xba, 0x37, 0x13, 0x26, 0xb1, 0xad, 0xf9, 0x75, 0xcb, 0x9e, 0x1b, 0xd4,
0x91, 0x4a, 0x17, 0x48, 0x88, 0x22, 0x02, 0x7e, 0x6c, 0x05, 0xb6, 0xb4, 0x2d, 0x46, 0xdd, 0xeb,
0xce, 0x56, 0xf3, 0x48, 0xc0, 0x5f, 0x53, 0xf0, 0x00, 0x0e, 0x08, 0xd5, 0x8c, 0xb0, 0x56, 0x08,
0xf2, 0xcb, 0x35, 0xb3, 0x1c, 0xa3, 0x3b, 0xb0, 0xcd, 0x44, 0x46, 0x90, 0x6a, 0xe5, 0x88, 0x3b,
0x11, 0x9c, 0x86, 0xc6, 0x35, 0xa9, 0xcf, 0x1e, 0x91, 0x63, 0xfc, 0x25, 0x28, 0x6b, 0x40, 0x4f,
0x89, 0xfb, 0x50, 0x74, 0xa8, 0x66, 0xd4, 0xed, 0x95, 0xc5, 0x3d, 0x4b, 0xae, 0x09, 0xf8, 0x0a,
0x94, 0x73, 0xc7, 0xe4, 0xf4, 0x36, 0x1d, 0x8e, 0x45, 0x18, 0x58, 0x52, 0xcb, 0x8f, 0x69, 0xde,
0x4c, 0x44, 0xdb, 0xc5, 0x8a, 0xf1, 0xbe, 0xcd, 0x9b, 0x3f, 0x88, 0xbb, 0xee, 0x5a, 0x27, 0x42,
0x0b, 0x34, 0xcd, 0x87, 0x34, 0xfd, 0x14, 0x0e, 0xc4, 0x92, 0x1d, 0xeb, 0xd2, 0xde, 0xb0, 0x2c,
0xfe, 0x11, 0x94, 0x35, 0x9b, 0xb7, 0xa1, 0xa4, 0xa0, 0x2b, 0xee, 0xa9, 0xf9, 0x27, 0xea, 0x59,
0x48, 0x8e, 0x05, 0x4d, 0x46, 0x81, 0x9c, 0xbc, 0xd2, 0xc1, 0x4d, 0x5f, 0xd8, 0xc6, 0xc8, 0x5c,
0xb8, 0xb1, 0x35, 0x47, 0xfc, 0xa9, 0x30, 0xb2, 0xc9, 0x1a, 0xa6, 0x23, 0xa3, 0x66, 0x81, 0xb8,
0x13, 0xfc, 0x3b, 0x50, 0x82, 0x3c, 0x1c, 0xba, 0x21, 0x9b, 0xd2, 0x38, 0xfa, 0x0c, 0xf6, 0xb9,
0xb9, 0xa0, 0xf6, 0x8a, 0xab, 0x54, 0xb7, 0x2d, 0x83, 0x79, 0x41, 0x25, 0x46, 0xc5, 0x0f, 0x60,
0x2f, 0xc0, 0x7e, 0x6d, 0x5f, 0xc4, 0xeb, 0x24, 0xfc, 0x24, 0xb4, 0xf6, 0x6b, 0xfb, 0x42, 0x06,
0x47, 0x05, 0x72, 0xa6, 0xe1, 0x16, 0x68, 0x65, 0x22, 0x86, 0xf8, 0x2d, 0x54, 0xda, 0x9d, 0x06,
0x59, 0x59, 0x96, 0x69, 0x4d, 0x5f, 0xdb, 0x17, 0x32, 0xb6, 0x11, 0xe9, 0x63, 0x21, 0xc4, 0x9c,
0xac, 0xbc, 0x10, 0xe4, 0xaf, 0x16, 0x1d, 0xc3, 0xb7, 0x92, 0x18, 0x8b, 0x83, 0x65, 0xf6, 0xca,
0xd1, 0xa9, 0x17, 0xe3, 0xbc, 0x19, 0xfe, 0x11, 0x0e, 0x42, 0x3b, 0x97, 0x70, 0x5f, 0x40, 0xee,
0x0f, 0xf6, 0x85, 0xc4, 0x8b, 0x07, 0xbb, 0xb0, 0xa2, 0x44, 0x70, 0x09, 0x2b, 0x99, 0xac, 0x65,
0x5a, 0x26, 0x9b, 0x05, 0x89, 0x30, 0x44, 0x59, 0xdf, 0x8d, 0xd7, 0xcc, 0xb6, 0xd6, 0xa9, 0xd0,
0xa7, 0xe0, 0x53, 0x28, 0x75, 0x9b, 0x8d, 0x20, 0xd3, 0x3e, 0x84, 0xd2, 0xc5, 0xdc, 0xb4, 0xde,
0x4d, 0xf4, 0xc0, 0x8f, 0xcb, 0x04, 0x24, 0xc9, 0x75, 0xe4, 0x7f, 0xe5, 0x61, 0xdf, 0x7d, 0x7e,
0x06, 0x32, 0x15, 0xd8, 0xa5, 0x96, 0x9b, 0x88, 0xb3, 0x6e, 0xa1, 0xe9, 0x4d, 0x85, 0x19, 0xaf,
0x4c, 0xc3, 0x8f, 0xad, 0x57, 0xa6, 0xa4, 0x2c, 0x83, 0x38, 0x2f, 0x86, 0xd2, 0xb3, 0x35, 0x6b,
0x75, 0xa9, 0xe9, 0x7c, 0xe5, 0x50, 0x47, 0xfa, 0x4b, 0x91, 0x44, 0x68, 0x62, 0x85, 0xa5, 0x63,
0x1b, 0x2b, 0x9d, 0x4b, 0xb7, 0x29, 0x12, 0x7f, 0x2a, 0xcd, 0x4a, 0x1d, 0x53, 0x73, 0xf3, 0xa9,
0x30, 0xab, 0x9c, 0xa1, 0x07, 0x50, 0x5a, 0x31, 0x3a, 0xa9, 0x37, 0xea, 0x93, 0x66, 0xbd, 0x27,
0x73, 0x6a, 0x81, 0x14, 0x57, 0x8c, 0xd6, 0x1b, 0xf5, 0x66, 0xbd, 0x27, 0xb2, 0x9f, 0xf8, 0x4e,
0xfa, 0x8d, 0x8e, 0x2a, 0xeb, 0xa1, 0x02, 0x29, 0xac, 0x18, 0x95, 0x73, 0xf4, 0x14, 0x14, 0xf1,
0xb1, 0xdd, 0x69, 0x4c, 0xde, 0x34, 0x7f, 0x5b, 0x1b, 0x54, 0x49, 0xc3, 0xcb, 0x90, 0xfb, 0x2b,
0x46, 0xdb, 0x9d, 0x86, 0x4f, 0x45, 0x18, 0xca, 0x3e, 0x67, 0x6f, 0x30, 0x56, 0x9b, 0xb2, 0x8e,
0x29, 0x90, 0x92, 0xcb, 0x26, 0x49, 0xbe, 0x2a, 0x82, 0x87, 0x54, 0xcf, 0x65, 0x65, 0xe2, 0xaa,
0x22, 0xfc, 0xa9, 0x7a, 0x8e, 0xee, 0xc2, 0xae, 0xf8, 0x3e, 0xee, 0xa9, 0xb2, 0xc6, 0x28, 0x90,
0x9d, 0x15, 0xa3, 0xe3, 0x9e, 0x8a, 0x3e, 0x01, 0x10, 0x1f, 0xd4, 0x26, 0xe9, 0x54, 0xbb, 0x5e,
0x22, 0x16, 0x72, 0x2e, 0x01, 0xbd, 0x86, 0x7d, 0xc7, 0x32, 0x4c, 0x36, 0x09, 0x9e, 0x58, 0xfb,
0xd2, 0x63, 0xfe, 0x2f, 0xe2, 0x31, 0xd1, 0xb3, 0x6a, 0xf2, 0x19, 0x75, 0x2c, 0xca, 0x49, 0x59,
0x8a, 0x06, 0x47, 0xd8, 0x03, 0x45, 0x37, 0xf4, 0x09, 0xd5, 0x17, 0x6b, 0xb4, 0x83, 0x0f, 0x47,
0xdb, 0xd7, 0x0d, 0xbd, 0xa9, 0x2f, 0x02, 0xb8, 0x2a, 0xec, 0xad, 0x16, 0x21, 0xc5, 0x14, 0x09,
0xf5, 0x60, 0x03, 0xd4, 0xb8, 0xa7, 0x92, 0xd2, 0x6a, 0x11, 0x68, 0x84, 0x87, 0x70, 0x9c, 0xbc,
0x98, 0x7c, 0xb8, 0xd8, 0x8c, 0x4f, 0x34, 0xc3, 0xf0, 0xd3, 0x4a, 0x41, 0x10, 0xaa, 0x86, 0xe1,
0xa0, 0x7b, 0x50, 0x30, 0xe8, 0x95, 0xfb, 0xcd, 0x75, 0xbb, 0x5d, 0x83, 0x5e, 0x89, 0x4f, 0xf8,
0xd7, 0x70, 0x78, 0x63, 0x4d, 0x11, 0x8e, 0x74, 0xc3, 0xb1, 0x17, 0x9e, 0xe7, 0xba, 0x13, 0x71,
0x81, 0x2f, 0xcd, 0x39, 0xf5, 0x10, 0xe4, 0x18, 0x4f, 0xe0, 0xb1, 0xfb, 0x32, 0xa7, 0x86, 0xaf,
0x4a, 0x50, 0xd1, 0x04, 0x1b, 0x7f, 0x05, 0x79, 0xf9, 0x14, 0x73, 0x3b, 0x3b, 0xd1, 0xaa, 0x3f,
0x55, 0x8a, 0x48, 0x19, 0xfc, 0xe7, 0x1c, 0xdc, 0x4b, 0x47, 0x4e, 0x8a, 0xc6, 0xdf, 0x7a, 0x91,
0xd7, 0xad, 0x25, 0xbe, 0xf8, 0xb0, 0xd5, 0x4e, 0x43, 0x0f, 0x32, 0x11, 0x3c, 0x96, 0xc2, 0x38,
0x94, 0xb1, 0x17, 0x7e, 0x70, 0x58, 0x53, 0xc4, 0x83, 0xc6, 0xa2, 0x7c, 0xa1, 0xb1, 0x77, 0x2f,
0xbc, 0x7b, 0x19, 0xcc, 0xc3, 0xb7, 0x7e, 0x3b, 0x7a, 0xeb, 0x07, 0x80, 0x8c, 0x99, 0xbe, 0x14,
0xc5, 0xae, 0x28, 0x79, 0x3d, 0x1f, 0x70, 0x1b, 0x21, 0x0f, 0x23, 0x4a, 0x8a, 0xea, 0x31, 0xca,
0x46, 0x12, 0x44, 0xd1, 0x13, 0x28, 0xfb, 0xae, 0xd4, 0x11, 0x15, 0xa8, 0x77, 0x9d, 0xa3, 0x44,
0x5c, 0x87, 0xbc, 0x7c, 0x63, 0x03, 0xec, 0xf4, 0xaa, 0xfd, 0x71, 0xb5, 0xab, 0x64, 0xd0, 0x01,
0x94, 0xc4, 0x1a, 0x93, 0x7a, 0xb7, 0xd3, 0xec, 0x8f, 0x94, 0x6c, 0x40, 0x50, 0x9b, 0xe4, 0x6d,
0x93, 0x28, 0x5b, 0xa2, 0x00, 0x1a, 0xf7, 0x7b, 0xd5, 0x7e, 0xf5, 0xac, 0xd9, 0x50, 0x72, 0xf8,
0xdf, 0x39, 0x40, 0x37, 0xb5, 0x5a, 0xbf, 0xd6, 0x86, 0xb6, 0x13, 0x44, 0xc5, 0x35, 0x05, 0x3d,
0x85, 0x03, 0x77, 0xb6, 0x2e, 0x7c, 0x5d, 0xdf, 0x89, 0x93, 0xc5, 0x33, 0x61, 0x2e, 0xea, 0x65,
0x91, 0x6e, 0x3d, 0x8b, 0xaf, 0x09, 0xe8, 0x19, 0x28, 0x96, 0xcd, 0x45, 0xe1, 0x60, 0x3b, 0x26,
0xd7, 0xb8, 0x79, 0xe5, 0x26, 0xd0, 0x02, 0xb9, 0x41, 0x47, 0xa7, 0x80, 0x0c, 0xbb, 0x6f, 0xf3,
0x9a, 0x69, 0x19, 0xeb, 0x65, 0xdd, 0xb3, 0x48, 0xf8, 0x22, 0xf2, 0xa5, 0xae, 0xcd, 0xe7, 0x17,
0x9a, 0xfe, 0xce, 0x6b, 0xba, 0xb8, 0x21, 0x33, 0x46, 0x45, 0x2f, 0x60, 0xc7, 0xd1, 0xac, 0x29,
0x65, 0x95, 0x5d, 0xe9, 0xc5, 0xf7, 0x53, 0x8e, 0x8c, 0x08, 0x26, 0xe2, 0xf1, 0xa2, 0x16, 0xec,
0xda, 0x4b, 0xb7, 0xad, 0xe9, 0xd6, 0x21, 0x3f, 0xbb, 0xe5, 0xa4, 0x4f, 0x07, 0x2e, 0x7b, 0xd3,
0xe2, 0xce, 0x35, 0xf1, 0x85, 0x51, 0x1d, 0x4a, 0x4c, 0x6c, 0x50, 0x6f, 0xdb, 0x8c, 0xb3, 0x4a,
0x51, 0x62, 0x3d, 0x4e, 0xc3, 0x0a, 0x38, 0x49, 0x58, 0xea, 0xe4, 0x15, 0xec, 0x85, 0xd1, 0x45,
0xd6, 0x79, 0x47, 0xaf, 0xbd, 0x73, 0x13, 0x43, 0x71, 0xef, 0xe5, 0xbb, 0xd5, 0x3b, 0x26, 0x77,
0xf2, 0x6a, 0xeb, 0x9b, 0x2c, 0xb6, 0xe1, 0x20, 0xb6, 0x47, 0x99, 0x43, 0xc5, 0xa0, 0x6b, 0xbf,
0x0f, 0x3a, 0x22, 0x21, 0x4a, 0xf0, 0x7d, 0xbc, 0x5c, 0x52, 0x3f, 0xec, 0x84, 0x28, 0xc1, 0x99,
0xcb, 0xf7, 0x50, 0xf8, 0xcc, 0x05, 0x01, 0x7f, 0x03, 0x77, 0x92, 0x76, 0x24, 0xab, 0x0e, 0x4d,
0x0f, 0xaa, 0x0e, 0x4d, 0x97, 0xef, 0x8c, 0xa5, 0x87, 0xbf, 0x65, 0x2e, 0xf1, 0x2e, 0x6c, 0x37,
0x17, 0x4b, 0x7e, 0xfd, 0xac, 0x01, 0x07, 0xb1, 0x72, 0x55, 0x14, 0xfe, 0xe3, 0xfe, 0x9b, 0xfe,
0xe0, 0xbc, 0xaf, 0x64, 0xd0, 0x0e, 0x6c, 0x55, 0x87, 0x4a, 0x56, 0x94, 0xfd, 0xea, 0xa8, 0xaa,
0x6c, 0xa1, 0x8f, 0xe0, 0x40, 0x1d, 0x55, 0x27, 0xad, 0x6a, 0xa7, 0x3b, 0x78, 0xdb, 0x24, 0x93,
0xea, 0x50, 0xc9, 0x3d, 0x6b, 0x40, 0x39, 0x52, 0xb5, 0xa1, 0x23, 0x38, 0x14, 0x5c, 0xfd, 0xc1,
0x68, 0x52, 0x1f, 0xf4, 0xfb, 0xcd, 0xfa, 0xa8, 0xd9, 0x50, 0x32, 0xa8, 0x08, 0xdb, 0xd5, 0xe1,
0x64, 0x2c, 0x00, 0x0f, 0xa1, 0x2c, 0x38, 0xd6, 0x5f, 0xb7, 0x9e, 0x7d, 0xe6, 0xd6, 0xee, 0x7e,
0xf1, 0x8b, 0xf6, 0xa0, 0x70, 0x3e, 0xac, 0x3e, 0x9f, 0x0c, 0xd5, 0x37, 0x4a, 0x06, 0x15, 0x20,
0x3f, 0x18, 0x36, 0xfb, 0x4a, 0xf6, 0xf9, 0xdf, 0x3e, 0x82, 0x9d, 0xe1, 0x8b, 0xf3, 0xfe, 0xf0,
0x2b, 0xd4, 0x83, 0xca, 0x19, 0xe5, 0x7e, 0x74, 0x8d, 0x04, 0x69, 0x84, 0xa2, 0x51, 0x4d, 0x6c,
0xf7, 0xe4, 0xe3, 0x0d, 0x89, 0x04, 0x67, 0x50, 0x1b, 0x3e, 0x72, 0xb1, 0xfe, 0x67, 0xa4, 0x16,
0x1c, 0x9e, 0x51, 0x1e, 0x7b, 0xee, 0xfc, 0x17, 0x38, 0x03, 0x38, 0x54, 0x6f, 0xe0, 0x6c, 0x92,
0xb9, 0x0d, 0xf0, 0x3b, 0xd8, 0x3f, 0xa3, 0x3c, 0xfc, 0x70, 0x4b, 0xd2, 0xaa, 0x12, 0xa1, 0x85,
0xb8, 0x5d, 0x04, 0x35, 0x8a, 0x90, 0xca, 0x7d, 0x92, 0x80, 0x8d, 0x33, 0xa8, 0x01, 0x7b, 0x3d,
0xf1, 0x24, 0x1c, 0xf7, 0x54, 0x19, 0xbb, 0x6e, 0x49, 0xef, 0x29, 0x28, 0x13, 0x78, 0xe8, 0x1e,
0x56, 0x7a, 0xea, 0xfb, 0xc0, 0x34, 0x9a, 0xb2, 0x80, 0x0d, 0x9f, 0x9f, 0x51, 0x5e, 0x9d, 0xcf,
0x6f, 0xcf, 0xde, 0x49, 0x36, 0x3c, 0x8d, 0x86, 0x9e, 0xdb, 0x30, 0x70, 0x06, 0xcd, 0xe1, 0x49,
0xc8, 0x9b, 0xd3, 0x57, 0x8b, 0xf6, 0x4b, 0x22, 0xed, 0x84, 0x93, 0x0f, 0xdc, 0x32, 0xce, 0xa0,
0x9e, 0xac, 0x6e, 0xc8, 0xca, 0xf2, 0xa2, 0xf7, 0x27, 0xc9, 0xf5, 0x82, 0x57, 0x54, 0x9d, 0xdc,
0x4f, 0xfb, 0x2c, 0x0a, 0x02, 0x09, 0x77, 0x10, 0x86, 0x13, 0xf5, 0xd2, 0x2d, 0x88, 0xe9, 0x05,
0x0a, 0xce, 0x20, 0x02, 0x47, 0xed, 0x4e, 0xe3, 0x8c, 0xf2, 0x75, 0xd5, 0xe2, 0xd6, 0x38, 0xe9,
0x52, 0xb7, 0xaa, 0xd8, 0x04, 0xd4, 0xee, 0x34, 0xea, 0x9a, 0xa5, 0xd3, 0xf9, 0x5a, 0xcb, 0x0d,
0x80, 0xc9, 0x7e, 0xd1, 0x87, 0xbb, 0xae, 0x6a, 0x5e, 0x4d, 0x17, 0xf0, 0x27, 0xfb, 0xc1, 0x27,
0xa9, 0xf8, 0xa2, 0x60, 0xc4, 0x19, 0x54, 0x83, 0xe3, 0x40, 0xad, 0xea, 0x7c, 0x7e, 0x0b, 0x5c,
0xb2, 0x4e, 0xbf, 0xf7, 0xcd, 0x15, 0xab, 0x33, 0x37, 0xed, 0xee, 0xd3, 0xf8, 0xa7, 0xc4, 0x1a,
0x55, 0x2a, 0x58, 0x6a, 0xa9, 0x41, 0x13, 0x22, 0x76, 0xac, 0xf1, 0xe6, 0x44, 0x8a, 0x82, 0x6f,
0x00, 0x5a, 0xaa, 0xdf, 0xfa, 0x40, 0xd1, 0x93, 0x8a, 0xb5, 0x58, 0x62, 0x16, 0x8b, 0xf7, 0x4b,
0xe4, 0x09, 0x94, 0x5b, 0xea, 0x19, 0xe5, 0x7e, 0xe7, 0x21, 0x86, 0x17, 0xeb, 0x5b, 0xc4, 0xf0,
0xe2, 0xed, 0x0a, 0x9c, 0x41, 0xdf, 0xc3, 0x51, 0x4b, 0xad, 0x3b, 0x54, 0xe3, 0x34, 0xd2, 0x27,
0x42, 0xb1, 0x5f, 0xf3, 0x12, 0xba, 0x54, 0x27, 0x78, 0x13, 0x4b, 0xb0, 0xc2, 0x77, 0x50, 0x92,
0x9d, 0xaf, 0xae, 0x7c, 0xd4, 0xc5, 0x4e, 0x25, 0xdc, 0xde, 0x8b, 0x9b, 0x4f, 0x7c, 0xc2, 0x99,
0x2f, 0xb3, 0xe8, 0x0c, 0x4a, 0x4d, 0x7d, 0x16, 0xf4, 0x62, 0x36, 0xc5, 0x80, 0x0d, 0xdf, 0x70,
0x06, 0x75, 0x00, 0xb9, 0x21, 0x26, 0xd2, 0x28, 0x4f, 0x6f, 0x8d, 0x9e, 0x1c, 0x27, 0xb7, 0x67,
0x71, 0x06, 0xfd, 0x0a, 0xf6, 0xce, 0x28, 0x5f, 0xb7, 0x75, 0x93, 0xfc, 0x35, 0x5d, 0xba, 0x05,
0xc7, 0xae, 0x39, 0x02, 0x62, 0x7d, 0xe6, 0x3e, 0x09, 0x7f, 0x1a, 0x0e, 0x81, 0x43, 0x95, 0xdb,
0x0e, 0x3d, 0x37, 0x2f, 0xd7, 0xfb, 0xf9, 0x3c, 0xc6, 0x9e, 0xf6, 0x6b, 0x44, 0x8a, 0xbb, 0x0e,
0xe1, 0x48, 0xc4, 0x1e, 0x01, 0x6b, 0x44, 0x70, 0x37, 0xd9, 0x3d, 0xdd, 0x86, 0x12, 0xb1, 0xe2,
0xfd, 0x3e, 0xf3, 0xd3, 0x40, 0xd3, 0xf7, 0xdd, 0x83, 0x7b, 0x12, 0xcb, 0x4f, 0x18, 0x1f, 0x0c,
0x99, 0xbc, 0xe5, 0x81, 0x7b, 0x1c, 0x09, 0xea, 0x25, 0x1d, 0xc7, 0xc3, 0x74, 0x7c, 0xb7, 0x6d,
0x9d, 0xb9, 0xd8, 0x91, 0xff, 0x76, 0xf8, 0xc5, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x27, 0xe0,
0xf5, 0x82, 0xfb, 0x20, 0x00, 0x00,
}

View File

@ -57,6 +57,7 @@ message TriggerActionSettings {
message TriggerAction {
uint32 id = 1; // assigned by service, used as identifier to allow deletion of trigger actions
bool oneShot = 13;
oneof Trigger {
TriggerServiceStarted serviceStarted = 2;
TriggerUSBGadgetConnected usbGadgetConnected = 3;

View File

@ -177,6 +177,28 @@ func ConstructEventTrigger(triggerType common_web.EvtTriggerType) *pb.Event {
}
}
func ConstructEventTriggerDHCPLease(iface, mac, ip string) *pb.Event {
return &pb.Event{
Type: common_web.EVT_TRIGGER,
Values: []*pb.EventValue{
{Val: &pb.EventValue_Tint64{Tint64: int64(common_web.EVT_TRIGGER_TYPE_DHCP_LEASE_GRANTED)}},
{Val: &pb.EventValue_Tstring{Tstring: iface}},
{Val: &pb.EventValue_Tstring{Tstring: mac}},
{Val: &pb.EventValue_Tstring{Tstring: ip}},
},
}
}
func ConstructEventTriggerSSHLogin(username string) *pb.Event {
return &pb.Event{
Type: common_web.EVT_TRIGGER,
Values: []*pb.EventValue{
{Val: &pb.EventValue_Tint64{Tint64: int64(common_web.EVT_TRIGGER_TYPE_SSH_LOGIN)}},
{Val: &pb.EventValue_Tstring{Tstring: username}},
},
}
}
func ConstructEventHID(hidEvent hid.Event) *pb.Event {
//subType, vmID, jobID int, error bool, resString, errString, message string
vmID := -1

View File

@ -2,6 +2,7 @@ package service
import (
"fmt"
"github.com/mame82/P4wnP1_go/common"
"github.com/mame82/P4wnP1_go/common_web"
pb "github.com/mame82/P4wnP1_go/proto"
"sync"
@ -13,6 +14,7 @@ type TriggerActionManager struct {
registeredTriggerActionMutex *sync.Mutex
registeredTriggerAction []*pb.TriggerAction
nextID uint32
}
@ -28,7 +30,7 @@ func (tam *TriggerActionManager) processing_loop() {
if evt == nil {
break Outer // abort loop on "nil" event, as this indicates the EventQueue channel has been closed
}
fmt.Println("TriggerActionManager received unfiltered event", evt)
//fmt.Println("TriggerActionManager received unfiltered event", evt)
tam.dispatchTriggerEvent(evt)
// check if relevant and dispatch to triggers
case <- tam.evtRcv.Ctx.Done():
@ -39,93 +41,225 @@ func (tam *TriggerActionManager) processing_loop() {
fmt.Println("TAM processing loop finished")
}
func (tam *TriggerActionManager) dispatchTriggerEvent(evt *pb.Event) {
if evt.Type != common_web.EVT_TRIGGER { return }
triggerTypeRcv := common_web.EvtTriggerType(evt.Values[0].GetTint64())
tam.registeredTriggerActionMutex.Lock()
defer tam.registeredTriggerActionMutex.Unlock()
for _,ta := range tam.registeredTriggerAction {
switch triggerType := ta.Trigger.(type) {
case *pb.TriggerAction_ServiceStarted:
if triggerTypeRcv == common_web.EVT_TRIGGER_TYPE_SERVICE_STARTED {
// trigger action of ta
tam.fireAction(ta.Trigger, ta.Action)
}
case *pb.TriggerAction_UsbGadgetConnected:
if triggerTypeRcv == common_web.EVT_TRIGGER_TYPE_USB_GADGET_CONNECTED {
// trigger action of ta
tam.fireAction(triggerType.UsbGadgetConnected, ta.Action)
}
case *pb.TriggerAction_UsbGadgetDisconnected:
if triggerTypeRcv == common_web.EVT_TRIGGER_TYPE_USB_GADGET_DISCONNECTED {
// trigger action of ta
tam.fireAction(triggerType.UsbGadgetDisconnected, ta.Action)
}
case *pb.TriggerAction_DhcpLeaseGranted:
if triggerTypeRcv == common_web.EVT_TRIGGER_TYPE_USB_GADGET_DISCONNECTED {
// trigger action of ta
tam.fireAction(triggerType.DhcpLeaseGranted, ta.Action)
}
}
}
}
func (tam *TriggerActionManager) fireAction(trigger interface{}, action interface{}) (err error ) {
switch actionType := action.(type) {
func (tam *TriggerActionManager) fireActionNoArgs(ta *pb.TriggerAction) (err error ) {
switch actionType := ta.Action.(type) {
case *pb.TriggerAction_BashScript:
bs := actionType.BashScript
go common.RunBashScriptEnv(bs.ScriptPath)
fmt.Printf("Fire bash script '%s'\n", bs.ScriptPath)
case *pb.TriggerAction_HidScript:
// ToDo: Implement
hs := actionType.HidScript
fmt.Printf("Starting HID script '%s'\n", hs.ScriptName)
fmt.Printf("Placeholder: Starting HID script '%s'\n", hs.ScriptName)
case *pb.TriggerAction_DeploySettingsTemplate:
// ToDo: Implement
st := actionType.DeploySettingsTemplate
strType := pb.ActionDeploySettingsTemplate_TemplateType_name[int32(st.Type)]
fmt.Printf("Deploy settings template of type [%s] with name '%s'\n", strType, st.TemplateName)
fmt.Printf("Placeholder: Deploy settings template of type [%s] with name '%s'\n", strType, st.TemplateName)
case *pb.TriggerAction_Log:
fmt.Printf("Logging trigger '%+v'\n", trigger)
fmt.Printf("Logging trigger '%+v'\n", ta.Trigger)
}
return nil
}
func (tam *TriggerActionManager) fireActionServiceStarted(ta *pb.TriggerAction) error {
return tam.fireActionNoArgs(ta)
}
func (tam *TriggerActionManager) fireActionSSHLogin(loginUser string, ta *pb.TriggerAction) error {
switch actionType := ta.Action.(type) {
case *pb.TriggerAction_BashScript:
bs := actionType.BashScript
envUser := fmt.Sprintf("SSH_LOGIN_USER=%s", loginUser)
go common.RunBashScriptEnv(bs.ScriptPath, envUser)
//go common.RunBashScript(bs.ScriptPath)
fmt.Printf("Started bash script '%s' (%s)\n", bs.ScriptPath, envUser)
case *pb.TriggerAction_HidScript:
// ToDo: Implement
hs := actionType.HidScript
fmt.Printf("Placeholder: Starting HID script '%s'\n", hs.ScriptName)
case *pb.TriggerAction_DeploySettingsTemplate:
// ToDo: Implement
st := actionType.DeploySettingsTemplate
strType := pb.ActionDeploySettingsTemplate_TemplateType_name[int32(st.Type)]
fmt.Printf("Placeholder: Deploy settings template of type [%s] with name '%s'\n", strType, st.TemplateName)
case *pb.TriggerAction_Log:
fmt.Printf("Logging action: SSHLogin user: '%s'\n", loginUser)
}
return nil
}
func (tam *TriggerActionManager) fireActionWifiConnectedAsSta(ta *pb.TriggerAction) error {
return tam.fireActionNoArgs(ta)
}
func (tam *TriggerActionManager) fireActionWifiApStarted(ta *pb.TriggerAction) error {
return tam.fireActionNoArgs(ta)
}
func (tam *TriggerActionManager) fireActionDhcpLeaseGranted(iface string, mac string, ip string, ta *pb.TriggerAction) error {
switch actionType := ta.Action.(type) {
case *pb.TriggerAction_BashScript:
bs := actionType.BashScript
envIface := fmt.Sprintf("DHCP_LEASE_IFACE=%s", iface)
envMac := fmt.Sprintf("DHCP_LEASE_MAC=%s", mac)
envIp := fmt.Sprintf("DHCP_LEASE_IP=%s", ip)
go common.RunBashScriptEnv(bs.ScriptPath, envIface, envMac, envIp)
//go common.RunBashScript(bs.ScriptPath)
fmt.Printf("Started bash script '%s' (%s, %s, %s)\n", bs.ScriptPath, envIface, envMac, envIp)
case *pb.TriggerAction_HidScript:
// ToDo: Implement
hs := actionType.HidScript
fmt.Printf("Placeholder: Starting HID script '%s'\n", hs.ScriptName)
case *pb.TriggerAction_DeploySettingsTemplate:
// ToDo: Implement
st := actionType.DeploySettingsTemplate
strType := pb.ActionDeploySettingsTemplate_TemplateType_name[int32(st.Type)]
fmt.Printf("Placeholder: Deploy settings template of type [%s] with name '%s'\n", strType, st.TemplateName)
case *pb.TriggerAction_Log:
fmt.Printf("Logging action: DHCPLeaseGranted interface: '%s' mac:'%s' IP: '%s'\n", iface, mac, ip)
}
return nil
}
func (tam *TriggerActionManager) fireActionUsbGadgetConnected(ta *pb.TriggerAction) error {
return tam.fireActionNoArgs(ta)
}
func (tam *TriggerActionManager) fireActionUsbGadgetDisconnected(ta *pb.TriggerAction) error {
return tam.fireActionNoArgs(ta)
}
// checks if the triggerType of the given event (if trigger event at all), matches the TriggerType of the TriggerAction
func taTriggerTypeMatchesEvtTriggerType(ta *pb.TriggerAction, evt *pb.Event) bool {
if evt.Type != common_web.EVT_TRIGGER { return false }
triggerTypeEvt := common_web.EvtTriggerType(evt.Values[0].GetTint64())
switch triggerTypeEvt {
case common_web.EVT_TRIGGER_TYPE_SERVICE_STARTED:
if _,match := ta.Trigger.(*pb.TriggerAction_ServiceStarted); match {
return true
} else {
return false
}
case common_web.EVT_TRIGGER_TYPE_DHCP_LEASE_GRANTED:
if _,match := ta.Trigger.(*pb.TriggerAction_DhcpLeaseGranted); match {
return true
} else {
return false
}
case common_web.EVT_TRIGGER_TYPE_WIFI_AP_STARTED:
if _,match := ta.Trigger.(*pb.TriggerAction_WifiAPStarted); match {
return true
} else {
return false
}
case common_web.EVT_TRIGGER_TYPE_WIFI_CONNECTED_AS_STA:
if _,match := ta.Trigger.(*pb.TriggerAction_WifiConnectedAsSta); match {
return true
} else {
return false
}
case common_web.EVT_TRIGGER_TYPE_USB_GADGET_CONNECTED:
if _,match := ta.Trigger.(*pb.TriggerAction_UsbGadgetConnected); match {
return true
} else {
return false
}
case common_web.EVT_TRIGGER_TYPE_USB_GADGET_DISCONNECTED:
if _,match := ta.Trigger.(*pb.TriggerAction_UsbGadgetDisconnected); match {
return true
} else {
return false
}
case common_web.EVT_TRIGGER_TYPE_SSH_LOGIN:
if _,match := ta.Trigger.(*pb.TriggerAction_SshLogin); match {
return true
} else {
return false
}
default:
return false
}
}
func (tam *TriggerActionManager) dispatchTriggerEvent(evt *pb.Event) {
//fmt.Printf("Remaining triggerActions: %+v\n", tam.registeredTriggerAction)
//fmt.Printf("Received event: %+v\n", evt)
tam.registeredTriggerActionMutex.Lock()
defer tam.registeredTriggerActionMutex.Unlock()
markedForRemoval := []int{}
for idx,ta := range tam.registeredTriggerAction {
// ToDo: handle errors of fireAction* methods
if taTriggerTypeMatchesEvtTriggerType(ta, evt) {
switch ttEvt := common_web.EvtTriggerType(evt.Values[0].GetTint64()); ttEvt {
case common_web.EVT_TRIGGER_TYPE_SERVICE_STARTED:
tam.fireActionServiceStarted(ta)
if ta.OneShot {
markedForRemoval = append(markedForRemoval,idx)
}
case common_web.EVT_TRIGGER_TYPE_SSH_LOGIN:
loginUser := evt.Values[1].GetTstring()
tam.fireActionSSHLogin(loginUser, ta)
if ta.OneShot {
markedForRemoval = append(markedForRemoval,idx)
}
case common_web.EVT_TRIGGER_TYPE_WIFI_CONNECTED_AS_STA:
tam.fireActionWifiConnectedAsSta(ta)
if ta.OneShot {
markedForRemoval = append(markedForRemoval,idx)
}
case common_web.EVT_TRIGGER_TYPE_WIFI_AP_STARTED:
tam.fireActionWifiApStarted(ta)
if ta.OneShot {
markedForRemoval = append(markedForRemoval,idx)
}
case common_web.EVT_TRIGGER_TYPE_DHCP_LEASE_GRANTED:
// extract iface, mac and ip from event
iface := evt.Values[1].GetTstring()
mac := evt.Values[2].GetTstring()
ip := evt.Values[3].GetTstring()
tam.fireActionDhcpLeaseGranted(iface, mac, ip, ta)
if ta.OneShot {
markedForRemoval = append(markedForRemoval,idx)
}
case common_web.EVT_TRIGGER_TYPE_USB_GADGET_CONNECTED:
tam.fireActionUsbGadgetConnected(ta)
if ta.OneShot {
markedForRemoval = append(markedForRemoval,idx)
}
case common_web.EVT_TRIGGER_TYPE_USB_GADGET_DISCONNECTED:
tam.fireActionUsbGadgetDisconnected(ta)
if ta.OneShot {
markedForRemoval = append(markedForRemoval,idx)
}
default:
fmt.Println("unhandled trigger: ", ttEvt)
}
}
}
//fmt.Println("Indexes of TriggerActions to remove, because thy are OneShots and have fired", markedForRemoval)
for _,delIdx := range markedForRemoval {
// doesn't preserve order
tam.registeredTriggerAction[delIdx] = tam.registeredTriggerAction[len(tam.registeredTriggerAction)-1]
tam.registeredTriggerAction = tam.registeredTriggerAction[:len(tam.registeredTriggerAction)-1]
}
return
}
func (tam *TriggerActionManager) AddTriggerAction(ta *pb.TriggerAction) (err error) {
tam.registeredTriggerActionMutex.Lock()
defer tam.registeredTriggerActionMutex.Unlock()
ta.Id = tam.nextID
tam.nextID++
tam.registeredTriggerAction = append(tam.registeredTriggerAction, ta)
return nil
}
func (tam *TriggerActionManager) Start() {
// create test trigger
serviceUpRunScript := &pb.TriggerAction{
Trigger: &pb.TriggerAction_ServiceStarted{
ServiceStarted: &pb.TriggerServiceStarted{},
},
Action: &pb.TriggerAction_BashScript{
BashScript: &pb.ActionStartBashScript{
ScriptPath: "/usr/local/P4wnP1/scripts/servicestart.sh",
},
},
}
serviceUpLog := &pb.TriggerAction{
Trigger: &pb.TriggerAction_ServiceStarted{
ServiceStarted: &pb.TriggerServiceStarted{},
},
Action: &pb.TriggerAction_Log{
Log: &pb.ActionLog{},
},
}
tam.AddTriggerAction(serviceUpRunScript)
tam.AddTriggerAction(serviceUpLog)
fmt.Printf("TEST TRIGGER ACTION: Service up %+v\n", serviceUpRunScript)
go tam.processing_loop()
}
@ -139,6 +273,7 @@ func NewTriggerActionManager(rootService *Service) (tam *TriggerActionManager) {
registeredTriggerActionMutex: &sync.Mutex{},
rootSvc: rootService,
}
return tam
}