2018-09-10 12:26:21 -07:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// source: fieldnames/fieldnames.proto
|
|
|
|
|
|
|
|
package fieldnames
|
|
|
|
|
2018-09-13 13:12:36 -07:00
|
|
|
import (
|
|
|
|
fmt "fmt"
|
|
|
|
proto "github.com/golang/protobuf/proto"
|
|
|
|
math "math"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ = proto.Marshal
|
|
|
|
var _ = fmt.Errorf
|
|
|
|
var _ = math.Inf
|
2018-09-12 11:13:49 -07:00
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the proto package it is being compiled against.
|
|
|
|
// A compilation error at this line likely means your copy of the
|
|
|
|
// proto package needs to be updated.
|
|
|
|
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
|
2018-09-10 12:26:21 -07:00
|
|
|
// Assorted edge cases in field name conflict resolution.
|
|
|
|
//
|
|
|
|
// Not all (or possibly any) of these behave in an easily-understood fashion.
|
|
|
|
// This exists to demonstrate the current behavior and catch unintended
|
|
|
|
// changes in it.
|
|
|
|
type Message struct {
|
|
|
|
// Various CamelCase conversions.
|
|
|
|
FieldOne *string `protobuf:"bytes,1,opt,name=field_one,json=fieldOne" json:"field_one,omitempty"`
|
|
|
|
FieldTwo *string `protobuf:"bytes,2,opt,name=FieldTwo" json:"FieldTwo,omitempty"`
|
|
|
|
FieldThree *string `protobuf:"bytes,3,opt,name=fieldThree" json:"fieldThree,omitempty"`
|
|
|
|
Field_Four *string `protobuf:"bytes,4,opt,name=field__four,json=fieldFour" json:"field__four,omitempty"`
|
|
|
|
// Field names that conflict with standard methods on the message struct.
|
|
|
|
Descriptor_ *string `protobuf:"bytes,10,opt,name=descriptor" json:"descriptor,omitempty"`
|
|
|
|
Marshal_ *string `protobuf:"bytes,11,opt,name=marshal" json:"marshal,omitempty"`
|
|
|
|
Unmarshal_ *string `protobuf:"bytes,12,opt,name=unmarshal" json:"unmarshal,omitempty"`
|
|
|
|
ProtoMessage_ *string `protobuf:"bytes,13,opt,name=proto_message,json=protoMessage" json:"proto_message,omitempty"`
|
|
|
|
// Field names that conflict with each other after CamelCasing.
|
|
|
|
CamelCase *string `protobuf:"bytes,20,opt,name=CamelCase" json:"CamelCase,omitempty"`
|
|
|
|
CamelCase_ *string `protobuf:"bytes,21,opt,name=CamelCase_,json=CamelCase" json:"CamelCase_,omitempty"`
|
|
|
|
CamelCase__ *string `protobuf:"bytes,22,opt,name=camel_case,json=camelCase" json:"camel_case,omitempty"`
|
|
|
|
CamelCase___ *string `protobuf:"bytes,23,opt,name=CamelCase__,json=CamelCase" json:"CamelCase__,omitempty"`
|
|
|
|
// Field with a getter that conflicts with another field.
|
2018-09-13 13:12:36 -07:00
|
|
|
GetName *string `protobuf:"bytes,30,opt,name=get_name,json=getName" json:"get_name,omitempty"`
|
|
|
|
Name_ *string `protobuf:"bytes,31,opt,name=name" json:"name,omitempty"`
|
|
|
|
// Oneof that conflicts with its first field: The oneof is renamed.
|
|
|
|
//
|
|
|
|
// Types that are valid to be assigned to OneofConflictA_:
|
|
|
|
// *Message_OneofConflictA
|
|
|
|
OneofConflictA_ isMessage_OneofConflictA_ `protobuf_oneof:"oneof_conflict_a"`
|
|
|
|
// Oneof that conflicts with its second field: The field is renamed.
|
|
|
|
//
|
|
|
|
// Types that are valid to be assigned to OneofConflictB:
|
|
|
|
// *Message_OneofNoConflict
|
|
|
|
// *Message_OneofConflictB_
|
|
|
|
OneofConflictB isMessage_OneofConflictB `protobuf_oneof:"oneof_conflict_b"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
2018-09-10 12:26:21 -07:00
|
|
|
}
|
|
|
|
|
2018-09-12 13:36:34 -07:00
|
|
|
func (m *Message) Reset() { *m = Message{} }
|
|
|
|
func (m *Message) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Message) ProtoMessage() {}
|
|
|
|
func (*Message) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_6bbe3f70febb9403, []int{0}
|
|
|
|
}
|
|
|
|
func (m *Message) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Message.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *Message) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_Message.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *Message) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_Message.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *Message) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_Message.Size(m)
|
|
|
|
}
|
|
|
|
func (m *Message) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_Message.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_Message proto.InternalMessageInfo
|
|
|
|
|
2018-09-13 10:59:17 -07:00
|
|
|
func (m *Message) GetFieldOne() string {
|
|
|
|
if m != nil && m.FieldOne != nil {
|
|
|
|
return *m.FieldOne
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetFieldTwo() string {
|
|
|
|
if m != nil && m.FieldTwo != nil {
|
|
|
|
return *m.FieldTwo
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetFieldThree() string {
|
|
|
|
if m != nil && m.FieldThree != nil {
|
|
|
|
return *m.FieldThree
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetField_Four() string {
|
|
|
|
if m != nil && m.Field_Four != nil {
|
|
|
|
return *m.Field_Four
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetDescriptor_() string {
|
|
|
|
if m != nil && m.Descriptor_ != nil {
|
|
|
|
return *m.Descriptor_
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetMarshal_() string {
|
|
|
|
if m != nil && m.Marshal_ != nil {
|
|
|
|
return *m.Marshal_
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetUnmarshal_() string {
|
|
|
|
if m != nil && m.Unmarshal_ != nil {
|
|
|
|
return *m.Unmarshal_
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetProtoMessage_() string {
|
|
|
|
if m != nil && m.ProtoMessage_ != nil {
|
|
|
|
return *m.ProtoMessage_
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetCamelCase() string {
|
|
|
|
if m != nil && m.CamelCase != nil {
|
|
|
|
return *m.CamelCase
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetCamelCase_() string {
|
|
|
|
if m != nil && m.CamelCase_ != nil {
|
|
|
|
return *m.CamelCase_
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetCamelCase__() string {
|
|
|
|
if m != nil && m.CamelCase__ != nil {
|
|
|
|
return *m.CamelCase__
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetCamelCase___() string {
|
|
|
|
if m != nil && m.CamelCase___ != nil {
|
|
|
|
return *m.CamelCase___
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetGetName() string {
|
|
|
|
if m != nil && m.GetName != nil {
|
|
|
|
return *m.GetName
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Message) GetName_() string {
|
|
|
|
if m != nil && m.Name_ != nil {
|
|
|
|
return *m.Name_
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2018-09-13 13:12:36 -07:00
|
|
|
type isMessage_OneofConflictA_ interface {
|
|
|
|
isMessage_OneofConflictA_()
|
|
|
|
}
|
|
|
|
|
|
|
|
type Message_OneofConflictA struct {
|
|
|
|
OneofConflictA string `protobuf:"bytes,40,opt,name=OneofConflictA,oneof"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*Message_OneofConflictA) isMessage_OneofConflictA_() {}
|
|
|
|
|
|
|
|
func (m *Message) GetOneofConflictA_() isMessage_OneofConflictA_ {
|
|
|
|
if m != nil {
|
|
|
|
return m.OneofConflictA_
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-09-13 10:59:17 -07:00
|
|
|
func (m *Message) GetOneofConflictA() string {
|
2018-09-13 13:12:36 -07:00
|
|
|
if x, ok := m.GetOneofConflictA_().(*Message_OneofConflictA); ok {
|
|
|
|
return x.OneofConflictA
|
2018-09-13 10:59:17 -07:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2018-09-13 13:12:36 -07:00
|
|
|
type isMessage_OneofConflictB interface {
|
|
|
|
isMessage_OneofConflictB()
|
|
|
|
}
|
|
|
|
|
|
|
|
type Message_OneofNoConflict struct {
|
|
|
|
OneofNoConflict string `protobuf:"bytes,50,opt,name=oneof_no_conflict,json=oneofNoConflict,oneof"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Message_OneofConflictB_ struct {
|
|
|
|
OneofConflictB_ string `protobuf:"bytes,51,opt,name=OneofConflictB,oneof"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*Message_OneofNoConflict) isMessage_OneofConflictB() {}
|
|
|
|
|
|
|
|
func (*Message_OneofConflictB_) isMessage_OneofConflictB() {}
|
|
|
|
|
|
|
|
func (m *Message) GetOneofConflictB() isMessage_OneofConflictB {
|
|
|
|
if m != nil {
|
|
|
|
return m.OneofConflictB
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-09-13 10:59:17 -07:00
|
|
|
func (m *Message) GetOneofNoConflict() string {
|
2018-09-13 13:12:36 -07:00
|
|
|
if x, ok := m.GetOneofConflictB().(*Message_OneofNoConflict); ok {
|
|
|
|
return x.OneofNoConflict
|
2018-09-13 10:59:17 -07:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2018-09-13 13:12:36 -07:00
|
|
|
func (m *Message) GetOneofConflictB_() string {
|
|
|
|
if x, ok := m.GetOneofConflictB().(*Message_OneofConflictB_); ok {
|
|
|
|
return x.OneofConflictB_
|
2018-09-13 10:59:17 -07:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2018-09-13 13:12:36 -07:00
|
|
|
// XXX_OneofFuncs is for the internal use of the proto package.
|
|
|
|
func (*Message) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
|
|
|
|
return _Message_OneofMarshaler, _Message_OneofUnmarshaler, _Message_OneofSizer, []interface{}{
|
|
|
|
(*Message_OneofConflictA)(nil),
|
|
|
|
(*Message_OneofNoConflict)(nil),
|
|
|
|
(*Message_OneofConflictB_)(nil),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func _Message_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
|
|
|
m := msg.(*Message)
|
|
|
|
// oneof_conflict_a
|
|
|
|
switch x := m.OneofConflictA_.(type) {
|
|
|
|
case *Message_OneofConflictA:
|
|
|
|
b.EncodeVarint(40<<3 | proto.WireBytes)
|
|
|
|
b.EncodeStringBytes(x.OneofConflictA)
|
|
|
|
case nil:
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("Message.OneofConflictA_ has unexpected type %T", x)
|
|
|
|
}
|
|
|
|
// oneof_conflict_b
|
|
|
|
switch x := m.OneofConflictB.(type) {
|
|
|
|
case *Message_OneofNoConflict:
|
|
|
|
b.EncodeVarint(50<<3 | proto.WireBytes)
|
|
|
|
b.EncodeStringBytes(x.OneofNoConflict)
|
|
|
|
case *Message_OneofConflictB_:
|
|
|
|
b.EncodeVarint(51<<3 | proto.WireBytes)
|
|
|
|
b.EncodeStringBytes(x.OneofConflictB_)
|
|
|
|
case nil:
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("Message.OneofConflictB has unexpected type %T", x)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func _Message_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
|
|
|
|
m := msg.(*Message)
|
|
|
|
switch tag {
|
|
|
|
case 40: // oneof_conflict_a.OneofConflictA
|
|
|
|
if wire != proto.WireBytes {
|
|
|
|
return true, proto.ErrInternalBadWireType
|
|
|
|
}
|
|
|
|
x, err := b.DecodeStringBytes()
|
|
|
|
m.OneofConflictA_ = &Message_OneofConflictA{x}
|
|
|
|
return true, err
|
|
|
|
case 50: // oneof_conflict_b.oneof_no_conflict
|
|
|
|
if wire != proto.WireBytes {
|
|
|
|
return true, proto.ErrInternalBadWireType
|
|
|
|
}
|
|
|
|
x, err := b.DecodeStringBytes()
|
|
|
|
m.OneofConflictB = &Message_OneofNoConflict{x}
|
|
|
|
return true, err
|
|
|
|
case 51: // oneof_conflict_b.OneofConflictB
|
|
|
|
if wire != proto.WireBytes {
|
|
|
|
return true, proto.ErrInternalBadWireType
|
|
|
|
}
|
|
|
|
x, err := b.DecodeStringBytes()
|
|
|
|
m.OneofConflictB = &Message_OneofConflictB_{x}
|
|
|
|
return true, err
|
|
|
|
default:
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func _Message_OneofSizer(msg proto.Message) (n int) {
|
|
|
|
m := msg.(*Message)
|
|
|
|
// oneof_conflict_a
|
|
|
|
switch x := m.OneofConflictA_.(type) {
|
|
|
|
case *Message_OneofConflictA:
|
|
|
|
n += 2 // tag and wire
|
|
|
|
n += proto.SizeVarint(uint64(len(x.OneofConflictA)))
|
|
|
|
n += len(x.OneofConflictA)
|
|
|
|
case nil:
|
|
|
|
default:
|
|
|
|
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
|
|
|
|
}
|
|
|
|
// oneof_conflict_b
|
|
|
|
switch x := m.OneofConflictB.(type) {
|
|
|
|
case *Message_OneofNoConflict:
|
|
|
|
n += 2 // tag and wire
|
|
|
|
n += proto.SizeVarint(uint64(len(x.OneofNoConflict)))
|
|
|
|
n += len(x.OneofNoConflict)
|
|
|
|
case *Message_OneofConflictB_:
|
|
|
|
n += 2 // tag and wire
|
|
|
|
n += proto.SizeVarint(uint64(len(x.OneofConflictB_)))
|
|
|
|
n += len(x.OneofConflictB_)
|
|
|
|
case nil:
|
|
|
|
default:
|
|
|
|
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
|
|
|
|
}
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
|
2018-09-13 15:19:08 -07:00
|
|
|
func init() {
|
|
|
|
proto.RegisterType((*Message)(nil), "goproto.protoc.fieldnames.Message")
|
|
|
|
}
|
|
|
|
|
2018-09-10 12:26:21 -07:00
|
|
|
func init() { proto.RegisterFile("fieldnames/fieldnames.proto", fileDescriptor_6bbe3f70febb9403) }
|
|
|
|
|
|
|
|
var fileDescriptor_6bbe3f70febb9403 = []byte{
|
|
|
|
// 382 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x92, 0x4b, 0x6f, 0xd3, 0x40,
|
|
|
|
0x10, 0xc7, 0x09, 0x44, 0x6a, 0x3c, 0x69, 0x79, 0xac, 0x78, 0x6c, 0x69, 0x31, 0x08, 0x2e, 0x39,
|
|
|
|
0x50, 0x5b, 0x82, 0x33, 0x42, 0x24, 0x52, 0xc5, 0x85, 0x56, 0x8a, 0x72, 0xe2, 0xb2, 0x5a, 0xd6,
|
|
|
|
0xe3, 0x4d, 0x24, 0x7b, 0x27, 0x5a, 0x6f, 0xc4, 0x17, 0xe5, 0x03, 0x21, 0xcf, 0xc6, 0x76, 0x94,
|
|
|
|
0xe6, 0x36, 0xf3, 0xfb, 0x3f, 0xac, 0xb1, 0x0d, 0x57, 0xe5, 0x06, 0xab, 0xc2, 0xe9, 0x1a, 0x9b,
|
|
|
|
0x7c, 0x18, 0xb3, 0xad, 0xa7, 0x40, 0xe2, 0xd2, 0x12, 0x0f, 0x71, 0x35, 0xd9, 0x60, 0xf8, 0xf8,
|
|
|
|
0x6f, 0x0c, 0x67, 0xbf, 0xb0, 0x69, 0xb4, 0x45, 0x71, 0x05, 0x09, 0x2b, 0x8a, 0x1c, 0xca, 0xd1,
|
|
|
|
0x87, 0xd1, 0x2c, 0x59, 0x4e, 0x18, 0xdc, 0x3b, 0x14, 0x6f, 0x61, 0x72, 0xdb, 0xce, 0xab, 0xbf,
|
|
|
|
0x24, 0x1f, 0x47, 0xad, 0xdb, 0x45, 0x0a, 0xc0, 0xbe, 0xd5, 0xda, 0x23, 0xca, 0x27, 0xac, 0x1e,
|
|
|
|
0x10, 0x91, 0xc2, 0x34, 0x16, 0xab, 0x92, 0x76, 0x5e, 0x8e, 0xd9, 0x10, 0x9f, 0x75, 0x4b, 0x3b,
|
|
|
|
0xdf, 0xe6, 0x0b, 0x6c, 0x8c, 0xdf, 0x6c, 0x03, 0x79, 0x09, 0x31, 0x3f, 0x10, 0x21, 0xe1, 0xac,
|
|
|
|
0xd6, 0xbe, 0x59, 0xeb, 0x4a, 0x4e, 0x59, 0xec, 0x56, 0x71, 0x0d, 0xc9, 0xce, 0x75, 0xda, 0x79,
|
|
|
|
0xec, 0xed, 0x81, 0xf8, 0x04, 0x17, 0x7c, 0xb1, 0xaa, 0xe3, 0x85, 0xf2, 0x82, 0x1d, 0xe7, 0x0c,
|
|
|
|
0xbb, 0xab, 0xaf, 0x21, 0x59, 0xe8, 0x1a, 0xab, 0x85, 0x6e, 0x50, 0xbe, 0x8c, 0x15, 0x3d, 0x10,
|
|
|
|
0xef, 0x00, 0xfa, 0x45, 0xc9, 0x57, 0x27, 0x64, 0xd3, 0x2e, 0xca, 0xb4, 0xe9, 0xd7, 0x51, 0x36,
|
|
|
|
0xbd, 0x9c, 0xc2, 0x74, 0x48, 0x2b, 0xf9, 0xe6, 0x38, 0x7e, 0x09, 0x13, 0x8b, 0x41, 0xb5, 0x9f,
|
|
|
|
0x42, 0xa6, 0xf1, 0x32, 0x8b, 0xe1, 0x4e, 0xd7, 0x28, 0x04, 0x8c, 0x19, 0xbf, 0x67, 0xcc, 0xb3,
|
|
|
|
0x98, 0xc1, 0xd3, 0x7b, 0x87, 0x54, 0x2e, 0xc8, 0x95, 0xd5, 0xc6, 0x84, 0x1f, 0x72, 0xd6, 0xaa,
|
|
|
|
0x3f, 0x1f, 0x2d, 0x8f, 0xb8, 0xf8, 0x0c, 0x2f, 0xa8, 0x25, 0xca, 0x91, 0x32, 0x7b, 0x2a, 0xbf,
|
|
|
|
0xb0, 0x79, 0xb4, 0x7c, 0xc6, 0xd2, 0x1d, 0x75, 0xf6, 0x07, 0xbd, 0x73, 0xf9, 0x75, 0x6f, 0x3d,
|
|
|
|
0xe2, 0x73, 0x01, 0xcf, 0x63, 0x6f, 0x57, 0xaa, 0xf4, 0x09, 0xf6, 0x67, 0xfe, 0xfd, 0xf7, 0x37,
|
|
|
|
0x4b, 0x64, 0x2b, 0xcc, 0x2c, 0x55, 0xda, 0xd9, 0x8c, 0xbc, 0xcd, 0xf9, 0xb5, 0xe7, 0xa6, 0x2e,
|
|
|
|
0xe2, 0x64, 0x6e, 0x2c, 0xba, 0x1b, 0x4b, 0x79, 0xc0, 0x26, 0x14, 0x3a, 0xe8, 0x83, 0x1f, 0xf7,
|
|
|
|
0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x92, 0xbf, 0xac, 0x4e, 0xd0, 0x02, 0x00, 0x00,
|
|
|
|
}
|