Generate sizer functions for oneofs.

This improves oneof sizing performance by ~9x.

func BenchmarkSizeTrivial(b *testing.B) {
  benchmarkSize(b, &MyMessage{Count: Int32(0)})
}

func BenchmarkSizeOneof(b *testing.B) {
  benchmarkSize(b, &Communique{Union: &Communique_Number{0}})
}

Without this change:
BenchmarkSizeTrivial-12  5000000               355 ns/op
BenchmarkSizeOneof-12     500000              2754 ns/op

With this change:
BenchmarkSizeTrivial-12  5000000               336 ns/op
BenchmarkSizeOneof-12    5000000               306 ns/op

Signed-off-by: David Symonds <dsymonds@golang.org>
diff --git a/jsonpb/jsonpb_test_proto/test_objects.pb.go b/jsonpb/jsonpb_test_proto/test_objects.pb.go
index 0aac30a..a9f50c3 100644
--- a/jsonpb/jsonpb_test_proto/test_objects.pb.go
+++ b/jsonpb/jsonpb_test_proto/test_objects.pb.go
@@ -378,8 +378,8 @@
 }
 
 // XXX_OneofFuncs is for the internal use of the proto package.
-func (*MsgWithOneof) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), []interface{}) {
-	return _MsgWithOneof_OneofMarshaler, _MsgWithOneof_OneofUnmarshaler, []interface{}{
+func (*MsgWithOneof) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
+	return _MsgWithOneof_OneofMarshaler, _MsgWithOneof_OneofUnmarshaler, _MsgWithOneof_OneofSizer, []interface{}{
 		(*MsgWithOneof_Title)(nil),
 		(*MsgWithOneof_Salary)(nil),
 	}
@@ -424,6 +424,24 @@
 	}
 }
 
+func _MsgWithOneof_OneofSizer(msg proto.Message) (n int) {
+	m := msg.(*MsgWithOneof)
+	// union
+	switch x := m.Union.(type) {
+	case *MsgWithOneof_Title:
+		n += proto.SizeVarint(1<<3 | proto.WireBytes)
+		n += proto.SizeVarint(uint64(len(x.Title)))
+		n += len(x.Title)
+	case *MsgWithOneof_Salary:
+		n += proto.SizeVarint(2<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.Salary))
+	case nil:
+	default:
+		panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
+	}
+	return n
+}
+
 type Real struct {
 	Value            *float64                  `protobuf:"fixed64,1,opt,name=value" json:"value,omitempty"`
 	XXX_extensions   map[int32]proto.Extension `json:"-"`
diff --git a/proto/encode.go b/proto/encode.go
index 7321e1a..231b074 100644
--- a/proto/encode.go
+++ b/proto/encode.go
@@ -105,6 +105,11 @@
 	return nil
 }
 
