Copyright 2018 The Go Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
Code generated by generate-types. DO NOT EDIT.

package impl

import (
	
	

	
	
)
sizeBool returns the size of wire encoding a bool pointer as a Bool.
appendBool wire encodes a bool pointer as a Bool.
consumeBool wire decodes a bool pointer as a Bool.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	*.Bool() = protowire.DecodeBool()
	.n = 
	return , nil
}

var coderBool = pointerCoderFuncs{
	size:      sizeBool,
	marshal:   appendBool,
	unmarshal: consumeBool,
	merge:     mergeBool,
}
sizeBoolNoZero returns the size of wire encoding a bool pointer as a Bool. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Bool()
	if  == false {
		return 0
	}
	return .tagsize + protowire.SizeVarint(protowire.EncodeBool())
}
appendBoolNoZero wire encodes a bool pointer as a Bool. The zero value is not encoded.
sizeBoolPtr returns the size of wire encoding a *bool pointer as a Bool. It panics if the pointer is nil.
appendBoolPtr wire encodes a *bool pointer as a Bool. It panics if the pointer is nil.
consumeBoolPtr wire decodes a *bool pointer as a Bool.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .BoolPtr()
	if * == nil {
		* = new(bool)
	}
	** = protowire.DecodeBool()
	.n = 
	return , nil
}

var coderBoolPtr = pointerCoderFuncs{
	size:      sizeBoolPtr,
	marshal:   appendBoolPtr,
	unmarshal: consumeBoolPtr,
	merge:     mergeBoolPtr,
}
sizeBoolSlice returns the size of wire encoding a []bool pointer as a repeated Bool.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.BoolSlice()
	for ,  := range  {
		 += .tagsize + protowire.SizeVarint(protowire.EncodeBool())
	}
	return 
}
appendBoolSlice encodes a []bool pointer as a repeated Bool.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.BoolSlice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendVarint(, protowire.EncodeBool())
	}
	return , nil
}
consumeBoolSlice wire decodes a []bool pointer as a repeated Bool.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .BoolSlice()
	if  == protowire.BytesType {
		 := *
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return , protowire.ParseError()
			}
			 = append(, protowire.DecodeBool())
			 = [:]
		}
		* = 
		.n = 
		return , nil
	}
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, protowire.DecodeBool())
	.n = 
	return , nil
}

var coderBoolSlice = pointerCoderFuncs{
	size:      sizeBoolSlice,
	marshal:   appendBoolSlice,
	unmarshal: consumeBoolSlice,
	merge:     mergeBoolSlice,
}
sizeBoolPackedSlice returns the size of wire encoding a []bool pointer as a packed repeated Bool.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.BoolSlice()
	if len() == 0 {
		return 0
	}
	 := 0
	for ,  := range  {
		 += protowire.SizeVarint(protowire.EncodeBool())
	}
	return .tagsize + protowire.SizeBytes()
}
appendBoolPackedSlice encodes a []bool pointer as a packed repeated Bool.
sizeBoolValue returns the size of wire encoding a bool value as a Bool.
appendBoolValue encodes a bool value as a Bool.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendVarint(, protowire.EncodeBool(.Bool()))
	return , nil
}
consumeBoolValue decodes a bool value as a Bool.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.n = 
	return protoreflect.ValueOfBool(protowire.DecodeBool()), , nil
}

var coderBoolValue = valueCoderFuncs{
	size:      sizeBoolValue,
	marshal:   appendBoolValue,
	unmarshal: consumeBoolValue,
	merge:     mergeScalarValue,
}
sizeBoolSliceValue returns the size of wire encoding a []bool value as a repeated Bool.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 +=  + protowire.SizeVarint(protowire.EncodeBool(.Bool()))
	}
	return 
}
appendBoolSliceValue encodes a []bool value as a repeated Bool.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendVarint(, protowire.EncodeBool(.Bool()))
	}
	return , nil
}
consumeBoolSliceValue wire decodes a []bool value as a repeated Bool.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	 := .List()
	if  == protowire.BytesType {
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return protoreflect.Value{}, , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return protoreflect.Value{}, , protowire.ParseError()
			}
			.Append(protoreflect.ValueOfBool(protowire.DecodeBool()))
			 = [:]
		}
		.n = 
		return , , nil
	}
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.Append(protoreflect.ValueOfBool(protowire.DecodeBool()))
	.n = 
	return , , nil
}

var coderBoolSliceValue = valueCoderFuncs{
	size:      sizeBoolSliceValue,
	marshal:   appendBoolSliceValue,
	unmarshal: consumeBoolSliceValue,
	merge:     mergeListValue,
}
sizeBoolPackedSliceValue returns the size of wire encoding a []bool value as a packed repeated Bool.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 := 0
	for ,  := 0, ;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(protowire.EncodeBool(.Bool()))
	}
	return  + protowire.SizeBytes()
}
appendBoolPackedSliceValue encodes a []bool value as a packed repeated Bool.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 := 0
	for  := 0;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(protowire.EncodeBool(.Bool()))
	}
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, protowire.EncodeBool(.Bool()))
	}
	return , nil
}

var coderBoolPackedSliceValue = valueCoderFuncs{
	size:      sizeBoolPackedSliceValue,
	marshal:   appendBoolPackedSliceValue,
	unmarshal: consumeBoolSliceValue,
	merge:     mergeListValue,
}
sizeEnumValue returns the size of wire encoding a value as a Enum.
func ( protoreflect.Value,  int,  marshalOptions) int {
	return  + protowire.SizeVarint(uint64(.Enum()))
}
appendEnumValue encodes a value as a Enum.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendVarint(, uint64(.Enum()))
	return , nil
}
consumeEnumValue decodes a value as a Enum.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.n = 
	return protoreflect.ValueOfEnum(protoreflect.EnumNumber()), , nil
}

var coderEnumValue = valueCoderFuncs{
	size:      sizeEnumValue,
	marshal:   appendEnumValue,
	unmarshal: consumeEnumValue,
	merge:     mergeScalarValue,
}
sizeEnumSliceValue returns the size of wire encoding a [] value as a repeated Enum.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 +=  + protowire.SizeVarint(uint64(.Enum()))
	}
	return 
}
appendEnumSliceValue encodes a [] value as a repeated Enum.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendVarint(, uint64(.Enum()))
	}
	return , nil
}
consumeEnumSliceValue wire decodes a [] value as a repeated Enum.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	 := .List()
	if  == protowire.BytesType {
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return protoreflect.Value{}, , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return protoreflect.Value{}, , protowire.ParseError()
			}
			.Append(protoreflect.ValueOfEnum(protoreflect.EnumNumber()))
			 = [:]
		}
		.n = 
		return , , nil
	}
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.Append(protoreflect.ValueOfEnum(protoreflect.EnumNumber()))
	.n = 
	return , , nil
}

var coderEnumSliceValue = valueCoderFuncs{
	size:      sizeEnumSliceValue,
	marshal:   appendEnumSliceValue,
	unmarshal: consumeEnumSliceValue,
	merge:     mergeListValue,
}
sizeEnumPackedSliceValue returns the size of wire encoding a [] value as a packed repeated Enum.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 := 0
	for ,  := 0, ;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(uint64(.Enum()))
	}
	return  + protowire.SizeBytes()
}
appendEnumPackedSliceValue encodes a [] value as a packed repeated Enum.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 := 0
	for  := 0;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(uint64(.Enum()))
	}
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, uint64(.Enum()))
	}
	return , nil
}

var coderEnumPackedSliceValue = valueCoderFuncs{
	size:      sizeEnumPackedSliceValue,
	marshal:   appendEnumPackedSliceValue,
	unmarshal: consumeEnumSliceValue,
	merge:     mergeListValue,
}
sizeInt32 returns the size of wire encoding a int32 pointer as a Int32.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int32()
	return .tagsize + protowire.SizeVarint(uint64())
}
appendInt32 wire encodes a int32 pointer as a Int32.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Int32()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendVarint(, uint64())
	return , nil
}
consumeInt32 wire decodes a int32 pointer as a Int32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	*.Int32() = int32()
	.n = 
	return , nil
}

var coderInt32 = pointerCoderFuncs{
	size:      sizeInt32,
	marshal:   appendInt32,
	unmarshal: consumeInt32,
	merge:     mergeInt32,
}
sizeInt32NoZero returns the size of wire encoding a int32 pointer as a Int32. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int32()
	if  == 0 {
		return 0
	}
	return .tagsize + protowire.SizeVarint(uint64())
}
appendInt32NoZero wire encodes a int32 pointer as a Int32. The zero value is not encoded.
sizeInt32Ptr returns the size of wire encoding a *int32 pointer as a Int32. It panics if the pointer is nil.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := **.Int32Ptr()
	return .tagsize + protowire.SizeVarint(uint64())
}
appendInt32Ptr wire encodes a *int32 pointer as a Int32. It panics if the pointer is nil.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := **.Int32Ptr()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendVarint(, uint64())
	return , nil
}
consumeInt32Ptr wire decodes a *int32 pointer as a Int32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .Int32Ptr()
	if * == nil {
		* = new(int32)
	}
	** = int32()
	.n = 
	return , nil
}

var coderInt32Ptr = pointerCoderFuncs{
	size:      sizeInt32Ptr,
	marshal:   appendInt32Ptr,
	unmarshal: consumeInt32Ptr,
	merge:     mergeInt32Ptr,
}
sizeInt32Slice returns the size of wire encoding a []int32 pointer as a repeated Int32.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int32Slice()
	for ,  := range  {
		 += .tagsize + protowire.SizeVarint(uint64())
	}
	return 
}
appendInt32Slice encodes a []int32 pointer as a repeated Int32.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Int32Slice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendVarint(, uint64())
	}
	return , nil
}
consumeInt32Slice wire decodes a []int32 pointer as a repeated Int32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .Int32Slice()
	if  == protowire.BytesType {
		 := *
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return , protowire.ParseError()
			}
			 = append(, int32())
			 = [:]
		}
		* = 
		.n = 
		return , nil
	}
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, int32())
	.n = 
	return , nil
}

