From 44c7ebe35aa4d823dcf836324f8dfd8455396778 Mon Sep 17 00:00:00 2001 From: Kashishm Date: Wed, 3 Aug 2016 11:31:54 +0530 Subject: [PATCH] Generating code from updated proto files | #165 --- execution/api.go | 32 +++++------ execution/api_test.go | 14 ++--- gauge-proto | 2 +- gauge_messages/api_v2.pb.go | 106 ++++++++++++++++++------------------ 4 files changed, 77 insertions(+), 77 deletions(-) diff --git a/execution/api.go b/execution/api.go index dfa5de24d..37b729e09 100644 --- a/execution/api.go +++ b/execution/api.go @@ -82,26 +82,26 @@ func listenExecutionEvents(stream gauge_messages.Execution_ExecuteServer) { }) case event.ScenarioEnd: stream.Send(&gauge_messages.ExecutionResponse{ - Type: gauge_messages.ExecutionResponse_ScenarioEnd.Enum(), - ID: proto.String(fmt.Sprintf("%s:%d", e.ExecutionInfo.CurrentSpec.GetFileName(), e.Item.(*gauge.Scenario).Heading.LineNo)), - Status: getStatus(e.Result.(*result.ScenarioResult)), - ExecutionTime: proto.Int64(e.Result.ExecTime()), - Errors: getErrors(e.Result.(*result.ScenarioResult).ProtoScenario.GetScenarioItems()), - PreHookFailure: getHookFailure(e.Result.GetPreHook()), - PostHookFailure: getHookFailure(e.Result.GetPostHook()), + Type: gauge_messages.ExecutionResponse_ScenarioEnd.Enum(), + ID: proto.String(fmt.Sprintf("%s:%d", e.ExecutionInfo.CurrentSpec.GetFileName(), e.Item.(*gauge.Scenario).Heading.LineNo)), + Status: getStatus(e.Result.(*result.ScenarioResult)), + ExecutionTime: proto.Int64(e.Result.ExecTime()), + Errors: getErrors(e.Result.(*result.ScenarioResult).ProtoScenario.GetScenarioItems()), + BeforeHookFailure: getHookFailure(e.Result.GetPreHook()), + AfterHookFailure: getHookFailure(e.Result.GetPostHook()), }) case event.SpecEnd: stream.Send(&gauge_messages.ExecutionResponse{ - Type: gauge_messages.ExecutionResponse_SpecEnd.Enum(), - ID: proto.String(fmt.Sprintf(e.ExecutionInfo.CurrentSpec.GetFileName())), - PreHookFailure: getHookFailure(e.Result.GetPreHook()), - PostHookFailure: getHookFailure(e.Result.GetPostHook()), + Type: gauge_messages.ExecutionResponse_SpecEnd.Enum(), + ID: proto.String(fmt.Sprintf(e.ExecutionInfo.CurrentSpec.GetFileName())), + BeforeHookFailure: getHookFailure(e.Result.GetPreHook()), + AfterHookFailure: getHookFailure(e.Result.GetPostHook()), }) case event.SuiteEnd: stream.Send(&gauge_messages.ExecutionResponse{ - Type: gauge_messages.ExecutionResponse_SuiteEnd.Enum(), - PreHookFailure: getHookFailure(e.Result.GetPreHook()), - PostHookFailure: getHookFailure(e.Result.GetPostHook()), + Type: gauge_messages.ExecutionResponse_SuiteEnd.Enum(), + BeforeHookFailure: getHookFailure(e.Result.GetPreHook()), + AfterHookFailure: getHookFailure(e.Result.GetPostHook()), }) return } @@ -120,7 +120,7 @@ func getErrorResponse(errs ...error) *gauge_messages.ExecutionResponse { func getHookFailure(hookFailure **gauge_messages.ProtoHookFailure) *gauge_messages.ExecutionResponse_ExecutionError { if hookFailure != nil && *hookFailure != nil { return &gauge_messages.ExecutionResponse_ExecutionError{ - ScreenShot: (**hookFailure).ScreenShot, + Screenshot: (**hookFailure).ScreenShot, ErrorMessage: (**hookFailure).ErrorMessage, StackTrace: (**hookFailure).StackTrace, } @@ -141,7 +141,7 @@ func getErrors(items []*gauge_messages.ProtoItem) []*gauge_messages.ExecutionRes errors = append(errors, &gauge_messages.ExecutionResponse_ExecutionError{ StackTrace: res.StackTrace, ErrorMessage: res.ErrorMessage, - ScreenShot: res.ScreenShot, + Screenshot: res.ScreenShot, }) } case gauge_messages.ProtoItem_Concept: diff --git a/execution/api_test.go b/execution/api_test.go index 399f433f2..46075c867 100644 --- a/execution/api_test.go +++ b/execution/api_test.go @@ -237,10 +237,10 @@ func (s *MySuite) TestListenSpecEndExecutionEvent(c *C) { }, 0, ei)) expected := &gauge_messages.ExecutionResponse{ - Type: gauge_messages.ExecutionResponse_SpecEnd.Enum(), - ID: proto.String("example.spec"), - PreHookFailure: &gauge_messages.ExecutionResponse_ExecutionError{ErrorMessage: proto.String("err msg")}, - PostHookFailure: &gauge_messages.ExecutionResponse_ExecutionError{ErrorMessage: proto.String("err msg")}, + Type: gauge_messages.ExecutionResponse_SpecEnd.Enum(), + ID: proto.String("example.spec"), + BeforeHookFailure: &gauge_messages.ExecutionResponse_ExecutionError{ErrorMessage: proto.String("err msg")}, + AfterHookFailure: &gauge_messages.ExecutionResponse_ExecutionError{ErrorMessage: proto.String("err msg")}, } c.Assert(<-actual, DeepEquals, expected) } @@ -254,9 +254,9 @@ func (s *MySuite) TestListenSuiteEndExecutionEvent(c *C) { event.Notify(event.NewExecutionEvent(event.SuiteEnd, nil, &result.SuiteResult{PreSuite: hookFailure, PostSuite: hookFailure}, 0, gauge_messages.ExecutionInfo{})) expected := &gauge_messages.ExecutionResponse{ - Type: gauge_messages.ExecutionResponse_SuiteEnd.Enum(), - PreHookFailure: &gauge_messages.ExecutionResponse_ExecutionError{ErrorMessage: proto.String("err msg")}, - PostHookFailure: &gauge_messages.ExecutionResponse_ExecutionError{ErrorMessage: proto.String("err msg")}, + Type: gauge_messages.ExecutionResponse_SuiteEnd.Enum(), + BeforeHookFailure: &gauge_messages.ExecutionResponse_ExecutionError{ErrorMessage: proto.String("err msg")}, + AfterHookFailure: &gauge_messages.ExecutionResponse_ExecutionError{ErrorMessage: proto.String("err msg")}, } c.Assert(<-actual, DeepEquals, expected) } diff --git a/gauge-proto b/gauge-proto index 7013a9f8b..aa0d1d6ca 160000 --- a/gauge-proto +++ b/gauge-proto @@ -1 +1 @@ -Subproject commit 7013a9f8bca3bc72fce095c2157a10978acd88f2 +Subproject commit aa0d1d6ca9d7081ec3f086621f1e1f41b150945c diff --git a/gauge_messages/api_v2.pb.go b/gauge_messages/api_v2.pb.go index d032bb7d1..1d85d16a5 100644 --- a/gauge_messages/api_v2.pb.go +++ b/gauge_messages/api_v2.pb.go @@ -180,10 +180,10 @@ type ExecutionResponse struct { ExecutionTime *int64 `protobuf:"varint,5,opt,name=executionTime" json:"executionTime,omitempty"` // Contains the console output messages Stdout *string `protobuf:"bytes,6,opt,name=stdout" json:"stdout,omitempty"` - // Holds the pre hook failure - PreHookFailure *ExecutionResponse_ExecutionError `protobuf:"bytes,7,opt,name=preHookFailure" json:"preHookFailure,omitempty"` - // Holds the post hook failure - PostHookFailure *ExecutionResponse_ExecutionError `protobuf:"bytes,8,opt,name=postHookFailure" json:"postHookFailure,omitempty"` + // Holds the before hook failure + BeforeHookFailure *ExecutionResponse_ExecutionError `protobuf:"bytes,7,opt,name=beforeHookFailure" json:"beforeHookFailure,omitempty"` + // Holds the after hook failure + AfterHookFailure *ExecutionResponse_ExecutionError `protobuf:"bytes,8,opt,name=afterHookFailure" json:"afterHookFailure,omitempty"` XXX_unrecognized []byte `json:"-"` } @@ -234,28 +234,28 @@ func (m *ExecutionResponse) GetStdout() string { return "" } -func (m *ExecutionResponse) GetPreHookFailure() *ExecutionResponse_ExecutionError { +func (m *ExecutionResponse) GetBeforeHookFailure() *ExecutionResponse_ExecutionError { if m != nil { - return m.PreHookFailure + return m.BeforeHookFailure } return nil } -func (m *ExecutionResponse) GetPostHookFailure() *ExecutionResponse_ExecutionError { +func (m *ExecutionResponse) GetAfterHookFailure() *ExecutionResponse_ExecutionError { if m != nil { - return m.PostHookFailure + return m.AfterHookFailure } return nil } // ExecutionError represents the failure during execution along with details of failure type ExecutionResponse_ExecutionError struct { - // Stacktrace from the failure - StackTrace *string `protobuf:"bytes,1,opt,name=stackTrace" json:"stackTrace,omitempty"` // Error message from the failure - ErrorMessage *string `protobuf:"bytes,2,opt,name=errorMessage" json:"errorMessage,omitempty"` + ErrorMessage *string `protobuf:"bytes,1,opt,name=errorMessage" json:"errorMessage,omitempty"` + // Stacktrace from the failure + StackTrace *string `protobuf:"bytes,2,opt,name=stackTrace" json:"stackTrace,omitempty"` // Byte array holding the screenshot taken at the time of failure. - ScreenShot []byte `protobuf:"bytes,3,opt,name=screenShot" json:"screenShot,omitempty"` + Screenshot []byte `protobuf:"bytes,3,opt,name=screenshot" json:"screenshot,omitempty"` XXX_unrecognized []byte `json:"-"` } @@ -266,23 +266,23 @@ func (*ExecutionResponse_ExecutionError) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{1, 0} } -func (m *ExecutionResponse_ExecutionError) GetStackTrace() string { - if m != nil && m.StackTrace != nil { - return *m.StackTrace +func (m *ExecutionResponse_ExecutionError) GetErrorMessage() string { + if m != nil && m.ErrorMessage != nil { + return *m.ErrorMessage } return "" } -func (m *ExecutionResponse_ExecutionError) GetErrorMessage() string { - if m != nil && m.ErrorMessage != nil { - return *m.ErrorMessage +func (m *ExecutionResponse_ExecutionError) GetStackTrace() string { + if m != nil && m.StackTrace != nil { + return *m.StackTrace } return "" } -func (m *ExecutionResponse_ExecutionError) GetScreenShot() []byte { +func (m *ExecutionResponse_ExecutionError) GetScreenshot() []byte { if m != nil { - return m.ScreenShot + return m.Screenshot } return nil } @@ -401,37 +401,37 @@ func init() { proto.RegisterFile("api_v2.proto", fileDescriptor1) } var fileDescriptor1 = []byte{ // 523 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x9c, 0x93, 0xcf, 0x6e, 0xd3, 0x4e, - 0x10, 0xc7, 0x6b, 0x27, 0x71, 0x92, 0x49, 0xe2, 0xa6, 0xa3, 0xdf, 0x0f, 0xac, 0x80, 0x50, 0xb1, - 0x40, 0xca, 0x05, 0x2b, 0xf2, 0x85, 0x03, 0x17, 0x2a, 0x25, 0x55, 0xa3, 0x82, 0x14, 0xd9, 0x39, - 0x20, 0x2e, 0xd5, 0xca, 0x5d, 0x82, 0xd5, 0xd4, 0x6b, 0x76, 0xd7, 0x15, 0x3c, 0x09, 0xcf, 0xc3, - 0x63, 0xf0, 0x36, 0xec, 0x1f, 0x07, 0x25, 0xa1, 0x22, 0xa2, 0xb7, 0x9d, 0xef, 0xce, 0xf7, 0x33, - 0xe3, 0xd9, 0x31, 0xf4, 0x49, 0x99, 0x5f, 0xdd, 0xc5, 0x51, 0xc9, 0x99, 0x64, 0xe8, 0xaf, 0x48, - 0xb5, 0xa2, 0xd1, 0x2d, 0x15, 0x82, 0xac, 0xa8, 0x08, 0xbf, 0x3b, 0x30, 0x9c, 0x7d, 0xa5, 0x59, - 0x25, 0x73, 0x56, 0x24, 0xf4, 0x4b, 0x45, 0x85, 0xc4, 0xff, 0xa0, 0x25, 0x4a, 0x9a, 0x89, 0xc0, - 0x39, 0x6d, 0x8c, 0xbb, 0x89, 0x0d, 0xf0, 0x0d, 0xb4, 0x3e, 0xad, 0xc9, 0x4a, 0x04, 0xae, 0x52, - 0x7b, 0xf1, 0xcb, 0x68, 0x17, 0x15, 0xed, 0x63, 0x22, 0x9d, 0x9d, 0x58, 0xcf, 0x68, 0x02, 0x4d, - 0x7d, 0x40, 0x84, 0x66, 0x41, 0x6e, 0xa9, 0x22, 0x3b, 0x8a, 0x6c, 0xce, 0xba, 0xdc, 0x1d, 0x59, - 0x57, 0x54, 0x81, 0xb5, 0x68, 0x83, 0xf0, 0xa7, 0x07, 0x27, 0x5b, 0x48, 0x51, 0xb2, 0x42, 0x50, - 0xbc, 0x84, 0xa6, 0xfc, 0x56, 0x6a, 0xbf, 0x3b, 0xf6, 0xe3, 0xd7, 0x7f, 0xe9, 0xc1, 0x1a, 0xfe, - 0x54, 0x96, 0xca, 0x9e, 0x18, 0x08, 0xfa, 0xe0, 0xce, 0xa7, 0x75, 0x55, 0x37, 0x9f, 0xe2, 0x5b, - 0xf0, 0x84, 0x24, 0xb2, 0x12, 0x41, 0x43, 0x69, 0x7e, 0x3c, 0x3e, 0x8c, 0x4f, 0x4d, 0x7e, 0x52, - 0xfb, 0xf0, 0x02, 0x3c, 0xca, 0x39, 0xe3, 0x22, 0x68, 0x9a, 0x21, 0x4d, 0xfe, 0xa1, 0xc1, 0x99, - 0x36, 0x26, 0xb5, 0x1f, 0x5f, 0xc0, 0x80, 0x6e, 0x6e, 0x96, 0xb9, 0x9a, 0x58, 0x4b, 0xb5, 0xd4, - 0x48, 0x76, 0x45, 0x7c, 0xa4, 0x3b, 0xbe, 0x66, 0x95, 0x0c, 0x3c, 0xf3, 0x15, 0x75, 0x84, 0x1f, - 0xc0, 0x2f, 0x39, 0xbd, 0x60, 0xec, 0xe6, 0x9c, 0xe4, 0xeb, 0x8a, 0xd3, 0xa0, 0xad, 0xee, 0x1f, - 0xd2, 0xcf, 0x1e, 0x07, 0x3f, 0xc2, 0x71, 0xc9, 0x84, 0xdc, 0x46, 0x77, 0x1e, 0x88, 0xde, 0x07, - 0x8d, 0x24, 0xf8, 0xbb, 0x29, 0xf8, 0x0c, 0x40, 0x4d, 0x36, 0xbb, 0x59, 0x72, 0x92, 0x6d, 0x96, - 0x66, 0x4b, 0xc1, 0x10, 0xfa, 0x66, 0x5e, 0xef, 0x6d, 0xd1, 0xfa, 0x2d, 0x77, 0x34, 0xc3, 0xc8, - 0x38, 0xa5, 0x45, 0xfa, 0x99, 0x49, 0xf3, 0xb2, 0xfd, 0x64, 0x4b, 0x09, 0x7f, 0x38, 0xf0, 0xff, - 0xbd, 0x5b, 0x82, 0x4f, 0x21, 0x48, 0xab, 0x5c, 0xd2, 0x29, 0x91, 0x24, 0x95, 0x8c, 0xd3, 0x79, - 0x91, 0x4b, 0x95, 0x51, 0xad, 0xe5, 0xf0, 0x48, 0x6d, 0x0f, 0x98, 0x5b, 0xb5, 0x02, 0x5c, 0x0e, - 0x1d, 0x7c, 0x02, 0x8f, 0x53, 0xf5, 0xa3, 0xdc, 0x97, 0xec, 0xe2, 0x00, 0xba, 0xfa, 0xd2, 0xe6, - 0x36, 0xf0, 0x04, 0x06, 0x69, 0x46, 0x0b, 0xc2, 0x73, 0x66, 0xa5, 0x26, 0x1e, 0x43, 0x6f, 0x23, - 0xcd, 0x8a, 0xeb, 0x61, 0x0b, 0x7b, 0xd0, 0xd6, 0x16, 0x1d, 0x78, 0xd8, 0x87, 0x8e, 0x29, 0xa6, - 0xa3, 0xb6, 0xce, 0xb5, 0x23, 0xb4, 0xf8, 0x4e, 0xf8, 0x0a, 0x3c, 0xbb, 0x89, 0x08, 0xe0, 0x2d, - 0xce, 0xd2, 0x74, 0x36, 0x55, 0x1d, 0xaa, 0xf3, 0xf9, 0xd9, 0xfc, 0x9d, 0x3a, 0x3b, 0x86, 0x76, - 0x39, 0x5f, 0x2c, 0x54, 0xe0, 0xc6, 0x57, 0xd0, 0xfd, 0xfd, 0xc5, 0x98, 0x40, 0xdb, 0x2e, 0x15, - 0xc5, 0xd3, 0x43, 0xff, 0xf4, 0xe8, 0xf9, 0xc1, 0x57, 0x0e, 0x8f, 0x26, 0xce, 0xaf, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x7a, 0x1f, 0x6e, 0x35, 0x75, 0x04, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x9c, 0x53, 0xdb, 0x8e, 0x12, 0x41, + 0x10, 0xdd, 0x19, 0x60, 0x58, 0x8a, 0x8b, 0x50, 0xf1, 0x32, 0x41, 0x63, 0xd6, 0x89, 0x26, 0xbc, + 0x48, 0x08, 0x2f, 0x3e, 0xf8, 0xe2, 0x26, 0xb0, 0x59, 0xb2, 0x9a, 0x90, 0x19, 0x1e, 0x8d, 0x9b, + 0x76, 0xb6, 0xc0, 0xc9, 0xb2, 0xd3, 0xd8, 0xdd, 0xb3, 0xd1, 0x2f, 0xf1, 0x7b, 0xfc, 0x14, 0xff, + 0xc4, 0xbe, 0x80, 0x01, 0xd9, 0x48, 0xdc, 0xb7, 0xaa, 0x53, 0xe7, 0x9c, 0xae, 0xae, 0xae, 0x86, + 0x06, 0x5b, 0x65, 0x97, 0xb7, 0xc3, 0xfe, 0x4a, 0x70, 0xc5, 0xb1, 0xb5, 0x60, 0xc5, 0x82, 0xfa, + 0x37, 0x24, 0x25, 0x5b, 0x90, 0x8c, 0x7e, 0x78, 0xd0, 0x1e, 0x7f, 0xa3, 0xb4, 0x50, 0x19, 0xcf, + 0x63, 0xfa, 0x5a, 0x90, 0x54, 0xf8, 0x10, 0x2a, 0x72, 0x45, 0xa9, 0x0c, 0xbd, 0x93, 0x52, 0xaf, + 0x16, 0xbb, 0x04, 0xdf, 0x42, 0x65, 0xbe, 0x64, 0x0b, 0x19, 0xfa, 0x1a, 0xad, 0x0f, 0x5f, 0xf5, + 0x77, 0xad, 0xfa, 0x7f, 0xdb, 0xf4, 0x0d, 0x3b, 0x76, 0x9a, 0xee, 0x00, 0xca, 0x26, 0x40, 0x84, + 0x72, 0xce, 0x6e, 0x48, 0x3b, 0x7b, 0xda, 0xd9, 0xc6, 0xe6, 0xb8, 0x5b, 0xb6, 0x2c, 0x48, 0x1b, + 0x1b, 0xd0, 0x25, 0xd1, 0xaf, 0x00, 0x3a, 0x5b, 0x96, 0x72, 0xc5, 0x73, 0x49, 0x78, 0x01, 0x65, + 0xf5, 0x7d, 0x65, 0xf4, 0x7e, 0xaf, 0x35, 0x7c, 0xf3, 0x8f, 0x1e, 0x9c, 0x60, 0x1f, 0x99, 0x69, + 0x79, 0x6c, 0x4d, 0xb0, 0x05, 0xfe, 0x64, 0xb4, 0x3e, 0xd5, 0xcf, 0x46, 0xf8, 0x0e, 0x02, 0xa9, + 0x98, 0x2a, 0x64, 0x58, 0xd2, 0x58, 0x6b, 0xd8, 0x3b, 0x6c, 0x9f, 0x58, 0x7e, 0xbc, 0xd6, 0xe1, + 0x39, 0x04, 0x24, 0x04, 0x17, 0x32, 0x2c, 0xdb, 0x21, 0x0d, 0xfe, 0xa3, 0xc1, 0xb1, 0x11, 0xc6, + 0x6b, 0x3d, 0xbe, 0x84, 0x26, 0x6d, 0x2a, 0xb3, 0x4c, 0x4f, 0xac, 0xa2, 0x5b, 0x2a, 0xc5, 0xbb, + 0x20, 0x3e, 0x36, 0x1d, 0x5f, 0xf1, 0x42, 0x85, 0x81, 0xbd, 0xc5, 0x3a, 0xc3, 0x4f, 0xd0, 0xf9, + 0x4c, 0x73, 0x2e, 0xe8, 0x9c, 0xf3, 0xeb, 0x33, 0x96, 0x2d, 0x0b, 0x41, 0x61, 0x55, 0x53, 0xee, + 0xd3, 0xd2, 0xbe, 0x15, 0x7e, 0x84, 0x36, 0x9b, 0x2b, 0x12, 0xdb, 0xf6, 0xc7, 0xf7, 0xb4, 0xdf, + 0x73, 0xea, 0x2a, 0x68, 0xed, 0x72, 0x30, 0x82, 0x86, 0x9d, 0xcb, 0x07, 0xe7, 0xba, 0x5e, 0x9f, + 0x1d, 0x0c, 0x9f, 0x03, 0xe8, 0x57, 0x48, 0xaf, 0x67, 0x82, 0xa5, 0x9b, 0x5d, 0xda, 0x42, 0x6c, + 0x3d, 0x15, 0x44, 0xb9, 0xfc, 0xc2, 0x95, 0x7d, 0xe1, 0x46, 0xbc, 0x85, 0x44, 0x3f, 0x3d, 0x78, + 0x74, 0xe7, 0xb6, 0xe0, 0x33, 0x08, 0x93, 0x22, 0x53, 0x34, 0x62, 0x8a, 0x25, 0x4a, 0x8f, 0x62, + 0x92, 0x67, 0x4a, 0x33, 0x8a, 0xa5, 0x6a, 0x1f, 0xe9, 0x2d, 0x02, 0x5b, 0xd5, 0xab, 0x20, 0x54, + 0xdb, 0xc3, 0xa7, 0xf0, 0x24, 0xd1, 0x1f, 0xe6, 0x2e, 0xb2, 0x8f, 0x4d, 0xa8, 0x99, 0xa2, 0xe3, + 0x96, 0xb0, 0x03, 0xcd, 0x24, 0xa5, 0x9c, 0x89, 0x8c, 0x3b, 0xa8, 0x8c, 0x0f, 0xa0, 0xbe, 0x81, + 0xc6, 0xf9, 0x55, 0xbb, 0x82, 0x75, 0xa8, 0x1a, 0x89, 0x49, 0x02, 0x6c, 0xc0, 0xb1, 0x3d, 0xcc, + 0x64, 0x55, 0xc3, 0x75, 0x33, 0x74, 0xf6, 0xc7, 0xd1, 0x6b, 0x08, 0xdc, 0x46, 0x22, 0x40, 0x30, + 0x3d, 0x4d, 0x92, 0xf1, 0x48, 0x77, 0xa8, 0xe3, 0xb3, 0xd3, 0xc9, 0x7b, 0x1d, 0x7b, 0xd6, 0xed, + 0x62, 0x32, 0x9d, 0xea, 0xc4, 0x1f, 0x5e, 0x42, 0xed, 0xcf, 0x8d, 0x31, 0x86, 0xaa, 0x5b, 0x2e, + 0xc2, 0x93, 0x43, 0x7f, 0xbb, 0xfb, 0xe2, 0xe0, 0x33, 0x47, 0x47, 0x03, 0xef, 0x77, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x3a, 0xbe, 0x2a, 0xb9, 0x7d, 0x04, 0x00, 0x00, }