+// SizeVarint returns the varint encoding size of an integer.
+func SizeVarint(x uint64) int {
+	return sizeVarint(x)
+}
+
 func sizeVarint(x uint64) (n int) {
 	for {
 		n++
@@ -1248,24 +1253,9 @@
 	}
 
 	// Factor in any oneof fields.
-	// TODO: This could be faster and use less reflection.
-	if prop.oneofMarshaler != nil {
-		sv := reflect.ValueOf(structPointer_Interface(base, prop.stype)).Elem()
-		for i := 0; i < prop.stype.NumField(); i++ {
-			fv := sv.Field(i)
-			if fv.Kind() != reflect.Interface || fv.IsNil() {
-				continue
-			}
-			if prop.stype.Field(i).Tag.Get("protobuf_oneof") == "" {
-				continue
-			}
-			spv := fv.Elem()         // interface -> *T
-			sv := spv.Elem()         // *T -> T
-			sf := sv.Type().Field(0) // StructField inside T
-			var prop Properties
-			prop.Init(sf.Type, "whatever", sf.Tag.Get("protobuf"), &sf)
-			n += prop.size(&prop, toStructPointer(spv))
-		}
+	if prop.oneofSizer != nil {
+		m := structPointer_Interface(base, prop.stype).(Message)
+		n += prop.oneofSizer(m)
 	}
 
 	return
diff --git a/proto/properties.go b/proto/properties.go
index b4aaac5..d4531c0 100644
--- a/proto/properties.go
+++ b/proto/properties.go
@@ -91,6 +91,9 @@
 // A oneofUnmarshaler does the unmarshaling for a oneof field in a message.
 type oneofUnmarshaler func(Message, int, int, *Buffer) (bool, error)
 
+// A oneofSizer does the sizing for all oneof fields in a message.
+type oneofSizer func(Message) int
+
 // tagMap is an optimization over map[int]int for typical protocol buffer
 // use-cases. Encoded protocol buffers are often in tag order with small tag
 // numbers.
@@ -142,6 +145,7 @@
 
 	oneofMarshaler   oneofMarshaler
 	oneofUnmarshaler oneofUnmarshaler
+	oneofSizer       oneofSizer
 	stype            reflect.Type
 
 	// OneofTypes contains information about the oneof fields in this message.
@@ -712,11 +716,11 @@
 	sort.Sort(prop)
 
 	type oneofMessage interface {
-		XXX_OneofFuncs() (func(Message, *Buffer) error, func(Message, int, int, *Buffer) (bool, error), []interface{})
+		XXX_OneofFuncs() (func(Message, *Buffer) error, func(Message, int, int, *Buffer) (bool, error), func(Message) int, []interface{})
 	}
 	if om, ok := reflect.Zero(reflect.PtrTo(t)).Interface().(oneofMessage); ok {
 		var oots []interface{}
-		prop.oneofMarshaler, prop.oneofUnmarshaler, oots = om.XXX_OneofFuncs()
+		prop.oneofMarshaler, prop.oneofUnmarshaler, prop.oneofSizer, oots = om.XXX_OneofFuncs()
 		prop.stype = t
 
 		// Interpret oneof metadata.
diff --git a/proto/size_test.go b/proto/size_test.go
index 40c393f..af1034d 100644
--- a/proto/size_test.go
+++ b/proto/size_test.go
@@ -125,10 +125,27 @@
 	{"map field with big key and val", &pb.MessageWithMap{StrToStr: map[string]string{strings.Repeat("x", 70): strings.Repeat("y", 70)}}},
 	{"map field with big numeric key", &pb.MessageWithMap{NameMapping: map[int32]string{0xf00d: "om nom nom"}}},
 
-	{"oneof not set", &pb.Communique{}},
-	{"oneof zero int32", &pb.Communique{Union: &pb.Communique_Number{0}}},
-	{"oneof int32", &pb.Communique{Union: &pb.Communique_Number{3}}},
-	{"oneof string", &pb.Communique{Union: &pb.Communique_Name{"Rhythmic Fman"}}},
+	{"oneof not set", &pb.Oneof{}},
+	{"oneof bool", &pb.Oneof{Union: &pb.Oneof_F_Bool{true}}},
+	{"oneof zero int32", &pb.Oneof{Union: &pb.Oneof_F_Int32{0}}},
+	{"oneof big int32", &pb.Oneof{Union: &pb.Oneof_F_Int32{1 << 20}}},
+	{"oneof int64", &pb.Oneof{Union: &pb.Oneof_F_Int64{42}}},
+	{"oneof fixed32", &pb.Oneof{Union: &pb.Oneof_F_Fixed32{43}}},
+	{"oneof fixed64", &pb.Oneof{Union: &pb.Oneof_F_Fixed64{44}}},
+	{"oneof uint32", &pb.Oneof{Union: &pb.Oneof_F_Uint32{45}}},
+	{"oneof uint64", &pb.Oneof{Union: &pb.Oneof_F_Uint64{46}}},
+	{"oneof float", &pb.Oneof{Union: &pb.Oneof_F_Float{47.1}}},
+	{"oneof double", &pb.Oneof{Union: &pb.Oneof_F_Double{48.9}}},
+	{"oneof string", &pb.Oneof{Union: &pb.Oneof_F_String{"Rhythmic Fman"}}},
+	{"oneof bytes", &pb.Oneof{Union: &pb.Oneof_F_Bytes{[]byte("let go")}}},
+	{"oneof sint32", &pb.Oneof{Union: &pb.Oneof_F_Sint32{50}}},
+	{"oneof sint64", &pb.Oneof{Union: &pb.Oneof_F_Sint64{51}}},
+	{"oneof enum", &pb.Oneof{Union: &pb.Oneof_F_Enum{pb.MyMessage_BLUE}}},
+	{"message for oneof", &pb.GoTestField{Label: String("k"), Type: String("v")}},
+	{"oneof message", &pb.Oneof{Union: &pb.Oneof_F_Message{&pb.GoTestField{Label: String("k"), Type: String("v")}}}},
+	{"oneof group", &pb.Oneof{Union: &pb.Oneof_FGroup{&pb.Oneof_F_Group{X: Int32(52)}}}},
+	{"oneof largest tag", &pb.Oneof{Union: &pb.Oneof_F_Largest_Tag{1}}},
+	{"multiple oneofs", &pb.Oneof{Union: &pb.Oneof_F_Int32{1}, Tormato: &pb.Oneof_Value{2}}},
 }
 
 func TestSize(t *testing.T) {
diff --git a/proto/testdata/test.pb.go b/proto/testdata/test.pb.go
index e7afee2..d8ab627 100644
--- a/proto/testdata/test.pb.go
+++ b/proto/testdata/test.pb.go
@@ -36,6 +36,7 @@
 	GroupNew
 	FloatingPoint
 	MessageWithMap
+	Oneof
 	Communique
 */
 package testdata
@@ -2074,6 +2075,589 @@
 	return nil
 }
 
+type Oneof struct {
+	// Types that are valid to be assigned to Union:
+	//	*Oneof_F_Bool
+	//	*Oneof_F_Int32
+	//	*Oneof_F_Int64
+	//	*Oneof_F_Fixed32
+	//	*Oneof_F_Fixed64
+	//	*Oneof_F_Uint32
+	//	*Oneof_F_Uint64
+	//	*Oneof_F_Float
+	//	*Oneof_F_Double
+	//	*Oneof_F_String
+	//	*Oneof_F_Bytes
+	//	*Oneof_F_Sint32
+	//	*Oneof_F_Sint64
+	//	*Oneof_F_Enum
+	//	*Oneof_F_Message
+	//	*Oneof_FGroup
+	//	*Oneof_F_Largest_Tag
+	Union isOneof_Union `protobuf_oneof:"union"`
+	// Types that are valid to be assigned to Tormato:
+	//	*Oneof_Value
+	Tormato          isOneof_Tormato `protobuf_oneof:"tormato"`
+	XXX_unrecognized []byte          `json:"-"`
+}
+
+func (m *Oneof) Reset()                    { *m = Oneof{} }
+func (m *Oneof) String() string            { return proto.CompactTextString(m) }
+func (*Oneof) ProtoMessage()               {}
+func (*Oneof) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} }
+
+type isOneof_Union interface {
+	isOneof_Union()
+}
+type isOneof_Tormato interface {
+	isOneof_Tormato()
+}
+
+type Oneof_F_Bool struct {
+	F_Bool bool `protobuf:"varint,1,opt,name=F_Bool,oneof"`
+}
+type Oneof_F_Int32 struct {
+	F_Int32 int32 `protobuf:"varint,2,opt,name=F_Int32,oneof"`
+}
+type Oneof_F_Int64 struct {
+	F_Int64 int64 `protobuf:"varint,3,opt,name=F_Int64,oneof"`
+}
+type Oneof_F_Fixed32 struct {
+	F_Fixed32 uint32 `protobuf:"fixed32,4,opt,name=F_Fixed32,oneof"`
+}
+type Oneof_F_Fixed64 struct {
+	F_Fixed64 uint64 `protobuf:"fixed64,5,opt,name=F_Fixed64,oneof"`
+}
+type Oneof_F_Uint32 struct {
+	F_Uint32 uint32 `protobuf:"varint,6,opt,name=F_Uint32,oneof"`
+}
+type Oneof_F_Uint64 struct {
+	F_Uint64 uint64 `protobuf:"varint,7,opt,name=F_Uint64,oneof"`
+}
+type Oneof_F_Float struct {
+	F_Float float32 `protobuf:"fixed32,8,opt,name=F_Float,oneof"`
+}
+type Oneof_F_Double struct {
+	F_Double float64 `protobuf:"fixed64,9,opt,name=F_Double,oneof"`
+}
+type Oneof_F_String struct {
+	F_String string `protobuf:"bytes,10,opt,name=F_String,oneof"`
+}
+type Oneof_F_Bytes struct {
+	F_Bytes []byte `protobuf:"bytes,11,opt,name=F_Bytes,oneof"`
+}
+type Oneof_F_Sint32 struct {
+	F_Sint32 int32 `protobuf:"zigzag32,12,opt,name=F_Sint32,oneof"`
+}
+type Oneof_F_Sint64 struct {
+	F_Sint64 int64 `protobuf:"zigzag64,13,opt,name=F_Sint64,oneof"`
+}
+type Oneof_F_Enum struct {
+	F_Enum MyMessage_Color `protobuf:"varint,14,opt,name=F_Enum,enum=testdata.MyMessage_Color,oneof"`
+}
+type Oneof_F_Message struct {
+	F_Message *GoTestField `protobuf:"bytes,15,opt,name=F_Message,oneof"`
+}
+type Oneof_FGroup struct {
+	FGroup *Oneof_F_Group `protobuf:"group,16,opt,name=F_Group,oneof"`
+}
+type Oneof_F_Largest_Tag struct {
+	F_Largest_Tag int32 `protobuf:"varint,536870911,opt,name=F_Largest_Tag,oneof"`
+}
+type Oneof_Value struct {
+	Value int32 `protobuf:"varint,100,opt,name=value,oneof"`
+}
+
+func (*Oneof_F_Bool) isOneof_Union()        {}
+func (*Oneof_F_Int32) isOneof_Union()       {}
+func (*Oneof_F_Int64) isOneof_Union()       {}
+func (*Oneof_F_Fixed32) isOneof_Union()     {}
+func (*Oneof_F_Fixed64) isOneof_Union()     {}
+func (*Oneof_F_Uint32) isOneof_Union()      {}
+func (*Oneof_F_Uint64) isOneof_Union()      {}
+func (*Oneof_F_Float) isOneof_Union()       {}
+func (*Oneof_F_Double) isOneof_Union()      {}
+func (*Oneof_F_String) isOneof_Union()      {}
+func (*Oneof_F_Bytes) isOneof_Union()       {}
+func (*Oneof_F_Sint32) isOneof_Union()      {}
+func (*Oneof_F_Sint64) isOneof_Union()      {}
+func (*Oneof_F_Enum) isOneof_Union()        {}
+func (*Oneof_F_Message) isOneof_Union()     {}
+func (*Oneof_FGroup) isOneof_Union()        {}
+func (*Oneof_F_Largest_Tag) isOneof_Union() {}
+func (*Oneof_Value) isOneof_Tormato()       {}
+
+func (m *Oneof) GetUnion() isOneof_Union {
+	if m != nil {
+		return m.Union
+	}
+	return nil
+}
+func (m *Oneof) GetTormato() isOneof_Tormato {
+	if m != nil {
+		return m.Tormato
+	}
+	return nil
+}
+
+func (m *Oneof) GetF_Bool() bool {
+	if x, ok := m.GetUnion().(*Oneof_F_Bool); ok {
+		return x.F_Bool
+	}
+	return false
+}
+
+func (m *Oneof) GetF_Int32() int32 {
+	if x, ok := m.GetUnion().(*Oneof_F_Int32); ok {
+		return x.F_Int32
+	}
+	return 0
+}
+
+func (m *Oneof) GetF_Int64() int64 {
+	if x, ok := m.GetUnion().(*Oneof_F_Int64); ok {
+		return x.F_Int64
+	}
+	return 0
+}
+
+func (m *Oneof) GetF_Fixed32() uint32 {
+	if x, ok := m.GetUnion().(*Oneof_F_Fixed32); ok {
+		return x.F_Fixed32
+	}
+	return 0
+}
+
+func (m *Oneof) GetF_Fixed64() uint64 {
+	if x, ok := m.GetUnion().(*Oneof_F_Fixed64); ok {
+		return x.F_Fixed64
+	}
+	return 0
+}
+
+func (m *Oneof) GetF_Uint32() uint32 {
+	if x, ok := m.GetUnion().(*Oneof_F_Uint32); ok {
+		return x.F_Uint32
+	}
+	return 0
+}
+
+func (m *Oneof) GetF_Uint64() uint64 {
+	if x, ok := m.GetUnion().(*Oneof_F_Uint64); ok {
+		return x.F_Uint64
+	}
+	return 0
+}
+
+func (m *Oneof) GetF_Float() float32 {
+	if x, ok := m.GetUnion().(*Oneof_F_Float); ok {
+		return x.F_Float
+	}
+	return 0
+}
+
+func (m *Oneof) GetF_Double() float64 {
+	if x, ok := m.GetUnion().(*Oneof_F_Double); ok {
+		return x.F_Double
+	}
+	return 0
+}
+
+func (m *Oneof) GetF_String() string {
+	if x, ok := m.GetUnion().(*Oneof_F_String); ok {
+		return x.F_String
+	}
+	return ""
+}
+
+func (m *Oneof) GetF_Bytes() []byte {
+	if x, ok := m.GetUnion().(*Oneof_F_Bytes); ok {
+		return x.F_Bytes
+	}
+	return nil
+}
+
+func (m *Oneof) GetF_Sint32() int32 {
+	if x, ok := m.GetUnion().(*Oneof_F_Sint32); ok {
+		return x.F_Sint32
+	}
+	return 0
+}
+
+func (m *Oneof) GetF_Sint64() int64 {
+	if x, ok := m.GetUnion().(*Oneof_F_Sint64); ok {
+		return x.F_Sint64
+	}
+	return 0
+}
+
+func (m *Oneof) GetF_Enum() MyMessage_Color {
+	if x, ok := m.GetUnion().(*Oneof_F_Enum); ok {
+		return x.F_Enum
+	}
+	return MyMessage_RED
+}
+
+func (m *Oneof) GetF_Message() *GoTestField {
+	if x, ok := m.GetUnion().(*Oneof_F_Message); ok {
+		return x.F_Message
+	}
+	return nil
+}
+
+func (m *Oneof) GetFGroup() *Oneof_F_Group {
+	if x, ok := m.GetUnion().(*Oneof_FGroup); ok {
+		return x.FGroup
+	}
+	return nil
+}
+
+func (m *Oneof) GetF_Largest_Tag() int32 {
+	if x, ok := m.GetUnion().(*Oneof_F_Largest_Tag); ok {
+		return x.F_Largest_Tag
+	}
+	return 0
+}
+
+func (m *Oneof) GetValue() int32 {
+	if x, ok := m.GetTormato().(*Oneof_Value); ok {
+		return x.Value
+	}
+	return 0
+}
+
+// XXX_OneofFuncs is for the internal use of the proto package.
+func (*Oneof) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
+	return _Oneof_OneofMarshaler, _Oneof_OneofUnmarshaler, _Oneof_OneofSizer, []interface{}{
+		(*Oneof_F_Bool)(nil),
+		(*Oneof_F_Int32)(nil),
+		(*Oneof_F_Int64)(nil),
+		(*Oneof_F_Fixed32)(nil),
+		(*Oneof_F_Fixed64)(nil),
+		(*Oneof_F_Uint32)(nil),
+		(*Oneof_F_Uint64)(nil),
+		(*Oneof_F_Float)(nil),
+		(*Oneof_F_Double)(nil),
+		(*Oneof_F_String)(nil),
+		(*Oneof_F_Bytes)(nil),
+		(*Oneof_F_Sint32)(nil),
+		(*Oneof_F_Sint64)(nil),
+		(*Oneof_F_Enum)(nil),
+		(*Oneof_F_Message)(nil),
+		(*Oneof_FGroup)(nil),
+		(*Oneof_F_Largest_Tag)(nil),
+		(*Oneof_Value)(nil),
+	}
+}
+
+func _Oneof_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
+	m := msg.(*Oneof)
+	// union
+	switch x := m.Union.(type) {
+	case *Oneof_F_Bool:
+		t := uint64(0)
+		if x.F_Bool {
+			t = 1
+		}
+		b.EncodeVarint(1<<3 | proto.WireVarint)
+		b.EncodeVarint(t)
+	case *Oneof_F_Int32:
+		b.EncodeVarint(2<<3 | proto.WireVarint)
+		b.EncodeVarint(uint64(x.F_Int32))
+	case *Oneof_F_Int64:
+		b.EncodeVarint(3<<3 | proto.WireVarint)
+		b.EncodeVarint(uint64(x.F_Int64))
+	case *Oneof_F_Fixed32:
+		b.EncodeVarint(4<<3 | proto.WireFixed32)
+		b.EncodeFixed32(uint64(x.F_Fixed32))
+	case *Oneof_F_Fixed64:
+		b.EncodeVarint(5<<3 | proto.WireFixed64)
+		b.EncodeFixed64(uint64(x.F_Fixed64))
+	case *Oneof_F_Uint32:
+		b.EncodeVarint(6<<3 | proto.WireVarint)
+		b.EncodeVarint(uint64(x.F_Uint32))
+	case *Oneof_F_Uint64:
+		b.EncodeVarint(7<<3 | proto.WireVarint)
+		b.EncodeVarint(uint64(x.F_Uint64))
+	case *Oneof_F_Float:
+		b.EncodeVarint(8<<3 | proto.WireFixed32)
+		b.EncodeFixed32(uint64(math.Float32bits(x.F_Float)))
+	case *Oneof_F_Double:
+		b.EncodeVarint(9<<3 | proto.WireFixed64)
+		b.EncodeFixed64(math.Float64bits(x.F_Double))
+	case *Oneof_F_String:
+		b.EncodeVarint(10<<3 | proto.WireBytes)
+		b.EncodeStringBytes(x.F_String)
+	case *Oneof_F_Bytes:
+		b.EncodeVarint(11<<3 | proto.WireBytes)
+		b.EncodeRawBytes(x.F_Bytes)
+	case *Oneof_F_Sint32:
+		b.EncodeVarint(12<<3 | proto.WireVarint)
+		b.EncodeZigzag32(uint64(x.F_Sint32))
+	case *Oneof_F_Sint64:
+		b.EncodeVarint(13<<3 | proto.WireVarint)
+		b.EncodeZigzag64(uint64(x.F_Sint64))
+	case *Oneof_F_Enum:
+		b.EncodeVarint(14<<3 | proto.WireVarint)
+		b.EncodeVarint(uint64(x.F_Enum))
+	case *Oneof_F_Message:
+		b.EncodeVarint(15<<3 | proto.WireBytes)
+		if err := b.EncodeMessage(x.F_Message); err != nil {
+			return err
+		}
+	case *Oneof_FGroup:
+		b.EncodeVarint(16<<3 | proto.WireStartGroup)
+		if err := b.Marshal(x.FGroup); err != nil {
+			return err
+		}
+		b.EncodeVarint(16<<3 | proto.WireEndGroup)
+	case *Oneof_F_Largest_Tag:
+		b.EncodeVarint(536870911<<3 | proto.WireVarint)
+		b.EncodeVarint(uint64(x.F_Largest_Tag))
+	case nil:
+	default:
+		return fmt.Errorf("Oneof.Union has unexpected type %T", x)
+	}
+	// tormato
+	switch x := m.Tormato.(type) {
+	case *Oneof_Value:
+		b.EncodeVarint(100<<3 | proto.WireVarint)
+		b.EncodeVarint(uint64(x.Value))
+	case nil:
+	default:
+		return fmt.Errorf("Oneof.Tormato has unexpected type %T", x)
+	}
+	return nil
+}
+
+func _Oneof_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
+	m := msg.(*Oneof)
+	switch tag {
+	case 1: // union.F_Bool
+		if wire != proto.WireVarint {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeVarint()
+		m.Union = &Oneof_F_Bool{x != 0}
+		return true, err
+	case 2: // union.F_Int32
+		if wire != proto.WireVarint {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeVarint()
+		m.Union = &Oneof_F_Int32{int32(x)}
+		return true, err
+	case 3: // union.F_Int64
+		if wire != proto.WireVarint {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeVarint()
+		m.Union = &Oneof_F_Int64{int64(x)}
+		return true, err
+	case 4: // union.F_Fixed32
+		if wire != proto.WireFixed32 {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeFixed32()
+		m.Union = &Oneof_F_Fixed32{uint32(x)}
+		return true, err
+	case 5: // union.F_Fixed64
+		if wire != proto.WireFixed64 {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeFixed64()
+		m.Union = &Oneof_F_Fixed64{x}
+		return true, err
+	case 6: // union.F_Uint32
+		if wire != proto.WireVarint {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeVarint()
+		m.Union = &Oneof_F_Uint32{uint32(x)}
+		return true, err
+	case 7: // union.F_Uint64
+		if wire != proto.WireVarint {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeVarint()
+		m.Union = &Oneof_F_Uint64{x}
+		return true, err
+	case 8: // union.F_Float
+		if wire != proto.WireFixed32 {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeFixed32()
+		m.Union = &Oneof_F_Float{math.Float32frombits(uint32(x))}
+		return true, err
+	case 9: // union.F_Double
+		if wire != proto.WireFixed64 {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeFixed64()
+		m.Union = &Oneof_F_Double{math.Float64frombits(x)}
+		return true, err
+	case 10: // union.F_String
+		if wire != proto.WireBytes {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeStringBytes()
+		m.Union = &Oneof_F_String{x}
+		return true, err
+	case 11: // union.F_Bytes
+		if wire != proto.WireBytes {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeRawBytes(true)
+		m.Union = &Oneof_F_Bytes{x}
+		return true, err
+	case 12: // union.F_Sint32
+		if wire != proto.WireVarint {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeZigzag32()
+		m.Union = &Oneof_F_Sint32{int32(x)}
+		return true, err
+	case 13: // union.F_Sint64
+		if wire != proto.WireVarint {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeZigzag64()
+		m.Union = &Oneof_F_Sint64{int64(x)}
+		return true, err
+	case 14: // union.F_Enum
+		if wire != proto.WireVarint {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeVarint()
+		m.Union = &Oneof_F_Enum{MyMessage_Color(x)}
+		return true, err
+	case 15: // union.F_Message
+		if wire != proto.WireBytes {
+			return true, proto.ErrInternalBadWireType
+		}
+		msg := new(GoTestField)
+		err := b.DecodeMessage(msg)
+		m.Union = &Oneof_F_Message{msg}
+		return true, err
+	case 16: // union.f_group
+		if wire != proto.WireStartGroup {
+			return true, proto.ErrInternalBadWireType
+		}
+		msg := new(Oneof_F_Group)
+		err := b.DecodeGroup(msg)
+		m.Union = &Oneof_FGroup{msg}
+		return true, err
+	case 536870911: // union.F_Largest_Tag
+		if wire != proto.WireVarint {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeVarint()
+		m.Union = &Oneof_F_Largest_Tag{int32(x)}
+		return true, err
+	case 100: // tormato.value
+		if wire != proto.WireVarint {
+			return true, proto.ErrInternalBadWireType
+		}
+		x, err := b.DecodeVarint()
+		m.Tormato = &Oneof_Value{int32(x)}
+		return true, err
+	default:
+		return false, nil
+	}
+}
+
+func _Oneof_OneofSizer(msg proto.Message) (n int) {
+	m := msg.(*Oneof)
+	// union
+	switch x := m.Union.(type) {
+	case *Oneof_F_Bool:
+		n += proto.SizeVarint(1<<3 | proto.WireVarint)
+		n += 1
+	case *Oneof_F_Int32:
+		n += proto.SizeVarint(2<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.F_Int32))
+	case *Oneof_F_Int64:
+		n += proto.SizeVarint(3<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.F_Int64))
+	case *Oneof_F_Fixed32:
+		n += proto.SizeVarint(4<<3 | proto.WireFixed32)
+		n += 4
+	case *Oneof_F_Fixed64:
+		n += proto.SizeVarint(5<<3 | proto.WireFixed64)
+		n += 8
+	case *Oneof_F_Uint32:
+		n += proto.SizeVarint(6<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.F_Uint32))
+	case *Oneof_F_Uint64:
+		n += proto.SizeVarint(7<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.F_Uint64))
+	case *Oneof_F_Float:
+		n += proto.SizeVarint(8<<3 | proto.WireFixed32)
+		n += 4
+	case *Oneof_F_Double:
+		n += proto.SizeVarint(9<<3 | proto.WireFixed64)
+		n += 8
+	case *Oneof_F_String:
+		n += proto.SizeVarint(10<<3 | proto.WireBytes)
+		n += proto.SizeVarint(uint64(len(x.F_String)))
+		n += len(x.F_String)
+	case *Oneof_F_Bytes:
+		n += proto.SizeVarint(11<<3 | proto.WireBytes)
+		n += proto.SizeVarint(uint64(len(x.F_Bytes)))
+		n += len(x.F_Bytes)
+	case *Oneof_F_Sint32:
+		n += proto.SizeVarint(12<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64((uint32(x.F_Sint32) << 1) ^ uint32((int32(x.F_Sint32) >> 31))))
+	case *Oneof_F_Sint64:
+		n += proto.SizeVarint(13<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(uint64(x.F_Sint64<<1) ^ uint64((int64(x.F_Sint64) >> 63))))
+	case *Oneof_F_Enum:
+		n += proto.SizeVarint(14<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.F_Enum))
+	case *Oneof_F_Message:
+		s := proto.Size(x.F_Message)
+		n += proto.SizeVarint(15<<3 | proto.WireBytes)
+		n += proto.SizeVarint(uint64(s))
+		n += s
+	case *Oneof_FGroup:
+		n += proto.SizeVarint(16<<3 | proto.WireStartGroup)
+		n += proto.Size(x.FGroup)
+		n += proto.SizeVarint(16<<3 | proto.WireEndGroup)
+	case *Oneof_F_Largest_Tag:
+		n += proto.SizeVarint(536870911<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.F_Largest_Tag))
+	case nil:
+	default:
+		panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
+	}
+	// tormato
+	switch x := m.Tormato.(type) {
+	case *Oneof_Value:
+		n += proto.SizeVarint(100<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.Value))
+	case nil:
+	default:
+		panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
+	}
+	return n
+}
+
+type Oneof_F_Group struct {
+	X                *int32 `protobuf:"varint,17,opt,name=x" json:"x,omitempty"`
+	XXX_unrecognized []byte `json:"-"`
+}
+
+func (m *Oneof_F_Group) Reset()         { *m = Oneof_F_Group{} }
+func (m *Oneof_F_Group) String() string { return proto.CompactTextString(m) }
+func (*Oneof_F_Group) ProtoMessage()    {}
+
+func (m *Oneof_F_Group) GetX() int32 {
+	if m != nil && m.X != nil {
+		return *m.X
+	}
+	return 0
+}
+
 type Communique struct {
 	MakeMeCry *bool `protobuf:"varint,1,opt,name=make_me_cry" json:"make_me_cry,omitempty"`
 	// This is a oneof, called "union".
@@ -2092,7 +2676,7 @@
 func (m *Communique) Reset()                    { *m = Communique{} }
 func (m *Communique) String() string            { return proto.CompactTextString(m) }
 func (*Communique) ProtoMessage()               {}
-func (*Communique) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} }
+func (*Communique) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} }
 
 type isCommunique_Union interface {
 	isCommunique_Union()
@@ -2181,8 +2765,8 @@
 }
 
 // XXX_OneofFuncs is for the internal use of the proto package.
-func (*Communique) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), []interface{}) {
-	return _Communique_OneofMarshaler, _Communique_OneofUnmarshaler, []interface{}{
+func (*Communique) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
+	return _Communique_OneofMarshaler, _Communique_OneofUnmarshaler, _Communique_OneofSizer, []interface{}{
 		(*Communique_Number)(nil),
 		(*Communique_Name)(nil),
 		(*Communique_Data)(nil),
@@ -2274,6 +2858,39 @@
 	}
 }
 
+func _Communique_OneofSizer(msg proto.Message) (n int) {
+	m := msg.(*Communique)
+	// union
+	switch x := m.Union.(type) {
+	case *Communique_Number:
+		n += proto.SizeVarint(5<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.Number))
+	case *Communique_Name:
+		n += proto.SizeVarint(6<<3 | proto.WireBytes)
+		n += proto.SizeVarint(uint64(len(x.Name)))
+		n += len(x.Name)
+	case *Communique_Data:
+		n += proto.SizeVarint(7<<3 | proto.WireBytes)
+		n += proto.SizeVarint(uint64(len(x.Data)))
+		n += len(x.Data)
+	case *Communique_TempC:
+		n += proto.SizeVarint(8<<3 | proto.WireFixed64)
+		n += 8
+	case *Communique_Col:
+		n += proto.SizeVarint(9<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.Col))
+	case *Communique_Msg:
+		s := proto.Size(x.Msg)
+		n += proto.SizeVarint(10<<3 | proto.WireBytes)
+		n += proto.SizeVarint(uint64(s))
+		n += s
+	case nil:
+	default:
+		panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
+	}
+	return n
+}
+
 var E_Greeting = &proto.ExtensionDesc{
 	ExtendedType:  (*MyMessage)(nil),
 	ExtensionType: ([]string)(nil),
@@ -2992,6 +3609,8 @@
 	proto.RegisterType((*GroupNew_G)(nil), "testdata.GroupNew.G")
 	proto.RegisterType((*FloatingPoint)(nil), "testdata.FloatingPoint")
 	proto.RegisterType((*MessageWithMap)(nil), "testdata.MessageWithMap")
+	proto.RegisterType((*Oneof)(nil), "testdata.Oneof")
+	proto.RegisterType((*Oneof_F_Group)(nil), "testdata.Oneof.F_Group")
 	proto.RegisterType((*Communique)(nil), "testdata.Communique")
 	proto.RegisterEnum("testdata.FOO", FOO_name, FOO_value)
 	proto.RegisterEnum("testdata.GoTest_KIND", GoTest_KIND_name, GoTest_KIND_value)
@@ -3090,204 +3709,214 @@
 }
 
 var fileDescriptor0 = []byte{
-	// 3179 bytes of a gzipped FileDescriptorProto
-	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x94, 0x58, 0x59, 0x57, 0x5b, 0xd7,
-	0x15, 0xf6, 0xd5, 0xac, 0x23, 0x01, 0x97, 0x8b, 0x8d, 0x05, 0x99, 0xf0, 0x75, 0xe2, 0x3a, 0x76,
-	0x42, 0x40, 0x08, 0x8c, 0x6f, 0x57, 0x57, 0x6a, 0x6c, 0x89, 0xd0, 0x18, 0x44, 0x01, 0x37, 0x2b,
-	0xe9, 0x6a, 0xb5, 0x04, 0x5c, 0x40, 0x41, 0xd2, 0x95, 0xa5, 0xab, 0xc6, 0xf4, 0xa9, 0xaf, 0x7d,
-	0xe8, 0x43, 0xdb, 0xd5, 0xb5, 0xb2, 0xfa, 0x1f, 0xda, 0xbe, 0xf7, 0x17, 0x34, 0xf3, 0x3c, 0x74,
-	0x9e, 0xe7, 0x39, 0x6d, 0x93, 0xb6, 0x2f, 0xed, 0xde, 0xfb, 0xdc, 0x51, 0xd2, 0x39, 0x60, 0x1e,
-	0x6c, 0xe9, 0x7e, 0xfb, 0xdb, 0xe7, 0x9c, 0x7d, 0xf6, 0xf0, 0x5d, 0x31, 0x66, 0x9b, 0x1d, 0x7b,
-	0xba, 0xd5, 0xb6, 0x6c, 0x4b, 0x4b, 0xe1, 0xe7, 0xdd, 0xaa, 0x5d, 0xd5, 0x1f, 0x64, 0x89, 0x65,
-	0xab, 0xd8, 0xec, 0x36, 0xb4, 0x49, 0x16, 0xdd, 0xb3, 0xac, 0x9c, 0x32, 0x15, 0xb9, 0x38, 0x9c,
-	0x1f, 0x9a, 0x76, 0x2d, 0xa6, 0x4b, 0xe5, 0xb2, 0x7e, 0x89, 0x65, 0x96, 0xad, 0x2d, 0x78, 0x52,
-	0xaa, 0x99, 0xf5, 0x5d, 0x6d, 0x88, 0xc5, 0x6f, 0x56, 0xb7, 0xcd, 0x3a, 0x19, 0xa7, 0xb5, 0x2c,
-	0x8b, 0x6d, 0x1d, 0xb5, 0xcc, 0x5c, 0x04, 0xbf, 0xe9, 0x5f, 0x3e, 0x8d, 0x2e, 0xd1, 0x58, 0x3b,
-	0xcf, 0x62, 0x4f, 0xd6, 0x9a, 0xbb, 0x8e, 0xcf, 0x33, 0xbe, 0x4f, 0x8e, 0x4f, 0x3f, 0xb9, 0xb2,
-	0x76, 0x03, 0x9d, 0x6d, 0x55, 0xb7, 0xeb, 0x48, 0x57, 0xc0, 0x19, 0x7c, 0x5d, 0xaf, 0xb6, 0xab,
-	0x8d, 0x5c, 0x14, 0xbe, 0xc6, 0xb5, 0x47, 0xd8, 0xd0, 0x86, 0x79, 0xbb, 0x5b, 0x6b, 0x9b, 0xbb,
-	0xb4, 0x76, 0x2e, 0x06, 0xbe, 0x32, 0xfd, 0xbe, 0xf8, 0xc6, 0xc8, 0xba, 0x65, 0x56, 0x6d, 0xd7,
-	0x3a, 0x3e, 0x15, 0x95, 0x5a, 0x97, 0x5b, 0x76, 0xcd, 0x6a, 0x56, 0xeb, 0xdc, 0x3a, 0x01, 0x4b,
-	0x0a, 0xad, 0xcf, 0xb2, 0x91, 0x52, 0x65, 0xc9, 0xb2, 0xea, 0x95, 0xb6, 0xb3, 0xa1, 0x1c, 0x83,
-	0xbd, 0xa4, 0xb4, 0x1c, 0x53, 0x4b, 0x95, 0x95, 0xa6, 0x3d, 0x97, 0xf7, 0x91, 0x0c, 0x20, 0x71,
-	0x0f, 0x59, 0x28, 0xf8, 0x48, 0x16, 0x90, 0x28, 0x04, 0x5b, 0x2b, 0x55, 0x4a, 0xb5, 0x3b, 0xe6,
-	0x6e, 0x90, 0x35, 0x04, 0x58, 0x32, 0x80, 0x05, 0x79, 0xc3, 0x80, 0x25, 0xb4, 0x09, 0x36, 0x5a,
-	0xaa, 0xdc, 0xaa, 0x85, 0x17, 0x1b, 0x01, 0x68, 0xc8, 0x87, 0x82, 0x2c, 0x15, 0xa0, 0x18, 0xdf,
-	0x47, 0xa9, 0x6e, 0x55, 0x6d, 0x1f, 0x19, 0x05, 0x24, 0xc2, 0x49, 0x37, 0xac, 0x2e, 0xc4, 0xdf,
-	0x87, 0x34, 0x80, 0x14, 0x0e, 0x6d, 0xda, 0xed, 0x5a, 0x73, 0xdf, 0x87, 0xc6, 0xe8, 0xc2, 0xc9,
-	0xdf, 0xd2, 0x11, 0x84, 0xc9, 0x47, 0x4c, 0x40, 0xb2, 0x0e, 0xa9, 0x67, 0x7f, 0x7b, 0x00, 0x8d,
-	0xfa, 0x50, 0x70, 0x7f, 0xfb, 0x00, 0x69, 0xa1, 0xd0, 0xf2, 0xdb, 0xcb, 0x9d, 0x86, 0x8b, 0xeb,
-	0x09, 0xad, 0x83, 0x9c, 0x01, 0xa4, 0x27, 0xb4, 0x0e, 0x32, 0x0e, 0x48, 0x5f, 0x68, 0x1d, 0xec,
-	0x2c, 0x60, 0x7d, 0xa1, 0x75, 0xb0, 0x1c, 0x60, 0xbd, 0xa1, 0x75, 0xa0, 0x09, 0x80, 0x7a, 0x43,
-	0xeb, 0x40, 0x93, 0x00, 0xf5, 0x84, 0xd6, 0x41, 0xee, 0x01, 0xa4, 0x37, 0xb4, 0x0e, 0x74, 0x2f,
-	0x40, 0xbd, 0xa1, 0x75, 0xa0, 0xfb, 0x00, 0x4a, 0x03, 0x14, 0x08, 0xad, 0x83, 0xbc, 0xa0, 0x00,
-	0x94, 0x85, 0xcd, 0x07, 0x63, 0xeb, 0x60, 0x2f, 0x22, 0x36, 0xea, 0x63, 0xc1, 0x1d, 0xbe, 0x84,
-	0x58, 0x30, 0xba, 0x96, 0x93, 0xed, 0xb9, 0xfb, 0x21, 0xd1, 0x43, 0xd1, 0xf5, 0x90, 0x07, 0xa8,
-	0xea, 0x02, 0xd1, 0xf5, 0x90, 0x29, 0x40, 0x7a, 0xa2, 0xeb, 0x61, 0xe7, 0x00, 0xeb, 0x89, 0xae,
-	0x87, 0xe9, 0x80, 0x85, 0xa3, 0xeb, 0x41, 0xe7, 0x01, 0x0a, 0x47, 0xd7, 0x83, 0x1e, 0x04, 0x28,
-	0x14, 0x5d, 0x0f, 0x79, 0x08, 0x90, 0x70, 0x74, 0x3d, 0xe8, 0x02, 0x40, 0xe1, 0xe8, 0x7a, 0xd0,
-	0xc7, 0xa8, 0xb9, 0x04, 0xa2, 0xeb, 0x21, 0xdf, 0xc2, 0xbe, 0x13, 0x8e, 0xae, 0x87, 0x7d, 0x1b,
-	0xb1, 0x70, 0x74, 0x3d, 0xec, 0x3b, 0x88, 0x69, 0xda, 0xfd, 0xe4, 0x12, 0xa3, 0xbb, 0x6b, 0xee,
-	0x55, 0xbb, 0x75, 0x0c, 0xfc, 0x45, 0x0c, 0xaf, 0x11, 0xb3, 0xdb, 0x5d, 0x53, 0xbb, 0x0f, 0xb9,
-	0x3c, 0xc8, 0xbe, 0xc1, 0xc3, 0x18, 0x65, 0x23, 0x32, 0x97, 0xf7, 0x60, 0xf0, 0xec, 0xc3, 0x97,
-	0x30, 0xd4, 0x46, 0x64, 0xa1, 0xa0, 0x4d, 0xb1, 0x31, 0x3f, 0xdc, 0xbe, 0xc1, 0x65, 0x8c, 0xb7,
-	0x11, 0x9d, 0xcb, 0xcf, 0x04, 0x2c, 0x42, 0x2e, 0x1e, 0xc1, 0xa8, 0x1b, 0xd1, 0x85, 0x02, 0x5a,
-	0x68, 0x5e, 0xe8, 0x7d, 0x83, 0x47, 0x31, 0xf6, 0x46, 0x0c, 0x5c, 0x04, 0x2c, 0x42, 0x2e, 0xa6,
-	0xf1, 0x0a, 0x8c, 0x18, 0xb8, 0x98, 0xd1, 0xce, 0xe1, 0x36, 0xf9, 0x45, 0xf8, 0x06, 0x8f, 0xe1,
-	0x4d, 0x18, 0x89, 0xb9, 0xd9, 0xc2, 0xec, 0xfc, 0x55, 0x4d, 0x47, 0x27, 0xce, 0x8d, 0xf8, 0x36,
-	0x33, 0x78, 0x25, 0x46, 0x22, 0x7f, 0x65, 0x76, 0x31, 0xbf, 0x08, 0x1d, 0x57, 0xf3, 0xae, 0xc6,
-	0xb7, 0x99, 0xc5, 0xbb, 0x31, 0xd4, 0x03, 0xb3, 0x5e, 0xb7, 0x1e, 0x99, 0xd2, 0x9f, 0xb3, 0xda,
-	0xf5, 0xdd, 0x73, 0xe0, 0xee, 0x3c, 0x2e, 0xca, 0x6f, 0xcb, 0x37, 0xfe, 0x2a, 0xce, 0x85, 0xac,
-	0x91, 0x5c, 0xaa, 0xed, 0x37, 0xad, 0x8e, 0xc9, 0xf7, 0xbe, 0xd9, 0x7b, 0xba, 0xaf, 0xa1, 0xd5,
-	0xa8, 0x11, 0x7d, 0x14, 0x42, 0xec, 0x59, 0x84, 0x4e, 0xf7, 0x75, 0xb4, 0xd0, 0xc0, 0x02, 0xa2,
-	0xac, 0xb3, 0xf1, 0x9e, 0xfe, 0x53, 0x69, 0x55, 0x77, 0x0e, 0xc1, 0x2a, 0x8f, 0x6d, 0x68, 0x29,
-	0xa2, 0x2a, 0xb0, 0x99, 0xb3, 0xbd, 0xad, 0xc8, 0x35, 0x9a, 0xc3, 0x8e, 0x14, 0x32, 0x0a, 0x54,
-	0xa1, 0x6b, 0x54, 0xc0, 0xe6, 0x44, 0x46, 0x0f, 0xb1, 0x89, 0xfe, 0x06, 0xe5, 0x9a, 0xcd, 0x63,
-	0x9f, 0xea, 0x31, 0x1b, 0xe0, 0x6d, 0x01, 0x5b, 0x16, 0x99, 0x3d, 0xc8, 0x72, 0x7d, 0x6d, 0xcb,
-	0xb5, 0xba, 0x82, 0xdd, 0x2b, 0x6c, 0x35, 0xc0, 0xd7, 0x22, 0x36, 0x32, 0x7f, 0xfb, 0xe1, 0x66,
-	0xe6, 0x1a, 0x5d, 0xc5, 0x9e, 0xe6, 0xbb, 0xea, 0xe9, 0x6b, 0xae, 0x95, 0x81, 0xed, 0xcd, 0xd9,
-	0x7d, 0xae, 0xaf, 0x59, 0xb9, 0x56, 0x1f, 0x46, 0xb1, 0x67, 0x85, 0xcd, 0x06, 0xec, 0xeb, 0x23,
-	0x34, 0xd3, 0xc8, 0x6c, 0x9e, 0x0d, 0xb9, 0x23, 0x63, 0xbf, 0x6d, 0x75, 0x5b, 0xb9, 0x12, 0xcc,
-	0x0d, 0x96, 0xbf, 0xbf, 0x4f, 0x51, 0xb8, 0x5a, 0x61, 0x19, 0xad, 0x38, 0x8d, 0x3b, 0xe5, 0xb4,
-	0x75, 0xf0, 0x38, 0x98, 0xc6, 0xad, 0x3c, 0x9a, 0x5b, 0xe5, 0x9c, 0xf6, 0x0c, 0xa4, 0xca, 0x20,
-	0x9a, 0xab, 0x1e, 0x88, 0x36, 0x79, 0xc1, 0x97, 0x2a, 0xdc, 0xcf, 0x99, 0x5e, 0xed, 0xb2, 0x8c,
-	0xd3, 0x93, 0xdb, 0x05, 0xd7, 0xeb, 0xb3, 0xfb, 0xb4, 0x6b, 0x17, 0x5a, 0xa0, 0xdf, 0xee, 0xb3,
-	0x24, 0xb8, 0x9e, 0x57, 0x40, 0x66, 0xa1, 0x92, 0x4a, 0xb1, 0xd8, 0x67, 0xca, 0x2b, 0x37, 0xd4,
-	0x53, 0xf8, 0x69, 0xa9, 0x5c, 0xbe, 0x09, 0x91, 0x4b, 0xb3, 0xf8, 0xd2, 0xd3, 0x5b, 0xc5, 0x4d,
-	0x35, 0xa2, 0x8d, 0xb0, 0x4c, 0x69, 0x65, 0x6d, 0xb9, 0xb8, 0xb1, 0xbe, 0xb1, 0xb2, 0xb6, 0xa5,
-	0x46, 0x11, 0x2b, 0xdd, 0x2c, 0x5f, 0xdb, 0x52, 0x63, 0x5a, 0x92, 0x45, 0xf1, 0x59, 0x5c, 0x63,
-	0x2c, 0xb1, 0xb9, 0x05, 0xf8, 0xb2, 0x9a, 0x40, 0x2f, 0x5b, 0x2b, 0xab, 0x45, 0x35, 0x89, 0x96,
-	0x5b, 0xb7, 0xd6, 0x6f, 0x16, 0xd5, 0x14, 0x7e, 0xbc, 0xb6, 0xb1, 0x71, 0xed, 0x69, 0x35, 0x8d,
-	0xa4, 0xd5, 0x6b, 0xeb, 0x2a, 0x23, 0xf8, 0xda, 0x12, 0xc0, 0x19, 0xd0, 0x82, 0xa9, 0xd2, 0xad,
-	0xb5, 0xeb, 0x5b, 0x2b, 0xe5, 0x35, 0x35, 0xab, 0xbf, 0xac, 0x30, 0xb6, 0x6c, 0x6d, 0x1e, 0xd6,
-	0x5a, 0xa4, 0x07, 0xc1, 0x7b, 0x07, 0x3e, 0x57, 0x28, 0x2d, 0x1c, 0x8d, 0x74, 0x9a, 0x65, 0xe9,
-	0xd9, 0x1e, 0x2f, 0x08, 0xd2, 0x47, 0xc9, 0xf0, 0xd3, 0x85, 0x02, 0x29, 0xa3, 0x84, 0x36, 0xc6,
-	0x32, 0xf4, 0xb4, 0x43, 0x1d, 0x84, 0x24, 0x51, 0x5a, 0x9b, 0x65, 0x69, 0x7c, 0xc8, 0x6f, 0x6a,
-	0xa4, 0x3f, 0x2f, 0xdc, 0xd5, 0xa7, 0xf1, 0x03, 0xbf, 0xa9, 0x05, 0x96, 0xf6, 0xbe, 0xa0, 0x53,
-	0xe2, 0x3a, 0xbb, 0x52, 0xdd, 0x5d, 0xf1, 0x87, 0xce, 0x52, 0xa3, 0x14, 0xe9, 0x49, 0x36, 0xb4,
-	0x66, 0x35, 0xd7, 0x29, 0x3d, 0xe9, 0x40, 0x69, 0xa6, 0x54, 0x73, 0x38, 0x65, 0xe3, 0xfa, 0x3d,
-	0x8c, 0x05, 0x80, 0x21, 0xa6, 0x6c, 0x73, 0x00, 0xf3, 0x57, 0x9f, 0x62, 0x89, 0xd5, 0xea, 0x9d,
-	0xad, 0xea, 0xbe, 0x36, 0xce, 0x58, 0xbd, 0xda, 0xb1, 0xe1, 0x60, 0x78, 0x81, 0xff, 0x83, 0x3f,
-	0x05, 0xbb, 0x9f, 0xfe, 0x79, 0xc6, 0xca, 0xf5, 0xdd, 0x55, 0xb3, 0xd3, 0xa9, 0xee, 0x9b, 0xda,
-	0x65, 0x96, 0x68, 0x82, 0x1b, 0x13, 0xa5, 0x33, 0x4a, 0xd2, 0x7b, 0xfc, 0x03, 0xf9, 0x56, 0xd3,
-	0x6b, 0x64, 0xa2, 0x65, 0x58, 0x14, 0xf4, 0x3b, 0xc9, 0xe7, 0xf8, 0xe4, 0x38, 0x4b, 0x38, 0x8f,
-	0x41, 0x95, 0x37, 0xab, 0x0d, 0x33, 0xc7, 0xfd, 0xb7, 0x19, 0x5b, 0x33, 0x9f, 0x3b, 0x81, 0x7f,
-	0xdf, 0x6a, 0x80, 0xff, 0xe8, 0xe4, 0xa5, 0xc1, 0xfe, 0xf1, 0x6a, 0xe1, 0xed, 0x61, 0xb7, 0xc2,
-	0xaf, 0x81, 0xa4, 0xbc, 0x7e, 0x9d, 0x65, 0x57, 0x9a, 0x4d, 0xb3, 0xed, 0xae, 0x0a, 0x8c, 0x03,
-	0xab, 0x63, 0x3b, 0x6f, 0x0d, 0x1a, 0x8b, 0xb5, 0xac, 0xb6, 0xcd, 0xf7, 0x6d, 0xc4, 0x60, 0xca,
-	0xcc, 0x68, 0xa3, 0x2c, 0xbd, 0x63, 0x01, 0x65, 0x07, 0xb7, 0x86, 0x0d, 0x3a, 0xa5, 0x1f, 0xb2,
-	0x6c, 0xd9, 0x3e, 0xf0, 0x9d, 0xc0, 0x6e, 0x0e, 0xcd, 0x23, 0x5a, 0x35, 0x8a, 0x2f, 0x0b, 0x5f,
-	0xa8, 0xd6, 0xbb, 0xfc, 0xdd, 0x21, 0xab, 0x0d, 0xb3, 0xc4, 0x73, 0x66, 0x6d, 0xff, 0xc0, 0x26,
-	0x6e, 0x04, 0xba, 0x4b, 0xbc, 0x86, 0x1b, 0x80, 0x97, 0x06, 0x3c, 0xe5, 0xb8, 0x7f, 0xca, 0xe0,
-	0xbe, 0x2e, 0xa5, 0x52, 0xbb, 0xea, 0x97, 0xe0, 0x2f, 0xa2, 0x7f, 0x23, 0xca, 0xd2, 0xab, 0x47,
-	0xee, 0x52, 0xe0, 0x7d, 0xc7, 0xea, 0x36, 0xf9, 0x86, 0xe3, 0xde, 0x81, 0xbd, 0xf7, 0x94, 0xdb,
-	0x5d, 0xcb, 0x36, 0x69, 0xa9, 0x34, 0x6e, 0xab, 0x65, 0xda, 0xb0, 0x10, 0x8a, 0x38, 0x6f, 0xdd,
-	0xb8, 0x6c, 0x5d, 0xed, 0x02, 0x4b, 0x58, 0x78, 0xb4, 0x0e, 0xbc, 0x78, 0x44, 0xc3, 0x76, 0xa1,
-	0x23, 0x3f, 0xcc, 0xd2, 0xd0, 0xc6, 0x2a, 0xdc, 0x65, 0xb6, 0xd7, 0x34, 0xe4, 0xf2, 0x32, 0x4b,
-	0x6d, 0xd7, 0x0e, 0xcd, 0xce, 0x01, 0xc4, 0x2f, 0x09, 0x8b, 0x0f, 0xe7, 0x27, 0x7c, 0x4b, 0xef,
-	0x64, 0xd3, 0xd7, 0xad, 0xba, 0xd5, 0xd6, 0x66, 0xa0, 0x72, 0xac, 0x86, 0xc9, 0xaf, 0x2c, 0x45,
-	0x3d, 0xee, 0xbe, 0x41, 0xd6, 0x9b, 0x60, 0xc4, 0x6b, 0x65, 0x94, 0xef, 0x64, 0x1b, 0x67, 0x32,
-	0xbc, 0xfd, 0xa0, 0x2a, 0x55, 0x71, 0xc5, 0xfd, 0x3d, 0x1c, 0x1a, 0x50, 0xd1, 0x30, 0xec, 0x27,
-	0xa7, 0xa0, 0xba, 0x3c, 0x86, 0x57, 0x5d, 0x3c, 0xe1, 0xd3, 0x78, 0xd9, 0x3a, 0xc4, 0x87, 0xef,
-	0x00, 0x3a, 0xc8, 0x46, 0x11, 0x1b, 0x16, 0x74, 0x90, 0xe5, 0x8d, 0x62, 0x71, 0x0d, 0x3a, 0x16,
-	0xf6, 0xae, 0x9b, 0xb7, 0x8a, 0x6a, 0x24, 0x70, 0x2f, 0x5f, 0x51, 0x58, 0xb4, 0x78, 0xc7, 0xc6,
-	0x2b, 0xc0, 0xbd, 0xf1, 0x9c, 0xcb, 0xcf, 0xb0, 0x58, 0xc3, 0x6a, 0x9b, 0xda, 0xd8, 0x80, 0x4d,
-	0xc3, 0x9b, 0x05, 0x86, 0x3e, 0xf0, 0x1e, 0x0b, 0xfc, 0xfc, 0x39, 0x16, 0xb3, 0x4d, 0xf0, 0x33,
-	0x90, 0x71, 0x40, 0x4e, 0xcf, 0x43, 0x69, 0x74, 0x1b, 0xdb, 0x66, 0x7b, 0xb0, 0x51, 0x8d, 0x0e,
-	0xf0, 0x49, 0xa6, 0x5e, 0xb7, 0x1a, 0xad, 0xba, 0x79, 0x07, 0xbc, 0x9a, 0xcd, 0x0e, 0x34, 0x69,
-	0x4c, 0x88, 0xbd, 0x5a, 0x9b, 0xd2, 0x1b, 0x25, 0x34, 0xe4, 0x62, 0xc7, 0x84, 0x64, 0xde, 0xe5,
-	0x09, 0x8e, 0xb0, 0x7d, 0x50, 0x6b, 0x63, 0x5a, 0x63, 0xbb, 0x58, 0x66, 0x23, 0x37, 0xb8, 0x16,
-	0xe9, 0x38, 0xae, 0xe1, 0x25, 0x3b, 0xeb, 0x3e, 0xa2, 0x17, 0x72, 0x08, 0xc4, 0x33, 0xc5, 0x8d,
-	0x32, 0x44, 0x07, 0xc2, 0x54, 0x5e, 0x2b, 0x42, 0x6c, 0xe0, 0xc3, 0xd6, 0x53, 0xe5, 0x50, 0x68,
-	0xee, 0x65, 0x59, 0x6f, 0x77, 0x9b, 0xa6, 0x4d, 0x08, 0xb6, 0x95, 0xa4, 0x11, 0x49, 0x29, 0x7a,
-	0x92, 0xc5, 0x8b, 0x8d, 0x96, 0x7d, 0xa4, 0x9b, 0x2c, 0xe3, 0x18, 0xdd, 0xac, 0x41, 0x7f, 0x9a,
-	0x66, 0xc9, 0x86, 0x73, 0x22, 0x85, 0x66, 0x62, 0xf0, 0xe2, 0x7d, 0x3b, 0xf7, 0x33, 0xcc, 0xa2,
-	0x64, 0xa0, 0x8a, 0x9d, 0x32, 0x88, 0xf0, 0x32, 0xe0, 0x35, 0x12, 0xc5, 0x1a, 0xd1, 0x0b, 0x2c,
-	0xc9, 0xe5, 0x5d, 0x87, 0x5a, 0x38, 0x57, 0x7a, 0xfc, 0xea, 0x79, 0x9f, 0x80, 0x7c, 0xa0, 0xec,
-	0x71, 0x1e, 0x52, 0xdd, 0xea, 0xcf, 0xc7, 0x58, 0xca, 0x3d, 0x3a, 0xf0, 0x12, 0x5c, 0x8c, 0x11,
-	0xc3, 0x95, 0xd1, 0x63, 0x2c, 0xe9, 0xc8, 0x2f, 0xa7, 0x61, 0xa0, 0x78, 0x76, 0x1f, 0xc2, 0x80,
-	0x88, 0x7a, 0x92, 0x79, 0x9c, 0xa5, 0x3d, 0x79, 0x45, 0x85, 0xef, 0x08, 0x65, 0xff, 0x39, 0x98,
-	0xc7, 0x7d, 0x79, 0x3c, 0x0e, 0x13, 0xcb, 0x11, 0x50, 0xf4, 0x03, 0x80, 0x2b, 0x8a, 0xbd, 0xe7,
-	0x60, 0x9e, 0x0c, 0x48, 0xe1, 0xb3, 0xb8, 0x28, 0x89, 0x24, 0xaa, 0x19, 0x5f, 0x00, 0xe7, 0x90,
-	0xc0, 0x85, 0x11, 0xe5, 0xb9, 0x2f, 0x7b, 0x75, 0x44, 0x78, 0x5c, 0xa0, 0x6a, 0x06, 0x8b, 0xdd,
-	0x1c, 0xba, 0x25, 0xb1, 0x4b, 0x65, 0x14, 0x50, 0xb8, 0x67, 0x88, 0xcd, 0x37, 0x98, 0xf5, 0x65,
-	0xad, 0xf7, 0x98, 0xc6, 0xa3, 0xa7, 0x65, 0x1f, 0xc3, 0xf0, 0x61, 0xfe, 0xc0, 0x78, 0xc4, 0xfa,
-	0xcf, 0xf9, 0x17, 0xeb, 0x86, 0x98, 0x97, 0xbf, 0xc1, 0x2b, 0x0e, 0x82, 0x08, 0x84, 0xf5, 0x5a,
-	0x73, 0x0f, 0x86, 0x27, 0x1e, 0x27, 0x0a, 0x1f, 0xf9, 0x25, 0xac, 0xe1, 0x43, 0x95, 0x1e, 0xc6,
-	0x1e, 0xc5, 0xa7, 0x1a, 0x08, 0x86, 0xca, 0x5a, 0xb5, 0x09, 0xe3, 0x90, 0x2c, 0x9b, 0xd5, 0x26,
-	0x9c, 0x2d, 0xda, 0xe9, 0x6e, 0xe7, 0xb4, 0xde, 0x9f, 0x4e, 0x36, 0xbb, 0xdb, 0xde, 0x95, 0x6a,
-	0x2c, 0x05, 0xa9, 0x50, 0xf9, 0xa2, 0xd9, 0xb6, 0x72, 0x63, 0x74, 0xfe, 0x53, 0x27, 0xec, 0x01,
-	0x30, 0x56, 0x33, 0x41, 0x4f, 0x59, 0xa6, 0x34, 0x79, 0xef, 0x37, 0x94, 0x2b, 0xfa, 0x2a, 0xcb,
-	0xba, 0x4a, 0x8a, 0x2a, 0xe6, 0x32, 0x26, 0x23, 0xf8, 0xa4, 0x9c, 0x1e, 0xce, 0xdf, 0xeb, 0xef,
-	0x26, 0x68, 0xc6, 0x8f, 0xaf, 0xab, 0x3d, 0x1b, 0x50, 0xf4, 0x6f, 0x2a, 0x50, 0x4b, 0xd0, 0x50,
-	0x5c, 0x63, 0x4c, 0xee, 0x6d, 0x48, 0xc4, 0x0e, 0xf9, 0xc3, 0xf7, 0xe5, 0x2c, 0x7d, 0x75, 0x05,
-	0x6a, 0xc4, 0x7b, 0x39, 0x80, 0x9a, 0x80, 0x8b, 0xe8, 0xf0, 0xda, 0x86, 0x0c, 0xc9, 0xe0, 0x37,
-	0xd7, 0x2c, 0xe6, 0xbd, 0x1e, 0x4c, 0xb0, 0x21, 0xba, 0x2f, 0x0f, 0x4a, 0x7a, 0x2f, 0x05, 0x23,
-	0x2c, 0xc9, 0xab, 0xa5, 0x43, 0xbf, 0x59, 0xa5, 0xb1, 0x7f, 0x90, 0xf8, 0xe1, 0xc3, 0x21, 0xa9,
-	0x7f, 0x9c, 0xa5, 0xa8, 0xa3, 0xc2, 0xfc, 0xd7, 0x1e, 0x60, 0xca, 0x7e, 0xce, 0xa4, 0x86, 0x7d,
-	0x3a, 0x20, 0x75, 0x1c, 0x78, 0x7a, 0x79, 0x72, 0x98, 0x29, 0xcb, 0x28, 0x4e, 0xee, 0xf0, 0x62,
-	0xd1, 0x4b, 0x0e, 0x19, 0x86, 0xbb, 0x8c, 0x0c, 0x30, 0x90, 0x27, 0xc2, 0x64, 0xfc, 0x78, 0xc4,
-	0x7f, 0x8d, 0x43, 0x01, 0x44, 0x99, 0x0f, 0xfb, 0x5c, 0xb7, 0xe0, 0x28, 0x88, 0xed, 0xd1, 0x78,
-	0x54, 0xf4, 0x0f, 0xa2, 0x6c, 0xd8, 0xe9, 0x11, 0x4f, 0xd5, 0xec, 0x83, 0xd5, 0x6a, 0x4b, 0x7b,
-	0x9c, 0x65, 0xb1, 0x55, 0x54, 0x1a, 0xd5, 0x56, 0x0b, 0x73, 0x5f, 0xa1, 0xd9, 0xf5, 0x70, 0x5f,
-	0xab, 0x71, 0xec, 0xa7, 0xd7, 0xc0, 0x78, 0x95, 0xdb, 0x16, 0x9b, 0x76, 0xfb, 0x48, 0xfb, 0x04,
-	0xcb, 0x34, 0x3a, 0xfb, 0x1e, 0x3f, 0x42, 0xfc, 0x8b, 0x42, 0xfe, 0x6a, 0x67, 0x3f, 0x44, 0x87,
-	0xf5, 0xb1, 0xd9, 0x78, 0xfc, 0xe8, 0x31, 0xeb, 0x63, 0xf9, 0x85, 0x1c, 0x18, 0x20, 0x58, 0x21,
-	0x71, 0x6d, 0x0b, 0x75, 0x20, 0x5d, 0x64, 0x26, 0x7f, 0x41, 0x48, 0x87, 0x0a, 0xdf, 0xb2, 0xe0,
-	0x1f, 0xe2, 0x4e, 0xe6, 0x99, 0xda, 0x77, 0x9e, 0x80, 0x78, 0x89, 0x87, 0xc5, 0x4b, 0xda, 0x88,
-	0x2c, 0x2a, 0x93, 0x9f, 0x62, 0x23, 0xbd, 0x67, 0x08, 0x50, 0x34, 0x50, 0x0c, 0x01, 0x4a, 0x26,
-	0x7f, 0x36, 0xf0, 0x2b, 0x6d, 0xf0, 0x5a, 0xc8, 0x17, 0xac, 0xdf, 0x77, 0x9e, 0x80, 0xb3, 0x54,
-	0x8f, 0x78, 0x22, 0xce, 0x63, 0x6c, 0x28, 0x74, 0x88, 0x20, 0x21, 0x3d, 0x60, 0xc3, 0xfa, 0x77,
-	0x41, 0xe0, 0xc3, 0x24, 0x6c, 0x74, 0x9b, 0xb5, 0xdb, 0xd4, 0xa5, 0x33, 0x8d, 0xea, 0x21, 0x04,
-	0xdc, 0xac, 0xec, 0xb4, 0xdd, 0x75, 0x54, 0x77, 0xa2, 0x52, 0xd7, 0x8d, 0x3f, 0x71, 0x0a, 0x72,
-	0x9b, 0x8f, 0x10, 0x6c, 0xb7, 0x69, 0xfe, 0x9d, 0xc6, 0x3a, 0xb6, 0xd9, 0x2c, 0x7c, 0x07, 0x86,
-	0x6d, 0x36, 0x5a, 0x95, 0x1d, 0xea, 0xb0, 0x0a, 0x3c, 0xb9, 0xc8, 0xa2, 0x50, 0xd9, 0xd4, 0x56,
-	0x65, 0x92, 0x06, 0x2c, 0xa7, 0x58, 0x14, 0x52, 0x86, 0xda, 0x6c, 0x26, 0x3f, 0x1a, 0xe8, 0x47,
-	0xbc, 0xba, 0x9e, 0x38, 0xb5, 0x04, 0x33, 0x11, 0xb6, 0x6b, 0x35, 0x2f, 0x8d, 0xb0, 0x68, 0xa9,
-	0x5c, 0xc6, 0x66, 0x03, 0xff, 0xcd, 0xaa, 0x8a, 0xf1, 0x10, 0x4b, 0xed, 0xb7, 0x4d, 0x13, 0xe3,
-	0x38, 0x78, 0xfa, 0x3f, 0x8b, 0xa5, 0x69, 0xdc, 0x60, 0xc9, 0x1d, 0x3e, 0xfd, 0x35, 0x81, 0x64,
-	0xcb, 0x7d, 0x8f, 0xeb, 0xea, 0x49, 0x1f, 0xee, 0xd5, 0x0b, 0x46, 0x09, 0xb4, 0x54, 0xe5, 0x38,
-	0x3f, 0x2f, 0xf0, 0x92, 0x91, 0xf9, 0x29, 0xb0, 0xd1, 0xa6, 0xe5, 0xfe, 0xb0, 0x51, 0xd9, 0xa5,
-	0xf9, 0xa3, 0x4d, 0xf4, 0x77, 0x7d, 0xd7, 0xa5, 0x49, 0xa3, 0x69, 0x8e, 0xa9, 0x01, 0x16, 0xc9,
-	0x37, 0x19, 0x69, 0x8f, 0x1a, 0x7e, 0x98, 0x44, 0x13, 0x49, 0x46, 0xda, 0xa7, 0x41, 0xdd, 0x47,
-	0x82, 0x21, 0x25, 0x21, 0x1d, 0x50, 0x73, 0x0f, 0x1f, 0xaa, 0x7b, 0xec, 0x52, 0x35, 0x1a, 0xdc,
-	0xfd, 0x2c, 0xf9, 0x5a, 0xcf, 0xd2, 0x58, 0x0f, 0xb3, 0x3a, 0xc7, 0xae, 0x75, 0x48, 0x33, 0xb8,
-	0x9f, 0x25, 0x5f, 0xab, 0x4e, 0x23, 0x7a, 0x9e, 0x69, 0xc1, 0xb0, 0x73, 0x95, 0x22, 0xa3, 0x35,
-	0x48, 0xc0, 0x0c, 0xa0, 0xc9, 0x57, 0x6b, 0x92, 0xbe, 0x59, 0x60, 0x63, 0xc1, 0x3d, 0x9e, 0x60,
-	0x39, 0x0b, 0x78, 0x23, 0x03, 0x79, 0xf2, 0xf5, 0x5a, 0xc0, 0x53, 0x8d, 0x3c, 0x1b, 0x09, 0xf0,
-	0x70, 0x56, 0xca, 0x38, 0xb7, 0x49, 0xde, 0xf5, 0xc4, 0x91, 0xaa, 0x54, 0xc6, 0x6a, 0x53, 0xef,
-	0x09, 0x27, 0x15, 0x29, 0x4a, 0x19, 0xa9, 0x43, 0x1d, 0xee, 0x99, 0xd0, 0xf6, 0x4c, 0x54, 0x0c,
-	0x12, 0x8e, 0x4d, 0xbd, 0xe6, 0x82, 0xd0, 0x60, 0x3a, 0x28, 0xd6, 0x0d, 0x83, 0x0d, 0x9f, 0xbc,
-	0x04, 0x5f, 0x50, 0xb8, 0x3c, 0x9c, 0x9b, 0x46, 0xe5, 0x68, 0x5c, 0x61, 0x43, 0x27, 0x2e, 0xc4,
-	0x17, 0x15, 0xae, 0xc7, 0x90, 0x0a, 0x69, 0x31, 0x74, 0xe2, 0x62, 0x7c, 0x49, 0xe1, 0xb2, 0xb9,
-	0x90, 0xef, 0xa1, 0xc9, 0x2f, 0xf6, 0x65, 0x2e, 0xb6, 0x22, 0x85, 0x39, 0xc8, 0x8a, 0xe1, 0x93,
-	0x17, 0xe4, 0x2b, 0x0a, 0x55, 0x64, 0xa4, 0x50, 0xe8, 0xe5, 0xc9, 0xd7, 0x7b, 0x55, 0xa1, 0x9a,
-	0x8c, 0x14, 0xe6, 0x83, 0xbc, 0xe3, 0x8b, 0xf2, 0x35, 0x85, 0xaa, 0x32, 0x52, 0x58, 0xe8, 0xe5,
-	0xc9, 0xd7, 0x7b, 0x9d, 0x06, 0x2b, 0xf0, 0xae, 0xc0, 0x35, 0x8c, 0xdc, 0x45, 0x61, 0xbe, 0xa1,
-	0x50, 0x65, 0x46, 0x0a, 0x8b, 0x7d, 0x44, 0xf9, 0x8a, 0x6f, 0x2a, 0x54, 0x9b, 0x91, 0xc2, 0x55,
-	0x63, 0x91, 0xa9, 0x77, 0x53, 0x9c, 0x6f, 0x29, 0x54, 0x9d, 0x91, 0xf9, 0x99, 0x7e, 0xa6, 0x7c,
-	0xcd, 0xb7, 0x15, 0xaa, 0xcf, 0xc8, 0xfc, 0x2c, 0x44, 0x27, 0x7b, 0xd2, 0x02, 0x7d, 0x27, 0xf0,
-	0x02, 0x66, 0x5c, 0x0b, 0x44, 0xf5, 0xd8, 0x22, 0x7d, 0x97, 0x04, 0x83, 0x31, 0xf4, 0x04, 0x7f,
-	0xcb, 0xe1, 0x04, 0xe3, 0x71, 0x3f, 0xef, 0x8e, 0xad, 0xd8, 0xf7, 0x14, 0x2a, 0xd9, 0xac, 0xe3,
-	0x81, 0xec, 0x8d, 0xcf, 0xf9, 0x7b, 0x3f, 0xae, 0x7a, 0xdf, 0x57, 0xee, 0xaa, 0x7c, 0xf1, 0xfd,
-	0x1a, 0x42, 0x13, 0xbb, 0x93, 0x9f, 0x99, 0x0d, 0x0e, 0xe3, 0xe0, 0xab, 0x35, 0x2f, 0xdb, 0x4c,
-	0x7e, 0x24, 0xf0, 0x9b, 0x02, 0xbe, 0x5b, 0x3b, 0xbc, 0xbc, 0x90, 0xf7, 0xa2, 0x94, 0x37, 0x27,
-	0xe4, 0xbd, 0x24, 0xe5, 0x15, 0x84, 0xbc, 0x97, 0xa5, 0xbc, 0x79, 0x21, 0xef, 0x15, 0x29, 0x6f,
-	0x41, 0xc8, 0x7b, 0x55, 0xca, 0xbb, 0x22, 0xe4, 0xbd, 0x26, 0xe5, 0x2d, 0x0a, 0x79, 0xaf, 0x4b,
-	0x79, 0x57, 0x85, 0xbc, 0x37, 0x64, 0xbc, 0xd9, 0x19, 0x21, 0xef, 0x4d, 0x29, 0x4f, 0x9c, 0x2f,
-	0x6f, 0x49, 0x79, 0xe2, 0x7c, 0x79, 0x5b, 0xca, 0x13, 0xe7, 0xcb, 0x3b, 0x52, 0x9e, 0x38, 0x5f,
-	0xde, 0x95, 0xf2, 0xc4, 0xf9, 0xf2, 0x9e, 0x94, 0x27, 0xce, 0x97, 0xf7, 0xa5, 0x3c, 0x71, 0xbe,
-	0x7c, 0x5f, 0xca, 0x13, 0xe7, 0xcb, 0x0f, 0xa4, 0x3c, 0x71, 0xbe, 0xfc, 0x50, 0xc6, 0xcb, 0x8b,
-	0xf3, 0xe5, 0x47, 0x52, 0x9e, 0x38, 0x5f, 0x7e, 0x2c, 0xe5, 0x89, 0xf3, 0xe5, 0x27, 0x52, 0x9e,
-	0x38, 0x5f, 0x7e, 0x2a, 0xe5, 0x89, 0xf3, 0xe5, 0x67, 0x52, 0x9e, 0x38, 0x5f, 0x7e, 0x2e, 0xe5,
-	0x89, 0xf3, 0xe5, 0x17, 0x52, 0x9e, 0x38, 0x5f, 0x7e, 0x29, 0xe5, 0x89, 0xf3, 0xe5, 0x57, 0x52,
-	0x9e, 0x38, 0x5f, 0x7e, 0x2d, 0xe3, 0xcd, 0x89, 0xf3, 0xe5, 0x37, 0x52, 0x9e, 0x38, 0x5f, 0x7e,
-	0x2b, 0xe5, 0x89, 0xf3, 0xe5, 0x77, 0x52, 0x9e, 0x38, 0x5f, 0x7e, 0x2f, 0xe5, 0x89, 0xf3, 0xe5,
-	0x0f, 0x52, 0x9e, 0x38, 0x5f, 0xfe, 0x28, 0xe5, 0x89, 0xf3, 0xe5, 0x4f, 0x52, 0x9e, 0x38, 0x5f,
-	0xfe, 0x2c, 0xe5, 0x89, 0xf3, 0xe5, 0x2f, 0x52, 0x9e, 0x38, 0x5f, 0xfe, 0x2a, 0xe3, 0x15, 0xc4,
-	0xf9, 0xf2, 0x37, 0x29, 0x4f, 0x9c, 0x2f, 0x7f, 0x97, 0xf2, 0xc4, 0xf9, 0xf2, 0x81, 0x94, 0x27,
-	0xce, 0x97, 0x7f, 0x48, 0x79, 0xe2, 0x7c, 0xf9, 0xa7, 0x94, 0x27, 0xce, 0x97, 0x7f, 0x49, 0x79,
-	0xe2, 0x7c, 0xf9, 0x50, 0xca, 0x13, 0xe7, 0xcb, 0x47, 0x52, 0x9e, 0x38, 0x5f, 0xfe, 0x2d, 0xe5,
-	0x89, 0xf3, 0xe5, 0x3f, 0x32, 0xde, 0xbc, 0x38, 0x5f, 0xfe, 0x3b, 0x98, 0xf7, 0xff, 0x00, 0x00,
-	0x00, 0xff, 0xff, 0xe8, 0x36, 0xff, 0x82, 0x12, 0x2a, 0x00, 0x00,
+	// 3329 bytes of a gzipped FileDescriptorProto
+	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x94, 0x58, 0xd9, 0x73, 0x1b, 0xc7,
+	0xf1, 0xd6, 0xe2, 0xc6, 0x00, 0x24, 0x96, 0x4b, 0x1d, 0x10, 0xe5, 0x83, 0x5a, 0xd9, 0xfa, 0xc9,
+	0x92, 0x0d, 0x93, 0x20, 0x48, 0x49, 0xfb, 0xab, 0x94, 0x23, 0x4a, 0x00, 0xcd, 0x98, 0x24, 0x18,
+	0x92, 0x8a, 0xcb, 0x4e, 0x25, 0x28, 0x90, 0x5c, 0x82, 0x30, 0x01, 0x2c, 0x04, 0x2c, 0x62, 0x31,
+	0x4f, 0x79, 0xcd, 0x43, 0x1e, 0x92, 0x54, 0xaa, 0x5c, 0xf9, 0x1f, 0x92, 0xbc, 0xe7, 0x2f, 0x88,
+	0xef, 0xfb, 0xc8, 0x7d, 0x39, 0xf7, 0xed, 0x24, 0x76, 0x92, 0x97, 0xa4, 0xbb, 0x67, 0x6f, 0x60,
+	0x87, 0xb4, 0x1e, 0x6c, 0x70, 0xbe, 0xfe, 0x7a, 0x66, 0x7a, 0xba, 0x7b, 0xbe, 0x59, 0xc6, 0x4c,
+	0xbd, 0x6f, 0x16, 0xba, 0x3d, 0xc3, 0x34, 0x94, 0x14, 0xfe, 0xde, 0xad, 0x9b, 0x75, 0xf5, 0x01,
+	0x96, 0x58, 0x32, 0xca, 0x9d, 0x41, 0x5b, 0x99, 0x62, 0xd1, 0x3d, 0xc3, 0xc8, 0x4b, 0xd3, 0x91,
+	0x4b, 0xe3, 0xc5, 0xb1, 0x82, 0x6d, 0x51, 0xa8, 0x54, 0xab, 0xea, 0x65, 0x96, 0x59, 0x32, 0xb6,
+	0x60, 0xa4, 0xd2, 0xd4, 0x5b, 0xbb, 0xca, 0x18, 0x8b, 0xaf, 0xd4, 0xb7, 0xf5, 0x16, 0x19, 0xa7,
+	0x95, 0x2c, 0x8b, 0x6d, 0x1d, 0x76, 0xf5, 0x7c, 0x04, 0xff, 0x52, 0xbf, 0x7c, 0x12, 0x5d, 0xa2,
+	0xb1, 0x72, 0x81, 0xc5, 0x9e, 0x68, 0x76, 0x76, 0x2d, 0x9f, 0xa7, 0x5c, 0x9f, 0x1c, 0x2f, 0x3c,
+	0xb1, 0xbc, 0x76, 0x0b, 0x9d, 0x6d, 0xd5, 0xb7, 0x5b, 0x48, 0x97, 0xc0, 0x19, 0xfc, 0xb9, 0x5e,
+	0xef, 0xd5, 0xdb, 0xf9, 0x28, 0xfc, 0x19, 0x57, 0x1e, 0x66, 0x63, 0x1b, 0xfa, 0x9d, 0x41, 0xb3,
+	0xa7, 0xef, 0xd2, 0xdc, 0xf9, 0x18, 0xf8, 0xca, 0x0c, 0xfb, 0xe2, 0x0b, 0x23, 0xeb, 0xae, 0x5e,
+	0x37, 0x6d, 0xeb, 0xf8, 0x74, 0x54, 0x68, 0x5d, 0xed, 0x9a, 0x4d, 0xa3, 0x53, 0x6f, 0x71, 0xeb,
+	0x04, 0x4c, 0x19, 0x6a, 0x7d, 0x86, 0xe5, 0x2a, 0xb5, 0x45, 0xc3, 0x68, 0xd5, 0x7a, 0xd6, 0x82,
+	0xf2, 0x0c, 0xd6, 0x92, 0x52, 0xf2, 0x4c, 0xae, 0xd4, 0x96, 0x3b, 0xe6, 0x5c, 0xd1, 0x45, 0x32,
+	0x80, 0xc4, 0x1d, 0x64, 0xa1, 0xe4, 0x22, 0x59, 0x40, 0xa2, 0x10, 0x6c, 0xa5, 0x52, 0xab, 0x34,
+	0xef, 0xea, 0xbb, 0x5e, 0xd6, 0x18, 0x60, 0x49, 0x0f, 0xe6, 0xe5, 0x8d, 0x03, 0x96, 0x50, 0xce,
+	0xb2, 0x89, 0x4a, 0xed, 0x76, 0xd3, 0x3f, 0x59, 0x0e, 0xa0, 0x31, 0x17, 0xf2, 0xb2, 0x64, 0x80,
+	0x62, 0x7c, 0x1d, 0x95, 0x96, 0x51, 0x37, 0x5d, 0x64, 0x02, 0x90, 0x08, 0x27, 0xdd, 0x32, 0x06,
+	0x10, 0x7f, 0x17, 0x52, 0x00, 0x92, 0x38, 0xb4, 0x69, 0xf6, 0x9a, 0x9d, 0x86, 0x0b, 0x4d, 0xd2,
+	0x81, 0x93, 0xbf, 0xc5, 0x43, 0x08, 0x93, 0x8b, 0xe8, 0x80, 0x64, 0x2d, 0x52, 0x60, 0x7d, 0x7b,
+	0x00, 0x4d, 0xb8, 0x90, 0x77, 0x7d, 0x0d, 0x80, 0x14, 0x5f, 0x68, 0xf9, 0xe9, 0xe5, 0x4f, 0xc2,
+	0xc1, 0x05, 0x42, 0x6b, 0x21, 0xa7, 0x00, 0x09, 0x84, 0xd6, 0x42, 0x4e, 0x03, 0x32, 0x14, 0x5a,
+	0x0b, 0x3b, 0x03, 0xd8, 0x50, 0x68, 0x2d, 0x2c, 0x0f, 0x58, 0x30, 0xb4, 0x16, 0x74, 0x16, 0xa0,
+	0x60, 0x68, 0x2d, 0x68, 0x0a, 0xa0, 0x40, 0x68, 0x2d, 0xe4, 0x1c, 0x20, 0xc1, 0xd0, 0x5a, 0xd0,
+	0x3d, 0x00, 0x05, 0x43, 0x6b, 0x41, 0xf7, 0x02, 0x94, 0x06, 0xc8, 0x13, 0x5a, 0x0b, 0x79, 0x5e,
+	0x02, 0x28, 0x0b, 0x8b, 0xf7, 0xc6, 0xd6, 0xc2, 0x5e, 0x40, 0x6c, 0xc2, 0xc5, 0xbc, 0x2b, 0x7c,
+	0x11, 0x31, 0x6f, 0x74, 0x0d, 0x2b, 0xdb, 0xf3, 0xf7, 0x41, 0xa2, 0xfb, 0xa2, 0xeb, 0x20, 0xf7,
+	0x53, 0xd5, 0x79, 0xa2, 0xeb, 0x20, 0xd3, 0x80, 0x04, 0xa2, 0xeb, 0x60, 0xe7, 0x01, 0x0b, 0x44,
+	0xd7, 0xc1, 0x54, 0xc0, 0xfc, 0xd1, 0x75, 0xa0, 0x0b, 0x00, 0xf9, 0xa3, 0xeb, 0x40, 0x0f, 0x00,
+	0xe4, 0x8b, 0xae, 0x83, 0x3c, 0x08, 0x88, 0x3f, 0xba, 0x0e, 0x74, 0x11, 0x20, 0x7f, 0x74, 0x1d,
+	0xe8, 0xff, 0xa8, 0xb9, 0x78, 0xa2, 0xeb, 0x20, 0xdf, 0xc2, 0xbe, 0xe3, 0x8f, 0xae, 0x83, 0x7d,
+	0x1b, 0x31, 0x7f, 0x74, 0x1d, 0xec, 0x3b, 0x88, 0x29, 0xca, 0x7d, 0xe4, 0x12, 0xa3, 0xbb, 0xab,
+	0xef, 0xd5, 0x07, 0x2d, 0x0c, 0xfc, 0x25, 0x0c, 0xaf, 0x16, 0x33, 0x7b, 0x03, 0x5d, 0xb9, 0x17,
+	0xb9, 0x3c, 0xc8, 0xae, 0xc1, 0x43, 0x18, 0x65, 0x2d, 0x32, 0x57, 0x74, 0x60, 0xf0, 0xec, 0xc2,
+	0x97, 0x31, 0xd4, 0x5a, 0x64, 0xa1, 0xa4, 0x4c, 0xb3, 0x49, 0x37, 0xdc, 0xae, 0xc1, 0x15, 0x8c,
+	0xb7, 0x16, 0x9d, 0x2b, 0xce, 0x78, 0x2c, 0x7c, 0x2e, 0x1e, 0xc6, 0xa8, 0x6b, 0xd1, 0x85, 0x12,
+	0x5a, 0x28, 0x4e, 0xe8, 0x5d, 0x83, 0x47, 0x30, 0xf6, 0x5a, 0x0c, 0x5c, 0x78, 0x2c, 0x7c, 0x2e,
+	0x0a, 0x78, 0x04, 0x5a, 0x0c, 0x5c, 0xcc, 0x28, 0xe7, 0x71, 0x99, 0xfc, 0x20, 0x5c, 0x83, 0x47,
+	0xf1, 0x24, 0xb4, 0xc4, 0xdc, 0x6c, 0x69, 0x76, 0xfe, 0xba, 0xa2, 0xa2, 0x13, 0xeb, 0x44, 0x5c,
+	0x9b, 0x19, 0x3c, 0x12, 0x2d, 0x51, 0xbc, 0x3a, 0x7b, 0xad, 0x78, 0x0d, 0x3a, 0xae, 0xe2, 0x1c,
+	0x8d, 0x6b, 0x33, 0x8b, 0x67, 0xa3, 0xc9, 0xfb, 0x7a, 0xab, 0x65, 0x3c, 0x3c, 0xad, 0x3e, 0x6b,
+	0xf4, 0x5a, 0xbb, 0xe7, 0xc1, 0xdd, 0x05, 0x9c, 0x94, 0x9f, 0x96, 0x6b, 0xfc, 0x55, 0xbc, 0x17,
+	0xb2, 0x5a, 0x72, 0xb1, 0xd9, 0xe8, 0x18, 0x7d, 0x9d, 0xaf, 0x7d, 0x33, 0xb8, 0xbb, 0xaf, 0xa1,
+	0xd5, 0x84, 0x16, 0x7d, 0x04, 0x42, 0xec, 0x58, 0xf8, 0x76, 0xf7, 0x75, 0xb4, 0x50, 0xc0, 0x02,
+	0xa2, 0xac, 0xb2, 0xd3, 0x81, 0xfe, 0x53, 0xeb, 0xd6, 0x77, 0x0e, 0xc0, 0xaa, 0x88, 0x6d, 0x68,
+	0x31, 0x22, 0x4b, 0xb0, 0x98, 0x33, 0xc1, 0x56, 0x64, 0x1b, 0xcd, 0x61, 0x47, 0xf2, 0x19, 0x79,
+	0xaa, 0xd0, 0x36, 0x2a, 0x61, 0x73, 0x22, 0xa3, 0x07, 0xd9, 0xd9, 0xe1, 0x06, 0x65, 0x9b, 0xcd,
+	0x63, 0x9f, 0x0a, 0x98, 0x8d, 0xf0, 0xb6, 0x80, 0x2d, 0x8b, 0xcc, 0x1e, 0x60, 0xf9, 0xa1, 0xb6,
+	0x65, 0x5b, 0x5d, 0xc5, 0xee, 0xe5, 0xb7, 0x1a, 0xe1, 0xeb, 0x1a, 0x36, 0x32, 0x77, 0xf9, 0xfe,
+	0x66, 0x66, 0x1b, 0x5d, 0xc7, 0x9e, 0xe6, 0xba, 0x0a, 0xf4, 0x35, 0xdb, 0x4a, 0xc3, 0xf6, 0x66,
+	0xad, 0x3e, 0x3f, 0xd4, 0xac, 0x6c, 0xab, 0x0f, 0xa3, 0xd8, 0xb3, 0xfc, 0x66, 0x23, 0xd6, 0xf5,
+	0x11, 0x9a, 0x29, 0x64, 0x36, 0xcf, 0xc6, 0xec, 0x2b, 0xa3, 0xd1, 0x33, 0x06, 0xdd, 0x7c, 0x05,
+	0xee, 0x0d, 0x56, 0xbc, 0x6f, 0x48, 0x51, 0xd8, 0x5a, 0x61, 0x09, 0xad, 0x38, 0x8d, 0x3b, 0xe5,
+	0xb4, 0x75, 0xf0, 0x38, 0x9a, 0xc6, 0xad, 0x1c, 0x9a, 0x5d, 0xe5, 0x9c, 0xf6, 0x34, 0xa4, 0xca,
+	0x28, 0x9a, 0xad, 0x1e, 0x88, 0x36, 0x75, 0xd1, 0x95, 0x2a, 0xdc, 0xcf, 0xa9, 0xa0, 0x76, 0x59,
+	0xc2, 0xdb, 0x93, 0xdb, 0x79, 0xe7, 0x1b, 0xb2, 0xfb, 0xb4, 0x6d, 0xe7, 0x9b, 0x60, 0xd8, 0xee,
+	0xb3, 0x24, 0xb8, 0x9e, 0x93, 0x40, 0x66, 0xa1, 0x92, 0x4a, 0xb1, 0xd8, 0x67, 0xaa, 0xcb, 0xb7,
+	0xe4, 0x13, 0xf8, 0x6b, 0xb1, 0x5a, 0x5d, 0x81, 0xc8, 0xa5, 0x59, 0x7c, 0xf1, 0xa9, 0xad, 0xf2,
+	0xa6, 0x1c, 0x51, 0x72, 0x2c, 0x53, 0x59, 0x5e, 0x5b, 0x2a, 0x6f, 0xac, 0x6f, 0x2c, 0xaf, 0x6d,
+	0xc9, 0x51, 0xc4, 0x2a, 0x2b, 0xd5, 0x1b, 0x5b, 0x72, 0x4c, 0x49, 0xb2, 0x28, 0x8e, 0xc5, 0x15,
+	0xc6, 0x12, 0x9b, 0x5b, 0x80, 0x2f, 0xc9, 0x09, 0xf4, 0xb2, 0xb5, 0xbc, 0x5a, 0x96, 0x93, 0x68,
+	0xb9, 0x75, 0x7b, 0x7d, 0xa5, 0x2c, 0xa7, 0xf0, 0xe7, 0x8d, 0x8d, 0x8d, 0x1b, 0x4f, 0xc9, 0x69,
+	0x24, 0xad, 0xde, 0x58, 0x97, 0x19, 0xc1, 0x37, 0x16, 0x01, 0xce, 0x80, 0x16, 0x4c, 0x55, 0x6e,
+	0xaf, 0xdd, 0xdc, 0x5a, 0xae, 0xae, 0xc9, 0x59, 0xf5, 0x25, 0x89, 0xb1, 0x25, 0x63, 0xf3, 0xa0,
+	0xd9, 0x25, 0x3d, 0x08, 0xde, 0xfb, 0xf0, 0xbb, 0x46, 0x69, 0x61, 0x69, 0xa4, 0x93, 0x2c, 0x4b,
+	0x63, 0x7b, 0xbc, 0x20, 0x48, 0x1f, 0x25, 0xfd, 0xa3, 0x0b, 0x25, 0x52, 0x46, 0x09, 0x65, 0x92,
+	0x65, 0x68, 0xb4, 0x4f, 0x1d, 0x84, 0x24, 0x51, 0x5a, 0x99, 0x65, 0x69, 0x1c, 0xe4, 0x27, 0x95,
+	0x1b, 0xce, 0x0b, 0x7b, 0xf6, 0x02, 0xfe, 0xe0, 0x27, 0xb5, 0xc0, 0xd2, 0xce, 0x1f, 0xe8, 0x94,
+	0xb8, 0xd6, 0xaa, 0x64, 0x7b, 0x55, 0x7c, 0xd0, 0x9a, 0x6a, 0x82, 0x22, 0x3d, 0xc5, 0xc6, 0xd6,
+	0x8c, 0xce, 0x3a, 0xa5, 0x27, 0x6d, 0x28, 0xcd, 0xa4, 0x7a, 0x1e, 0x6f, 0xd9, 0xb8, 0x7a, 0x8e,
+	0x31, 0x0f, 0x30, 0xc6, 0xa4, 0x6d, 0x0e, 0x60, 0xfe, 0xaa, 0xd3, 0x2c, 0xb1, 0x5a, 0xbf, 0xbb,
+	0x55, 0x6f, 0x28, 0xa7, 0x19, 0x6b, 0xd5, 0xfb, 0x26, 0x6c, 0x0c, 0x0f, 0xf0, 0xbf, 0xf0, 0x4f,
+	0xc2, 0xee, 0xa7, 0x7e, 0x9e, 0xb1, 0x6a, 0x6b, 0x77, 0x55, 0xef, 0xf7, 0xeb, 0x0d, 0x5d, 0xb9,
+	0xc2, 0x12, 0x1d, 0x70, 0xa3, 0xa3, 0x74, 0x46, 0x49, 0x7a, 0xce, 0xdd, 0x90, 0x6b, 0x55, 0x58,
+	0x23, 0x13, 0x25, 0xc3, 0xa2, 0xa0, 0xdf, 0x49, 0x3e, 0xc7, 0xa7, 0x4e, 0xb3, 0x84, 0x35, 0x0c,
+	0xaa, 0xbc, 0x53, 0x6f, 0xeb, 0x79, 0xee, 0xbf, 0xc7, 0xd8, 0x9a, 0xfe, 0xec, 0x31, 0xfc, 0xbb,
+	0x56, 0x23, 0xfc, 0x47, 0xa7, 0x2e, 0x8f, 0xf6, 0x8f, 0x47, 0x0b, 0xaf, 0x87, 0xdd, 0x1a, 0x3f,
+	0x06, 0x92, 0xf2, 0xea, 0x4d, 0x96, 0x5d, 0xee, 0x74, 0xf4, 0x9e, 0x3d, 0x2b, 0x30, 0xf6, 0x8d,
+	0xbe, 0x69, 0xbd, 0x1a, 0x14, 0x16, 0xeb, 0x1a, 0x3d, 0x93, 0xaf, 0x5b, 0x8b, 0xc1, 0x2d, 0x33,
+	0xa3, 0x4c, 0xb0, 0xf4, 0x8e, 0x01, 0x94, 0x1d, 0x5c, 0x1a, 0x36, 0xe8, 0x94, 0x7a, 0xc0, 0xb2,
+	0x55, 0x73, 0xdf, 0x75, 0x02, 0xab, 0x39, 0xd0, 0x0f, 0x69, 0xd6, 0x28, 0x3e, 0x16, 0xbe, 0x50,
+	0x6f, 0x0d, 0xf8, 0xdb, 0x21, 0xab, 0x8c, 0xb3, 0xc4, 0xb3, 0x7a, 0xb3, 0xb1, 0x6f, 0x12, 0x37,
+	0x02, 0xdd, 0x25, 0xde, 0xc4, 0x05, 0xc0, 0xa3, 0x01, 0x77, 0x79, 0xda, 0xdd, 0xa5, 0x77, 0x5d,
+	0x97, 0x53, 0xa9, 0x5d, 0xf9, 0x4b, 0xf0, 0x2f, 0xa2, 0x7e, 0x23, 0xca, 0xd2, 0xab, 0x87, 0xf6,
+	0x54, 0xe0, 0x7d, 0xc7, 0x18, 0x74, 0xf8, 0x82, 0xe3, 0xce, 0x86, 0x9d, 0x77, 0xca, 0x9d, 0x81,
+	0x61, 0xea, 0x34, 0x55, 0x1a, 0x97, 0xd5, 0xd5, 0x4d, 0x98, 0x08, 0x45, 0x9c, 0x33, 0x6f, 0x5c,
+	0x34, 0xaf, 0x72, 0x91, 0x25, 0x0c, 0xdc, 0x5a, 0x1f, 0x1e, 0x1e, 0x51, 0xbf, 0x9d, 0x6f, 0xcb,
+	0x0f, 0xb1, 0x34, 0xb4, 0xb1, 0x1a, 0x77, 0x99, 0x0d, 0x9a, 0xfa, 0x5c, 0x5e, 0x61, 0xa9, 0xed,
+	0xe6, 0x81, 0xde, 0xdf, 0x87, 0xf8, 0x25, 0x61, 0xf2, 0xf1, 0xe2, 0x59, 0xd7, 0xd2, 0xd9, 0x59,
+	0xe1, 0xa6, 0xd1, 0x32, 0x7a, 0xca, 0x0c, 0x54, 0x8e, 0xd1, 0xd6, 0xf9, 0x91, 0xa5, 0xa8, 0xc7,
+	0xdd, 0x3b, 0xca, 0x7a, 0x13, 0x8c, 0x78, 0xad, 0x4c, 0xf0, 0x95, 0x6c, 0xe3, 0x9d, 0x0c, 0xaf,
+	0x1f, 0x54, 0xa5, 0x32, 0xce, 0xd8, 0xd8, 0xc3, 0x4b, 0x03, 0x2a, 0x1a, 0x2e, 0xfb, 0xa9, 0x69,
+	0xa8, 0x2e, 0x87, 0xe1, 0x54, 0x17, 0x4f, 0xf8, 0x34, 0x1e, 0xb6, 0x0a, 0xf1, 0xe1, 0x2b, 0x80,
+	0x0e, 0xb2, 0x51, 0xc6, 0x86, 0x05, 0x1d, 0x64, 0x69, 0xa3, 0x5c, 0x5e, 0x83, 0x8e, 0x85, 0xbd,
+	0x6b, 0xe5, 0x76, 0x59, 0x8e, 0x78, 0xce, 0xe5, 0x2b, 0x12, 0x8b, 0x96, 0xef, 0x9a, 0x78, 0x04,
+	0xb8, 0x36, 0x9e, 0x73, 0xc5, 0x19, 0x16, 0x6b, 0x1b, 0x3d, 0x5d, 0x99, 0x1c, 0xb1, 0x68, 0x78,
+	0x59, 0x60, 0xe8, 0x3d, 0xef, 0x58, 0xe0, 0x17, 0xcf, 0xb3, 0x98, 0xa9, 0x83, 0x9f, 0x91, 0x8c,
+	0x7d, 0x72, 0x7a, 0x01, 0x4a, 0x63, 0xd0, 0xde, 0xd6, 0x7b, 0xa3, 0x8d, 0x9a, 0xb4, 0x81, 0x4f,
+	0x32, 0xf9, 0xa6, 0xd1, 0xee, 0xb6, 0xf4, 0xbb, 0xe0, 0x55, 0xef, 0xf4, 0xa1, 0x49, 0x63, 0x42,
+	0xec, 0x35, 0x7b, 0x94, 0xde, 0x28, 0xa1, 0x21, 0x17, 0xfb, 0x3a, 0x24, 0xf3, 0x2e, 0x4f, 0x70,
+	0x84, 0xcd, 0xfd, 0x66, 0x0f, 0xd3, 0x1a, 0xdb, 0xc5, 0x12, 0xcb, 0xdd, 0xe2, 0x5a, 0xa4, 0x6f,
+	0xb9, 0x86, 0x47, 0x76, 0xd6, 0x1e, 0xa2, 0x07, 0x39, 0x04, 0xe2, 0xe9, 0xf2, 0x46, 0x15, 0xa2,
+	0x03, 0x61, 0xaa, 0xae, 0x95, 0x21, 0x36, 0xf0, 0x63, 0xeb, 0xc9, 0xaa, 0x2f, 0x34, 0xf7, 0xb0,
+	0xac, 0xb3, 0xba, 0x4d, 0xdd, 0x24, 0x04, 0xdb, 0x4a, 0x52, 0x8b, 0xa4, 0x24, 0x35, 0xc9, 0xe2,
+	0xe5, 0x76, 0xd7, 0x3c, 0x54, 0x75, 0x96, 0xb1, 0x8c, 0x56, 0x9a, 0xd0, 0x9f, 0x0a, 0x2c, 0xd9,
+	0xb6, 0x76, 0x24, 0xd1, 0x9d, 0xe8, 0x3d, 0x78, 0xd7, 0xce, 0xfe, 0x0d, 0x77, 0x51, 0xd2, 0x53,
+	0xc5, 0x56, 0x19, 0x44, 0x78, 0x19, 0xf0, 0x1a, 0x89, 0x62, 0x8d, 0xa8, 0x25, 0x96, 0xe4, 0xf2,
+	0xae, 0x4f, 0x2d, 0x9c, 0x2b, 0x3d, 0x7e, 0xf4, 0xbc, 0x4f, 0x40, 0x3e, 0x50, 0xf6, 0x58, 0x83,
+	0x54, 0xb7, 0xea, 0x73, 0x31, 0x96, 0xb2, 0xb7, 0x0e, 0xbc, 0x04, 0x17, 0x63, 0xc4, 0xb0, 0x65,
+	0xf4, 0x24, 0x4b, 0x5a, 0xf2, 0xcb, 0x6a, 0x18, 0x28, 0x9e, 0xed, 0x41, 0xb8, 0x20, 0xa2, 0x8e,
+	0x64, 0x3e, 0xcd, 0xd2, 0x8e, 0xbc, 0xa2, 0xc2, 0xb7, 0x84, 0xb2, 0x3b, 0x0e, 0xe6, 0x71, 0x57,
+	0x1e, 0x9f, 0x86, 0x1b, 0xcb, 0x12, 0x50, 0xf4, 0x01, 0xc0, 0x16, 0xc5, 0xce, 0x38, 0x98, 0x27,
+	0x3d, 0x52, 0xf8, 0x0c, 0x4e, 0x4a, 0x22, 0x89, 0x6a, 0xc6, 0x15, 0xc0, 0x79, 0x24, 0x70, 0x61,
+	0x44, 0x79, 0xee, 0xca, 0x5e, 0x15, 0x11, 0x1e, 0x17, 0xa8, 0x9a, 0xd1, 0x62, 0x37, 0x8f, 0x6e,
+	0x49, 0xec, 0x52, 0x19, 0x79, 0x14, 0xee, 0x29, 0x62, 0xf3, 0x05, 0x66, 0x5d, 0x59, 0xeb, 0x0c,
+	0xd3, 0xf5, 0xe8, 0x68, 0xd9, 0x47, 0x31, 0x7c, 0x98, 0x3f, 0x70, 0x3d, 0x62, 0xfd, 0xe7, 0xdd,
+	0x83, 0xb5, 0x43, 0xcc, 0xcb, 0x5f, 0xe3, 0x15, 0x07, 0x41, 0x04, 0xc2, 0x7a, 0xb3, 0xb3, 0x07,
+	0x97, 0x27, 0x6e, 0x27, 0x0a, 0x3f, 0xf9, 0x21, 0xac, 0xe1, 0xa0, 0x4c, 0x83, 0xb1, 0x47, 0x70,
+	0x54, 0x01, 0xc1, 0x50, 0x5b, 0xab, 0x77, 0xe0, 0x3a, 0x24, 0xcb, 0x4e, 0xbd, 0x03, 0x7b, 0x8b,
+	0xf6, 0x07, 0xdb, 0x79, 0x25, 0xf8, 0xe9, 0x64, 0x73, 0xb0, 0xed, 0x1c, 0xa9, 0xc2, 0x52, 0x90,
+	0x0a, 0xb5, 0x2f, 0xea, 0x3d, 0x23, 0x3f, 0x49, 0xfb, 0x3f, 0x71, 0xcc, 0x1e, 0x00, 0xd7, 0x6a,
+	0xc6, 0xeb, 0x29, 0xcb, 0xa4, 0x0e, 0xef, 0xfd, 0x9a, 0x74, 0x55, 0x5d, 0x65, 0x59, 0x5b, 0x49,
+	0x51, 0xc5, 0x5c, 0xc1, 0x64, 0x04, 0x9f, 0x94, 0xd3, 0xe3, 0xc5, 0x7b, 0xdc, 0xd5, 0x78, 0xcd,
+	0xf8, 0xf6, 0x55, 0x39, 0xb0, 0x00, 0x49, 0xfd, 0xa6, 0x04, 0xb5, 0x04, 0x0d, 0xc5, 0x36, 0xc6,
+	0xe4, 0xde, 0x86, 0x44, 0xec, 0x93, 0x3f, 0x7c, 0x2f, 0x67, 0xe9, 0x4f, 0x5b, 0xa0, 0x46, 0x9c,
+	0xc7, 0x01, 0xd4, 0x04, 0x1c, 0x44, 0x9f, 0xd7, 0x36, 0x64, 0x48, 0x06, 0xff, 0xb2, 0xcd, 0x62,
+	0xce, 0xf3, 0xe0, 0x2c, 0x1b, 0xa3, 0xf3, 0x72, 0xa0, 0xa4, 0xf3, 0x28, 0xc8, 0xb1, 0x24, 0xaf,
+	0x96, 0x3e, 0x7d, 0xb3, 0x4a, 0x63, 0xff, 0x20, 0xf1, 0xc3, 0x2f, 0x87, 0xa4, 0xfa, 0xff, 0x2c,
+	0x45, 0x1d, 0x15, 0xee, 0x7f, 0xe5, 0x7e, 0x26, 0x35, 0xf2, 0x3a, 0x35, 0xec, 0x93, 0x1e, 0xa9,
+	0x63, 0xc1, 0x85, 0xa5, 0xa9, 0x71, 0x26, 0x2d, 0xa1, 0x38, 0xb9, 0xcb, 0x8b, 0x45, 0xad, 0x58,
+	0x64, 0xb8, 0xdc, 0x45, 0x64, 0x80, 0x81, 0x7c, 0xd6, 0x4f, 0xc6, 0x9f, 0x87, 0xfc, 0x6b, 0x1c,
+	0x0a, 0x20, 0xca, 0x7c, 0x58, 0xe7, 0xba, 0x01, 0x5b, 0x41, 0x6c, 0x8f, 0xae, 0x47, 0x49, 0xfd,
+	0x20, 0xca, 0xc6, 0xad, 0x1e, 0xf1, 0x64, 0xd3, 0xdc, 0x5f, 0xad, 0x77, 0x95, 0xc7, 0x58, 0x16,
+	0x5b, 0x45, 0xad, 0x5d, 0xef, 0x76, 0x31, 0xf7, 0x25, 0xba, 0xbb, 0x1e, 0x1a, 0x6a, 0x35, 0x96,
+	0x7d, 0x61, 0x0d, 0x8c, 0x57, 0xb9, 0x6d, 0xb9, 0x63, 0xf6, 0x0e, 0x95, 0x4f, 0xb0, 0x4c, 0xbb,
+	0xdf, 0x70, 0xf8, 0x11, 0xe2, 0x5f, 0x0a, 0xe5, 0xaf, 0xf6, 0x1b, 0x3e, 0x3a, 0xcc, 0x8f, 0xcd,
+	0xc6, 0xe1, 0x47, 0x8f, 0x98, 0x1f, 0xcb, 0xcf, 0xe7, 0x40, 0x03, 0xc1, 0x0a, 0x89, 0x6b, 0x1a,
+	0xa8, 0x03, 0xe9, 0x20, 0x33, 0xc5, 0x8b, 0xa1, 0x74, 0xa8, 0xf0, 0x2d, 0x03, 0xfe, 0x43, 0xdc,
+	0xa9, 0x22, 0x93, 0x87, 0xf6, 0xe3, 0x11, 0x2f, 0x71, 0xbf, 0x78, 0x49, 0x6b, 0x91, 0x6b, 0xd2,
+	0xd4, 0xa7, 0x58, 0x2e, 0xb8, 0x07, 0x0f, 0x45, 0x01, 0xc5, 0xe0, 0xa1, 0x64, 0x8a, 0x67, 0x3c,
+	0x5f, 0x69, 0xbd, 0xc7, 0x42, 0xbe, 0x60, 0xfe, 0xa1, 0xfd, 0x78, 0x9c, 0xa5, 0x02, 0xe2, 0x89,
+	0x38, 0x8f, 0xb2, 0x31, 0xdf, 0x26, 0xbc, 0x84, 0xf4, 0x88, 0x05, 0xab, 0xef, 0x47, 0x59, 0xbc,
+	0xda, 0xd1, 0x8d, 0x3d, 0xd0, 0x01, 0xbe, 0xb6, 0xfd, 0xf8, 0x09, 0x10, 0x0b, 0xfe, 0x96, 0xed,
+	0x19, 0xb2, 0x1b, 0x36, 0x0c, 0x4d, 0x0e, 0xb5, 0x6b, 0xdf, 0xa0, 0xdd, 0xab, 0x61, 0x50, 0x09,
+	0x36, 0x6a, 0xef, 0x98, 0xdd, 0xa4, 0xed, 0x49, 0x3c, 0x0d, 0xda, 0x36, 0xf3, 0xb6, 0x66, 0x7b,
+	0xcc, 0xdb, 0x94, 0x6d, 0xaa, 0xa7, 0x09, 0x3b, 0x66, 0x9e, 0xee, 0xeb, 0x1d, 0xb3, 0x5b, 0x2f,
+	0x8c, 0x5d, 0x09, 0xf4, 0xdd, 0x70, 0xdd, 0x05, 0xc6, 0x97, 0x71, 0x7f, 0xb6, 0xa4, 0xc8, 0x09,
+	0xbe, 0x3a, 0x93, 0x6d, 0x72, 0xcf, 0x92, 0xd5, 0x32, 0x55, 0xad, 0xe7, 0xd4, 0x29, 0xf4, 0x85,
+	0x4a, 0x8d, 0xaa, 0x17, 0x6c, 0xcf, 0x41, 0x7d, 0xd6, 0x56, 0xea, 0xbd, 0x06, 0x18, 0xd4, 0xe0,
+	0xb9, 0xe1, 0x3c, 0x30, 0x30, 0xf8, 0x39, 0xfb, 0xf8, 0x76, 0x69, 0x40, 0x9a, 0x3a, 0x89, 0xbb,
+	0xe5, 0x32, 0x8d, 0xca, 0x1d, 0xbb, 0x7a, 0x7c, 0x11, 0x24, 0xc3, 0xa0, 0x03, 0x82, 0x66, 0x31,
+	0xcd, 0x92, 0xa6, 0xd1, 0x6b, 0xd7, 0x4d, 0x43, 0xfd, 0x2e, 0xbc, 0xe3, 0x40, 0xf0, 0xb4, 0x01,
+	0xb8, 0x43, 0x97, 0x71, 0xa6, 0x5d, 0x3f, 0x80, 0xba, 0xd2, 0x6b, 0x3b, 0x3d, 0x3b, 0x9d, 0x64,
+	0x5b, 0x38, 0xd1, 0x81, 0xe1, 0x84, 0xe3, 0x96, 0x52, 0x48, 0x58, 0xd1, 0x1d, 0xb7, 0xd4, 0x5b,
+	0xd2, 0x0a, 0x2d, 0x30, 0x4c, 0xbd, 0xdd, 0xad, 0xed, 0xd0, 0x39, 0xe1, 0x99, 0x5c, 0x62, 0x51,
+	0x68, 0xe0, 0x74, 0x44, 0x47, 0x44, 0x70, 0x9a, 0x45, 0xa1, 0x33, 0xd0, 0xc1, 0x65, 0x8a, 0x13,
+	0x9e, 0x6b, 0x87, 0x37, 0xd1, 0xc7, 0x4f, 0x38, 0xfb, 0xb8, 0x9c, 0x63, 0xd1, 0x4a, 0xb5, 0x8a,
+	0x77, 0x0a, 0xfc, 0x6f, 0x56, 0x96, 0xb4, 0x07, 0x59, 0xaa, 0xd1, 0xd3, 0x75, 0x2c, 0x97, 0xd1,
+	0x22, 0xef, 0x19, 0xec, 0xc0, 0xda, 0x2d, 0x96, 0xdc, 0xe1, 0x22, 0x4f, 0x09, 0x51, 0xe6, 0xf9,
+	0xef, 0xf1, 0xe7, 0xd3, 0x94, 0x0b, 0x07, 0x65, 0xa1, 0x56, 0x01, 0xc9, 0x5c, 0x3b, 0xca, 0xcf,
+	0xf3, 0xbc, 0x33, 0x8a, 0xfc, 0x94, 0xd8, 0x44, 0xc7, 0xb0, 0xbf, 0x5f, 0xd5, 0x76, 0x29, 0x97,
+	0x95, 0xb3, 0xc3, 0x97, 0xbb, 0xed, 0x52, 0x27, 0x05, 0x32, 0xc7, 0x64, 0x0f, 0x8b, 0x54, 0xba,
+	0x88, 0xb4, 0x47, 0xf7, 0xba, 0x9f, 0x44, 0xa9, 0x2f, 0x22, 0x35, 0x48, 0x8f, 0x0d, 0x91, 0x40,
+	0x8b, 0x08, 0x48, 0xfb, 0x74, 0x87, 0xfb, 0x37, 0x35, 0x38, 0x72, 0xaa, 0x26, 0xe9, 0xb3, 0x61,
+	0x96, 0x78, 0xae, 0x67, 0x48, 0xbd, 0xf9, 0x59, 0xfd, 0x23, 0xe7, 0x3a, 0x20, 0xa9, 0x35, 0xcc,
+	0x12, 0xcf, 0xd5, 0x22, 0x25, 0x36, 0xcf, 0x14, 0x6f, 0xd8, 0x79, 0x77, 0x13, 0xd1, 0xda, 0xa4,
+	0x53, 0x47, 0xd0, 0xc4, 0xb3, 0x75, 0x48, 0xc6, 0x2e, 0xb0, 0x49, 0xef, 0x1a, 0x8f, 0x31, 0x9d,
+	0x01, 0xbc, 0xdc, 0x48, 0x9e, 0x78, 0xbe, 0x2e, 0xf0, 0x64, 0xad, 0xc8, 0x72, 0x1e, 0x1e, 0x4a,
+	0x22, 0x11, 0xe7, 0x0e, 0xa9, 0xf8, 0x40, 0x1c, 0xa9, 0x4a, 0x45, 0xac, 0x1e, 0x5d, 0x31, 0xfe,
+	0xa4, 0xa2, 0x87, 0x83, 0x88, 0xd4, 0xa7, 0x8b, 0xec, 0x69, 0xdf, 0xf2, 0x74, 0x14, 0x86, 0x02,
+	0x8e, 0x49, 0xbd, 0xe6, 0x62, 0xa8, 0x41, 0xc1, 0xfb, 0x26, 0xd3, 0x34, 0x36, 0x7e, 0xfc, 0x12,
+	0x7c, 0x5e, 0xe2, 0xaf, 0x80, 0xb9, 0x02, 0x3e, 0x10, 0xb4, 0xab, 0x6c, 0xec, 0xd8, 0x85, 0xf8,
+	0x82, 0xc4, 0x65, 0x37, 0x52, 0x21, 0x2d, 0xc6, 0x8e, 0x5d, 0x8c, 0x2f, 0x4a, 0xfc, 0x75, 0x54,
+	0x2a, 0x06, 0x68, 0xe2, 0x83, 0x7d, 0x89, 0x6b, 0xea, 0x48, 0x69, 0x0e, 0xb2, 0x62, 0xfc, 0xf8,
+	0x05, 0xf9, 0xb2, 0x44, 0x15, 0x19, 0x29, 0x95, 0x82, 0x3c, 0xf1, 0x7c, 0xaf, 0x48, 0x54, 0x93,
+	0x91, 0xd2, 0xbc, 0x97, 0x77, 0x74, 0x51, 0xbe, 0x2a, 0x51, 0x55, 0x46, 0x4a, 0x0b, 0x41, 0x9e,
+	0x78, 0xbe, 0xd7, 0x48, 0x3f, 0x01, 0xef, 0x2a, 0x1c, 0x43, 0xee, 0x63, 0x14, 0xe6, 0xeb, 0x12,
+	0x55, 0x66, 0xa4, 0x74, 0x6d, 0x88, 0x28, 0x9e, 0xf1, 0x0d, 0x89, 0x6a, 0x33, 0x52, 0xba, 0xae,
+	0x5d, 0x63, 0xf2, 0xc7, 0x29, 0xce, 0x37, 0x25, 0xaa, 0xce, 0xc8, 0xfc, 0xcc, 0x30, 0x53, 0x3c,
+	0xe7, 0x5b, 0x12, 0xd5, 0x67, 0x64, 0x7e, 0x16, 0xa2, 0x93, 0x3d, 0x6e, 0x81, 0xbe, 0xed, 0x79,
+	0x67, 0x6b, 0x37, 0x3c, 0x51, 0x3d, 0xb2, 0x48, 0xdf, 0x21, 0x5d, 0xa8, 0x8d, 0x3d, 0xce, 0x1f,
+	0xb3, 0x9c, 0xa0, 0x3d, 0xe6, 0xe6, 0xdd, 0x91, 0x15, 0xfb, 0xae, 0x44, 0x25, 0x9b, 0xb5, 0x3c,
+	0x90, 0xbd, 0xf6, 0x39, 0x77, 0xed, 0x47, 0x55, 0xef, 0x7b, 0xd2, 0xc7, 0x2a, 0x5f, 0xfc, 0x8c,
+	0x02, 0xa1, 0x89, 0xdd, 0x2d, 0xce, 0xcc, 0x7a, 0x2f, 0x63, 0xef, 0x17, 0x14, 0x5e, 0xb6, 0x99,
+	0x62, 0xce, 0xf3, 0xe9, 0x08, 0x3f, 0xa1, 0x58, 0xbc, 0x62, 0x28, 0xef, 0x05, 0x21, 0x6f, 0x2e,
+	0x94, 0xf7, 0xa2, 0x90, 0x57, 0x0a, 0xe5, 0xbd, 0x24, 0xe4, 0xcd, 0x87, 0xf2, 0x5e, 0x16, 0xf2,
+	0x16, 0x42, 0x79, 0xaf, 0x08, 0x79, 0x57, 0x43, 0x79, 0xaf, 0x0a, 0x79, 0xd7, 0x42, 0x79, 0xaf,
+	0x09, 0x79, 0xd7, 0x43, 0x79, 0xaf, 0x8b, 0x78, 0xb3, 0x33, 0xa1, 0xbc, 0x37, 0x84, 0xbc, 0xf0,
+	0x7c, 0x79, 0x53, 0xc8, 0x0b, 0xcf, 0x97, 0xb7, 0x84, 0xbc, 0xf0, 0x7c, 0x79, 0x5b, 0xc8, 0x0b,
+	0xcf, 0x97, 0x77, 0x84, 0xbc, 0xf0, 0x7c, 0x79, 0x57, 0xc8, 0x0b, 0xcf, 0x97, 0xf7, 0x84, 0xbc,
+	0xf0, 0x7c, 0xf9, 0xbe, 0x90, 0x17, 0x9e, 0x2f, 0x3f, 0x10, 0xf2, 0xc2, 0xf3, 0xe5, 0x87, 0x22,
+	0x5e, 0x31, 0x3c, 0x5f, 0x7e, 0x24, 0xe4, 0x85, 0xe7, 0xcb, 0x8f, 0x85, 0xbc, 0xf0, 0x7c, 0xf9,
+	0x89, 0x90, 0x17, 0x9e, 0x2f, 0x3f, 0x15, 0xf2, 0xc2, 0xf3, 0xe5, 0x67, 0x42, 0x5e, 0x78, 0xbe,
+	0xfc, 0x5c, 0xc8, 0x0b, 0xcf, 0x97, 0x5f, 0x08, 0x79, 0xe1, 0xf9, 0xf2, 0x4b, 0x21, 0x2f, 0x3c,
+	0x5f, 0xde, 0x17, 0xf2, 0xc2, 0xf3, 0xe5, 0x57, 0x22, 0xde, 0x5c, 0x78, 0xbe, 0xfc, 0x5a, 0xc8,
+	0x0b, 0xcf, 0x97, 0xdf, 0x08, 0x79, 0xe1, 0xf9, 0xf2, 0x5b, 0x21, 0x2f, 0x3c, 0x5f, 0x7e, 0x27,
+	0xe4, 0x85, 0xe7, 0xcb, 0xef, 0x85, 0xbc, 0xf0, 0x7c, 0xf9, 0x83, 0x90, 0x17, 0x9e, 0x2f, 0x7f,
+	0x14, 0xf2, 0xc2, 0xf3, 0xe5, 0x4f, 0x42, 0x5e, 0x78, 0xbe, 0xfc, 0x59, 0xc8, 0x0b, 0xcf, 0x97,
+	0xbf, 0x88, 0x78, 0xa5, 0xf0, 0x7c, 0xf9, 0xab, 0x90, 0x17, 0x9e, 0x2f, 0x7f, 0x13, 0xf2, 0xc2,
+	0xf3, 0xe5, 0x03, 0x21, 0x2f, 0x3c, 0x5f, 0xfe, 0x2e, 0xe4, 0x85, 0xe7, 0xcb, 0x3f, 0x84, 0xbc,
+	0xf0, 0x7c, 0xf9, 0xa7, 0x90, 0x17, 0x9e, 0x2f, 0x1f, 0x0a, 0x79, 0xe1, 0xf9, 0xf2, 0x91, 0x90,
+	0x17, 0x9e, 0x2f, 0xff, 0x12, 0xf2, 0xc2, 0xf3, 0xe5, 0xdf, 0x22, 0xde, 0x7c, 0x78, 0xbe, 0xfc,
+	0x67, 0x34, 0xef, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x8e, 0xa4, 0xcf, 0x8d, 0xf9, 0x2b, 0x00,
+	0x00,
 }
diff --git a/proto/testdata/test.proto b/proto/testdata/test.proto
index c72f6c3..698c8ce 100644
--- a/proto/testdata/test.proto
+++ b/proto/testdata/test.proto
@@ -492,6 +492,34 @@
   map<string, string> str_to_str = 4;
 }
 