var coderInt32Slice = pointerCoderFuncs{
	size:      sizeInt32Slice,
	marshal:   appendInt32Slice,
	unmarshal: consumeInt32Slice,
	merge:     mergeInt32Slice,
}
sizeInt32PackedSlice returns the size of wire encoding a []int32 pointer as a packed repeated Int32.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int32Slice()
	if len() == 0 {
		return 0
	}
	 := 0
	for ,  := range  {
		 += protowire.SizeVarint(uint64())
	}
	return .tagsize + protowire.SizeBytes()
}
appendInt32PackedSlice encodes a []int32 pointer as a packed repeated Int32.
sizeInt32Value returns the size of wire encoding a int32 value as a Int32.
func ( protoreflect.Value,  int,  marshalOptions) int {
	return  + protowire.SizeVarint(uint64(int32(.Int())))
}
appendInt32Value encodes a int32 value as a Int32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendVarint(, uint64(int32(.Int())))
	return , nil
}
consumeInt32Value decodes a int32 value as a Int32.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.n = 
	return protoreflect.ValueOfInt32(int32()), , nil
}

var coderInt32Value = valueCoderFuncs{
	size:      sizeInt32Value,
	marshal:   appendInt32Value,
	unmarshal: consumeInt32Value,
	merge:     mergeScalarValue,
}
sizeInt32SliceValue returns the size of wire encoding a []int32 value as a repeated Int32.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 +=  + protowire.SizeVarint(uint64(int32(.Int())))
	}
	return 
}
appendInt32SliceValue encodes a []int32 value as a repeated Int32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendVarint(, uint64(int32(.Int())))
	}
	return , nil
}
consumeInt32SliceValue wire decodes a []int32 value as a repeated Int32.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	 := .List()
	if  == protowire.BytesType {
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return protoreflect.Value{}, , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return protoreflect.Value{}, , protowire.ParseError()
			}
			.Append(protoreflect.ValueOfInt32(int32()))
			 = [:]
		}
		.n = 
		return , , nil
	}
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.Append(protoreflect.ValueOfInt32(int32()))
	.n = 
	return , , nil
}

var coderInt32SliceValue = valueCoderFuncs{
	size:      sizeInt32SliceValue,
	marshal:   appendInt32SliceValue,
	unmarshal: consumeInt32SliceValue,
	merge:     mergeListValue,
}
sizeInt32PackedSliceValue returns the size of wire encoding a []int32 value as a packed repeated Int32.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 := 0
	for ,  := 0, ;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(uint64(int32(.Int())))
	}
	return  + protowire.SizeBytes()
}
appendInt32PackedSliceValue encodes a []int32 value as a packed repeated Int32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 := 0
	for  := 0;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(uint64(int32(.Int())))
	}
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, uint64(int32(.Int())))
	}
	return , nil
}

var coderInt32PackedSliceValue = valueCoderFuncs{
	size:      sizeInt32PackedSliceValue,
	marshal:   appendInt32PackedSliceValue,
	unmarshal: consumeInt32SliceValue,
	merge:     mergeListValue,
}
sizeSint32 returns the size of wire encoding a int32 pointer as a Sint32.
appendSint32 wire encodes a int32 pointer as a Sint32.
consumeSint32 wire decodes a int32 pointer as a Sint32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	*.Int32() = int32(protowire.DecodeZigZag( & math.MaxUint32))
	.n = 
	return , nil
}

var coderSint32 = pointerCoderFuncs{
	size:      sizeSint32,
	marshal:   appendSint32,
	unmarshal: consumeSint32,
	merge:     mergeInt32,
}
sizeSint32NoZero returns the size of wire encoding a int32 pointer as a Sint32. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int32()
	if  == 0 {
		return 0
	}
	return .tagsize + protowire.SizeVarint(protowire.EncodeZigZag(int64()))
}
appendSint32NoZero wire encodes a int32 pointer as a Sint32. The zero value is not encoded.
sizeSint32Ptr returns the size of wire encoding a *int32 pointer as a Sint32. It panics if the pointer is nil.
appendSint32Ptr wire encodes a *int32 pointer as a Sint32. It panics if the pointer is nil.
consumeSint32Ptr wire decodes a *int32 pointer as a Sint32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .Int32Ptr()
	if * == nil {
		* = new(int32)
	}
	** = int32(protowire.DecodeZigZag( & math.MaxUint32))
	.n = 
	return , nil
}

var coderSint32Ptr = pointerCoderFuncs{
	size:      sizeSint32Ptr,
	marshal:   appendSint32Ptr,
	unmarshal: consumeSint32Ptr,
	merge:     mergeInt32Ptr,
}
sizeSint32Slice returns the size of wire encoding a []int32 pointer as a repeated Sint32.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int32Slice()
	for ,  := range  {
		 += .tagsize + protowire.SizeVarint(protowire.EncodeZigZag(int64()))
	}
	return 
}
appendSint32Slice encodes a []int32 pointer as a repeated Sint32.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Int32Slice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendVarint(, protowire.EncodeZigZag(int64()))
	}
	return , nil
}
consumeSint32Slice wire decodes a []int32 pointer as a repeated Sint32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .Int32Slice()
	if  == protowire.BytesType {
		 := *
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return , protowire.ParseError()
			}
			 = append(, int32(protowire.DecodeZigZag(&math.MaxUint32)))
			 = [:]
		}
		* = 
		.n = 
		return , nil
	}
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, int32(protowire.DecodeZigZag(&math.MaxUint32)))
	.n = 
	return , nil
}

var coderSint32Slice = pointerCoderFuncs{
	size:      sizeSint32Slice,
	marshal:   appendSint32Slice,
	unmarshal: consumeSint32Slice,
	merge:     mergeInt32Slice,
}
sizeSint32PackedSlice returns the size of wire encoding a []int32 pointer as a packed repeated Sint32.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int32Slice()
	if len() == 0 {
		return 0
	}
	 := 0
	for ,  := range  {
		 += protowire.SizeVarint(protowire.EncodeZigZag(int64()))
	}
	return .tagsize + protowire.SizeBytes()
}
appendSint32PackedSlice encodes a []int32 pointer as a packed repeated Sint32.
sizeSint32Value returns the size of wire encoding a int32 value as a Sint32.
appendSint32Value encodes a int32 value as a Sint32.
consumeSint32Value decodes a int32 value as a Sint32.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.n = 
	return protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag( & math.MaxUint32))), , nil
}

var coderSint32Value = valueCoderFuncs{
	size:      sizeSint32Value,
	marshal:   appendSint32Value,
	unmarshal: consumeSint32Value,
	merge:     mergeScalarValue,
}
sizeSint32SliceValue returns the size of wire encoding a []int32 value as a repeated Sint32.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 +=  + protowire.SizeVarint(protowire.EncodeZigZag(int64(int32(.Int()))))
	}
	return 
}
appendSint32SliceValue encodes a []int32 value as a repeated Sint32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendVarint(, protowire.EncodeZigZag(int64(int32(.Int()))))
	}
	return , nil
}
consumeSint32SliceValue wire decodes a []int32 value as a repeated Sint32.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	 := .List()
	if  == protowire.BytesType {
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return protoreflect.Value{}, , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return protoreflect.Value{}, , protowire.ParseError()
			}
			.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag( & math.MaxUint32))))
			 = [:]
		}
		.n = 
		return , , nil
	}
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag( & math.MaxUint32))))
	.n = 
	return , , nil
}

var coderSint32SliceValue = valueCoderFuncs{
	size:      sizeSint32SliceValue,
	marshal:   appendSint32SliceValue,
	unmarshal: consumeSint32SliceValue,
	merge:     mergeListValue,
}
sizeSint32PackedSliceValue returns the size of wire encoding a []int32 value as a packed repeated Sint32.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 := 0
	for ,  := 0, ;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(protowire.EncodeZigZag(int64(int32(.Int()))))
	}
	return  + protowire.SizeBytes()
}
appendSint32PackedSliceValue encodes a []int32 value as a packed repeated Sint32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 := 0
	for  := 0;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(protowire.EncodeZigZag(int64(int32(.Int()))))
	}
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, protowire.EncodeZigZag(int64(int32(.Int()))))
	}
	return , nil
}

var coderSint32PackedSliceValue = valueCoderFuncs{
	size:      sizeSint32PackedSliceValue,
	marshal:   appendSint32PackedSliceValue,
	unmarshal: consumeSint32SliceValue,
	merge:     mergeListValue,
}
sizeUint32 returns the size of wire encoding a uint32 pointer as a Uint32.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint32()
	return .tagsize + protowire.SizeVarint(uint64())
}
appendUint32 wire encodes a uint32 pointer as a Uint32.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Uint32()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendVarint(, uint64())
	return , nil
}
consumeUint32 wire decodes a uint32 pointer as a Uint32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	*.Uint32() = uint32()
	.n = 
	return , nil
}

var coderUint32 = pointerCoderFuncs{
	size:      sizeUint32,
	marshal:   appendUint32,
	unmarshal: consumeUint32,
	merge:     mergeUint32,
}
sizeUint32NoZero returns the size of wire encoding a uint32 pointer as a Uint32. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint32()
	if  == 0 {
		return 0
	}
	return .tagsize + protowire.SizeVarint(uint64())
}
appendUint32NoZero wire encodes a uint32 pointer as a Uint32. The zero value is not encoded.
sizeUint32Ptr returns the size of wire encoding a *uint32 pointer as a Uint32. It panics if the pointer is nil.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := **.Uint32Ptr()
	return .tagsize + protowire.SizeVarint(uint64())
}
appendUint32Ptr wire encodes a *uint32 pointer as a Uint32. It panics if the pointer is nil.
consumeUint32Ptr wire decodes a *uint32 pointer as a Uint32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .Uint32Ptr()
	if * == nil {
		* = new(uint32)
	}
	** = uint32()
	.n = 
	return , nil
}

