Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(192)

Side by Side Diff: common/proto/milo/annotations.pb.go

Issue 2979283002: Add manifest links and hack to index on revision. (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Code generated by protoc-gen-go. DO NOT EDIT. 1 // Code generated by protoc-gen-go. DO NOT EDIT.
2 // source: github.com/luci/luci-go/common/proto/milo/annotations.proto 2 // source: github.com/luci/luci-go/common/proto/milo/annotations.proto
3 3
4 /* 4 /*
5 Package milo is a generated protocol buffer package. 5 Package milo is a generated protocol buffer package.
6 6
7 It is generated from these files: 7 It is generated from these files:
8 github.com/luci/luci-go/common/proto/milo/annotations.proto 8 github.com/luci/luci-go/common/proto/milo/annotations.proto
9 9
10 It has these top-level messages: 10 It has these top-level messages:
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 Text []string `protobuf:"bytes,20,rep,name=text" json:"text,omitempty"` 172 Text []string `protobuf:"bytes,20,rep,name=text" json:"text,omitempty"`
173 // The Component's progress. 173 // The Component's progress.
174 Progress *Step_Progress `protobuf:"bytes,21,opt,name=progress" json:"pro gress,omitempty"` 174 Progress *Step_Progress `protobuf:"bytes,21,opt,name=progress" json:"pro gress,omitempty"`
175 // The primary link for this Component. This is the link that interactio n 175 // The primary link for this Component. This is the link that interactio n
176 // with the Component will use. 176 // with the Component will use.
177 Link *Link `protobuf:"bytes,22,opt,name=link" json:"link,omitempty"` 177 Link *Link `protobuf:"bytes,22,opt,name=link" json:"link,omitempty"`
178 // Additional links related to the Component. These will be rendered alo ngside 178 // Additional links related to the Component. These will be rendered alo ngside
179 // the component. 179 // the component.
180 OtherLinks []*Link `protobuf:"bytes,23,rep,name=other_links,jso n=otherLinks" json:"other_links,omitempty"` 180 OtherLinks []*Link `protobuf:"bytes,23,rep,name=other_links,jso n=otherLinks" json:"other_links,omitempty"`
181 Property []*Step_Property `protobuf:"bytes,24,rep,name=property" json: "property,omitempty"` 181 Property []*Step_Property `protobuf:"bytes,24,rep,name=property" json: "property,omitempty"`
182 // Maps the name of the Manifest, e.g. UNPATCHED, INFRA, etc. to the
183 // ManifestLink. This name will be used in the milo console definition t o
184 // indicate which manifest data to sort the console view by.
185 SourceManifests map[string]*Step_ManifestLink `protobuf:"bytes,25,rep,na me=source_manifests,json=sourceManifests" json:"source_manifests,omitempty" prot obuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
182 } 186 }
183 187
184 func (m *Step) Reset() { *m = Step{} } 188 func (m *Step) Reset() { *m = Step{} }
185 func (m *Step) String() string { return proto.CompactTextString(m) } 189 func (m *Step) String() string { return proto.CompactTextString(m) }
186 func (*Step) ProtoMessage() {} 190 func (*Step) ProtoMessage() {}
187 func (*Step) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } 191 func (*Step) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
188 192
189 func (m *Step) GetName() string { 193 func (m *Step) GetName() string {
190 if m != nil { 194 if m != nil {
191 return m.Name 195 return m.Name
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 return nil 281 return nil
278 } 282 }
279 283
280 func (m *Step) GetProperty() []*Step_Property { 284 func (m *Step) GetProperty() []*Step_Property {
281 if m != nil { 285 if m != nil {
282 return m.Property 286 return m.Property
283 } 287 }
284 return nil 288 return nil
285 } 289 }
286 290
291 func (m *Step) GetSourceManifests() map[string]*Step_ManifestLink {
292 if m != nil {
293 return m.SourceManifests
294 }
295 return nil
296 }
297
287 // Command contains information about a command-line invocation. 298 // Command contains information about a command-line invocation.
288 type Step_Command struct { 299 type Step_Command struct {
289 // The command-line invocation, expressed as an argument vector. 300 // The command-line invocation, expressed as an argument vector.
290 CommandLine []string `protobuf:"bytes,1,rep,name=command_line,json=comma ndLine" json:"command_line,omitempty"` 301 CommandLine []string `protobuf:"bytes,1,rep,name=command_line,json=comma ndLine" json:"command_line,omitempty"`
291 // The current working directory. 302 // The current working directory.
292 Cwd string `protobuf:"bytes,2,opt,name=cwd" json:"cwd,omitempty"` 303 Cwd string `protobuf:"bytes,2,opt,name=cwd" json:"cwd,omitempty"`
293 // Environment represents the state of a process' environment. 304 // Environment represents the state of a process' environment.
294 Environ map[string]string `protobuf:"bytes,3,rep,name=environ" json:"env iron,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,na me=value"` 305 Environ map[string]string `protobuf:"bytes,3,rep,name=environ" json:"env iron,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,na me=value"`
295 } 306 }
296 307
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 return "" 509 return ""
499 } 510 }
500 511
501 func (m *Step_Property) GetValue() string { 512 func (m *Step_Property) GetValue() string {
502 if m != nil { 513 if m != nil {
503 return m.Value 514 return m.Value
504 } 515 }
505 return "" 516 return ""
506 } 517 }
507 518
519 // Links to a recipe_engine.Manifest proto.
520 type Step_ManifestLink struct {
521 // The fully qualified (logdog://) url of the Manifest proto. It's expec ted
522 // that this is a binary logdog stream consisting of exactly one Manifes t
523 // proto.
524 Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
525 // The hash of the Manifest. Milo will use this as an optimization;
526 // Manifests will be interned once into Milo's datastore. Future hashes
527 // which match will not be loaded from the url, but will be assumed to b e
528 // identical. If the sha256 doesn't match the data at the URL, Milo may
529 // render this build with the wrong manifest.
530 Sha256 string `protobuf:"bytes,2,opt,name=sha256" json:"sha256,omitempty "`
531 }
532
533 func (m *Step_ManifestLink) Reset() { *m = Step_ManifestLink{ } }
534 func (m *Step_ManifestLink) String() string { return proto.CompactTex tString(m) }
535 func (*Step_ManifestLink) ProtoMessage() {}
536 func (*Step_ManifestLink) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 4} }
537
538 func (m *Step_ManifestLink) GetUrl() string {
539 if m != nil {
540 return m.Url
541 }
542 return ""
543 }
544
545 func (m *Step_ManifestLink) GetSha256() string {
546 if m != nil {
547 return m.Sha256
548 }
549 return ""
550 }
551
508 // A Link is an optional label followed by a typed link to an external 552 // A Link is an optional label followed by a typed link to an external
509 // resource. 553 // resource.
510 type Link struct { 554 type Link struct {
511 // An optional display label for the link. 555 // An optional display label for the link.
512 Label string `protobuf:"bytes,1,opt,name=label" json:"label,omitempty"` 556 Label string `protobuf:"bytes,1,opt,name=label" json:"label,omitempty"`
513 // If present, this link is an alias for another link with this name, an d 557 // If present, this link is an alias for another link with this name, an d
514 // should be rendered in relation to that link. 558 // should be rendered in relation to that link.
515 AliasLabel string `protobuf:"bytes,2,opt,name=alias_label,json=aliasLabe l" json:"alias_label,omitempty"` 559 AliasLabel string `protobuf:"bytes,2,opt,name=alias_label,json=aliasLabe l" json:"alias_label,omitempty"`
516 // Types that are valid to be assigned to Value: 560 // Types that are valid to be assigned to Value:
517 // *Link_Url 561 // *Link_Url
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 return 0 861 return 0
818 } 862 }
819 863
820 func init() { 864 func init() {
821 proto.RegisterType((*FailureDetails)(nil), "milo.FailureDetails") 865 proto.RegisterType((*FailureDetails)(nil), "milo.FailureDetails")
822 proto.RegisterType((*Step)(nil), "milo.Step") 866 proto.RegisterType((*Step)(nil), "milo.Step")
823 proto.RegisterType((*Step_Command)(nil), "milo.Step.Command") 867 proto.RegisterType((*Step_Command)(nil), "milo.Step.Command")
824 proto.RegisterType((*Step_Substep)(nil), "milo.Step.Substep") 868 proto.RegisterType((*Step_Substep)(nil), "milo.Step.Substep")
825 proto.RegisterType((*Step_Progress)(nil), "milo.Step.Progress") 869 proto.RegisterType((*Step_Progress)(nil), "milo.Step.Progress")
826 proto.RegisterType((*Step_Property)(nil), "milo.Step.Property") 870 proto.RegisterType((*Step_Property)(nil), "milo.Step.Property")
871 proto.RegisterType((*Step_ManifestLink)(nil), "milo.Step.ManifestLink")
827 proto.RegisterType((*Link)(nil), "milo.Link") 872 proto.RegisterType((*Link)(nil), "milo.Link")
828 proto.RegisterType((*LogdogStream)(nil), "milo.LogdogStream") 873 proto.RegisterType((*LogdogStream)(nil), "milo.LogdogStream")
829 proto.RegisterType((*IsolateObject)(nil), "milo.IsolateObject") 874 proto.RegisterType((*IsolateObject)(nil), "milo.IsolateObject")
830 proto.RegisterType((*DMLink)(nil), "milo.DMLink") 875 proto.RegisterType((*DMLink)(nil), "milo.DMLink")
831 proto.RegisterEnum("milo.Status", Status_name, Status_value) 876 proto.RegisterEnum("milo.Status", Status_name, Status_value)
832 proto.RegisterEnum("milo.FailureDetails_Type", FailureDetails_Type_name, FailureDetails_Type_value) 877 proto.RegisterEnum("milo.FailureDetails_Type", FailureDetails_Type_name, FailureDetails_Type_value)
833 } 878 }
834 879
835 func init() { 880 func init() {
836 proto.RegisterFile("github.com/luci/luci-go/common/proto/milo/annotation s.proto", fileDescriptor0) 881 proto.RegisterFile("github.com/luci/luci-go/common/proto/milo/annotation s.proto", fileDescriptor0)
837 } 882 }
838 883
839 var fileDescriptor0 = []byte{ 884 var fileDescriptor0 = []byte{
840 // 981 bytes of a gzipped FileDescriptorProto 885 // 1062 bytes of a gzipped FileDescriptorProto
841 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x55, 0x5d, 0x6f, 0xe3, 0x44, 886 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x55, 0xdf, 0x6f, 0xe3, 0x44,
842 0x14, 0x8d, 0x63, 0x27, 0x6e, 0x6e, 0xd2, 0x62, 0x86, 0xb0, 0x98, 0x08, 0xd1, 0x10, 0x21, 0x51, 887 0x10, 0xce, 0x0f, 0x27, 0x6e, 0x26, 0x69, 0xcf, 0x2c, 0xe1, 0xce, 0x17, 0x21, 0x5a, 0x22, 0x24,
843 0xc1, 0xae, 0x83, 0xca, 0x4a, 0xb0, 0x1f, 0xac, 0x94, 0x4d, 0xdc, 0x4d, 0xa4, 0x6c, 0xb6, 0x9a, 888 0x2a, 0xb8, 0x26, 0xa8, 0x1c, 0x70, 0xbf, 0x38, 0xa9, 0x97, 0xb8, 0xd7, 0xa0, 0x34, 0x57, 0x6d,
844 0xb4, 0xd2, 0xf2, 0x14, 0x39, 0xf1, 0x24, 0x35, 0xb5, 0x3d, 0xc6, 0x1e, 0x97, 0xe6, 0xe7, 0xf0, 889 0x5a, 0xe9, 0x10, 0x0f, 0xd1, 0xc6, 0xde, 0xa4, 0xa6, 0xb6, 0xd7, 0x78, 0xd7, 0xa5, 0x79, 0xe7,
845 0x23, 0xf8, 0x6f, 0x3c, 0xf0, 0x80, 0xe6, 0xc3, 0x89, 0x0b, 0xed, 0xf2, 0x62, 0xcd, 0xb9, 0xf7, 890 0x5f, 0xe2, 0x7f, 0xe3, 0x81, 0x07, 0xb4, 0xbb, 0x76, 0xea, 0x42, 0x7a, 0xbc, 0x58, 0x3b, 0x33,
846 0xdc, 0x99, 0xb9, 0x67, 0x8e, 0x67, 0xe0, 0xc5, 0x26, 0x60, 0x57, 0xf9, 0xd2, 0x59, 0xd1, 0xa8, 891 0xdf, 0xec, 0xce, 0xcc, 0xf7, 0xad, 0x17, 0x5e, 0x2e, 0x7d, 0x71, 0x99, 0xce, 0x7b, 0x2e, 0x0b,
847 0x1f, 0xe6, 0xab, 0x40, 0x7c, 0x9e, 0x6c, 0x68, 0x7f, 0x45, 0xa3, 0x88, 0xc6, 0xfd, 0x24, 0xa5, 892 0xfb, 0x41, 0xea, 0xfa, 0xea, 0x73, 0xb0, 0x64, 0x7d, 0x97, 0x85, 0x21, 0x8b, 0xfa, 0x71, 0xc2,
848 0x8c, 0xf6, 0xa3, 0x20, 0xa4, 0x7d, 0x2f, 0x8e, 0x29, 0xf3, 0x58, 0x40, 0xe3, 0xcc, 0x11, 0x61, 893 0x04, 0xeb, 0x87, 0x7e, 0xc0, 0xfa, 0x24, 0x8a, 0x98, 0x20, 0xc2, 0x67, 0x11, 0xef, 0x29, 0x37,
849 0x64, 0xf0, 0x78, 0xe7, 0x78, 0x43, 0xe9, 0x26, 0x24, 0x92, 0xba, 0xcc, 0xd7, 0x7d, 0x16, 0x44, 894 0x32, 0xa4, 0xbf, 0xb3, 0xbb, 0x64, 0x6c, 0x19, 0x50, 0x0d, 0x9d, 0xa7, 0x8b, 0xbe, 0xf0, 0x43,
850 0x24, 0x63, 0x5e, 0x94, 0x48, 0x5a, 0xef, 0x2f, 0x0d, 0x8e, 0xce, 0xbc, 0x20, 0xcc, 0x53, 0x32, 895 0xca, 0x05, 0x09, 0x63, 0x0d, 0xeb, 0xfe, 0x55, 0x86, 0x9d, 0x63, 0xe2, 0x07, 0x69, 0x42, 0x87,
851 0x22, 0xcc, 0x0b, 0xc2, 0x0c, 0x3d, 0x01, 0x83, 0x6d, 0x13, 0x62, 0x6b, 0x5d, 0xed, 0xe4, 0xe8, 896 0x54, 0x10, 0x3f, 0xe0, 0xe8, 0x00, 0x0c, 0xb1, 0x8a, 0xa9, 0x5d, 0xde, 0x2b, 0xef, 0xef, 0x1c,
852 0xf4, 0x73, 0x87, 0x4f, 0xe4, 0xdc, 0xe5, 0x38, 0x17, 0xdb, 0x84, 0x60, 0x41, 0x43, 0x08, 0x0c, 897 0x3e, 0xee, 0xc9, 0x8d, 0x7a, 0x77, 0x31, 0xbd, 0xf3, 0x55, 0x4c, 0xb1, 0x82, 0x21, 0x04, 0x86,
853 0x46, 0x6e, 0x99, 0x5d, 0xed, 0x6a, 0x27, 0x0d, 0x2c, 0xc6, 0xe8, 0x15, 0xb4, 0xd7, 0x5e, 0x10, 898 0xa0, 0x37, 0xc2, 0xae, 0xec, 0x95, 0xf7, 0x1b, 0x58, 0xad, 0xd1, 0x6b, 0x68, 0x2f, 0x88, 0x1f,
854 0x12, 0x7f, 0xe1, 0x47, 0x0b, 0x9f, 0x24, 0x24, 0xf6, 0x49, 0xbc, 0xda, 0xda, 0x7a, 0x57, 0x3f, 899 0x50, 0x6f, 0xe6, 0x85, 0x33, 0x8f, 0xc6, 0x34, 0xf2, 0x68, 0xe4, 0xae, 0xec, 0xea, 0x5e, 0x75,
855 0x69, 0x9e, 0xb6, 0xe4, 0x94, 0xa3, 0xb7, 0xd3, 0x20, 0xbe, 0xc6, 0x48, 0x32, 0x47, 0xd1, 0x68, 900 0xbf, 0x79, 0xd8, 0xd2, 0x5b, 0x0e, 0x4f, 0xc7, 0x7e, 0x74, 0x85, 0x91, 0x46, 0x0e, 0xc3, 0xe1,
856 0xc7, 0xeb, 0xad, 0xc0, 0xe0, 0x2b, 0xa0, 0x26, 0x98, 0x6f, 0xdc, 0x99, 0x8b, 0x07, 0x53, 0xab, 901 0x1a, 0xd7, 0x75, 0xc1, 0x90, 0x27, 0xa0, 0x26, 0x98, 0x6f, 0x9d, 0x89, 0x83, 0x8f, 0xc6, 0x56,
857 0x82, 0x0e, 0xa1, 0xe1, 0xbe, 0x1f, 0xba, 0xe7, 0x17, 0x93, 0x77, 0x33, 0x4b, 0x43, 0x0d, 0xa8, 902 0x09, 0x6d, 0x43, 0xc3, 0x79, 0x3f, 0x70, 0xce, 0xce, 0x47, 0xef, 0x26, 0x56, 0x19, 0x35, 0xa0,
858 0x4d, 0x66, 0x67, 0x78, 0x60, 0x55, 0x91, 0x0d, 0xed, 0xd1, 0xdb, 0xc5, 0xc8, 0x3d, 0x77, 0x67, 903 0x36, 0x9a, 0x1c, 0xe3, 0x23, 0xab, 0x82, 0x6c, 0x68, 0x0f, 0x4f, 0x67, 0x43, 0xe7, 0xcc, 0x99,
859 0x23, 0x77, 0x36, 0xfc, 0x65, 0x71, 0x36, 0x98, 0x4c, 0xdd, 0x91, 0xa5, 0xf3, 0x9a, 0xe1, 0x60, 904 0x0c, 0x9d, 0xc9, 0xe0, 0xe7, 0xd9, 0xf1, 0xd1, 0x68, 0xec, 0x0c, 0xad, 0xaa, 0xcc, 0x19, 0x1c,
860 0x36, 0x74, 0xa7, 0x1c, 0x1a, 0x7c, 0x3e, 0xf7, 0xfd, 0xf9, 0x04, 0xbb, 0x23, 0xab, 0xd6, 0xfb, 905 0x4d, 0x06, 0xce, 0x58, 0x9a, 0x86, 0xdc, 0xcf, 0x79, 0x7f, 0x36, 0xc2, 0xce, 0xd0, 0xaa, 0x75,
861 0xe3, 0x00, 0x8c, 0x39, 0x23, 0x09, 0xef, 0x20, 0xf6, 0x22, 0xd9, 0x70, 0x03, 0x8b, 0x31, 0x7a, 906 0xff, 0x00, 0x30, 0xa6, 0x82, 0xc6, 0xb2, 0x83, 0x88, 0x84, 0xba, 0xe1, 0x06, 0x56, 0x6b, 0xf4,
862 0x0c, 0x26, 0x57, 0xd9, 0x8b, 0x7d, 0xd1, 0x58, 0xf3, 0x14, 0xc9, 0x4d, 0xf3, 0x02, 0x67, 0x28, 907 0x04, 0x4c, 0x39, 0x65, 0x12, 0x79, 0xaa, 0xb1, 0xe6, 0x21, 0xd2, 0x45, 0xcb, 0x84, 0xde, 0x40,
863 0x33, 0xb8, 0xa0, 0xa0, 0xaf, 0xa1, 0x9e, 0x31, 0x8f, 0xe5, 0x99, 0xad, 0x0b, 0xd1, 0x5a, 0x05, 908 0x47, 0x70, 0x0e, 0x41, 0x5f, 0x40, 0x9d, 0x0b, 0x22, 0x52, 0x6e, 0x57, 0xd5, 0xd0, 0x5a, 0x39,
864 0x99, 0xc7, 0xb0, 0xca, 0xa1, 0x9f, 0xe1, 0xa3, 0xb5, 0x94, 0x71, 0xe1, 0x4b, 0x1d, 0x6d, 0x43, 909 0x58, 0xfa, 0x70, 0x16, 0x43, 0x3f, 0xc2, 0x83, 0x85, 0x1e, 0xe3, 0xcc, 0xd3, 0x73, 0xb4, 0x0d,
865 0xcc, 0xdd, 0xbe, 0x4f, 0x63, 0x7c, 0xb4, 0xbe, 0x7b, 0x2e, 0x8f, 0xc1, 0xcc, 0xf2, 0x65, 0xc6, 910 0xb5, 0x77, 0x7b, 0xd3, 0x8c, 0xf1, 0xce, 0xe2, 0x2e, 0x2f, 0x4f, 0xc0, 0xe4, 0xe9, 0x9c, 0x0b,
866 0x48, 0x62, 0xd7, 0x84, 0x8e, 0xe5, 0x2d, 0xcd, 0x65, 0x06, 0x17, 0x14, 0xf4, 0x23, 0x1c, 0x66, 911 0x1a, 0xdb, 0x35, 0x35, 0xc7, 0x62, 0x49, 0x53, 0x1d, 0xc1, 0x39, 0x04, 0xfd, 0x00, 0xdb, 0x5c,
867 0xcc, 0xa7, 0x39, 0x5b, 0x64, 0x2c, 0x25, 0x5e, 0x64, 0xd7, 0xcb, 0x6d, 0x4c, 0xe9, 0xc6, 0xa7, 912 0x78, 0x2c, 0x15, 0x33, 0x2e, 0x12, 0x4a, 0x42, 0xbb, 0x5e, 0x6c, 0x63, 0xcc, 0x96, 0x1e, 0x5b,
868 0x9b, 0xb9, 0xc8, 0xe0, 0x96, 0x24, 0x4a, 0xa4, 0x0a, 0x49, 0x9a, 0x16, 0x85, 0xe6, 0x07, 0x0b, 913 0x4e, 0x55, 0x04, 0xb7, 0x34, 0x50, 0x5b, 0x59, 0x22, 0x4d, 0x92, 0x3c, 0xd1, 0xfc, 0x60, 0x22,
869 0x49, 0x9a, 0xaa, 0xc2, 0xa7, 0x60, 0x66, 0xcc, 0x4b, 0x19, 0xf1, 0xed, 0x03, 0x51, 0xd2, 0x71, 914 0x4d, 0x92, 0x2c, 0xf1, 0x29, 0x98, 0x5c, 0x90, 0x44, 0x50, 0xcf, 0xde, 0x52, 0x29, 0x9d, 0x9e,
870 0xa4, 0xfb, 0x9c, 0xc2, 0x7d, 0xce, 0x45, 0xe1, 0x3e, 0x5c, 0x50, 0xd1, 0xf7, 0x50, 0xe3, 0xa7, 915 0x56, 0x5f, 0x2f, 0x57, 0x5f, 0xef, 0x3c, 0x57, 0x1f, 0xce, 0xa1, 0xe8, 0x1b, 0xa8, 0x49, 0xd6,
871 0xee, 0xdb, 0x8d, 0xff, 0xad, 0x91, 0xc4, 0x9d, 0xe1, 0xda, 0x5d, 0x7d, 0x67, 0xb8, 0x3e, 0x1c, 916 0x3d, 0xbb, 0xf1, 0xbf, 0x39, 0x1a, 0xb8, 0x16, 0x5c, 0x7b, 0xaf, 0xba, 0x16, 0x5c, 0x1f, 0xb6,
872 0x24, 0x29, 0xdd, 0xa4, 0x24, 0xcb, 0xec, 0x4f, 0xc5, 0x44, 0x9f, 0x94, 0xc4, 0x39, 0x57, 0x29, 917 0xe2, 0x84, 0x2d, 0x13, 0xca, 0xb9, 0xfd, 0x89, 0xda, 0xe8, 0xe3, 0xc2, 0x70, 0xce, 0xb2, 0x10,
873 0xbc, 0x23, 0xa1, 0x2f, 0xc1, 0x08, 0x83, 0xf8, 0xda, 0x7e, 0x24, 0xc8, 0xa0, 0x9a, 0xe3, 0x7e, 918 0x5e, 0x83, 0xd0, 0x67, 0x60, 0x04, 0x7e, 0x74, 0x65, 0x3f, 0x54, 0x60, 0xc8, 0x9a, 0x93, 0x7a,
874 0x14, 0x71, 0xf4, 0x1d, 0x34, 0x29, 0xbb, 0x22, 0xe9, 0x82, 0xa3, 0xcc, 0xfe, 0x4c, 0x08, 0x5e, 919 0x54, 0x7e, 0xf4, 0x35, 0x34, 0x99, 0xb8, 0xa4, 0xc9, 0x4c, 0x5a, 0xdc, 0x7e, 0xa4, 0x06, 0x5e,
875 0xa6, 0x81, 0x48, 0xf3, 0x61, 0xa6, 0x56, 0x4f, 0x48, 0xca, 0xb6, 0xb6, 0x2d, 0x98, 0xff, 0x5a, 920 0x84, 0x81, 0x0a, 0xcb, 0x25, 0xcf, 0x4e, 0x8f, 0x69, 0x22, 0x56, 0xb6, 0xad, 0x90, 0xff, 0x3a,
876 0x5d, 0xa4, 0xf0, 0x8e, 0xd4, 0xf9, 0x53, 0x03, 0x53, 0x99, 0x08, 0x7d, 0x05, 0x2d, 0x65, 0x23, 921 0x5d, 0x85, 0xf0, 0x1a, 0x84, 0x7e, 0x02, 0x8b, 0xb3, 0x34, 0x71, 0xe9, 0x2c, 0x24, 0x91, 0xbf,
877 0xbe, 0x16, 0x77, 0x21, 0x6f, 0xab, 0xa9, 0x62, 0xd3, 0x20, 0x26, 0xc8, 0x02, 0x7d, 0xf5, 0xbb, 922 0xa0, 0x5c, 0x70, 0xfb, 0xb1, 0x4a, 0xdc, 0x2d, 0x72, 0xaa, 0x20, 0xa7, 0x39, 0xc2, 0x89, 0x44,
878 0xaf, 0xfe, 0x30, 0x3e, 0x44, 0xcf, 0xc0, 0x24, 0xf1, 0x4d, 0x90, 0xd2, 0x58, 0xfd, 0x53, 0xc7, 923 0xb2, 0xc2, 0x0f, 0xf8, 0x5d, 0x6f, 0xe7, 0xcf, 0x32, 0x98, 0x99, 0x20, 0xd1, 0xe7, 0xd0, 0xca,
879 0xff, 0xb5, 0xa7, 0xe3, 0x4a, 0x86, 0x1b, 0xb3, 0x74, 0x8b, 0x0b, 0x7e, 0xe7, 0x39, 0xb4, 0xca, 924 0x24, 0x29, 0xeb, 0x96, 0x8a, 0x96, 0x23, 0x6a, 0x66, 0xbe, 0xb1, 0x1f, 0x51, 0x64, 0x41, 0xd5,
880 0x09, 0x3e, 0xf9, 0x35, 0xd9, 0x2a, 0xf3, 0xf3, 0x21, 0x6a, 0x43, 0xed, 0xc6, 0x0b, 0x73, 0xa2, 925 0xfd, 0xdd, 0xcb, 0x6e, 0xab, 0x5c, 0xa2, 0xe7, 0x60, 0xd2, 0xe8, 0xda, 0x4f, 0x58, 0x94, 0xdd,
881 0x16, 0x94, 0xe0, 0x79, 0xf5, 0x27, 0xad, 0xb3, 0x05, 0x53, 0x19, 0x0d, 0x75, 0xc1, 0x10, 0x56, 926 0xcf, 0xdd, 0xff, 0x4a, 0xbd, 0xe7, 0x68, 0x84, 0xae, 0x21, 0xc7, 0x77, 0x5e, 0x40, 0xab, 0x18,
882 0xd4, 0xca, 0x02, 0xf2, 0xe5, 0xc7, 0x15, 0x2c, 0x32, 0x68, 0x00, 0x1f, 0xef, 0xaf, 0xa5, 0xc2, 927 0x90, 0x9b, 0x5f, 0xd1, 0x55, 0x76, 0x91, 0xe4, 0x12, 0xb5, 0xa1, 0x76, 0x4d, 0x82, 0x94, 0x66,
883 0x4c, 0xd5, 0x87, 0xcc, 0x34, 0xae, 0x60, 0x6b, 0x4f, 0x97, 0xb1, 0xd7, 0x8d, 0x9d, 0xe5, 0x3b, 928 0x07, 0x6a, 0xe3, 0x45, 0xe5, 0x59, 0xb9, 0xb3, 0x02, 0x33, 0x13, 0x2d, 0xda, 0x03, 0x43, 0xc9,
884 0xaf, 0xe0, 0xa0, 0x38, 0x46, 0xbe, 0x41, 0x46, 0x99, 0x17, 0x8a, 0xc5, 0x6b, 0x58, 0x02, 0xf4, 929 0xba, 0x5c, 0x24, 0x43, 0x1e, 0x7f, 0x52, 0xc2, 0x2a, 0x82, 0x8e, 0xe0, 0xa3, 0xdb, 0x5f, 0x5c,
885 0x05, 0x34, 0x56, 0x34, 0x4a, 0x42, 0xc2, 0x1d, 0x58, 0x15, 0x99, 0x7d, 0xa0, 0xf3, 0x54, 0xd4, 930 0x2e, 0xcc, 0xca, 0x7d, 0xc2, 0x3c, 0x29, 0x61, 0xeb, 0x16, 0xae, 0x7d, 0x6f, 0x1a, 0xeb, 0xeb,
886 0x0b, 0xf9, 0xef, 0xfd, 0xe1, 0xef, 0x6d, 0xba, 0xf7, 0xb7, 0x06, 0x06, 0x3f, 0x63, 0x9e, 0x0e, 931 0xd3, 0x79, 0x0d, 0x5b, 0xb9, 0x24, 0x64, 0x81, 0x82, 0x09, 0x12, 0xa8, 0xc3, 0x6b, 0x58, 0x1b,
887 0xbd, 0x25, 0x09, 0x55, 0x8d, 0x04, 0xe8, 0x18, 0x9a, 0x5e, 0x18, 0x78, 0xd9, 0x42, 0xe6, 0x64, 932 0xe8, 0x53, 0x68, 0xb8, 0x2c, 0x8c, 0x03, 0x2a, 0xd5, 0x5c, 0x51, 0x91, 0x5b, 0x47, 0xe7, 0xa9,
888 0x29, 0x88, 0xd0, 0x54, 0x10, 0x10, 0xe8, 0x79, 0x1a, 0x8a, 0x5b, 0xa1, 0x31, 0xae, 0x60, 0x0e, 933 0xca, 0xd7, 0x54, 0x6e, 0xfa, 0x79, 0x6c, 0x6c, 0xba, 0xf3, 0x0c, 0x5a, 0x39, 0x6b, 0x52, 0x36,
889 0xd0, 0x33, 0x38, 0x0c, 0x45, 0xe3, 0x85, 0x26, 0xc6, 0x07, 0x34, 0x69, 0x85, 0x25, 0x8c, 0x5e, 934 0x72, 0x58, 0x69, 0x12, 0xe4, 0xc3, 0x4a, 0x93, 0x00, 0x3d, 0x84, 0x3a, 0xbf, 0x24, 0x87, 0xdf,
890 0xc2, 0x51, 0x90, 0xd1, 0xd0, 0x63, 0x64, 0x41, 0x97, 0xbf, 0x92, 0x15, 0xb3, 0x6b, 0x65, 0xb3, 935 0x7d, 0x9f, 0x25, 0x66, 0x56, 0xe7, 0x17, 0x68, 0x6f, 0xd2, 0xc2, 0x86, 0x71, 0x1f, 0x14, 0x4f,
891 0x4f, 0x64, 0xee, 0x9d, 0x48, 0x8d, 0x2b, 0xf8, 0x30, 0x28, 0x07, 0xd0, 0x37, 0x60, 0xfa, 0x91, 936 0x6e, 0x1e, 0x3e, 0x2a, 0x30, 0x59, 0x3c, 0xbb, 0xc0, 0x43, 0xf7, 0xef, 0x32, 0x18, 0xaa, 0x9e,
892 0x30, 0xb4, 0xba, 0x0c, 0xee, 0x5c, 0xc4, 0xe3, 0x0a, 0xae, 0xfb, 0x11, 0x1f, 0xbd, 0x36, 0x95, 937 0x36, 0xd4, 0x02, 0x32, 0xa7, 0x79, 0x45, 0xda, 0x40, 0xbb, 0xd0, 0x24, 0x81, 0x4f, 0xf8, 0x4c,
893 0x16, 0x3d, 0x0c, 0xad, 0xf2, 0x7e, 0xd0, 0x23, 0xa8, 0x67, 0x24, 0xbd, 0x21, 0xa9, 0x92, 0x41, 938 0xc7, 0x74, 0x61, 0xa0, 0x5c, 0x63, 0x05, 0x40, 0xba, 0x0d, 0xf9, 0xe3, 0x6b, 0x9c, 0x94, 0x74,
894 0x21, 0x1e, 0x4f, 0x52, 0xb2, 0x0e, 0x6e, 0x95, 0x04, 0x0a, 0xed, 0x84, 0xd6, 0xf7, 0x42, 0xf7, 939 0x23, 0xcf, 0x61, 0x3b, 0x50, 0x7c, 0xe4, 0x54, 0x19, 0x1f, 0xa0, 0xaa, 0x15, 0x14, 0x6c, 0xf4,
895 0x5e, 0xc0, 0xe1, 0x9d, 0x7d, 0x3e, 0x38, 0x29, 0x02, 0xe3, 0xca, 0xcb, 0xae, 0x8a, 0x87, 0x85, 940 0x0a, 0x76, 0x7c, 0xce, 0x02, 0x22, 0xe8, 0x8c, 0xcd, 0x7f, 0xa5, 0xae, 0xb0, 0x6b, 0xc5, 0xfb,
896 0x8f, 0x7b, 0x31, 0xd4, 0xe5, 0x6e, 0x1f, 0xac, 0x6a, 0x43, 0xed, 0xb7, 0x9c, 0x64, 0xc5, 0x7b, 941 0x3c, 0xd2, 0xb1, 0x77, 0x2a, 0x74, 0x52, 0xc2, 0xdb, 0x7e, 0xd1, 0x81, 0xbe, 0x04, 0xd3, 0x0b,
897 0x24, 0x01, 0xb2, 0xc1, 0xf4, 0x18, 0x23, 0x51, 0xc2, 0xc4, 0x5e, 0x74, 0x5c, 0x40, 0xee, 0x1a, 942 0xd5, 0x9d, 0xcd, 0xfe, 0x77, 0x77, 0xde, 0x9a, 0x93, 0x12, 0xae, 0x7b, 0xa1, 0x5c, 0xbd, 0x31,
898 0x72, 0x4b, 0x56, 0x39, 0x77, 0x9d, 0x38, 0x09, 0x1d, 0xef, 0x03, 0xdf, 0xbe, 0x84, 0xba, 0xbc, 943 0xb3, 0x41, 0x75, 0x31, 0xb4, 0x8a, 0xf5, 0x28, 0x0e, 0x68, 0x72, 0x4d, 0x93, 0x6c, 0x0c, 0x99,
899 0xc4, 0xf9, 0xd3, 0x81, 0x2f, 0x67, 0xb3, 0xc9, 0xec, 0x8d, 0x55, 0xe1, 0x60, 0x7e, 0x39, 0x1c, 944 0x25, 0xfd, 0x71, 0x42, 0x17, 0xfe, 0x4d, 0xce, 0x8d, 0xb6, 0xd6, 0xfc, 0x57, 0x6f, 0xf9, 0xef,
900 0xba, 0xf3, 0xb9, 0xa5, 0x71, 0xc0, 0xdf, 0x9b, 0x4b, 0xec, 0x5a, 0x55, 0x0e, 0xf8, 0x2b, 0xc4, 945 0xbe, 0x84, 0xed, 0x3b, 0x75, 0xde, 0xbb, 0x29, 0x02, 0xe3, 0x92, 0xf0, 0xcb, 0xfc, 0xed, 0x94,
901 0x69, 0xfa, 0xb2, 0x2e, 0x2e, 0xb1, 0x1f, 0xfe, 0x09, 0x00, 0x00, 0xff, 0xff, 0xd3, 0x81, 0x81, 946 0xeb, 0x6e, 0x04, 0x75, 0x5d, 0xed, 0xbd, 0x59, 0x6d, 0xa8, 0xfd, 0x96, 0x52, 0x9e, 0x3f, 0xb9,
902 0x89, 0xc9, 0x07, 0x00, 0x00, 947 0xda, 0x40, 0x36, 0x98, 0x44, 0x08, 0x1a, 0xc6, 0x42, 0xd5, 0x52, 0xc5, 0xb9, 0x29, 0xc5, 0x4c,
948 0x6f, 0xa8, 0x9b, 0xca, 0xcb, 0xa0, 0x98, 0xa8, 0xe2, 0x5b, 0xc7, 0x57, 0xaf, 0xa0, 0xae, 0xdf,
949 0x29, 0xf9, 0x3a, 0xe2, 0x8b, 0xc9, 0x64, 0x34, 0x79, 0x6b, 0x95, 0xa4, 0x31, 0xbd, 0x18, 0x0c,
950 0x9c, 0xe9, 0xd4, 0x2a, 0x4b, 0x43, 0x3e, 0xa9, 0x17, 0xd8, 0xb1, 0x2a, 0xd2, 0x90, 0x0f, 0xad,
951 0x84, 0x55, 0xe7, 0x75, 0xf5, 0x9f, 0xfe, 0xf6, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd5, 0xd8,
952 0x99, 0x95, 0xac, 0x08, 0x00, 0x00,
903 } 953 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698