+message Oneof {
+  oneof union {
+    bool F_Bool = 1;
+    int32 F_Int32 = 2;
+    int64 F_Int64 = 3;
+    fixed32 F_Fixed32 = 4;
+    fixed64 F_Fixed64 = 5;
+    uint32 F_Uint32 = 6;
+    uint64 F_Uint64 = 7;
+    float F_Float = 8;
+    double F_Double = 9;
+    string F_String = 10;
+    bytes F_Bytes = 11;
+    sint32 F_Sint32 = 12;
+    sint64 F_Sint64 = 13;
+    MyMessage.Color F_Enum = 14;
+    GoTestField F_Message = 15;
+    group F_Group = 16 {
+      optional int32 x = 17;
+    }
+    int32 F_Largest_Tag = 536870911;
+  }
+
+  oneof tormato {
+    int32 value = 100;
+  }
+}
+
 message Communique {
   optional bool make_me_cry = 1;
 
diff --git a/protoc-gen-go/generator/generator.go b/protoc-gen-go/generator/generator.go
index 1ff06b8..776a116 100644
--- a/protoc-gen-go/generator/generator.go
+++ b/protoc-gen-go/generator/generator.go
@@ -329,25 +329,34 @@
 		// but they're going to break weirdly for text/JSON.
 		enc := "_" + ms.sym + "_OneofMarshaler"
 		dec := "_" + ms.sym + "_OneofUnmarshaler"
+		size := "_" + ms.sym + "_OneofSizer"
 		encSig := "(msg " + g.Pkg["proto"] + ".Message, b *" + g.Pkg["proto"] + ".Buffer) error"
 		decSig := "(msg " + g.Pkg["proto"] + ".Message, tag, wire int, b *" + g.Pkg["proto"] + ".Buffer) (bool, error)"
-		g.P("func (m *", ms.sym, ") XXX_OneofFuncs() (func", encSig, ", func", decSig, ", []interface{}) {")
-		g.P("return ", enc, ", ", dec, ", nil")
+		sizeSig := "(msg " + g.Pkg["proto"] + ".Message) int"
+		g.P("func (m *", ms.sym, ") XXX_OneofFuncs() (func", encSig, ", func", decSig, ", func", sizeSig, ", []interface{}) {")
+		g.P("return ", enc, ", ", dec, ", ", size, ", nil")
 		g.P("}")
 
 		g.P("func ", enc, encSig, " {")
 		g.P("m := msg.(*", ms.sym, ")")
 		g.P("m0 := (*", remoteSym, ")(m)")
-		g.P("enc, _, _ := m0.XXX_OneofFuncs()")
+		g.P("enc, _, _, _ := m0.XXX_OneofFuncs()")
 		g.P("return enc(m0, b)")
 		g.P("}")
 
 		g.P("func ", dec, decSig, " {")
 		g.P("m := msg.(*", ms.sym, ")")
 		g.P("m0 := (*", remoteSym, ")(m)")
-		g.P("_, dec, _ := m0.XXX_OneofFuncs()")
+		g.P("_, dec, _, _ := m0.XXX_OneofFuncs()")
 		g.P("return dec(m0, tag, wire, b)")
 		g.P("}")
+
+		g.P("func ", size, sizeSig, " {")
+		g.P("m := msg.(*", ms.sym, ")")
+		g.P("m0 := (*", remoteSym, ")(m)")
+		g.P("_, _, size, _ := m0.XXX_OneofFuncs()")
+		g.P("return size(m0)")
+		g.P("}")
 	}
 	for _, get := range ms.getters {
 
@@ -2124,12 +2133,14 @@
 		// method
 		enc := "_" + ccTypeName + "_OneofMarshaler"
 		dec := "_" + ccTypeName + "_OneofUnmarshaler"
+		size := "_" + ccTypeName + "_OneofSizer"
 		encSig := "(msg " + g.Pkg["proto"] + ".Message, b *" + g.Pkg["proto"] + ".Buffer) error"
 		decSig := "(msg " + g.Pkg["proto"] + ".Message, tag, wire int, b *" + g.Pkg["proto"] + ".Buffer) (bool, error)"
+		sizeSig := "(msg " + g.Pkg["proto"] + ".Message) (n int)"
 
 		g.P("// XXX_OneofFuncs is for the internal use of the proto package.")
-		g.P("func (*", ccTypeName, ") XXX_OneofFuncs() (func", encSig, ", func", decSig, ", []interface{}) {")
-		g.P("return ", enc, ", ", dec, ", []interface{}{")
+		g.P("func (*", ccTypeName, ") XXX_OneofFuncs() (func", encSig, ", func", decSig, ", func", sizeSig, ", []interface{}) {")
+		g.P("return ", enc, ", ", dec, ", ", size, ", []interface{}{")
 		for _, field := range message.Field {
 			if field.OneofIndex == nil {
 				continue
@@ -2316,6 +2327,90 @@
 		g.P("}")
 		g.P("}")
 		g.P()
+
+		// sizer
+		g.P("func ", size, sizeSig, " {")
+		g.P("m := msg.(*", ccTypeName, ")")
+		for oi, odp := range message.OneofDecl {
+			g.P("// ", odp.GetName())
+			fname := oneofFieldName[int32(oi)]
+			g.P("switch x := m.", fname, ".(type) {")
+			for _, field := range message.Field {
+				if field.OneofIndex == nil || int(*field.OneofIndex) != oi {
+					continue
+				}
+				g.P("case *", oneofTypeName[field], ":")
+				val := "x." + fieldNames[field]
+				var wire, varint, fixed string
+				switch *field.Type {
+				case descriptor.FieldDescriptorProto_TYPE_DOUBLE:
+					wire = "WireFixed64"
+					fixed = "8"
+				case descriptor.FieldDescriptorProto_TYPE_FLOAT:
+					wire = "WireFixed32"
+					fixed = "4"
+				case descriptor.FieldDescriptorProto_TYPE_INT64,
+					descriptor.FieldDescriptorProto_TYPE_UINT64,
+					descriptor.FieldDescriptorProto_TYPE_INT32,
+					descriptor.FieldDescriptorProto_TYPE_UINT32,
+					descriptor.FieldDescriptorProto_TYPE_ENUM:
+					wire = "WireVarint"
+					varint = val
+				case descriptor.FieldDescriptorProto_TYPE_FIXED64,
+					descriptor.FieldDescriptorProto_TYPE_SFIXED64:
+					wire = "WireFixed64"
+					fixed = "8"
+				case descriptor.FieldDescriptorProto_TYPE_FIXED32,
+					descriptor.FieldDescriptorProto_TYPE_SFIXED32:
+					wire = "WireFixed32"
+					fixed = "4"
+				case descriptor.FieldDescriptorProto_TYPE_BOOL:
+					wire = "WireVarint"
+					fixed = "1"
+				case descriptor.FieldDescriptorProto_TYPE_STRING:
+					wire = "WireBytes"
+					fixed = "len(" + val + ")"
+					varint = fixed
+				case descriptor.FieldDescriptorProto_TYPE_GROUP:
+					wire = "WireStartGroup"
+					fixed = g.Pkg["proto"] + ".Size(" + val + ")"
+				case descriptor.FieldDescriptorProto_TYPE_MESSAGE:
+					wire = "WireBytes"
+					g.P("s := ", g.Pkg["proto"], ".Size(", val, ")")
+					fixed = "s"
+					varint = fixed
+				case descriptor.FieldDescriptorProto_TYPE_BYTES:
+					wire = "WireBytes"
+					fixed = "len(" + val + ")"
+					varint = fixed
+				case descriptor.FieldDescriptorProto_TYPE_SINT32:
+					wire = "WireVarint"
+					varint = "(uint32(" + val + ") << 1) ^ uint32((int32(" + val + ") >> 31))"
+				case descriptor.FieldDescriptorProto_TYPE_SINT64:
+					wire = "WireVarint"
+					varint = "uint64(" + val + " << 1) ^ uint64((int64(" + val + ") >> 63))"
+				default:
+					g.Fail("unhandled oneof field type ", field.Type.String())
+				}
+				g.P("n += ", g.Pkg["proto"], ".SizeVarint(", field.Number, "<<3|", g.Pkg["proto"], ".", wire, ")")
+				if varint != "" {
+					g.P("n += ", g.Pkg["proto"], ".SizeVarint(uint64(", varint, "))")
+				}
+				if fixed != "" {
+					g.P("n += ", fixed)
+				}
+				if *field.Type == descriptor.FieldDescriptorProto_TYPE_GROUP {
+					g.P("n += ", g.Pkg["proto"], ".SizeVarint(", field.Number, "<<3|", g.Pkg["proto"], ".WireEndGroup)")
+				}
+			}
+			g.P("case nil:")
+			g.P("default:")
+			g.P("panic(", g.Pkg["fmt"], ".Sprintf(\"proto: unexpected type %T in oneof\", x))")
+			g.P("}")
+		}
+		g.P("return n")
+		g.P("}")
+		g.P()
 	}
 
 	for _, ext := range message.ext {
diff --git a/protoc-gen-go/testdata/my_test/test.pb.go b/protoc-gen-go/testdata/my_test/test.pb.go
index 9278aaa..d63f58f 100644
--- a/protoc-gen-go/testdata/my_test/test.pb.go
+++ b/protoc-gen-go/testdata/my_test/test.pb.go
@@ -623,8 +623,8 @@
 }
 
 // XXX_OneofFuncs is for the internal use of the proto package.
-func (*Communique) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), []interface{}) {
-	return _Communique_OneofMarshaler, _Communique_OneofUnmarshaler, []interface{}{
+func (*Communique) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
+	return _Communique_OneofMarshaler, _Communique_OneofUnmarshaler, _Communique_OneofSizer, []interface{}{
 		(*Communique_Number)(nil),
 		(*Communique_Name)(nil),
 		(*Communique_Data)(nil),
@@ -768,6 +768,52 @@
 	}
 }
 
+func _Communique_OneofSizer(msg proto.Message) (n int) {
+	m := msg.(*Communique)
+	// union
+	switch x := m.Union.(type) {
+	case *Communique_Number:
+		n += proto.SizeVarint(5<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.Number))
+	case *Communique_Name:
+		n += proto.SizeVarint(6<<3 | proto.WireBytes)
+		n += proto.SizeVarint(uint64(len(x.Name)))
+		n += len(x.Name)
+	case *Communique_Data:
+		n += proto.SizeVarint(7<<3 | proto.WireBytes)
+		n += proto.SizeVarint(uint64(len(x.Data)))
+		n += len(x.Data)
+	case *Communique_TempC:
+		n += proto.SizeVarint(8<<3 | proto.WireFixed64)
+		n += 8
+	case *Communique_Height:
+		n += proto.SizeVarint(9<<3 | proto.WireFixed32)
+		n += 4
+	case *Communique_Today:
+		n += proto.SizeVarint(10<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.Today))
+	case *Communique_Maybe:
+		n += proto.SizeVarint(11<<3 | proto.WireVarint)
+		n += 1
+	case *Communique_Delta_:
+		n += proto.SizeVarint(12<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64((uint32(x.Delta) << 1) ^ uint32((int32(x.Delta) >> 31))))
+	case *Communique_Msg:
+		s := proto.Size(x.Msg)
+		n += proto.SizeVarint(13<<3 | proto.WireBytes)
+		n += proto.SizeVarint(uint64(s))
+		n += s
+	case *Communique_Somegroup:
+		n += proto.SizeVarint(14<<3 | proto.WireStartGroup)
+		n += proto.Size(x.Somegroup)
+		n += proto.SizeVarint(14<<3 | proto.WireEndGroup)
+	case nil:
+	default:
+		panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
+	}
+	return n
+}
+
 type Communique_SomeGroup struct {
 	Member           *string `protobuf:"bytes,15,opt,name=member" json:"member,omitempty"`
 	XXX_unrecognized []byte  `json:"-"`
diff --git a/protoc-gen-go/testdata/my_test/test.pb.go.golden b/protoc-gen-go/testdata/my_test/test.pb.go.golden
index 9278aaa..d63f58f 100644
--- a/protoc-gen-go/testdata/my_test/test.pb.go.golden
+++ b/protoc-gen-go/testdata/my_test/test.pb.go.golden
@@ -623,8 +623,8 @@
 }
 
 // XXX_OneofFuncs is for the internal use of the proto package.