var coderUint32Ptr = pointerCoderFuncs{
	size:      sizeUint32Ptr,
	marshal:   appendUint32Ptr,
	unmarshal: consumeUint32Ptr,
	merge:     mergeUint32Ptr,
}
sizeUint32Slice returns the size of wire encoding a []uint32 pointer as a repeated Uint32.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint32Slice()
	for ,  := range  {
		 += .tagsize + protowire.SizeVarint(uint64())
	}
	return 
}
appendUint32Slice encodes a []uint32 pointer as a repeated Uint32.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Uint32Slice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendVarint(, uint64())
	}
	return , nil
}
consumeUint32Slice wire decodes a []uint32 pointer as a repeated Uint32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .Uint32Slice()
	if  == protowire.BytesType {
		 := *
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return , protowire.ParseError()
			}
			 = append(, uint32())
			 = [:]
		}
		* = 
		.n = 
		return , nil
	}
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, uint32())
	.n = 
	return , nil
}

var coderUint32Slice = pointerCoderFuncs{
	size:      sizeUint32Slice,
	marshal:   appendUint32Slice,
	unmarshal: consumeUint32Slice,
	merge:     mergeUint32Slice,
}
sizeUint32PackedSlice returns the size of wire encoding a []uint32 pointer as a packed repeated Uint32.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint32Slice()
	if len() == 0 {
		return 0
	}
	 := 0
	for ,  := range  {
		 += protowire.SizeVarint(uint64())
	}
	return .tagsize + protowire.SizeBytes()
}
appendUint32PackedSlice encodes a []uint32 pointer as a packed repeated Uint32.
sizeUint32Value returns the size of wire encoding a uint32 value as a Uint32.
func ( protoreflect.Value,  int,  marshalOptions) int {
	return  + protowire.SizeVarint(uint64(uint32(.Uint())))
}
appendUint32Value encodes a uint32 value as a Uint32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendVarint(, uint64(uint32(.Uint())))
	return , nil
}
consumeUint32Value decodes a uint32 value as a Uint32.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.n = 
	return protoreflect.ValueOfUint32(uint32()), , nil
}

var coderUint32Value = valueCoderFuncs{
	size:      sizeUint32Value,
	marshal:   appendUint32Value,
	unmarshal: consumeUint32Value,
	merge:     mergeScalarValue,
}
sizeUint32SliceValue returns the size of wire encoding a []uint32 value as a repeated Uint32.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 +=  + protowire.SizeVarint(uint64(uint32(.Uint())))
	}
	return 
}
appendUint32SliceValue encodes a []uint32 value as a repeated Uint32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendVarint(, uint64(uint32(.Uint())))
	}
	return , nil
}
consumeUint32SliceValue wire decodes a []uint32 value as a repeated Uint32.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	 := .List()
	if  == protowire.BytesType {
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return protoreflect.Value{}, , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return protoreflect.Value{}, , protowire.ParseError()
			}
			.Append(protoreflect.ValueOfUint32(uint32()))
			 = [:]
		}
		.n = 
		return , , nil
	}
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.Append(protoreflect.ValueOfUint32(uint32()))
	.n = 
	return , , nil
}

var coderUint32SliceValue = valueCoderFuncs{
	size:      sizeUint32SliceValue,
	marshal:   appendUint32SliceValue,
	unmarshal: consumeUint32SliceValue,
	merge:     mergeListValue,
}
sizeUint32PackedSliceValue returns the size of wire encoding a []uint32 value as a packed repeated Uint32.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 := 0
	for ,  := 0, ;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(uint64(uint32(.Uint())))
	}
	return  + protowire.SizeBytes()
}
appendUint32PackedSliceValue encodes a []uint32 value as a packed repeated Uint32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 := 0
	for  := 0;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(uint64(uint32(.Uint())))
	}
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, uint64(uint32(.Uint())))
	}
	return , nil
}

var coderUint32PackedSliceValue = valueCoderFuncs{
	size:      sizeUint32PackedSliceValue,
	marshal:   appendUint32PackedSliceValue,
	unmarshal: consumeUint32SliceValue,
	merge:     mergeListValue,
}
sizeInt64 returns the size of wire encoding a int64 pointer as a Int64.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int64()
	return .tagsize + protowire.SizeVarint(uint64())
}
appendInt64 wire encodes a int64 pointer as a Int64.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Int64()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendVarint(, uint64())
	return , nil
}
consumeInt64 wire decodes a int64 pointer as a Int64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	*.Int64() = int64()
	.n = 
	return , nil
}

var coderInt64 = pointerCoderFuncs{
	size:      sizeInt64,
	marshal:   appendInt64,
	unmarshal: consumeInt64,
	merge:     mergeInt64,
}
sizeInt64NoZero returns the size of wire encoding a int64 pointer as a Int64. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int64()
	if  == 0 {
		return 0
	}
	return .tagsize + protowire.SizeVarint(uint64())
}
appendInt64NoZero wire encodes a int64 pointer as a Int64. The zero value is not encoded.
sizeInt64Ptr returns the size of wire encoding a *int64 pointer as a Int64. It panics if the pointer is nil.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := **.Int64Ptr()
	return .tagsize + protowire.SizeVarint(uint64())
}
appendInt64Ptr wire encodes a *int64 pointer as a Int64. It panics if the pointer is nil.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := **.Int64Ptr()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendVarint(, uint64())
	return , nil
}
consumeInt64Ptr wire decodes a *int64 pointer as a Int64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .Int64Ptr()
	if * == nil {
		* = new(int64)
	}
	** = int64()
	.n = 
	return , nil
}

var coderInt64Ptr = pointerCoderFuncs{
	size:      sizeInt64Ptr,
	marshal:   appendInt64Ptr,
	unmarshal: consumeInt64Ptr,
	merge:     mergeInt64Ptr,
}
sizeInt64Slice returns the size of wire encoding a []int64 pointer as a repeated Int64.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int64Slice()
	for ,  := range  {
		 += .tagsize + protowire.SizeVarint(uint64())
	}
	return 
}
appendInt64Slice encodes a []int64 pointer as a repeated Int64.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Int64Slice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendVarint(, uint64())
	}
	return , nil
}
consumeInt64Slice wire decodes a []int64 pointer as a repeated Int64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .Int64Slice()
	if  == protowire.BytesType {
		 := *
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return , protowire.ParseError()
			}
			 = append(, int64())
			 = [:]
		}
		* = 
		.n = 
		return , nil
	}
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, int64())
	.n = 
	return , nil
}

var coderInt64Slice = pointerCoderFuncs{
	size:      sizeInt64Slice,
	marshal:   appendInt64Slice,
	unmarshal: consumeInt64Slice,
	merge:     mergeInt64Slice,
}
sizeInt64PackedSlice returns the size of wire encoding a []int64 pointer as a packed repeated Int64.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int64Slice()
	if len() == 0 {
		return 0
	}
	 := 0
	for ,  := range  {
		 += protowire.SizeVarint(uint64())
	}
	return .tagsize + protowire.SizeBytes()
}
appendInt64PackedSlice encodes a []int64 pointer as a packed repeated Int64.
sizeInt64Value returns the size of wire encoding a int64 value as a Int64.
func ( protoreflect.Value,  int,  marshalOptions) int {
	return  + protowire.SizeVarint(uint64(.Int()))
}
appendInt64Value encodes a int64 value as a Int64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendVarint(, uint64(.Int()))
	return , nil
}
consumeInt64Value decodes a int64 value as a Int64.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.n = 
	return protoreflect.ValueOfInt64(int64()), , nil
}

var coderInt64Value = valueCoderFuncs{
	size:      sizeInt64Value,
	marshal:   appendInt64Value,
	unmarshal: consumeInt64Value,
	merge:     mergeScalarValue,
}
sizeInt64SliceValue returns the size of wire encoding a []int64 value as a repeated Int64.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 +=  + protowire.SizeVarint(uint64(.Int()))
	}
	return 
}
appendInt64SliceValue encodes a []int64 value as a repeated Int64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendVarint(, uint64(.Int()))
	}
	return , nil
}
consumeInt64SliceValue wire decodes a []int64 value as a repeated Int64.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	 := .List()
	if  == protowire.BytesType {
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return protoreflect.Value{}, , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return protoreflect.Value{}, , protowire.ParseError()
			}
			.Append(protoreflect.ValueOfInt64(int64()))
			 = [:]
		}
		.n = 
		return , , nil
	}
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.Append(protoreflect.ValueOfInt64(int64()))
	.n = 
	return , , nil
}

var coderInt64SliceValue = valueCoderFuncs{
	size:      sizeInt64SliceValue,
	marshal:   appendInt64SliceValue,
	unmarshal: consumeInt64SliceValue,
	merge:     mergeListValue,
}
sizeInt64PackedSliceValue returns the size of wire encoding a []int64 value as a packed repeated Int64.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 := 0
	for ,  := 0, ;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(uint64(.Int()))
	}
	return  + protowire.SizeBytes()
}
appendInt64PackedSliceValue encodes a []int64 value as a packed repeated Int64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 := 0
	for  := 0;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(uint64(.Int()))
	}
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, uint64(.Int()))
	}
	return , nil
}

var coderInt64PackedSliceValue = valueCoderFuncs{
	size:      sizeInt64PackedSliceValue,
	marshal:   appendInt64PackedSliceValue,
	unmarshal: consumeInt64SliceValue,
	merge:     mergeListValue,
}
sizeSint64 returns the size of wire encoding a int64 pointer as a Sint64.
appendSint64 wire encodes a int64 pointer as a Sint64.
consumeSint64 wire decodes a int64 pointer as a Sint64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	*.Int64() = protowire.DecodeZigZag()
	.n = 
	return , nil
}

