test_platform: add the compiled analytics proto for test result

BUG=chromium:1081426
TEST=./generate.sh

Change-Id: I65e5d80461fcfde82a6303024fbaa6736a9b9cdc
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/infra/proto/+/2214197
Reviewed-by: Alex Zamorzaev <zamorzaev@chromium.org>
Commit-Queue: Xinan Lin <linxinan@chromium.org>
Tested-by: Xinan Lin <linxinan@chromium.org>
diff --git a/go/test_platform/analytics/result.pb.go b/go/test_platform/analytics/result.pb.go
new file mode 100644
index 0000000..7559fcf
--- /dev/null
+++ b/go/test_platform/analytics/result.pb.go
@@ -0,0 +1,625 @@
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// source: test_platform/analytics/result.proto
+
+package analytics
+
+import (
+	fmt "fmt"
+	proto "github.com/golang/protobuf/proto"
+	timestamp "github.com/golang/protobuf/ptypes/timestamp"
+	math "math"
+)
+
+// Reference imports to suppress errors if they are not otherwise used.
+var _ = proto.Marshal
+var _ = fmt.Errorf
+var _ = math.Inf
+
+// This is a compile-time assertion to ensure that this generated file
+// is compatible with the proto package it is being compiled against.
+// A compilation error at this line likely means your copy of the
+// proto package needs to be updated.
+const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
+
+// TestPlanRun represents the test request defined by users and its running
+// status.
+type TestPlanRun struct {
+	// A unique name to identify this test plan run, format
+	// "testPlanRuns/{testPlanRun}", where {} is a UUID,
+	// e.g. "testPlanRuns/8df26977-469d-4a85-a0e8-b1f42ca4a888"
+	// Required field.
+	Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
+	// Suite name. If the test plan is running an autotest suite,
+	// this field is the autotest suite name, e.g. wifi_interop.
+	Suite string `protobuf:"bytes,2,opt,name=suite,proto3" json:"suite,omitempty"`
+	// Human friendly url to access this run.
+	ExecutionUrl string `protobuf:"bytes,3,opt,name=execution_url,json=executionUrl,proto3" json:"execution_url,omitempty"`
+	// The dut_pool in which the test plan ran, e.g. "DUT_POOL_QUOTA" or
+	// "wificell".
+	// It is case sensitive: "WIFICELL" and "wificell" represent different
+	// pools.
+	// Note that legacy pools "suites", "bvt" and "pcq" have been integrated
+	// into "DUT_POOL_QUOTA" and legacy pool "cts" has been renamed to
+	// "DUT_POOL_CTS".
+	DutPool string `protobuf:"bytes,4,opt,name=dut_pool,json=dutPool,proto3" json:"dut_pool,omitempty"`
+	// The build target, a.k.a board name, e.g. "hatch", "octopus".
+	BuildTarget string `protobuf:"bytes,5,opt,name=build_target,json=buildTarget,proto3" json:"build_target,omitempty"`
+	// CrOS build version, e.g. "R84/13091.0.0".
+	ChromeosBuild string  `protobuf:"bytes,6,opt,name=chromeos_build,json=chromeosBuild,proto3" json:"chromeos_build,omitempty"`
+	Status        *Status `protobuf:"bytes,7,opt,name=status,proto3" json:"status,omitempty"`
+	// Event timestamp of test plan run, e.g. start time, end time.
+	Timeline             *Timeline `protobuf:"bytes,8,opt,name=timeline,proto3" json:"timeline,omitempty"`
+	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
+	XXX_unrecognized     []byte    `json:"-"`
+	XXX_sizecache        int32     `json:"-"`
+}
+
+func (m *TestPlanRun) Reset()         { *m = TestPlanRun{} }
+func (m *TestPlanRun) String() string { return proto.CompactTextString(m) }
+func (*TestPlanRun) ProtoMessage()    {}
+func (*TestPlanRun) Descriptor() ([]byte, []int) {
+	return fileDescriptor_ea3c1349f87b947c, []int{0}
+}
+
+func (m *TestPlanRun) XXX_Unmarshal(b []byte) error {
+	return xxx_messageInfo_TestPlanRun.Unmarshal(m, b)
+}
+func (m *TestPlanRun) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+	return xxx_messageInfo_TestPlanRun.Marshal(b, m, deterministic)
+}
+func (m *TestPlanRun) XXX_Merge(src proto.Message) {
+	xxx_messageInfo_TestPlanRun.Merge(m, src)
+}
+func (m *TestPlanRun) XXX_Size() int {
+	return xxx_messageInfo_TestPlanRun.Size(m)
+}
+func (m *TestPlanRun) XXX_DiscardUnknown() {
+	xxx_messageInfo_TestPlanRun.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_TestPlanRun proto.InternalMessageInfo
+
+func (m *TestPlanRun) GetUid() string {
+	if m != nil {
+		return m.Uid
+	}
+	return ""
+}
+
+func (m *TestPlanRun) GetSuite() string {
+	if m != nil {
+		return m.Suite
+	}
+	return ""
+}
+
+func (m *TestPlanRun) GetExecutionUrl() string {
+	if m != nil {
+		return m.ExecutionUrl
+	}
+	return ""
+}
+
+func (m *TestPlanRun) GetDutPool() string {
+	if m != nil {
+		return m.DutPool
+	}
+	return ""
+}
+
+func (m *TestPlanRun) GetBuildTarget() string {
+	if m != nil {
+		return m.BuildTarget
+	}
+	return ""
+}
+
+func (m *TestPlanRun) GetChromeosBuild() string {
+	if m != nil {
+		return m.ChromeosBuild
+	}
+	return ""
+}
+
+func (m *TestPlanRun) GetStatus() *Status {
+	if m != nil {
+		return m.Status
+	}
+	return nil
+}
+
+func (m *TestPlanRun) GetTimeline() *Timeline {
+	if m != nil {
+		return m.Timeline
+	}
+	return nil
+}
+
+// TestRun contains Skylab task level information.
+type TestRun struct {
+	// A unique name for this test run, format "testRuns/{testRun}",
+	// where {} is a UUID.
+	// Required field.
+	Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
+	// The name of the Skylab task corresponding to the test run, e.g.
+	// "tast.critical-chrome".
+	//
+	// For tasks containing a single test case, will generally be the same as the
+	// name of that test case, e.g. "provision_AutoUpdate.double".
+	// Required field.
+	DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+	// Human friendly url to access this run.
+	ExecutionUrl string `protobuf:"bytes,3,opt,name=execution_url,json=executionUrl,proto3" json:"execution_url,omitempty"`
+	// The TestPlanRun.uid of the parent test plan run.
+	ParentUid string `protobuf:"bytes,4,opt,name=parent_uid,json=parentUid,proto3" json:"parent_uid,omitempty"`
+	// Model name, e.g. "helios", "mimrock".
+	// Note that a single TestPlanRun may be spread across multiple models, if
+	// the test plan request did not specify a model to run.
+	Model string `protobuf:"bytes,5,opt,name=model,proto3" json:"model,omitempty"`
+	// Event timestamp of test run, e.g. start time, end time.
+	Timeline *Timeline `protobuf:"bytes,6,opt,name=timeline,proto3" json:"timeline,omitempty"`
+	Status   *Status   `protobuf:"bytes,7,opt,name=status,proto3" json:"status,omitempty"`
+	Verdict  *Verdict  `protobuf:"bytes,8,opt,name=verdict,proto3" json:"verdict,omitempty"`
+	// The URL for the entire logs of this run.
+	FullLogUrl           string          `protobuf:"bytes,9,opt,name=full_log_url,json=fullLogUrl,proto3" json:"full_log_url,omitempty"`
+	Prejob               *TestRun_Prejob `protobuf:"bytes,10,opt,name=prejob,proto3" json:"prejob,omitempty"`
+	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
+	XXX_unrecognized     []byte          `json:"-"`
+	XXX_sizecache        int32           `json:"-"`
+}
+
+func (m *TestRun) Reset()         { *m = TestRun{} }
+func (m *TestRun) String() string { return proto.CompactTextString(m) }
+func (*TestRun) ProtoMessage()    {}
+func (*TestRun) Descriptor() ([]byte, []int) {
+	return fileDescriptor_ea3c1349f87b947c, []int{1}
+}
+
+func (m *TestRun) XXX_Unmarshal(b []byte) error {
+	return xxx_messageInfo_TestRun.Unmarshal(m, b)
+}
+func (m *TestRun) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+	return xxx_messageInfo_TestRun.Marshal(b, m, deterministic)
+}
+func (m *TestRun) XXX_Merge(src proto.Message) {
+	xxx_messageInfo_TestRun.Merge(m, src)
+}
+func (m *TestRun) XXX_Size() int {
+	return xxx_messageInfo_TestRun.Size(m)
+}
+func (m *TestRun) XXX_DiscardUnknown() {
+	xxx_messageInfo_TestRun.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_TestRun proto.InternalMessageInfo
+
+func (m *TestRun) GetUid() string {
+	if m != nil {
+		return m.Uid
+	}
+	return ""
+}
+
+func (m *TestRun) GetDisplayName() string {
+	if m != nil {
+		return m.DisplayName
+	}
+	return ""
+}
+
+func (m *TestRun) GetExecutionUrl() string {
+	if m != nil {
+		return m.ExecutionUrl
+	}
+	return ""
+}
+
+func (m *TestRun) GetParentUid() string {
+	if m != nil {
+		return m.ParentUid
+	}
+	return ""
+}
+
+func (m *TestRun) GetModel() string {
+	if m != nil {
+		return m.Model
+	}
+	return ""
+}
+
+func (m *TestRun) GetTimeline() *Timeline {
+	if m != nil {
+		return m.Timeline
+	}
+	return nil
+}
+
+func (m *TestRun) GetStatus() *Status {
+	if m != nil {
+		return m.Status
+	}
+	return nil
+}
+
+func (m *TestRun) GetVerdict() *Verdict {
+	if m != nil {
+		return m.Verdict
+	}
+	return nil
+}
+
+func (m *TestRun) GetFullLogUrl() string {
+	if m != nil {
+		return m.FullLogUrl
+	}
+	return ""
+}
+
+func (m *TestRun) GetPrejob() *TestRun_Prejob {
+	if m != nil {
+		return m.Prejob
+	}
+	return nil
+}
+
+type TestRun_Prejob struct {
+	Verdict              *Verdict `protobuf:"bytes,1,opt,name=verdict,proto3" json:"verdict,omitempty"`
+	XXX_NoUnkeyedLiteral struct{} `json:"-"`
+	XXX_unrecognized     []byte   `json:"-"`
+	XXX_sizecache        int32    `json:"-"`
+}
+
+func (m *TestRun_Prejob) Reset()         { *m = TestRun_Prejob{} }
+func (m *TestRun_Prejob) String() string { return proto.CompactTextString(m) }
+func (*TestRun_Prejob) ProtoMessage()    {}
+func (*TestRun_Prejob) Descriptor() ([]byte, []int) {
+	return fileDescriptor_ea3c1349f87b947c, []int{1, 0}
+}
+
+func (m *TestRun_Prejob) XXX_Unmarshal(b []byte) error {
+	return xxx_messageInfo_TestRun_Prejob.Unmarshal(m, b)
+}
+func (m *TestRun_Prejob) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+	return xxx_messageInfo_TestRun_Prejob.Marshal(b, m, deterministic)
+}
+func (m *TestRun_Prejob) XXX_Merge(src proto.Message) {
+	xxx_messageInfo_TestRun_Prejob.Merge(m, src)
+}
+func (m *TestRun_Prejob) XXX_Size() int {
+	return xxx_messageInfo_TestRun_Prejob.Size(m)
+}
+func (m *TestRun_Prejob) XXX_DiscardUnknown() {
+	xxx_messageInfo_TestRun_Prejob.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_TestRun_Prejob proto.InternalMessageInfo
+
+func (m *TestRun_Prejob) GetVerdict() *Verdict {
+	if m != nil {
+		return m.Verdict
+	}
+	return nil
+}
+
+// TestCaseResult describes the result of an individual test case.
+type TestCaseResult struct {
+	// A unique name for this test case run,
+	// format "testCaseResults/{testCaseResult}" where {} is a UUID.
+	// Required field.
+	Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
+	// Test case name as it appears in status.log,
+	// e.g. "provision_AutoUpdate.double".
+	DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+	// The TestRun.uid of the parent test run.
+	ParentUid string   `protobuf:"bytes,3,opt,name=parent_uid,json=parentUid,proto3" json:"parent_uid,omitempty"`
+	Verdict   *Verdict `protobuf:"bytes,4,opt,name=verdict,proto3" json:"verdict,omitempty"`
+	// A one line human readable description of what happened during test
+	// case execution (e.g. error/warning message). Not intended to be machine
+	// parseable. There's no guarantee that a given root cause will always
+	// resolve to the same summary.
+	HumanReadableSummary string   `protobuf:"bytes,5,opt,name=human_readable_summary,json=humanReadableSummary,proto3" json:"human_readable_summary,omitempty"`
+	XXX_NoUnkeyedLiteral struct{} `json:"-"`
+	XXX_unrecognized     []byte   `json:"-"`
+	XXX_sizecache        int32    `json:"-"`
+}
+
+func (m *TestCaseResult) Reset()         { *m = TestCaseResult{} }
+func (m *TestCaseResult) String() string { return proto.CompactTextString(m) }
+func (*TestCaseResult) ProtoMessage()    {}
+func (*TestCaseResult) Descriptor() ([]byte, []int) {
+	return fileDescriptor_ea3c1349f87b947c, []int{2}
+}
+
+func (m *TestCaseResult) XXX_Unmarshal(b []byte) error {
+	return xxx_messageInfo_TestCaseResult.Unmarshal(m, b)
+}
+func (m *TestCaseResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+	return xxx_messageInfo_TestCaseResult.Marshal(b, m, deterministic)
+}
+func (m *TestCaseResult) XXX_Merge(src proto.Message) {
+	xxx_messageInfo_TestCaseResult.Merge(m, src)
+}
+func (m *TestCaseResult) XXX_Size() int {
+	return xxx_messageInfo_TestCaseResult.Size(m)
+}
+func (m *TestCaseResult) XXX_DiscardUnknown() {
+	xxx_messageInfo_TestCaseResult.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_TestCaseResult proto.InternalMessageInfo
+
+func (m *TestCaseResult) GetUid() string {
+	if m != nil {
+		return m.Uid
+	}
+	return ""
+}
+
+func (m *TestCaseResult) GetDisplayName() string {
+	if m != nil {
+		return m.DisplayName
+	}
+	return ""
+}
+
+func (m *TestCaseResult) GetParentUid() string {
+	if m != nil {
+		return m.ParentUid
+	}
+	return ""
+}
+
+func (m *TestCaseResult) GetVerdict() *Verdict {
+	if m != nil {
+		return m.Verdict
+	}
+	return nil
+}
+
+func (m *TestCaseResult) GetHumanReadableSummary() string {
+	if m != nil {
+		return m.HumanReadableSummary
+	}
+	return ""
+}
+
+// The timeline of a task.
+type Timeline struct {
+	// Time the task was requested.
+	CreateTime *timestamp.Timestamp `protobuf:"bytes,1,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
+	// Time the task began to execute in a bot.
+	StartTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
+	// Time the task completed, unset if the task was
+	// stopped unexpectedly before its completion.
+	EndTime *timestamp.Timestamp `protobuf:"bytes,3,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
+	// Time the task was stopped unexpectedly, unset if
+	// task has run to its end.
+	AbandonTime          *timestamp.Timestamp `protobuf:"bytes,4,opt,name=abandon_time,json=abandonTime,proto3" json:"abandon_time,omitempty"`
+	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
+	XXX_unrecognized     []byte               `json:"-"`
+	XXX_sizecache        int32                `json:"-"`
+}
+
+func (m *Timeline) Reset()         { *m = Timeline{} }
+func (m *Timeline) String() string { return proto.CompactTextString(m) }
+func (*Timeline) ProtoMessage()    {}
+func (*Timeline) Descriptor() ([]byte, []int) {
+	return fileDescriptor_ea3c1349f87b947c, []int{3}
+}
+
+func (m *Timeline) XXX_Unmarshal(b []byte) error {
+	return xxx_messageInfo_Timeline.Unmarshal(m, b)
+}
+func (m *Timeline) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+	return xxx_messageInfo_Timeline.Marshal(b, m, deterministic)
+}
+func (m *Timeline) XXX_Merge(src proto.Message) {
+	xxx_messageInfo_Timeline.Merge(m, src)
+}
+func (m *Timeline) XXX_Size() int {
+	return xxx_messageInfo_Timeline.Size(m)
+}
+func (m *Timeline) XXX_DiscardUnknown() {
+	xxx_messageInfo_Timeline.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Timeline proto.InternalMessageInfo
+
+func (m *Timeline) GetCreateTime() *timestamp.Timestamp {
+	if m != nil {
+		return m.CreateTime
+	}
+	return nil
+}
+
+func (m *Timeline) GetStartTime() *timestamp.Timestamp {
+	if m != nil {
+		return m.StartTime
+	}
+	return nil
+}
+
+func (m *Timeline) GetEndTime() *timestamp.Timestamp {
+	if m != nil {
+		return m.EndTime
+	}
+	return nil
+}
+
+func (m *Timeline) GetAbandonTime() *timestamp.Timestamp {
+	if m != nil {
+		return m.AbandonTime
+	}
+	return nil
+}
+
+// The latest known status of a task, may change as the run progresses.
+type Status struct {
+	// All the currently possible values (corresponding to
+	// testplatform.Taskstate.LifeCycle enum values):
+	//   NORMAL STATUS:
+	//
+	//     PENDING: task is pending somewhere and does not run.
+	//     RUNNING: task is running.
+	//     COMPLETED: ran to completion without being cancelled externally,
+	//       regardless of whether it succeeded or failed. A task is completed
+	//       only if all its sub-tasks have reached the end, either with a normal
+	//       or abnormal status.
+	//
+	//   ABNORMAL STATUS:
+	//
+	//     CANCELLED: never got a chance to run, cancelled externally.
+	//     REJECTED: never got a chance to run, rejected due to unsatisfiable
+	//       depenedencies.
+	//     ABORTED: started running but was cancelled externally while running.
+	Value                string   `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
+	XXX_NoUnkeyedLiteral struct{} `json:"-"`
+	XXX_unrecognized     []byte   `json:"-"`
+	XXX_sizecache        int32    `json:"-"`
+}
+
+func (m *Status) Reset()         { *m = Status{} }
+func (m *Status) String() string { return proto.CompactTextString(m) }
+func (*Status) ProtoMessage()    {}
+func (*Status) Descriptor() ([]byte, []int) {
+	return fileDescriptor_ea3c1349f87b947c, []int{4}
+}
+
+func (m *Status) XXX_Unmarshal(b []byte) error {
+	return xxx_messageInfo_Status.Unmarshal(m, b)
+}
+func (m *Status) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+	return xxx_messageInfo_Status.Marshal(b, m, deterministic)
+}
+func (m *Status) XXX_Merge(src proto.Message) {
+	xxx_messageInfo_Status.Merge(m, src)
+}
+func (m *Status) XXX_Size() int {
+	return xxx_messageInfo_Status.Size(m)
+}
+func (m *Status) XXX_DiscardUnknown() {
+	xxx_messageInfo_Status.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Status proto.InternalMessageInfo
+
+func (m *Status) GetValue() string {
+	if m != nil {
+		return m.Value
+	}
+	return ""
+}
+
+// The known tokens describe whether a task passed, failed, or had some other
+// indefinite verdict.
+type Verdict struct {
+	// All the currently possible values (corresponding to
+	// testplatform.Taskstate.Verdict enum values):
+	//
+	//   UNSPECIFIED(default): the task produced no usable verdict (possibly
+	//     because it never ran, or never finished, or the results were
+	//     unparseable).
+	//     Under most circumstances, this should be treated as a failure or
+	//     an infrastructure failure.
+	//   PASSED: test run definitively passed.
+	//   FAILED: test run definitively failed.
+	//   NO_VERDICT: the task definitively produced no verdict(for instance,
+	//     the test is irrelevant in the given environment).
+	//     Under most circumstances, this should be treated as a passing
+	//     (but uninteresting).
+	//   PASSED_ON_RETRY: the task failed, but passed after one or more retries.
+	Value                string   `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
+	XXX_NoUnkeyedLiteral struct{} `json:"-"`
+	XXX_unrecognized     []byte   `json:"-"`
+	XXX_sizecache        int32    `json:"-"`
+}
+
+func (m *Verdict) Reset()         { *m = Verdict{} }
+func (m *Verdict) String() string { return proto.CompactTextString(m) }
+func (*Verdict) ProtoMessage()    {}
+func (*Verdict) Descriptor() ([]byte, []int) {
+	return fileDescriptor_ea3c1349f87b947c, []int{5}
+}
+
+func (m *Verdict) XXX_Unmarshal(b []byte) error {
+	return xxx_messageInfo_Verdict.Unmarshal(m, b)
+}
+func (m *Verdict) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+	return xxx_messageInfo_Verdict.Marshal(b, m, deterministic)
+}
+func (m *Verdict) XXX_Merge(src proto.Message) {
+	xxx_messageInfo_Verdict.Merge(m, src)
+}
+func (m *Verdict) XXX_Size() int {
+	return xxx_messageInfo_Verdict.Size(m)
+}
+func (m *Verdict) XXX_DiscardUnknown() {
+	xxx_messageInfo_Verdict.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Verdict proto.InternalMessageInfo
+
+func (m *Verdict) GetValue() string {
+	if m != nil {
+		return m.Value
+	}
+	return ""
+}
+
+func init() {
+	proto.RegisterType((*TestPlanRun)(nil), "test_platform.analytics.TestPlanRun")
+	proto.RegisterType((*TestRun)(nil), "test_platform.analytics.TestRun")
+	proto.RegisterType((*TestRun_Prejob)(nil), "test_platform.analytics.TestRun.Prejob")
+	proto.RegisterType((*TestCaseResult)(nil), "test_platform.analytics.TestCaseResult")
+	proto.RegisterType((*Timeline)(nil), "test_platform.analytics.Timeline")
+	proto.RegisterType((*Status)(nil), "test_platform.analytics.Status")
+	proto.RegisterType((*Verdict)(nil), "test_platform.analytics.Verdict")
+}
+
+func init() {
+	proto.RegisterFile("test_platform/analytics/result.proto", fileDescriptor_ea3c1349f87b947c)
+}
+
+var fileDescriptor_ea3c1349f87b947c = []byte{
+	// 611 bytes of a gzipped FileDescriptorProto
+	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x5d, 0x6b, 0xd4, 0x40,
+	0x14, 0x65, 0xbb, 0x6d, 0x76, 0xf7, 0xee, 0xb6, 0xc8, 0x50, 0x34, 0x16, 0xb4, 0xdb, 0x55, 0xb1,
+	0x4f, 0x09, 0xf8, 0x81, 0xa8, 0x14, 0xb1, 0xf5, 0x51, 0xa4, 0xa4, 0xad, 0x0f, 0xbe, 0x84, 0xc9,
+	0x66, 0x36, 0x8d, 0x4c, 0x66, 0xc2, 0x7c, 0x14, 0xfb, 0xcb, 0xfc, 0x27, 0xfe, 0x13, 0xc1, 0x47,
+	0x99, 0x3b, 0x93, 0xd2, 0x4a, 0x97, 0xda, 0xbe, 0xe5, 0x9e, 0x7b, 0x4e, 0x66, 0xee, 0xb9, 0x77,
+	0x2e, 0x3c, 0x35, 0x4c, 0x9b, 0xbc, 0xe5, 0xd4, 0x2c, 0xa4, 0x6a, 0x52, 0x2a, 0x28, 0x3f, 0x37,
+	0xf5, 0x5c, 0xa7, 0x8a, 0x69, 0xcb, 0x4d, 0xd2, 0x2a, 0x69, 0x24, 0x79, 0x70, 0x85, 0x95, 0x5c,
+	0xb0, 0xb6, 0xb6, 0x2b, 0x29, 0x2b, 0xce, 0x52, 0xa4, 0x15, 0x76, 0x91, 0x9a, 0xba, 0x61, 0xda,
+	0xd0, 0xa6, 0xf5, 0xca, 0xd9, 0xcf, 0x15, 0x18, 0x1f, 0x33, 0x6d, 0x0e, 0x39, 0x15, 0x99, 0x15,
+	0xe4, 0x1e, 0xf4, 0x6d, 0x5d, 0xc6, 0xbd, 0x69, 0x6f, 0x77, 0x94, 0xb9, 0x4f, 0xb2, 0x09, 0x6b,
+	0xda, 0xd6, 0x86, 0xc5, 0x2b, 0x88, 0xf9, 0x80, 0x3c, 0x81, 0x75, 0xf6, 0x83, 0xcd, 0xad, 0xa9,
+	0xa5, 0xc8, 0xad, 0xe2, 0x71, 0x1f, 0xb3, 0x93, 0x0b, 0xf0, 0x44, 0x71, 0xf2, 0x10, 0x86, 0xa5,
+	0x35, 0x79, 0x2b, 0x25, 0x8f, 0x57, 0x31, 0x3f, 0x28, 0xad, 0x39, 0x94, 0x92, 0x93, 0x1d, 0x98,
+	0x14, 0xb6, 0xe6, 0x65, 0x6e, 0xa8, 0xaa, 0x98, 0x89, 0xd7, 0x30, 0x3d, 0x46, 0xec, 0x18, 0x21,
+	0xf2, 0x0c, 0x36, 0xe6, 0xa7, 0x4a, 0x36, 0x4c, 0xea, 0x1c, 0xf1, 0x38, 0x42, 0xd2, 0x7a, 0x87,
+	0xee, 0x3b, 0x90, 0xbc, 0x81, 0x48, 0x1b, 0x6a, 0xac, 0x8e, 0x07, 0xd3, 0xde, 0xee, 0xf8, 0xc5,
+	0x76, 0xb2, 0xc4, 0x8c, 0xe4, 0x08, 0x69, 0x59, 0xa0, 0x93, 0x3d, 0x18, 0x3a, 0x37, 0x78, 0x2d,
+	0x58, 0x3c, 0x44, 0xe9, 0xce, 0x52, 0xe9, 0x71, 0x20, 0x66, 0x17, 0x92, 0xd9, 0xef, 0x3e, 0x0c,
+	0x9c, 0x73, 0xd7, 0xbb, 0xb6, 0x03, 0x93, 0xb2, 0xd6, 0x2d, 0xa7, 0xe7, 0xb9, 0xa0, 0x4d, 0x67,
+	0xde, 0x38, 0x60, 0x5f, 0x68, 0xf3, 0x9f, 0x16, 0x3e, 0x02, 0x68, 0xa9, 0x62, 0xc2, 0xe4, 0xee,
+	0x00, 0x6f, 0xe2, 0xc8, 0x23, 0x27, 0xbe, 0x39, 0x8d, 0x2c, 0x19, 0x0f, 0xfe, 0xf9, 0xe0, 0x4a,
+	0x65, 0xd1, 0xad, 0x2b, 0xbb, 0xbb, 0xa3, 0xef, 0x60, 0x70, 0xc6, 0x54, 0x59, 0xcf, 0x4d, 0x30,
+	0x74, 0xba, 0x54, 0xf9, 0xd5, 0xf3, 0xb2, 0x4e, 0x40, 0xa6, 0x30, 0x59, 0x58, 0xce, 0x73, 0x2e,
+	0x2b, 0x34, 0x63, 0x84, 0x05, 0x81, 0xc3, 0x3e, 0xcb, 0xca, 0x59, 0xf1, 0x01, 0xa2, 0x56, 0xb1,
+	0xef, 0xb2, 0x88, 0x01, 0x7f, 0xfe, 0x7c, 0x79, 0x4d, 0xbe, 0x2d, 0xc9, 0x21, 0xd2, 0xb3, 0x20,
+	0xdb, 0xfa, 0x04, 0x91, 0x47, 0x2e, 0x5f, 0xb4, 0x77, 0xcb, 0x8b, 0xce, 0x7e, 0xf5, 0x60, 0xc3,
+	0x1d, 0x70, 0x40, 0x35, 0xcb, 0xf0, 0x11, 0xde, 0xad, 0xfd, 0x57, 0x3b, 0xdb, 0xff, 0xb7, 0xb3,
+	0x97, 0xae, 0xb8, 0x7a, 0x5b, 0x2f, 0x5f, 0xc1, 0xfd, 0x53, 0xdb, 0x50, 0x91, 0x2b, 0x46, 0x4b,
+	0x5a, 0x70, 0x96, 0x6b, 0xdb, 0x34, 0x54, 0x9d, 0x87, 0x31, 0xd9, 0xc4, 0x6c, 0x16, 0x92, 0x47,
+	0x3e, 0x37, 0xfb, 0xd3, 0x83, 0x61, 0x37, 0x0d, 0xe4, 0x3d, 0x8c, 0xe7, 0x8a, 0x51, 0xc3, 0x72,
+	0x37, 0x16, 0xc1, 0xa5, 0xad, 0xc4, 0xaf, 0x93, 0xa4, 0x5b, 0x27, 0x38, 0x3d, 0xb8, 0x4e, 0x32,
+	0xf0, 0x74, 0x07, 0x90, 0xb7, 0x00, 0xda, 0x50, 0x65, 0xbc, 0x76, 0xe5, 0x46, 0xed, 0x08, 0xd9,
+	0x28, 0x7d, 0x0d, 0x43, 0x26, 0x4a, 0x2f, 0xec, 0xdf, 0x28, 0x1c, 0x30, 0x51, 0xa2, 0x6c, 0x0f,
+	0x26, 0xb4, 0xa0, 0xa2, 0x94, 0xc2, 0x4b, 0x57, 0x6f, 0x94, 0x8e, 0x03, 0xdf, 0x21, 0xb3, 0xc7,
+	0x10, 0xf9, 0x51, 0x76, 0x0f, 0xea, 0x8c, 0x72, 0xcb, 0x42, 0x33, 0x7d, 0x30, 0xdb, 0x86, 0x41,
+	0x30, 0xf9, 0x7a, 0xc2, 0xfe, 0xc1, 0xb7, 0x8f, 0x95, 0x4c, 0x70, 0x31, 0xd5, 0xb6, 0x49, 0xa4,
+	0xaa, 0xd2, 0x2e, 0x90, 0x3a, 0xad, 0xc5, 0x42, 0x51, 0xbf, 0x83, 0xd3, 0x4a, 0xa6, 0x4b, 0x56,
+	0x7a, 0x11, 0x21, 0xe3, 0xe5, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc4, 0x0d, 0x06, 0xb8, 0xf4,
+	0x05, 0x00, 0x00,
+}