-func (*Communique) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), []interface{}) {
-	return _Communique_OneofMarshaler, _Communique_OneofUnmarshaler, []interface{}{
+func (*Communique) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
+	return _Communique_OneofMarshaler, _Communique_OneofUnmarshaler, _Communique_OneofSizer, []interface{}{
 		(*Communique_Number)(nil),
 		(*Communique_Name)(nil),
 		(*Communique_Data)(nil),
@@ -768,6 +768,52 @@
 	}
 }
 
+func _Communique_OneofSizer(msg proto.Message) (n int) {
+	m := msg.(*Communique)
+	// union
+	switch x := m.Union.(type) {
+	case *Communique_Number:
+		n += proto.SizeVarint(5<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.Number))
+	case *Communique_Name:
+		n += proto.SizeVarint(6<<3 | proto.WireBytes)
+		n += proto.SizeVarint(uint64(len(x.Name)))
+		n += len(x.Name)
+	case *Communique_Data:
+		n += proto.SizeVarint(7<<3 | proto.WireBytes)
+		n += proto.SizeVarint(uint64(len(x.Data)))
+		n += len(x.Data)
+	case *Communique_TempC:
+		n += proto.SizeVarint(8<<3 | proto.WireFixed64)
+		n += 8
+	case *Communique_Height:
+		n += proto.SizeVarint(9<<3 | proto.WireFixed32)
+		n += 4
+	case *Communique_Today:
+		n += proto.SizeVarint(10<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64(x.Today))
+	case *Communique_Maybe:
+		n += proto.SizeVarint(11<<3 | proto.WireVarint)
+		n += 1
+	case *Communique_Delta_:
+		n += proto.SizeVarint(12<<3 | proto.WireVarint)
+		n += proto.SizeVarint(uint64((uint32(x.Delta) << 1) ^ uint32((int32(x.Delta) >> 31))))
+	case *Communique_Msg:
+		s := proto.Size(x.Msg)
+		n += proto.SizeVarint(13<<3 | proto.WireBytes)
+		n += proto.SizeVarint(uint64(s))
+		n += s
+	case *Communique_Somegroup:
+		n += proto.SizeVarint(14<<3 | proto.WireStartGroup)
+		n += proto.Size(x.Somegroup)
+		n += proto.SizeVarint(14<<3 | proto.WireEndGroup)
+	case nil:
+	default:
+		panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
+	}
+	return n
+}
+
 type Communique_SomeGroup struct {
 	Member           *string `protobuf:"bytes,15,opt,name=member" json:"member,omitempty"`
 	XXX_unrecognized []byte  `json:"-"`