var coderSint64 = pointerCoderFuncs{
	size:      sizeSint64,
	marshal:   appendSint64,
	unmarshal: consumeSint64,
	merge:     mergeInt64,
}
sizeSint64NoZero returns the size of wire encoding a int64 pointer as a Sint64. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int64()
	if  == 0 {
		return 0
	}
	return .tagsize + protowire.SizeVarint(protowire.EncodeZigZag())
}
appendSint64NoZero wire encodes a int64 pointer as a Sint64. The zero value is not encoded.
sizeSint64Ptr returns the size of wire encoding a *int64 pointer as a Sint64. It panics if the pointer is nil.
appendSint64Ptr wire encodes a *int64 pointer as a Sint64. It panics if the pointer is nil.
consumeSint64Ptr wire decodes a *int64 pointer as a Sint64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .Int64Ptr()
	if * == nil {
		* = new(int64)
	}
	** = protowire.DecodeZigZag()
	.n = 
	return , nil
}

var coderSint64Ptr = pointerCoderFuncs{
	size:      sizeSint64Ptr,
	marshal:   appendSint64Ptr,
	unmarshal: consumeSint64Ptr,
	merge:     mergeInt64Ptr,
}
sizeSint64Slice returns the size of wire encoding a []int64 pointer as a repeated Sint64.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int64Slice()
	for ,  := range  {
		 += .tagsize + protowire.SizeVarint(protowire.EncodeZigZag())
	}
	return 
}
appendSint64Slice encodes a []int64 pointer as a repeated Sint64.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Int64Slice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendVarint(, protowire.EncodeZigZag())
	}
	return , nil
}
consumeSint64Slice wire decodes a []int64 pointer as a repeated Sint64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .Int64Slice()
	if  == protowire.BytesType {
		 := *
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return , protowire.ParseError()
			}
			 = append(, protowire.DecodeZigZag())
			 = [:]
		}
		* = 
		.n = 
		return , nil
	}
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, protowire.DecodeZigZag())
	.n = 
	return , nil
}

var coderSint64Slice = pointerCoderFuncs{
	size:      sizeSint64Slice,
	marshal:   appendSint64Slice,
	unmarshal: consumeSint64Slice,
	merge:     mergeInt64Slice,
}
sizeSint64PackedSlice returns the size of wire encoding a []int64 pointer as a packed repeated Sint64.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int64Slice()
	if len() == 0 {
		return 0
	}
	 := 0
	for ,  := range  {
		 += protowire.SizeVarint(protowire.EncodeZigZag())
	}
	return .tagsize + protowire.SizeBytes()
}
appendSint64PackedSlice encodes a []int64 pointer as a packed repeated Sint64.
sizeSint64Value returns the size of wire encoding a int64 value as a Sint64.
appendSint64Value encodes a int64 value as a Sint64.
consumeSint64Value decodes a int64 value as a Sint64.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.n = 
	return protoreflect.ValueOfInt64(protowire.DecodeZigZag()), , nil
}

var coderSint64Value = valueCoderFuncs{
	size:      sizeSint64Value,
	marshal:   appendSint64Value,
	unmarshal: consumeSint64Value,
	merge:     mergeScalarValue,
}
sizeSint64SliceValue returns the size of wire encoding a []int64 value as a repeated Sint64.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 +=  + protowire.SizeVarint(protowire.EncodeZigZag(.Int()))
	}
	return 
}
appendSint64SliceValue encodes a []int64 value as a repeated Sint64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendVarint(, protowire.EncodeZigZag(.Int()))
	}
	return , nil
}
consumeSint64SliceValue wire decodes a []int64 value as a repeated Sint64.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	 := .List()
	if  == protowire.BytesType {
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return protoreflect.Value{}, , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return protoreflect.Value{}, , protowire.ParseError()
			}
			.Append(protoreflect.ValueOfInt64(protowire.DecodeZigZag()))
			 = [:]
		}
		.n = 
		return , , nil
	}
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.Append(protoreflect.ValueOfInt64(protowire.DecodeZigZag()))
	.n = 
	return , , nil
}

var coderSint64SliceValue = valueCoderFuncs{
	size:      sizeSint64SliceValue,
	marshal:   appendSint64SliceValue,
	unmarshal: consumeSint64SliceValue,
	merge:     mergeListValue,
}
sizeSint64PackedSliceValue returns the size of wire encoding a []int64 value as a packed repeated Sint64.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 := 0
	for ,  := 0, ;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(protowire.EncodeZigZag(.Int()))
	}
	return  + protowire.SizeBytes()
}
appendSint64PackedSliceValue encodes a []int64 value as a packed repeated Sint64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 := 0
	for  := 0;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(protowire.EncodeZigZag(.Int()))
	}
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, protowire.EncodeZigZag(.Int()))
	}
	return , nil
}

var coderSint64PackedSliceValue = valueCoderFuncs{
	size:      sizeSint64PackedSliceValue,
	marshal:   appendSint64PackedSliceValue,
	unmarshal: consumeSint64SliceValue,
	merge:     mergeListValue,
}
sizeUint64 returns the size of wire encoding a uint64 pointer as a Uint64.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint64()
	return .tagsize + protowire.SizeVarint()
}
appendUint64 wire encodes a uint64 pointer as a Uint64.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Uint64()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendVarint(, )
	return , nil
}
consumeUint64 wire decodes a uint64 pointer as a Uint64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	*.Uint64() = 
	.n = 
	return , nil
}

var coderUint64 = pointerCoderFuncs{
	size:      sizeUint64,
	marshal:   appendUint64,
	unmarshal: consumeUint64,
	merge:     mergeUint64,
}
sizeUint64NoZero returns the size of wire encoding a uint64 pointer as a Uint64. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint64()
	if  == 0 {
		return 0
	}
	return .tagsize + protowire.SizeVarint()
}
appendUint64NoZero wire encodes a uint64 pointer as a Uint64. The zero value is not encoded.
sizeUint64Ptr returns the size of wire encoding a *uint64 pointer as a Uint64. It panics if the pointer is nil.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := **.Uint64Ptr()
	return .tagsize + protowire.SizeVarint()
}
appendUint64Ptr wire encodes a *uint64 pointer as a Uint64. It panics if the pointer is nil.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := **.Uint64Ptr()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendVarint(, )
	return , nil
}
consumeUint64Ptr wire decodes a *uint64 pointer as a Uint64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .Uint64Ptr()
	if * == nil {
		* = new(uint64)
	}
	** = 
	.n = 
	return , nil
}

var coderUint64Ptr = pointerCoderFuncs{
	size:      sizeUint64Ptr,
	marshal:   appendUint64Ptr,
	unmarshal: consumeUint64Ptr,
	merge:     mergeUint64Ptr,
}
sizeUint64Slice returns the size of wire encoding a []uint64 pointer as a repeated Uint64.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint64Slice()
	for ,  := range  {
		 += .tagsize + protowire.SizeVarint()
	}
	return 
}
appendUint64Slice encodes a []uint64 pointer as a repeated Uint64.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Uint64Slice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendVarint(, )
	}
	return , nil
}
consumeUint64Slice wire decodes a []uint64 pointer as a repeated Uint64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .Uint64Slice()
	if  == protowire.BytesType {
		 := *
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return , protowire.ParseError()
			}
			 = append(, )
			 = [:]
		}
		* = 
		.n = 
		return , nil
	}
	if  != protowire.VarintType {
		return , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, )
	.n = 
	return , nil
}

var coderUint64Slice = pointerCoderFuncs{
	size:      sizeUint64Slice,
	marshal:   appendUint64Slice,
	unmarshal: consumeUint64Slice,
	merge:     mergeUint64Slice,
}
sizeUint64PackedSlice returns the size of wire encoding a []uint64 pointer as a packed repeated Uint64.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint64Slice()
	if len() == 0 {
		return 0
	}
	 := 0
	for ,  := range  {
		 += protowire.SizeVarint()
	}
	return .tagsize + protowire.SizeBytes()
}
appendUint64PackedSlice encodes a []uint64 pointer as a packed repeated Uint64.
sizeUint64Value returns the size of wire encoding a uint64 value as a Uint64.
func ( protoreflect.Value,  int,  marshalOptions) int {
	return  + protowire.SizeVarint(.Uint())
}
appendUint64Value encodes a uint64 value as a Uint64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendVarint(, .Uint())
	return , nil
}
consumeUint64Value decodes a uint64 value as a Uint64.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.n = 
	return protoreflect.ValueOfUint64(), , nil
}

var coderUint64Value = valueCoderFuncs{
	size:      sizeUint64Value,
	marshal:   appendUint64Value,
	unmarshal: consumeUint64Value,
	merge:     mergeScalarValue,
}
sizeUint64SliceValue returns the size of wire encoding a []uint64 value as a repeated Uint64.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 +=  + protowire.SizeVarint(.Uint())
	}
	return 
}
appendUint64SliceValue encodes a []uint64 value as a repeated Uint64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendVarint(, .Uint())
	}
	return , nil
}
consumeUint64SliceValue wire decodes a []uint64 value as a repeated Uint64.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	 := .List()
	if  == protowire.BytesType {
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return protoreflect.Value{}, , protowire.ParseError()
		}
		for len() > 0 {
			var  uint64
			var  int
			if len() >= 1 && [0] < 0x80 {
				 = uint64([0])
				 = 1
			} else if len() >= 2 && [1] < 128 {
				 = uint64([0]&0x7f) + uint64([1])<<7
				 = 2
			} else {
				,  = protowire.ConsumeVarint()
			}
			if  < 0 {
				return protoreflect.Value{}, , protowire.ParseError()
			}
			.Append(protoreflect.ValueOfUint64())
			 = [:]
		}
		.n = 
		return , , nil
	}
	if  != protowire.VarintType {
		return protoreflect.Value{}, , errUnknown
	}
	var  uint64
	var  int
	if len() >= 1 && [0] < 0x80 {
		 = uint64([0])
		 = 1
	} else if len() >= 2 && [1] < 128 {
		 = uint64([0]&0x7f) + uint64([1])<<7
		 = 2
	} else {
		,  = protowire.ConsumeVarint()
	}
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.Append(protoreflect.ValueOfUint64())
	.n = 
	return , , nil
}

var coderUint64SliceValue = valueCoderFuncs{
	size:      sizeUint64SliceValue,
	marshal:   appendUint64SliceValue,
	unmarshal: consumeUint64SliceValue,
	merge:     mergeListValue,
}
sizeUint64PackedSliceValue returns the size of wire encoding a []uint64 value as a packed repeated Uint64.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 := 0
	for ,  := 0, ;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(.Uint())
	}
	return  + protowire.SizeBytes()
}
appendUint64PackedSliceValue encodes a []uint64 value as a packed repeated Uint64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 := 0
	for  := 0;  < ; ++ {
		 := .Get()
		 += protowire.SizeVarint(.Uint())
	}
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, .Uint())
	}
	return , nil
}

var coderUint64PackedSliceValue = valueCoderFuncs{
	size:      sizeUint64PackedSliceValue,
	marshal:   appendUint64PackedSliceValue,
	unmarshal: consumeUint64SliceValue,
	merge:     mergeListValue,
}
sizeSfixed32 returns the size of wire encoding a int32 pointer as a Sfixed32.
appendSfixed32 wire encodes a int32 pointer as a Sfixed32.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Int32()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendFixed32(, uint32())
	return , nil
}
consumeSfixed32 wire decodes a int32 pointer as a Sfixed32.
sizeSfixed32NoZero returns the size of wire encoding a int32 pointer as a Sfixed32. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int32()
	if  == 0 {
		return 0
	}
	return .tagsize + protowire.SizeFixed32()
}
appendSfixed32NoZero wire encodes a int32 pointer as a Sfixed32. The zero value is not encoded.
sizeSfixed32Ptr returns the size of wire encoding a *int32 pointer as a Sfixed32. It panics if the pointer is nil.
appendSfixed32Ptr wire encodes a *int32 pointer as a Sfixed32. It panics if the pointer is nil.
consumeSfixed32Ptr wire decodes a *int32 pointer as a Sfixed32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.Fixed32Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed32()
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .Int32Ptr()
	if * == nil {
		* = new(int32)
	}
	** = int32()
	.n = 
	return , nil
}

var coderSfixed32Ptr = pointerCoderFuncs{
	size:      sizeSfixed32Ptr,
	marshal:   appendSfixed32Ptr,
	unmarshal: consumeSfixed32Ptr,
	merge:     mergeInt32Ptr,
}
sizeSfixed32Slice returns the size of wire encoding a []int32 pointer as a repeated Sfixed32.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int32Slice()
	 = len() * (.tagsize + protowire.SizeFixed32())
	return 
}
appendSfixed32Slice encodes a []int32 pointer as a repeated Sfixed32.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Int32Slice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendFixed32(, uint32())
	}
	return , nil
}
consumeSfixed32Slice wire decodes a []int32 pointer as a repeated Sfixed32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .Int32Slice()
	if  == protowire.BytesType {
		 := *
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return , protowire.ParseError()
		}
		for len() > 0 {
			,  := protowire.ConsumeFixed32()
			if  < 0 {
				return , protowire.ParseError()
			}
			 = append(, int32())
			 = [:]
		}
		* = 
		.n = 
		return , nil
	}
	if  != protowire.Fixed32Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed32()
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, int32())
	.n = 
	return , nil
}

var coderSfixed32Slice = pointerCoderFuncs{
	size:      sizeSfixed32Slice,
	marshal:   appendSfixed32Slice,
	unmarshal: consumeSfixed32Slice,
	merge:     mergeInt32Slice,
}
sizeSfixed32PackedSlice returns the size of wire encoding a []int32 pointer as a packed repeated Sfixed32.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int32Slice()
	if len() == 0 {
		return 0
	}
	 := len() * protowire.SizeFixed32()
	return .tagsize + protowire.SizeBytes()
}
appendSfixed32PackedSlice encodes a []int32 pointer as a packed repeated Sfixed32.
sizeSfixed32Value returns the size of wire encoding a int32 value as a Sfixed32.
func ( protoreflect.Value,  int,  marshalOptions) int {
	return  + protowire.SizeFixed32()
}
appendSfixed32Value encodes a int32 value as a Sfixed32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendFixed32(, uint32(.Int()))
	return , nil
}
sizeSfixed32SliceValue returns the size of wire encoding a []int32 value as a repeated Sfixed32.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 = .Len() * ( + protowire.SizeFixed32())
	return 
}
appendSfixed32SliceValue encodes a []int32 value as a repeated Sfixed32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendFixed32(, uint32(.Int()))
	}
	return , nil
}
consumeSfixed32SliceValue wire decodes a []int32 value as a repeated Sfixed32.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	 := .List()
	if  == protowire.BytesType {
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return protoreflect.Value{}, , protowire.ParseError()
		}
		for len() > 0 {
			,  := protowire.ConsumeFixed32()
			if  < 0 {
				return protoreflect.Value{}, , protowire.ParseError()
			}
			.Append(protoreflect.ValueOfInt32(int32()))
			 = [:]
		}
		.n = 
		return , , nil
	}
	if  != protowire.Fixed32Type {
		return protoreflect.Value{}, , errUnknown
	}
	,  := protowire.ConsumeFixed32()
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.Append(protoreflect.ValueOfInt32(int32()))
	.n = 
	return , , nil
}

var coderSfixed32SliceValue = valueCoderFuncs{
	size:      sizeSfixed32SliceValue,
	marshal:   appendSfixed32SliceValue,
	unmarshal: consumeSfixed32SliceValue,
	merge:     mergeListValue,
}
sizeSfixed32PackedSliceValue returns the size of wire encoding a []int32 value as a packed repeated Sfixed32.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 :=  * protowire.SizeFixed32()
	return  + protowire.SizeBytes()
}
appendSfixed32PackedSliceValue encodes a []int32 value as a packed repeated Sfixed32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 :=  * protowire.SizeFixed32()
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendFixed32(, uint32(.Int()))
	}
	return , nil
}

var coderSfixed32PackedSliceValue = valueCoderFuncs{
	size:      sizeSfixed32PackedSliceValue,
	marshal:   appendSfixed32PackedSliceValue,
	unmarshal: consumeSfixed32SliceValue,
	merge:     mergeListValue,
}
sizeFixed32 returns the size of wire encoding a uint32 pointer as a Fixed32.
appendFixed32 wire encodes a uint32 pointer as a Fixed32.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Uint32()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendFixed32(, )
	return , nil
}
consumeFixed32 wire decodes a uint32 pointer as a Fixed32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.Fixed32Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed32()
	if  < 0 {
		return , protowire.ParseError()
	}
	*.Uint32() = 
	.n = 
	return , nil
}

var coderFixed32 = pointerCoderFuncs{
	size:      sizeFixed32,
	marshal:   appendFixed32,
	unmarshal: consumeFixed32,
	merge:     mergeUint32,
}
sizeFixed32NoZero returns the size of wire encoding a uint32 pointer as a Fixed32. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint32()
	if  == 0 {
		return 0
	}
	return .tagsize + protowire.SizeFixed32()
}
appendFixed32NoZero wire encodes a uint32 pointer as a Fixed32. The zero value is not encoded.
sizeFixed32Ptr returns the size of wire encoding a *uint32 pointer as a Fixed32. It panics if the pointer is nil.
appendFixed32Ptr wire encodes a *uint32 pointer as a Fixed32. It panics if the pointer is nil.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := **.Uint32Ptr()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendFixed32(, )
	return , nil
}
consumeFixed32Ptr wire decodes a *uint32 pointer as a Fixed32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.Fixed32Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed32()
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .Uint32Ptr()
	if * == nil {
		* = new(uint32)
	}
	** = 
	.n = 
	return , nil
}

var coderFixed32Ptr = pointerCoderFuncs{
	size:      sizeFixed32Ptr,
	marshal:   appendFixed32Ptr,
	unmarshal: consumeFixed32Ptr,
	merge:     mergeUint32Ptr,
}
sizeFixed32Slice returns the size of wire encoding a []uint32 pointer as a repeated Fixed32.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint32Slice()
	 = len() * (.tagsize + protowire.SizeFixed32())
	return 
}
appendFixed32Slice encodes a []uint32 pointer as a repeated Fixed32.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Uint32Slice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendFixed32(, )
	}
	return , nil
}
consumeFixed32Slice wire decodes a []uint32 pointer as a repeated Fixed32.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .Uint32Slice()
	if  == protowire.BytesType {
		 := *
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return , protowire.ParseError()
		}
		for len() > 0 {
			,  := protowire.ConsumeFixed32()
			if  < 0 {
				return , protowire.ParseError()
			}
			 = append(, )
			 = [:]
		}
		* = 
		.n = 
		return , nil
	}
	if  != protowire.Fixed32Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed32()
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, )
	.n = 
	return , nil
}

var coderFixed32Slice = pointerCoderFuncs{
	size:      sizeFixed32Slice,
	marshal:   appendFixed32Slice,
	unmarshal: consumeFixed32Slice,
	merge:     mergeUint32Slice,
}
sizeFixed32PackedSlice returns the size of wire encoding a []uint32 pointer as a packed repeated Fixed32.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint32Slice()
	if len() == 0 {
		return 0
	}
	 := len() * protowire.SizeFixed32()
	return .tagsize + protowire.SizeBytes()
}
appendFixed32PackedSlice encodes a []uint32 pointer as a packed repeated Fixed32.
sizeFixed32Value returns the size of wire encoding a uint32 value as a Fixed32.
func ( protoreflect.Value,  int,  marshalOptions) int {
	return  + protowire.SizeFixed32()
}
appendFixed32Value encodes a uint32 value as a Fixed32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendFixed32(, uint32(.Uint()))
	return , nil
}
sizeFixed32SliceValue returns the size of wire encoding a []uint32 value as a repeated Fixed32.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 = .Len() * ( + protowire.SizeFixed32())
	return 
}
appendFixed32SliceValue encodes a []uint32 value as a repeated Fixed32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendFixed32(, uint32(.Uint()))
	}
	return , nil
}
consumeFixed32SliceValue wire decodes a []uint32 value as a repeated Fixed32.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	 := .List()
	if  == protowire.BytesType {
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return protoreflect.Value{}, , protowire.ParseError()
		}
		for len() > 0 {
			,  := protowire.ConsumeFixed32()
			if  < 0 {
				return protoreflect.Value{}, , protowire.ParseError()
			}
			.Append(protoreflect.ValueOfUint32(uint32()))
			 = [:]
		}
		.n = 
		return , , nil
	}
	if  != protowire.Fixed32Type {
		return protoreflect.Value{}, , errUnknown
	}
	,  := protowire.ConsumeFixed32()
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.Append(protoreflect.ValueOfUint32(uint32()))
	.n = 
	return , , nil
}

var coderFixed32SliceValue = valueCoderFuncs{
	size:      sizeFixed32SliceValue,
	marshal:   appendFixed32SliceValue,
	unmarshal: consumeFixed32SliceValue,
	merge:     mergeListValue,
}
sizeFixed32PackedSliceValue returns the size of wire encoding a []uint32 value as a packed repeated Fixed32.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 :=  * protowire.SizeFixed32()
	return  + protowire.SizeBytes()
}
appendFixed32PackedSliceValue encodes a []uint32 value as a packed repeated Fixed32.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 :=  * protowire.SizeFixed32()
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendFixed32(, uint32(.Uint()))
	}
	return , nil
}

var coderFixed32PackedSliceValue = valueCoderFuncs{
	size:      sizeFixed32PackedSliceValue,
	marshal:   appendFixed32PackedSliceValue,
	unmarshal: consumeFixed32SliceValue,
	merge:     mergeListValue,
}
sizeFloat returns the size of wire encoding a float32 pointer as a Float.
appendFloat wire encodes a float32 pointer as a Float.
consumeFloat wire decodes a float32 pointer as a Float.
sizeFloatNoZero returns the size of wire encoding a float32 pointer as a Float. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Float32()
	if  == 0 && !math.Signbit(float64()) {
		return 0
	}
	return .tagsize + protowire.SizeFixed32()
}
appendFloatNoZero wire encodes a float32 pointer as a Float. The zero value is not encoded.
sizeFloatPtr returns the size of wire encoding a *float32 pointer as a Float. It panics if the pointer is nil.
appendFloatPtr wire encodes a *float32 pointer as a Float. It panics if the pointer is nil.
consumeFloatPtr wire decodes a *float32 pointer as a Float.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.Fixed32Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed32()
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .Float32Ptr()
	if * == nil {
		* = new(float32)
	}
	** = math.Float32frombits()
	.n = 
	return , nil
}

var coderFloatPtr = pointerCoderFuncs{
	size:      sizeFloatPtr,
	marshal:   appendFloatPtr,
	unmarshal: consumeFloatPtr,
	merge:     mergeFloat32Ptr,
}
sizeFloatSlice returns the size of wire encoding a []float32 pointer as a repeated Float.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Float32Slice()
	 = len() * (.tagsize + protowire.SizeFixed32())
	return 
}
appendFloatSlice encodes a []float32 pointer as a repeated Float.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Float32Slice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendFixed32(, math.Float32bits())
	}
	return , nil
}
consumeFloatSlice wire decodes a []float32 pointer as a repeated Float.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .Float32Slice()
	if  == protowire.BytesType {
		 := *
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return , protowire.ParseError()
		}
		for len() > 0 {
			,  := protowire.ConsumeFixed32()
			if  < 0 {
				return , protowire.ParseError()
			}
			 = append(, math.Float32frombits())
			 = [:]
		}
		* = 
		.n = 
		return , nil
	}
	if  != protowire.Fixed32Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed32()
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, math.Float32frombits())
	.n = 
	return , nil
}

var coderFloatSlice = pointerCoderFuncs{
	size:      sizeFloatSlice,
	marshal:   appendFloatSlice,
	unmarshal: consumeFloatSlice,
	merge:     mergeFloat32Slice,
}
sizeFloatPackedSlice returns the size of wire encoding a []float32 pointer as a packed repeated Float.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Float32Slice()
	if len() == 0 {
		return 0
	}
	 := len() * protowire.SizeFixed32()
	return .tagsize + protowire.SizeBytes()
}
appendFloatPackedSlice encodes a []float32 pointer as a packed repeated Float.
sizeFloatValue returns the size of wire encoding a float32 value as a Float.
func ( protoreflect.Value,  int,  marshalOptions) int {
	return  + protowire.SizeFixed32()
}
appendFloatValue encodes a float32 value as a Float.
sizeFloatSliceValue returns the size of wire encoding a []float32 value as a repeated Float.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 = .Len() * ( + protowire.SizeFixed32())
	return 
}
appendFloatSliceValue encodes a []float32 value as a repeated Float.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendFixed32(, math.Float32bits(float32(.Float())))
	}
	return , nil
}
consumeFloatSliceValue wire decodes a []float32 value as a repeated Float.
sizeFloatPackedSliceValue returns the size of wire encoding a []float32 value as a packed repeated Float.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 :=  * protowire.SizeFixed32()
	return  + protowire.SizeBytes()
}
appendFloatPackedSliceValue encodes a []float32 value as a packed repeated Float.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 :=  * protowire.SizeFixed32()
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendFixed32(, math.Float32bits(float32(.Float())))
	}
	return , nil
}

var coderFloatPackedSliceValue = valueCoderFuncs{
	size:      sizeFloatPackedSliceValue,
	marshal:   appendFloatPackedSliceValue,
	unmarshal: consumeFloatSliceValue,
	merge:     mergeListValue,
}
sizeSfixed64 returns the size of wire encoding a int64 pointer as a Sfixed64.
appendSfixed64 wire encodes a int64 pointer as a Sfixed64.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Int64()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendFixed64(, uint64())
	return , nil
}
consumeSfixed64 wire decodes a int64 pointer as a Sfixed64.
sizeSfixed64NoZero returns the size of wire encoding a int64 pointer as a Sfixed64. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int64()
	if  == 0 {
		return 0
	}
	return .tagsize + protowire.SizeFixed64()
}
appendSfixed64NoZero wire encodes a int64 pointer as a Sfixed64. The zero value is not encoded.
sizeSfixed64Ptr returns the size of wire encoding a *int64 pointer as a Sfixed64. It panics if the pointer is nil.
appendSfixed64Ptr wire encodes a *int64 pointer as a Sfixed64. It panics if the pointer is nil.
consumeSfixed64Ptr wire decodes a *int64 pointer as a Sfixed64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.Fixed64Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed64()
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .Int64Ptr()
	if * == nil {
		* = new(int64)
	}
	** = int64()
	.n = 
	return , nil
}

var coderSfixed64Ptr = pointerCoderFuncs{
	size:      sizeSfixed64Ptr,
	marshal:   appendSfixed64Ptr,
	unmarshal: consumeSfixed64Ptr,
	merge:     mergeInt64Ptr,
}
sizeSfixed64Slice returns the size of wire encoding a []int64 pointer as a repeated Sfixed64.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int64Slice()
	 = len() * (.tagsize + protowire.SizeFixed64())
	return 
}
appendSfixed64Slice encodes a []int64 pointer as a repeated Sfixed64.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Int64Slice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendFixed64(, uint64())
	}
	return , nil
}
consumeSfixed64Slice wire decodes a []int64 pointer as a repeated Sfixed64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .Int64Slice()
	if  == protowire.BytesType {
		 := *
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return , protowire.ParseError()
		}
		for len() > 0 {
			,  := protowire.ConsumeFixed64()
			if  < 0 {
				return , protowire.ParseError()
			}
			 = append(, int64())
			 = [:]
		}
		* = 
		.n = 
		return , nil
	}
	if  != protowire.Fixed64Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed64()
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, int64())
	.n = 
	return , nil
}

var coderSfixed64Slice = pointerCoderFuncs{
	size:      sizeSfixed64Slice,
	marshal:   appendSfixed64Slice,
	unmarshal: consumeSfixed64Slice,
	merge:     mergeInt64Slice,
}
sizeSfixed64PackedSlice returns the size of wire encoding a []int64 pointer as a packed repeated Sfixed64.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Int64Slice()
	if len() == 0 {
		return 0
	}
	 := len() * protowire.SizeFixed64()
	return .tagsize + protowire.SizeBytes()
}
appendSfixed64PackedSlice encodes a []int64 pointer as a packed repeated Sfixed64.
sizeSfixed64Value returns the size of wire encoding a int64 value as a Sfixed64.
func ( protoreflect.Value,  int,  marshalOptions) int {
	return  + protowire.SizeFixed64()
}
appendSfixed64Value encodes a int64 value as a Sfixed64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendFixed64(, uint64(.Int()))
	return , nil
}
sizeSfixed64SliceValue returns the size of wire encoding a []int64 value as a repeated Sfixed64.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 = .Len() * ( + protowire.SizeFixed64())
	return 
}
appendSfixed64SliceValue encodes a []int64 value as a repeated Sfixed64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendFixed64(, uint64(.Int()))
	}
	return , nil
}
consumeSfixed64SliceValue wire decodes a []int64 value as a repeated Sfixed64.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	 := .List()
	if  == protowire.BytesType {
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return protoreflect.Value{}, , protowire.ParseError()
		}
		for len() > 0 {
			,  := protowire.ConsumeFixed64()
			if  < 0 {
				return protoreflect.Value{}, , protowire.ParseError()
			}
			.Append(protoreflect.ValueOfInt64(int64()))
			 = [:]
		}
		.n = 
		return , , nil
	}
	if  != protowire.Fixed64Type {
		return protoreflect.Value{}, , errUnknown
	}
	,  := protowire.ConsumeFixed64()
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.Append(protoreflect.ValueOfInt64(int64()))
	.n = 
	return , , nil
}

var coderSfixed64SliceValue = valueCoderFuncs{
	size:      sizeSfixed64SliceValue,
	marshal:   appendSfixed64SliceValue,
	unmarshal: consumeSfixed64SliceValue,
	merge:     mergeListValue,
}
sizeSfixed64PackedSliceValue returns the size of wire encoding a []int64 value as a packed repeated Sfixed64.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 :=  * protowire.SizeFixed64()
	return  + protowire.SizeBytes()
}
appendSfixed64PackedSliceValue encodes a []int64 value as a packed repeated Sfixed64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 :=  * protowire.SizeFixed64()
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendFixed64(, uint64(.Int()))
	}
	return , nil
}

var coderSfixed64PackedSliceValue = valueCoderFuncs{
	size:      sizeSfixed64PackedSliceValue,
	marshal:   appendSfixed64PackedSliceValue,
	unmarshal: consumeSfixed64SliceValue,
	merge:     mergeListValue,
}
sizeFixed64 returns the size of wire encoding a uint64 pointer as a Fixed64.
appendFixed64 wire encodes a uint64 pointer as a Fixed64.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Uint64()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendFixed64(, )
	return , nil
}
consumeFixed64 wire decodes a uint64 pointer as a Fixed64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.Fixed64Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed64()
	if  < 0 {
		return , protowire.ParseError()
	}
	*.Uint64() = 
	.n = 
	return , nil
}

var coderFixed64 = pointerCoderFuncs{
	size:      sizeFixed64,
	marshal:   appendFixed64,
	unmarshal: consumeFixed64,
	merge:     mergeUint64,
}
sizeFixed64NoZero returns the size of wire encoding a uint64 pointer as a Fixed64. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint64()
	if  == 0 {
		return 0
	}
	return .tagsize + protowire.SizeFixed64()
}
appendFixed64NoZero wire encodes a uint64 pointer as a Fixed64. The zero value is not encoded.
sizeFixed64Ptr returns the size of wire encoding a *uint64 pointer as a Fixed64. It panics if the pointer is nil.
appendFixed64Ptr wire encodes a *uint64 pointer as a Fixed64. It panics if the pointer is nil.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := **.Uint64Ptr()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendFixed64(, )
	return , nil
}
consumeFixed64Ptr wire decodes a *uint64 pointer as a Fixed64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.Fixed64Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed64()
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .Uint64Ptr()
	if * == nil {
		* = new(uint64)
	}
	** = 
	.n = 
	return , nil
}

var coderFixed64Ptr = pointerCoderFuncs{
	size:      sizeFixed64Ptr,
	marshal:   appendFixed64Ptr,
	unmarshal: consumeFixed64Ptr,
	merge:     mergeUint64Ptr,
}
sizeFixed64Slice returns the size of wire encoding a []uint64 pointer as a repeated Fixed64.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint64Slice()
	 = len() * (.tagsize + protowire.SizeFixed64())
	return 
}
appendFixed64Slice encodes a []uint64 pointer as a repeated Fixed64.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Uint64Slice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendFixed64(, )
	}
	return , nil
}
consumeFixed64Slice wire decodes a []uint64 pointer as a repeated Fixed64.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .Uint64Slice()
	if  == protowire.BytesType {
		 := *
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return , protowire.ParseError()
		}
		for len() > 0 {
			,  := protowire.ConsumeFixed64()
			if  < 0 {
				return , protowire.ParseError()
			}
			 = append(, )
			 = [:]
		}
		* = 
		.n = 
		return , nil
	}
	if  != protowire.Fixed64Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed64()
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, )
	.n = 
	return , nil
}

var coderFixed64Slice = pointerCoderFuncs{
	size:      sizeFixed64Slice,
	marshal:   appendFixed64Slice,
	unmarshal: consumeFixed64Slice,
	merge:     mergeUint64Slice,
}
sizeFixed64PackedSlice returns the size of wire encoding a []uint64 pointer as a packed repeated Fixed64.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Uint64Slice()
	if len() == 0 {
		return 0
	}
	 := len() * protowire.SizeFixed64()
	return .tagsize + protowire.SizeBytes()
}
appendFixed64PackedSlice encodes a []uint64 pointer as a packed repeated Fixed64.
sizeFixed64Value returns the size of wire encoding a uint64 value as a Fixed64.
func ( protoreflect.Value,  int,  marshalOptions) int {
	return  + protowire.SizeFixed64()
}
appendFixed64Value encodes a uint64 value as a Fixed64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendFixed64(, .Uint())
	return , nil
}
sizeFixed64SliceValue returns the size of wire encoding a []uint64 value as a repeated Fixed64.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 = .Len() * ( + protowire.SizeFixed64())
	return 
}
appendFixed64SliceValue encodes a []uint64 value as a repeated Fixed64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendFixed64(, .Uint())
	}
	return , nil
}
consumeFixed64SliceValue wire decodes a []uint64 value as a repeated Fixed64.
func ( []byte,  protoreflect.Value,  protowire.Number,  protowire.Type,  unmarshalOptions) ( protoreflect.Value,  unmarshalOutput,  error) {
	 := .List()
	if  == protowire.BytesType {
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return protoreflect.Value{}, , protowire.ParseError()
		}
		for len() > 0 {
			,  := protowire.ConsumeFixed64()
			if  < 0 {
				return protoreflect.Value{}, , protowire.ParseError()
			}
			.Append(protoreflect.ValueOfUint64())
			 = [:]
		}
		.n = 
		return , , nil
	}
	if  != protowire.Fixed64Type {
		return protoreflect.Value{}, , errUnknown
	}
	,  := protowire.ConsumeFixed64()
	if  < 0 {
		return protoreflect.Value{}, , protowire.ParseError()
	}
	.Append(protoreflect.ValueOfUint64())
	.n = 
	return , , nil
}

var coderFixed64SliceValue = valueCoderFuncs{
	size:      sizeFixed64SliceValue,
	marshal:   appendFixed64SliceValue,
	unmarshal: consumeFixed64SliceValue,
	merge:     mergeListValue,
}
sizeFixed64PackedSliceValue returns the size of wire encoding a []uint64 value as a packed repeated Fixed64.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 :=  * protowire.SizeFixed64()
	return  + protowire.SizeBytes()
}
appendFixed64PackedSliceValue encodes a []uint64 value as a packed repeated Fixed64.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 :=  * protowire.SizeFixed64()
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendFixed64(, .Uint())
	}
	return , nil
}

var coderFixed64PackedSliceValue = valueCoderFuncs{
	size:      sizeFixed64PackedSliceValue,
	marshal:   appendFixed64PackedSliceValue,
	unmarshal: consumeFixed64SliceValue,
	merge:     mergeListValue,
}
sizeDouble returns the size of wire encoding a float64 pointer as a Double.
appendDouble wire encodes a float64 pointer as a Double.
consumeDouble wire decodes a float64 pointer as a Double.
sizeDoubleNoZero returns the size of wire encoding a float64 pointer as a Double. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Float64()
	if  == 0 && !math.Signbit(float64()) {
		return 0
	}
	return .tagsize + protowire.SizeFixed64()
}
appendDoubleNoZero wire encodes a float64 pointer as a Double. The zero value is not encoded.
sizeDoublePtr returns the size of wire encoding a *float64 pointer as a Double. It panics if the pointer is nil.
appendDoublePtr wire encodes a *float64 pointer as a Double. It panics if the pointer is nil.
consumeDoublePtr wire decodes a *float64 pointer as a Double.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.Fixed64Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed64()
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .Float64Ptr()
	if * == nil {
		* = new(float64)
	}
	** = math.Float64frombits()
	.n = 
	return , nil
}

var coderDoublePtr = pointerCoderFuncs{
	size:      sizeDoublePtr,
	marshal:   appendDoublePtr,
	unmarshal: consumeDoublePtr,
	merge:     mergeFloat64Ptr,
}
sizeDoubleSlice returns the size of wire encoding a []float64 pointer as a repeated Double.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Float64Slice()
	 = len() * (.tagsize + protowire.SizeFixed64())
	return 
}
appendDoubleSlice encodes a []float64 pointer as a repeated Double.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Float64Slice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendFixed64(, math.Float64bits())
	}
	return , nil
}
consumeDoubleSlice wire decodes a []float64 pointer as a repeated Double.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .Float64Slice()
	if  == protowire.BytesType {
		 := *
		,  := protowire.ConsumeBytes()
		if  < 0 {
			return , protowire.ParseError()
		}
		for len() > 0 {
			,  := protowire.ConsumeFixed64()
			if  < 0 {
				return , protowire.ParseError()
			}
			 = append(, math.Float64frombits())
			 = [:]
		}
		* = 
		.n = 
		return , nil
	}
	if  != protowire.Fixed64Type {
		return , errUnknown
	}
	,  := protowire.ConsumeFixed64()
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, math.Float64frombits())
	.n = 
	return , nil
}

var coderDoubleSlice = pointerCoderFuncs{
	size:      sizeDoubleSlice,
	marshal:   appendDoubleSlice,
	unmarshal: consumeDoubleSlice,
	merge:     mergeFloat64Slice,
}
sizeDoublePackedSlice returns the size of wire encoding a []float64 pointer as a packed repeated Double.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Float64Slice()
	if len() == 0 {
		return 0
	}
	 := len() * protowire.SizeFixed64()
	return .tagsize + protowire.SizeBytes()
}
appendDoublePackedSlice encodes a []float64 pointer as a packed repeated Double.
sizeDoubleValue returns the size of wire encoding a float64 value as a Double.
func ( protoreflect.Value,  int,  marshalOptions) int {
	return  + protowire.SizeFixed64()
}
appendDoubleValue encodes a float64 value as a Double.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendFixed64(, math.Float64bits(.Float()))
	return , nil
}
sizeDoubleSliceValue returns the size of wire encoding a []float64 value as a repeated Double.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 = .Len() * ( + protowire.SizeFixed64())
	return 
}
appendDoubleSliceValue encodes a []float64 value as a repeated Double.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendFixed64(, math.Float64bits(.Float()))
	}
	return , nil
}
consumeDoubleSliceValue wire decodes a []float64 value as a repeated Double.
sizeDoublePackedSliceValue returns the size of wire encoding a []float64 value as a packed repeated Double.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	 := .Len()
	if  == 0 {
		return 0
	}
	 :=  * protowire.SizeFixed64()
	return  + protowire.SizeBytes()
}
appendDoublePackedSliceValue encodes a []float64 value as a packed repeated Double.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	 := .Len()
	if  == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, )
	 :=  * protowire.SizeFixed64()
	 = protowire.AppendVarint(, uint64())
	for  := 0;  < ; ++ {
		 := .Get()
		 = protowire.AppendFixed64(, math.Float64bits(.Float()))
	}
	return , nil
}

var coderDoublePackedSliceValue = valueCoderFuncs{
	size:      sizeDoublePackedSliceValue,
	marshal:   appendDoublePackedSliceValue,
	unmarshal: consumeDoubleSliceValue,
	merge:     mergeListValue,
}
sizeString returns the size of wire encoding a string pointer as a String.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.String()
	return .tagsize + protowire.SizeBytes(len())
}
appendString wire encodes a string pointer as a String.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.String()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendString(, )
	return , nil
}
consumeString wire decodes a string pointer as a String.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.BytesType {
		return , errUnknown
	}
	,  := protowire.ConsumeString()
	if  < 0 {
		return , protowire.ParseError()
	}
	*.String() = 
	.n = 
	return , nil
}

var coderString = pointerCoderFuncs{
	size:      sizeString,
	marshal:   appendString,
	unmarshal: consumeString,
	merge:     mergeString,
}
appendStringValidateUTF8 wire encodes a string pointer as a String.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.String()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendString(, )
	if !utf8.ValidString() {
		return , errInvalidUTF8{}
	}
	return , nil
}
consumeStringValidateUTF8 wire decodes a string pointer as a String.
sizeStringNoZero returns the size of wire encoding a string pointer as a String. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.String()
	if len() == 0 {
		return 0
	}
	return .tagsize + protowire.SizeBytes(len())
}
appendStringNoZero wire encodes a string pointer as a String. The zero value is not encoded.
appendStringNoZeroValidateUTF8 wire encodes a string pointer as a String. The zero value is not encoded.
sizeStringPtr returns the size of wire encoding a *string pointer as a String. It panics if the pointer is nil.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := **.StringPtr()
	return .tagsize + protowire.SizeBytes(len())
}
appendStringPtr wire encodes a *string pointer as a String. It panics if the pointer is nil.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := **.StringPtr()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendString(, )
	return , nil
}
consumeStringPtr wire decodes a *string pointer as a String.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.BytesType {
		return , errUnknown
	}
	,  := protowire.ConsumeString()
	if  < 0 {
		return , protowire.ParseError()
	}
	 := .StringPtr()
	if * == nil {
		* = new(string)
	}
	** = 
	.n = 
	return , nil
}

var coderStringPtr = pointerCoderFuncs{
	size:      sizeStringPtr,
	marshal:   appendStringPtr,
	unmarshal: consumeStringPtr,
	merge:     mergeStringPtr,
}
appendStringPtrValidateUTF8 wire encodes a *string pointer as a String. It panics if the pointer is nil.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := **.StringPtr()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendString(, )
	if !utf8.ValidString() {
		return , errInvalidUTF8{}
	}
	return , nil
}
consumeStringPtrValidateUTF8 wire decodes a *string pointer as a String.
sizeStringSlice returns the size of wire encoding a []string pointer as a repeated String.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.StringSlice()
	for ,  := range  {
		 += .tagsize + protowire.SizeBytes(len())
	}
	return 
}
appendStringSlice encodes a []string pointer as a repeated String.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.StringSlice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendString(, )
	}
	return , nil
}
consumeStringSlice wire decodes a []string pointer as a repeated String.
appendStringSliceValidateUTF8 encodes a []string pointer as a repeated String.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.StringSlice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendString(, )
		if !utf8.ValidString() {
			return , errInvalidUTF8{}
		}
	}
	return , nil
}
consumeStringSliceValidateUTF8 wire decodes a []string pointer as a repeated String.
sizeStringValue returns the size of wire encoding a string value as a String.
func ( protoreflect.Value,  int,  marshalOptions) int {
	return  + protowire.SizeBytes(len(.String()))
}
appendStringValue encodes a string value as a String.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendString(, .String())
	return , nil
}
appendStringValueValidateUTF8 encodes a string value as a String.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendString(, .String())
	if !utf8.ValidString(.String()) {
		return , errInvalidUTF8{}
	}
	return , nil
}
sizeStringSliceValue returns the size of wire encoding a []string value as a repeated String.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 +=  + protowire.SizeBytes(len(.String()))
	}
	return 
}
appendStringSliceValue encodes a []string value as a repeated String.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendString(, .String())
	}
	return , nil
}
consumeStringSliceValue wire decodes a []string value as a repeated String.
sizeBytes returns the size of wire encoding a []byte pointer as a Bytes.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Bytes()
	return .tagsize + protowire.SizeBytes(len())
}
appendBytes wire encodes a []byte pointer as a Bytes.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Bytes()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendBytes(, )
	return , nil
}
consumeBytes wire decodes a []byte pointer as a Bytes.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	if  != protowire.BytesType {
		return , errUnknown
	}
	,  := protowire.ConsumeBytes()
	if  < 0 {
		return , protowire.ParseError()
	}
	*.Bytes() = append(emptyBuf[:], ...)
	.n = 
	return , nil
}

var coderBytes = pointerCoderFuncs{
	size:      sizeBytes,
	marshal:   appendBytes,
	unmarshal: consumeBytes,
	merge:     mergeBytes,
}
appendBytesValidateUTF8 wire encodes a []byte pointer as a Bytes.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Bytes()
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendBytes(, )
	if !utf8.Valid() {
		return , errInvalidUTF8{}
	}
	return , nil
}
consumeBytesValidateUTF8 wire decodes a []byte pointer as a Bytes.
sizeBytesNoZero returns the size of wire encoding a []byte pointer as a Bytes. The zero value is not encoded.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.Bytes()
	if len() == 0 {
		return 0
	}
	return .tagsize + protowire.SizeBytes(len())
}
appendBytesNoZero wire encodes a []byte pointer as a Bytes. The zero value is not encoded.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Bytes()
	if len() == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendBytes(, )
	return , nil
}
consumeBytesNoZero wire decodes a []byte pointer as a Bytes. The zero value is not decoded.
appendBytesNoZeroValidateUTF8 wire encodes a []byte pointer as a Bytes. The zero value is not encoded.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.Bytes()
	if len() == 0 {
		return , nil
	}
	 = protowire.AppendVarint(, .wiretag)
	 = protowire.AppendBytes(, )
	if !utf8.Valid() {
		return , errInvalidUTF8{}
	}
	return , nil
}
consumeBytesNoZeroValidateUTF8 wire decodes a []byte pointer as a Bytes.
sizeBytesSlice returns the size of wire encoding a [][]byte pointer as a repeated Bytes.
func ( pointer,  *coderFieldInfo,  marshalOptions) ( int) {
	 := *.BytesSlice()
	for ,  := range  {
		 += .tagsize + protowire.SizeBytes(len())
	}
	return 
}
appendBytesSlice encodes a [][]byte pointer as a repeated Bytes.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.BytesSlice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendBytes(, )
	}
	return , nil
}
consumeBytesSlice wire decodes a [][]byte pointer as a repeated Bytes.
func ( []byte,  pointer,  protowire.Type,  *coderFieldInfo,  unmarshalOptions) ( unmarshalOutput,  error) {
	 := .BytesSlice()
	if  != protowire.BytesType {
		return , errUnknown
	}
	,  := protowire.ConsumeBytes()
	if  < 0 {
		return , protowire.ParseError()
	}
	* = append(*, append(emptyBuf[:], ...))
	.n = 
	return , nil
}

var coderBytesSlice = pointerCoderFuncs{
	size:      sizeBytesSlice,
	marshal:   appendBytesSlice,
	unmarshal: consumeBytesSlice,
	merge:     mergeBytesSlice,
}
appendBytesSliceValidateUTF8 encodes a [][]byte pointer as a repeated Bytes.
func ( []byte,  pointer,  *coderFieldInfo,  marshalOptions) ([]byte, error) {
	 := *.BytesSlice()
	for ,  := range  {
		 = protowire.AppendVarint(, .wiretag)
		 = protowire.AppendBytes(, )
		if !utf8.Valid() {
			return , errInvalidUTF8{}
		}
	}
	return , nil
}
consumeBytesSliceValidateUTF8 wire decodes a [][]byte pointer as a repeated Bytes.
sizeBytesValue returns the size of wire encoding a []byte value as a Bytes.
func ( protoreflect.Value,  int,  marshalOptions) int {
	return  + protowire.SizeBytes(len(.Bytes()))
}
appendBytesValue encodes a []byte value as a Bytes.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 = protowire.AppendVarint(, )
	 = protowire.AppendBytes(, .Bytes())
	return , nil
}
consumeBytesValue decodes a []byte value as a Bytes.
sizeBytesSliceValue returns the size of wire encoding a [][]byte value as a repeated Bytes.
func ( protoreflect.Value,  int,  marshalOptions) ( int) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 +=  + protowire.SizeBytes(len(.Bytes()))
	}
	return 
}
appendBytesSliceValue encodes a [][]byte value as a repeated Bytes.
func ( []byte,  protoreflect.Value,  uint64,  marshalOptions) ([]byte, error) {
	 := .List()
	for ,  := 0, .Len();  < ; ++ {
		 := .Get()
		 = protowire.AppendVarint(, )
		 = protowire.AppendBytes(, .Bytes())
	}
	return , nil
}
consumeBytesSliceValue wire decodes a [][]byte value as a repeated Bytes.