diff --git a/api/cosmos/staking/v1beta1/staking.pulsar.go b/api/cosmos/staking/v1beta1/staking.pulsar.go index d71736caa166..5e1417aea91d 100644 --- a/api/cosmos/staking/v1beta1/staking.pulsar.go +++ b/api/cosmos/staking/v1beta1/staking.pulsar.go @@ -11453,54 +11453,54 @@ func (x *_Params_9_list) IsValid() bool { return x.list != nil } -var _ protoreflect.List = (*_Params_10_list)(nil) +var _ protoreflect.List = (*_Params_11_list)(nil) -type _Params_10_list struct { +type _Params_11_list struct { list *[]*TokenTypeInfo } -func (x *_Params_10_list) Len() int { +func (x *_Params_11_list) Len() int { if x.list == nil { return 0 } return len(*x.list) } -func (x *_Params_10_list) Get(i int) protoreflect.Value { +func (x *_Params_11_list) Get(i int) protoreflect.Value { return protoreflect.ValueOfMessage((*x.list)[i].ProtoReflect()) } -func (x *_Params_10_list) Set(i int, value protoreflect.Value) { +func (x *_Params_11_list) Set(i int, value protoreflect.Value) { valueUnwrapped := value.Message() concreteValue := valueUnwrapped.Interface().(*TokenTypeInfo) (*x.list)[i] = concreteValue } -func (x *_Params_10_list) Append(value protoreflect.Value) { +func (x *_Params_11_list) Append(value protoreflect.Value) { valueUnwrapped := value.Message() concreteValue := valueUnwrapped.Interface().(*TokenTypeInfo) *x.list = append(*x.list, concreteValue) } -func (x *_Params_10_list) AppendMutable() protoreflect.Value { +func (x *_Params_11_list) AppendMutable() protoreflect.Value { v := new(TokenTypeInfo) *x.list = append(*x.list, v) return protoreflect.ValueOfMessage(v.ProtoReflect()) } -func (x *_Params_10_list) Truncate(n int) { +func (x *_Params_11_list) Truncate(n int) { for i := n; i < len(*x.list); i++ { (*x.list)[i] = nil } *x.list = (*x.list)[:n] } -func (x *_Params_10_list) NewElement() protoreflect.Value { +func (x *_Params_11_list) NewElement() protoreflect.Value { v := new(TokenTypeInfo) return protoreflect.ValueOfMessage(v.ProtoReflect()) } -func (x *_Params_10_list) IsValid() bool { +func (x *_Params_11_list) IsValid() bool { return x.list != nil } @@ -11515,6 +11515,7 @@ var ( fd_Params_min_delegation protoreflect.FieldDescriptor fd_Params_flexible_period_type protoreflect.FieldDescriptor fd_Params_periods protoreflect.FieldDescriptor + fd_Params_locked_token_type protoreflect.FieldDescriptor fd_Params_token_types protoreflect.FieldDescriptor ) @@ -11530,6 +11531,7 @@ func init() { fd_Params_min_delegation = md_Params.Fields().ByName("min_delegation") fd_Params_flexible_period_type = md_Params.Fields().ByName("flexible_period_type") fd_Params_periods = md_Params.Fields().ByName("periods") + fd_Params_locked_token_type = md_Params.Fields().ByName("locked_token_type") fd_Params_token_types = md_Params.Fields().ByName("token_types") } @@ -11652,8 +11654,14 @@ func (x *fastReflection_Params) Range(f func(protoreflect.FieldDescriptor, proto return } } + if x.LockedTokenType != int32(0) { + value := protoreflect.ValueOfInt32(x.LockedTokenType) + if !f(fd_Params_locked_token_type, value) { + return + } + } if len(x.TokenTypes) != 0 { - value := protoreflect.ValueOfList(&_Params_10_list{list: &x.TokenTypes}) + value := protoreflect.ValueOfList(&_Params_11_list{list: &x.TokenTypes}) if !f(fd_Params_token_types, value) { return } @@ -11691,6 +11699,8 @@ func (x *fastReflection_Params) Has(fd protoreflect.FieldDescriptor) bool { return x.FlexiblePeriodType != int32(0) case "cosmos.staking.v1beta1.Params.periods": return len(x.Periods) != 0 + case "cosmos.staking.v1beta1.Params.locked_token_type": + return x.LockedTokenType != int32(0) case "cosmos.staking.v1beta1.Params.token_types": return len(x.TokenTypes) != 0 default: @@ -11727,6 +11737,8 @@ func (x *fastReflection_Params) Clear(fd protoreflect.FieldDescriptor) { x.FlexiblePeriodType = int32(0) case "cosmos.staking.v1beta1.Params.periods": x.Periods = nil + case "cosmos.staking.v1beta1.Params.locked_token_type": + x.LockedTokenType = int32(0) case "cosmos.staking.v1beta1.Params.token_types": x.TokenTypes = nil default: @@ -11775,11 +11787,14 @@ func (x *fastReflection_Params) Get(descriptor protoreflect.FieldDescriptor) pro } listValue := &_Params_9_list{list: &x.Periods} return protoreflect.ValueOfList(listValue) + case "cosmos.staking.v1beta1.Params.locked_token_type": + value := x.LockedTokenType + return protoreflect.ValueOfInt32(value) case "cosmos.staking.v1beta1.Params.token_types": if len(x.TokenTypes) == 0 { - return protoreflect.ValueOfList(&_Params_10_list{}) + return protoreflect.ValueOfList(&_Params_11_list{}) } - listValue := &_Params_10_list{list: &x.TokenTypes} + listValue := &_Params_11_list{list: &x.TokenTypes} return protoreflect.ValueOfList(listValue) default: if descriptor.IsExtension() { @@ -11821,9 +11836,11 @@ func (x *fastReflection_Params) Set(fd protoreflect.FieldDescriptor, value proto lv := value.List() clv := lv.(*_Params_9_list) x.Periods = *clv.list + case "cosmos.staking.v1beta1.Params.locked_token_type": + x.LockedTokenType = int32(value.Int()) case "cosmos.staking.v1beta1.Params.token_types": lv := value.List() - clv := lv.(*_Params_10_list) + clv := lv.(*_Params_11_list) x.TokenTypes = *clv.list default: if fd.IsExtension() { @@ -11860,7 +11877,7 @@ func (x *fastReflection_Params) Mutable(fd protoreflect.FieldDescriptor) protore if x.TokenTypes == nil { x.TokenTypes = []*TokenTypeInfo{} } - value := &_Params_10_list{list: &x.TokenTypes} + value := &_Params_11_list{list: &x.TokenTypes} return protoreflect.ValueOfList(value) case "cosmos.staking.v1beta1.Params.max_validators": panic(fmt.Errorf("field max_validators of message cosmos.staking.v1beta1.Params is not mutable")) @@ -11876,6 +11893,8 @@ func (x *fastReflection_Params) Mutable(fd protoreflect.FieldDescriptor) protore panic(fmt.Errorf("field min_delegation of message cosmos.staking.v1beta1.Params is not mutable")) case "cosmos.staking.v1beta1.Params.flexible_period_type": panic(fmt.Errorf("field flexible_period_type of message cosmos.staking.v1beta1.Params is not mutable")) + case "cosmos.staking.v1beta1.Params.locked_token_type": + panic(fmt.Errorf("field locked_token_type of message cosmos.staking.v1beta1.Params is not mutable")) default: if fd.IsExtension() { panic(fmt.Errorf("proto3 declared messages do not support extensions: cosmos.staking.v1beta1.Params")) @@ -11909,9 +11928,11 @@ func (x *fastReflection_Params) NewField(fd protoreflect.FieldDescriptor) protor case "cosmos.staking.v1beta1.Params.periods": list := []*Period{} return protoreflect.ValueOfList(&_Params_9_list{list: &list}) + case "cosmos.staking.v1beta1.Params.locked_token_type": + return protoreflect.ValueOfInt32(int32(0)) case "cosmos.staking.v1beta1.Params.token_types": list := []*TokenTypeInfo{} - return protoreflect.ValueOfList(&_Params_10_list{list: &list}) + return protoreflect.ValueOfList(&_Params_11_list{list: &list}) default: if fd.IsExtension() { panic(fmt.Errorf("proto3 declared messages do not support extensions: cosmos.staking.v1beta1.Params")) @@ -12015,6 +12036,9 @@ func (x *fastReflection_Params) ProtoMethods() *protoiface.Methods { n += 1 + l + runtime.Sov(uint64(l)) } } + if x.LockedTokenType != 0 { + n += 1 + runtime.Sov(uint64(x.LockedTokenType)) + } if len(x.TokenTypes) > 0 { for _, e := range x.TokenTypes { l = options.Size(e) @@ -12063,9 +12087,14 @@ func (x *fastReflection_Params) ProtoMethods() *protoiface.Methods { copy(dAtA[i:], encoded) i = runtime.EncodeVarint(dAtA, i, uint64(len(encoded))) i-- - dAtA[i] = 0x52 + dAtA[i] = 0x5a } } + if x.LockedTokenType != 0 { + i = runtime.EncodeVarint(dAtA, i, uint64(x.LockedTokenType)) + i-- + dAtA[i] = 0x50 + } if len(x.Periods) > 0 { for iNdEx := len(x.Periods) - 1; iNdEx >= 0; iNdEx-- { encoded, err := options.Marshal(x.Periods[iNdEx]) @@ -12429,6 +12458,25 @@ func (x *fastReflection_Params) ProtoMethods() *protoiface.Methods { } iNdEx = postIndex case 10: + if wireType != 0 { + return protoiface.UnmarshalOutput{NoUnkeyedLiterals: input.NoUnkeyedLiterals, Flags: input.Flags}, fmt.Errorf("proto: wrong wireType = %d for field LockedTokenType", wireType) + } + x.LockedTokenType = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return protoiface.UnmarshalOutput{NoUnkeyedLiterals: input.NoUnkeyedLiterals, Flags: input.Flags}, runtime.ErrIntOverflow + } + if iNdEx >= l { + return protoiface.UnmarshalOutput{NoUnkeyedLiterals: input.NoUnkeyedLiterals, Flags: input.Flags}, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + x.LockedTokenType |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 11: if wireType != 2 { return protoiface.UnmarshalOutput{NoUnkeyedLiterals: input.NoUnkeyedLiterals, Flags: input.Flags}, fmt.Errorf("proto: wrong wireType = %d for field TokenTypes", wireType) } @@ -16338,7 +16386,8 @@ type Params struct { MinDelegation string `protobuf:"bytes,7,opt,name=min_delegation,json=minDelegation,proto3" json:"min_delegation,omitempty"` FlexiblePeriodType int32 `protobuf:"varint,8,opt,name=flexible_period_type,json=flexiblePeriodType,proto3" json:"flexible_period_type,omitempty"` Periods []*Period `protobuf:"bytes,9,rep,name=periods,proto3" json:"periods,omitempty"` - TokenTypes []*TokenTypeInfo `protobuf:"bytes,10,rep,name=token_types,json=tokenTypes,proto3" json:"token_types,omitempty"` + LockedTokenType int32 `protobuf:"varint,10,opt,name=locked_token_type,json=lockedTokenType,proto3" json:"locked_token_type,omitempty"` + TokenTypes []*TokenTypeInfo `protobuf:"bytes,11,rep,name=token_types,json=tokenTypes,proto3" json:"token_types,omitempty"` } func (x *Params) Reset() { @@ -16424,6 +16473,13 @@ func (x *Params) GetPeriods() []*Period { return nil } +func (x *Params) GetLockedTokenType() int32 { + if x != nil { + return x.LockedTokenType + } + return 0 +} + func (x *Params) GetTokenTypes() []*TokenTypeInfo { if x != nil { return x.TokenTypes @@ -16996,7 +17052,7 @@ var file_cosmos_staking_v1beta1_staking_proto_rawDesc = []byte{ 0x62, 0x65, 0x74, 0x61, 0x31, 0x2e, 0x52, 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x07, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x3a, 0x08, 0x88, 0xa0, 0x1f, - 0x00, 0xe8, 0xa0, 0x1f, 0x00, 0x22, 0xba, 0x05, 0x0a, 0x06, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, + 0x00, 0xe8, 0xa0, 0x1f, 0x00, 0x22, 0xe6, 0x05, 0x0a, 0x06, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x12, 0x4f, 0x0a, 0x0e, 0x75, 0x6e, 0x62, 0x6f, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, @@ -17032,104 +17088,106 @@ var file_cosmos_staking_v1beta1_staking_proto_rawDesc = []byte{ 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2e, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x42, 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, - 0x52, 0x07, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x73, 0x12, 0x51, 0x0a, 0x0b, 0x74, 0x6f, 0x6b, - 0x65, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, - 0x2e, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, - 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x54, 0x79, 0x70, - 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, - 0x52, 0x0a, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x73, 0x3a, 0x24, 0xe8, 0xa0, - 0x1f, 0x01, 0x8a, 0xe7, 0xb0, 0x2a, 0x1b, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2d, 0x73, 0x64, - 0x6b, 0x2f, 0x78, 0x2f, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2f, 0x50, 0x61, 0x72, 0x61, - 0x6d, 0x73, 0x22, 0xa9, 0x01, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4d, 0x0a, 0x0a, 0x64, 0x65, 0x6c, - 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, - 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, - 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x42, 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x0a, 0x64, 0x65, - 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3e, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, - 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x63, 0x6f, 0x73, 0x6d, - 0x6f, 0x73, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2e, - 0x43, 0x6f, 0x69, 0x6e, 0x42, 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, - 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x04, 0xe8, 0xa0, 0x1f, 0x00, 0x22, 0xcd, - 0x01, 0x0a, 0x19, 0x52, 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, - 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x63, 0x0a, 0x12, - 0x72, 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x6e, 0x74, - 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x63, 0x6f, 0x73, 0x6d, 0x6f, - 0x73, 0x2e, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, - 0x31, 0x2e, 0x52, 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, - 0x74, 0x72, 0x79, 0x42, 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x11, - 0x72, 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x72, - 0x79, 0x12, 0x45, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, - 0x28, 0x09, 0x42, 0x2b, 0xc8, 0xde, 0x1f, 0x00, 0xda, 0xde, 0x1f, 0x15, 0x63, 0x6f, 0x73, 0x6d, - 0x6f, 0x73, 0x73, 0x64, 0x6b, 0x2e, 0x69, 0x6f, 0x2f, 0x6d, 0x61, 0x74, 0x68, 0x2e, 0x49, 0x6e, - 0x74, 0xd2, 0xb4, 0x2d, 0x0a, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x74, 0x52, - 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x04, 0xe8, 0xa0, 0x1f, 0x01, 0x22, 0xc9, - 0x01, 0x0a, 0x14, 0x52, 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x53, 0x0a, 0x0c, 0x72, 0x65, 0x64, 0x65, 0x6c, - 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, - 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, - 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2e, 0x52, 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x42, 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x0c, - 0x72, 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x56, 0x0a, 0x07, - 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, - 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, - 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2e, 0x52, 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x42, 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x07, 0x65, 0x6e, 0x74, - 0x72, 0x69, 0x65, 0x73, 0x3a, 0x04, 0xe8, 0xa0, 0x1f, 0x00, 0x22, 0xeb, 0x01, 0x0a, 0x04, 0x50, - 0x6f, 0x6f, 0x6c, 0x12, 0x71, 0x0a, 0x11, 0x6e, 0x6f, 0x74, 0x5f, 0x62, 0x6f, 0x6e, 0x64, 0x65, - 0x64, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x45, + 0x52, 0x07, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x6c, 0x6f, 0x63, + 0x6b, 0x65, 0x64, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0a, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x6c, 0x6f, 0x63, 0x6b, 0x65, 0x64, 0x54, 0x6f, 0x6b, 0x65, + 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x51, 0x0a, 0x0b, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x74, + 0x79, 0x70, 0x65, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x73, + 0x6d, 0x6f, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x62, 0x65, + 0x74, 0x61, 0x31, 0x2e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x49, 0x6e, 0x66, + 0x6f, 0x42, 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x0a, 0x74, 0x6f, + 0x6b, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x73, 0x3a, 0x24, 0xe8, 0xa0, 0x1f, 0x01, 0x8a, 0xe7, + 0xb0, 0x2a, 0x1b, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2d, 0x73, 0x64, 0x6b, 0x2f, 0x78, 0x2f, + 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0xa9, + 0x01, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4d, 0x0a, 0x0a, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x63, 0x6f, 0x73, 0x6d, + 0x6f, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, + 0x61, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x09, 0xc8, + 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x0a, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3e, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x62, + 0x61, 0x73, 0x65, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2e, 0x43, 0x6f, 0x69, 0x6e, + 0x42, 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x07, 0x62, 0x61, 0x6c, + 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x04, 0xe8, 0xa0, 0x1f, 0x00, 0x22, 0xcd, 0x01, 0x0a, 0x19, 0x52, + 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x72, 0x79, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x63, 0x0a, 0x12, 0x72, 0x65, 0x64, 0x65, + 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x73, 0x74, + 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2e, 0x52, 0x65, + 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, + 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x11, 0x72, 0x65, 0x64, 0x65, + 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x45, 0x0a, + 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2b, 0xc8, 0xde, 0x1f, 0x00, 0xda, 0xde, 0x1f, 0x15, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x73, 0x64, - 0x6b, 0x2e, 0x69, 0x6f, 0x2f, 0x6d, 0x61, 0x74, 0x68, 0x2e, 0x49, 0x6e, 0x74, 0xea, 0xde, 0x1f, - 0x11, 0x6e, 0x6f, 0x74, 0x5f, 0x62, 0x6f, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x74, 0x6f, 0x6b, 0x65, - 0x6e, 0x73, 0xd2, 0xb4, 0x2d, 0x0a, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x74, - 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x0f, 0x6e, 0x6f, 0x74, 0x42, 0x6f, 0x6e, 0x64, 0x65, 0x64, - 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x73, 0x12, 0x66, 0x0a, 0x0d, 0x62, 0x6f, 0x6e, 0x64, 0x65, 0x64, - 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x41, 0xc8, - 0xde, 0x1f, 0x00, 0xda, 0xde, 0x1f, 0x15, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x73, 0x64, 0x6b, - 0x2e, 0x69, 0x6f, 0x2f, 0x6d, 0x61, 0x74, 0x68, 0x2e, 0x49, 0x6e, 0x74, 0xea, 0xde, 0x1f, 0x0d, - 0x62, 0x6f, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x73, 0xd2, 0xb4, 0x2d, - 0x0a, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x74, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, - 0x52, 0x0c, 0x62, 0x6f, 0x6e, 0x64, 0x65, 0x64, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x73, 0x3a, 0x08, - 0xe8, 0xa0, 0x1f, 0x01, 0xf0, 0xa0, 0x1f, 0x01, 0x22, 0x59, 0x0a, 0x10, 0x56, 0x61, 0x6c, 0x69, - 0x64, 0x61, 0x74, 0x6f, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x73, 0x12, 0x45, 0x0a, 0x07, - 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, - 0x74, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x74, 0x2e, 0x61, 0x62, 0x63, 0x69, 0x2e, - 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x6f, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, - 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x07, 0x75, 0x70, 0x64, 0x61, - 0x74, 0x65, 0x73, 0x2a, 0xb6, 0x01, 0x0a, 0x0a, 0x42, 0x6f, 0x6e, 0x64, 0x53, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x12, 0x2c, 0x0a, 0x17, 0x42, 0x4f, 0x4e, 0x44, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, - 0x53, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x1a, - 0x0f, 0x8a, 0x9d, 0x20, 0x0b, 0x55, 0x6e, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x64, - 0x12, 0x26, 0x0a, 0x14, 0x42, 0x4f, 0x4e, 0x44, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, - 0x55, 0x4e, 0x42, 0x4f, 0x4e, 0x44, 0x45, 0x44, 0x10, 0x01, 0x1a, 0x0c, 0x8a, 0x9d, 0x20, 0x08, - 0x55, 0x6e, 0x62, 0x6f, 0x6e, 0x64, 0x65, 0x64, 0x12, 0x28, 0x0a, 0x15, 0x42, 0x4f, 0x4e, 0x44, - 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x42, 0x4f, 0x4e, 0x44, 0x49, 0x4e, - 0x47, 0x10, 0x02, 0x1a, 0x0d, 0x8a, 0x9d, 0x20, 0x09, 0x55, 0x6e, 0x62, 0x6f, 0x6e, 0x64, 0x69, - 0x6e, 0x67, 0x12, 0x22, 0x0a, 0x12, 0x42, 0x4f, 0x4e, 0x44, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, - 0x53, 0x5f, 0x42, 0x4f, 0x4e, 0x44, 0x45, 0x44, 0x10, 0x03, 0x1a, 0x0a, 0x8a, 0x9d, 0x20, 0x06, - 0x42, 0x6f, 0x6e, 0x64, 0x65, 0x64, 0x1a, 0x04, 0x88, 0xa3, 0x1e, 0x00, 0x2a, 0x5d, 0x0a, 0x0a, - 0x49, 0x6e, 0x66, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x16, 0x49, 0x4e, - 0x46, 0x52, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, - 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1a, 0x0a, 0x16, 0x49, 0x4e, 0x46, 0x52, 0x41, 0x43, - 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x44, 0x4f, 0x55, 0x42, 0x4c, 0x45, 0x5f, 0x53, 0x49, 0x47, 0x4e, - 0x10, 0x01, 0x12, 0x17, 0x0a, 0x13, 0x49, 0x4e, 0x46, 0x52, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, - 0x5f, 0x44, 0x4f, 0x57, 0x4e, 0x54, 0x49, 0x4d, 0x45, 0x10, 0x02, 0x42, 0xdc, 0x01, 0x0a, 0x1a, - 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x6b, 0x69, - 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x42, 0x0c, 0x53, 0x74, 0x61, 0x6b, - 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x36, 0x63, 0x6f, 0x73, 0x6d, - 0x6f, 0x73, 0x73, 0x64, 0x6b, 0x2e, 0x69, 0x6f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x73, - 0x6d, 0x6f, 0x73, 0x2f, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x62, 0x65, - 0x74, 0x61, 0x31, 0x3b, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x76, 0x31, 0x62, 0x65, 0x74, - 0x61, 0x31, 0xa2, 0x02, 0x03, 0x43, 0x53, 0x58, 0xaa, 0x02, 0x16, 0x43, 0x6f, 0x73, 0x6d, 0x6f, - 0x73, 0x2e, 0x53, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, - 0x31, 0xca, 0x02, 0x16, 0x43, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x5c, 0x53, 0x74, 0x61, 0x6b, 0x69, - 0x6e, 0x67, 0x5c, 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0xe2, 0x02, 0x22, 0x43, 0x6f, 0x73, - 0x6d, 0x6f, 0x73, 0x5c, 0x53, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x5c, 0x56, 0x31, 0x62, 0x65, - 0x74, 0x61, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, - 0x02, 0x18, 0x43, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x3a, 0x3a, 0x53, 0x74, 0x61, 0x6b, 0x69, 0x6e, - 0x67, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x6b, 0x2e, 0x69, 0x6f, 0x2f, 0x6d, 0x61, 0x74, 0x68, 0x2e, 0x49, 0x6e, 0x74, 0xd2, 0xb4, 0x2d, + 0x0a, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x74, 0x52, 0x07, 0x62, 0x61, 0x6c, + 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x04, 0xe8, 0xa0, 0x1f, 0x01, 0x22, 0xc9, 0x01, 0x0a, 0x14, 0x52, + 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x12, 0x53, 0x0a, 0x0c, 0x72, 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x63, 0x6f, 0x73, 0x6d, + 0x6f, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, + 0x61, 0x31, 0x2e, 0x52, 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, + 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x0c, 0x72, 0x65, 0x64, 0x65, + 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x56, 0x0a, 0x07, 0x65, 0x6e, 0x74, 0x72, + 0x69, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x73, 0x6d, + 0x6f, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, + 0x61, 0x31, 0x2e, 0x52, 0x65, 0x64, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, + 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x09, 0xc8, 0xde, + 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x07, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, + 0x3a, 0x04, 0xe8, 0xa0, 0x1f, 0x00, 0x22, 0xeb, 0x01, 0x0a, 0x04, 0x50, 0x6f, 0x6f, 0x6c, 0x12, + 0x71, 0x0a, 0x11, 0x6e, 0x6f, 0x74, 0x5f, 0x62, 0x6f, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x74, 0x6f, + 0x6b, 0x65, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x45, 0xc8, 0xde, 0x1f, 0x00, + 0xda, 0xde, 0x1f, 0x15, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x73, 0x64, 0x6b, 0x2e, 0x69, 0x6f, + 0x2f, 0x6d, 0x61, 0x74, 0x68, 0x2e, 0x49, 0x6e, 0x74, 0xea, 0xde, 0x1f, 0x11, 0x6e, 0x6f, 0x74, + 0x5f, 0x62, 0x6f, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x73, 0xd2, 0xb4, + 0x2d, 0x0a, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x74, 0xa8, 0xe7, 0xb0, 0x2a, + 0x01, 0x52, 0x0f, 0x6e, 0x6f, 0x74, 0x42, 0x6f, 0x6e, 0x64, 0x65, 0x64, 0x54, 0x6f, 0x6b, 0x65, + 0x6e, 0x73, 0x12, 0x66, 0x0a, 0x0d, 0x62, 0x6f, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x74, 0x6f, 0x6b, + 0x65, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x41, 0xc8, 0xde, 0x1f, 0x00, 0xda, + 0xde, 0x1f, 0x15, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x73, 0x64, 0x6b, 0x2e, 0x69, 0x6f, 0x2f, + 0x6d, 0x61, 0x74, 0x68, 0x2e, 0x49, 0x6e, 0x74, 0xea, 0xde, 0x1f, 0x0d, 0x62, 0x6f, 0x6e, 0x64, + 0x65, 0x64, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x73, 0xd2, 0xb4, 0x2d, 0x0a, 0x63, 0x6f, 0x73, + 0x6d, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x74, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x0c, 0x62, 0x6f, + 0x6e, 0x64, 0x65, 0x64, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x73, 0x3a, 0x08, 0xe8, 0xa0, 0x1f, 0x01, + 0xf0, 0xa0, 0x1f, 0x01, 0x22, 0x59, 0x0a, 0x10, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x6f, + 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x73, 0x12, 0x45, 0x0a, 0x07, 0x75, 0x70, 0x64, 0x61, + 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x74, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x74, 0x2e, 0x61, 0x62, 0x63, 0x69, 0x2e, 0x56, 0x61, 0x6c, 0x69, + 0x64, 0x61, 0x74, 0x6f, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x09, 0xc8, 0xde, 0x1f, + 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x07, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x73, 0x2a, + 0xb6, 0x01, 0x0a, 0x0a, 0x42, 0x6f, 0x6e, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2c, + 0x0a, 0x17, 0x42, 0x4f, 0x4e, 0x44, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, + 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x1a, 0x0f, 0x8a, 0x9d, 0x20, + 0x0b, 0x55, 0x6e, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x26, 0x0a, 0x14, + 0x42, 0x4f, 0x4e, 0x44, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x42, 0x4f, + 0x4e, 0x44, 0x45, 0x44, 0x10, 0x01, 0x1a, 0x0c, 0x8a, 0x9d, 0x20, 0x08, 0x55, 0x6e, 0x62, 0x6f, + 0x6e, 0x64, 0x65, 0x64, 0x12, 0x28, 0x0a, 0x15, 0x42, 0x4f, 0x4e, 0x44, 0x5f, 0x53, 0x54, 0x41, + 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x42, 0x4f, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x1a, + 0x0d, 0x8a, 0x9d, 0x20, 0x09, 0x55, 0x6e, 0x62, 0x6f, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x22, + 0x0a, 0x12, 0x42, 0x4f, 0x4e, 0x44, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x42, 0x4f, + 0x4e, 0x44, 0x45, 0x44, 0x10, 0x03, 0x1a, 0x0a, 0x8a, 0x9d, 0x20, 0x06, 0x42, 0x6f, 0x6e, 0x64, + 0x65, 0x64, 0x1a, 0x04, 0x88, 0xa3, 0x1e, 0x00, 0x2a, 0x5d, 0x0a, 0x0a, 0x49, 0x6e, 0x66, 0x72, + 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x16, 0x49, 0x4e, 0x46, 0x52, 0x41, 0x43, + 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, + 0x10, 0x00, 0x12, 0x1a, 0x0a, 0x16, 0x49, 0x4e, 0x46, 0x52, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, + 0x5f, 0x44, 0x4f, 0x55, 0x42, 0x4c, 0x45, 0x5f, 0x53, 0x49, 0x47, 0x4e, 0x10, 0x01, 0x12, 0x17, + 0x0a, 0x13, 0x49, 0x4e, 0x46, 0x52, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x44, 0x4f, 0x57, + 0x4e, 0x54, 0x49, 0x4d, 0x45, 0x10, 0x02, 0x42, 0xdc, 0x01, 0x0a, 0x1a, 0x63, 0x6f, 0x6d, 0x2e, + 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, + 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x42, 0x0c, 0x53, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x50, + 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x36, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x73, 0x64, + 0x6b, 0x2e, 0x69, 0x6f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, + 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x3b, + 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0xa2, 0x02, + 0x03, 0x43, 0x53, 0x58, 0xaa, 0x02, 0x16, 0x43, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x53, 0x74, + 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0xca, 0x02, 0x16, + 0x43, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x5c, 0x53, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x5c, 0x56, + 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0xe2, 0x02, 0x22, 0x43, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x5c, + 0x53, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x5c, 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x5c, + 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x18, 0x43, 0x6f, + 0x73, 0x6d, 0x6f, 0x73, 0x3a, 0x3a, 0x53, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x3a, 0x3a, 0x56, + 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/proto/cosmos/staking/v1beta1/staking.proto b/proto/cosmos/staking/v1beta1/staking.proto index 49d4564bfbb3..3154b8145dce 100644 --- a/proto/cosmos/staking/v1beta1/staking.proto +++ b/proto/cosmos/staking/v1beta1/staking.proto @@ -399,7 +399,8 @@ message Params { int32 flexible_period_type = 8; repeated Period periods = 9 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; - repeated TokenTypeInfo token_types = 10 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; + int32 locked_token_type = 10; + repeated TokenTypeInfo token_types = 11 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; } // DelegationResponse is equivalent to Delegation except that it contains a diff --git a/tests/fixtures/adr-024-coin-metadata_genesis.json b/tests/fixtures/adr-024-coin-metadata_genesis.json index 4273a9f5d25e..792255c5cee2 100644 --- a/tests/fixtures/adr-024-coin-metadata_genesis.json +++ b/tests/fixtures/adr-024-coin-metadata_genesis.json @@ -226,6 +226,7 @@ "rewards_multiplier": "1.34" } ], + "locked_token_type": 0, "token_types":[ { "token_type": 0, diff --git a/x/genutil/types/testdata/app_genesis.json b/x/genutil/types/testdata/app_genesis.json index 9a0430d823c4..b963f62ce560 100644 --- a/x/genutil/types/testdata/app_genesis.json +++ b/x/genutil/types/testdata/app_genesis.json @@ -1 +1 @@ -{"app_name":"\u003cappd\u003e","app_version":"","genesis_time":"2023-02-20T11:08:30.588307671Z","chain_id":"demo","initial_height":48,"app_hash":"","app_state":{"auth":{"accounts":[{"@type":"/cosmos.auth.v1beta1.BaseAccount","account_number":"1","address":"cosmos1qmkksxlxqdslq6kkca25m4jn344nx29lytq8f9","pub_key":null,"sequence":"0"},{"@type":"/cosmos.auth.v1beta1.BaseAccount","account_number":"8","address":"cosmos1pnt5523etwtzv6mj7haryfw6w8h5tkcuhd99m8","pub_key":null,"sequence":"0"},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"4","address":"cosmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu34mf0eh","pub_key":null,"sequence":"0"},"name":"bonded_tokens_pool","permissions":["burner","staking"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"5","address":"cosmos1tygms3xhhs3yv487phx3dw4a95jn7t7lpm470r","pub_key":null,"sequence":"0"},"name":"not_bonded_tokens_pool","permissions":["burner","staking"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"6","address":"cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn","pub_key":null,"sequence":"0"},"name":"gov","permissions":["burner"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"3","address":"cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl","pub_key":null,"sequence":"0"},"name":"distribution","permissions":[]},{"@type":"/cosmos.auth.v1beta1.BaseAccount","account_number":"0","address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","pub_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A3uyZdXedyvYx9VCL6xRjkxtcFpgxjhXFIz9b2mWz+aV"},"sequence":"4"},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"7","address":"cosmos1m3h30wlvsf8llruxtpukdvsy0km2kum8g38c8q","pub_key":null,"sequence":"0"},"name":"mint","permissions":["minter"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"2","address":"cosmos17xpfvakm2amg962yls6f84z3kell8c5lserqta","pub_key":null,"sequence":"0"},"name":"fee_collector","permissions":[]}],"params":{"max_memo_characters":"256","sig_verify_cost_ed25519":"590","sig_verify_cost_secp256k1":"1000","tx_sig_limit":"7","tx_size_cost_per_byte":"10"}},"authz":{"authorization":[]},"bank":{"balances":[{"address":"cosmos1qmkksxlxqdslq6kkca25m4jn344nx29lytq8f9","coins":[{"amount":"5000000000","denom":"stake"}]},{"address":"cosmos1pnt5523etwtzv6mj7haryfw6w8h5tkcuhd99m8","coins":[{"amount":"1000","denom":"stake"}]},{"address":"cosmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu34mf0eh","coins":[{"amount":"1000000","denom":"stake"}]},{"address":"cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn","coins":[{"amount":"10010000","denom":"stake"}]},{"address":"cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl","coins":[{"amount":"9635","denom":"stake"}]},{"address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","coins":[{"amount":"4988989000","denom":"stake"}]}],"denom_metadata":[],"params":{"default_send_enabled":true,"send_enabled":[]},"send_enabled":[],"supply":[{"amount":"10000009635","denom":"stake"}]},"consensus":null,"crisis":{"constant_fee":{"amount":"1000","denom":"stake"}},"distribution":{"delegator_starting_infos":[{"delegator_address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","starting_info":{"height":"0","previous_period":"1","stake":"1000000.000000000000000000"},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"delegator_withdraw_infos":[],"fee_pool":{"ubi":[{"amount":"192.700000000000000000","denom":"stake"}]},"outstanding_rewards":[{"outstanding_rewards":[{"amount":"9442.300000000000000000","denom":"stake"}],"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"params":{"base_proposer_reward":"0.000000000000000000","bonus_proposer_reward":"0.000000000000000000","ubi":"0.020000000000000000","withdraw_addr_enabled":true},"previous_proposer":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","validator_accumulated_commissions":[{"accumulated":{"commission":[{"amount":"944.230000000000000000","denom":"stake"}]},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"validator_current_rewards":[{"rewards":{"period":"2","rewards":[{"amount":"8498.070000000000000000","denom":"stake"}]},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"validator_historical_rewards":[{"period":"1","rewards":{"cumulative_reward_ratio":[],"reference_count":2},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"validator_slash_events":[]},"evidence":{"evidence":[]},"feegrant":{"allowances":[]},"genutil":{"gen_txs":[]},"gov":{"deposit_params":null,"deposits":[{"amount":[{"amount":"10010000","denom":"stake"}],"depositor":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","proposal_id":"1"}],"params":{"expedited_min_deposit":[{"amount":"50000000","denom":"stake"}],"expedited_threshold":"0.667000000000000000","expedited_voting_period":"86400s","max_deposit_period":"172800s","min_deposit":[{"amount":"10000000","denom":"stake"}],"min_initial_deposit_ratio":"0.000000000000000000","proposal_cancel_dest":"","proposal_cancel_ratio":"0.500000000000000000","quorum":"0.334000000000000000","threshold":"0.500000000000000000","veto_threshold":"0.334000000000000000","voting_period":"172800s"},"proposals":[{"deposit_end_time":"2023-02-22T11:11:52.776167376Z","expedited":false,"final_tally_result":{"abstain_count":"0","no_count":"0","no_with_veto_count":"0","yes_count":"0"},"id":"1","messages":[{"@type":"/cosmos.distribution.v1beta1.MsgCommunityPoolSpend","amount":[],"authority":"cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn","recipient":"cosmos1pnt5523etwtzv6mj7haryfw6w8h5tkcuhd99m8"}],"metadata":"ipfs://CID","proposer":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","status":"PROPOSAL_STATUS_VOTING_PERIOD","submit_time":"2023-02-20T11:11:52.776167376Z","summary":"test proposal","title":"test proposal","total_deposit":[{"amount":"10010000","denom":"stake"}],"voting_end_time":"2023-02-22T11:12:07.801161984Z","voting_start_time":"2023-02-20T11:12:07.801161984Z"}],"starting_proposal_id":"2","tally_params":null,"votes":[],"voting_params":null},"group":{"group_members":[],"group_policies":[],"group_policy_seq":"0","group_seq":"0","groups":[],"proposal_seq":"0","proposals":[],"votes":[]},"mint":{"minter":{"annual_provisions":"1300010905.175073197786747950","inflation":"0.130000967926594565"},"params":{"blocks_per_year":"6311520","goal_bonded":"0.670000000000000000","inflation_max":"0.200000000000000000","inflation_min":"0.070000000000000000","inflation_rate_change":"0.130000000000000000","mint_denom":"stake"}},"nft":{"classes":[],"entries":[]},"params":null,"slashing":{"missed_blocks":[{"address":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","missed_blocks":[]}],"params":{"downtime_jail_duration":"600s","min_signed_per_window":"0.500000000000000000","signed_blocks_window":"100","slash_fraction_double_sign":"0.050000000000000000","slash_fraction_downtime":"0.010000000000000000"},"signing_infos":[{"address":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","validator_signing_info":{"address":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","index_offset":"46","jailed_until":"1970-01-01T00:00:00Z","missed_blocks_counter":"0","start_height":"0","tombstoned":false}}]},"staking":{"delegations":[{"delegator_address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","shares":"1000000.000000000000000000","validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"exported":true,"last_total_power":"1","last_validator_powers":[{"address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp","power":"1"}],"params":{"bond_denom":"stake","historical_entries":10000,"max_entries":7,"max_validators":100,"min_commission_rate":"0.000000000000000000","min_delegation":"1","flexible_period_type":0,"periods":[{"period_type":0,"duration":"0s","rewards_multiplier":"1"},{"period_type":1,"duration":"2592000s","rewards_multiplier":"1.051"},{"period_type":2,"duration":"31536000s","rewards_multiplier":"1.16"},{"period_type":3,"duration":"46656000s","rewards_multiplier":"1.34"}],"token_types":[{"token_type":0,"rewards_multiplier":"0.5"},{"token_type":1,"rewards_multiplier":"1"}],"unbonding_time":"1814400s"},"redelegations":[],"unbonding_delegations":[],"validators":[{"commission":{"commission_rates":{"max_change_rate":"0.010000000000000000","max_rate":"0.200000000000000000","rate":"0.100000000000000000"},"update_time":"2023-02-20T11:08:30.588307671Z"},"consensus_pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"tMZonPQYoooG/xbFVhHg95pTLxx7aO43/qgHFxDagWM="},"delegator_shares":"1000000.000000000000000000","description":{"details":"","identity":"","moniker":"test","security_contact":"","website":""},"jailed":false,"min_self_delegation":"1","operator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp","status":"BOND_STATUS_BONDED","tokens":"1000000","unbonding_height":"0","unbonding_ids":[],"unbonding_on_hold_ref_count":"0","unbonding_time":"1970-01-01T00:00:00Z"}]},"upgrade":{},"vesting":{}},"consensus":{"validators":[{"address":"D336F99AA5CF77503CDD8366E68A0DFE89B4124B","pub_key":{"type":"tendermint/PubKeyEd25519","value":"tMZonPQYoooG/xbFVhHg95pTLxx7aO43/qgHFxDagWM="},"power":"1","name":"test"}],"params":{"block":{"max_bytes":"22020096","max_gas":"-1"},"evidence":{"max_age_num_blocks":"100000","max_age_duration":"172800000000000","max_bytes":"1048576"},"validator":{"pub_key_types":["ed25519"]},"version":{"app":"0"},"abci":{"vote_extensions_enable_height":"0"}}}} \ No newline at end of file +{"app_name":"\u003cappd\u003e","app_version":"","genesis_time":"2023-02-20T11:08:30.588307671Z","chain_id":"demo","initial_height":48,"app_hash":"","app_state":{"auth":{"accounts":[{"@type":"/cosmos.auth.v1beta1.BaseAccount","account_number":"1","address":"cosmos1qmkksxlxqdslq6kkca25m4jn344nx29lytq8f9","pub_key":null,"sequence":"0"},{"@type":"/cosmos.auth.v1beta1.BaseAccount","account_number":"8","address":"cosmos1pnt5523etwtzv6mj7haryfw6w8h5tkcuhd99m8","pub_key":null,"sequence":"0"},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"4","address":"cosmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu34mf0eh","pub_key":null,"sequence":"0"},"name":"bonded_tokens_pool","permissions":["burner","staking"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"5","address":"cosmos1tygms3xhhs3yv487phx3dw4a95jn7t7lpm470r","pub_key":null,"sequence":"0"},"name":"not_bonded_tokens_pool","permissions":["burner","staking"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"6","address":"cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn","pub_key":null,"sequence":"0"},"name":"gov","permissions":["burner"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"3","address":"cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl","pub_key":null,"sequence":"0"},"name":"distribution","permissions":[]},{"@type":"/cosmos.auth.v1beta1.BaseAccount","account_number":"0","address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","pub_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A3uyZdXedyvYx9VCL6xRjkxtcFpgxjhXFIz9b2mWz+aV"},"sequence":"4"},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"7","address":"cosmos1m3h30wlvsf8llruxtpukdvsy0km2kum8g38c8q","pub_key":null,"sequence":"0"},"name":"mint","permissions":["minter"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"2","address":"cosmos17xpfvakm2amg962yls6f84z3kell8c5lserqta","pub_key":null,"sequence":"0"},"name":"fee_collector","permissions":[]}],"params":{"max_memo_characters":"256","sig_verify_cost_ed25519":"590","sig_verify_cost_secp256k1":"1000","tx_sig_limit":"7","tx_size_cost_per_byte":"10"}},"authz":{"authorization":[]},"bank":{"balances":[{"address":"cosmos1qmkksxlxqdslq6kkca25m4jn344nx29lytq8f9","coins":[{"amount":"5000000000","denom":"stake"}]},{"address":"cosmos1pnt5523etwtzv6mj7haryfw6w8h5tkcuhd99m8","coins":[{"amount":"1000","denom":"stake"}]},{"address":"cosmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu34mf0eh","coins":[{"amount":"1000000","denom":"stake"}]},{"address":"cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn","coins":[{"amount":"10010000","denom":"stake"}]},{"address":"cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl","coins":[{"amount":"9635","denom":"stake"}]},{"address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","coins":[{"amount":"4988989000","denom":"stake"}]}],"denom_metadata":[],"params":{"default_send_enabled":true,"send_enabled":[]},"send_enabled":[],"supply":[{"amount":"10000009635","denom":"stake"}]},"consensus":null,"crisis":{"constant_fee":{"amount":"1000","denom":"stake"}},"distribution":{"delegator_starting_infos":[{"delegator_address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","starting_info":{"height":"0","previous_period":"1","stake":"1000000.000000000000000000"},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"delegator_withdraw_infos":[],"fee_pool":{"ubi":[{"amount":"192.700000000000000000","denom":"stake"}]},"outstanding_rewards":[{"outstanding_rewards":[{"amount":"9442.300000000000000000","denom":"stake"}],"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"params":{"base_proposer_reward":"0.000000000000000000","bonus_proposer_reward":"0.000000000000000000","ubi":"0.020000000000000000","withdraw_addr_enabled":true},"previous_proposer":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","validator_accumulated_commissions":[{"accumulated":{"commission":[{"amount":"944.230000000000000000","denom":"stake"}]},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"validator_current_rewards":[{"rewards":{"period":"2","rewards":[{"amount":"8498.070000000000000000","denom":"stake"}]},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"validator_historical_rewards":[{"period":"1","rewards":{"cumulative_reward_ratio":[],"reference_count":2},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"validator_slash_events":[]},"evidence":{"evidence":[]},"feegrant":{"allowances":[]},"genutil":{"gen_txs":[]},"gov":{"deposit_params":null,"deposits":[{"amount":[{"amount":"10010000","denom":"stake"}],"depositor":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","proposal_id":"1"}],"params":{"expedited_min_deposit":[{"amount":"50000000","denom":"stake"}],"expedited_threshold":"0.667000000000000000","expedited_voting_period":"86400s","max_deposit_period":"172800s","min_deposit":[{"amount":"10000000","denom":"stake"}],"min_initial_deposit_ratio":"0.000000000000000000","proposal_cancel_dest":"","proposal_cancel_ratio":"0.500000000000000000","quorum":"0.334000000000000000","threshold":"0.500000000000000000","veto_threshold":"0.334000000000000000","voting_period":"172800s"},"proposals":[{"deposit_end_time":"2023-02-22T11:11:52.776167376Z","expedited":false,"final_tally_result":{"abstain_count":"0","no_count":"0","no_with_veto_count":"0","yes_count":"0"},"id":"1","messages":[{"@type":"/cosmos.distribution.v1beta1.MsgCommunityPoolSpend","amount":[],"authority":"cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn","recipient":"cosmos1pnt5523etwtzv6mj7haryfw6w8h5tkcuhd99m8"}],"metadata":"ipfs://CID","proposer":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","status":"PROPOSAL_STATUS_VOTING_PERIOD","submit_time":"2023-02-20T11:11:52.776167376Z","summary":"test proposal","title":"test proposal","total_deposit":[{"amount":"10010000","denom":"stake"}],"voting_end_time":"2023-02-22T11:12:07.801161984Z","voting_start_time":"2023-02-20T11:12:07.801161984Z"}],"starting_proposal_id":"2","tally_params":null,"votes":[],"voting_params":null},"group":{"group_members":[],"group_policies":[],"group_policy_seq":"0","group_seq":"0","groups":[],"proposal_seq":"0","proposals":[],"votes":[]},"mint":{"minter":{"annual_provisions":"1300010905.175073197786747950","inflation":"0.130000967926594565"},"params":{"blocks_per_year":"6311520","goal_bonded":"0.670000000000000000","inflation_max":"0.200000000000000000","inflation_min":"0.070000000000000000","inflation_rate_change":"0.130000000000000000","mint_denom":"stake"}},"nft":{"classes":[],"entries":[]},"params":null,"slashing":{"missed_blocks":[{"address":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","missed_blocks":[]}],"params":{"downtime_jail_duration":"600s","min_signed_per_window":"0.500000000000000000","signed_blocks_window":"100","slash_fraction_double_sign":"0.050000000000000000","slash_fraction_downtime":"0.010000000000000000"},"signing_infos":[{"address":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","validator_signing_info":{"address":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","index_offset":"46","jailed_until":"1970-01-01T00:00:00Z","missed_blocks_counter":"0","start_height":"0","tombstoned":false}}]},"staking":{"delegations":[{"delegator_address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","shares":"1000000.000000000000000000","validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"exported":true,"last_total_power":"1","last_validator_powers":[{"address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp","power":"1"}],"params":{"bond_denom":"stake","historical_entries":10000,"max_entries":7,"max_validators":100,"min_commission_rate":"0.000000000000000000","min_delegation":"1","flexible_period_type":0,"periods":[{"period_type":0,"duration":"0s","rewards_multiplier":"1"},{"period_type":1,"duration":"2592000s","rewards_multiplier":"1.051"},{"period_type":2,"duration":"31536000s","rewards_multiplier":"1.16"},{"period_type":3,"duration":"46656000s","rewards_multiplier":"1.34"}],"locked_token_type":0,"token_types":[{"token_type":0,"rewards_multiplier":"0.5"},{"token_type":1,"rewards_multiplier":"1"}],"unbonding_time":"1814400s"},"redelegations":[],"unbonding_delegations":[],"validators":[{"commission":{"commission_rates":{"max_change_rate":"0.010000000000000000","max_rate":"0.200000000000000000","rate":"0.100000000000000000"},"update_time":"2023-02-20T11:08:30.588307671Z"},"consensus_pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"tMZonPQYoooG/xbFVhHg95pTLxx7aO43/qgHFxDagWM="},"delegator_shares":"1000000.000000000000000000","description":{"details":"","identity":"","moniker":"test","security_contact":"","website":""},"jailed":false,"min_self_delegation":"1","operator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp","status":"BOND_STATUS_BONDED","tokens":"1000000","unbonding_height":"0","unbonding_ids":[],"unbonding_on_hold_ref_count":"0","unbonding_time":"1970-01-01T00:00:00Z"}]},"upgrade":{},"vesting":{}},"consensus":{"validators":[{"address":"D336F99AA5CF77503CDD8366E68A0DFE89B4124B","pub_key":{"type":"tendermint/PubKeyEd25519","value":"tMZonPQYoooG/xbFVhHg95pTLxx7aO43/qgHFxDagWM="},"power":"1","name":"test"}],"params":{"block":{"max_bytes":"22020096","max_gas":"-1"},"evidence":{"max_age_num_blocks":"100000","max_age_duration":"172800000000000","max_bytes":"1048576"},"validator":{"pub_key_types":["ed25519"]},"version":{"app":"0"},"abci":{"vote_extensions_enable_height":"0"}}}} \ No newline at end of file diff --git a/x/genutil/types/testdata/cmt_genesis.json b/x/genutil/types/testdata/cmt_genesis.json index aba42921170a..f1e669628e55 100644 --- a/x/genutil/types/testdata/cmt_genesis.json +++ b/x/genutil/types/testdata/cmt_genesis.json @@ -1 +1 @@ -{"app_hash":"","app_state":{"auth":{"accounts":[{"@type":"/cosmos.auth.v1beta1.BaseAccount","account_number":"1","address":"cosmos1qmkksxlxqdslq6kkca25m4jn344nx29lytq8f9","pub_key":null,"sequence":"0"},{"@type":"/cosmos.auth.v1beta1.BaseAccount","account_number":"8","address":"cosmos1pnt5523etwtzv6mj7haryfw6w8h5tkcuhd99m8","pub_key":null,"sequence":"0"},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"4","address":"cosmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu34mf0eh","pub_key":null,"sequence":"0"},"name":"bonded_tokens_pool","permissions":["burner","staking"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"5","address":"cosmos1tygms3xhhs3yv487phx3dw4a95jn7t7lpm470r","pub_key":null,"sequence":"0"},"name":"not_bonded_tokens_pool","permissions":["burner","staking"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"6","address":"cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn","pub_key":null,"sequence":"0"},"name":"gov","permissions":["burner"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"3","address":"cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl","pub_key":null,"sequence":"0"},"name":"distribution","permissions":[]},{"@type":"/cosmos.auth.v1beta1.BaseAccount","account_number":"0","address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","pub_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A3uyZdXedyvYx9VCL6xRjkxtcFpgxjhXFIz9b2mWz+aV"},"sequence":"4"},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"7","address":"cosmos1m3h30wlvsf8llruxtpukdvsy0km2kum8g38c8q","pub_key":null,"sequence":"0"},"name":"mint","permissions":["minter"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"2","address":"cosmos17xpfvakm2amg962yls6f84z3kell8c5lserqta","pub_key":null,"sequence":"0"},"name":"fee_collector","permissions":[]}],"params":{"max_memo_characters":"256","sig_verify_cost_ed25519":"590","sig_verify_cost_secp256k1":"1000","tx_sig_limit":"7","tx_size_cost_per_byte":"10"}},"authz":{"authorization":[]},"bank":{"balances":[{"address":"cosmos1qmkksxlxqdslq6kkca25m4jn344nx29lytq8f9","coins":[{"amount":"5000000000","denom":"stake"}]},{"address":"cosmos1pnt5523etwtzv6mj7haryfw6w8h5tkcuhd99m8","coins":[{"amount":"1000","denom":"stake"}]},{"address":"cosmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu34mf0eh","coins":[{"amount":"1000000","denom":"stake"}]},{"address":"cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn","coins":[{"amount":"10010000","denom":"stake"}]},{"address":"cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl","coins":[{"amount":"9635","denom":"stake"}]},{"address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","coins":[{"amount":"4988989000","denom":"stake"}]}],"denom_metadata":[],"params":{"default_send_enabled":true,"send_enabled":[]},"send_enabled":[],"supply":[{"amount":"10000009635","denom":"stake"}]},"consensus":null,"crisis":{"constant_fee":{"amount":"1000","denom":"stake"}},"distribution":{"delegator_starting_infos":[{"delegator_address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","starting_info":{"height":"0","previous_period":"1","stake":"1000000.000000000000000000"},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"delegator_withdraw_infos":[],"fee_pool":{"ubi":[{"amount":"192.700000000000000000","denom":"stake"}]},"outstanding_rewards":[{"outstanding_rewards":[{"amount":"9442.300000000000000000","denom":"stake"}],"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"params":{"base_proposer_reward":"0.000000000000000000","bonus_proposer_reward":"0.000000000000000000","ubi":"0.020000000000000000","withdraw_addr_enabled":true},"previous_proposer":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","validator_accumulated_commissions":[{"accumulated":{"commission":[{"amount":"944.230000000000000000","denom":"stake"}]},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"validator_current_rewards":[{"rewards":{"period":"2","rewards":[{"amount":"8498.070000000000000000","denom":"stake"}]},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"validator_historical_rewards":[{"period":"1","rewards":{"cumulative_reward_ratio":[],"reference_count":2},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"validator_slash_events":[]},"evidence":{"evidence":[]},"feegrant":{"allowances":[]},"genutil":{"gen_txs":[]},"gov":{"deposit_params":null,"deposits":[{"amount":[{"amount":"10010000","denom":"stake"}],"depositor":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","proposal_id":"1"}],"params":{"expedited_min_deposit":[{"amount":"50000000","denom":"stake"}],"expedited_threshold":"0.667000000000000000","expedited_voting_period":"86400s","max_deposit_period":"172800s","min_deposit":[{"amount":"10000000","denom":"stake"}],"min_initial_deposit_ratio":"0.000000000000000000","proposal_cancel_dest":"","proposal_cancel_ratio":"0.500000000000000000","quorum":"0.334000000000000000","threshold":"0.500000000000000000","veto_threshold":"0.334000000000000000","voting_period":"172800s"},"proposals":[{"deposit_end_time":"2023-02-22T11:11:52.776167376Z","expedited":false,"final_tally_result":{"abstain_count":"0","no_count":"0","no_with_veto_count":"0","yes_count":"0"},"id":"1","messages":[{"@type":"/cosmos.distribution.v1beta1.MsgCommunityPoolSpend","amount":[],"authority":"cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn","recipient":"cosmos1pnt5523etwtzv6mj7haryfw6w8h5tkcuhd99m8"}],"metadata":"ipfs://CID","proposer":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","status":"PROPOSAL_STATUS_VOTING_PERIOD","submit_time":"2023-02-20T11:11:52.776167376Z","summary":"test proposal","title":"test proposal","total_deposit":[{"amount":"10010000","denom":"stake"}],"voting_end_time":"2023-02-22T11:12:07.801161984Z","voting_start_time":"2023-02-20T11:12:07.801161984Z"}],"starting_proposal_id":"2","tally_params":null,"votes":[],"voting_params":null},"group":{"group_members":[],"group_policies":[],"group_policy_seq":"0","group_seq":"0","groups":[],"proposal_seq":"0","proposals":[],"votes":[]},"mint":{"minter":{"annual_provisions":"1300010905.175073197786747950","inflation":"0.130000967926594565"},"params":{"blocks_per_year":"6311520","goal_bonded":"0.670000000000000000","inflation_max":"0.200000000000000000","inflation_min":"0.070000000000000000","inflation_rate_change":"0.130000000000000000","mint_denom":"stake"}},"nft":{"classes":[],"entries":[]},"params":null,"slashing":{"missed_blocks":[{"address":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","missed_blocks":[]}],"params":{"downtime_jail_duration":"600s","min_signed_per_window":"0.500000000000000000","signed_blocks_window":"100","slash_fraction_double_sign":"0.050000000000000000","slash_fraction_downtime":"0.010000000000000000"},"signing_infos":[{"address":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","validator_signing_info":{"address":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","index_offset":"46","jailed_until":"1970-01-01T00:00:00Z","missed_blocks_counter":"0","start_height":"0","tombstoned":false}}]},"staking":{"delegations":[{"delegator_address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","shares":"1000000.000000000000000000","validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"exported":true,"last_total_power":"1","last_validator_powers":[{"address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp","power":"1"}],"params":{"bond_denom":"stake","historical_entries":10000,"max_entries":7,"max_validators":100,"min_commission_rate":"0.000000000000000000","min_delegation":"1","flexible_period_type":0,"periods":[{"period_type":0,"duration":"0s","rewards_multiplier":"1"},{"period_type":1,"duration":"2592000s","rewards_multiplier":"1.051"},{"period_type":2,"duration":"31536000s","rewards_multiplier":"1.16"},{"period_type":3,"duration":"46656000s","rewards_multiplier":"1.34"}],"token_types":[{"token_type":0,"rewards_multiplier":"0.5"},{"token_type":1,"rewards_multiplier":"1"}],"unbonding_time":"1814400s"},"redelegations":[],"unbonding_delegations":[],"validators":[{"commission":{"commission_rates":{"max_change_rate":"0.010000000000000000","max_rate":"0.200000000000000000","rate":"0.100000000000000000"},"update_time":"2023-02-20T11:08:30.588307671Z"},"consensus_pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"tMZonPQYoooG/xbFVhHg95pTLxx7aO43/qgHFxDagWM="},"delegator_shares":"1000000.000000000000000000","description":{"details":"","identity":"","moniker":"test","security_contact":"","website":""},"jailed":false,"min_self_delegation":"1","operator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp","status":"BOND_STATUS_BONDED","tokens":"1000000","unbonding_height":"0","unbonding_ids":[],"unbonding_on_hold_ref_count":"0","unbonding_time":"1970-01-01T00:00:00Z"}]},"upgrade":{},"vesting":{}},"chain_id":"demo","consensus_params":{"block":{"max_bytes":"22020096","max_gas":"-1"},"evidence":{"max_age_duration":"172800000000000","max_age_num_blocks":"100000","max_bytes":"1048576"},"validator":{"pub_key_types":["ed25519"]},"version":{"app":"0"}},"genesis_time":"2023-02-20T11:08:30.588307671Z","initial_height":"48","validators":[{"address":"D336F99AA5CF77503CDD8366E68A0DFE89B4124B","name":"test","power":"1","pub_key":{"type":"tendermint/PubKeyEd25519","value":"tMZonPQYoooG/xbFVhHg95pTLxx7aO43/qgHFxDagWM="}}]} \ No newline at end of file +{"app_hash":"","app_state":{"auth":{"accounts":[{"@type":"/cosmos.auth.v1beta1.BaseAccount","account_number":"1","address":"cosmos1qmkksxlxqdslq6kkca25m4jn344nx29lytq8f9","pub_key":null,"sequence":"0"},{"@type":"/cosmos.auth.v1beta1.BaseAccount","account_number":"8","address":"cosmos1pnt5523etwtzv6mj7haryfw6w8h5tkcuhd99m8","pub_key":null,"sequence":"0"},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"4","address":"cosmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu34mf0eh","pub_key":null,"sequence":"0"},"name":"bonded_tokens_pool","permissions":["burner","staking"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"5","address":"cosmos1tygms3xhhs3yv487phx3dw4a95jn7t7lpm470r","pub_key":null,"sequence":"0"},"name":"not_bonded_tokens_pool","permissions":["burner","staking"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"6","address":"cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn","pub_key":null,"sequence":"0"},"name":"gov","permissions":["burner"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"3","address":"cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl","pub_key":null,"sequence":"0"},"name":"distribution","permissions":[]},{"@type":"/cosmos.auth.v1beta1.BaseAccount","account_number":"0","address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","pub_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A3uyZdXedyvYx9VCL6xRjkxtcFpgxjhXFIz9b2mWz+aV"},"sequence":"4"},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"7","address":"cosmos1m3h30wlvsf8llruxtpukdvsy0km2kum8g38c8q","pub_key":null,"sequence":"0"},"name":"mint","permissions":["minter"]},{"@type":"/cosmos.auth.v1beta1.ModuleAccount","base_account":{"account_number":"2","address":"cosmos17xpfvakm2amg962yls6f84z3kell8c5lserqta","pub_key":null,"sequence":"0"},"name":"fee_collector","permissions":[]}],"params":{"max_memo_characters":"256","sig_verify_cost_ed25519":"590","sig_verify_cost_secp256k1":"1000","tx_sig_limit":"7","tx_size_cost_per_byte":"10"}},"authz":{"authorization":[]},"bank":{"balances":[{"address":"cosmos1qmkksxlxqdslq6kkca25m4jn344nx29lytq8f9","coins":[{"amount":"5000000000","denom":"stake"}]},{"address":"cosmos1pnt5523etwtzv6mj7haryfw6w8h5tkcuhd99m8","coins":[{"amount":"1000","denom":"stake"}]},{"address":"cosmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu34mf0eh","coins":[{"amount":"1000000","denom":"stake"}]},{"address":"cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn","coins":[{"amount":"10010000","denom":"stake"}]},{"address":"cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl","coins":[{"amount":"9635","denom":"stake"}]},{"address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","coins":[{"amount":"4988989000","denom":"stake"}]}],"denom_metadata":[],"params":{"default_send_enabled":true,"send_enabled":[]},"send_enabled":[],"supply":[{"amount":"10000009635","denom":"stake"}]},"consensus":null,"crisis":{"constant_fee":{"amount":"1000","denom":"stake"}},"distribution":{"delegator_starting_infos":[{"delegator_address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","starting_info":{"height":"0","previous_period":"1","stake":"1000000.000000000000000000"},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"delegator_withdraw_infos":[],"fee_pool":{"ubi":[{"amount":"192.700000000000000000","denom":"stake"}]},"outstanding_rewards":[{"outstanding_rewards":[{"amount":"9442.300000000000000000","denom":"stake"}],"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"params":{"base_proposer_reward":"0.000000000000000000","bonus_proposer_reward":"0.000000000000000000","ubi":"0.020000000000000000","withdraw_addr_enabled":true},"previous_proposer":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","validator_accumulated_commissions":[{"accumulated":{"commission":[{"amount":"944.230000000000000000","denom":"stake"}]},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"validator_current_rewards":[{"rewards":{"period":"2","rewards":[{"amount":"8498.070000000000000000","denom":"stake"}]},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"validator_historical_rewards":[{"period":"1","rewards":{"cumulative_reward_ratio":[],"reference_count":2},"validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"validator_slash_events":[]},"evidence":{"evidence":[]},"feegrant":{"allowances":[]},"genutil":{"gen_txs":[]},"gov":{"deposit_params":null,"deposits":[{"amount":[{"amount":"10010000","denom":"stake"}],"depositor":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","proposal_id":"1"}],"params":{"expedited_min_deposit":[{"amount":"50000000","denom":"stake"}],"expedited_threshold":"0.667000000000000000","expedited_voting_period":"86400s","max_deposit_period":"172800s","min_deposit":[{"amount":"10000000","denom":"stake"}],"min_initial_deposit_ratio":"0.000000000000000000","proposal_cancel_dest":"","proposal_cancel_ratio":"0.500000000000000000","quorum":"0.334000000000000000","threshold":"0.500000000000000000","veto_threshold":"0.334000000000000000","voting_period":"172800s"},"proposals":[{"deposit_end_time":"2023-02-22T11:11:52.776167376Z","expedited":false,"final_tally_result":{"abstain_count":"0","no_count":"0","no_with_veto_count":"0","yes_count":"0"},"id":"1","messages":[{"@type":"/cosmos.distribution.v1beta1.MsgCommunityPoolSpend","amount":[],"authority":"cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn","recipient":"cosmos1pnt5523etwtzv6mj7haryfw6w8h5tkcuhd99m8"}],"metadata":"ipfs://CID","proposer":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","status":"PROPOSAL_STATUS_VOTING_PERIOD","submit_time":"2023-02-20T11:11:52.776167376Z","summary":"test proposal","title":"test proposal","total_deposit":[{"amount":"10010000","denom":"stake"}],"voting_end_time":"2023-02-22T11:12:07.801161984Z","voting_start_time":"2023-02-20T11:12:07.801161984Z"}],"starting_proposal_id":"2","tally_params":null,"votes":[],"voting_params":null},"group":{"group_members":[],"group_policies":[],"group_policy_seq":"0","group_seq":"0","groups":[],"proposal_seq":"0","proposals":[],"votes":[]},"mint":{"minter":{"annual_provisions":"1300010905.175073197786747950","inflation":"0.130000967926594565"},"params":{"blocks_per_year":"6311520","goal_bonded":"0.670000000000000000","inflation_max":"0.200000000000000000","inflation_min":"0.070000000000000000","inflation_rate_change":"0.130000000000000000","mint_denom":"stake"}},"nft":{"classes":[],"entries":[]},"params":null,"slashing":{"missed_blocks":[{"address":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","missed_blocks":[]}],"params":{"downtime_jail_duration":"600s","min_signed_per_window":"0.500000000000000000","signed_blocks_window":"100","slash_fraction_double_sign":"0.050000000000000000","slash_fraction_downtime":"0.010000000000000000"},"signing_infos":[{"address":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","validator_signing_info":{"address":"cosmosvalcons16vm0nx49eam4q0xasdnwdzsdl6ymgyjt757sgr","index_offset":"46","jailed_until":"1970-01-01T00:00:00Z","missed_blocks_counter":"0","start_height":"0","tombstoned":false}}]},"staking":{"delegations":[{"delegator_address":"cosmos15jenkldw6348lpgdev3vjzw90zzknxa9a3vg0j","shares":"1000000.000000000000000000","validator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp"}],"exported":true,"last_total_power":"1","last_validator_powers":[{"address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp","power":"1"}],"params":{"bond_denom":"stake","historical_entries":10000,"max_entries":7,"max_validators":100,"min_commission_rate":"0.000000000000000000","min_delegation":"1","flexible_period_type":0,"periods":[{"period_type":0,"duration":"0s","rewards_multiplier":"1"},{"period_type":1,"duration":"2592000s","rewards_multiplier":"1.051"},{"period_type":2,"duration":"31536000s","rewards_multiplier":"1.16"},{"period_type":3,"duration":"46656000s","rewards_multiplier":"1.34"}],"locked_token_type": 0,"token_types":[{"token_type":0,"rewards_multiplier":"0.5"},{"token_type":1,"rewards_multiplier":"1"}],"unbonding_time":"1814400s"},"redelegations":[],"unbonding_delegations":[],"validators":[{"commission":{"commission_rates":{"max_change_rate":"0.010000000000000000","max_rate":"0.200000000000000000","rate":"0.100000000000000000"},"update_time":"2023-02-20T11:08:30.588307671Z"},"consensus_pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"tMZonPQYoooG/xbFVhHg95pTLxx7aO43/qgHFxDagWM="},"delegator_shares":"1000000.000000000000000000","description":{"details":"","identity":"","moniker":"test","security_contact":"","website":""},"jailed":false,"min_self_delegation":"1","operator_address":"cosmosvaloper15jenkldw6348lpgdev3vjzw90zzknxa9c9carp","status":"BOND_STATUS_BONDED","tokens":"1000000","unbonding_height":"0","unbonding_ids":[],"unbonding_on_hold_ref_count":"0","unbonding_time":"1970-01-01T00:00:00Z"}]},"upgrade":{},"vesting":{}},"chain_id":"demo","consensus_params":{"block":{"max_bytes":"22020096","max_gas":"-1"},"evidence":{"max_age_duration":"172800000000000","max_age_num_blocks":"100000","max_bytes":"1048576"},"validator":{"pub_key_types":["ed25519"]},"version":{"app":"0"}},"genesis_time":"2023-02-20T11:08:30.588307671Z","initial_height":"48","validators":[{"address":"D336F99AA5CF77503CDD8366E68A0DFE89B4124B","name":"test","power":"1","pub_key":{"type":"tendermint/PubKeyEd25519","value":"tMZonPQYoooG/xbFVhHg95pTLxx7aO43/qgHFxDagWM="}}]} \ No newline at end of file diff --git a/x/genutil/types/testdata/parse_chain_id.json b/x/genutil/types/testdata/parse_chain_id.json index 648337d609b9..23bf70e0d728 100644 --- a/x/genutil/types/testdata/parse_chain_id.json +++ b/x/genutil/types/testdata/parse_chain_id.json @@ -1 +1 @@ -{"genesis_time":"2021-11-08T01:00:00Z","chain_id":"cronosmainnet_25-1","initial_height":"1","consensus_params":{"block":{"max_bytes":"1048576","max_gas":"10000000","time_iota_ms":"1000"},"evidence":{"max_age_num_blocks":"403200","max_age_duration":"2419200000000000","max_bytes":"150000"},"validator":{"pub_key_types":["ed25519"]},"version":{}},"app_hash":"","app_state":{"auth":{"params":{"max_memo_characters":"256","tx_sig_limit":"7","tx_size_cost_per_byte":"10","sig_verify_cost_ed25519":"590","sig_verify_cost_secp256k1":"1000"},"accounts":[{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc1q7q2mmmcx2nlw6ptw4a9a3danlnu8z6tq32gv9","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc1s8372smy0erx5k4usf84s39tpgy3kmrvjwdejw","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc1efw0q0ggzxtmuf80wpcgr77h70c3avpdp9nq5k","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc1f7r687vm68jc6qw7rsut07puh9n7s9kzdj0zph","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc1aaxs058pksrq8cx3k0nrxv60p2a9c7nq527949","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc17s50usvlr5934tr2fxsesr89k4twtm25vjl6zs","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc1tasmcx3rqpglmsafdt7vylnsdkc3yjlzfv3u63","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc17m20ajc6d7mu9j34q956q5x5sw7c0wyrem3s7n","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"}]},"authz":{"authorization":[]},"bank":{"params":{"send_enabled":[{"denom":"stake","enabled":true},{"denom":"basecro","enabled":false}],"default_send_enabled":true},"balances":[{"address":"crc1q7q2mmmcx2nlw6ptw4a9a3danlnu8z6tq32gv9","coins":[{"denom":"stake","amount":"10000000000"}]},{"address":"crc1f7r687vm68jc6qw7rsut07puh9n7s9kzdj0zph","coins":[{"denom":"stake","amount":"10000000000"}]},{"address":"crc1tasmcx3rqpglmsafdt7vylnsdkc3yjlzfv3u63","coins":[{"denom":"stake","amount":"600000000000"}]},{"address":"crc1s8372smy0erx5k4usf84s39tpgy3kmrvjwdejw","coins":[{"denom":"stake","amount":"10000000000"}]},{"address":"crc1efw0q0ggzxtmuf80wpcgr77h70c3avpdp9nq5k","coins":[{"denom":"stake","amount":"10000000000"}]},{"address":"crc1aaxs058pksrq8cx3k0nrxv60p2a9c7nq527949","coins":[{"denom":"stake","amount":"10000"}]},{"address":"crc17s50usvlr5934tr2fxsesr89k4twtm25vjl6zs","coins":[{"denom":"stake","amount":"1000000000000000"}]},{"address":"crc17m20ajc6d7mu9j34q956q5x5sw7c0wyrem3s7n","coins":[{"denom":"stake","amount":"50000000"}]}],"supply":[{"denom":"stake","amount":"1000640050010000"}],"denom_metadata":[]},"capability":{"index":"1","owners":[]},"crisis":{"constant_fee":{"denom":"stake","amount":"1000"}},"cronos":{"params":{"ibc_cro_denom":"ibc/6411AE2ADA1E73DB59DB151A8988F9B7D5E7E233D8414DB6817F8F1A01611F86","ibc_timeout":"86400000000000","cronos_admin":"crc1tasmcx3rqpglmsafdt7vylnsdkc3yjlzfv3u63","enable_auto_deployment":false},"external_contracts":[],"auto_contracts":[]},"distribution":{"params":{"ubi":"0","base_proposer_reward":"0","bonus_proposer_reward":"0","withdraw_addr_enabled":true},"fee_pool":{"ubi":[]},"delegator_withdraw_infos":[],"previous_proposer":"","outstanding_rewards":[],"validator_accumulated_commissions":[],"validator_historical_rewards":[],"validator_current_rewards":[],"delegator_starting_infos":[],"validator_slash_events":[]},"evidence":{"evidence":[]},"evm":{"accounts":[],"params":{"evm_denom":"basecro","enable_create":true,"enable_call":true,"extra_eips":["2929","2200","1884","1344"],"chain_config":{"homestead_block":"0","dao_fork_block":"0","dao_fork_support":true,"eip150_block":"0","eip150_hash":"0x0000000000000000000000000000000000000000000000000000000000000000","eip155_block":"0","eip158_block":"0","byzantium_block":"0","constantinople_block":"0","petersburg_block":"0","istanbul_block":"0","muir_glacier_block":"0","berlin_block":"0","catalyst_block":null,"london_block":"9223372036854775808"}}},"feegrant":{"allowances":[]},"genutil":{"gen_txs":[{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Pioneer 11","identity":"BB602FB166F21C6E","website":"https://cronos.crypto.org","security_contact":"chain-security@crypto.org","details":""},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"crc1q7q2mmmcx2nlw6ptw4a9a3danlnu8z6tq32gv9","validator_address":"crcvaloper1q7q2mmmcx2nlw6ptw4a9a3danlnu8z6t2wmyjv","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"H8pPcYZvZYd/cI2pKuwcmyst7ZTWm5+QkXXuCoGg1P0="},"value":{"denom":"stake","amount":"10000000000"}}],"memo":"","timeout_height":0,"extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"A/S9y8Yhb2FVVInVKmdPOtgIiKUlm7CE8ixT14GmNYm1"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":0}],"fee":{"amount":[],"gas_limit":200000,"payer":"","granter":""}},"signatures":["35KHI9qc+w+2cOKwlmgXzx1QaPfsK9lxs1Z7INaiNHgHXqRHBUTgl8eKzIHTCnFJU89gpLPEqjUsLDasiHavggA="]},{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Voyager 1","identity":"BB602FB166F21C6E","website":"https://cronos.crypto.org","security_contact":"chain-security@crypto.org","details":""},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"crc1s8372smy0erx5k4usf84s39tpgy3kmrvjwdejw","validator_address":"crcvaloper1s8372smy0erx5k4usf84s39tpgy3kmrvc3u4v8","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"7WE80ID9TzUjIb5Lu9A+ncidsND5+sJAUL6l/NNn4KE="},"value":{"denom":"stake","amount":"10000000000"}}],"memo":"","timeout_height":0,"extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"AxI/HqRT4KKIQhonXtJBe9H/wRq4BkvAZO+4TxSQSjZt"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":0}],"fee":{"amount":[],"gas_limit":200000,"payer":"","granter":""}},"signatures":["TlS6sZBiFNI64lr13x+sr3rrwV+U7icm/V9ksIMEtlhSZlXNJhS+2hQywyGutb6JhA+Ov+Wjln4puHm/MSA3iAE="]},{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Voyager 2","identity":"BB602FB166F21C6E","website":"https://cronos.crypto.org","security_contact":"chain-security@crypto.org","details":""},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"crc1efw0q0ggzxtmuf80wpcgr77h70c3avpdp9nq5k","validator_address":"crcvaloper1efw0q0ggzxtmuf80wpcgr77h70c3avpdt6zv2l","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"TXH4O/GhYibZffcBo5UAERwi9T4VgPAiVCDyl4rdFDE="},"value":{"denom":"stake","amount":"10000000000"}}],"memo":"","timeout_height":0,"extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"AzR06WzkRRXNNE+A4VFG18w170ZicRa/mVsLvBGlBAxz"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":0}],"fee":{"amount":[],"gas_limit":200000,"payer":"","granter":""}},"signatures":["mx//YsSSwUP4G020FLRS0532nP2AylVPqRUXb9EdauM4OWdXF0+Ftx8jbcFinzBw8PHGof3XHcg2yw2P2qNBMAE="]},{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Huygens","identity":"BB602FB166F21C6E","website":"https://cronos.crypto.org","security_contact":"chain-security@crypto.org","details":""},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"crc1f7r687vm68jc6qw7rsut07puh9n7s9kzdj0zph","validator_address":"crcvaloper1f7r687vm68jc6qw7rsut07puh9n7s9kz8d7wl7","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"f826QMXnfR9pEAJDEQR4t228BwQVJ7xe2EwGZN8doQY="},"value":{"denom":"stake","amount":"10000000000"}}],"memo":"","timeout_height":0,"extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"AkDcLOeNUKVUS52hUPx+cSo+ohG6vW3P2RYkbW6dwdMG"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":0}],"fee":{"amount":[],"gas_limit":200000,"payer":"","granter":""}},"signatures":["Rz89OXlfJQgasEeKxsywF/XyiYg7Xdgg/qgwtJcOMuIgJ3hfsE0KrreXlfHOGPIe9nVduffC9W3gKvw2sHe9ugE="]}]},"gov":{"starting_proposal_id":"1","deposits":[],"votes":[],"proposals":[],"deposit_params":{"min_deposit":[{"denom":"basecro","amount":"20000000000000000000000"}],"max_deposit_period":"21600000000000ns"},"voting_params":{"voting_period":"259200000000000ns"},"tally_params":{"quorum":"0.334","threshold":"0.5","veto_threshold":"0.334"}},"ibc":{"client_genesis":{"clients":[],"clients_consensus":[],"clients_metadata":[],"params":{"allowed_clients":["06-solomachine","07-tendermint"]},"create_localhost":false,"next_client_sequence":"0"},"connection_genesis":{"connections":[],"client_connection_paths":[],"next_connection_sequence":"0","params":{"max_expected_time_per_block":"30000000000"}},"channel_genesis":{"channels":[],"acknowledgements":[],"commitments":[],"receipts":[],"send_sequences":[],"recv_sequences":[],"ack_sequences":[],"next_channel_sequence":"0"}},"mint":{"minter":{"inflation":"0.000000000000000000","annual_provisions":"0.000000000000000000"},"params":{"mint_denom":"stake","inflation_rate_change":"0","inflation_max":"0","inflation_min":"0","goal_bonded":"1","blocks_per_year":"6311520"}},"params":null,"slashing":{"params":{"signed_blocks_window":"10000","min_signed_per_window":"0.5","downtime_jail_duration":"28800s","slash_fraction_double_sign":"0","slash_fraction_downtime":"0"},"signing_infos":[],"missed_blocks":[]},"staking":{"params":{"unbonding_time":"2419200000000000ns","max_validators":"50","max_entries":"7","historical_entries":"10000","bond_denom":"stake","min_delegation": "1","flexible_period_type":0,"periods":[{"period_type":0,"duration":"0s","rewards_multiplier":"1"},{"period_type":1,"duration":"2592000s","rewards_multiplier":"1.051"},{"period_type":2,"duration":"31536000s","rewards_multiplier":"1.16"},{"period_type":3,"duration":"46656000s","rewards_multiplier":"1.34"}],"token_types":[{"token_type":0,"rewards_multiplier":"0.5"},{"token_type":1,"rewards_multiplier":"1"}]},"last_total_power":"0","last_validator_powers":[],"validators":[],"delegations":[],"unbonding_delegations":[],"redelegations":[],"exported":false},"transfer":{"port_id":"transfer","denom_traces":[],"params":{"send_enabled":true,"receive_enabled":true}},"upgrade":{},"vesting":{}}} +{"genesis_time":"2021-11-08T01:00:00Z","chain_id":"cronosmainnet_25-1","initial_height":"1","consensus_params":{"block":{"max_bytes":"1048576","max_gas":"10000000","time_iota_ms":"1000"},"evidence":{"max_age_num_blocks":"403200","max_age_duration":"2419200000000000","max_bytes":"150000"},"validator":{"pub_key_types":["ed25519"]},"version":{}},"app_hash":"","app_state":{"auth":{"params":{"max_memo_characters":"256","tx_sig_limit":"7","tx_size_cost_per_byte":"10","sig_verify_cost_ed25519":"590","sig_verify_cost_secp256k1":"1000"},"accounts":[{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc1q7q2mmmcx2nlw6ptw4a9a3danlnu8z6tq32gv9","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc1s8372smy0erx5k4usf84s39tpgy3kmrvjwdejw","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc1efw0q0ggzxtmuf80wpcgr77h70c3avpdp9nq5k","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc1f7r687vm68jc6qw7rsut07puh9n7s9kzdj0zph","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc1aaxs058pksrq8cx3k0nrxv60p2a9c7nq527949","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc17s50usvlr5934tr2fxsesr89k4twtm25vjl6zs","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc1tasmcx3rqpglmsafdt7vylnsdkc3yjlzfv3u63","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"},{"@type":"/ethermint.types.v1.EthAccount","base_account":{"address":"crc17m20ajc6d7mu9j34q956q5x5sw7c0wyrem3s7n","pub_key":null,"account_number":"0","sequence":"0"},"code_hash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"}]},"authz":{"authorization":[]},"bank":{"params":{"send_enabled":[{"denom":"stake","enabled":true},{"denom":"basecro","enabled":false}],"default_send_enabled":true},"balances":[{"address":"crc1q7q2mmmcx2nlw6ptw4a9a3danlnu8z6tq32gv9","coins":[{"denom":"stake","amount":"10000000000"}]},{"address":"crc1f7r687vm68jc6qw7rsut07puh9n7s9kzdj0zph","coins":[{"denom":"stake","amount":"10000000000"}]},{"address":"crc1tasmcx3rqpglmsafdt7vylnsdkc3yjlzfv3u63","coins":[{"denom":"stake","amount":"600000000000"}]},{"address":"crc1s8372smy0erx5k4usf84s39tpgy3kmrvjwdejw","coins":[{"denom":"stake","amount":"10000000000"}]},{"address":"crc1efw0q0ggzxtmuf80wpcgr77h70c3avpdp9nq5k","coins":[{"denom":"stake","amount":"10000000000"}]},{"address":"crc1aaxs058pksrq8cx3k0nrxv60p2a9c7nq527949","coins":[{"denom":"stake","amount":"10000"}]},{"address":"crc17s50usvlr5934tr2fxsesr89k4twtm25vjl6zs","coins":[{"denom":"stake","amount":"1000000000000000"}]},{"address":"crc17m20ajc6d7mu9j34q956q5x5sw7c0wyrem3s7n","coins":[{"denom":"stake","amount":"50000000"}]}],"supply":[{"denom":"stake","amount":"1000640050010000"}],"denom_metadata":[]},"capability":{"index":"1","owners":[]},"crisis":{"constant_fee":{"denom":"stake","amount":"1000"}},"cronos":{"params":{"ibc_cro_denom":"ibc/6411AE2ADA1E73DB59DB151A8988F9B7D5E7E233D8414DB6817F8F1A01611F86","ibc_timeout":"86400000000000","cronos_admin":"crc1tasmcx3rqpglmsafdt7vylnsdkc3yjlzfv3u63","enable_auto_deployment":false},"external_contracts":[],"auto_contracts":[]},"distribution":{"params":{"ubi":"0","base_proposer_reward":"0","bonus_proposer_reward":"0","withdraw_addr_enabled":true},"fee_pool":{"ubi":[]},"delegator_withdraw_infos":[],"previous_proposer":"","outstanding_rewards":[],"validator_accumulated_commissions":[],"validator_historical_rewards":[],"validator_current_rewards":[],"delegator_starting_infos":[],"validator_slash_events":[]},"evidence":{"evidence":[]},"evm":{"accounts":[],"params":{"evm_denom":"basecro","enable_create":true,"enable_call":true,"extra_eips":["2929","2200","1884","1344"],"chain_config":{"homestead_block":"0","dao_fork_block":"0","dao_fork_support":true,"eip150_block":"0","eip150_hash":"0x0000000000000000000000000000000000000000000000000000000000000000","eip155_block":"0","eip158_block":"0","byzantium_block":"0","constantinople_block":"0","petersburg_block":"0","istanbul_block":"0","muir_glacier_block":"0","berlin_block":"0","catalyst_block":null,"london_block":"9223372036854775808"}}},"feegrant":{"allowances":[]},"genutil":{"gen_txs":[{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Pioneer 11","identity":"BB602FB166F21C6E","website":"https://cronos.crypto.org","security_contact":"chain-security@crypto.org","details":""},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"crc1q7q2mmmcx2nlw6ptw4a9a3danlnu8z6tq32gv9","validator_address":"crcvaloper1q7q2mmmcx2nlw6ptw4a9a3danlnu8z6t2wmyjv","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"H8pPcYZvZYd/cI2pKuwcmyst7ZTWm5+QkXXuCoGg1P0="},"value":{"denom":"stake","amount":"10000000000"}}],"memo":"","timeout_height":0,"extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"A/S9y8Yhb2FVVInVKmdPOtgIiKUlm7CE8ixT14GmNYm1"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":0}],"fee":{"amount":[],"gas_limit":200000,"payer":"","granter":""}},"signatures":["35KHI9qc+w+2cOKwlmgXzx1QaPfsK9lxs1Z7INaiNHgHXqRHBUTgl8eKzIHTCnFJU89gpLPEqjUsLDasiHavggA="]},{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Voyager 1","identity":"BB602FB166F21C6E","website":"https://cronos.crypto.org","security_contact":"chain-security@crypto.org","details":""},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"crc1s8372smy0erx5k4usf84s39tpgy3kmrvjwdejw","validator_address":"crcvaloper1s8372smy0erx5k4usf84s39tpgy3kmrvc3u4v8","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"7WE80ID9TzUjIb5Lu9A+ncidsND5+sJAUL6l/NNn4KE="},"value":{"denom":"stake","amount":"10000000000"}}],"memo":"","timeout_height":0,"extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"AxI/HqRT4KKIQhonXtJBe9H/wRq4BkvAZO+4TxSQSjZt"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":0}],"fee":{"amount":[],"gas_limit":200000,"payer":"","granter":""}},"signatures":["TlS6sZBiFNI64lr13x+sr3rrwV+U7icm/V9ksIMEtlhSZlXNJhS+2hQywyGutb6JhA+Ov+Wjln4puHm/MSA3iAE="]},{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Voyager 2","identity":"BB602FB166F21C6E","website":"https://cronos.crypto.org","security_contact":"chain-security@crypto.org","details":""},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"crc1efw0q0ggzxtmuf80wpcgr77h70c3avpdp9nq5k","validator_address":"crcvaloper1efw0q0ggzxtmuf80wpcgr77h70c3avpdt6zv2l","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"TXH4O/GhYibZffcBo5UAERwi9T4VgPAiVCDyl4rdFDE="},"value":{"denom":"stake","amount":"10000000000"}}],"memo":"","timeout_height":0,"extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"AzR06WzkRRXNNE+A4VFG18w170ZicRa/mVsLvBGlBAxz"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":0}],"fee":{"amount":[],"gas_limit":200000,"payer":"","granter":""}},"signatures":["mx//YsSSwUP4G020FLRS0532nP2AylVPqRUXb9EdauM4OWdXF0+Ftx8jbcFinzBw8PHGof3XHcg2yw2P2qNBMAE="]},{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Huygens","identity":"BB602FB166F21C6E","website":"https://cronos.crypto.org","security_contact":"chain-security@crypto.org","details":""},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"crc1f7r687vm68jc6qw7rsut07puh9n7s9kzdj0zph","validator_address":"crcvaloper1f7r687vm68jc6qw7rsut07puh9n7s9kz8d7wl7","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"f826QMXnfR9pEAJDEQR4t228BwQVJ7xe2EwGZN8doQY="},"value":{"denom":"stake","amount":"10000000000"}}],"memo":"","timeout_height":0,"extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"AkDcLOeNUKVUS52hUPx+cSo+ohG6vW3P2RYkbW6dwdMG"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":0}],"fee":{"amount":[],"gas_limit":200000,"payer":"","granter":""}},"signatures":["Rz89OXlfJQgasEeKxsywF/XyiYg7Xdgg/qgwtJcOMuIgJ3hfsE0KrreXlfHOGPIe9nVduffC9W3gKvw2sHe9ugE="]}]},"gov":{"starting_proposal_id":"1","deposits":[],"votes":[],"proposals":[],"deposit_params":{"min_deposit":[{"denom":"basecro","amount":"20000000000000000000000"}],"max_deposit_period":"21600000000000ns"},"voting_params":{"voting_period":"259200000000000ns"},"tally_params":{"quorum":"0.334","threshold":"0.5","veto_threshold":"0.334"}},"ibc":{"client_genesis":{"clients":[],"clients_consensus":[],"clients_metadata":[],"params":{"allowed_clients":["06-solomachine","07-tendermint"]},"create_localhost":false,"next_client_sequence":"0"},"connection_genesis":{"connections":[],"client_connection_paths":[],"next_connection_sequence":"0","params":{"max_expected_time_per_block":"30000000000"}},"channel_genesis":{"channels":[],"acknowledgements":[],"commitments":[],"receipts":[],"send_sequences":[],"recv_sequences":[],"ack_sequences":[],"next_channel_sequence":"0"}},"mint":{"minter":{"inflation":"0.000000000000000000","annual_provisions":"0.000000000000000000"},"params":{"mint_denom":"stake","inflation_rate_change":"0","inflation_max":"0","inflation_min":"0","goal_bonded":"1","blocks_per_year":"6311520"}},"params":null,"slashing":{"params":{"signed_blocks_window":"10000","min_signed_per_window":"0.5","downtime_jail_duration":"28800s","slash_fraction_double_sign":"0","slash_fraction_downtime":"0"},"signing_infos":[],"missed_blocks":[]},"staking":{"params":{"unbonding_time":"2419200000000000ns","max_validators":"50","max_entries":"7","historical_entries":"10000","bond_denom":"stake","min_delegation": "1","flexible_period_type":0,"periods":[{"period_type":0,"duration":"0s","rewards_multiplier":"1"},{"period_type":1,"duration":"2592000s","rewards_multiplier":"1.051"},{"period_type":2,"duration":"31536000s","rewards_multiplier":"1.16"},{"period_type":3,"duration":"46656000s","rewards_multiplier":"1.34"}],"locked_token_type": 0,"token_types":[{"token_type":0,"rewards_multiplier":"0.5"},{"token_type":1,"rewards_multiplier":"1"}]},"last_total_power":"0","last_validator_powers":[],"validators":[],"delegations":[],"unbonding_delegations":[],"redelegations":[],"exported":false},"transfer":{"port_id":"transfer","denom_traces":[],"params":{"send_enabled":true,"receive_enabled":true}},"upgrade":{},"vesting":{}}} diff --git a/x/staking/keeper/params.go b/x/staking/keeper/params.go index c903aab38a48..60dd119a862d 100644 --- a/x/staking/keeper/params.go +++ b/x/staking/keeper/params.go @@ -129,7 +129,7 @@ func (k Keeper) GetTokenTypes(ctx context.Context) ([]types.TokenTypeInfo, error } // GetFlexiblePeriodType gets the flexible period type from x/staking module parameters. -func (k Keeper) GetFlexiblePeriodType(ctx context.Context) (periodType int32, err error) { +func (k Keeper) GetFlexiblePeriodType(ctx context.Context) (int32, error) { store := k.storeService.OpenKVStore(ctx) bz, err := store.Get(types.ParamsKey) @@ -147,6 +147,25 @@ func (k Keeper) GetFlexiblePeriodType(ctx context.Context) (periodType int32, er return params.FlexiblePeriodType, nil } +// GetLockedTokenType gets the locked token type from x/staking module parameters. +func (k Keeper) GetLockedTokenType(ctx context.Context) (int32, error) { + store := k.storeService.OpenKVStore(ctx) + + bz, err := store.Get(types.ParamsKey) + if err != nil { + return 0, err + } else if bz == nil { + return 0, nil + } + + var params types.Params + if err := k.cdc.Unmarshal(bz, ¶ms); err != nil { + return 0, err + } + + return params.LockedTokenType, nil +} + // GetPeriodInfo gets the period info from x/staking module parameters. func (k Keeper) GetPeriodInfo(ctx context.Context, periodType int32) (types.Period, error) { store := k.storeService.OpenKVStore(ctx) diff --git a/x/staking/migrations/v3/json_test.go b/x/staking/migrations/v3/json_test.go index fbc5c90df05e..e13dd5460a42 100644 --- a/x/staking/migrations/v3/json_test.go +++ b/x/staking/migrations/v3/json_test.go @@ -44,6 +44,7 @@ func TestMigrateJSON(t *testing.T) { "bond_denom": "stake", "flexible_period_type": 0, "historical_entries": 10000, + "locked_token_type": 0, "max_entries": 7, "max_validators": 100, "min_commission_rate": "0.000000000000000000", diff --git a/x/staking/simulation/genesis.go b/x/staking/simulation/genesis.go index c1fe00904bd6..2405771d05eb 100644 --- a/x/staking/simulation/genesis.go +++ b/x/staking/simulation/genesis.go @@ -55,7 +55,7 @@ func RandomizedGenState(simState *module.SimulationState) { // NOTE: the slashing module need to be defined after the staking module on the // NewSimulationManager constructor for this to work simState.UnbondTime = unbondTime - params := types.NewParams(simState.UnbondTime, maxVals, 7, histEntries, simState.BondDenom, minCommissionRate, types.DefaultMinDelegation, types.DefaultFlexiblePeriodType, types.DefaultPeriods, types.DefaultTokenTypes) + params := types.NewParams(simState.UnbondTime, maxVals, 7, histEntries, simState.BondDenom, minCommissionRate, types.DefaultMinDelegation, types.DefaultFlexiblePeriodType, types.DefaultPeriods, types.DefaultLockedTokenType, types.DefaultTokenTypes) // validators & delegations var ( diff --git a/x/staking/types/params.go b/x/staking/types/params.go index 7af7aa8bc86b..084756faf4a1 100644 --- a/x/staking/types/params.go +++ b/x/staking/types/params.go @@ -31,6 +31,8 @@ const ( DefaultHistoricalEntries uint32 = 10000 DefaultFlexiblePeriodType = 0 + + DefaultLockedTokenType = 0 ) // DefaultMinCommissionRate is set to 0% @@ -75,7 +77,7 @@ var DefaultTokenTypes = []TokenTypeInfo{ // NewParams creates a new Params instance func NewParams( unbondingTime time.Duration, maxValidators, maxEntries, historicalEntries uint32, bondDenom string, minCommissionRate math.LegacyDec, - minDelegation math.Int, flexiblePeriodType int32, periods []Period, tokenTypes []TokenTypeInfo, + minDelegation math.Int, flexiblePeriodType int32, periods []Period, lockedTokenType int32, tokenTypes []TokenTypeInfo, ) Params { return Params{ UnbondingTime: unbondingTime, @@ -87,6 +89,7 @@ func NewParams( MinDelegation: minDelegation, FlexiblePeriodType: flexiblePeriodType, Periods: periods, + LockedTokenType: lockedTokenType, TokenTypes: tokenTypes, } } @@ -103,6 +106,7 @@ func DefaultParams() Params { DefaultMinDelegation, DefaultFlexiblePeriodType, DefaultPeriods, + DefaultLockedTokenType, DefaultTokenTypes, ) } @@ -161,6 +165,10 @@ func (p Params) Validate() error { return err } + if err := validateLockedTokenType(p.LockedTokenType); err != nil { + return err + } + if err := validateTokenTypes(p.TokenTypes); err != nil { return err } @@ -296,6 +304,19 @@ func validatePeriods(i interface{}) error { return nil } +func validateLockedTokenType(i interface{}) error { + v, ok := i.(int32) + if !ok { + return fmt.Errorf("invalid parameter type: %T", i) + } + + if v < 0 { + return fmt.Errorf("invalid locked token type: %d", v) + } + + return nil +} + func validateTokenTypes(i interface{}) error { tokenTypes, ok := i.([]TokenTypeInfo) if !ok { diff --git a/x/staking/types/staking.pb.go b/x/staking/types/staking.pb.go index 32ede7f53a2e..56aa797a9dca 100644 --- a/x/staking/types/staking.pb.go +++ b/x/staking/types/staking.pb.go @@ -1119,7 +1119,8 @@ type Params struct { MinDelegation cosmossdk_io_math.Int `protobuf:"bytes,7,opt,name=min_delegation,json=minDelegation,proto3,customtype=cosmossdk.io/math.Int" json:"min_delegation"` FlexiblePeriodType int32 `protobuf:"varint,8,opt,name=flexible_period_type,json=flexiblePeriodType,proto3" json:"flexible_period_type,omitempty"` Periods []Period `protobuf:"bytes,9,rep,name=periods,proto3" json:"periods"` - TokenTypes []TokenTypeInfo `protobuf:"bytes,10,rep,name=token_types,json=tokenTypes,proto3" json:"token_types"` + LockedTokenType int32 `protobuf:"varint,10,opt,name=locked_token_type,json=lockedTokenType,proto3" json:"locked_token_type,omitempty"` + TokenTypes []TokenTypeInfo `protobuf:"bytes,11,rep,name=token_types,json=tokenTypes,proto3" json:"token_types"` } func (m *Params) Reset() { *m = Params{} } @@ -1204,6 +1205,13 @@ func (m *Params) GetPeriods() []Period { return nil } +func (m *Params) GetLockedTokenType() int32 { + if m != nil { + return m.LockedTokenType + } + return 0 +} + func (m *Params) GetTokenTypes() []TokenTypeInfo { if m != nil { return m.TokenTypes @@ -1488,145 +1496,146 @@ func init() { } var fileDescriptor_64c30c6cf92913c9 = []byte{ - // 2196 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0xdd, 0x6b, 0x5b, 0xc9, - 0x15, 0xf7, 0xb5, 0x6c, 0xd9, 0x3a, 0xb2, 0x2c, 0x79, 0xe2, 0x24, 0x8a, 0xd2, 0xd8, 0x8e, 0x36, - 0xdb, 0xcd, 0xa6, 0x89, 0xbc, 0x49, 0x61, 0x0b, 0x6e, 0x69, 0x89, 0x2c, 0x67, 0xa3, 0xed, 0xc6, - 0xd1, 0xca, 0xb2, 0xbb, 0xdb, 0xaf, 0xcb, 0xe8, 0xde, 0xb1, 0x3c, 0xb5, 0xee, 0xbd, 0xea, 0x9d, - 0x51, 0xd6, 0x7a, 0xef, 0xc3, 0x92, 0x52, 0x58, 0x28, 0x94, 0x42, 0x09, 0x04, 0x4a, 0x61, 0xfb, - 0xb6, 0x0f, 0xa1, 0x0f, 0x7d, 0xeb, 0xdb, 0xb6, 0x50, 0x08, 0xa1, 0xd0, 0xa5, 0xb4, 0x69, 0x49, - 0x1e, 0x76, 0x69, 0x5f, 0x4a, 0xff, 0x82, 0x32, 0x1f, 0xf7, 0x43, 0x92, 0x15, 0xc7, 0x4e, 0x0a, - 0xa1, 0xfb, 0x22, 0xee, 0x9d, 0x39, 0xe7, 0x77, 0xe7, 0x7c, 0xfd, 0xe6, 0xcc, 0x08, 0xce, 0x59, - 0x1e, 0x73, 0x3c, 0xb6, 0xcc, 0x38, 0xde, 0xa5, 0x6e, 0x6b, 0xf9, 0xd6, 0xe5, 0x26, 0xe1, 0xf8, - 0x72, 0xf0, 0x5e, 0xea, 0xf8, 0x1e, 0xf7, 0xd0, 0x09, 0x25, 0x55, 0x0a, 0x46, 0xb5, 0x54, 0x61, - 0xbe, 0xe5, 0xb5, 0x3c, 0x29, 0xb2, 0x2c, 0x9e, 0x94, 0x74, 0xe1, 0x54, 0xcb, 0xf3, 0x5a, 0x6d, - 0xb2, 0x2c, 0xdf, 0x9a, 0xdd, 0xed, 0x65, 0xec, 0xf6, 0xf4, 0xd4, 0xc2, 0xe0, 0x94, 0xdd, 0xf5, - 0x31, 0xa7, 0x9e, 0xab, 0xe7, 0x17, 0x07, 0xe7, 0x39, 0x75, 0x08, 0xe3, 0xd8, 0xe9, 0x04, 0xd8, - 0x6a, 0x25, 0xa6, 0xfa, 0xa8, 0x5e, 0x96, 0xc6, 0xd6, 0xa6, 0x34, 0x31, 0x23, 0xa1, 0x1d, 0x96, - 0x47, 0x03, 0xec, 0x39, 0xec, 0x50, 0xd7, 0x5b, 0x96, 0xbf, 0x7a, 0xe8, 0x0b, 0x9c, 0xb8, 0x36, - 0xf1, 0x1d, 0xea, 0xf2, 0x65, 0xde, 0xeb, 0x10, 0xa6, 0x7e, 0xf5, 0xec, 0xe9, 0xd8, 0x2c, 0x6e, - 0x5a, 0x34, 0x3e, 0x59, 0xfc, 0xa9, 0x01, 0xb3, 0xd7, 0x29, 0xe3, 0x9e, 0x4f, 0x2d, 0xdc, 0xae, - 0xba, 0xdb, 0x1e, 0xfa, 0x2a, 0x24, 0x77, 0x08, 0xb6, 0x89, 0x9f, 0x37, 0x96, 0x8c, 0xf3, 0xe9, - 0x2b, 0xf9, 0x52, 0x04, 0x50, 0x52, 0xba, 0xd7, 0xe5, 0x7c, 0x39, 0xf5, 0xf1, 0xc3, 0xc5, 0xb1, - 0x0f, 0x3f, 0xfd, 0xe8, 0x82, 0x51, 0xd7, 0x2a, 0xa8, 0x02, 0xc9, 0x5b, 0xb8, 0xcd, 0x08, 0xcf, - 0x8f, 0x2f, 0x25, 0xce, 0xa7, 0xaf, 0x9c, 0x2d, 0xed, 0xef, 0xf3, 0xd2, 0x16, 0x6e, 0x53, 0x1b, - 0x73, 0xaf, 0x1f, 0x45, 0xe9, 0x16, 0x7f, 0x36, 0x0e, 0xd9, 0x55, 0xcf, 0x71, 0x28, 0x63, 0xd4, - 0x73, 0xeb, 0x98, 0x13, 0x86, 0xde, 0x84, 0x09, 0x1f, 0x73, 0x22, 0x17, 0x95, 0x2a, 0xbf, 0x2e, - 0x94, 0xfe, 0xf2, 0x70, 0xf1, 0xb4, 0x82, 0x67, 0xf6, 0x6e, 0x89, 0x7a, 0xcb, 0x0e, 0xe6, 0x3b, - 0xa5, 0xb7, 0x48, 0x0b, 0x5b, 0xbd, 0x0a, 0xb1, 0x1e, 0xdc, 0xbb, 0x04, 0xfa, 0xeb, 0x15, 0x62, - 0xa9, 0x2f, 0x48, 0x0c, 0xf4, 0x36, 0x4c, 0x3b, 0x78, 0xcf, 0x94, 0x78, 0xe3, 0xcf, 0x84, 0x37, - 0xe5, 0xe0, 0x3d, 0xb1, 0x3e, 0xf4, 0x7d, 0xc8, 0x0a, 0x48, 0x6b, 0x07, 0xbb, 0x2d, 0xa2, 0x90, - 0x13, 0xcf, 0x84, 0x9c, 0x71, 0xf0, 0xde, 0xaa, 0x44, 0x13, 0xf8, 0x2b, 0x13, 0x9f, 0xdd, 0x5d, - 0x34, 0x8a, 0xbf, 0x33, 0x00, 0x22, 0xc7, 0x20, 0x0c, 0x39, 0x2b, 0x7c, 0x93, 0x1f, 0x65, 0x3a, - 0x68, 0xaf, 0x8c, 0xf2, 0xfb, 0x80, 0x5b, 0xcb, 0x19, 0xb1, 0xbc, 0xfb, 0x0f, 0x17, 0x0d, 0xf5, - 0xd5, 0xac, 0x35, 0xe4, 0xf6, 0x74, 0xb7, 0x63, 0x63, 0x4e, 0x4c, 0x91, 0xc3, 0xd2, 0x5b, 0xe9, - 0x2b, 0x85, 0x92, 0x4a, 0xf0, 0x52, 0x90, 0xe0, 0xa5, 0x46, 0x90, 0xe0, 0x0a, 0xf0, 0x83, 0xbf, - 0x07, 0x80, 0xa0, 0xb4, 0xc5, 0xbc, 0xb6, 0xe1, 0x43, 0x03, 0xd2, 0x15, 0xc2, 0x2c, 0x9f, 0x76, - 0x44, 0xc9, 0xa0, 0x3c, 0x4c, 0x39, 0x9e, 0x4b, 0x77, 0x75, 0xc2, 0xa5, 0xea, 0xc1, 0x2b, 0x2a, - 0xc0, 0x34, 0xb5, 0x89, 0xcb, 0x29, 0xef, 0xa9, 0x30, 0xd5, 0xc3, 0x77, 0xa1, 0xf5, 0x1e, 0x69, - 0x32, 0x1a, 0xf8, 0xb9, 0x1e, 0xbc, 0xa2, 0x57, 0x21, 0xc7, 0x88, 0xd5, 0xf5, 0x29, 0xef, 0x99, - 0x96, 0xe7, 0x72, 0x6c, 0xf1, 0xfc, 0x84, 0x14, 0xc9, 0x06, 0xe3, 0xab, 0x6a, 0x58, 0x80, 0xd8, - 0x84, 0x63, 0xda, 0x66, 0xf9, 0x49, 0x05, 0xa2, 0x5f, 0xf5, 0x52, 0x7f, 0x61, 0x40, 0xa6, 0xe1, - 0xed, 0x12, 0xb7, 0xd1, 0xeb, 0x10, 0x59, 0x1c, 0x67, 0x00, 0xb8, 0x18, 0x30, 0x45, 0x21, 0xc8, - 0xf5, 0x4e, 0xd6, 0x53, 0x3c, 0x10, 0x41, 0x04, 0x90, 0x4f, 0xde, 0xc3, 0xbe, 0xcd, 0x4c, 0xa7, - 0xdb, 0xe6, 0xb4, 0xd3, 0xa6, 0xc4, 0x7f, 0xc6, 0x14, 0x9b, 0xd3, 0x88, 0x37, 0x42, 0x40, 0xbd, - 0xba, 0x5f, 0x4d, 0x43, 0x2a, 0x2c, 0x23, 0xb4, 0x0a, 0x39, 0xaf, 0x43, 0x7c, 0xf1, 0x6c, 0x62, - 0xdb, 0xf6, 0x09, 0x63, 0xba, 0x56, 0xf2, 0x0f, 0xee, 0x5d, 0x9a, 0xd7, 0xa8, 0x57, 0xd5, 0xcc, - 0x06, 0xf7, 0xa9, 0xdb, 0xaa, 0x67, 0x03, 0x0d, 0x3d, 0x8c, 0xde, 0x15, 0x09, 0xe5, 0x32, 0xe2, - 0xb2, 0x2e, 0x33, 0x3b, 0xdd, 0xe6, 0x2e, 0xe9, 0xe9, 0x90, 0xcf, 0x0f, 0x85, 0xfc, 0xaa, 0xdb, - 0x2b, 0xe7, 0xff, 0x10, 0x41, 0x5b, 0x7e, 0xaf, 0xc3, 0xbd, 0x52, 0xad, 0xdb, 0xfc, 0x26, 0xe9, - 0x89, 0x44, 0xd2, 0x38, 0x35, 0x09, 0x83, 0x4e, 0x40, 0xf2, 0x07, 0x98, 0xb6, 0x89, 0x2d, 0xe3, - 0x35, 0x5d, 0xd7, 0x6f, 0x68, 0x05, 0x92, 0x8c, 0x63, 0xde, 0x65, 0x32, 0x48, 0xb3, 0x57, 0x8a, - 0xa3, 0x32, 0xb7, 0xec, 0xb9, 0xf6, 0x86, 0x94, 0xac, 0x6b, 0x0d, 0xb4, 0x0a, 0x49, 0xe9, 0x7b, - 0x1d, 0xbe, 0xf2, 0x97, 0xb4, 0x8b, 0x8f, 0x0f, 0xbb, 0xb8, 0xea, 0xf2, 0x98, 0x73, 0xab, 0x2e, - 0xaf, 0x6b, 0x55, 0xf4, 0x5d, 0xc8, 0xd9, 0xa4, 0x4d, 0x5a, 0xd2, 0x73, 0x6c, 0x07, 0xfb, 0x84, - 0xe5, 0x93, 0x12, 0xee, 0xf2, 0xa1, 0x23, 0x56, 0xcf, 0x86, 0x50, 0x1b, 0x12, 0x09, 0xd5, 0x20, - 0x6d, 0x47, 0xc9, 0x9e, 0x9f, 0x92, 0xce, 0x7c, 0x69, 0x94, 0x8d, 0xb1, 0xba, 0x88, 0xf3, 0x62, - 0x1c, 0x42, 0xe4, 0x77, 0xd7, 0x6d, 0x7a, 0xae, 0x4d, 0xdd, 0x96, 0xb9, 0x43, 0x68, 0x6b, 0x87, - 0xe7, 0xa7, 0x97, 0x8c, 0xf3, 0x89, 0x7a, 0x36, 0x1c, 0xbf, 0x2e, 0x87, 0x51, 0x0d, 0x66, 0x23, - 0x51, 0x59, 0xbf, 0xa9, 0xc3, 0xd6, 0x6f, 0x26, 0x04, 0x10, 0x22, 0xe8, 0x06, 0x40, 0xc4, 0x10, - 0x79, 0x90, 0x68, 0xc5, 0x83, 0xb9, 0x26, 0x6e, 0x4c, 0x0c, 0x00, 0x7d, 0x07, 0x8e, 0x39, 0xd4, - 0x35, 0x19, 0x69, 0x6f, 0x9b, 0xda, 0x73, 0x02, 0x37, 0x7d, 0xf8, 0x68, 0xce, 0x39, 0xd4, 0xdd, - 0x20, 0xed, 0xed, 0x4a, 0x88, 0x82, 0xbe, 0x06, 0xa7, 0x23, 0xeb, 0x3d, 0xd7, 0xdc, 0xf1, 0xda, - 0xb6, 0xe9, 0x93, 0x6d, 0xd3, 0xf2, 0xba, 0x2e, 0xcf, 0xcf, 0x48, 0x9f, 0x9d, 0x0c, 0x45, 0x6e, - 0xba, 0xd7, 0xbd, 0xb6, 0x5d, 0x27, 0xdb, 0xab, 0x62, 0x1a, 0xbd, 0x04, 0x91, 0xe9, 0x26, 0xb5, - 0x59, 0x3e, 0xb3, 0x94, 0x38, 0x3f, 0x51, 0x9f, 0x09, 0x07, 0xab, 0x36, 0x43, 0x17, 0x01, 0xb1, - 0x6e, 0xa7, 0xe3, 0xf9, 0xdc, 0x8c, 0xd1, 0xc2, 0xac, 0xa4, 0x85, 0x9c, 0x9e, 0x09, 0x09, 0x04, - 0xed, 0x42, 0x3e, 0xca, 0xb4, 0x80, 0x27, 0x74, 0xc6, 0x65, 0x8f, 0x9a, 0x71, 0x27, 0x42, 0xc8, - 0xba, 0x42, 0x54, 0x89, 0xb7, 0x32, 0xfd, 0xfe, 0xdd, 0xc5, 0xb1, 0xcf, 0xee, 0x2e, 0x8e, 0x15, - 0xaf, 0xc1, 0xcc, 0x16, 0x6e, 0xeb, 0x12, 0x27, 0x0c, 0xbd, 0x0e, 0x29, 0x1c, 0xbc, 0xe4, 0x8d, - 0xa5, 0xc4, 0x13, 0x29, 0x22, 0x12, 0x2d, 0xfe, 0xda, 0x80, 0x64, 0x65, 0xab, 0x86, 0xa9, 0x8f, - 0xd6, 0x60, 0x2e, 0xb2, 0xe4, 0x69, 0xd9, 0x26, 0x2a, 0xb3, 0x80, 0x6e, 0xd6, 0x61, 0xee, 0x56, - 0x40, 0x60, 0x21, 0x8c, 0x62, 0xcb, 0xb3, 0x0f, 0xee, 0x5d, 0x3a, 0xa3, 0x61, 0x42, 0x92, 0x1b, - 0xc0, 0xbb, 0x35, 0x30, 0x1e, 0xb3, 0xf9, 0x4d, 0x98, 0x52, 0x4b, 0x65, 0xe8, 0x1b, 0x30, 0xd9, - 0x11, 0x0f, 0xd2, 0xd4, 0xf4, 0x95, 0x85, 0x91, 0xb5, 0x27, 0xe5, 0xe3, 0x99, 0xaa, 0xf4, 0x8a, - 0x3f, 0x1e, 0x07, 0xa8, 0x6c, 0x6d, 0x35, 0x7c, 0xda, 0x69, 0x13, 0xfe, 0xbc, 0x6c, 0xdf, 0x84, - 0xe3, 0x91, 0xed, 0xcc, 0xb7, 0x0e, 0x6f, 0xff, 0xb1, 0x50, 0x7f, 0xc3, 0xb7, 0xf6, 0x85, 0xb5, - 0x19, 0x0f, 0x61, 0x13, 0x87, 0x87, 0xad, 0x30, 0x3e, 0xec, 0xd9, 0x77, 0x20, 0x1d, 0x39, 0x83, - 0xa1, 0x2a, 0x4c, 0x73, 0xfd, 0xac, 0x1d, 0x5c, 0x1c, 0xed, 0xe0, 0x40, 0x2d, 0xee, 0xe4, 0x50, - 0xbd, 0xf8, 0x57, 0x03, 0x92, 0x35, 0xe2, 0x53, 0xcf, 0x46, 0x8b, 0x90, 0xee, 0xc8, 0xa7, 0xf8, - 0x3e, 0x0b, 0x6a, 0x48, 0x96, 0x52, 0x05, 0xa6, 0x83, 0x9e, 0x5b, 0x6f, 0x50, 0xa7, 0x86, 0x38, - 0xad, 0xa2, 0x05, 0x14, 0xa5, 0xfd, 0x3c, 0xa4, 0xb4, 0x50, 0x73, 0xc4, 0x76, 0x9d, 0xf8, 0xdf, - 0x6c, 0xd7, 0x7f, 0x1e, 0x87, 0x9c, 0x32, 0x2f, 0xc6, 0x51, 0x5f, 0x81, 0x79, 0x6d, 0x68, 0x44, - 0x7f, 0x26, 0xb5, 0x75, 0x3e, 0x4d, 0x2a, 0x48, 0xd4, 0x19, 0x50, 0xab, 0xda, 0xa8, 0x0a, 0x49, - 0xcd, 0x1c, 0xe3, 0x47, 0x65, 0x0e, 0x0d, 0x80, 0xde, 0x81, 0xd9, 0x01, 0x32, 0x4a, 0x1c, 0x15, - 0x32, 0xe3, 0xc7, 0x39, 0x68, 0x30, 0x8c, 0x13, 0xfb, 0x85, 0x91, 0xb8, 0xb6, 0xda, 0x9a, 0x26, - 0x0f, 0xbb, 0x35, 0x4d, 0x11, 0xd7, 0x16, 0x93, 0xc5, 0x07, 0xa2, 0x40, 0x23, 0x9f, 0xbe, 0x98, - 0xe4, 0x14, 0x8b, 0x58, 0xe2, 0xf9, 0x47, 0x6c, 0xe2, 0xf9, 0x44, 0x2c, 0x56, 0xe7, 0x3f, 0x19, - 0x87, 0x63, 0x9b, 0xc1, 0x5e, 0xf7, 0xe2, 0x7b, 0x77, 0x13, 0xa6, 0x88, 0xcb, 0x7d, 0x2a, 0xdd, - 0x2b, 0x68, 0xe8, 0xb5, 0x51, 0x34, 0xb4, 0x8f, 0x51, 0x6b, 0x2e, 0xf7, 0x7b, 0x71, 0x52, 0x0a, - 0xb0, 0x62, 0xfe, 0xf8, 0x53, 0x02, 0xf2, 0xa3, 0x54, 0xd1, 0x2b, 0x90, 0xb5, 0x7c, 0xa2, 0xaa, - 0x57, 0xb7, 0x64, 0x86, 0x6c, 0x2f, 0x66, 0x83, 0x61, 0xdd, 0x91, 0xd5, 0x41, 0x9c, 0xb0, 0x04, - 0xdf, 0x09, 0xd1, 0xa3, 0x1d, 0xa9, 0x66, 0x23, 0x04, 0xd9, 0x93, 0x35, 0x20, 0x4b, 0x5d, 0xca, - 0x29, 0x6e, 0x9b, 0x4d, 0xdc, 0xc6, 0xae, 0x15, 0x1c, 0x3d, 0x0f, 0xd5, 0x40, 0xcd, 0x6a, 0x8c, - 0xb2, 0x82, 0x40, 0x6b, 0x30, 0x15, 0xa0, 0x4d, 0x1c, 0x1e, 0x2d, 0xd0, 0x45, 0x67, 0x61, 0x26, - 0xde, 0x46, 0xc9, 0x2a, 0x9f, 0xa8, 0xa7, 0x63, 0x5d, 0xd4, 0x41, 0x7d, 0x5a, 0xf2, 0xc9, 0x7d, - 0xda, 0x28, 0x06, 0x9d, 0x3a, 0x80, 0x41, 0x35, 0x2b, 0x7f, 0x92, 0x80, 0xb9, 0x3a, 0xb1, 0xff, - 0xff, 0xe3, 0x59, 0x03, 0x50, 0x5c, 0x21, 0xba, 0x82, 0xa3, 0xf3, 0x45, 0x4a, 0x81, 0x54, 0x18, - 0x7f, 0xe1, 0x43, 0xfb, 0xb7, 0x71, 0x98, 0x89, 0x87, 0xf6, 0x73, 0xd9, 0xb9, 0xa1, 0xf5, 0x88, - 0x18, 0x27, 0x24, 0x31, 0xbe, 0x3a, 0x8a, 0x18, 0x87, 0xca, 0xe0, 0x00, 0x46, 0xfc, 0xed, 0x24, - 0x24, 0x6b, 0xd8, 0xc7, 0x0e, 0x43, 0x37, 0x87, 0x0e, 0x9a, 0xc6, 0x21, 0x9b, 0xb2, 0x81, 0x73, - 0xe6, 0xcb, 0x30, 0xeb, 0xe0, 0x3d, 0x33, 0x34, 0x48, 0x39, 0x37, 0x23, 0x6f, 0xc5, 0x42, 0xeb, - 0x65, 0x83, 0x21, 0xc4, 0x22, 0xe6, 0x17, 0x32, 0xe0, 0xe0, 0xbd, 0x35, 0x35, 0x82, 0x2e, 0x01, - 0xda, 0x09, 0xaf, 0x37, 0xcd, 0xc8, 0x11, 0x42, 0x6e, 0x2e, 0x9a, 0x09, 0xc4, 0xcf, 0x00, 0x88, - 0x55, 0x98, 0x36, 0x71, 0x3d, 0x47, 0xdf, 0x09, 0xa5, 0xc4, 0x48, 0x45, 0x0c, 0xa0, 0x1f, 0x19, - 0xea, 0xbc, 0x3a, 0x70, 0xe9, 0xa6, 0xaf, 0x0b, 0x1a, 0x4f, 0x51, 0x4d, 0xff, 0x79, 0xb8, 0x58, - 0xe8, 0x61, 0xa7, 0xbd, 0x52, 0xdc, 0x07, 0xa7, 0xb8, 0x6f, 0x3f, 0xe9, 0x50, 0xb7, 0xff, 0xd2, - 0x0e, 0xd5, 0x61, 0x56, 0x68, 0xc7, 0x0e, 0xcc, 0x53, 0x87, 0xe7, 0x87, 0x8c, 0x43, 0xdd, 0xd8, - 0xb6, 0xfe, 0x1a, 0xcc, 0x6f, 0xb7, 0xc9, 0x1e, 0x6d, 0xb6, 0x89, 0x19, 0xef, 0xd9, 0xa6, 0x65, - 0xcf, 0x86, 0x82, 0xb9, 0x5a, 0xd4, 0xbb, 0xad, 0xc2, 0x94, 0x12, 0x64, 0xf9, 0xd4, 0x93, 0x4f, - 0x56, 0x4a, 0xa9, 0x2f, 0x9b, 0xb4, 0x26, 0x7a, 0x1b, 0xd2, 0xd1, 0xc1, 0x99, 0xe5, 0x41, 0x02, - 0xbd, 0x3c, 0x0a, 0xa8, 0xef, 0x2e, 0xae, 0xef, 0x4e, 0x21, 0xbc, 0x82, 0x63, 0x2b, 0xe7, 0x44, - 0xf1, 0xdf, 0xfe, 0xf4, 0xa3, 0x0b, 0x3a, 0x0e, 0x97, 0x98, 0xbd, 0xbb, 0xbc, 0x17, 0xfe, 0x35, - 0xa0, 0x32, 0x56, 0x1c, 0x66, 0x51, 0x64, 0x7e, 0x9d, 0xb0, 0x8e, 0xe7, 0x32, 0x79, 0xbf, 0x11, - 0x73, 0xab, 0xf1, 0xe4, 0xfb, 0x8d, 0x48, 0xbf, 0x6f, 0x2d, 0x31, 0xc6, 0xf9, 0x7a, 0xb4, 0x89, - 0x06, 0xa7, 0x14, 0x8d, 0xd5, 0xc4, 0x8c, 0xc4, 0x2e, 0x4a, 0x68, 0x1f, 0x44, 0xa0, 0x24, 0x89, - 0x6c, 0xac, 0xf8, 0x47, 0x03, 0x4e, 0x0d, 0x15, 0x67, 0xb8, 0x64, 0x4b, 0x1c, 0x62, 0x62, 0x04, - 0x29, 0x92, 0xbc, 0xa7, 0x97, 0x7e, 0xb4, 0x5a, 0x9f, 0xf3, 0x87, 0x36, 0xc4, 0xe7, 0xd3, 0x0d, - 0x68, 0x62, 0xfe, 0xbd, 0x01, 0xf3, 0xf1, 0x05, 0x84, 0xa6, 0x6c, 0xc0, 0x4c, 0xfc, 0xd3, 0xda, - 0x88, 0x73, 0x4f, 0x63, 0x44, 0x7c, 0xfd, 0x7d, 0x20, 0x68, 0x2b, 0x22, 0x40, 0xf5, 0x9f, 0xc4, - 0xe5, 0xa7, 0x76, 0x4a, 0xb0, 0xb0, 0x7d, 0x89, 0x50, 0xc5, 0xe6, 0x5f, 0x06, 0x4c, 0xd4, 0x3c, - 0xaf, 0x8d, 0x7e, 0x08, 0x73, 0xae, 0xc7, 0x4d, 0x41, 0x16, 0xc4, 0x36, 0xf5, 0xb5, 0xa4, 0xda, - 0x5c, 0xd6, 0x9e, 0xe8, 0xab, 0x7f, 0x3e, 0x5c, 0x1c, 0xd6, 0xec, 0x77, 0xa0, 0xbe, 0x9b, 0x77, - 0x3d, 0x5e, 0x96, 0x42, 0x0d, 0x75, 0x73, 0xb9, 0x0d, 0x99, 0xfe, 0xcf, 0xa9, 0x0d, 0xe8, 0xea, - 0x41, 0x9f, 0xcb, 0x1c, 0xf8, 0xa9, 0x99, 0x66, 0xec, 0x3b, 0x2b, 0xd3, 0x22, 0x6a, 0xff, 0x16, - 0x91, 0x7b, 0x17, 0x72, 0x21, 0xfb, 0x6e, 0xca, 0x8b, 0x7d, 0x26, 0x52, 0x43, 0xdd, 0xf1, 0x07, - 0x17, 0x00, 0x4b, 0xf1, 0x3f, 0x8c, 0x70, 0xd3, 0xa2, 0xa5, 0x01, 0x9d, 0x3e, 0x77, 0x6a, 0xdd, - 0x0b, 0xbf, 0x31, 0x00, 0xa2, 0x2b, 0x5e, 0x74, 0x11, 0x4e, 0x96, 0x6f, 0xae, 0x57, 0xcc, 0x8d, - 0xc6, 0xd5, 0xc6, 0xe6, 0x86, 0xb9, 0xb9, 0xbe, 0x51, 0x5b, 0x5b, 0xad, 0x5e, 0xab, 0xae, 0x55, - 0x72, 0x63, 0x85, 0xec, 0xed, 0x3b, 0x4b, 0xe9, 0x4d, 0x97, 0x75, 0x88, 0x45, 0xb7, 0x29, 0xb1, - 0xd1, 0x17, 0x61, 0xbe, 0x5f, 0x5a, 0xbc, 0xad, 0x55, 0x72, 0x46, 0x61, 0xe6, 0xf6, 0x9d, 0xa5, - 0x69, 0xd5, 0xb7, 0x13, 0x1b, 0x9d, 0x87, 0xe3, 0xc3, 0x72, 0xd5, 0xf5, 0x37, 0x72, 0xe3, 0x85, - 0xcc, 0xed, 0x3b, 0x4b, 0xa9, 0xb0, 0xc1, 0x47, 0x45, 0x40, 0x71, 0x49, 0x8d, 0x97, 0x28, 0xc0, - 0xed, 0x3b, 0x4b, 0x49, 0x15, 0x85, 0xc2, 0xc4, 0xfb, 0xbf, 0x5c, 0x18, 0xbb, 0xf0, 0x3d, 0x80, - 0xaa, 0xbb, 0xed, 0x63, 0x4b, 0x66, 0x5b, 0x01, 0x4e, 0x54, 0xd7, 0xaf, 0xd5, 0xaf, 0xae, 0x36, - 0xaa, 0x37, 0xd7, 0xfb, 0x97, 0x3d, 0x30, 0x57, 0xb9, 0xb9, 0x59, 0x7e, 0x6b, 0xcd, 0xdc, 0xa8, - 0xbe, 0xb1, 0x9e, 0x33, 0xd0, 0x49, 0x38, 0xd6, 0x37, 0xf7, 0xad, 0xf5, 0x46, 0xf5, 0xc6, 0x5a, - 0x6e, 0xbc, 0x7c, 0xed, 0xe3, 0x47, 0x0b, 0xc6, 0xfd, 0x47, 0x0b, 0xc6, 0x3f, 0x1e, 0x2d, 0x18, - 0x1f, 0x3c, 0x5e, 0x18, 0xbb, 0xff, 0x78, 0x61, 0xec, 0x93, 0xc7, 0x0b, 0x63, 0xdf, 0xbe, 0xd8, - 0xa2, 0x7c, 0xa7, 0xdb, 0x2c, 0x59, 0x9e, 0xa3, 0xff, 0x42, 0x5c, 0xde, 0x97, 0xf1, 0x24, 0xb5, - 0x36, 0x93, 0x72, 0x0b, 0xfe, 0xf2, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x77, 0x68, 0x64, 0x61, - 0x2b, 0x1d, 0x00, 0x00, + // 2210 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0xdb, 0x6b, 0x5b, 0xc9, + 0x19, 0xf7, 0xb1, 0x6c, 0xd9, 0xfe, 0x64, 0x5b, 0xf2, 0xc4, 0x49, 0x14, 0xa5, 0xb1, 0x1d, 0x6d, + 0xb6, 0x9b, 0x4d, 0x13, 0x79, 0x93, 0xc2, 0x16, 0xdc, 0xd2, 0x12, 0x59, 0xce, 0x46, 0xdb, 0x8d, + 0xa3, 0x95, 0x65, 0x77, 0xb7, 0xb7, 0xc3, 0xe8, 0x9c, 0xb1, 0x3c, 0xf5, 0xb9, 0xa8, 0x67, 0x46, + 0x59, 0xeb, 0xbd, 0x0f, 0x4b, 0x4a, 0x61, 0xa1, 0x50, 0x0a, 0x25, 0x10, 0x28, 0x85, 0xed, 0xdb, + 0x3e, 0x84, 0xbe, 0xf7, 0x6d, 0x5b, 0x28, 0x84, 0x50, 0xe8, 0x52, 0xda, 0xb4, 0x24, 0xd0, 0x5d, + 0xda, 0x97, 0xd2, 0xbf, 0xa0, 0xcc, 0xe5, 0x5c, 0x24, 0x59, 0x71, 0xec, 0xa4, 0x10, 0xba, 0x2f, + 0x42, 0x33, 0xf3, 0x7d, 0xbf, 0x99, 0xef, 0x32, 0xbf, 0xf9, 0x66, 0x0e, 0x9c, 0xb3, 0x7c, 0xe6, + 0xfa, 0x6c, 0x99, 0x71, 0xbc, 0x4b, 0xbd, 0xd6, 0xf2, 0xad, 0xcb, 0x4d, 0xc2, 0xf1, 0xe5, 0xb0, + 0x5d, 0x6a, 0x07, 0x3e, 0xf7, 0xd1, 0x09, 0x25, 0x55, 0x0a, 0x7b, 0xb5, 0x54, 0x61, 0xbe, 0xe5, + 0xb7, 0x7c, 0x29, 0xb2, 0x2c, 0xfe, 0x29, 0xe9, 0xc2, 0xa9, 0x96, 0xef, 0xb7, 0x1c, 0xb2, 0x2c, + 0x5b, 0xcd, 0xce, 0xf6, 0x32, 0xf6, 0xba, 0x7a, 0x68, 0xa1, 0x7f, 0xc8, 0xee, 0x04, 0x98, 0x53, + 0xdf, 0xd3, 0xe3, 0x8b, 0xfd, 0xe3, 0x9c, 0xba, 0x84, 0x71, 0xec, 0xb6, 0x43, 0x6c, 0xb5, 0x12, + 0x53, 0x4d, 0xaa, 0x97, 0xa5, 0xb1, 0xb5, 0x29, 0x4d, 0xcc, 0x48, 0x64, 0x87, 0xe5, 0xd3, 0x10, + 0x7b, 0x0e, 0xbb, 0xd4, 0xf3, 0x97, 0xe5, 0xaf, 0xee, 0xfa, 0x02, 0x27, 0x9e, 0x4d, 0x02, 0x97, + 0x7a, 0x7c, 0x99, 0x77, 0xdb, 0x84, 0xa9, 0x5f, 0x3d, 0x7a, 0x3a, 0x31, 0x8a, 0x9b, 0x16, 0x4d, + 0x0e, 0x16, 0x7f, 0x6a, 0xc0, 0xec, 0x75, 0xca, 0xb8, 0x1f, 0x50, 0x0b, 0x3b, 0x55, 0x6f, 0xdb, + 0x47, 0x5f, 0x85, 0xf4, 0x0e, 0xc1, 0x36, 0x09, 0xf2, 0xc6, 0x92, 0x71, 0x3e, 0x73, 0x25, 0x5f, + 0x8a, 0x01, 0x4a, 0x4a, 0xf7, 0xba, 0x1c, 0x2f, 0x4f, 0x7d, 0xfc, 0x70, 0x71, 0xe4, 0xc3, 0x4f, + 0x3f, 0xba, 0x60, 0xd4, 0xb5, 0x0a, 0xaa, 0x40, 0xfa, 0x16, 0x76, 0x18, 0xe1, 0xf9, 0xd1, 0xa5, + 0xd4, 0xf9, 0xcc, 0x95, 0xb3, 0xa5, 0xfd, 0x7d, 0x5e, 0xda, 0xc2, 0x0e, 0xb5, 0x31, 0xf7, 0x7b, + 0x51, 0x94, 0x6e, 0xf1, 0x67, 0xa3, 0x90, 0x5d, 0xf5, 0x5d, 0x97, 0x32, 0x46, 0x7d, 0xaf, 0x8e, + 0x39, 0x61, 0xe8, 0x4d, 0x18, 0x0b, 0x30, 0x27, 0x72, 0x51, 0x53, 0xe5, 0xd7, 0x85, 0xd2, 0x9f, + 0x1f, 0x2e, 0x9e, 0x56, 0xf0, 0xcc, 0xde, 0x2d, 0x51, 0x7f, 0xd9, 0xc5, 0x7c, 0xa7, 0xf4, 0x16, + 0x69, 0x61, 0xab, 0x5b, 0x21, 0xd6, 0x83, 0x7b, 0x97, 0x40, 0xcf, 0x5e, 0x21, 0x96, 0x9a, 0x41, + 0x62, 0xa0, 0xb7, 0x61, 0xd2, 0xc5, 0x7b, 0xa6, 0xc4, 0x1b, 0x7d, 0x26, 0xbc, 0x09, 0x17, 0xef, + 0x89, 0xf5, 0xa1, 0xef, 0x43, 0x56, 0x40, 0x5a, 0x3b, 0xd8, 0x6b, 0x11, 0x85, 0x9c, 0x7a, 0x26, + 0xe4, 0x19, 0x17, 0xef, 0xad, 0x4a, 0x34, 0x81, 0xbf, 0x32, 0xf6, 0xd9, 0xdd, 0x45, 0xa3, 0xf8, + 0x5b, 0x03, 0x20, 0x76, 0x0c, 0xc2, 0x90, 0xb3, 0xa2, 0x96, 0x9c, 0x94, 0xe9, 0xa0, 0xbd, 0x32, + 0xcc, 0xef, 0x7d, 0x6e, 0x2d, 0xcf, 0x88, 0xe5, 0xdd, 0x7f, 0xb8, 0x68, 0xa8, 0x59, 0xb3, 0xd6, + 0x80, 0xdb, 0x33, 0x9d, 0xb6, 0x8d, 0x39, 0x31, 0x45, 0x0e, 0x4b, 0x6f, 0x65, 0xae, 0x14, 0x4a, + 0x2a, 0xc1, 0x4b, 0x61, 0x82, 0x97, 0x1a, 0x61, 0x82, 0x2b, 0xc0, 0x0f, 0xfe, 0x16, 0x02, 0x82, + 0xd2, 0x16, 0xe3, 0xda, 0x86, 0x0f, 0x0d, 0xc8, 0x54, 0x08, 0xb3, 0x02, 0xda, 0x16, 0x5b, 0x06, + 0xe5, 0x61, 0xc2, 0xf5, 0x3d, 0xba, 0xab, 0x13, 0x6e, 0xaa, 0x1e, 0x36, 0x51, 0x01, 0x26, 0xa9, + 0x4d, 0x3c, 0x4e, 0x79, 0x57, 0x85, 0xa9, 0x1e, 0xb5, 0x85, 0xd6, 0x7b, 0xa4, 0xc9, 0x68, 0xe8, + 0xe7, 0x7a, 0xd8, 0x44, 0xaf, 0x42, 0x8e, 0x11, 0xab, 0x13, 0x50, 0xde, 0x35, 0x2d, 0xdf, 0xe3, + 0xd8, 0xe2, 0xf9, 0x31, 0x29, 0x92, 0x0d, 0xfb, 0x57, 0x55, 0xb7, 0x00, 0xb1, 0x09, 0xc7, 0xd4, + 0x61, 0xf9, 0x71, 0x05, 0xa2, 0x9b, 0x7a, 0xa9, 0xbf, 0x30, 0x60, 0xa6, 0xe1, 0xef, 0x12, 0xaf, + 0xd1, 0x6d, 0x13, 0xb9, 0x39, 0xce, 0x00, 0x70, 0xd1, 0x61, 0x8a, 0x8d, 0x20, 0xd7, 0x3b, 0x5e, + 0x9f, 0xe2, 0xa1, 0x08, 0x22, 0x80, 0x02, 0xf2, 0x1e, 0x0e, 0x6c, 0x66, 0xba, 0x1d, 0x87, 0xd3, + 0xb6, 0x43, 0x49, 0xf0, 0x8c, 0x29, 0x36, 0xa7, 0x11, 0x6f, 0x44, 0x80, 0x7a, 0x75, 0xbf, 0x9a, + 0x84, 0xa9, 0x68, 0x1b, 0xa1, 0x55, 0xc8, 0xf9, 0x6d, 0x12, 0x88, 0xff, 0x26, 0xb6, 0xed, 0x80, + 0x30, 0xa6, 0xf7, 0x4a, 0xfe, 0xc1, 0xbd, 0x4b, 0xf3, 0x1a, 0xf5, 0xaa, 0x1a, 0xd9, 0xe0, 0x01, + 0xf5, 0x5a, 0xf5, 0x6c, 0xa8, 0xa1, 0xbb, 0xd1, 0xbb, 0x22, 0xa1, 0x3c, 0x46, 0x3c, 0xd6, 0x61, + 0x66, 0xbb, 0xd3, 0xdc, 0x25, 0x5d, 0x1d, 0xf2, 0xf9, 0x81, 0x90, 0x5f, 0xf5, 0xba, 0xe5, 0xfc, + 0xef, 0x63, 0x68, 0x2b, 0xe8, 0xb6, 0xb9, 0x5f, 0xaa, 0x75, 0x9a, 0xdf, 0x24, 0x5d, 0x91, 0x48, + 0x1a, 0xa7, 0x26, 0x61, 0xd0, 0x09, 0x48, 0xff, 0x00, 0x53, 0x87, 0xd8, 0x32, 0x5e, 0x93, 0x75, + 0xdd, 0x42, 0x2b, 0x90, 0x66, 0x1c, 0xf3, 0x0e, 0x93, 0x41, 0x9a, 0xbd, 0x52, 0x1c, 0x96, 0xb9, + 0x65, 0xdf, 0xb3, 0x37, 0xa4, 0x64, 0x5d, 0x6b, 0xa0, 0x55, 0x48, 0x4b, 0xdf, 0xeb, 0xf0, 0x95, + 0xbf, 0xa4, 0x5d, 0x7c, 0x7c, 0xd0, 0xc5, 0x55, 0x8f, 0x27, 0x9c, 0x5b, 0xf5, 0x78, 0x5d, 0xab, + 0xa2, 0xef, 0x42, 0xce, 0x26, 0x0e, 0x69, 0x49, 0xcf, 0xb1, 0x1d, 0x1c, 0x10, 0x96, 0x4f, 0x4b, + 0xb8, 0xcb, 0x87, 0x8e, 0x58, 0x3d, 0x1b, 0x41, 0x6d, 0x48, 0x24, 0x54, 0x83, 0x8c, 0x1d, 0x27, + 0x7b, 0x7e, 0x42, 0x3a, 0xf3, 0xa5, 0x61, 0x36, 0x26, 0xf6, 0x45, 0x92, 0x17, 0x93, 0x10, 0x22, + 0xbf, 0x3b, 0x5e, 0xd3, 0xf7, 0x6c, 0xea, 0xb5, 0xcc, 0x1d, 0x42, 0x5b, 0x3b, 0x3c, 0x3f, 0xb9, + 0x64, 0x9c, 0x4f, 0xd5, 0xb3, 0x51, 0xff, 0x75, 0xd9, 0x8d, 0x6a, 0x30, 0x1b, 0x8b, 0xca, 0xfd, + 0x3b, 0x75, 0xd8, 0xfd, 0x3b, 0x13, 0x01, 0x08, 0x11, 0x74, 0x03, 0x20, 0x66, 0x88, 0x3c, 0x48, + 0xb4, 0xe2, 0xc1, 0x5c, 0x93, 0x34, 0x26, 0x01, 0x80, 0xbe, 0x03, 0xc7, 0x5c, 0xea, 0x99, 0x8c, + 0x38, 0xdb, 0xa6, 0xf6, 0x9c, 0xc0, 0xcd, 0x1c, 0x3e, 0x9a, 0x73, 0x2e, 0xf5, 0x36, 0x88, 0xb3, + 0x5d, 0x89, 0x50, 0xd0, 0xd7, 0xe0, 0x74, 0x6c, 0xbd, 0xef, 0x99, 0x3b, 0xbe, 0x63, 0x9b, 0x01, + 0xd9, 0x36, 0x2d, 0xbf, 0xe3, 0xf1, 0xfc, 0xb4, 0xf4, 0xd9, 0xc9, 0x48, 0xe4, 0xa6, 0x77, 0xdd, + 0x77, 0xec, 0x3a, 0xd9, 0x5e, 0x15, 0xc3, 0xe8, 0x25, 0x88, 0x4d, 0x37, 0xa9, 0xcd, 0xf2, 0x33, + 0x4b, 0xa9, 0xf3, 0x63, 0xf5, 0xe9, 0xa8, 0xb3, 0x6a, 0x33, 0x74, 0x11, 0x10, 0xeb, 0xb4, 0xdb, + 0x7e, 0xc0, 0xcd, 0x04, 0x2d, 0xcc, 0x4a, 0x5a, 0xc8, 0xe9, 0x91, 0x88, 0x40, 0xd0, 0x2e, 0xe4, + 0xe3, 0x4c, 0x0b, 0x79, 0x42, 0x67, 0x5c, 0xf6, 0xa8, 0x19, 0x77, 0x22, 0x82, 0xac, 0x2b, 0x44, + 0x95, 0x78, 0x2b, 0x93, 0xef, 0xdf, 0x5d, 0x1c, 0xf9, 0xec, 0xee, 0xe2, 0x48, 0xf1, 0x1a, 0x4c, + 0x6f, 0x61, 0x47, 0x6f, 0x71, 0xc2, 0xd0, 0xeb, 0x30, 0x85, 0xc3, 0x46, 0xde, 0x58, 0x4a, 0x3d, + 0x91, 0x22, 0x62, 0xd1, 0xe2, 0xaf, 0x0d, 0x48, 0x57, 0xb6, 0x6a, 0x98, 0x06, 0x68, 0x0d, 0xe6, + 0x62, 0x4b, 0x9e, 0x96, 0x6d, 0xe2, 0x6d, 0x16, 0xd2, 0xcd, 0x3a, 0xcc, 0xdd, 0x0a, 0x09, 0x2c, + 0x82, 0x51, 0x6c, 0x79, 0xf6, 0xc1, 0xbd, 0x4b, 0x67, 0x34, 0x4c, 0x44, 0x72, 0x7d, 0x78, 0xb7, + 0xfa, 0xfa, 0x13, 0x36, 0xbf, 0x09, 0x13, 0x6a, 0xa9, 0x0c, 0x7d, 0x03, 0xc6, 0xdb, 0xe2, 0x8f, + 0x34, 0x35, 0x73, 0x65, 0x61, 0xe8, 0xde, 0x93, 0xf2, 0xc9, 0x4c, 0x55, 0x7a, 0xc5, 0x1f, 0x8f, + 0x02, 0x54, 0xb6, 0xb6, 0x1a, 0x01, 0x6d, 0x3b, 0x84, 0x3f, 0x2f, 0xdb, 0x37, 0xe1, 0x78, 0x6c, + 0x3b, 0x0b, 0xac, 0xc3, 0xdb, 0x7f, 0x2c, 0xd2, 0xdf, 0x08, 0xac, 0x7d, 0x61, 0x6d, 0xc6, 0x23, + 0xd8, 0xd4, 0xe1, 0x61, 0x2b, 0x8c, 0x0f, 0x7a, 0xf6, 0x1d, 0xc8, 0xc4, 0xce, 0x60, 0xa8, 0x0a, + 0x93, 0x5c, 0xff, 0xd7, 0x0e, 0x2e, 0x0e, 0x77, 0x70, 0xa8, 0x96, 0x74, 0x72, 0xa4, 0x5e, 0xfc, + 0x8b, 0x01, 0xe9, 0x1a, 0x09, 0xa8, 0x6f, 0xa3, 0x45, 0xc8, 0xb4, 0xe5, 0xbf, 0xe4, 0x39, 0x0b, + 0xaa, 0x4b, 0x6e, 0xa5, 0x0a, 0x4c, 0x86, 0x35, 0xb7, 0x3e, 0xa0, 0x4e, 0x0d, 0x70, 0x5a, 0x45, + 0x0b, 0x28, 0x4a, 0xfb, 0x79, 0x44, 0x69, 0x91, 0xe6, 0x90, 0xe3, 0x3a, 0xf5, 0xbf, 0x39, 0xae, + 0xff, 0x34, 0x0a, 0x39, 0x65, 0x5e, 0x82, 0xa3, 0xbe, 0x02, 0xf3, 0xda, 0xd0, 0x98, 0xfe, 0x4c, + 0x6a, 0xeb, 0x7c, 0x1a, 0x57, 0x90, 0xa8, 0xdd, 0xa7, 0x56, 0xb5, 0x51, 0x15, 0xd2, 0x9a, 0x39, + 0x46, 0x8f, 0xca, 0x1c, 0x1a, 0x00, 0xbd, 0x03, 0xb3, 0x7d, 0x64, 0x94, 0x3a, 0x2a, 0xe4, 0x4c, + 0x90, 0xe4, 0xa0, 0xfe, 0x30, 0x8e, 0xed, 0x17, 0x46, 0xe2, 0xd9, 0xea, 0x68, 0x1a, 0x3f, 0xec, + 0xd1, 0x34, 0x41, 0x3c, 0x5b, 0x0c, 0x16, 0x1f, 0x88, 0x0d, 0x1a, 0xfb, 0xf4, 0xc5, 0x24, 0xa7, + 0x44, 0xc4, 0x52, 0xcf, 0x3f, 0x62, 0x63, 0xcf, 0x27, 0x62, 0x89, 0x7d, 0xfe, 0x93, 0x51, 0x38, + 0xb6, 0x19, 0x9e, 0x75, 0x2f, 0xbe, 0x77, 0x37, 0x61, 0x82, 0x78, 0x3c, 0xa0, 0xd2, 0xbd, 0x82, + 0x86, 0x5e, 0x1b, 0x46, 0x43, 0xfb, 0x18, 0xb5, 0xe6, 0xf1, 0xa0, 0x9b, 0x24, 0xa5, 0x10, 0x2b, + 0xe1, 0x8f, 0x3f, 0xa6, 0x20, 0x3f, 0x4c, 0x15, 0xbd, 0x02, 0x59, 0x2b, 0x20, 0x6a, 0xf7, 0xea, + 0x92, 0xcc, 0x90, 0xe5, 0xc5, 0x6c, 0xd8, 0xad, 0x2b, 0xb2, 0x3a, 0x88, 0x1b, 0x96, 0xe0, 0x3b, + 0x21, 0x7a, 0xb4, 0x2b, 0xd5, 0x6c, 0x8c, 0x20, 0x6b, 0xb2, 0x06, 0x64, 0xa9, 0x47, 0x39, 0xc5, + 0x8e, 0xd9, 0xc4, 0x0e, 0xf6, 0xac, 0xf0, 0xea, 0x79, 0xa8, 0x02, 0x6a, 0x56, 0x63, 0x94, 0x15, + 0x04, 0x5a, 0x83, 0x89, 0x10, 0x6d, 0xec, 0xf0, 0x68, 0xa1, 0x2e, 0x3a, 0x0b, 0xd3, 0xc9, 0x32, + 0x4a, 0xee, 0xf2, 0xb1, 0x7a, 0x26, 0x51, 0x45, 0x1d, 0x54, 0xa7, 0xa5, 0x9f, 0x5c, 0xa7, 0x0d, + 0x63, 0xd0, 0x89, 0x03, 0x18, 0x54, 0xb3, 0xf2, 0x27, 0x29, 0x98, 0xab, 0x13, 0xfb, 0xff, 0x3f, + 0x9e, 0x35, 0x00, 0xc5, 0x15, 0xa2, 0x2a, 0x38, 0x3a, 0x5f, 0x4c, 0x29, 0x90, 0x0a, 0xe3, 0x2f, + 0x7c, 0x68, 0xff, 0x3a, 0x0a, 0xd3, 0xc9, 0xd0, 0x7e, 0x2e, 0x2b, 0x37, 0xb4, 0x1e, 0x13, 0xe3, + 0x98, 0x24, 0xc6, 0x57, 0x87, 0x11, 0xe3, 0xc0, 0x36, 0x38, 0x80, 0x11, 0xff, 0x31, 0x0e, 0xe9, + 0x1a, 0x0e, 0xb0, 0xcb, 0xd0, 0xcd, 0x81, 0x8b, 0xa6, 0x71, 0xc8, 0xa2, 0xac, 0xef, 0x9e, 0xf9, + 0x32, 0xcc, 0xba, 0x78, 0xcf, 0x8c, 0x0c, 0x52, 0xce, 0x9d, 0x91, 0xaf, 0x62, 0x91, 0xf5, 0xb2, + 0xc0, 0x10, 0x62, 0x31, 0xf3, 0x0b, 0x19, 0x70, 0xf1, 0xde, 0x9a, 0xea, 0x41, 0x97, 0x00, 0xed, + 0x44, 0xcf, 0x9b, 0x66, 0xec, 0x08, 0x21, 0x37, 0x17, 0x8f, 0x84, 0xe2, 0x67, 0x00, 0xc4, 0x2a, + 0x4c, 0x9b, 0x78, 0xbe, 0xab, 0xdf, 0x84, 0xa6, 0x44, 0x4f, 0x45, 0x74, 0xa0, 0x1f, 0x19, 0xea, + 0xbe, 0xda, 0xf7, 0xe8, 0xa6, 0x9f, 0x0b, 0x1a, 0x4f, 0xb1, 0x9b, 0xfe, 0xf3, 0x70, 0xb1, 0xd0, + 0xc5, 0xae, 0xb3, 0x52, 0xdc, 0x07, 0xa7, 0xb8, 0x6f, 0x3d, 0xe9, 0x52, 0xaf, 0xf7, 0xd1, 0x0e, + 0xd5, 0x61, 0x56, 0x68, 0x27, 0x2e, 0xcc, 0x13, 0x87, 0xe7, 0x87, 0x19, 0x97, 0x7a, 0x89, 0x63, + 0xfd, 0x35, 0x98, 0xdf, 0x76, 0xc8, 0x1e, 0x6d, 0x3a, 0xc4, 0x4c, 0xd6, 0x6c, 0x93, 0xb2, 0x66, + 0x43, 0xe1, 0x58, 0x2d, 0xae, 0xdd, 0x56, 0x61, 0x42, 0x09, 0xb2, 0xfc, 0xd4, 0x93, 0x6f, 0x56, + 0x4a, 0xa9, 0x27, 0x9b, 0xb4, 0x26, 0xba, 0x00, 0x73, 0x8e, 0x6f, 0xed, 0x12, 0x3b, 0x79, 0x7f, + 0x06, 0x39, 0x67, 0x56, 0x0d, 0xc4, 0xd7, 0xe7, 0xb7, 0x21, 0x13, 0x0b, 0xb1, 0x7c, 0x46, 0x4e, + 0xfa, 0xf2, 0xb0, 0x49, 0x7b, 0xde, 0xed, 0x7a, 0xde, 0x1f, 0xa2, 0xe7, 0x3a, 0xb6, 0x72, 0x4e, + 0x10, 0xc5, 0xed, 0x4f, 0x3f, 0xba, 0xa0, 0x63, 0x76, 0x89, 0xd9, 0xbb, 0xcb, 0x7b, 0xd1, 0x67, + 0x04, 0x95, 0xdd, 0xe2, 0xe2, 0x8b, 0x62, 0x57, 0xd5, 0x09, 0x6b, 0xfb, 0x1e, 0x93, 0x6f, 0x21, + 0x89, 0x10, 0x18, 0x4f, 0x7e, 0x0b, 0x89, 0xf5, 0x7b, 0xd6, 0x92, 0x60, 0xa7, 0xaf, 0xc7, 0x07, + 0x6e, 0x78, 0xa3, 0xd1, 0x58, 0x4d, 0xcc, 0x48, 0xe2, 0x51, 0x85, 0xf6, 0x40, 0x84, 0x4a, 0x92, + 0xf4, 0x46, 0x8a, 0x7f, 0x30, 0xe0, 0xd4, 0xc0, 0x46, 0x8e, 0x96, 0x6c, 0x89, 0x0b, 0x4f, 0x82, + 0x4c, 0xc5, 0x86, 0xe8, 0xea, 0xa5, 0x1f, 0x8d, 0x17, 0xe6, 0x82, 0x81, 0xc3, 0xf3, 0xf9, 0x54, + 0x0e, 0x9a, 0xc4, 0x7f, 0x67, 0xc0, 0x7c, 0x72, 0x01, 0x91, 0x29, 0x1b, 0x30, 0x9d, 0x9c, 0x5a, + 0x1b, 0x71, 0xee, 0x69, 0x8c, 0x48, 0xae, 0xbf, 0x07, 0x04, 0x6d, 0xc5, 0x64, 0xa9, 0xbe, 0x5f, + 0x5c, 0x7e, 0x6a, 0xa7, 0x84, 0x0b, 0xdb, 0x97, 0x34, 0x55, 0x6c, 0xfe, 0x65, 0xc0, 0x58, 0xcd, + 0xf7, 0x1d, 0xf4, 0x43, 0x98, 0xf3, 0x7c, 0x6e, 0x0a, 0x62, 0x09, 0x33, 0x3f, 0x3c, 0x88, 0xd6, + 0x9e, 0xe8, 0xab, 0x7f, 0x3e, 0x5c, 0x1c, 0xd4, 0xec, 0x75, 0xa0, 0x7e, 0xc7, 0xf7, 0x7c, 0x5e, + 0x96, 0x42, 0x0d, 0xf5, 0xca, 0xb9, 0x0d, 0x33, 0xbd, 0xd3, 0xa9, 0xc3, 0xea, 0xea, 0x41, 0xd3, + 0xcd, 0x1c, 0x38, 0xd5, 0x74, 0x33, 0x31, 0xcf, 0xca, 0xa4, 0x88, 0xda, 0xbf, 0x45, 0xe4, 0xde, + 0x85, 0x5c, 0xc4, 0xd4, 0x9b, 0xf2, 0x23, 0x00, 0x13, 0xa9, 0xa1, 0xbe, 0x07, 0x84, 0x8f, 0x05, + 0x4b, 0xc9, 0x8f, 0x4b, 0xb8, 0x69, 0xd1, 0x52, 0x9f, 0x4e, 0x8f, 0x3b, 0xb5, 0xee, 0x85, 0xdf, + 0x18, 0x00, 0xf1, 0x73, 0x30, 0xba, 0x08, 0x27, 0xcb, 0x37, 0xd7, 0x2b, 0xe6, 0x46, 0xe3, 0x6a, + 0x63, 0x73, 0xc3, 0xdc, 0x5c, 0xdf, 0xa8, 0xad, 0xad, 0x56, 0xaf, 0x55, 0xd7, 0x2a, 0xb9, 0x91, + 0x42, 0xf6, 0xf6, 0x9d, 0xa5, 0xcc, 0xa6, 0xc7, 0xda, 0xc4, 0xa2, 0xdb, 0x94, 0xd8, 0xe8, 0x8b, + 0x30, 0xdf, 0x2b, 0x2d, 0x5a, 0x6b, 0x95, 0x9c, 0x51, 0x98, 0xbe, 0x7d, 0x67, 0x69, 0x52, 0xd5, + 0xf8, 0xc4, 0x46, 0xe7, 0xe1, 0xf8, 0xa0, 0x5c, 0x75, 0xfd, 0x8d, 0xdc, 0x68, 0x61, 0xe6, 0xf6, + 0x9d, 0xa5, 0xa9, 0xe8, 0x32, 0x80, 0x8a, 0x80, 0x92, 0x92, 0x1a, 0x2f, 0x55, 0x80, 0xdb, 0x77, + 0x96, 0xd2, 0x2a, 0x0a, 0x85, 0xb1, 0xf7, 0x7f, 0xb9, 0x30, 0x72, 0xe1, 0x7b, 0x00, 0x55, 0x6f, + 0x3b, 0xc0, 0x96, 0xcc, 0xb6, 0x02, 0x9c, 0xa8, 0xae, 0x5f, 0xab, 0x5f, 0x5d, 0x6d, 0x54, 0x6f, + 0xae, 0xf7, 0x2e, 0xbb, 0x6f, 0xac, 0x72, 0x73, 0xb3, 0xfc, 0xd6, 0x9a, 0xb9, 0x51, 0x7d, 0x63, + 0x3d, 0x67, 0xa0, 0x93, 0x70, 0xac, 0x67, 0xec, 0x5b, 0xeb, 0x8d, 0xea, 0x8d, 0xb5, 0xdc, 0x68, + 0xf9, 0xda, 0xc7, 0x8f, 0x16, 0x8c, 0xfb, 0x8f, 0x16, 0x8c, 0xbf, 0x3f, 0x5a, 0x30, 0x3e, 0x78, + 0xbc, 0x30, 0x72, 0xff, 0xf1, 0xc2, 0xc8, 0x27, 0x8f, 0x17, 0x46, 0xbe, 0x7d, 0xb1, 0x45, 0xf9, + 0x4e, 0xa7, 0x59, 0xb2, 0x7c, 0x57, 0x7f, 0x6e, 0x5c, 0xde, 0x97, 0xf1, 0x24, 0xb5, 0x36, 0xd3, + 0xf2, 0xb8, 0xfe, 0xf2, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x5d, 0x83, 0x31, 0x57, 0x1d, + 0x00, 0x00, } func (this *Pool) Description() (desc *github_com_cosmos_gogoproto_protoc_gen_gogo_descriptor.FileDescriptorSet) { @@ -1635,725 +1644,726 @@ func (this *Pool) Description() (desc *github_com_cosmos_gogoproto_protoc_gen_go func StakingDescription() (desc *github_com_cosmos_gogoproto_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_cosmos_gogoproto_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ - // 11482 bytes of a gzipped FileDescriptorSet - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x79, 0x90, 0x1c, 0xd7, - 0x79, 0xdf, 0xce, 0x3d, 0xf3, 0xcd, 0xd5, 0xfb, 0x76, 0x01, 0x0c, 0x06, 0x24, 0x76, 0x39, 0x14, - 0x49, 0x10, 0x24, 0x17, 0x24, 0x48, 0x80, 0xe4, 0x42, 0x14, 0x33, 0x33, 0x3b, 0x58, 0x0c, 0xb8, - 0x17, 0x7b, 0x66, 0x21, 0x92, 0xb6, 0xd5, 0xee, 0xed, 0x79, 0xbb, 0xdb, 0xc4, 0x4c, 0x77, 0xab, - 0xbb, 0x07, 0xd8, 0x65, 0xa5, 0x52, 0x72, 0x64, 0x27, 0x32, 0x7c, 0x44, 0x8e, 0x5d, 0xb6, 0x6c, - 0x09, 0x8e, 0x64, 0xc7, 0xb6, 0x6c, 0xe7, 0xf0, 0xa1, 0xf8, 0xac, 0x38, 0x76, 0x4e, 0xdb, 0x95, - 0xa4, 0x14, 0x55, 0x2a, 0x76, 0x52, 0x31, 0x63, 0x4b, 0xae, 0x58, 0x91, 0xe5, 0xc4, 0x07, 0x9d, - 0xa3, 0x54, 0x49, 0xa5, 0xde, 0xd5, 0xc7, 0x1c, 0x3b, 0xb3, 0x10, 0x29, 0x2b, 0x76, 0xfe, 0x01, - 0xa6, 0xdf, 0xfb, 0xbe, 0xdf, 0x7b, 0xef, 0x7b, 0xdf, 0xfb, 0xde, 0xf7, 0xbe, 0x77, 0x2c, 0xfc, - 0x4e, 0x0d, 0x16, 0xf7, 0x4c, 0x73, 0xaf, 0x8b, 0x2f, 0x58, 0xb6, 0xe9, 0x9a, 0x3b, 0xfd, 0xdd, - 0x0b, 0x1d, 0xec, 0x68, 0xb6, 0x6e, 0xb9, 0xa6, 0xbd, 0x44, 0xd3, 0x50, 0x91, 0x51, 0x2c, 0x09, - 0x8a, 0xca, 0x3a, 0xcc, 0x5e, 0xd5, 0xbb, 0x78, 0xc5, 0x23, 0x6c, 0x61, 0x17, 0x3d, 0x07, 0xf1, - 0x5d, 0xbd, 0x8b, 0x4b, 0x91, 0xc5, 0xd8, 0xb9, 0xec, 0xc5, 0x77, 0x2d, 0x0d, 0x30, 0x2d, 0x85, - 0x39, 0xb6, 0x48, 0xb2, 0x4c, 0x39, 0x2a, 0xff, 0x27, 0x0e, 0x73, 0x23, 0x72, 0x11, 0x82, 0xb8, - 0xa1, 0xf6, 0x08, 0x62, 0xe4, 0x5c, 0x46, 0xa6, 0xbf, 0x51, 0x09, 0x52, 0x96, 0xaa, 0xdd, 0x54, - 0xf7, 0x70, 0x29, 0x4a, 0x93, 0xc5, 0x27, 0x3a, 0x0b, 0xd0, 0xc1, 0x16, 0x36, 0x3a, 0xd8, 0xd0, - 0x0e, 0x4b, 0xb1, 0xc5, 0xd8, 0xb9, 0x8c, 0x1c, 0x48, 0x41, 0x8f, 0xc1, 0xac, 0xd5, 0xdf, 0xe9, - 0xea, 0x9a, 0x12, 0x20, 0x83, 0xc5, 0xd8, 0xb9, 0x84, 0x2c, 0xb1, 0x8c, 0x15, 0x9f, 0xf8, 0x11, - 0x28, 0xde, 0xc6, 0xea, 0xcd, 0x20, 0x69, 0x96, 0x92, 0x16, 0x48, 0x72, 0x80, 0xb0, 0x0e, 0xb9, - 0x1e, 0x76, 0x1c, 0x75, 0x0f, 0x2b, 0xee, 0xa1, 0x85, 0x4b, 0x71, 0xda, 0xfa, 0xc5, 0xa1, 0xd6, - 0x0f, 0xb6, 0x3c, 0xcb, 0xb9, 0xda, 0x87, 0x16, 0x46, 0x55, 0xc8, 0x60, 0xa3, 0xdf, 0x63, 0x08, - 0x89, 0x31, 0xf2, 0x6b, 0x18, 0xfd, 0xde, 0x20, 0x4a, 0x9a, 0xb0, 0x71, 0x88, 0x94, 0x83, 0xed, - 0x5b, 0xba, 0x86, 0x4b, 0x49, 0x0a, 0xf0, 0xc8, 0x10, 0x40, 0x8b, 0xe5, 0x0f, 0x62, 0x08, 0x3e, - 0x54, 0x87, 0x0c, 0x3e, 0x70, 0xb1, 0xe1, 0xe8, 0xa6, 0x51, 0x4a, 0x51, 0x90, 0x87, 0x46, 0xf4, - 0x22, 0xee, 0x76, 0x06, 0x21, 0x7c, 0x3e, 0x74, 0x19, 0x52, 0xa6, 0xe5, 0xea, 0xa6, 0xe1, 0x94, - 0xd2, 0x8b, 0x91, 0x73, 0xd9, 0x8b, 0xf7, 0x8d, 0x54, 0x84, 0x4d, 0x46, 0x23, 0x0b, 0x62, 0xd4, - 0x04, 0xc9, 0x31, 0xfb, 0xb6, 0x86, 0x15, 0xcd, 0xec, 0x60, 0x45, 0x37, 0x76, 0xcd, 0x52, 0x86, - 0x02, 0x2c, 0x0c, 0x37, 0x84, 0x12, 0xd6, 0xcd, 0x0e, 0x6e, 0x1a, 0xbb, 0xa6, 0x5c, 0x70, 0x42, - 0xdf, 0xe8, 0x24, 0x24, 0x9d, 0x43, 0xc3, 0x55, 0x0f, 0x4a, 0x39, 0xaa, 0x21, 0xfc, 0x8b, 0xa8, - 0x0e, 0xee, 0xe8, 0xa4, 0xb8, 0x52, 0x9e, 0xa9, 0x0e, 0xff, 0xac, 0xfc, 0x7c, 0x12, 0x8a, 0xd3, - 0x28, 0xdf, 0x15, 0x48, 0xec, 0x92, 0xf6, 0x97, 0xa2, 0xc7, 0x91, 0x0e, 0xe3, 0x09, 0x8b, 0x37, - 0x79, 0x8f, 0xe2, 0xad, 0x42, 0xd6, 0xc0, 0x8e, 0x8b, 0x3b, 0x4c, 0x57, 0x62, 0x53, 0x6a, 0x1b, - 0x30, 0xa6, 0x61, 0x65, 0x8b, 0xdf, 0x93, 0xb2, 0xbd, 0x02, 0x45, 0xaf, 0x4a, 0x8a, 0xad, 0x1a, - 0x7b, 0x42, 0x6b, 0x2f, 0x4c, 0xaa, 0xc9, 0x52, 0x43, 0xf0, 0xc9, 0x84, 0x4d, 0x2e, 0xe0, 0xd0, - 0x37, 0x5a, 0x01, 0x30, 0x0d, 0x6c, 0xee, 0x2a, 0x1d, 0xac, 0x75, 0x4b, 0xe9, 0x31, 0x52, 0xda, - 0x24, 0x24, 0x43, 0x52, 0x32, 0x59, 0xaa, 0xd6, 0x45, 0xcf, 0xfb, 0x4a, 0x98, 0x1a, 0xa3, 0x43, - 0xeb, 0x6c, 0xf8, 0x0d, 0xe9, 0xe1, 0x36, 0x14, 0x6c, 0x4c, 0x46, 0x04, 0xee, 0xf0, 0x96, 0x65, - 0x68, 0x25, 0x96, 0x26, 0xb6, 0x4c, 0xe6, 0x6c, 0xac, 0x61, 0x79, 0x3b, 0xf8, 0x89, 0x1e, 0x04, - 0x2f, 0x41, 0xa1, 0x6a, 0x05, 0xd4, 0x3e, 0xe5, 0x44, 0xe2, 0x86, 0xda, 0xc3, 0xe5, 0x37, 0xa0, - 0x10, 0x16, 0x0f, 0x9a, 0x87, 0x84, 0xe3, 0xaa, 0xb6, 0x4b, 0xb5, 0x30, 0x21, 0xb3, 0x0f, 0x24, - 0x41, 0x0c, 0x1b, 0x1d, 0x6a, 0xff, 0x12, 0x32, 0xf9, 0x89, 0xfe, 0x92, 0xdf, 0xe0, 0x18, 0x6d, - 0xf0, 0xc3, 0xc3, 0x3d, 0x1a, 0x42, 0x1e, 0x6c, 0x77, 0xf9, 0x59, 0xc8, 0x87, 0x1a, 0x30, 0x6d, - 0xd1, 0x95, 0xbf, 0x0c, 0x27, 0x46, 0x42, 0xa3, 0x57, 0x60, 0xbe, 0x6f, 0xe8, 0x86, 0x8b, 0x6d, - 0xcb, 0xc6, 0x44, 0x63, 0x59, 0x51, 0xa5, 0xdf, 0x4b, 0x8d, 0xd1, 0xb9, 0xed, 0x20, 0x35, 0x43, - 0x91, 0xe7, 0xfa, 0xc3, 0x89, 0xe7, 0x33, 0xe9, 0xcf, 0xa7, 0xa4, 0x0f, 0x7c, 0xe0, 0x03, 0x1f, - 0x88, 0x56, 0x7e, 0x25, 0x09, 0xf3, 0xa3, 0xc6, 0xcc, 0xc8, 0xe1, 0x7b, 0x12, 0x92, 0x46, 0xbf, - 0xb7, 0x83, 0x6d, 0x2a, 0xa4, 0x84, 0xcc, 0xbf, 0x50, 0x15, 0x12, 0x5d, 0x75, 0x07, 0x77, 0x4b, - 0xf1, 0xc5, 0xc8, 0xb9, 0xc2, 0xc5, 0xc7, 0xa6, 0x1a, 0x95, 0x4b, 0x6b, 0x84, 0x45, 0x66, 0x9c, - 0xe8, 0x3d, 0x10, 0xe7, 0xc6, 0x9b, 0x20, 0x9c, 0x9f, 0x0e, 0x81, 0x8c, 0x25, 0x99, 0xf2, 0xa1, - 0x33, 0x90, 0x21, 0xff, 0x33, 0xdd, 0x48, 0xd2, 0x3a, 0xa7, 0x49, 0x02, 0xd1, 0x0b, 0x54, 0x86, - 0x34, 0x1d, 0x26, 0x1d, 0x2c, 0x26, 0x3d, 0xef, 0x9b, 0x28, 0x56, 0x07, 0xef, 0xaa, 0xfd, 0xae, - 0xab, 0xdc, 0x52, 0xbb, 0x7d, 0x4c, 0x15, 0x3e, 0x23, 0xe7, 0x78, 0xe2, 0x0d, 0x92, 0x86, 0x16, - 0x20, 0xcb, 0x46, 0x95, 0x6e, 0x74, 0xf0, 0x01, 0xb5, 0xab, 0x09, 0x99, 0x0d, 0xb4, 0x26, 0x49, - 0x21, 0xc5, 0xbf, 0xee, 0x98, 0x86, 0x50, 0x4d, 0x5a, 0x04, 0x49, 0xa0, 0xc5, 0x3f, 0x3b, 0x68, - 0xd2, 0xef, 0x1f, 0xdd, 0xbc, 0xa1, 0xb1, 0xf4, 0x08, 0x14, 0x29, 0xc5, 0xd3, 0xbc, 0xeb, 0xd5, - 0x6e, 0x69, 0x76, 0x31, 0x72, 0x2e, 0x2d, 0x17, 0x58, 0xf2, 0x26, 0x4f, 0xad, 0xfc, 0x4c, 0x14, - 0xe2, 0xd4, 0xb0, 0x14, 0x21, 0xdb, 0x7e, 0x75, 0xab, 0xa1, 0xac, 0x6c, 0x6e, 0xd7, 0xd6, 0x1a, - 0x52, 0x04, 0x15, 0x00, 0x68, 0xc2, 0xd5, 0xb5, 0xcd, 0x6a, 0x5b, 0x8a, 0x7a, 0xdf, 0xcd, 0x8d, - 0xf6, 0xe5, 0x67, 0xa4, 0x98, 0xc7, 0xb0, 0xcd, 0x12, 0xe2, 0x41, 0x82, 0xa7, 0x2f, 0x4a, 0x09, - 0x24, 0x41, 0x8e, 0x01, 0x34, 0x5f, 0x69, 0xac, 0x5c, 0x7e, 0x46, 0x4a, 0x86, 0x53, 0x9e, 0xbe, - 0x28, 0xa5, 0x50, 0x1e, 0x32, 0x34, 0xa5, 0xb6, 0xb9, 0xb9, 0x26, 0xa5, 0x3d, 0xcc, 0x56, 0x5b, - 0x6e, 0x6e, 0xac, 0x4a, 0x19, 0x0f, 0x73, 0x55, 0xde, 0xdc, 0xde, 0x92, 0xc0, 0x43, 0x58, 0x6f, - 0xb4, 0x5a, 0xd5, 0xd5, 0x86, 0x94, 0xf5, 0x28, 0x6a, 0xaf, 0xb6, 0x1b, 0x2d, 0x29, 0x17, 0xaa, - 0xd6, 0xd3, 0x17, 0xa5, 0xbc, 0x57, 0x44, 0x63, 0x63, 0x7b, 0x5d, 0x2a, 0xa0, 0x59, 0xc8, 0xb3, - 0x22, 0x44, 0x25, 0x8a, 0x03, 0x49, 0x97, 0x9f, 0x91, 0x24, 0xbf, 0x22, 0x0c, 0x65, 0x36, 0x94, - 0x70, 0xf9, 0x19, 0x09, 0x55, 0xea, 0x90, 0xa0, 0x6a, 0x88, 0x10, 0x14, 0xd6, 0xaa, 0xb5, 0xc6, - 0x9a, 0xb2, 0xb9, 0xd5, 0x6e, 0x6e, 0x6e, 0x54, 0xd7, 0xa4, 0x88, 0x9f, 0x26, 0x37, 0x5e, 0xde, - 0x6e, 0xca, 0x8d, 0x15, 0x29, 0x1a, 0x4c, 0xdb, 0x6a, 0x54, 0xdb, 0x8d, 0x15, 0x29, 0x56, 0xd1, - 0x60, 0x7e, 0x94, 0x41, 0x1d, 0x39, 0x84, 0x02, 0xba, 0x10, 0x1d, 0xa3, 0x0b, 0x14, 0x6b, 0x50, - 0x17, 0x2a, 0x9f, 0x8b, 0xc2, 0xdc, 0x88, 0x49, 0x65, 0x64, 0x21, 0x2f, 0x42, 0x82, 0xe9, 0x32, - 0x9b, 0x66, 0x1f, 0x1d, 0x39, 0x3b, 0x51, 0xcd, 0x1e, 0x9a, 0x6a, 0x29, 0x5f, 0xd0, 0x09, 0x89, - 0x8d, 0x71, 0x42, 0x08, 0xc4, 0x90, 0xc2, 0x7e, 0xdd, 0x90, 0xf1, 0x67, 0xf3, 0xe3, 0xe5, 0x69, - 0xe6, 0x47, 0x9a, 0x76, 0xbc, 0x49, 0x20, 0x31, 0x62, 0x12, 0xb8, 0x02, 0xb3, 0x43, 0x40, 0x53, - 0x1b, 0xe3, 0x0f, 0x46, 0xa0, 0x34, 0x4e, 0x38, 0x13, 0x4c, 0x62, 0x34, 0x64, 0x12, 0xaf, 0x0c, - 0x4a, 0xf0, 0x81, 0xf1, 0x9d, 0x30, 0xd4, 0xd7, 0x3f, 0x12, 0x81, 0x93, 0xa3, 0x9d, 0xcd, 0x91, - 0x75, 0x78, 0x0f, 0x24, 0x7b, 0xd8, 0xdd, 0x37, 0x85, 0x5b, 0xf5, 0xf0, 0x88, 0xc9, 0x9a, 0x64, - 0x0f, 0x76, 0x36, 0xe7, 0x0a, 0xce, 0xf6, 0xb1, 0x71, 0x1e, 0x23, 0xab, 0xcd, 0x50, 0x4d, 0xbf, - 0x39, 0x0a, 0x27, 0x46, 0x82, 0x8f, 0xac, 0xe8, 0xfd, 0x00, 0xba, 0x61, 0xf5, 0x5d, 0xe6, 0x3a, - 0x31, 0x4b, 0x9c, 0xa1, 0x29, 0xd4, 0x78, 0x11, 0x2b, 0xdb, 0x77, 0xbd, 0xfc, 0x18, 0xcd, 0x07, - 0x96, 0x44, 0x09, 0x9e, 0xf3, 0x2b, 0x1a, 0xa7, 0x15, 0x3d, 0x3b, 0xa6, 0xa5, 0x43, 0x8a, 0xf9, - 0x24, 0x48, 0x5a, 0x57, 0xc7, 0x86, 0xab, 0x38, 0xae, 0x8d, 0xd5, 0x9e, 0x6e, 0xec, 0xd1, 0xa9, - 0x26, 0xbd, 0x9c, 0xd8, 0x55, 0xbb, 0x0e, 0x96, 0x8b, 0x2c, 0xbb, 0x25, 0x72, 0x09, 0x07, 0x55, - 0x20, 0x3b, 0xc0, 0x91, 0x0c, 0x71, 0xb0, 0x6c, 0x8f, 0xa3, 0xf2, 0x1d, 0x19, 0xc8, 0x06, 0x5c, - 0x73, 0xf4, 0x00, 0xe4, 0x5e, 0x57, 0x6f, 0xa9, 0x8a, 0x58, 0x6e, 0x31, 0x49, 0x64, 0x49, 0xda, - 0x16, 0x5f, 0x72, 0x3d, 0x09, 0xf3, 0x94, 0xc4, 0xec, 0xbb, 0xd8, 0x56, 0xb4, 0xae, 0xea, 0x38, - 0x54, 0x68, 0x69, 0x4a, 0x8a, 0x48, 0xde, 0x26, 0xc9, 0xaa, 0x8b, 0x1c, 0x74, 0x09, 0xe6, 0x28, - 0x47, 0xaf, 0xdf, 0x75, 0x75, 0xab, 0x8b, 0x15, 0xb2, 0x00, 0x74, 0xe8, 0x94, 0xe3, 0xd5, 0x6c, - 0x96, 0x50, 0xac, 0x73, 0x02, 0x52, 0x23, 0x07, 0xad, 0xc0, 0xfd, 0x94, 0x6d, 0x0f, 0x1b, 0xd8, - 0x56, 0x5d, 0xac, 0xe0, 0xf7, 0xf7, 0xd5, 0xae, 0xa3, 0xa8, 0x46, 0x47, 0xd9, 0x57, 0x9d, 0xfd, - 0xd2, 0x3c, 0x01, 0xa8, 0x45, 0x4b, 0x11, 0xf9, 0x34, 0x21, 0x5c, 0xe5, 0x74, 0x0d, 0x4a, 0x56, - 0x35, 0x3a, 0xd7, 0x54, 0x67, 0x1f, 0x2d, 0xc3, 0x49, 0x8a, 0xe2, 0xb8, 0xb6, 0x6e, 0xec, 0x29, - 0xda, 0x3e, 0xd6, 0x6e, 0x2a, 0x7d, 0x77, 0xf7, 0xb9, 0xd2, 0x99, 0x60, 0xf9, 0xb4, 0x86, 0x2d, - 0x4a, 0x53, 0x27, 0x24, 0xdb, 0xee, 0xee, 0x73, 0xa8, 0x05, 0x39, 0xd2, 0x19, 0x3d, 0xfd, 0x0d, - 0xac, 0xec, 0x9a, 0x36, 0x9d, 0x43, 0x0b, 0x23, 0x4c, 0x53, 0x40, 0x82, 0x4b, 0x9b, 0x9c, 0x61, - 0xdd, 0xec, 0xe0, 0xe5, 0x44, 0x6b, 0xab, 0xd1, 0x58, 0x91, 0xb3, 0x02, 0xe5, 0xaa, 0x69, 0x13, - 0x85, 0xda, 0x33, 0x3d, 0x01, 0x67, 0x99, 0x42, 0xed, 0x99, 0x42, 0xbc, 0x97, 0x60, 0x4e, 0xd3, - 0x58, 0x9b, 0x75, 0x4d, 0xe1, 0xcb, 0x34, 0xa7, 0x24, 0x85, 0x84, 0xa5, 0x69, 0xab, 0x8c, 0x80, - 0xeb, 0xb8, 0x83, 0x9e, 0x87, 0x13, 0xbe, 0xb0, 0x82, 0x8c, 0xb3, 0x43, 0xad, 0x1c, 0x64, 0xbd, - 0x04, 0x73, 0xd6, 0xe1, 0x30, 0x23, 0x0a, 0x95, 0x68, 0x1d, 0x0e, 0xb2, 0x3d, 0x0b, 0xf3, 0xd6, - 0xbe, 0x35, 0xcc, 0x77, 0x3e, 0xc8, 0x87, 0xac, 0x7d, 0x6b, 0x90, 0xf1, 0x21, 0xba, 0x66, 0xb7, - 0xb1, 0xa6, 0xba, 0xb8, 0x53, 0x3a, 0x15, 0x24, 0x0f, 0x64, 0xa0, 0x25, 0x90, 0x34, 0x4d, 0xc1, - 0x86, 0xba, 0xd3, 0xc5, 0x8a, 0x6a, 0x63, 0x43, 0x75, 0x4a, 0x0b, 0x94, 0x38, 0xee, 0xda, 0x7d, - 0x2c, 0x17, 0x34, 0xad, 0x41, 0x33, 0xab, 0x34, 0x0f, 0x9d, 0x87, 0x59, 0x73, 0xe7, 0x75, 0x8d, - 0x69, 0xa4, 0x62, 0xd9, 0x78, 0x57, 0x3f, 0x28, 0xbd, 0x8b, 0x8a, 0xb7, 0x48, 0x32, 0xa8, 0x3e, - 0x6e, 0xd1, 0x64, 0xf4, 0x28, 0x48, 0x9a, 0xb3, 0xaf, 0xda, 0x16, 0x35, 0xc9, 0x8e, 0xa5, 0x6a, - 0xb8, 0xf4, 0x10, 0x23, 0x65, 0xe9, 0x1b, 0x22, 0x99, 0x8c, 0x08, 0xe7, 0xb6, 0xbe, 0xeb, 0x0a, - 0xc4, 0x47, 0xd8, 0x88, 0xa0, 0x69, 0x1c, 0xed, 0x1c, 0x48, 0x44, 0x12, 0xa1, 0x82, 0xcf, 0x51, - 0xb2, 0x82, 0xb5, 0x6f, 0x05, 0xcb, 0x7d, 0x10, 0xf2, 0x84, 0xd2, 0x2f, 0xf4, 0x51, 0xe6, 0xb8, - 0x59, 0xfb, 0x81, 0x12, 0x9f, 0x81, 0x93, 0x84, 0xa8, 0x87, 0x5d, 0xb5, 0xa3, 0xba, 0x6a, 0x80, - 0xfa, 0x71, 0x4a, 0x4d, 0xc4, 0xbe, 0xce, 0x33, 0x43, 0xf5, 0xb4, 0xfb, 0x3b, 0x87, 0x9e, 0x62, - 0x3d, 0xc1, 0xea, 0x49, 0xd2, 0x84, 0x6a, 0xbd, 0x63, 0xce, 0x79, 0x65, 0x19, 0x72, 0x41, 0xbd, - 0x47, 0x19, 0x60, 0x9a, 0x2f, 0x45, 0x88, 0x13, 0x54, 0xdf, 0x5c, 0x21, 0xee, 0xcb, 0x6b, 0x0d, - 0x29, 0x4a, 0xdc, 0xa8, 0xb5, 0x66, 0xbb, 0xa1, 0xc8, 0xdb, 0x1b, 0xed, 0xe6, 0x7a, 0x43, 0x8a, - 0x05, 0x1c, 0xfb, 0xeb, 0xf1, 0xf4, 0xc3, 0xd2, 0x23, 0x95, 0x5f, 0x8c, 0x41, 0x21, 0xbc, 0x52, - 0x43, 0xef, 0x86, 0x53, 0x22, 0xe0, 0xe2, 0x60, 0x57, 0xb9, 0xad, 0xdb, 0x74, 0x40, 0xf6, 0x54, - 0x36, 0x39, 0x7a, 0xfa, 0x33, 0xcf, 0xa9, 0x5a, 0xd8, 0x7d, 0xaf, 0x6e, 0x93, 0xe1, 0xd6, 0x53, - 0x5d, 0xb4, 0x06, 0x0b, 0x86, 0xa9, 0x38, 0xae, 0x6a, 0x74, 0x54, 0xbb, 0xa3, 0xf8, 0xa1, 0x2e, - 0x45, 0xd5, 0x34, 0xec, 0x38, 0x26, 0x9b, 0x08, 0x3d, 0x94, 0xfb, 0x0c, 0xb3, 0xc5, 0x89, 0xfd, - 0x19, 0xa2, 0xca, 0x49, 0x07, 0xd4, 0x37, 0x36, 0x4e, 0x7d, 0xcf, 0x40, 0xa6, 0xa7, 0x5a, 0x0a, - 0x36, 0x5c, 0xfb, 0x90, 0xfa, 0xe7, 0x69, 0x39, 0xdd, 0x53, 0xad, 0x06, 0xf9, 0x46, 0x37, 0xe0, - 0x61, 0x9f, 0x54, 0xe9, 0xe2, 0x3d, 0x55, 0x3b, 0x54, 0xa8, 0x33, 0x4e, 0xc3, 0x06, 0x8a, 0x66, - 0x1a, 0xbb, 0x5d, 0x5d, 0x73, 0x1d, 0x6a, 0x1f, 0x98, 0x8d, 0xab, 0xf8, 0x1c, 0x6b, 0x94, 0xe1, - 0xba, 0x63, 0x1a, 0xd4, 0x07, 0xaf, 0x0b, 0xea, 0xaf, 0xc8, 0xf2, 0xeb, 0x7a, 0x3c, 0x1d, 0x97, - 0x12, 0xd7, 0xe3, 0xe9, 0x84, 0x94, 0xbc, 0x1e, 0x4f, 0x27, 0xa5, 0xd4, 0xf5, 0x78, 0x3a, 0x2d, - 0x65, 0xae, 0xc7, 0xd3, 0x19, 0x09, 0x2a, 0x3f, 0x9b, 0x86, 0x5c, 0x70, 0x65, 0x40, 0x16, 0x5a, - 0x1a, 0x9d, 0x1b, 0x23, 0xd4, 0x7a, 0x3e, 0x78, 0xe4, 0x3a, 0x62, 0xa9, 0x4e, 0x26, 0xcd, 0xe5, - 0x24, 0x73, 0xc3, 0x65, 0xc6, 0x49, 0x1c, 0x16, 0xa2, 0xd6, 0x98, 0xb9, 0x3d, 0x69, 0x99, 0x7f, - 0xa1, 0x55, 0x48, 0xbe, 0xee, 0x50, 0xec, 0x24, 0xc5, 0x7e, 0xd7, 0xd1, 0xd8, 0xd7, 0x5b, 0x14, - 0x3c, 0x73, 0xbd, 0xa5, 0x6c, 0x6c, 0xca, 0xeb, 0xd5, 0x35, 0x99, 0xb3, 0xa3, 0xd3, 0x10, 0xef, - 0xaa, 0x6f, 0x1c, 0x86, 0xa7, 0x57, 0x9a, 0x84, 0x96, 0xa0, 0xd8, 0x37, 0x6e, 0x61, 0x5b, 0xdf, - 0xd5, 0x49, 0x57, 0x11, 0xaa, 0x62, 0x90, 0xaa, 0xe0, 0xe7, 0xae, 0x11, 0xfa, 0x29, 0xd5, 0xe3, - 0x34, 0xc4, 0x6f, 0x63, 0xf5, 0x66, 0x78, 0x12, 0xa4, 0x49, 0xe8, 0x1c, 0xe4, 0x3a, 0x78, 0xa7, - 0xbf, 0xa7, 0xd8, 0xb8, 0xa3, 0x6a, 0x6e, 0xd8, 0xf4, 0x67, 0x69, 0x96, 0x4c, 0x73, 0xd0, 0x4b, - 0x90, 0x21, 0x7d, 0x64, 0xd0, 0x3e, 0x9e, 0xa5, 0x22, 0x78, 0xe2, 0x68, 0x11, 0xf0, 0x2e, 0x16, - 0x4c, 0xb2, 0xcf, 0x8f, 0xae, 0x42, 0xd2, 0x55, 0xed, 0x3d, 0xec, 0x52, 0xcb, 0x5f, 0x18, 0x11, - 0xfc, 0x18, 0x81, 0xd4, 0xa6, 0x1c, 0x74, 0x4d, 0xcb, 0xb9, 0xdf, 0x41, 0x2b, 0x73, 0x01, 0x12, - 0x54, 0x3d, 0x10, 0x00, 0x57, 0x10, 0x69, 0x06, 0xa5, 0x21, 0x5e, 0xdf, 0x94, 0x89, 0xa5, 0x91, - 0x20, 0xc7, 0x52, 0x95, 0xad, 0x66, 0xa3, 0xde, 0x90, 0xa2, 0x95, 0x4b, 0x90, 0x64, 0x7d, 0x4e, - 0xac, 0x90, 0xd7, 0xeb, 0xd2, 0x0c, 0xff, 0xe4, 0x18, 0x11, 0x91, 0xbb, 0xbd, 0x5e, 0x6b, 0xc8, - 0x52, 0xb4, 0xb2, 0x0d, 0xc5, 0x01, 0x39, 0xa1, 0x13, 0x30, 0x2b, 0x37, 0xda, 0x8d, 0x0d, 0xb2, - 0xce, 0x52, 0xb6, 0x37, 0x5e, 0xda, 0xd8, 0x7c, 0xef, 0x86, 0x34, 0x13, 0x4e, 0x16, 0x26, 0x2d, - 0x82, 0xe6, 0x41, 0xf2, 0x93, 0x5b, 0x9b, 0xdb, 0x32, 0xad, 0xcd, 0xb7, 0x46, 0x41, 0x1a, 0x94, - 0x1a, 0x3a, 0x05, 0x73, 0xed, 0xaa, 0xbc, 0xda, 0x68, 0x2b, 0x6c, 0xed, 0xe8, 0x41, 0xcf, 0x83, - 0x14, 0xcc, 0xb8, 0xda, 0xa4, 0x4b, 0xe3, 0x05, 0x38, 0x13, 0x4c, 0x6d, 0xbc, 0xd2, 0x6e, 0x6c, - 0xb4, 0x68, 0xe1, 0xd5, 0x8d, 0x55, 0x62, 0x5f, 0x07, 0xf0, 0xc4, 0x6a, 0x35, 0x46, 0xaa, 0x1a, - 0xc6, 0x6b, 0xac, 0xad, 0x48, 0xf1, 0xc1, 0xe4, 0xcd, 0x8d, 0xc6, 0xe6, 0x55, 0x29, 0x31, 0x58, - 0x3a, 0x5d, 0xc1, 0x26, 0x51, 0x19, 0x4e, 0x0e, 0xa6, 0x2a, 0x8d, 0x8d, 0xb6, 0xfc, 0xaa, 0x94, - 0x1a, 0x2c, 0xb8, 0xd5, 0x90, 0x6f, 0x34, 0xeb, 0x0d, 0x29, 0x8d, 0x4e, 0x02, 0x0a, 0xd7, 0xa8, - 0x7d, 0x6d, 0x73, 0x45, 0xca, 0x0c, 0x59, 0x94, 0x8a, 0x03, 0xb9, 0xe0, 0x32, 0xf2, 0x2b, 0x13, - 0x4b, 0xfa, 0x48, 0x14, 0xb2, 0x81, 0x65, 0x21, 0xf1, 0xe7, 0xd5, 0x6e, 0xd7, 0xbc, 0xad, 0xa8, - 0x5d, 0x5d, 0x75, 0xb8, 0xbd, 0x01, 0x9a, 0x54, 0x25, 0x29, 0xd3, 0x8e, 0xef, 0xe9, 0x2d, 0x7c, - 0xf2, 0xab, 0xd1, 0xc2, 0x27, 0xa4, 0x64, 0xe5, 0xfb, 0x23, 0x20, 0x0d, 0xae, 0xf7, 0x06, 0x9a, - 0x1f, 0x19, 0xd7, 0xfc, 0xaf, 0x48, 0xdf, 0x7d, 0x2c, 0x02, 0x85, 0xf0, 0x22, 0x6f, 0xa0, 0x7a, - 0x0f, 0xfc, 0x99, 0x56, 0xef, 0xb7, 0xa3, 0x90, 0x0f, 0x2d, 0xed, 0xa6, 0xad, 0xdd, 0xfb, 0x61, - 0x56, 0xef, 0xe0, 0x9e, 0x65, 0xba, 0xd8, 0xd0, 0x0e, 0x95, 0x2e, 0xbe, 0x85, 0xbb, 0xa5, 0x0a, - 0x35, 0xca, 0x17, 0x8e, 0x5e, 0x3c, 0x2e, 0x35, 0x7d, 0xbe, 0x35, 0xc2, 0xb6, 0x3c, 0xd7, 0x5c, - 0x69, 0xac, 0x6f, 0x6d, 0xb6, 0x1b, 0x1b, 0xf5, 0x57, 0x85, 0x75, 0x91, 0x25, 0x7d, 0x80, 0xec, - 0x1d, 0x34, 0xda, 0x5b, 0x20, 0x0d, 0x56, 0x8a, 0xd8, 0x8a, 0x11, 0xd5, 0x92, 0x66, 0xd0, 0x1c, - 0x14, 0x37, 0x36, 0x95, 0x56, 0x73, 0xa5, 0xa1, 0x34, 0xae, 0x5e, 0x6d, 0xd4, 0xdb, 0x2d, 0x16, - 0x0e, 0xf4, 0xa8, 0xdb, 0x52, 0x34, 0x28, 0xe2, 0xef, 0x8b, 0xc1, 0xdc, 0x88, 0x9a, 0xa0, 0x2a, - 0x5f, 0xc8, 0xb3, 0xd8, 0xc2, 0x13, 0xd3, 0xd4, 0x7e, 0x89, 0xb8, 0xd2, 0x5b, 0xaa, 0xed, 0xf2, - 0x75, 0xff, 0xa3, 0x40, 0xa4, 0x64, 0xb8, 0x64, 0x66, 0xb7, 0x79, 0x98, 0x95, 0xad, 0xee, 0x8b, - 0x7e, 0x3a, 0x8b, 0xb4, 0x3e, 0x0e, 0xc8, 0x32, 0x1d, 0xdd, 0xd5, 0x6f, 0x61, 0x45, 0x37, 0x44, - 0x4c, 0x96, 0xac, 0xf6, 0xe3, 0xb2, 0x24, 0x72, 0x9a, 0x86, 0xeb, 0x51, 0x1b, 0x78, 0x4f, 0x1d, - 0xa0, 0x26, 0x9e, 0x47, 0x4c, 0x96, 0x44, 0x8e, 0x47, 0xfd, 0x00, 0xe4, 0x3a, 0x66, 0x9f, 0x2c, - 0x81, 0x18, 0x1d, 0xb1, 0x16, 0x11, 0x39, 0xcb, 0xd2, 0x3c, 0x12, 0xbe, 0xb8, 0xf5, 0x83, 0xc1, - 0x39, 0x39, 0xcb, 0xd2, 0x18, 0xc9, 0x23, 0x50, 0x54, 0xf7, 0xf6, 0x6c, 0x02, 0x2e, 0x80, 0xd8, - 0x72, 0xbd, 0xe0, 0x25, 0x53, 0xc2, 0xf2, 0x75, 0x48, 0x0b, 0x39, 0x10, 0x0f, 0x96, 0x48, 0x42, - 0xb1, 0x58, 0x0c, 0x2a, 0x7a, 0x2e, 0x23, 0xa7, 0x0d, 0x91, 0xf9, 0x00, 0xe4, 0x74, 0x47, 0xf1, - 0xf7, 0xb6, 0xa2, 0x8b, 0xd1, 0x73, 0x69, 0x39, 0xab, 0x3b, 0xde, 0xbe, 0x40, 0xe5, 0x47, 0xa2, - 0x50, 0x08, 0xef, 0xda, 0xa1, 0x15, 0x48, 0x77, 0x4d, 0x4d, 0xa5, 0xaa, 0xc5, 0xb6, 0x8c, 0xcf, - 0x4d, 0xd8, 0xe8, 0x5b, 0x5a, 0xe3, 0xf4, 0xb2, 0xc7, 0x59, 0xfe, 0xd7, 0x11, 0x48, 0x8b, 0x64, - 0x74, 0x12, 0xe2, 0x96, 0xea, 0xee, 0x53, 0xb8, 0x44, 0x2d, 0x2a, 0x45, 0x64, 0xfa, 0x4d, 0xd2, - 0x1d, 0x4b, 0x35, 0xa8, 0x0a, 0xf0, 0x74, 0xf2, 0x4d, 0xfa, 0xb5, 0x8b, 0xd5, 0x0e, 0x8d, 0x05, - 0x98, 0xbd, 0x1e, 0x36, 0x5c, 0x47, 0xf4, 0x2b, 0x4f, 0xaf, 0xf3, 0x64, 0xf4, 0x18, 0xcc, 0xba, - 0xb6, 0xaa, 0x77, 0x43, 0xb4, 0x71, 0x4a, 0x2b, 0x89, 0x0c, 0x8f, 0x78, 0x19, 0x4e, 0x0b, 0xdc, - 0x0e, 0x76, 0x55, 0x6d, 0x1f, 0x77, 0x7c, 0xa6, 0x24, 0x8d, 0xf9, 0x9d, 0xe2, 0x04, 0x2b, 0x3c, - 0x5f, 0xf0, 0x56, 0x3e, 0x1d, 0x85, 0x59, 0x11, 0xbd, 0xe8, 0x78, 0xc2, 0x5a, 0x07, 0x50, 0x0d, - 0xc3, 0x74, 0x83, 0xe2, 0x1a, 0x56, 0xe5, 0x21, 0xbe, 0xa5, 0xaa, 0xc7, 0x24, 0x07, 0x00, 0xca, - 0xbf, 0x1f, 0x01, 0xf0, 0xb3, 0xc6, 0xca, 0x6d, 0x01, 0xb2, 0x7c, 0x4f, 0x96, 0x6e, 0xec, 0xb3, - 0x80, 0x17, 0xb0, 0xa4, 0xab, 0x7a, 0x97, 0x86, 0x25, 0x77, 0xf0, 0x9e, 0x6e, 0xf0, 0xfd, 0x14, - 0xf6, 0x21, 0xc2, 0x92, 0x71, 0x7f, 0x7b, 0x4a, 0x86, 0xb4, 0x83, 0x7b, 0xaa, 0xe1, 0xea, 0x1a, - 0xdf, 0x21, 0xb9, 0x7c, 0xac, 0xca, 0x2f, 0xb5, 0x38, 0xb7, 0xec, 0xe1, 0x54, 0xce, 0x41, 0x5a, - 0xa4, 0x12, 0xc7, 0x6f, 0x63, 0x73, 0xa3, 0x21, 0xcd, 0xa0, 0x14, 0xc4, 0x5a, 0x8d, 0xb6, 0x14, - 0x21, 0xcb, 0xce, 0xea, 0x5a, 0xb3, 0xda, 0x92, 0xa2, 0xb5, 0xbf, 0x02, 0x73, 0x9a, 0xd9, 0x1b, - 0x2c, 0xb0, 0x26, 0x0d, 0x84, 0xfc, 0x9c, 0x6b, 0x91, 0xd7, 0x9e, 0xe0, 0x44, 0x7b, 0x66, 0x57, - 0x35, 0xf6, 0x96, 0x4c, 0x7b, 0xcf, 0x3f, 0x16, 0x41, 0x56, 0x07, 0x4e, 0xe0, 0x70, 0x84, 0xb5, - 0xf3, 0x3f, 0x23, 0x91, 0x1f, 0x88, 0xc6, 0x56, 0xb7, 0x6a, 0x3f, 0x16, 0x2d, 0xaf, 0x32, 0xc6, - 0x2d, 0xd1, 0x1c, 0x19, 0xef, 0x76, 0xb1, 0x46, 0x2a, 0x0f, 0x7f, 0xf0, 0x18, 0xcc, 0xef, 0x99, - 0x7b, 0x26, 0x45, 0xba, 0x40, 0x7e, 0xf1, 0x73, 0x15, 0x19, 0x2f, 0xb5, 0x3c, 0xf1, 0x10, 0xc6, - 0xf2, 0x06, 0xcc, 0x71, 0x62, 0x85, 0x6e, 0xdf, 0xb2, 0xe0, 0x02, 0x3a, 0x32, 0xb2, 0x5d, 0xfa, - 0xc9, 0xdf, 0xa5, 0x5e, 0x89, 0x3c, 0xcb, 0x59, 0x49, 0x1e, 0x8b, 0x3f, 0x2c, 0xcb, 0x70, 0x22, - 0x84, 0xc7, 0x6c, 0x04, 0xb6, 0x27, 0x20, 0xfe, 0x33, 0x8e, 0x38, 0x17, 0x40, 0x6c, 0x71, 0xd6, - 0xe5, 0x3a, 0xe4, 0x8f, 0x83, 0xf5, 0xcf, 0x39, 0x56, 0x0e, 0x07, 0x41, 0x56, 0xa1, 0x48, 0x41, - 0xb4, 0xbe, 0xe3, 0x9a, 0x3d, 0x6a, 0x80, 0x8f, 0x86, 0xf9, 0x17, 0xbf, 0xcb, 0x06, 0x6d, 0x81, - 0xb0, 0xd5, 0x3d, 0xae, 0xe5, 0x65, 0xa0, 0x3b, 0xd6, 0x1d, 0xac, 0x75, 0x27, 0x20, 0xfc, 0x2a, - 0xaf, 0x88, 0x47, 0xbf, 0x7c, 0x03, 0xe6, 0xc9, 0x6f, 0x6a, 0x1f, 0x83, 0x35, 0x99, 0x1c, 0x06, - 0x2f, 0xfd, 0x9b, 0x0f, 0x32, 0xbb, 0x30, 0xe7, 0x01, 0x04, 0xea, 0x14, 0xe8, 0xc5, 0x3d, 0xec, - 0xba, 0xd8, 0x76, 0x14, 0xb5, 0x3b, 0xaa, 0x7a, 0x81, 0x38, 0x62, 0xe9, 0x7b, 0xbf, 0x18, 0xee, - 0xc5, 0x55, 0xc6, 0x59, 0xed, 0x76, 0x97, 0xb7, 0xe1, 0xd4, 0x08, 0xad, 0x98, 0x02, 0xf3, 0xfb, - 0x38, 0xe6, 0xfc, 0x90, 0x66, 0x10, 0xd8, 0x2d, 0x10, 0xe9, 0x5e, 0x5f, 0x4e, 0x81, 0xf9, 0x51, - 0x8e, 0x89, 0x38, 0xaf, 0xe8, 0x52, 0x82, 0x78, 0x1d, 0x66, 0x6f, 0x61, 0x7b, 0xc7, 0x74, 0x78, - 0xec, 0x76, 0x0a, 0xb8, 0x8f, 0x71, 0xb8, 0x22, 0x67, 0xa4, 0xc1, 0x5c, 0x82, 0xf5, 0x3c, 0xa4, - 0x77, 0x55, 0x0d, 0x4f, 0x01, 0x71, 0x97, 0x43, 0xa4, 0x08, 0x3d, 0x61, 0xad, 0x42, 0x6e, 0xcf, - 0xe4, 0x53, 0xe4, 0x64, 0xf6, 0xef, 0xe7, 0xec, 0x59, 0xc1, 0xc3, 0x21, 0x2c, 0xd3, 0xea, 0x77, - 0xc9, 0xfc, 0x39, 0x19, 0xe2, 0x6f, 0x09, 0x08, 0xc1, 0xc3, 0x21, 0x8e, 0x21, 0xd6, 0x8f, 0x0b, - 0x08, 0x27, 0x20, 0xcf, 0x17, 0x21, 0x6b, 0x1a, 0xdd, 0x43, 0xd3, 0x98, 0xa6, 0x12, 0x9f, 0xe0, - 0x08, 0xc0, 0x59, 0x08, 0xc0, 0x15, 0xc8, 0x4c, 0xdb, 0x11, 0x3f, 0xf4, 0x45, 0x31, 0x3c, 0x44, - 0x0f, 0xac, 0x42, 0x51, 0x18, 0x28, 0xdd, 0x34, 0xa6, 0x80, 0xf8, 0x61, 0x0e, 0x51, 0x08, 0xb0, - 0xf1, 0x66, 0xb8, 0xd8, 0x71, 0xf7, 0xf0, 0x34, 0x20, 0x3f, 0x22, 0x9a, 0xc1, 0x59, 0xb8, 0x28, - 0x77, 0xb0, 0xa1, 0xed, 0x4f, 0x87, 0xf0, 0x49, 0x21, 0x4a, 0xc1, 0x43, 0x20, 0xea, 0x90, 0xef, - 0xa9, 0xb6, 0xb3, 0xaf, 0x76, 0xa7, 0xea, 0x8e, 0x1f, 0xe5, 0x18, 0x39, 0x8f, 0x89, 0x4b, 0xa4, - 0x6f, 0x1c, 0x07, 0xe6, 0xc7, 0x84, 0x44, 0x02, 0x6c, 0x7c, 0xe8, 0x39, 0x2e, 0x0d, 0x74, 0x1f, - 0x07, 0xed, 0xc7, 0xc5, 0xd0, 0x63, 0xbc, 0xeb, 0x41, 0xc4, 0x2b, 0x90, 0x71, 0xf4, 0x37, 0xa6, - 0x82, 0xf9, 0x3b, 0xa2, 0xa7, 0x29, 0x03, 0x61, 0x7e, 0x15, 0x4e, 0x8f, 0x9c, 0x26, 0xa6, 0x00, - 0xfb, 0xbb, 0x1c, 0xec, 0xe4, 0x88, 0xa9, 0x82, 0x9b, 0x84, 0xe3, 0x42, 0xfe, 0x3d, 0x61, 0x12, - 0xf0, 0x00, 0xd6, 0x16, 0x59, 0xb4, 0x38, 0xea, 0xee, 0xf1, 0xa4, 0xf6, 0xf7, 0x85, 0xd4, 0x18, - 0x6f, 0x48, 0x6a, 0x6d, 0x38, 0xc9, 0x11, 0x8f, 0xd7, 0xaf, 0x3f, 0x21, 0x0c, 0x2b, 0xe3, 0xde, - 0x0e, 0xf7, 0xee, 0xd7, 0x40, 0xd9, 0x13, 0xa7, 0xf0, 0x8e, 0x1d, 0xa5, 0xa7, 0x5a, 0x53, 0x20, - 0xff, 0x24, 0x47, 0x16, 0x16, 0xdf, 0x73, 0xaf, 0x9d, 0x75, 0xd5, 0x22, 0xe0, 0xaf, 0x40, 0x49, - 0x80, 0xf7, 0x0d, 0x1b, 0x6b, 0xe6, 0x9e, 0xa1, 0xbf, 0x81, 0x3b, 0x53, 0x40, 0xff, 0xd4, 0x40, - 0x57, 0x6d, 0x07, 0xd8, 0x09, 0x72, 0x13, 0x24, 0xcf, 0x57, 0x51, 0xf4, 0x9e, 0x65, 0xda, 0xee, - 0x04, 0xc4, 0x9f, 0x16, 0x3d, 0xe5, 0xf1, 0x35, 0x29, 0xdb, 0x72, 0x03, 0xd8, 0xe9, 0x8f, 0x69, - 0x55, 0xf2, 0x53, 0x1c, 0x28, 0xef, 0x73, 0x71, 0xc3, 0xa1, 0x99, 0x3d, 0x4b, 0xb5, 0xa7, 0xb1, - 0x7f, 0xff, 0x40, 0x18, 0x0e, 0xce, 0xc2, 0x0d, 0x07, 0xf1, 0xe8, 0xc8, 0x6c, 0x3f, 0x05, 0xc2, - 0xcf, 0x08, 0xc3, 0x21, 0x78, 0x38, 0x84, 0x70, 0x18, 0xa6, 0x80, 0xf8, 0x59, 0x01, 0x21, 0x78, - 0x08, 0xc4, 0xcb, 0xfe, 0x44, 0x6b, 0xe3, 0x3d, 0xdd, 0x71, 0x6d, 0xe6, 0x92, 0x1f, 0x0d, 0xf5, - 0x73, 0x5f, 0x0c, 0x3b, 0x61, 0x72, 0x80, 0x95, 0x58, 0x22, 0xbe, 0xf5, 0x41, 0x97, 0x6c, 0x93, - 0x2b, 0xf6, 0xf3, 0xc2, 0x12, 0x05, 0xd8, 0x48, 0xdd, 0x02, 0x1e, 0x22, 0x11, 0xbb, 0x46, 0x16, - 0x2a, 0x53, 0xc0, 0xfd, 0xc2, 0x40, 0xe5, 0x5a, 0x82, 0x97, 0x60, 0x06, 0xfc, 0x9f, 0xbe, 0x71, - 0x13, 0x1f, 0x4e, 0xa5, 0x9d, 0xbf, 0x38, 0xe0, 0xff, 0x6c, 0x33, 0x4e, 0x66, 0x43, 0x8a, 0x03, - 0xfe, 0x14, 0x9a, 0x74, 0xd6, 0xaf, 0xf4, 0x0d, 0x6f, 0xf1, 0xf6, 0x86, 0xdd, 0xa9, 0xe5, 0x35, - 0xa2, 0xe4, 0x61, 0xa7, 0x67, 0x32, 0xd8, 0x07, 0xdf, 0xf2, 0xf4, 0x3c, 0xe4, 0xf3, 0x2c, 0x5f, - 0x85, 0x7c, 0xc8, 0xe1, 0x99, 0x0c, 0xf5, 0x8d, 0x1c, 0x2a, 0x17, 0xf4, 0x77, 0x96, 0x2f, 0x41, - 0x9c, 0x38, 0x2f, 0x93, 0xd9, 0xbf, 0x89, 0xb3, 0x53, 0xf2, 0xe5, 0x17, 0x20, 0x2d, 0x9c, 0x96, - 0xc9, 0xac, 0x7f, 0x8d, 0xb3, 0x7a, 0x2c, 0x84, 0x5d, 0x38, 0x2c, 0x93, 0xd9, 0xff, 0xba, 0x60, - 0x17, 0x2c, 0x84, 0x7d, 0x7a, 0x11, 0xfe, 0xf2, 0xb7, 0xc4, 0xf9, 0xa4, 0x23, 0x64, 0x77, 0x05, - 0x52, 0xdc, 0x53, 0x99, 0xcc, 0xfd, 0xcd, 0xbc, 0x70, 0xc1, 0xb1, 0xfc, 0x2c, 0x24, 0xa6, 0x14, - 0xf8, 0xb7, 0x71, 0x56, 0x46, 0xbf, 0x5c, 0x87, 0x6c, 0xc0, 0x3b, 0x99, 0xcc, 0xfe, 0xed, 0x9c, - 0x3d, 0xc8, 0x45, 0xaa, 0xce, 0xbd, 0x93, 0xc9, 0x00, 0x7f, 0x43, 0x54, 0x9d, 0x73, 0x10, 0xb1, - 0x09, 0xc7, 0x64, 0x32, 0xf7, 0x87, 0x85, 0xd4, 0x05, 0xcb, 0xf2, 0x8b, 0x90, 0xf1, 0x26, 0x9b, - 0xc9, 0xfc, 0xdf, 0xc1, 0xf9, 0x7d, 0x1e, 0x22, 0x81, 0xc0, 0x64, 0x37, 0x19, 0xe2, 0x6f, 0x0a, - 0x09, 0x04, 0xb8, 0xc8, 0x30, 0x1a, 0x74, 0x60, 0x26, 0x23, 0x7d, 0xa7, 0x18, 0x46, 0x03, 0xfe, - 0x0b, 0xe9, 0x4d, 0x6a, 0xf3, 0x27, 0x43, 0x7c, 0x97, 0xe8, 0x4d, 0x4a, 0x4f, 0xaa, 0x31, 0xe8, - 0x11, 0x4c, 0xc6, 0xf8, 0x1e, 0x51, 0x8d, 0x01, 0x87, 0x60, 0x79, 0x0b, 0xd0, 0xb0, 0x37, 0x30, - 0x19, 0xef, 0x23, 0x1c, 0x6f, 0x76, 0xc8, 0x19, 0x58, 0x7e, 0x2f, 0x9c, 0x1c, 0xed, 0x09, 0x4c, - 0x46, 0xfd, 0xde, 0xb7, 0x06, 0xd6, 0x6e, 0x41, 0x47, 0x60, 0xb9, 0xed, 0x4f, 0x29, 0x41, 0x2f, - 0x60, 0x32, 0xec, 0xf7, 0xbd, 0x15, 0x36, 0xdc, 0x41, 0x27, 0x60, 0xb9, 0x0a, 0xe0, 0x4f, 0xc0, - 0x93, 0xb1, 0x3e, 0xc6, 0xb1, 0x02, 0x4c, 0x64, 0x68, 0xf0, 0xf9, 0x77, 0x32, 0xff, 0x5d, 0x31, - 0x34, 0x38, 0x07, 0x19, 0x1a, 0x62, 0xea, 0x9d, 0xcc, 0xfd, 0xfd, 0x62, 0x68, 0x08, 0x16, 0xa2, - 0xd9, 0x81, 0xd9, 0x6d, 0x32, 0xc2, 0x27, 0x84, 0x66, 0x07, 0xb8, 0x96, 0x37, 0x60, 0x76, 0x68, - 0x42, 0x9c, 0x0c, 0xf5, 0x03, 0x1c, 0x4a, 0x1a, 0x9c, 0x0f, 0x83, 0x93, 0x17, 0x9f, 0x0c, 0x27, - 0xa3, 0xfd, 0xe0, 0xc0, 0xe4, 0xc5, 0xe7, 0xc2, 0xe5, 0x2b, 0x90, 0x36, 0xfa, 0xdd, 0x2e, 0x19, - 0x3c, 0xe8, 0xe8, 0xf3, 0xb9, 0xa5, 0xff, 0xf2, 0x25, 0x2e, 0x1d, 0xc1, 0xb0, 0x7c, 0x09, 0x12, - 0xb8, 0xb7, 0x83, 0x3b, 0x93, 0x38, 0xbf, 0xf0, 0x25, 0x61, 0x30, 0x09, 0xf5, 0xf2, 0x8b, 0x00, - 0x2c, 0x34, 0x42, 0x37, 0xce, 0x27, 0xf0, 0xfe, 0xfe, 0x97, 0xf8, 0x81, 0x38, 0x9f, 0xc5, 0x07, - 0x60, 0xc7, 0xeb, 0x8e, 0x06, 0xf8, 0x62, 0x18, 0x80, 0xf6, 0xc8, 0xf3, 0x90, 0x7a, 0xdd, 0x31, - 0x0d, 0x57, 0xdd, 0x9b, 0xc4, 0xfd, 0x07, 0x9c, 0x5b, 0xd0, 0x13, 0x81, 0xf5, 0x4c, 0x1b, 0xbb, - 0xea, 0x9e, 0x33, 0x89, 0xf7, 0xbf, 0x72, 0x5e, 0x8f, 0x81, 0x30, 0x6b, 0xaa, 0xe3, 0x4e, 0xd3, - 0xee, 0xff, 0x26, 0x98, 0x05, 0x03, 0xa9, 0x34, 0xf9, 0x7d, 0x13, 0x1f, 0x4e, 0xe2, 0xfd, 0x43, - 0x51, 0x69, 0x4e, 0xbf, 0xfc, 0x02, 0x64, 0xc8, 0x4f, 0x76, 0xca, 0x75, 0x02, 0xf3, 0x1f, 0x71, - 0x66, 0x9f, 0x83, 0x94, 0xec, 0xb8, 0x1d, 0x57, 0x9f, 0x2c, 0xec, 0x3f, 0xe6, 0x3d, 0x2d, 0xe8, - 0x97, 0xab, 0x90, 0x75, 0xdc, 0x4e, 0xa7, 0xcf, 0xfd, 0xd3, 0x09, 0xec, 0x7f, 0xf2, 0x25, 0x2f, - 0x64, 0xe1, 0xf1, 0x90, 0xde, 0xbe, 0x7d, 0xd3, 0xb5, 0x4c, 0xba, 0xdf, 0x32, 0x09, 0xe1, 0x2d, - 0x8e, 0x10, 0x60, 0x59, 0xae, 0x43, 0x8e, 0xb4, 0xc5, 0xc6, 0x16, 0xa6, 0x9b, 0x63, 0x13, 0x20, - 0xfe, 0x94, 0x0b, 0x20, 0xc4, 0x54, 0xfb, 0xfa, 0x5f, 0xfd, 0xec, 0xd9, 0xc8, 0xa7, 0x3f, 0x7b, - 0x36, 0xf2, 0xdb, 0x9f, 0x3d, 0x1b, 0xf9, 0xf0, 0xe7, 0xce, 0xce, 0x7c, 0xfa, 0x73, 0x67, 0x67, - 0x7e, 0xf3, 0x73, 0x67, 0x67, 0x46, 0x47, 0x89, 0x61, 0xd5, 0x5c, 0x35, 0x59, 0x7c, 0xf8, 0xb5, - 0x87, 0xf6, 0x74, 0x77, 0xbf, 0xbf, 0xb3, 0xa4, 0x99, 0xbd, 0x0b, 0x9a, 0xe9, 0xf4, 0x4c, 0xe7, - 0x42, 0x38, 0xae, 0x4b, 0x7f, 0xc1, 0xff, 0x8e, 0x90, 0x35, 0x73, 0x38, 0x9c, 0xab, 0x1a, 0x87, - 0xe3, 0x2e, 0xd3, 0x5d, 0x86, 0x58, 0xd5, 0x38, 0x44, 0xa7, 0x99, 0x81, 0x53, 0xfa, 0x76, 0x97, - 0x1f, 0xb5, 0x4c, 0x91, 0xef, 0x6d, 0xbb, 0x8b, 0xe6, 0xfd, 0xf3, 0xd0, 0x91, 0x73, 0x39, 0x7e, - 0xc8, 0xb9, 0xf6, 0xed, 0x91, 0xe3, 0xb5, 0x24, 0x5d, 0x35, 0x0e, 0x69, 0x43, 0xb6, 0x22, 0xaf, - 0x3d, 0x3e, 0x31, 0xce, 0x7d, 0xd3, 0x30, 0x6f, 0x1b, 0xa4, 0xda, 0xd6, 0x8e, 0x88, 0x71, 0x9f, - 0x1d, 0x8c, 0x71, 0xbf, 0x17, 0x77, 0xbb, 0x2f, 0x11, 0xba, 0x36, 0x61, 0xd9, 0x49, 0xb2, 0x53, - 0xfd, 0xf0, 0x9d, 0x51, 0x38, 0x3b, 0x14, 0xce, 0xe6, 0x4a, 0x30, 0x4e, 0x08, 0xcb, 0x90, 0x5e, - 0x11, 0xba, 0x55, 0x82, 0x94, 0x83, 0x35, 0xd3, 0xe8, 0x38, 0x54, 0x10, 0x31, 0x59, 0x7c, 0x12, - 0x41, 0x18, 0xaa, 0x61, 0x3a, 0xfc, 0xb0, 0x32, 0xfb, 0xa8, 0x7d, 0xf4, 0x98, 0x82, 0xc8, 0x8b, - 0x92, 0x84, 0x34, 0x9e, 0x9a, 0x52, 0x1a, 0xa2, 0x11, 0xa1, 0xc8, 0xff, 0xb4, 0x52, 0xf9, 0x9e, - 0x28, 0x2c, 0x0c, 0x4a, 0x85, 0x8c, 0x2c, 0xc7, 0x55, 0x7b, 0xd6, 0x38, 0xb1, 0x5c, 0x81, 0x4c, - 0x5b, 0xd0, 0x1c, 0x5b, 0x2e, 0x77, 0x8f, 0x29, 0x97, 0x82, 0x57, 0x94, 0x10, 0xcc, 0xc5, 0x29, - 0x05, 0xe3, 0xb5, 0xe3, 0x9e, 0x24, 0xf3, 0xbf, 0x92, 0x70, 0x9a, 0x0d, 0x27, 0x85, 0x0d, 0x25, - 0xf6, 0xc1, 0x65, 0x92, 0x0b, 0x66, 0x4d, 0xde, 0x27, 0xa9, 0xbc, 0x04, 0x73, 0x4d, 0x62, 0x2d, - 0xc8, 0x2a, 0xc8, 0xdf, 0xe1, 0x19, 0x79, 0x9e, 0x7b, 0x31, 0xe4, 0xf0, 0xf3, 0xfd, 0xad, 0x60, - 0x52, 0xe5, 0x1b, 0x22, 0x20, 0xb5, 0x34, 0xb5, 0xab, 0xda, 0x5f, 0x2e, 0x14, 0x7a, 0x16, 0x80, - 0x1d, 0xf7, 0xf0, 0x2e, 0xee, 0x15, 0x2e, 0x96, 0x96, 0x82, 0x8d, 0x5b, 0x62, 0x25, 0xd1, 0x13, - 0x54, 0x19, 0x4a, 0x4b, 0x7e, 0x9e, 0x7f, 0x05, 0xc0, 0xcf, 0x40, 0x67, 0xe0, 0x54, 0xab, 0x5e, - 0x5d, 0xab, 0xca, 0xe2, 0x90, 0x50, 0x6b, 0xab, 0x51, 0x6f, 0x5e, 0x6d, 0x36, 0x56, 0xa4, 0x19, - 0x74, 0x12, 0x50, 0x30, 0xd3, 0x3b, 0xd4, 0x74, 0x02, 0x66, 0x83, 0xe9, 0xec, 0x96, 0x4a, 0x94, - 0x78, 0x8a, 0x7a, 0xcf, 0xea, 0x62, 0xba, 0xf3, 0xa8, 0xe8, 0x42, 0x6a, 0x93, 0x9d, 0x90, 0x5f, - 0xfb, 0x77, 0xec, 0xe6, 0xc2, 0x9c, 0xcf, 0xee, 0xc9, 0x7c, 0x79, 0x0d, 0x66, 0x55, 0x4d, 0xc3, - 0x56, 0x08, 0x72, 0x82, 0xa9, 0x26, 0x80, 0x74, 0x2f, 0x95, 0x73, 0xfa, 0x68, 0xcf, 0x42, 0xd2, - 0xa1, 0xad, 0x9f, 0x04, 0xf1, 0xeb, 0x1c, 0x82, 0x93, 0x2f, 0x1b, 0x30, 0x4b, 0x3c, 0x3f, 0xd5, - 0xc6, 0x81, 0x6a, 0x1c, 0x1d, 0x67, 0xf8, 0x87, 0x3f, 0xfd, 0x24, 0xdd, 0x59, 0x7d, 0x20, 0xdc, - 0x2d, 0x23, 0xd4, 0x49, 0x96, 0x38, 0xb6, 0x5f, 0x51, 0x0c, 0x05, 0x51, 0x1e, 0xaf, 0xf0, 0xd1, - 0x85, 0xfd, 0x12, 0x2f, 0xec, 0xec, 0x28, 0x1d, 0x08, 0x94, 0x94, 0xe7, 0xa8, 0x2c, 0xa3, 0xd6, - 0x18, 0x37, 0xa6, 0x5f, 0x7b, 0x6c, 0x78, 0x76, 0x62, 0xff, 0x3d, 0x41, 0x91, 0xaf, 0x04, 0x8b, - 0xf1, 0xc6, 0xde, 0x47, 0xe3, 0x30, 0xab, 0xf6, 0x74, 0xc3, 0xbc, 0x40, 0xff, 0xe5, 0x63, 0x2e, - 0x41, 0x3f, 0xa6, 0xd8, 0x94, 0xbc, 0xcc, 0x86, 0xc2, 0x64, 0x8d, 0xf9, 0xa3, 0x6f, 0xfd, 0xe1, - 0x84, 0x3f, 0x5c, 0x96, 0xd7, 0x41, 0x12, 0x87, 0x78, 0xb1, 0xa1, 0x99, 0x9d, 0xa9, 0xa2, 0x14, - 0x7f, 0x2c, 0x30, 0x44, 0x7c, 0xab, 0xc1, 0x59, 0x97, 0xdf, 0x0d, 0x69, 0x0f, 0x66, 0x92, 0x67, - 0x22, 0x40, 0x3c, 0x0e, 0xe2, 0x97, 0xb0, 0x91, 0x39, 0x8d, 0x17, 0xfa, 0x96, 0xe0, 0x67, 0x23, - 0x74, 0x83, 0xb4, 0x66, 0x15, 0x0a, 0x1d, 0xd3, 0x70, 0x15, 0xb3, 0xa7, 0xbb, 0xb8, 0x67, 0xb9, - 0x13, 0xfd, 0xba, 0x3f, 0x65, 0x20, 0x69, 0x39, 0x4f, 0xf8, 0x36, 0x05, 0x1b, 0xa9, 0x09, 0xbb, - 0xa7, 0x37, 0x4d, 0x4d, 0xfe, 0xbb, 0x57, 0x13, 0xca, 0x43, 0x6a, 0x72, 0x4f, 0xda, 0xe1, 0x74, - 0x6e, 0x72, 0x63, 0xee, 0x1e, 0x30, 0x2d, 0xf0, 0xb4, 0xe3, 0x9f, 0xc4, 0xe1, 0x2c, 0x27, 0xde, - 0x51, 0x1d, 0x7c, 0xe1, 0xd6, 0x53, 0x3b, 0xd8, 0x55, 0x9f, 0xba, 0xa0, 0x99, 0xba, 0x98, 0xc9, - 0xe7, 0xb8, 0xb1, 0x26, 0xf9, 0x4b, 0x3c, 0xbf, 0x3c, 0x72, 0xbb, 0xbb, 0x3c, 0xde, 0xc8, 0x97, - 0x87, 0x75, 0xb0, 0xd2, 0x85, 0x78, 0xdd, 0xd4, 0x0d, 0x32, 0xb7, 0x75, 0xb0, 0x61, 0xf6, 0xb8, - 0xb9, 0x65, 0x1f, 0xe8, 0x1a, 0x24, 0xd5, 0x9e, 0xd9, 0x37, 0x5c, 0x66, 0x6a, 0x6b, 0x4f, 0xfe, - 0xea, 0x9b, 0x0b, 0x33, 0xff, 0xe1, 0xcd, 0x85, 0x13, 0x0c, 0xd6, 0xe9, 0xdc, 0x5c, 0xd2, 0xcd, - 0x0b, 0x3d, 0xd5, 0xdd, 0x27, 0xc3, 0xf7, 0x33, 0x9f, 0x7a, 0x02, 0x78, 0x79, 0x4d, 0xc3, 0xfd, - 0xe4, 0xef, 0xfd, 0xc4, 0xf9, 0x88, 0xcc, 0xf9, 0x97, 0xe3, 0x9f, 0xff, 0xf8, 0x42, 0xa4, 0x62, - 0x41, 0x6a, 0x05, 0x6b, 0x47, 0x14, 0xd8, 0x1c, 0x28, 0xf0, 0x29, 0x5e, 0xe0, 0x99, 0xe1, 0x02, - 0xd9, 0x81, 0xbd, 0x15, 0xac, 0x05, 0x8a, 0x5d, 0xc1, 0xda, 0x40, 0x89, 0x4d, 0x48, 0x37, 0x0d, - 0x97, 0x5d, 0x36, 0x7a, 0x01, 0x62, 0xba, 0xc1, 0xce, 0xaf, 0x67, 0x6a, 0x8f, 0x1d, 0xa3, 0x29, - 0x32, 0xe1, 0xab, 0x6c, 0x42, 0x7a, 0x05, 0x6b, 0x0c, 0xaa, 0x0e, 0xb1, 0x0e, 0xd6, 0x38, 0xd4, - 0x3d, 0x54, 0x92, 0x70, 0xd7, 0x56, 0x7e, 0xf3, 0x77, 0xce, 0xce, 0x7c, 0xe0, 0xb3, 0x67, 0x67, - 0xc6, 0xaa, 0x53, 0x65, 0xb2, 0x3a, 0x79, 0x5a, 0xf4, 0xc3, 0x71, 0xb8, 0x9f, 0xde, 0x56, 0xb5, - 0x7b, 0xba, 0xe1, 0x5e, 0xd0, 0xec, 0x43, 0xcb, 0x35, 0x89, 0x51, 0x31, 0x77, 0xb9, 0x12, 0xcd, - 0xfa, 0xd9, 0x4b, 0x2c, 0x7b, 0xb4, 0x0a, 0x55, 0x76, 0x21, 0xb1, 0x45, 0xf8, 0x48, 0x27, 0xb9, - 0xa6, 0xab, 0x76, 0xb9, 0x27, 0xc4, 0x3e, 0x48, 0x2a, 0xbb, 0xe1, 0x1a, 0x65, 0xa9, 0xba, 0xb8, - 0xdc, 0xda, 0xc5, 0xea, 0x2e, 0xbb, 0x28, 0x14, 0xa3, 0x2e, 0x74, 0x9a, 0x24, 0xd0, 0x3b, 0x41, - 0xf3, 0x90, 0x50, 0xfb, 0xec, 0x30, 0x4f, 0x8c, 0xf8, 0xd6, 0xf4, 0xa3, 0xf2, 0x12, 0xa4, 0xf8, - 0x9e, 0x3e, 0x92, 0x20, 0x76, 0x13, 0x1f, 0xd2, 0x72, 0x72, 0x32, 0xf9, 0x89, 0x96, 0x20, 0x41, - 0x2b, 0xcf, 0x6f, 0x40, 0x96, 0x96, 0x86, 0x6a, 0xbf, 0x44, 0x2b, 0x29, 0x33, 0xb2, 0xca, 0x75, - 0x48, 0xaf, 0x98, 0x44, 0xb3, 0xc3, 0x68, 0x19, 0x86, 0x46, 0xeb, 0x6c, 0xf5, 0xb9, 0x5e, 0xc9, - 0xec, 0x03, 0x9d, 0x84, 0x24, 0xbb, 0x38, 0xc6, 0x0f, 0x24, 0xf1, 0xaf, 0x4a, 0x1d, 0x52, 0x14, - 0x7b, 0xd3, 0x22, 0x6e, 0x88, 0x77, 0x96, 0x3e, 0xc3, 0xaf, 0x11, 0x73, 0xf8, 0xa8, 0x5f, 0x59, - 0x04, 0xf1, 0x8e, 0xea, 0xaa, 0xbc, 0xdd, 0xf4, 0x77, 0xe5, 0x3d, 0x90, 0xe6, 0x20, 0x0e, 0xba, - 0x08, 0x31, 0xd3, 0x72, 0xf8, 0x91, 0xa2, 0xf2, 0xb8, 0xa6, 0x6c, 0x5a, 0xb5, 0x38, 0xd1, 0x25, - 0x99, 0x10, 0xd7, 0x36, 0xc6, 0xaa, 0xc5, 0x33, 0x21, 0xb5, 0xe8, 0x61, 0x77, 0x67, 0xd7, 0xf5, - 0x7f, 0xb0, 0xee, 0x1c, 0x52, 0x05, 0x4f, 0x51, 0xee, 0x46, 0xe1, 0x6c, 0x20, 0xf7, 0x16, 0xb6, - 0x1d, 0xdd, 0x34, 0x98, 0x36, 0x71, 0x4d, 0x41, 0x81, 0x0a, 0xf2, 0xfc, 0x31, 0xaa, 0xf2, 0x02, - 0xc4, 0xaa, 0x96, 0x85, 0xca, 0x90, 0xa6, 0xdf, 0x9a, 0xc9, 0x74, 0x25, 0x2e, 0x7b, 0xdf, 0x24, - 0xcf, 0x31, 0x77, 0xdd, 0xdb, 0xaa, 0xed, 0xdd, 0xab, 0x16, 0xdf, 0x95, 0xe7, 0x21, 0x53, 0x37, - 0x0d, 0x07, 0x1b, 0x4e, 0x9f, 0xfa, 0xd7, 0x3b, 0x5d, 0x53, 0xbb, 0xc9, 0x11, 0xd8, 0x07, 0x11, - 0xb6, 0x6a, 0x59, 0x94, 0x33, 0x2e, 0x93, 0x9f, 0x6c, 0x64, 0xd7, 0x36, 0xc7, 0x8a, 0xe7, 0xd2, - 0xf1, 0xc4, 0xc3, 0x1b, 0xe8, 0x3b, 0xca, 0x11, 0xb8, 0x6f, 0x78, 0x20, 0xdd, 0xc4, 0x87, 0xce, - 0x71, 0xc7, 0xd1, 0x2b, 0x90, 0xd9, 0xa2, 0x4f, 0x9e, 0xbc, 0x84, 0x0f, 0x51, 0x19, 0x52, 0xb8, - 0x73, 0xf1, 0xd2, 0xa5, 0xa7, 0x9e, 0x67, 0x5a, 0x7e, 0x6d, 0x46, 0x16, 0x09, 0xe8, 0x2c, 0x64, - 0x1c, 0xac, 0x59, 0x17, 0x2f, 0x5d, 0xbe, 0xf9, 0x14, 0x53, 0xab, 0x6b, 0x33, 0xb2, 0x9f, 0xb4, - 0x9c, 0x26, 0x2d, 0xfe, 0xfc, 0x27, 0x16, 0x22, 0xb5, 0x04, 0xc4, 0x9c, 0x7e, 0xef, 0x1d, 0xd3, - 0x8d, 0x3f, 0x4c, 0xc2, 0x62, 0x20, 0x97, 0x4d, 0x58, 0xb7, 0xd4, 0xae, 0xde, 0x51, 0xfd, 0x87, - 0x6a, 0xa4, 0x40, 0xfb, 0x29, 0xc5, 0x98, 0x99, 0xe8, 0x48, 0x29, 0x56, 0x7e, 0x2a, 0x02, 0xb9, - 0x1b, 0x02, 0xb9, 0x85, 0x5d, 0x74, 0x05, 0xc0, 0x2b, 0x49, 0x0c, 0x95, 0x33, 0x4b, 0x83, 0x65, - 0x2d, 0x79, 0x3c, 0x72, 0x80, 0x1c, 0x3d, 0x4b, 0x15, 0xd0, 0x32, 0x1d, 0x7e, 0xc7, 0x76, 0x02, - 0xab, 0x47, 0x8c, 0x1e, 0x07, 0x44, 0xad, 0x9a, 0x72, 0xcb, 0x74, 0x75, 0x63, 0x4f, 0xb1, 0xcc, - 0xdb, 0xfc, 0xe5, 0x82, 0x98, 0x2c, 0xd1, 0x9c, 0x1b, 0x34, 0x63, 0x8b, 0xa4, 0x93, 0x4a, 0x67, - 0x3c, 0x14, 0xb2, 0x54, 0x54, 0x3b, 0x1d, 0x1b, 0x3b, 0x0e, 0x37, 0x5c, 0xe2, 0x13, 0x5d, 0x81, - 0x94, 0xd5, 0xdf, 0x51, 0x84, 0x95, 0xc8, 0x5e, 0xbc, 0x6f, 0xd4, 0x98, 0x17, 0xba, 0xc1, 0x47, - 0x7d, 0xd2, 0xea, 0xef, 0x10, 0x4d, 0x79, 0x00, 0x72, 0x23, 0x2a, 0x93, 0xbd, 0xe5, 0xd7, 0x83, - 0xbe, 0xb2, 0xc3, 0x5b, 0xa0, 0x58, 0xb6, 0x6e, 0xda, 0xba, 0x7b, 0x48, 0x8f, 0x02, 0xc6, 0x64, - 0x49, 0x64, 0x6c, 0xf1, 0xf4, 0xca, 0x4d, 0x28, 0xb6, 0xe8, 0x12, 0xc2, 0xaf, 0xf9, 0x25, 0xbf, - 0x7e, 0x91, 0xc9, 0xf5, 0x1b, 0x5b, 0xb3, 0xe8, 0x50, 0xcd, 0xce, 0xff, 0x46, 0x04, 0xb2, 0x35, - 0x32, 0x70, 0x9b, 0x2b, 0x57, 0xbb, 0xea, 0x1e, 0x7a, 0x0a, 0x4e, 0xd4, 0xd6, 0x36, 0xeb, 0x2f, - 0x29, 0xcd, 0x15, 0xe5, 0xea, 0x5a, 0x75, 0xd5, 0x3f, 0x7b, 0x5c, 0x3e, 0x79, 0xe7, 0xee, 0x22, - 0x0a, 0xd0, 0x6e, 0x1b, 0x74, 0x9d, 0x8b, 0x2e, 0xc0, 0x7c, 0x98, 0xa5, 0x5a, 0x6b, 0x35, 0x36, - 0xda, 0x52, 0xa4, 0x7c, 0xe2, 0xce, 0xdd, 0xc5, 0xd9, 0x00, 0x47, 0x75, 0xc7, 0xc1, 0x86, 0x3b, - 0xcc, 0x50, 0xdf, 0x5c, 0x5f, 0x6f, 0xb6, 0xa5, 0xe8, 0x10, 0x43, 0xdd, 0xec, 0xf5, 0x74, 0x17, - 0x3d, 0x0a, 0xb3, 0x61, 0x86, 0x8d, 0xe6, 0x9a, 0x14, 0x2b, 0xa3, 0x3b, 0x77, 0x17, 0x0b, 0x01, - 0xea, 0x0d, 0xbd, 0x5b, 0x4e, 0x7f, 0xe8, 0x07, 0xcf, 0xce, 0x7c, 0xf2, 0x6f, 0x9f, 0x8d, 0xd4, - 0xd6, 0xc7, 0x8e, 0xb9, 0xa7, 0x8f, 0x37, 0xe6, 0xc2, 0xf3, 0xf6, 0x97, 0xee, 0x0b, 0x99, 0x1b, - 0xee, 0x23, 0x06, 0x8c, 0xf1, 0xb4, 0xc3, 0x6d, 0x52, 0xdc, 0xa3, 0x7c, 0xb4, 0x7b, 0x50, 0x9e, - 0x30, 0x29, 0x94, 0x27, 0x1a, 0x86, 0xca, 0xf3, 0x90, 0xdf, 0x52, 0x6d, 0xb7, 0x85, 0xdd, 0x6b, - 0x58, 0xed, 0x60, 0x3b, 0xec, 0x3f, 0xe4, 0x85, 0xff, 0x80, 0x20, 0x4e, 0x9d, 0x04, 0x36, 0x7f, - 0xd2, 0xdf, 0x95, 0x7d, 0x88, 0xd3, 0x53, 0xce, 0x9e, 0x6f, 0xc1, 0x39, 0x98, 0x6f, 0x41, 0x66, - 0x86, 0x43, 0x17, 0x3b, 0x22, 0x34, 0x47, 0x3f, 0xd0, 0x33, 0xc2, 0x43, 0x88, 0x1d, 0xed, 0x21, - 0xf0, 0xe1, 0xc5, 0xfd, 0x84, 0x2e, 0xa4, 0x78, 0x17, 0x7b, 0x15, 0x89, 0xf8, 0x15, 0x41, 0xeb, - 0x50, 0xb4, 0x54, 0xdb, 0xa5, 0xb7, 0x1e, 0xf7, 0x69, 0x2b, 0xf8, 0x08, 0x5e, 0x18, 0xb6, 0x27, - 0xa1, 0xc6, 0xf2, 0x52, 0xf2, 0x56, 0x30, 0xb1, 0xf2, 0x9f, 0xe3, 0x90, 0xe4, 0xc2, 0x78, 0x01, - 0x52, 0x5c, 0xac, 0x7c, 0xcc, 0xdd, 0xbf, 0x34, 0x3c, 0xcd, 0x2e, 0x79, 0xd3, 0x21, 0xc7, 0x13, - 0x3c, 0xe8, 0x61, 0x48, 0x6b, 0xfb, 0xaa, 0x6e, 0x28, 0x7a, 0x87, 0x3b, 0xc7, 0xd9, 0xcf, 0xbe, - 0xb9, 0x90, 0xaa, 0x93, 0xb4, 0xe6, 0x8a, 0x9c, 0xa2, 0x99, 0xcd, 0x0e, 0xf1, 0x69, 0xf6, 0xb1, - 0xbe, 0xb7, 0xef, 0x72, 0xbb, 0xc1, 0xbf, 0xd0, 0x73, 0x10, 0x27, 0x0a, 0xc1, 0xef, 0xc4, 0x97, - 0x87, 0x56, 0x3d, 0x5e, 0x58, 0xaa, 0x96, 0x26, 0x05, 0x7f, 0xf8, 0x3f, 0x2d, 0x44, 0x64, 0xca, - 0x81, 0xea, 0x90, 0xef, 0xaa, 0x8e, 0xab, 0xd0, 0xf9, 0x98, 0x14, 0x9f, 0xa0, 0x10, 0xa7, 0x87, - 0x05, 0xc2, 0x05, 0xcb, 0xab, 0x9e, 0x25, 0x5c, 0x2c, 0xa9, 0x83, 0xce, 0x81, 0x44, 0x41, 0x34, - 0x3a, 0x02, 0x99, 0x97, 0x98, 0xa4, 0x72, 0x2f, 0x90, 0x74, 0x36, 0x30, 0xa9, 0xaf, 0x78, 0x06, - 0x32, 0xf4, 0x16, 0x2e, 0x25, 0x61, 0x47, 0xeb, 0xd3, 0x24, 0x81, 0x66, 0x3e, 0x02, 0x45, 0xdf, - 0xea, 0x33, 0x92, 0x34, 0x43, 0xf1, 0x93, 0x29, 0xe1, 0x93, 0x30, 0x6f, 0xe0, 0x03, 0x7a, 0xd8, - 0x3f, 0x44, 0x9d, 0xa1, 0xd4, 0x88, 0xe4, 0xdd, 0x08, 0x73, 0x3c, 0x04, 0x05, 0x4d, 0x08, 0x9f, - 0xd1, 0x02, 0xa5, 0xcd, 0x7b, 0xa9, 0x94, 0xec, 0x34, 0xa4, 0x55, 0xcb, 0x62, 0x04, 0x59, 0x6e, - 0xf5, 0x2d, 0x8b, 0x66, 0x9d, 0x87, 0x59, 0xda, 0x46, 0x1b, 0x3b, 0xfd, 0xae, 0xcb, 0x41, 0x72, - 0x94, 0xa6, 0x48, 0x32, 0x64, 0x96, 0x4e, 0x69, 0x1f, 0x84, 0x3c, 0xbe, 0xa5, 0x77, 0xb0, 0xa1, - 0x61, 0x46, 0x97, 0xa7, 0x74, 0x39, 0x91, 0x48, 0x89, 0x1e, 0x05, 0xcf, 0x9a, 0x2b, 0x62, 0xa6, - 0x29, 0x30, 0x3c, 0x91, 0x5e, 0x65, 0xc9, 0x95, 0x12, 0xc4, 0x57, 0x54, 0x57, 0x25, 0xee, 0x92, - 0x7b, 0xc0, 0xa6, 0xcf, 0x9c, 0x4c, 0x7e, 0x56, 0x7e, 0x36, 0x06, 0xf1, 0x1b, 0xa6, 0x8b, 0xd1, - 0xd3, 0x01, 0x57, 0xb6, 0x30, 0x4a, 0x9f, 0x5b, 0xfa, 0x9e, 0x81, 0x3b, 0xeb, 0xce, 0x5e, 0xe0, - 0xc9, 0x1c, 0x5f, 0x9d, 0xa2, 0x21, 0x75, 0x9a, 0x87, 0x84, 0x6d, 0xf6, 0x8d, 0x8e, 0x38, 0x94, - 0x4e, 0x3f, 0x50, 0x03, 0xd2, 0x9e, 0x96, 0xc4, 0x27, 0x69, 0x49, 0x91, 0x68, 0x09, 0xd1, 0x61, - 0x9e, 0x20, 0xa7, 0x76, 0xb8, 0xb2, 0xd4, 0x20, 0xe3, 0x19, 0x2f, 0xae, 0x6d, 0xd3, 0x29, 0xac, - 0xcf, 0x46, 0xa6, 0x48, 0xaf, 0xef, 0x3d, 0xe1, 0x31, 0x8d, 0x93, 0xbc, 0x0c, 0x2e, 0xbd, 0x90, - 0x5a, 0xf1, 0xe7, 0x7b, 0x52, 0xb4, 0x5d, 0xbe, 0x5a, 0xb1, 0x27, 0x7c, 0xee, 0x83, 0x8c, 0xa3, - 0xef, 0x19, 0xaa, 0xdb, 0xb7, 0x31, 0xd7, 0x3c, 0x3f, 0x81, 0xe4, 0xfa, 0x17, 0x34, 0x98, 0xa6, - 0x05, 0x5e, 0x15, 0xbb, 0x00, 0x73, 0xfe, 0x7b, 0x5e, 0x3e, 0x0a, 0xd3, 0x32, 0xe4, 0x65, 0xb5, - 0x44, 0x4e, 0xe5, 0x97, 0x23, 0x90, 0xe4, 0x33, 0x96, 0xdf, 0x0d, 0x91, 0xd1, 0xdd, 0x10, 0x1d, - 0xd7, 0x0d, 0xb1, 0x7b, 0xef, 0x86, 0x2a, 0x80, 0x57, 0x4d, 0x87, 0x3f, 0xd2, 0x32, 0xc2, 0xad, - 0x62, 0x55, 0x6c, 0xe9, 0x7b, 0x7c, 0xdc, 0x07, 0x98, 0x2a, 0xbf, 0x15, 0x21, 0x1e, 0x3e, 0xcf, - 0x47, 0x55, 0xc8, 0x8b, 0x7a, 0x29, 0xbb, 0x5d, 0x75, 0x8f, 0xab, 0xe2, 0xfd, 0x63, 0x2b, 0x47, - 0x66, 0x61, 0x39, 0xcb, 0xeb, 0x43, 0xfd, 0x89, 0x91, 0xdd, 0x1a, 0x1d, 0xd3, 0xad, 0x21, 0x3d, - 0x8a, 0xdd, 0x9b, 0x1e, 0x85, 0x7a, 0x3c, 0x3e, 0xd0, 0xe3, 0x95, 0xdf, 0x89, 0xf0, 0xd7, 0xc4, - 0x3a, 0xec, 0x76, 0xc9, 0x9f, 0x55, 0x57, 0xbd, 0xc6, 0x75, 0xab, 0x83, 0x3b, 0xca, 0x50, 0x9f, - 0x3d, 0x38, 0x8c, 0x18, 0xae, 0xb3, 0xdf, 0x77, 0x48, 0xa0, 0xb4, 0xfc, 0x3e, 0xfc, 0x54, 0x14, - 0x66, 0x87, 0xe8, 0xff, 0xfc, 0xf5, 0x65, 0x78, 0xf4, 0x26, 0xa6, 0x1c, 0xbd, 0xc9, 0xb1, 0xa3, - 0xf7, 0xa7, 0xa3, 0x34, 0x00, 0x60, 0x99, 0x8e, 0xda, 0xfd, 0x4a, 0xd8, 0xde, 0x33, 0x90, 0xb1, - 0xcc, 0xae, 0xc2, 0x72, 0xd8, 0xb5, 0xa0, 0xb4, 0x65, 0x76, 0xe5, 0x21, 0x35, 0x4b, 0xbc, 0x4d, - 0x86, 0x39, 0xf9, 0x36, 0x74, 0x42, 0x6a, 0x70, 0x40, 0xd9, 0x90, 0x63, 0xa2, 0xe0, 0x5e, 0xd3, - 0x93, 0x44, 0x06, 0xd4, 0x0d, 0x8b, 0x0c, 0x7b, 0x79, 0xac, 0xda, 0x8c, 0x52, 0xe6, 0x74, 0x84, - 0x83, 0x39, 0x19, 0xa3, 0x22, 0x47, 0x41, 0x8b, 0x25, 0x73, 0xba, 0xca, 0x77, 0x47, 0x00, 0xd6, - 0x88, 0x64, 0x69, 0x7b, 0x89, 0xbf, 0xe3, 0xd0, 0x2a, 0x28, 0xa1, 0x92, 0xcf, 0x8e, 0xeb, 0x34, - 0x5e, 0x7e, 0xce, 0x09, 0xd6, 0xbb, 0x0e, 0x79, 0x5f, 0xb7, 0x1d, 0x2c, 0x2a, 0x73, 0xf6, 0x88, - 0x55, 0x69, 0x0b, 0xbb, 0x72, 0xee, 0x56, 0xe0, 0xab, 0xf2, 0x8f, 0x23, 0x90, 0xa1, 0x75, 0x5a, - 0xc7, 0xae, 0x1a, 0xea, 0xc3, 0xc8, 0xbd, 0xf7, 0xe1, 0xfd, 0x00, 0x0c, 0xc6, 0xd1, 0xdf, 0xc0, - 0x5c, 0xb3, 0x32, 0x34, 0xa5, 0xa5, 0xbf, 0x81, 0xd1, 0x65, 0x4f, 0xe0, 0xb1, 0xa3, 0x05, 0x2e, - 0x56, 0xad, 0x5c, 0xec, 0xa7, 0x20, 0x45, 0xdf, 0xbb, 0x3c, 0x70, 0xf8, 0x42, 0x34, 0x69, 0xf4, - 0x7b, 0xed, 0x03, 0xa7, 0xf2, 0x3a, 0xa4, 0xda, 0x07, 0x2c, 0x9e, 0x78, 0x06, 0x32, 0xb6, 0x69, - 0x72, 0xef, 0x8f, 0x79, 0xdd, 0x69, 0x92, 0x40, 0x9d, 0x1d, 0x11, 0x43, 0x8b, 0xfa, 0x31, 0x34, - 0x3f, 0x08, 0x18, 0x9b, 0x2a, 0x08, 0x48, 0x56, 0x9f, 0xf9, 0xd0, 0x48, 0x42, 0x8f, 0xc3, 0xa9, - 0x56, 0x73, 0x75, 0xa3, 0xb1, 0xa2, 0xac, 0xb7, 0x56, 0x07, 0xae, 0xfc, 0x97, 0x8b, 0x77, 0xee, - 0x2e, 0x66, 0xf9, 0xb2, 0x73, 0x1c, 0xf5, 0x96, 0xdc, 0xb8, 0xb1, 0xd9, 0x6e, 0x48, 0x11, 0x46, - 0xbd, 0x65, 0xe3, 0x5b, 0xa6, 0xcb, 0x1e, 0x94, 0x7d, 0x12, 0x4e, 0x8f, 0xa0, 0xf6, 0x16, 0x9f, - 0xb3, 0x77, 0xee, 0x2e, 0xe6, 0xb7, 0x6c, 0xcc, 0xb4, 0x8c, 0x72, 0x2c, 0x41, 0x69, 0x98, 0x63, - 0x73, 0x6b, 0xb3, 0x55, 0x5d, 0x93, 0x16, 0xcb, 0xd2, 0x9d, 0xbb, 0x8b, 0x39, 0x61, 0x32, 0x08, - 0xfd, 0x3b, 0xbf, 0xfa, 0xfc, 0xe6, 0x74, 0x28, 0x6a, 0xcc, 0xd6, 0x75, 0x96, 0x6a, 0xab, 0xbd, - 0xe3, 0x2e, 0x3f, 0x27, 0x1c, 0x46, 0xa8, 0xfc, 0x54, 0x14, 0x8a, 0xde, 0xe2, 0x66, 0x8b, 0x96, - 0x80, 0x9e, 0x0e, 0x46, 0xfc, 0xb2, 0x63, 0xe7, 0x0e, 0x46, 0x2d, 0x02, 0x82, 0xef, 0x86, 0xb4, - 0x70, 0x92, 0xf9, 0xa0, 0x5a, 0x1c, 0x31, 0xbf, 0x71, 0x0a, 0xce, 0xea, 0x71, 0xa0, 0x17, 0x21, - 0xe3, 0x0d, 0x31, 0xef, 0xd1, 0xb5, 0xf1, 0x63, 0x92, 0xf3, 0xfb, 0x3c, 0xe8, 0x79, 0x7f, 0x19, - 0x17, 0x1f, 0xb7, 0x30, 0xbc, 0xc1, 0x08, 0x38, 0xb3, 0xb7, 0x84, 0x7b, 0x12, 0xe2, 0xea, 0x8e, - 0xa6, 0x73, 0x03, 0x7c, 0xdf, 0x30, 0x5f, 0xb5, 0x56, 0x6f, 0x72, 0x26, 0x4a, 0x59, 0x69, 0xf2, - 0x60, 0x0a, 0x97, 0x17, 0x7d, 0xe2, 0xe6, 0x40, 0x61, 0x6b, 0x61, 0xe6, 0x5d, 0xa4, 0x7b, 0xea, - 0x41, 0x8d, 0x2e, 0x87, 0x4f, 0x41, 0x8a, 0x64, 0xee, 0xf1, 0x47, 0x14, 0x62, 0x72, 0xb2, 0xa7, - 0x1e, 0xac, 0xaa, 0xce, 0xf5, 0x78, 0x3a, 0x26, 0xc5, 0x2b, 0x3f, 0x4a, 0x3c, 0x95, 0x90, 0x54, - 0xd0, 0x63, 0x80, 0x08, 0x87, 0xba, 0x87, 0x15, 0x32, 0x74, 0xa9, 0x78, 0x05, 0x6e, 0xb1, 0xa7, - 0x1e, 0x54, 0xf7, 0xf0, 0x46, 0xbf, 0x47, 0x2b, 0xe0, 0xa0, 0x75, 0x90, 0x04, 0xb1, 0xe8, 0x59, - 0x2e, 0xfe, 0xd3, 0xc3, 0x8f, 0xb6, 0x72, 0x02, 0x36, 0x01, 0x7c, 0x84, 0x4c, 0x00, 0x05, 0x86, - 0xe7, 0x1d, 0x3f, 0x09, 0x35, 0x25, 0x16, 0x6e, 0x4a, 0xe5, 0x45, 0x28, 0x0e, 0xf4, 0x00, 0xaa, - 0x40, 0x9e, 0x47, 0xac, 0xe8, 0xd6, 0x3e, 0x5b, 0xe1, 0x64, 0xe4, 0x2c, 0x8b, 0x4c, 0xd1, 0xa3, - 0x0e, 0xcb, 0xe9, 0x9f, 0xfb, 0xf8, 0x42, 0x84, 0x6e, 0xfb, 0x3c, 0x06, 0xf9, 0x50, 0x1f, 0x88, - 0x28, 0x72, 0xc4, 0x8f, 0x22, 0xfb, 0xc4, 0xaf, 0x41, 0x8e, 0x18, 0x20, 0xdc, 0xe1, 0xb4, 0x0f, - 0x43, 0x91, 0x19, 0xc8, 0x41, 0x59, 0x33, 0x87, 0x67, 0x5d, 0x08, 0xbc, 0x22, 0x3c, 0xa0, 0xb0, - 0xd8, 0xb3, 0x82, 0x6a, 0x55, 0x75, 0x2a, 0x9b, 0x00, 0x7e, 0xa7, 0xa2, 0x2a, 0xdc, 0x4f, 0x8c, - 0x47, 0xf0, 0x28, 0x2a, 0x7f, 0x6e, 0x2b, 0xe4, 0x31, 0x96, 0x09, 0x91, 0x7f, 0xdc, 0x94, 0x3d, - 0xba, 0x75, 0x8d, 0x52, 0xd4, 0x5e, 0xfe, 0xe4, 0x67, 0xcf, 0x46, 0xde, 0x19, 0x5b, 0xf0, 0xef, - 0x5f, 0x85, 0x33, 0x81, 0x4c, 0xa2, 0x80, 0xa1, 0x40, 0x54, 0x31, 0xa0, 0xaf, 0x24, 0x73, 0x52, - 0x40, 0xe9, 0xc8, 0xf8, 0x6f, 0xf9, 0x68, 0xb3, 0x33, 0x39, 0xda, 0x34, 0x39, 0xde, 0x35, 0x3a, - 0x28, 0xff, 0x8f, 0x32, 0x90, 0x92, 0xf1, 0xfb, 0xfb, 0xd8, 0x71, 0xd1, 0x45, 0x88, 0x63, 0x6d, - 0xdf, 0x1c, 0x15, 0x03, 0x25, 0x0d, 0x5c, 0xe2, 0x74, 0x0d, 0x6d, 0xdf, 0xbc, 0x36, 0x23, 0x53, - 0x5a, 0x74, 0x09, 0x12, 0xbb, 0xdd, 0x3e, 0x0f, 0x5f, 0x0d, 0xd8, 0xac, 0x20, 0xd3, 0x55, 0x42, - 0x74, 0x6d, 0x46, 0x66, 0xd4, 0xa4, 0x28, 0xfa, 0xda, 0x76, 0xec, 0xe8, 0xa2, 0x9a, 0xc6, 0x2e, - 0x2d, 0x8a, 0xd0, 0xa2, 0x1a, 0x80, 0x6e, 0xe8, 0xae, 0x42, 0x43, 0x3b, 0xdc, 0x6a, 0x3c, 0x30, - 0x9e, 0x53, 0x77, 0x69, 0x30, 0xe8, 0xda, 0x8c, 0x9c, 0xd1, 0xc5, 0x07, 0xa9, 0xee, 0xfb, 0xfb, - 0xd8, 0x3e, 0xe4, 0xde, 0xda, 0xd8, 0xea, 0xbe, 0x4c, 0x88, 0x48, 0x75, 0x29, 0x35, 0x31, 0xb2, - 0xec, 0xe1, 0x3e, 0xf7, 0x80, 0x3f, 0x47, 0xbb, 0x30, 0x8e, 0x93, 0xbe, 0xde, 0xd7, 0x3e, 0xb8, - 0x36, 0x23, 0xa7, 0x34, 0xf6, 0x13, 0x3d, 0xe7, 0xb9, 0x60, 0xd9, 0x61, 0xaf, 0x27, 0xc4, 0xcb, - 0xc2, 0x3e, 0x33, 0xc2, 0x15, 0x43, 0x1b, 0x50, 0xe8, 0xea, 0x8e, 0xab, 0x38, 0x86, 0x6a, 0x39, - 0xfb, 0xa6, 0xeb, 0xd0, 0xf8, 0x49, 0xf6, 0xe2, 0x43, 0xe3, 0x10, 0xd6, 0x74, 0xc7, 0x6d, 0x09, - 0xe2, 0x6b, 0x33, 0x72, 0xbe, 0x1b, 0x4c, 0x20, 0x78, 0xe6, 0xee, 0x2e, 0xb6, 0x3d, 0x40, 0x1a, - 0x67, 0x39, 0x02, 0x6f, 0x93, 0x50, 0x0b, 0x7e, 0x82, 0x67, 0x06, 0x13, 0xd0, 0xd7, 0xc0, 0x5c, - 0xd7, 0x54, 0x3b, 0x1e, 0x9c, 0xa2, 0xed, 0xf7, 0x8d, 0x9b, 0x34, 0x28, 0x93, 0xbd, 0xf8, 0xe8, - 0xd8, 0x4a, 0x9a, 0x6a, 0x47, 0x40, 0xd4, 0x09, 0xc3, 0xb5, 0x19, 0x79, 0xb6, 0x3b, 0x98, 0x88, - 0xde, 0x07, 0xf3, 0xaa, 0x65, 0x75, 0x0f, 0x07, 0xd1, 0x8b, 0x14, 0xfd, 0xfc, 0x38, 0xf4, 0x2a, - 0xe1, 0x19, 0x84, 0x47, 0xea, 0x50, 0x2a, 0x6a, 0x83, 0x64, 0xd9, 0x98, 0xde, 0xe6, 0xb2, 0xb8, - 0x97, 0x41, 0xdf, 0xba, 0xca, 0x5e, 0x7c, 0x64, 0x1c, 0xf6, 0x16, 0xa3, 0x17, 0x4e, 0xc9, 0xb5, - 0x19, 0xb9, 0x68, 0x85, 0x93, 0x18, 0xaa, 0xa9, 0x61, 0xfa, 0x14, 0x1f, 0x47, 0x9d, 0x9d, 0x84, - 0x4a, 0xe9, 0xc3, 0xa8, 0xa1, 0x24, 0xd4, 0x80, 0x2c, 0x5b, 0x8a, 0x2a, 0xc4, 0x18, 0xd2, 0x17, - 0xb2, 0xb2, 0x17, 0x2b, 0x63, 0x47, 0x28, 0x25, 0xbd, 0x61, 0xba, 0xf8, 0xda, 0x8c, 0x0c, 0xd8, - 0xfb, 0x42, 0x2a, 0x9c, 0xa0, 0x8f, 0x85, 0x1d, 0x2a, 0x61, 0xc3, 0x5b, 0x9a, 0xa3, 0x80, 0x8f, - 0x8d, 0x03, 0xbc, 0x41, 0x99, 0x6e, 0x04, 0xed, 0xf0, 0xb5, 0x19, 0x79, 0xee, 0xd6, 0x70, 0x32, - 0x51, 0xb1, 0x5d, 0xdd, 0x50, 0xbb, 0xfa, 0x1b, 0x98, 0x4d, 0xa1, 0xf4, 0x99, 0xcc, 0x23, 0x54, - 0xec, 0x2a, 0xa7, 0xa6, 0x13, 0x2b, 0x51, 0xb1, 0xdd, 0x60, 0x42, 0x2d, 0xc5, 0xcf, 0xa1, 0x7a, - 0xcf, 0xbe, 0xa5, 0xa4, 0x34, 0x7b, 0xea, 0xed, 0x7a, 0x3c, 0x0d, 0x52, 0xb6, 0xf2, 0x08, 0x64, - 0x03, 0x86, 0x09, 0x95, 0x20, 0xc5, 0x4f, 0xea, 0x88, 0x13, 0xad, 0xfc, 0xb3, 0x52, 0x80, 0x5c, - 0xd0, 0x18, 0x55, 0x3e, 0x1c, 0xf1, 0x38, 0xe9, 0x7b, 0x17, 0xa5, 0x70, 0x44, 0x3a, 0xe3, 0x7b, - 0x2a, 0x0f, 0x8a, 0xa9, 0x4d, 0xe4, 0xb3, 0xed, 0xd7, 0x1c, 0x4d, 0xe4, 0x33, 0x2b, 0x5a, 0x80, - 0xac, 0x75, 0xd1, 0xf2, 0x48, 0x62, 0x94, 0x04, 0xac, 0x8b, 0x96, 0x20, 0x78, 0x00, 0x72, 0xa4, - 0xdd, 0x4a, 0xd0, 0x5f, 0xca, 0xc8, 0x59, 0x92, 0xc6, 0x49, 0x2a, 0xff, 0x32, 0x0a, 0xd2, 0xa0, - 0x01, 0xf3, 0x42, 0xd5, 0x91, 0x63, 0x87, 0xaa, 0x4f, 0x0f, 0x06, 0xc9, 0xfd, 0xb8, 0xf8, 0x1a, - 0x48, 0x7e, 0x78, 0x97, 0x4d, 0x35, 0xe3, 0xfd, 0xbf, 0x01, 0x47, 0x55, 0x2e, 0x6a, 0x03, 0x9e, - 0xeb, 0xd5, 0xd0, 0x66, 0xa5, 0xf8, 0x73, 0x14, 0x83, 0x1d, 0xee, 0x39, 0x31, 0xdb, 0x56, 0x47, - 0x75, 0xb1, 0x88, 0x8f, 0x05, 0xf6, 0x2d, 0x1f, 0x86, 0xa2, 0x6a, 0x59, 0x8a, 0xe3, 0xaa, 0x2e, - 0xe6, 0xbe, 0x06, 0x8b, 0x3c, 0xe4, 0x55, 0xcb, 0x6a, 0x91, 0x54, 0xe6, 0x6b, 0x3c, 0x04, 0x05, - 0x62, 0xd3, 0x75, 0xb5, 0x2b, 0x5c, 0x85, 0x24, 0x73, 0x49, 0x78, 0x2a, 0xf3, 0x0e, 0x2a, 0x1d, - 0xaf, 0xc7, 0xa9, 0x3d, 0xf7, 0xd6, 0x54, 0x91, 0xc0, 0x9a, 0x0a, 0xf1, 0x77, 0x48, 0x98, 0x7c, - 0xc4, 0xdb, 0x2d, 0xa3, 0x37, 0x0d, 0xe6, 0xe9, 0xfa, 0xeb, 0x16, 0x0b, 0x96, 0xa4, 0x65, 0xf6, - 0x51, 0x91, 0xa1, 0x10, 0xb6, 0xfd, 0xa8, 0x00, 0x51, 0xf7, 0x80, 0x97, 0x12, 0x75, 0x0f, 0x88, - 0xa7, 0xeb, 0xbd, 0xde, 0x5b, 0x18, 0x31, 0xdb, 0x71, 0x3e, 0x3f, 0xd6, 0x51, 0x29, 0x42, 0x3e, - 0x34, 0x27, 0x54, 0x4e, 0xc2, 0xfc, 0x28, 0x13, 0x5f, 0xd9, 0xf7, 0xd2, 0x43, 0xa6, 0x1a, 0x5d, - 0x82, 0xb4, 0x67, 0xe3, 0x47, 0xac, 0x8e, 0x69, 0xb1, 0x82, 0x58, 0xf6, 0x48, 0x43, 0xe1, 0xfc, - 0x68, 0x28, 0x9c, 0x5f, 0xf9, 0x7a, 0x28, 0x8d, 0xb3, 0xdf, 0x03, 0x41, 0xbe, 0xb8, 0x27, 0xb0, - 0x93, 0x90, 0xe4, 0xcf, 0x64, 0x46, 0xe9, 0x06, 0x16, 0xff, 0x22, 0x82, 0x64, 0xb6, 0x3c, 0xc6, - 0xf6, 0xb5, 0xe8, 0x47, 0x45, 0x81, 0xd3, 0x63, 0x6d, 0xf8, 0xf8, 0xad, 0x30, 0x06, 0xc4, 0xb7, - 0xc2, 0x34, 0x51, 0x1d, 0x87, 0xb6, 0x55, 0x1c, 0x64, 0x61, 0x5f, 0x95, 0x8f, 0xc4, 0xe0, 0xe4, - 0x68, 0x4b, 0x8e, 0x16, 0x21, 0x47, 0xfc, 0x56, 0x37, 0xec, 0xe2, 0x42, 0x4f, 0x3d, 0x68, 0x73, - 0xff, 0x96, 0x6f, 0x25, 0x44, 0xbd, 0xad, 0x04, 0xb4, 0x0d, 0xb3, 0x5d, 0x53, 0x53, 0xbb, 0x4a, - 0x60, 0x2b, 0x87, 0x0f, 0xa2, 0x07, 0x87, 0x84, 0x1d, 0x0e, 0x19, 0x12, 0x83, 0xc3, 0xf5, 0xbf, - 0x48, 0x31, 0xd6, 0xbc, 0x5d, 0x1f, 0xb4, 0x02, 0xd9, 0x9e, 0xee, 0xec, 0xe0, 0x7d, 0xf5, 0x96, - 0x6e, 0xda, 0x7c, 0x34, 0x0d, 0x2b, 0xcd, 0xba, 0x4f, 0x23, 0x76, 0x98, 0x02, 0x6c, 0x81, 0x2e, - 0x49, 0x8c, 0xdc, 0xf8, 0x4a, 0x1e, 0xdb, 0x9a, 0x8c, 0xdb, 0x43, 0x4a, 0x8d, 0xdd, 0x43, 0x1a, - 0xb5, 0x61, 0x93, 0x1e, 0xbd, 0x61, 0xf3, 0xa1, 0x60, 0xd7, 0x84, 0xe7, 0xbe, 0xa1, 0x3d, 0x1c, - 0xd4, 0x82, 0x79, 0xce, 0xdf, 0x09, 0xc9, 0x7e, 0xc4, 0x51, 0x07, 0x36, 0xbe, 0x06, 0x65, 0x8e, - 0x04, 0xfb, 0x78, 0xb1, 0xc7, 0xee, 0x4d, 0xec, 0x62, 0x13, 0x35, 0x1e, 0xd8, 0x44, 0xfd, 0x7f, - 0xac, 0x2b, 0x3e, 0x18, 0x83, 0xd9, 0x21, 0x47, 0x62, 0xe4, 0xee, 0xf0, 0xb8, 0x88, 0xac, 0x68, - 0x58, 0xec, 0xd8, 0x0d, 0xe3, 0x7d, 0x1d, 0x9f, 0xdc, 0xd7, 0x89, 0xb7, 0xb1, 0xaf, 0x93, 0xf7, - 0xd6, 0xd7, 0xef, 0x68, 0x2f, 0x7c, 0x2c, 0x02, 0xe5, 0xf1, 0xde, 0xd7, 0xc8, 0xee, 0x38, 0xd6, - 0x06, 0xc2, 0xb8, 0x39, 0xee, 0x21, 0x28, 0x0c, 0xf8, 0x86, 0x4c, 0x95, 0xf3, 0xa1, 0x55, 0x78, - 0xe5, 0x1b, 0x63, 0xde, 0xc4, 0x13, 0x72, 0xe0, 0x46, 0x8c, 0xd6, 0x97, 0x61, 0xae, 0x83, 0x35, - 0xbd, 0x73, 0xaf, 0x83, 0x75, 0x96, 0x73, 0xff, 0xff, 0xb1, 0x3a, 0xac, 0x25, 0xdf, 0x05, 0x90, - 0x96, 0xb1, 0x63, 0x11, 0x7f, 0x0c, 0xd5, 0x20, 0x83, 0x0f, 0x34, 0x6c, 0xb9, 0xfe, 0xa1, 0x8a, - 0x51, 0x4b, 0x04, 0x46, 0xdd, 0x10, 0x94, 0x64, 0x81, 0xec, 0xb1, 0xa1, 0xa7, 0x79, 0x0c, 0x60, - 0xfc, 0x72, 0x9e, 0xb3, 0x07, 0x83, 0x00, 0x97, 0x45, 0x10, 0x20, 0x36, 0x76, 0x7d, 0xcb, 0xb8, - 0x06, 0xa2, 0x00, 0x4f, 0xf3, 0x28, 0x40, 0x7c, 0x42, 0x61, 0xa1, 0x30, 0x40, 0x3d, 0x14, 0x06, - 0x48, 0x4e, 0x68, 0xe6, 0x98, 0x38, 0xc0, 0x65, 0x11, 0x07, 0x48, 0x4d, 0xa8, 0xf1, 0x40, 0x20, - 0xe0, 0x85, 0x40, 0x20, 0x20, 0x33, 0x1c, 0x6d, 0x0d, 0xb1, 0x8e, 0x88, 0x04, 0x3c, 0xef, 0x45, - 0x02, 0x72, 0x63, 0xa3, 0x08, 0x9c, 0x79, 0x30, 0x14, 0xb0, 0x39, 0x14, 0x0a, 0xc8, 0xf3, 0x3f, - 0xba, 0x34, 0x0e, 0x62, 0x42, 0x2c, 0x60, 0x73, 0x28, 0x16, 0x50, 0x98, 0x00, 0x38, 0x21, 0x18, - 0xf0, 0xb5, 0xa3, 0x83, 0x01, 0xe3, 0x97, 0xeb, 0xbc, 0x9a, 0xd3, 0x45, 0x03, 0x94, 0x31, 0xd1, - 0x00, 0x69, 0xec, 0xca, 0x95, 0xc1, 0x4f, 0x1d, 0x0e, 0xd8, 0x1e, 0x11, 0x0e, 0x60, 0x0b, 0xf7, - 0x73, 0x63, 0xc1, 0xa7, 0x88, 0x07, 0x6c, 0x8f, 0x88, 0x07, 0xa0, 0x89, 0xb0, 0x13, 0x03, 0x02, - 0x57, 0xc3, 0x01, 0x81, 0xb9, 0x31, 0x5e, 0xa7, 0x3f, 0xda, 0xc7, 0x44, 0x04, 0x76, 0xc6, 0x45, - 0x04, 0xd8, 0xaa, 0xfd, 0xf1, 0xb1, 0x88, 0xc7, 0x08, 0x09, 0x6c, 0x0e, 0x85, 0x04, 0x4e, 0x4c, - 0xd0, 0xb4, 0xe9, 0x63, 0x02, 0xec, 0x11, 0x78, 0xf6, 0xfc, 0x3b, 0x48, 0xd9, 0xeb, 0xf1, 0x74, - 0x56, 0xca, 0x55, 0x1e, 0x25, 0x1e, 0xcc, 0x80, 0x9d, 0x23, 0x6b, 0x05, 0x6c, 0xdb, 0xa6, 0x2d, - 0xee, 0x58, 0xd0, 0x8f, 0xca, 0x39, 0xb2, 0x46, 0xf4, 0x6d, 0xda, 0x11, 0xf1, 0x03, 0xba, 0x26, - 0x0b, 0xd8, 0xb1, 0xca, 0xcf, 0x45, 0x7c, 0x5e, 0x1a, 0x41, 0x08, 0xae, 0x2f, 0x33, 0x7c, 0x7d, - 0x19, 0x88, 0x2a, 0x44, 0xc3, 0x51, 0x85, 0x05, 0xc8, 0x92, 0xb5, 0xd6, 0x40, 0xc0, 0x40, 0xb5, - 0xbc, 0x80, 0x81, 0x38, 0x40, 0xc5, 0x62, 0x0f, 0x7c, 0x5a, 0x62, 0xbb, 0x89, 0x45, 0xef, 0x30, - 0x19, 0x5b, 0xea, 0xa2, 0x27, 0x60, 0x2e, 0x40, 0xeb, 0xad, 0xe1, 0xd8, 0xea, 0x59, 0xf2, 0xa8, - 0xab, 0x7c, 0x31, 0xf7, 0x4f, 0x23, 0xbe, 0x84, 0xfc, 0x48, 0xc3, 0xa8, 0xa0, 0x40, 0xe4, 0x6d, - 0x0a, 0x0a, 0x44, 0xef, 0x39, 0x28, 0x10, 0x5c, 0x93, 0xc6, 0xc2, 0x6b, 0xd2, 0xff, 0x11, 0xf1, - 0xfb, 0xc4, 0x5b, 0xe2, 0x6b, 0x66, 0x07, 0xf3, 0x55, 0x22, 0xfd, 0x4d, 0x5c, 0x92, 0xae, 0xb9, - 0xc7, 0xd7, 0x82, 0xe4, 0x27, 0xa1, 0xf2, 0x26, 0x9e, 0x0c, 0x9f, 0x57, 0xbc, 0x05, 0x66, 0x22, - 0x78, 0x8f, 0x83, 0x5f, 0x6e, 0x48, 0xfa, 0x97, 0x1b, 0xbc, 0x8b, 0xd1, 0xa9, 0xc0, 0xc5, 0x68, - 0xf4, 0x1c, 0x64, 0x68, 0xb0, 0x5f, 0x31, 0x2d, 0xf1, 0x17, 0xcb, 0xce, 0x8c, 0xbf, 0xd8, 0xe0, - 0xd0, 0x23, 0xd7, 0xec, 0x32, 0x84, 0xef, 0x71, 0x64, 0x42, 0x1e, 0xc7, 0x7d, 0x90, 0x21, 0xb5, - 0x67, 0x7f, 0x79, 0x03, 0xf8, 0xad, 0x7a, 0x91, 0x50, 0xf9, 0xb1, 0x28, 0x14, 0x07, 0x26, 0x9a, - 0x91, 0x6d, 0x1f, 0xb5, 0x8d, 0x3c, 0x9d, 0x3c, 0xce, 0x02, 0xec, 0xa9, 0x8e, 0x72, 0x5b, 0x35, - 0x5c, 0xdc, 0xe1, 0x42, 0x09, 0xa4, 0xa0, 0x32, 0xa4, 0xc9, 0x57, 0xdf, 0xc1, 0x1d, 0x1e, 0x7d, - 0xf1, 0xbe, 0xd1, 0x35, 0x48, 0xe2, 0x5b, 0xf4, 0xe5, 0x59, 0xf6, 0x7e, 0xf3, 0xc9, 0xe1, 0xe5, - 0x30, 0xc9, 0xae, 0x95, 0x48, 0x67, 0x7f, 0xe1, 0xcd, 0x05, 0x89, 0x51, 0x3f, 0xee, 0x5d, 0x66, - 0x93, 0x39, 0x7f, 0x58, 0x0a, 0xe9, 0x01, 0x29, 0xd0, 0x38, 0x60, 0x4e, 0x2c, 0xef, 0x89, 0x4c, - 0xd9, 0x19, 0x6f, 0x39, 0xdf, 0xc3, 0x3d, 0xcb, 0x34, 0xbb, 0x0a, 0x1b, 0xe3, 0x55, 0x28, 0x84, - 0xe7, 0x55, 0xf6, 0x57, 0xb1, 0x5c, 0x55, 0x37, 0x94, 0x90, 0x13, 0x9c, 0x63, 0x89, 0x6c, 0x4c, - 0x5d, 0x8f, 0xa7, 0x23, 0x52, 0xf4, 0x7a, 0x3c, 0x1d, 0x95, 0x62, 0x95, 0x2d, 0x38, 0x31, 0x72, - 0x5e, 0x45, 0xcf, 0x42, 0xc6, 0x9f, 0x92, 0xd9, 0x31, 0xfd, 0x23, 0x22, 0x2d, 0x3e, 0x6d, 0xe5, - 0x97, 0x22, 0x3e, 0x64, 0x38, 0x76, 0xd3, 0x80, 0x24, 0x3b, 0x33, 0xc9, 0xcf, 0xc7, 0x3c, 0x31, - 0xdd, 0x8c, 0xbc, 0xc4, 0x0e, 0x54, 0xca, 0x9c, 0xb9, 0xf2, 0x3e, 0x48, 0xb2, 0x14, 0x94, 0x85, - 0x94, 0xff, 0xc6, 0x35, 0x40, 0xb2, 0x5a, 0xaf, 0x37, 0xb6, 0xc4, 0x83, 0xb5, 0xb5, 0x4d, 0xb9, - 0x2d, 0x45, 0x49, 0xb2, 0xdc, 0xb8, 0xde, 0xa8, 0xb7, 0xa5, 0x18, 0x9a, 0x85, 0x3c, 0xfb, 0xad, - 0x5c, 0xdd, 0x94, 0xd7, 0xab, 0x6d, 0x29, 0x1e, 0x48, 0x6a, 0x35, 0x36, 0x56, 0x1a, 0xb2, 0x94, - 0xa8, 0x3c, 0x05, 0xa7, 0xc7, 0xce, 0xe1, 0x7e, 0x60, 0x26, 0x12, 0x08, 0xcc, 0x54, 0x3e, 0x12, - 0x25, 0x8b, 0x9a, 0x71, 0x13, 0x33, 0xba, 0x3e, 0xd0, 0xf0, 0x8b, 0xc7, 0x98, 0xd5, 0x07, 0x5a, - 0x4f, 0xd6, 0x31, 0x36, 0xde, 0xc5, 0xae, 0xb6, 0xcf, 0x1c, 0x05, 0x66, 0x81, 0xf2, 0x72, 0x9e, - 0xa7, 0x52, 0x26, 0x87, 0x91, 0xbd, 0x8e, 0x35, 0x57, 0x61, 0x4a, 0xe4, 0xf0, 0x3f, 0xe2, 0x9b, - 0x67, 0xa9, 0x2d, 0x96, 0x58, 0xf9, 0xfa, 0x63, 0xc9, 0x32, 0x03, 0x09, 0xb9, 0xd1, 0x96, 0x5f, - 0x95, 0x62, 0x08, 0x41, 0x81, 0xfe, 0x54, 0x5a, 0x1b, 0xd5, 0xad, 0xd6, 0xb5, 0x4d, 0x22, 0xcb, - 0x39, 0x28, 0x0a, 0x59, 0x8a, 0xc4, 0x44, 0xe5, 0x31, 0x38, 0x35, 0xc6, 0xab, 0x18, 0x71, 0x88, - 0xf5, 0x13, 0x91, 0x20, 0x75, 0xd8, 0x33, 0xd8, 0x84, 0xa4, 0xe3, 0xaa, 0x6e, 0xdf, 0xe1, 0x42, - 0x7c, 0x76, 0x5a, 0x37, 0x63, 0x49, 0xfc, 0x68, 0x51, 0x76, 0x99, 0xc3, 0x54, 0x2e, 0x41, 0x21, - 0x9c, 0x33, 0x5e, 0x06, 0xbe, 0x12, 0x45, 0x2b, 0x57, 0x00, 0x0d, 0x7b, 0x1f, 0x23, 0x96, 0x97, - 0x91, 0x51, 0xcb, 0xcb, 0x1f, 0x8a, 0xc0, 0x99, 0x23, 0x3c, 0x0d, 0xf4, 0xf2, 0x40, 0x23, 0x9f, - 0x3f, 0x8e, 0x9f, 0xb2, 0xc4, 0xd2, 0x06, 0x9a, 0xf9, 0x34, 0xe4, 0x82, 0xe9, 0xd3, 0x35, 0xf2, - 0x0b, 0x51, 0x7f, 0x10, 0x87, 0xd7, 0xc1, 0xbe, 0x09, 0x8c, 0x7c, 0x99, 0x26, 0xf0, 0xdd, 0x00, - 0xee, 0x81, 0x38, 0x45, 0xcd, 0xe7, 0xd1, 0xfb, 0x47, 0xc4, 0x17, 0xb1, 0xd6, 0x3e, 0xe0, 0x83, - 0x20, 0xe3, 0xf2, 0x5f, 0x0e, 0x6a, 0x05, 0x83, 0x02, 0x7d, 0x3a, 0xc7, 0x3a, 0xde, 0x9f, 0xf0, - 0x9d, 0x6e, 0x32, 0xf6, 0x83, 0x07, 0x2c, 0xd9, 0x41, 0xaf, 0xc2, 0xa9, 0x01, 0x47, 0xc1, 0x83, - 0x8e, 0x4f, 0xeb, 0x2f, 0x9c, 0x08, 0xfb, 0x0b, 0x02, 0x3a, 0x38, 0xdb, 0x27, 0xc2, 0xb3, 0xfd, - 0xab, 0x00, 0x7e, 0x70, 0xc0, 0x3f, 0xf6, 0x17, 0x09, 0x1e, 0xfb, 0xbb, 0x04, 0x09, 0xa2, 0x49, - 0x42, 0x4e, 0xc3, 0xa6, 0x98, 0x68, 0x42, 0x20, 0xb8, 0xc0, 0xa8, 0x2b, 0x3a, 0xa0, 0xe1, 0x00, - 0xed, 0x98, 0x22, 0x5e, 0x08, 0x17, 0xf1, 0xc0, 0xd8, 0x50, 0xef, 0xe8, 0xa2, 0xde, 0x80, 0x04, - 0xed, 0xf9, 0x91, 0x77, 0x29, 0xbf, 0x0e, 0x40, 0x75, 0x5d, 0x5b, 0xdf, 0xe9, 0xfb, 0x05, 0x2c, - 0x8c, 0xd6, 0x9c, 0xaa, 0xa0, 0xab, 0xdd, 0xc7, 0x55, 0x68, 0xde, 0x67, 0x0d, 0xa8, 0x51, 0x00, - 0xb0, 0xb2, 0x01, 0x85, 0x30, 0xef, 0xe8, 0xbb, 0xa1, 0xfe, 0xc3, 0x2f, 0x19, 0xe1, 0xdf, 0x78, - 0xde, 0x11, 0x7f, 0x8c, 0x89, 0x7e, 0x54, 0x3e, 0x10, 0x85, 0x5c, 0x50, 0xf1, 0xfe, 0xe2, 0xb9, - 0x20, 0x95, 0x6f, 0x8a, 0x40, 0xda, 0x6b, 0xfe, 0x11, 0x87, 0x9d, 0xfd, 0x3b, 0xc2, 0xde, 0xe6, - 0x05, 0xdb, 0x26, 0x8a, 0x79, 0xdb, 0x44, 0x57, 0xbc, 0xe9, 0x6f, 0x5c, 0x40, 0x24, 0x28, 0x6b, - 0x71, 0xe0, 0x90, 0xcf, 0xf6, 0x57, 0xa6, 0xbb, 0x8a, 0x37, 0x0f, 0x89, 0xe0, 0x35, 0x3a, 0xf6, - 0x51, 0xe9, 0x04, 0x4e, 0x18, 0xb1, 0x81, 0x18, 0xbc, 0xb3, 0x17, 0x39, 0xf6, 0x9d, 0x3d, 0xaf, - 0x94, 0x68, 0xb0, 0x94, 0xef, 0x8c, 0x40, 0x5a, 0x8c, 0x09, 0xf4, 0x9e, 0xe0, 0xc9, 0x33, 0xb1, - 0xb5, 0x39, 0xd6, 0x1e, 0x71, 0xfc, 0xc0, 0xc1, 0xb3, 0xa1, 0x03, 0xd7, 0xb1, 0xe3, 0x1e, 0xb8, - 0xe6, 0x9e, 0xdd, 0x9f, 0x44, 0x40, 0x1a, 0x1c, 0xb1, 0x5f, 0x76, 0xed, 0x86, 0xa7, 0xb9, 0xd8, - 0x88, 0x69, 0x6e, 0xdc, 0x29, 0xea, 0xf8, 0xb8, 0x53, 0xd4, 0xc3, 0xad, 0x4e, 0xdc, 0x63, 0xab, - 0x3f, 0x18, 0x85, 0x6c, 0x20, 0x3c, 0x8a, 0x9e, 0x09, 0x9d, 0xc8, 0x5e, 0x3c, 0x2a, 0x94, 0x1a, - 0x38, 0x92, 0x1d, 0x12, 0x53, 0xf4, 0xf8, 0x62, 0x7a, 0xfb, 0x6f, 0x67, 0x8d, 0xbe, 0xc0, 0x9a, - 0x18, 0x73, 0x81, 0xf5, 0xaf, 0x46, 0x20, 0xed, 0xb9, 0xdd, 0xc7, 0xdd, 0xc4, 0x3c, 0x09, 0x49, - 0xee, 0x59, 0xb2, 0x5d, 0x4c, 0xfe, 0x35, 0x32, 0xac, 0x5c, 0x86, 0xb4, 0xf8, 0x7b, 0x8a, 0x7c, - 0x56, 0xf3, 0xbe, 0xcf, 0x3f, 0x0f, 0xd9, 0xc0, 0x06, 0x30, 0x31, 0x8d, 0x1b, 0x8d, 0xf7, 0x4a, - 0x33, 0xe5, 0xd4, 0x9d, 0xbb, 0x8b, 0xb1, 0x0d, 0x7c, 0x9b, 0x8c, 0x66, 0xb9, 0x51, 0xbf, 0xd6, - 0xa8, 0xbf, 0x24, 0x45, 0xca, 0xd9, 0x3b, 0x77, 0x17, 0x53, 0x32, 0xa6, 0x11, 0xc5, 0xf3, 0x2f, - 0x41, 0x71, 0xa0, 0x63, 0xc2, 0x6e, 0x0b, 0x82, 0xc2, 0xca, 0xf6, 0xd6, 0x5a, 0xb3, 0x5e, 0x6d, - 0x37, 0x14, 0x76, 0x6e, 0x17, 0x9d, 0x82, 0xb9, 0xb5, 0xe6, 0xea, 0xb5, 0xb6, 0x52, 0x5f, 0x6b, - 0x36, 0x36, 0xda, 0x4a, 0xb5, 0xdd, 0xae, 0xd6, 0x5f, 0x92, 0xa2, 0x17, 0xef, 0x66, 0x21, 0x5e, - 0xad, 0xd5, 0x9b, 0xa8, 0x0e, 0x71, 0x1a, 0x0a, 0x39, 0xf2, 0x04, 0x58, 0xf9, 0xe8, 0xd8, 0x30, - 0xba, 0x0a, 0x09, 0x1a, 0x25, 0x41, 0x47, 0x1f, 0x09, 0x2b, 0x4f, 0x08, 0x16, 0x93, 0xca, 0xd0, - 0x11, 0x79, 0xe4, 0x19, 0xb1, 0xf2, 0xd1, 0xb1, 0x63, 0xb4, 0x06, 0x29, 0xb1, 0x48, 0x9e, 0x74, - 0x70, 0xab, 0x3c, 0x31, 0xa0, 0x4b, 0x9a, 0xc6, 0x82, 0x0d, 0x47, 0x1f, 0x1f, 0x2b, 0x4f, 0x88, - 0x2a, 0xa3, 0xa6, 0x77, 0x9f, 0x69, 0xc2, 0x89, 0xb0, 0xf2, 0xa4, 0x38, 0x31, 0x92, 0x21, 0xe3, - 0x87, 0x71, 0x26, 0x1f, 0x8a, 0x2b, 0x4f, 0x11, 0x30, 0x47, 0xef, 0x83, 0x7c, 0x78, 0xa9, 0x3b, - 0xdd, 0xa9, 0xb3, 0xf2, 0x94, 0x11, 0x69, 0x82, 0x1f, 0x5e, 0xf7, 0x4e, 0x77, 0x0a, 0xad, 0x3c, - 0x65, 0x80, 0x1a, 0xbd, 0x0e, 0xb3, 0xc3, 0xeb, 0xd2, 0xe9, 0x0f, 0xa5, 0x95, 0x8f, 0x11, 0xb2, - 0x46, 0x3d, 0x40, 0x23, 0xd6, 0xb3, 0xc7, 0x38, 0xa3, 0x56, 0x3e, 0x4e, 0x04, 0x1b, 0x75, 0xa0, - 0x38, 0xb8, 0x48, 0x9c, 0xf6, 0xcc, 0x5a, 0x79, 0xea, 0x68, 0x36, 0x2b, 0x25, 0xbc, 0xb8, 0x9c, - 0xf6, 0x0c, 0x5b, 0x79, 0xea, 0xe0, 0x36, 0xda, 0x06, 0x08, 0xac, 0x0f, 0xa7, 0x38, 0xd3, 0x56, - 0x9e, 0x26, 0xcc, 0x8d, 0x2c, 0x98, 0x1b, 0xb5, 0x70, 0x3c, 0xce, 0x11, 0xb7, 0xf2, 0xb1, 0xa2, - 0xdf, 0x44, 0x9f, 0xc3, 0x4b, 0xc0, 0xe9, 0x8e, 0xbc, 0x95, 0xa7, 0x0c, 0x83, 0xd7, 0xaa, 0x63, - 0xcf, 0x39, 0x3f, 0x72, 0xe4, 0x39, 0x67, 0xff, 0xe4, 0xb2, 0x77, 0xb6, 0xf9, 0xc7, 0x97, 0xe1, - 0x5d, 0xfc, 0x05, 0x1d, 0xc7, 0x55, 0x6f, 0xea, 0xc6, 0x9e, 0xf7, 0xcc, 0x12, 0xff, 0xe6, 0x87, - 0x9c, 0x4f, 0xf2, 0x57, 0x7a, 0x44, 0xea, 0x84, 0xc7, 0x96, 0xc6, 0xbe, 0x40, 0x39, 0xe9, 0x3e, - 0xc4, 0xe4, 0xe3, 0xcb, 0x47, 0x3c, 0xe4, 0x34, 0xe1, 0xb9, 0xa8, 0x11, 0x0f, 0x3d, 0x95, 0x8f, - 0x7c, 0x63, 0xa0, 0x7c, 0xd4, 0xb9, 0x6f, 0xe2, 0xc5, 0x16, 0xae, 0xe9, 0x8e, 0x6b, 0xda, 0xba, - 0xa6, 0x76, 0xe9, 0xf4, 0x72, 0x65, 0xda, 0x5b, 0x59, 0xb5, 0x0c, 0x71, 0x57, 0xf8, 0x5b, 0x50, - 0xfc, 0xa6, 0xd0, 0x0a, 0x24, 0x6f, 0xa9, 0x5d, 0x76, 0x27, 0x2a, 0xf8, 0x10, 0xdc, 0xa0, 0xcc, - 0x03, 0x7e, 0x54, 0x10, 0x85, 0xf1, 0x56, 0xbe, 0x9b, 0xde, 0x27, 0xe9, 0xf5, 0x74, 0x87, 0xe8, - 0xa2, 0x4c, 0x97, 0xd2, 0xd7, 0x21, 0x6e, 0xab, 0x2e, 0x5f, 0x60, 0xd6, 0x2e, 0x1f, 0xfb, 0x5d, - 0x26, 0x56, 0x02, 0xc5, 0x40, 0x2f, 0x43, 0xba, 0xa7, 0x1e, 0x28, 0x14, 0x2f, 0xfa, 0x65, 0xe1, - 0xa5, 0x7a, 0xea, 0x01, 0xa9, 0x1f, 0x7a, 0x1f, 0x14, 0x09, 0xa4, 0xb6, 0xaf, 0x1a, 0x7b, 0x98, - 0x21, 0xc7, 0xbe, 0x2c, 0xe4, 0x7c, 0x4f, 0x3d, 0xa8, 0x53, 0x34, 0x82, 0xcf, 0x9f, 0xbc, 0xfa, - 0x95, 0x08, 0x8f, 0x1a, 0x50, 0xc1, 0x20, 0x15, 0x24, 0xcd, 0xfb, 0xa2, 0x85, 0x8a, 0x2d, 0x8e, - 0x47, 0xc6, 0xc9, 0x7d, 0x40, 0xac, 0xb5, 0x3c, 0xa9, 0xde, 0xa7, 0xdf, 0x5c, 0x88, 0xb0, 0x52, - 0x8b, 0xda, 0x90, 0xd8, 0xb3, 0x2c, 0x18, 0xa2, 0x50, 0x1f, 0x36, 0x3a, 0xd1, 0x87, 0xcd, 0x0b, - 0x1f, 0x96, 0x01, 0x02, 0xe3, 0x26, 0xf9, 0xbc, 0x0d, 0x9f, 0x8c, 0x40, 0x76, 0x25, 0xf0, 0xac, - 0x63, 0x09, 0x52, 0x3d, 0xd3, 0xd0, 0x6f, 0x62, 0xdb, 0xdb, 0xa3, 0x62, 0x9f, 0xc4, 0xcf, 0x64, - 0x7f, 0x1d, 0xd0, 0x3d, 0x14, 0xaf, 0x0b, 0x89, 0x6f, 0xc2, 0x75, 0x1b, 0xef, 0x38, 0xba, 0x90, - 0xb3, 0x2c, 0x3e, 0xd1, 0xa3, 0x20, 0x39, 0x58, 0xeb, 0xdb, 0xba, 0x7b, 0xa8, 0x68, 0xa6, 0xe1, - 0xaa, 0x9a, 0xcb, 0xd7, 0xe1, 0x45, 0x91, 0x5e, 0x67, 0xc9, 0x04, 0xa4, 0x83, 0x5d, 0x55, 0xef, - 0xb2, 0x93, 0x99, 0x19, 0x59, 0x7c, 0xf2, 0xaa, 0x7e, 0x34, 0x02, 0xf9, 0xb6, 0x79, 0x13, 0xd3, - 0x0b, 0x64, 0x74, 0x70, 0xdc, 0x0f, 0xe0, 0x92, 0x04, 0xc5, 0x5b, 0x5f, 0x24, 0xe4, 0x8c, 0x2b, - 0x48, 0x10, 0x06, 0x64, 0xe3, 0xdb, 0xaa, 0xdd, 0x71, 0xc4, 0xdf, 0xe7, 0xd7, 0xf9, 0xba, 0xf1, - 0xde, 0x15, 0x61, 0x96, 0x23, 0xae, 0x7b, 0x80, 0xbc, 0x76, 0x3f, 0x94, 0x0e, 0xae, 0x92, 0xeb, - 0x20, 0x99, 0x16, 0xb6, 0x43, 0xc7, 0x65, 0xd8, 0x58, 0x29, 0x7d, 0xe6, 0x53, 0x4f, 0xcc, 0x73, - 0x54, 0x7e, 0xd4, 0x82, 0xfd, 0x8d, 0x05, 0xb9, 0x28, 0x38, 0xc4, 0x39, 0x9a, 0x57, 0x43, 0x7b, - 0x66, 0xfd, 0x1d, 0xff, 0x91, 0x9b, 0xf9, 0xa1, 0x2e, 0xaf, 0x1a, 0x87, 0xb5, 0xd2, 0xaf, 0xfb, - 0xd0, 0xfe, 0x2a, 0xfa, 0x25, 0x7c, 0x18, 0xdc, 0x40, 0xa3, 0x30, 0x64, 0x81, 0xf1, 0xba, 0xaa, - 0x77, 0xc5, 0x9f, 0x79, 0x95, 0xf9, 0x17, 0x5a, 0xf6, 0x82, 0x9f, 0x71, 0xba, 0x5a, 0xab, 0x8c, - 0xd3, 0xdc, 0x9a, 0x69, 0x74, 0xc2, 0x51, 0x4e, 0x54, 0x87, 0x24, 0x95, 0x3d, 0xef, 0xbe, 0xe3, - 0x3d, 0xfc, 0xc6, 0x59, 0xd1, 0xd7, 0x82, 0xd4, 0xc1, 0x5d, 0xbc, 0xc7, 0x6e, 0x73, 0xee, 0xab, - 0x36, 0x66, 0x6f, 0x09, 0xdc, 0xd3, 0xe3, 0x6f, 0x45, 0x0f, 0xaa, 0x45, 0x91, 0xd0, 0x56, 0xf8, - 0x59, 0xd3, 0x14, 0xdf, 0xda, 0x1e, 0xd3, 0xc6, 0xc0, 0xb8, 0x08, 0xda, 0xc5, 0xd0, 0x33, 0xa8, - 0x8f, 0x82, 0xd4, 0x37, 0x76, 0x4c, 0x83, 0xfe, 0x75, 0x44, 0xbe, 0xc6, 0x4b, 0xb3, 0x7d, 0x54, - 0x2f, 0x9d, 0xef, 0xa3, 0x6e, 0x41, 0xc1, 0x27, 0xa5, 0xe3, 0x37, 0x73, 0xdc, 0xf1, 0x9b, 0xf7, - 0x00, 0x08, 0x09, 0x5a, 0x07, 0xf0, 0x2d, 0x04, 0xdd, 0xc8, 0xcb, 0x8e, 0xef, 0x31, 0xdf, 0xd6, - 0x04, 0x1b, 0x13, 0x00, 0x40, 0x5f, 0x03, 0x73, 0x3d, 0xdd, 0x50, 0x1c, 0xdc, 0xdd, 0x55, 0xb8, - 0xe4, 0x08, 0x6e, 0xf6, 0xf8, 0xbd, 0x39, 0xdb, 0xd3, 0x8d, 0x16, 0xee, 0xee, 0xae, 0x78, 0x28, - 0xe8, 0xdd, 0x70, 0xc6, 0x6f, 0xbd, 0x69, 0x28, 0xfb, 0x66, 0xb7, 0xa3, 0xd8, 0x78, 0x57, 0xd1, - 0xe8, 0x2b, 0x84, 0x39, 0x2a, 0xb3, 0x53, 0x1e, 0xc9, 0xa6, 0x71, 0xcd, 0xec, 0x76, 0x64, 0xbc, - 0x5b, 0x27, 0xd9, 0xe8, 0x41, 0xf0, 0x9b, 0xae, 0xe8, 0x1d, 0xa7, 0x94, 0x5f, 0x8c, 0x9d, 0x8b, - 0xcb, 0x39, 0x2f, 0xb1, 0xd9, 0x71, 0xc8, 0x02, 0xdd, 0xe9, 0x5b, 0x96, 0x69, 0xbb, 0x4a, 0xc0, - 0x2c, 0x14, 0xa8, 0x59, 0x90, 0x78, 0x8e, 0x67, 0x40, 0xd0, 0x4d, 0x28, 0xf9, 0x9a, 0x26, 0xec, - 0x04, 0xd7, 0xb8, 0xe2, 0xbd, 0x6a, 0xdc, 0x49, 0x0f, 0x52, 0x66, 0x88, 0x4c, 0xf1, 0x96, 0xd3, - 0x1f, 0xfa, 0xf8, 0xc2, 0xcc, 0xe7, 0x3f, 0xbe, 0x30, 0x53, 0xb9, 0x4a, 0x1f, 0xe3, 0xe2, 0x43, - 0x1c, 0x3b, 0xe8, 0x32, 0x64, 0x54, 0xf1, 0xc1, 0xae, 0xda, 0x1d, 0x61, 0x22, 0x7c, 0xd2, 0xca, - 0x8f, 0x46, 0x20, 0xb9, 0x72, 0x63, 0x4b, 0xd5, 0x6d, 0xd4, 0x80, 0x59, 0xbf, 0x25, 0xd3, 0x5a, - 0x1b, 0x7f, 0x98, 0x09, 0x73, 0xb3, 0x31, 0xee, 0x8c, 0x5f, 0xa6, 0xf6, 0xc0, 0x67, 0x3e, 0xf5, - 0xc4, 0xfd, 0x1c, 0xe6, 0xc6, 0xc0, 0x71, 0x3f, 0x81, 0x37, 0x78, 0x0c, 0x30, 0xd0, 0xe6, 0xeb, - 0x90, 0x62, 0x55, 0x75, 0xd0, 0x8b, 0x90, 0xb0, 0xc8, 0x0f, 0xbe, 0x75, 0x71, 0x76, 0xec, 0xd8, - 0xa3, 0xf4, 0x41, 0x4d, 0x65, 0x7c, 0x95, 0x6f, 0x89, 0x02, 0xac, 0xdc, 0xb8, 0xd1, 0xb6, 0x75, - 0xab, 0x8b, 0xdd, 0xb7, 0xab, 0xed, 0xdb, 0x70, 0x22, 0x70, 0x89, 0xdc, 0xd6, 0x8e, 0xdf, 0xfe, - 0x39, 0xff, 0x3e, 0xb9, 0xad, 0x8d, 0x84, 0xed, 0x38, 0xae, 0x07, 0x1b, 0x3b, 0x3e, 0xec, 0x8a, - 0xe3, 0x0e, 0x4b, 0xf6, 0x15, 0xc8, 0xfa, 0xc2, 0x70, 0x50, 0x13, 0xd2, 0x2e, 0xff, 0xcd, 0x05, - 0x5c, 0x19, 0x2f, 0x60, 0xc1, 0x16, 0x14, 0xb2, 0xc7, 0x5e, 0xf9, 0x8f, 0x11, 0x48, 0x6e, 0x61, - 0x5b, 0x37, 0x3b, 0xf4, 0xfa, 0x09, 0xfd, 0x15, 0x9c, 0x67, 0x81, 0x25, 0xd1, 0xa1, 0xb4, 0x02, - 0xe9, 0xe9, 0x6f, 0xaa, 0xe6, 0xc5, 0x4d, 0x55, 0x5e, 0xa2, 0xf7, 0x06, 0xff, 0xe8, 0xe9, 0x3a, - 0xf6, 0xce, 0x4c, 0xd7, 0xbf, 0x11, 0x05, 0x89, 0x35, 0x2f, 0x60, 0xa3, 0x9e, 0x85, 0x79, 0xde, - 0x50, 0xdf, 0xfc, 0x89, 0x37, 0x00, 0x32, 0xb5, 0x04, 0x83, 0x44, 0xd6, 0x00, 0x5b, 0xb3, 0x83, - 0x9a, 0x90, 0xe4, 0x96, 0xe3, 0xde, 0x5f, 0x53, 0x65, 0x00, 0xe8, 0x15, 0x28, 0x0c, 0x18, 0xa3, - 0xd8, 0xbd, 0x42, 0xe6, 0xed, 0xa0, 0x0d, 0x1a, 0xec, 0xc6, 0xf8, 0xa8, 0x6e, 0xc4, 0x46, 0x87, - 0x4d, 0x4d, 0x89, 0xe3, 0x4e, 0x4d, 0x29, 0x6c, 0x74, 0x48, 0x66, 0xe5, 0x33, 0x64, 0x80, 0xfa, - 0x32, 0xfd, 0xea, 0x34, 0x4e, 0x81, 0x1e, 0x8b, 0xbd, 0xfd, 0x3d, 0x16, 0x7f, 0x7b, 0x7a, 0x2c, - 0x30, 0xce, 0xbf, 0x2d, 0x0a, 0x73, 0xdb, 0x62, 0xae, 0xfb, 0xea, 0x97, 0xee, 0x36, 0xa4, 0xb0, - 0xe1, 0xda, 0xba, 0xb7, 0x1f, 0xfc, 0xe4, 0x38, 0x33, 0x34, 0xa2, 0x51, 0x0d, 0xc3, 0xb5, 0x0f, - 0x83, 0x46, 0x49, 0x60, 0x05, 0xe4, 0xf1, 0x6f, 0x63, 0x50, 0x1a, 0xc7, 0x8a, 0x1e, 0x81, 0xa2, - 0x66, 0x63, 0x36, 0x7a, 0x43, 0x7b, 0x66, 0x05, 0x91, 0xcc, 0x3d, 0x32, 0x19, 0xc8, 0x0a, 0x8b, - 0xd8, 0x3b, 0x42, 0x7a, 0x6f, 0x4b, 0xaa, 0x82, 0x8f, 0x40, 0x7d, 0xb2, 0x36, 0x14, 0xc5, 0xfd, - 0xb1, 0x1d, 0xb5, 0xab, 0x1a, 0x9a, 0x58, 0x7a, 0x1e, 0xcb, 0x81, 0x12, 0x77, 0xd0, 0x6a, 0x0c, - 0x02, 0x35, 0x20, 0x25, 0xd0, 0xe2, 0xc7, 0x47, 0x13, 0xbc, 0xe8, 0x01, 0xc8, 0x05, 0xdd, 0x28, - 0x3a, 0xca, 0xe3, 0x72, 0x36, 0xe0, 0x45, 0x4d, 0xf2, 0xd3, 0x92, 0x47, 0xfb, 0x69, 0xe3, 0x2c, - 0x68, 0x6a, 0x82, 0x05, 0xe5, 0x56, 0xf9, 0x37, 0xe9, 0xfd, 0x90, 0xce, 0x9f, 0xff, 0xfe, 0xdc, - 0x02, 0x60, 0xb6, 0x82, 0x78, 0x05, 0xf7, 0x6e, 0x2f, 0x32, 0x0c, 0x64, 0xc5, 0x71, 0xbf, 0xea, - 0xbb, 0xf6, 0xb7, 0xa2, 0x90, 0x0b, 0x76, 0xed, 0x5f, 0x48, 0xcf, 0x0d, 0x6d, 0xf8, 0x86, 0x91, - 0x5d, 0xbe, 0x7b, 0x74, 0x9c, 0x61, 0x1c, 0x1a, 0x06, 0x13, 0x2c, 0xe2, 0x2f, 0x24, 0x20, 0xc9, - 0x4f, 0xc7, 0x6e, 0x0e, 0x2d, 0x34, 0x23, 0xc7, 0x74, 0xca, 0x06, 0xd6, 0x99, 0x0f, 0x41, 0xa1, - 0xa7, 0x1e, 0x28, 0xa1, 0x23, 0xb7, 0x91, 0x73, 0x79, 0x1a, 0x15, 0xf3, 0x2f, 0x98, 0x10, 0x07, - 0x83, 0x90, 0xf9, 0x96, 0x9f, 0xd0, 0x40, 0x4f, 0x3d, 0x68, 0xb0, 0x14, 0xf4, 0x04, 0xa0, 0x7d, - 0x2f, 0xbc, 0xa9, 0xf8, 0x82, 0x20, 0x74, 0xb3, 0x7e, 0x8e, 0x20, 0xbf, 0x1f, 0x80, 0xd4, 0x42, - 0x61, 0xcf, 0xd7, 0xf3, 0x3f, 0x0e, 0x40, 0x52, 0x56, 0xe8, 0x13, 0xf6, 0xdf, 0x18, 0x61, 0xeb, - 0xd5, 0x81, 0xa0, 0x1b, 0x0f, 0x17, 0xb4, 0xa7, 0x18, 0x4d, 0x7f, 0xfc, 0xe6, 0x42, 0xf9, 0x50, - 0xed, 0x75, 0x97, 0x2b, 0x23, 0x70, 0x2a, 0x23, 0xfd, 0xc9, 0x9e, 0x6e, 0x84, 0x83, 0x76, 0x48, - 0x86, 0x02, 0xe1, 0x0e, 0x2c, 0x98, 0x53, 0xc7, 0xb7, 0x0f, 0xf9, 0x9e, 0x6e, 0x04, 0xa6, 0xf5, - 0x27, 0x61, 0x7e, 0xb7, 0x8b, 0x0f, 0xf4, 0x9d, 0x2e, 0x56, 0x82, 0x3e, 0x5b, 0x9a, 0xfa, 0x6c, - 0x48, 0xe4, 0x6d, 0xf9, 0xbe, 0x5b, 0x1d, 0x52, 0x8c, 0xd0, 0x29, 0x65, 0x8e, 0x5e, 0x59, 0x31, - 0xa6, 0x90, 0x36, 0x71, 0x4e, 0xf4, 0x32, 0x64, 0xfd, 0x85, 0xb3, 0x53, 0x02, 0x0a, 0xf4, 0xd0, - 0x38, 0xa0, 0x50, 0x2c, 0x2e, 0x14, 0x53, 0xf0, 0x42, 0x70, 0xce, 0xf2, 0xbb, 0xc8, 0xe0, 0xbf, - 0xf3, 0x7b, 0x3f, 0x71, 0xfe, 0x4c, 0xe0, 0x3d, 0xfd, 0x03, 0x6f, 0x6b, 0x80, 0x69, 0x2c, 0x59, - 0xcc, 0x22, 0xbf, 0xf9, 0xde, 0xad, 0xa3, 0x75, 0x80, 0x80, 0x58, 0x23, 0x47, 0xc7, 0x37, 0x7c, - 0xfe, 0x50, 0x5d, 0x02, 0x16, 0xe7, 0x3d, 0xfe, 0x24, 0x2a, 0x56, 0x29, 0x23, 0xfe, 0xda, 0xc3, - 0x52, 0xdd, 0xd4, 0x43, 0x10, 0x82, 0x89, 0x1a, 0xb2, 0x99, 0xca, 0xbf, 0x8a, 0xc0, 0xe9, 0xa1, - 0xc1, 0xe9, 0x55, 0x59, 0x23, 0x8b, 0x98, 0x80, 0x81, 0x24, 0x4a, 0x2e, 0x8e, 0xb9, 0xdc, 0xdb, - 0x58, 0x9f, 0xb5, 0x87, 0x26, 0xc4, 0xb7, 0xc7, 0x1b, 0xe0, 0x86, 0xf9, 0xd7, 0x22, 0x30, 0x1f, - 0xac, 0x80, 0xd7, 0x94, 0x16, 0xe4, 0x82, 0x45, 0xf3, 0x46, 0xbc, 0x6b, 0x9a, 0x46, 0x04, 0xeb, - 0x1f, 0x02, 0x41, 0x37, 0x7c, 0x03, 0xc8, 0xf6, 0x24, 0x9e, 0x9a, 0x5a, 0x28, 0xa2, 0x62, 0x23, - 0x0d, 0x21, 0xeb, 0x9b, 0xdf, 0x8f, 0x40, 0x7c, 0xcb, 0x34, 0xbb, 0xe8, 0xfd, 0x30, 0x6b, 0x98, - 0xae, 0x42, 0x8c, 0x05, 0xee, 0x28, 0x3c, 0x2c, 0xc9, 0x26, 0x97, 0xc6, 0x91, 0xb2, 0xfa, 0xc2, - 0x9b, 0x0b, 0xc3, 0x9c, 0xa3, 0xfe, 0xde, 0x46, 0xd1, 0x30, 0xdd, 0x1a, 0x25, 0x6a, 0xb3, 0xc8, - 0xe5, 0x2e, 0xe4, 0xc3, 0xc5, 0xb1, 0x09, 0xa8, 0x3a, 0xa9, 0xb8, 0xfc, 0xc4, 0xa2, 0x72, 0x3b, - 0x81, 0x72, 0xd8, 0x13, 0xf5, 0x7f, 0x48, 0x7a, 0xee, 0x55, 0x90, 0x6e, 0x0c, 0x1e, 0x9f, 0x6c, - 0x40, 0x4a, 0x1c, 0x97, 0x8c, 0x4c, 0x79, 0x12, 0x33, 0x28, 0x4e, 0xce, 0x7b, 0xfe, 0x67, 0x22, - 0x00, 0x7e, 0x88, 0x17, 0x3d, 0x0e, 0xa7, 0x6a, 0x9b, 0x1b, 0x2b, 0x4a, 0xab, 0x5d, 0x6d, 0x6f, - 0xb7, 0xc2, 0x7f, 0xa5, 0x49, 0xbc, 0xed, 0xe6, 0x58, 0x58, 0xd3, 0x77, 0x75, 0xdc, 0x41, 0x0f, - 0xc3, 0x7c, 0x98, 0x9a, 0x7c, 0x35, 0x56, 0xa4, 0x48, 0x39, 0x77, 0xe7, 0xee, 0x62, 0x9a, 0xf9, - 0xed, 0xb8, 0x83, 0xce, 0xc1, 0x89, 0x61, 0xba, 0xe6, 0xc6, 0xaa, 0x14, 0x2d, 0xe7, 0xef, 0xdc, - 0x5d, 0xcc, 0x78, 0x0e, 0x3e, 0xaa, 0x00, 0x0a, 0x52, 0x72, 0xbc, 0x58, 0x19, 0xee, 0xdc, 0x5d, - 0x4c, 0xb2, 0x5e, 0x28, 0xc7, 0x3f, 0xf4, 0x83, 0x67, 0x67, 0xce, 0x7f, 0x1d, 0x40, 0xd3, 0xd8, - 0xb5, 0x55, 0x8d, 0x6a, 0x5b, 0x19, 0x4e, 0x36, 0x37, 0xae, 0xca, 0xd5, 0x7a, 0xbb, 0xb9, 0xb9, - 0x31, 0xf0, 0xc7, 0xa5, 0xc2, 0x79, 0x2b, 0x9b, 0xdb, 0xb5, 0xb5, 0x86, 0xd2, 0x6a, 0xae, 0x6e, - 0xb0, 0x83, 0x2c, 0xa1, 0xbc, 0xf7, 0x6e, 0xb4, 0x9b, 0xeb, 0x0d, 0x29, 0x5a, 0xbb, 0x3a, 0x76, - 0xa3, 0xf4, 0xf1, 0x23, 0xff, 0x82, 0x88, 0x6f, 0xf1, 0x42, 0xbb, 0xa5, 0xff, 0x37, 0x00, 0x00, - 0xff, 0xff, 0x40, 0xeb, 0xe5, 0xb2, 0xb0, 0xa6, 0x00, 0x00, + // 11499 bytes of a gzipped FileDescriptorSet + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x6b, 0x90, 0x1c, 0xd7, + 0x75, 0x18, 0xbc, 0xf3, 0x9e, 0x39, 0xf3, 0xea, 0xbd, 0xbb, 0x00, 0x06, 0x03, 0x12, 0xbb, 0x1c, + 0x8a, 0x24, 0x08, 0x92, 0x0b, 0x12, 0x24, 0x40, 0x72, 0x21, 0x8a, 0xdf, 0xcc, 0xec, 0x60, 0x31, + 0xe0, 0xbe, 0xd8, 0x33, 0x0b, 0x91, 0xb4, 0xad, 0x76, 0x6f, 0xcf, 0xdd, 0xdd, 0x26, 0x66, 0xba, + 0x5b, 0xdd, 0x3d, 0xc0, 0x2e, 0xeb, 0xab, 0x94, 0x1c, 0xd9, 0x89, 0x0c, 0x3f, 0x22, 0xc7, 0x2e, + 0x5b, 0xb6, 0x04, 0x47, 0xb2, 0x63, 0x5b, 0x76, 0x5e, 0x7e, 0x28, 0x7e, 0xc4, 0x15, 0xc7, 0xce, + 0xd3, 0x76, 0x25, 0x29, 0x45, 0x95, 0x8a, 0x9d, 0x54, 0xcc, 0xd8, 0x92, 0xcb, 0x56, 0x64, 0x39, + 0xb1, 0x65, 0x3a, 0x8f, 0x52, 0x25, 0x95, 0xba, 0xaf, 0x7e, 0xcc, 0x63, 0x67, 0x16, 0x22, 0x65, + 0xc5, 0xce, 0x1f, 0x60, 0xfa, 0xdc, 0x73, 0xce, 0xbd, 0xf7, 0xdc, 0x73, 0xcf, 0x3d, 0xe7, 0xdc, + 0xc7, 0xc2, 0xef, 0xd4, 0x60, 0x71, 0xcf, 0x34, 0xf7, 0xba, 0xf8, 0x82, 0x65, 0x9b, 0xae, 0xb9, + 0xd3, 0xdf, 0xbd, 0xd0, 0xc1, 0x8e, 0x66, 0xeb, 0x96, 0x6b, 0xda, 0x4b, 0x14, 0x86, 0x8a, 0x0c, + 0x63, 0x49, 0x60, 0x54, 0xd6, 0x61, 0xf6, 0xaa, 0xde, 0xc5, 0x2b, 0x1e, 0x62, 0x0b, 0xbb, 0xe8, + 0x39, 0x88, 0xef, 0xea, 0x5d, 0x5c, 0x8a, 0x2c, 0xc6, 0xce, 0x65, 0x2f, 0xbe, 0x6b, 0x69, 0x80, + 0x68, 0x29, 0x4c, 0xb1, 0x45, 0xc0, 0x32, 0xa5, 0xa8, 0xfc, 0xef, 0x38, 0xcc, 0x8d, 0x28, 0x45, + 0x08, 0xe2, 0x86, 0xda, 0x23, 0x1c, 0x23, 0xe7, 0x32, 0x32, 0xfd, 0x8d, 0x4a, 0x90, 0xb2, 0x54, + 0xed, 0xa6, 0xba, 0x87, 0x4b, 0x51, 0x0a, 0x16, 0x9f, 0xe8, 0x2c, 0x40, 0x07, 0x5b, 0xd8, 0xe8, + 0x60, 0x43, 0x3b, 0x2c, 0xc5, 0x16, 0x63, 0xe7, 0x32, 0x72, 0x00, 0x82, 0x1e, 0x83, 0x59, 0xab, + 0xbf, 0xd3, 0xd5, 0x35, 0x25, 0x80, 0x06, 0x8b, 0xb1, 0x73, 0x09, 0x59, 0x62, 0x05, 0x2b, 0x3e, + 0xf2, 0x23, 0x50, 0xbc, 0x8d, 0xd5, 0x9b, 0x41, 0xd4, 0x2c, 0x45, 0x2d, 0x10, 0x70, 0x00, 0xb1, + 0x0e, 0xb9, 0x1e, 0x76, 0x1c, 0x75, 0x0f, 0x2b, 0xee, 0xa1, 0x85, 0x4b, 0x71, 0xda, 0xfb, 0xc5, + 0xa1, 0xde, 0x0f, 0xf6, 0x3c, 0xcb, 0xa9, 0xda, 0x87, 0x16, 0x46, 0x55, 0xc8, 0x60, 0xa3, 0xdf, + 0x63, 0x1c, 0x12, 0x63, 0xe4, 0xd7, 0x30, 0xfa, 0xbd, 0x41, 0x2e, 0x69, 0x42, 0xc6, 0x59, 0xa4, + 0x1c, 0x6c, 0xdf, 0xd2, 0x35, 0x5c, 0x4a, 0x52, 0x06, 0x8f, 0x0c, 0x31, 0x68, 0xb1, 0xf2, 0x41, + 0x1e, 0x82, 0x0e, 0xd5, 0x21, 0x83, 0x0f, 0x5c, 0x6c, 0x38, 0xba, 0x69, 0x94, 0x52, 0x94, 0xc9, + 0x43, 0x23, 0x46, 0x11, 0x77, 0x3b, 0x83, 0x2c, 0x7c, 0x3a, 0x74, 0x19, 0x52, 0xa6, 0xe5, 0xea, + 0xa6, 0xe1, 0x94, 0xd2, 0x8b, 0x91, 0x73, 0xd9, 0x8b, 0xf7, 0x8d, 0x54, 0x84, 0x4d, 0x86, 0x23, + 0x0b, 0x64, 0xd4, 0x04, 0xc9, 0x31, 0xfb, 0xb6, 0x86, 0x15, 0xcd, 0xec, 0x60, 0x45, 0x37, 0x76, + 0xcd, 0x52, 0x86, 0x32, 0x58, 0x18, 0xee, 0x08, 0x45, 0xac, 0x9b, 0x1d, 0xdc, 0x34, 0x76, 0x4d, + 0xb9, 0xe0, 0x84, 0xbe, 0xd1, 0x49, 0x48, 0x3a, 0x87, 0x86, 0xab, 0x1e, 0x94, 0x72, 0x54, 0x43, + 0xf8, 0x17, 0x51, 0x1d, 0xdc, 0xd1, 0x49, 0x75, 0xa5, 0x3c, 0x53, 0x1d, 0xfe, 0x59, 0xf9, 0x85, + 0x24, 0x14, 0xa7, 0x51, 0xbe, 0x2b, 0x90, 0xd8, 0x25, 0xfd, 0x2f, 0x45, 0x8f, 0x23, 0x1d, 0x46, + 0x13, 0x16, 0x6f, 0xf2, 0x1e, 0xc5, 0x5b, 0x85, 0xac, 0x81, 0x1d, 0x17, 0x77, 0x98, 0xae, 0xc4, + 0xa6, 0xd4, 0x36, 0x60, 0x44, 0xc3, 0xca, 0x16, 0xbf, 0x27, 0x65, 0x7b, 0x05, 0x8a, 0x5e, 0x93, + 0x14, 0x5b, 0x35, 0xf6, 0x84, 0xd6, 0x5e, 0x98, 0xd4, 0x92, 0xa5, 0x86, 0xa0, 0x93, 0x09, 0x99, + 0x5c, 0xc0, 0xa1, 0x6f, 0xb4, 0x02, 0x60, 0x1a, 0xd8, 0xdc, 0x55, 0x3a, 0x58, 0xeb, 0x96, 0xd2, + 0x63, 0xa4, 0xb4, 0x49, 0x50, 0x86, 0xa4, 0x64, 0x32, 0xa8, 0xd6, 0x45, 0xcf, 0xfb, 0x4a, 0x98, + 0x1a, 0xa3, 0x43, 0xeb, 0x6c, 0xfa, 0x0d, 0xe9, 0xe1, 0x36, 0x14, 0x6c, 0x4c, 0x66, 0x04, 0xee, + 0xf0, 0x9e, 0x65, 0x68, 0x23, 0x96, 0x26, 0xf6, 0x4c, 0xe6, 0x64, 0xac, 0x63, 0x79, 0x3b, 0xf8, + 0x89, 0x1e, 0x04, 0x0f, 0xa0, 0x50, 0xb5, 0x02, 0x6a, 0x9f, 0x72, 0x02, 0xb8, 0xa1, 0xf6, 0x70, + 0xf9, 0x0d, 0x28, 0x84, 0xc5, 0x83, 0xe6, 0x21, 0xe1, 0xb8, 0xaa, 0xed, 0x52, 0x2d, 0x4c, 0xc8, + 0xec, 0x03, 0x49, 0x10, 0xc3, 0x46, 0x87, 0xda, 0xbf, 0x84, 0x4c, 0x7e, 0xa2, 0xff, 0xcf, 0xef, + 0x70, 0x8c, 0x76, 0xf8, 0xe1, 0xe1, 0x11, 0x0d, 0x71, 0x1e, 0xec, 0x77, 0xf9, 0x59, 0xc8, 0x87, + 0x3a, 0x30, 0x6d, 0xd5, 0x95, 0xff, 0x1f, 0x4e, 0x8c, 0x64, 0x8d, 0x5e, 0x81, 0xf9, 0xbe, 0xa1, + 0x1b, 0x2e, 0xb6, 0x2d, 0x1b, 0x13, 0x8d, 0x65, 0x55, 0x95, 0x7e, 0x3f, 0x35, 0x46, 0xe7, 0xb6, + 0x83, 0xd8, 0x8c, 0x8b, 0x3c, 0xd7, 0x1f, 0x06, 0x9e, 0xcf, 0xa4, 0x3f, 0x9f, 0x92, 0x3e, 0xf0, + 0x81, 0x0f, 0x7c, 0x20, 0x5a, 0xf9, 0x95, 0x24, 0xcc, 0x8f, 0x9a, 0x33, 0x23, 0xa7, 0xef, 0x49, + 0x48, 0x1a, 0xfd, 0xde, 0x0e, 0xb6, 0xa9, 0x90, 0x12, 0x32, 0xff, 0x42, 0x55, 0x48, 0x74, 0xd5, + 0x1d, 0xdc, 0x2d, 0xc5, 0x17, 0x23, 0xe7, 0x0a, 0x17, 0x1f, 0x9b, 0x6a, 0x56, 0x2e, 0xad, 0x11, + 0x12, 0x99, 0x51, 0xa2, 0xf7, 0x40, 0x9c, 0x1b, 0x6f, 0xc2, 0xe1, 0xfc, 0x74, 0x1c, 0xc8, 0x5c, + 0x92, 0x29, 0x1d, 0x3a, 0x03, 0x19, 0xf2, 0x3f, 0xd3, 0x8d, 0x24, 0x6d, 0x73, 0x9a, 0x00, 0x88, + 0x5e, 0xa0, 0x32, 0xa4, 0xe9, 0x34, 0xe9, 0x60, 0xb1, 0xe8, 0x79, 0xdf, 0x44, 0xb1, 0x3a, 0x78, + 0x57, 0xed, 0x77, 0x5d, 0xe5, 0x96, 0xda, 0xed, 0x63, 0xaa, 0xf0, 0x19, 0x39, 0xc7, 0x81, 0x37, + 0x08, 0x0c, 0x2d, 0x40, 0x96, 0xcd, 0x2a, 0xdd, 0xe8, 0xe0, 0x03, 0x6a, 0x57, 0x13, 0x32, 0x9b, + 0x68, 0x4d, 0x02, 0x21, 0xd5, 0xbf, 0xee, 0x98, 0x86, 0x50, 0x4d, 0x5a, 0x05, 0x01, 0xd0, 0xea, + 0x9f, 0x1d, 0x34, 0xe9, 0xf7, 0x8f, 0xee, 0xde, 0xd0, 0x5c, 0x7a, 0x04, 0x8a, 0x14, 0xe3, 0x69, + 0x3e, 0xf4, 0x6a, 0xb7, 0x34, 0xbb, 0x18, 0x39, 0x97, 0x96, 0x0b, 0x0c, 0xbc, 0xc9, 0xa1, 0x95, + 0x9f, 0x8d, 0x42, 0x9c, 0x1a, 0x96, 0x22, 0x64, 0xdb, 0xaf, 0x6e, 0x35, 0x94, 0x95, 0xcd, 0xed, + 0xda, 0x5a, 0x43, 0x8a, 0xa0, 0x02, 0x00, 0x05, 0x5c, 0x5d, 0xdb, 0xac, 0xb6, 0xa5, 0xa8, 0xf7, + 0xdd, 0xdc, 0x68, 0x5f, 0x7e, 0x46, 0x8a, 0x79, 0x04, 0xdb, 0x0c, 0x10, 0x0f, 0x22, 0x3c, 0x7d, + 0x51, 0x4a, 0x20, 0x09, 0x72, 0x8c, 0x41, 0xf3, 0x95, 0xc6, 0xca, 0xe5, 0x67, 0xa4, 0x64, 0x18, + 0xf2, 0xf4, 0x45, 0x29, 0x85, 0xf2, 0x90, 0xa1, 0x90, 0xda, 0xe6, 0xe6, 0x9a, 0x94, 0xf6, 0x78, + 0xb6, 0xda, 0x72, 0x73, 0x63, 0x55, 0xca, 0x78, 0x3c, 0x57, 0xe5, 0xcd, 0xed, 0x2d, 0x09, 0x3c, + 0x0e, 0xeb, 0x8d, 0x56, 0xab, 0xba, 0xda, 0x90, 0xb2, 0x1e, 0x46, 0xed, 0xd5, 0x76, 0xa3, 0x25, + 0xe5, 0x42, 0xcd, 0x7a, 0xfa, 0xa2, 0x94, 0xf7, 0xaa, 0x68, 0x6c, 0x6c, 0xaf, 0x4b, 0x05, 0x34, + 0x0b, 0x79, 0x56, 0x85, 0x68, 0x44, 0x71, 0x00, 0x74, 0xf9, 0x19, 0x49, 0xf2, 0x1b, 0xc2, 0xb8, + 0xcc, 0x86, 0x00, 0x97, 0x9f, 0x91, 0x50, 0xa5, 0x0e, 0x09, 0xaa, 0x86, 0x08, 0x41, 0x61, 0xad, + 0x5a, 0x6b, 0xac, 0x29, 0x9b, 0x5b, 0xed, 0xe6, 0xe6, 0x46, 0x75, 0x4d, 0x8a, 0xf8, 0x30, 0xb9, + 0xf1, 0xf2, 0x76, 0x53, 0x6e, 0xac, 0x48, 0xd1, 0x20, 0x6c, 0xab, 0x51, 0x6d, 0x37, 0x56, 0xa4, + 0x58, 0x45, 0x83, 0xf9, 0x51, 0x06, 0x75, 0xe4, 0x14, 0x0a, 0xe8, 0x42, 0x74, 0x8c, 0x2e, 0x50, + 0x5e, 0x83, 0xba, 0x50, 0xf9, 0x5c, 0x14, 0xe6, 0x46, 0x2c, 0x2a, 0x23, 0x2b, 0x79, 0x11, 0x12, + 0x4c, 0x97, 0xd9, 0x32, 0xfb, 0xe8, 0xc8, 0xd5, 0x89, 0x6a, 0xf6, 0xd0, 0x52, 0x4b, 0xe9, 0x82, + 0x4e, 0x48, 0x6c, 0x8c, 0x13, 0x42, 0x58, 0x0c, 0x29, 0xec, 0x37, 0x0c, 0x19, 0x7f, 0xb6, 0x3e, + 0x5e, 0x9e, 0x66, 0x7d, 0xa4, 0xb0, 0xe3, 0x2d, 0x02, 0x89, 0x11, 0x8b, 0xc0, 0x15, 0x98, 0x1d, + 0x62, 0x34, 0xb5, 0x31, 0xfe, 0x60, 0x04, 0x4a, 0xe3, 0x84, 0x33, 0xc1, 0x24, 0x46, 0x43, 0x26, + 0xf1, 0xca, 0xa0, 0x04, 0x1f, 0x18, 0x3f, 0x08, 0x43, 0x63, 0xfd, 0x63, 0x11, 0x38, 0x39, 0xda, + 0xd9, 0x1c, 0xd9, 0x86, 0xf7, 0x40, 0xb2, 0x87, 0xdd, 0x7d, 0x53, 0xb8, 0x55, 0x0f, 0x8f, 0x58, + 0xac, 0x49, 0xf1, 0xe0, 0x60, 0x73, 0xaa, 0xe0, 0x6a, 0x1f, 0x1b, 0xe7, 0x31, 0xb2, 0xd6, 0x0c, + 0xb5, 0xf4, 0x5b, 0xa3, 0x70, 0x62, 0x24, 0xf3, 0x91, 0x0d, 0xbd, 0x1f, 0x40, 0x37, 0xac, 0xbe, + 0xcb, 0x5c, 0x27, 0x66, 0x89, 0x33, 0x14, 0x42, 0x8d, 0x17, 0xb1, 0xb2, 0x7d, 0xd7, 0x2b, 0x8f, + 0xd1, 0x72, 0x60, 0x20, 0x8a, 0xf0, 0x9c, 0xdf, 0xd0, 0x38, 0x6d, 0xe8, 0xd9, 0x31, 0x3d, 0x1d, + 0x52, 0xcc, 0x27, 0x41, 0xd2, 0xba, 0x3a, 0x36, 0x5c, 0xc5, 0x71, 0x6d, 0xac, 0xf6, 0x74, 0x63, + 0x8f, 0x2e, 0x35, 0xe9, 0xe5, 0xc4, 0xae, 0xda, 0x75, 0xb0, 0x5c, 0x64, 0xc5, 0x2d, 0x51, 0x4a, + 0x28, 0xa8, 0x02, 0xd9, 0x01, 0x8a, 0x64, 0x88, 0x82, 0x15, 0x7b, 0x14, 0x95, 0xef, 0xca, 0x40, + 0x36, 0xe0, 0x9a, 0xa3, 0x07, 0x20, 0xf7, 0xba, 0x7a, 0x4b, 0x55, 0x44, 0xb8, 0xc5, 0x24, 0x91, + 0x25, 0xb0, 0x2d, 0x1e, 0x72, 0x3d, 0x09, 0xf3, 0x14, 0xc5, 0xec, 0xbb, 0xd8, 0x56, 0xb4, 0xae, + 0xea, 0x38, 0x54, 0x68, 0x69, 0x8a, 0x8a, 0x48, 0xd9, 0x26, 0x29, 0xaa, 0x8b, 0x12, 0x74, 0x09, + 0xe6, 0x28, 0x45, 0xaf, 0xdf, 0x75, 0x75, 0xab, 0x8b, 0x15, 0x12, 0x00, 0x3a, 0x74, 0xc9, 0xf1, + 0x5a, 0x36, 0x4b, 0x30, 0xd6, 0x39, 0x02, 0x69, 0x91, 0x83, 0x56, 0xe0, 0x7e, 0x4a, 0xb6, 0x87, + 0x0d, 0x6c, 0xab, 0x2e, 0x56, 0xf0, 0xfb, 0xfb, 0x6a, 0xd7, 0x51, 0x54, 0xa3, 0xa3, 0xec, 0xab, + 0xce, 0x7e, 0x69, 0x9e, 0x30, 0xa8, 0x45, 0x4b, 0x11, 0xf9, 0x34, 0x41, 0x5c, 0xe5, 0x78, 0x0d, + 0x8a, 0x56, 0x35, 0x3a, 0xd7, 0x54, 0x67, 0x1f, 0x2d, 0xc3, 0x49, 0xca, 0xc5, 0x71, 0x6d, 0xdd, + 0xd8, 0x53, 0xb4, 0x7d, 0xac, 0xdd, 0x54, 0xfa, 0xee, 0xee, 0x73, 0xa5, 0x33, 0xc1, 0xfa, 0x69, + 0x0b, 0x5b, 0x14, 0xa7, 0x4e, 0x50, 0xb6, 0xdd, 0xdd, 0xe7, 0x50, 0x0b, 0x72, 0x64, 0x30, 0x7a, + 0xfa, 0x1b, 0x58, 0xd9, 0x35, 0x6d, 0xba, 0x86, 0x16, 0x46, 0x98, 0xa6, 0x80, 0x04, 0x97, 0x36, + 0x39, 0xc1, 0xba, 0xd9, 0xc1, 0xcb, 0x89, 0xd6, 0x56, 0xa3, 0xb1, 0x22, 0x67, 0x05, 0x97, 0xab, + 0xa6, 0x4d, 0x14, 0x6a, 0xcf, 0xf4, 0x04, 0x9c, 0x65, 0x0a, 0xb5, 0x67, 0x0a, 0xf1, 0x5e, 0x82, + 0x39, 0x4d, 0x63, 0x7d, 0xd6, 0x35, 0x85, 0x87, 0x69, 0x4e, 0x49, 0x0a, 0x09, 0x4b, 0xd3, 0x56, + 0x19, 0x02, 0xd7, 0x71, 0x07, 0x3d, 0x0f, 0x27, 0x7c, 0x61, 0x05, 0x09, 0x67, 0x87, 0x7a, 0x39, + 0x48, 0x7a, 0x09, 0xe6, 0xac, 0xc3, 0x61, 0x42, 0x14, 0xaa, 0xd1, 0x3a, 0x1c, 0x24, 0x7b, 0x16, + 0xe6, 0xad, 0x7d, 0x6b, 0x98, 0xee, 0x7c, 0x90, 0x0e, 0x59, 0xfb, 0xd6, 0x20, 0xe1, 0x43, 0x34, + 0x66, 0xb7, 0xb1, 0xa6, 0xba, 0xb8, 0x53, 0x3a, 0x15, 0x44, 0x0f, 0x14, 0xa0, 0x25, 0x90, 0x34, + 0x4d, 0xc1, 0x86, 0xba, 0xd3, 0xc5, 0x8a, 0x6a, 0x63, 0x43, 0x75, 0x4a, 0x0b, 0x14, 0x39, 0xee, + 0xda, 0x7d, 0x2c, 0x17, 0x34, 0xad, 0x41, 0x0b, 0xab, 0xb4, 0x0c, 0x9d, 0x87, 0x59, 0x73, 0xe7, + 0x75, 0x8d, 0x69, 0xa4, 0x62, 0xd9, 0x78, 0x57, 0x3f, 0x28, 0xbd, 0x8b, 0x8a, 0xb7, 0x48, 0x0a, + 0xa8, 0x3e, 0x6e, 0x51, 0x30, 0x7a, 0x14, 0x24, 0xcd, 0xd9, 0x57, 0x6d, 0x8b, 0x9a, 0x64, 0xc7, + 0x52, 0x35, 0x5c, 0x7a, 0x88, 0xa1, 0x32, 0xf8, 0x86, 0x00, 0x93, 0x19, 0xe1, 0xdc, 0xd6, 0x77, + 0x5d, 0xc1, 0xf1, 0x11, 0x36, 0x23, 0x28, 0x8c, 0x73, 0x3b, 0x07, 0x12, 0x91, 0x44, 0xa8, 0xe2, + 0x73, 0x14, 0xad, 0x60, 0xed, 0x5b, 0xc1, 0x7a, 0x1f, 0x84, 0x3c, 0xc1, 0xf4, 0x2b, 0x7d, 0x94, + 0x39, 0x6e, 0xd6, 0x7e, 0xa0, 0xc6, 0x67, 0xe0, 0x24, 0x41, 0xea, 0x61, 0x57, 0xed, 0xa8, 0xae, + 0x1a, 0xc0, 0x7e, 0x9c, 0x62, 0x13, 0xb1, 0xaf, 0xf3, 0xc2, 0x50, 0x3b, 0xed, 0xfe, 0xce, 0xa1, + 0xa7, 0x58, 0x4f, 0xb0, 0x76, 0x12, 0x98, 0x50, 0xad, 0x77, 0xcc, 0x39, 0xaf, 0x2c, 0x43, 0x2e, + 0xa8, 0xf7, 0x28, 0x03, 0x4c, 0xf3, 0xa5, 0x08, 0x71, 0x82, 0xea, 0x9b, 0x2b, 0xc4, 0x7d, 0x79, + 0xad, 0x21, 0x45, 0x89, 0x1b, 0xb5, 0xd6, 0x6c, 0x37, 0x14, 0x79, 0x7b, 0xa3, 0xdd, 0x5c, 0x6f, + 0x48, 0xb1, 0x80, 0x63, 0x7f, 0x3d, 0x9e, 0x7e, 0x58, 0x7a, 0xa4, 0xf2, 0x8b, 0x31, 0x28, 0x84, + 0x23, 0x35, 0xf4, 0x6e, 0x38, 0x25, 0x12, 0x2e, 0x0e, 0x76, 0x95, 0xdb, 0xba, 0x4d, 0x27, 0x64, + 0x4f, 0x65, 0x8b, 0xa3, 0xa7, 0x3f, 0xf3, 0x1c, 0xab, 0x85, 0xdd, 0xf7, 0xea, 0x36, 0x99, 0x6e, + 0x3d, 0xd5, 0x45, 0x6b, 0xb0, 0x60, 0x98, 0x8a, 0xe3, 0xaa, 0x46, 0x47, 0xb5, 0x3b, 0x8a, 0x9f, + 0xea, 0x52, 0x54, 0x4d, 0xc3, 0x8e, 0x63, 0xb2, 0x85, 0xd0, 0xe3, 0x72, 0x9f, 0x61, 0xb6, 0x38, + 0xb2, 0xbf, 0x42, 0x54, 0x39, 0xea, 0x80, 0xfa, 0xc6, 0xc6, 0xa9, 0xef, 0x19, 0xc8, 0xf4, 0x54, + 0x4b, 0xc1, 0x86, 0x6b, 0x1f, 0x52, 0xff, 0x3c, 0x2d, 0xa7, 0x7b, 0xaa, 0xd5, 0x20, 0xdf, 0xe8, + 0x06, 0x3c, 0xec, 0xa3, 0x2a, 0x5d, 0xbc, 0xa7, 0x6a, 0x87, 0x0a, 0x75, 0xc6, 0x69, 0xda, 0x40, + 0xd1, 0x4c, 0x63, 0xb7, 0xab, 0x6b, 0xae, 0x43, 0xed, 0x03, 0xb3, 0x71, 0x15, 0x9f, 0x62, 0x8d, + 0x12, 0x5c, 0x77, 0x4c, 0x83, 0xfa, 0xe0, 0x75, 0x81, 0xfd, 0x55, 0x09, 0xbf, 0xae, 0xc7, 0xd3, + 0x71, 0x29, 0x71, 0x3d, 0x9e, 0x4e, 0x48, 0xc9, 0xeb, 0xf1, 0x74, 0x52, 0x4a, 0x5d, 0x8f, 0xa7, + 0xd3, 0x52, 0xe6, 0x7a, 0x3c, 0x9d, 0x91, 0xa0, 0xf2, 0x73, 0x69, 0xc8, 0x05, 0x23, 0x03, 0x12, + 0x68, 0x69, 0x74, 0x6d, 0x8c, 0x50, 0xeb, 0xf9, 0xe0, 0x91, 0x71, 0xc4, 0x52, 0x9d, 0x2c, 0x9a, + 0xcb, 0x49, 0xe6, 0x86, 0xcb, 0x8c, 0x92, 0x38, 0x2c, 0x44, 0xad, 0x31, 0x73, 0x7b, 0xd2, 0x32, + 0xff, 0x42, 0xab, 0x90, 0x7c, 0xdd, 0xa1, 0xbc, 0x93, 0x94, 0xf7, 0xbb, 0x8e, 0xe6, 0x7d, 0xbd, + 0x45, 0x99, 0x67, 0xae, 0xb7, 0x94, 0x8d, 0x4d, 0x79, 0xbd, 0xba, 0x26, 0x73, 0x72, 0x74, 0x1a, + 0xe2, 0x5d, 0xf5, 0x8d, 0xc3, 0xf0, 0xf2, 0x4a, 0x41, 0x68, 0x09, 0x8a, 0x7d, 0xe3, 0x16, 0xb6, + 0xf5, 0x5d, 0x9d, 0x0c, 0x15, 0xc1, 0x2a, 0x06, 0xb1, 0x0a, 0x7e, 0xe9, 0x1a, 0xc1, 0x9f, 0x52, + 0x3d, 0x4e, 0x43, 0xfc, 0x36, 0x56, 0x6f, 0x86, 0x17, 0x41, 0x0a, 0x42, 0xe7, 0x20, 0xd7, 0xc1, + 0x3b, 0xfd, 0x3d, 0xc5, 0xc6, 0x1d, 0x55, 0x73, 0xc3, 0xa6, 0x3f, 0x4b, 0x8b, 0x64, 0x5a, 0x82, + 0x5e, 0x82, 0x0c, 0x19, 0x23, 0x83, 0x8e, 0xf1, 0x2c, 0x15, 0xc1, 0x13, 0x47, 0x8b, 0x80, 0x0f, + 0xb1, 0x20, 0x92, 0x7d, 0x7a, 0x74, 0x15, 0x92, 0xae, 0x6a, 0xef, 0x61, 0x97, 0x5a, 0xfe, 0xc2, + 0x88, 0xe4, 0xc7, 0x08, 0x4e, 0x6d, 0x4a, 0x41, 0x63, 0x5a, 0x4e, 0xfd, 0x0e, 0x5a, 0x99, 0x0b, + 0x90, 0xa0, 0xea, 0x81, 0x00, 0xb8, 0x82, 0x48, 0x33, 0x28, 0x0d, 0xf1, 0xfa, 0xa6, 0x4c, 0x2c, + 0x8d, 0x04, 0x39, 0x06, 0x55, 0xb6, 0x9a, 0x8d, 0x7a, 0x43, 0x8a, 0x56, 0x2e, 0x41, 0x92, 0x8d, + 0x39, 0xb1, 0x42, 0xde, 0xa8, 0x4b, 0x33, 0xfc, 0x93, 0xf3, 0x88, 0x88, 0xd2, 0xed, 0xf5, 0x5a, + 0x43, 0x96, 0xa2, 0x95, 0x6d, 0x28, 0x0e, 0xc8, 0x09, 0x9d, 0x80, 0x59, 0xb9, 0xd1, 0x6e, 0x6c, + 0x90, 0x38, 0x4b, 0xd9, 0xde, 0x78, 0x69, 0x63, 0xf3, 0xbd, 0x1b, 0xd2, 0x4c, 0x18, 0x2c, 0x4c, + 0x5a, 0x04, 0xcd, 0x83, 0xe4, 0x83, 0x5b, 0x9b, 0xdb, 0x32, 0x6d, 0xcd, 0xb7, 0x47, 0x41, 0x1a, + 0x94, 0x1a, 0x3a, 0x05, 0x73, 0xed, 0xaa, 0xbc, 0xda, 0x68, 0x2b, 0x2c, 0x76, 0xf4, 0x58, 0xcf, + 0x83, 0x14, 0x2c, 0xb8, 0xda, 0xa4, 0xa1, 0xf1, 0x02, 0x9c, 0x09, 0x42, 0x1b, 0xaf, 0xb4, 0x1b, + 0x1b, 0x2d, 0x5a, 0x79, 0x75, 0x63, 0x95, 0xd8, 0xd7, 0x01, 0x7e, 0x22, 0x5a, 0x8d, 0x91, 0xa6, + 0x86, 0xf9, 0x35, 0xd6, 0x56, 0xa4, 0xf8, 0x20, 0x78, 0x73, 0xa3, 0xb1, 0x79, 0x55, 0x4a, 0x0c, + 0xd6, 0x4e, 0x23, 0xd8, 0x24, 0x2a, 0xc3, 0xc9, 0x41, 0xa8, 0xd2, 0xd8, 0x68, 0xcb, 0xaf, 0x4a, + 0xa9, 0xc1, 0x8a, 0x5b, 0x0d, 0xf9, 0x46, 0xb3, 0xde, 0x90, 0xd2, 0xe8, 0x24, 0xa0, 0x70, 0x8b, + 0xda, 0xd7, 0x36, 0x57, 0xa4, 0xcc, 0x90, 0x45, 0xa9, 0x38, 0x90, 0x0b, 0x86, 0x91, 0x5f, 0x9d, + 0x5c, 0xd2, 0x47, 0xa2, 0x90, 0x0d, 0x84, 0x85, 0xc4, 0x9f, 0x57, 0xbb, 0x5d, 0xf3, 0xb6, 0xa2, + 0x76, 0x75, 0xd5, 0xe1, 0xf6, 0x06, 0x28, 0xa8, 0x4a, 0x20, 0xd3, 0xce, 0xef, 0xe9, 0x2d, 0x7c, + 0xf2, 0x6b, 0xd1, 0xc2, 0x27, 0xa4, 0x64, 0xe5, 0x07, 0x23, 0x20, 0x0d, 0xc6, 0x7b, 0x03, 0xdd, + 0x8f, 0x8c, 0xeb, 0xfe, 0x57, 0x65, 0xec, 0x3e, 0x16, 0x81, 0x42, 0x38, 0xc8, 0x1b, 0x68, 0xde, + 0x03, 0x7f, 0xa6, 0xcd, 0xfb, 0xed, 0x28, 0xe4, 0x43, 0xa1, 0xdd, 0xb4, 0xad, 0x7b, 0x3f, 0xcc, + 0xea, 0x1d, 0xdc, 0xb3, 0x4c, 0x17, 0x1b, 0xda, 0xa1, 0xd2, 0xc5, 0xb7, 0x70, 0xb7, 0x54, 0xa1, + 0x46, 0xf9, 0xc2, 0xd1, 0xc1, 0xe3, 0x52, 0xd3, 0xa7, 0x5b, 0x23, 0x64, 0xcb, 0x73, 0xcd, 0x95, + 0xc6, 0xfa, 0xd6, 0x66, 0xbb, 0xb1, 0x51, 0x7f, 0x55, 0x58, 0x17, 0x59, 0xd2, 0x07, 0xd0, 0xde, + 0x41, 0xa3, 0xbd, 0x05, 0xd2, 0x60, 0xa3, 0x88, 0xad, 0x18, 0xd1, 0x2c, 0x69, 0x06, 0xcd, 0x41, + 0x71, 0x63, 0x53, 0x69, 0x35, 0x57, 0x1a, 0x4a, 0xe3, 0xea, 0xd5, 0x46, 0xbd, 0xdd, 0x62, 0xe9, + 0x40, 0x0f, 0xbb, 0x2d, 0x45, 0x83, 0x22, 0xfe, 0x81, 0x18, 0xcc, 0x8d, 0x68, 0x09, 0xaa, 0xf2, + 0x40, 0x9e, 0xe5, 0x16, 0x9e, 0x98, 0xa6, 0xf5, 0x4b, 0xc4, 0x95, 0xde, 0x52, 0x6d, 0x97, 0xc7, + 0xfd, 0x8f, 0x02, 0x91, 0x92, 0xe1, 0x92, 0x95, 0xdd, 0xe6, 0x69, 0x56, 0x16, 0xdd, 0x17, 0x7d, + 0x38, 0xcb, 0xb4, 0x3e, 0x0e, 0xc8, 0x32, 0x1d, 0xdd, 0xd5, 0x6f, 0x61, 0x45, 0x37, 0x44, 0x4e, + 0x96, 0x44, 0xfb, 0x71, 0x59, 0x12, 0x25, 0x4d, 0xc3, 0xf5, 0xb0, 0x0d, 0xbc, 0xa7, 0x0e, 0x60, + 0x13, 0xcf, 0x23, 0x26, 0x4b, 0xa2, 0xc4, 0xc3, 0x7e, 0x00, 0x72, 0x1d, 0xb3, 0x4f, 0x42, 0x20, + 0x86, 0x47, 0xac, 0x45, 0x44, 0xce, 0x32, 0x98, 0x87, 0xc2, 0x83, 0x5b, 0x3f, 0x19, 0x9c, 0x93, + 0xb3, 0x0c, 0xc6, 0x50, 0x1e, 0x81, 0xa2, 0xba, 0xb7, 0x67, 0x13, 0xe6, 0x82, 0x11, 0x0b, 0xd7, + 0x0b, 0x1e, 0x98, 0x22, 0x96, 0xaf, 0x43, 0x5a, 0xc8, 0x81, 0x78, 0xb0, 0x44, 0x12, 0x8a, 0xc5, + 0x72, 0x50, 0xd1, 0x73, 0x19, 0x39, 0x6d, 0x88, 0xc2, 0x07, 0x20, 0xa7, 0x3b, 0x8a, 0xbf, 0xb7, + 0x15, 0x5d, 0x8c, 0x9e, 0x4b, 0xcb, 0x59, 0xdd, 0xf1, 0xf6, 0x05, 0x2a, 0x3f, 0x16, 0x85, 0x42, + 0x78, 0xd7, 0x0e, 0xad, 0x40, 0xba, 0x6b, 0x6a, 0x2a, 0x55, 0x2d, 0xb6, 0x65, 0x7c, 0x6e, 0xc2, + 0x46, 0xdf, 0xd2, 0x1a, 0xc7, 0x97, 0x3d, 0xca, 0xf2, 0xbf, 0x8e, 0x40, 0x5a, 0x80, 0xd1, 0x49, + 0x88, 0x5b, 0xaa, 0xbb, 0x4f, 0xd9, 0x25, 0x6a, 0x51, 0x29, 0x22, 0xd3, 0x6f, 0x02, 0x77, 0x2c, + 0xd5, 0xa0, 0x2a, 0xc0, 0xe1, 0xe4, 0x9b, 0x8c, 0x6b, 0x17, 0xab, 0x1d, 0x9a, 0x0b, 0x30, 0x7b, + 0x3d, 0x6c, 0xb8, 0x8e, 0x18, 0x57, 0x0e, 0xaf, 0x73, 0x30, 0x7a, 0x0c, 0x66, 0x5d, 0x5b, 0xd5, + 0xbb, 0x21, 0xdc, 0x38, 0xc5, 0x95, 0x44, 0x81, 0x87, 0xbc, 0x0c, 0xa7, 0x05, 0xdf, 0x0e, 0x76, + 0x55, 0x6d, 0x1f, 0x77, 0x7c, 0xa2, 0x24, 0xcd, 0xf9, 0x9d, 0xe2, 0x08, 0x2b, 0xbc, 0x5c, 0xd0, + 0x56, 0x3e, 0x1d, 0x85, 0x59, 0x91, 0xbd, 0xe8, 0x78, 0xc2, 0x5a, 0x07, 0x50, 0x0d, 0xc3, 0x74, + 0x83, 0xe2, 0x1a, 0x56, 0xe5, 0x21, 0xba, 0xa5, 0xaa, 0x47, 0x24, 0x07, 0x18, 0x94, 0xff, 0x20, + 0x02, 0xe0, 0x17, 0x8d, 0x95, 0xdb, 0x02, 0x64, 0xf9, 0x9e, 0x2c, 0xdd, 0xd8, 0x67, 0x09, 0x2f, + 0x60, 0xa0, 0xab, 0x7a, 0x97, 0xa6, 0x25, 0x77, 0xf0, 0x9e, 0x6e, 0xf0, 0xfd, 0x14, 0xf6, 0x21, + 0xd2, 0x92, 0x71, 0x7f, 0x7b, 0x4a, 0x86, 0xb4, 0x83, 0x7b, 0xaa, 0xe1, 0xea, 0x1a, 0xdf, 0x21, + 0xb9, 0x7c, 0xac, 0xc6, 0x2f, 0xb5, 0x38, 0xb5, 0xec, 0xf1, 0xa9, 0x9c, 0x83, 0xb4, 0x80, 0x12, + 0xc7, 0x6f, 0x63, 0x73, 0xa3, 0x21, 0xcd, 0xa0, 0x14, 0xc4, 0x5a, 0x8d, 0xb6, 0x14, 0x21, 0x61, + 0x67, 0x75, 0xad, 0x59, 0x6d, 0x49, 0xd1, 0xda, 0x5f, 0x82, 0x39, 0xcd, 0xec, 0x0d, 0x56, 0x58, + 0x93, 0x06, 0x52, 0x7e, 0xce, 0xb5, 0xc8, 0x6b, 0x4f, 0x70, 0xa4, 0x3d, 0xb3, 0xab, 0x1a, 0x7b, + 0x4b, 0xa6, 0xbd, 0xe7, 0x1f, 0x8b, 0x20, 0xd1, 0x81, 0x13, 0x38, 0x1c, 0x61, 0xed, 0xfc, 0x8f, + 0x48, 0xe4, 0x87, 0xa2, 0xb1, 0xd5, 0xad, 0xda, 0x4f, 0x44, 0xcb, 0xab, 0x8c, 0x70, 0x4b, 0x74, + 0x47, 0xc6, 0xbb, 0x5d, 0xac, 0x91, 0xc6, 0xc3, 0x1f, 0x3e, 0x06, 0xf3, 0x7b, 0xe6, 0x9e, 0x49, + 0x39, 0x5d, 0x20, 0xbf, 0xf8, 0xb9, 0x8a, 0x8c, 0x07, 0x2d, 0x4f, 0x3c, 0x84, 0xb1, 0xbc, 0x01, + 0x73, 0x1c, 0x59, 0xa1, 0xdb, 0xb7, 0x2c, 0xb9, 0x80, 0x8e, 0xcc, 0x6c, 0x97, 0x7e, 0xea, 0x77, + 0xa9, 0x57, 0x22, 0xcf, 0x72, 0x52, 0x52, 0xc6, 0xf2, 0x0f, 0xcb, 0x32, 0x9c, 0x08, 0xf1, 0x63, + 0x36, 0x02, 0xdb, 0x13, 0x38, 0xfe, 0x33, 0xce, 0x71, 0x2e, 0xc0, 0xb1, 0xc5, 0x49, 0x97, 0xeb, + 0x90, 0x3f, 0x0e, 0xaf, 0x7f, 0xce, 0x79, 0xe5, 0x70, 0x90, 0xc9, 0x2a, 0x14, 0x29, 0x13, 0xad, + 0xef, 0xb8, 0x66, 0x8f, 0x1a, 0xe0, 0xa3, 0xd9, 0xfc, 0x8b, 0xdf, 0x65, 0x93, 0xb6, 0x40, 0xc8, + 0xea, 0x1e, 0xd5, 0xf2, 0x32, 0xd0, 0x1d, 0xeb, 0x0e, 0xd6, 0xba, 0x13, 0x38, 0xfc, 0x2a, 0x6f, + 0x88, 0x87, 0xbf, 0x7c, 0x03, 0xe6, 0xc9, 0x6f, 0x6a, 0x1f, 0x83, 0x2d, 0x99, 0x9c, 0x06, 0x2f, + 0xfd, 0x9b, 0x0f, 0x32, 0xbb, 0x30, 0xe7, 0x31, 0x08, 0xb4, 0x29, 0x30, 0x8a, 0x7b, 0xd8, 0x75, + 0xb1, 0xed, 0x28, 0x6a, 0x77, 0x54, 0xf3, 0x02, 0x79, 0xc4, 0xd2, 0xf7, 0x7f, 0x31, 0x3c, 0x8a, + 0xab, 0x8c, 0xb2, 0xda, 0xed, 0x2e, 0x6f, 0xc3, 0xa9, 0x11, 0x5a, 0x31, 0x05, 0xcf, 0x1f, 0xe0, + 0x3c, 0xe7, 0x87, 0x34, 0x83, 0xb0, 0xdd, 0x02, 0x01, 0xf7, 0xc6, 0x72, 0x0a, 0x9e, 0x1f, 0xe5, + 0x3c, 0x11, 0xa7, 0x15, 0x43, 0x4a, 0x38, 0x5e, 0x87, 0xd9, 0x5b, 0xd8, 0xde, 0x31, 0x1d, 0x9e, + 0xbb, 0x9d, 0x82, 0xdd, 0xc7, 0x38, 0xbb, 0x22, 0x27, 0xa4, 0xc9, 0x5c, 0xc2, 0xeb, 0x79, 0x48, + 0xef, 0xaa, 0x1a, 0x9e, 0x82, 0xc5, 0x5d, 0xce, 0x22, 0x45, 0xf0, 0x09, 0x69, 0x15, 0x72, 0x7b, + 0x26, 0x5f, 0x22, 0x27, 0x93, 0xff, 0x20, 0x27, 0xcf, 0x0a, 0x1a, 0xce, 0xc2, 0x32, 0xad, 0x7e, + 0x97, 0xac, 0x9f, 0x93, 0x59, 0xfc, 0x0d, 0xc1, 0x42, 0xd0, 0x70, 0x16, 0xc7, 0x10, 0xeb, 0xc7, + 0x05, 0x0b, 0x27, 0x20, 0xcf, 0x17, 0x21, 0x6b, 0x1a, 0xdd, 0x43, 0xd3, 0x98, 0xa6, 0x11, 0x9f, + 0xe0, 0x1c, 0x80, 0x93, 0x10, 0x06, 0x57, 0x20, 0x33, 0xed, 0x40, 0xfc, 0xc8, 0x17, 0xc5, 0xf4, + 0x10, 0x23, 0xb0, 0x0a, 0x45, 0x61, 0xa0, 0x74, 0xd3, 0x98, 0x82, 0xc5, 0x8f, 0x72, 0x16, 0x85, + 0x00, 0x19, 0xef, 0x86, 0x8b, 0x1d, 0x77, 0x0f, 0x4f, 0xc3, 0xe4, 0xc7, 0x44, 0x37, 0x38, 0x09, + 0x17, 0xe5, 0x0e, 0x36, 0xb4, 0xfd, 0xe9, 0x38, 0x7c, 0x52, 0x88, 0x52, 0xd0, 0x10, 0x16, 0x75, + 0xc8, 0xf7, 0x54, 0xdb, 0xd9, 0x57, 0xbb, 0x53, 0x0d, 0xc7, 0x8f, 0x73, 0x1e, 0x39, 0x8f, 0x88, + 0x4b, 0xa4, 0x6f, 0x1c, 0x87, 0xcd, 0x4f, 0x08, 0x89, 0x04, 0xc8, 0xf8, 0xd4, 0x73, 0x5c, 0x9a, + 0xe8, 0x3e, 0x0e, 0xb7, 0xbf, 0x25, 0xa6, 0x1e, 0xa3, 0x5d, 0x0f, 0x72, 0xbc, 0x02, 0x19, 0x47, + 0x7f, 0x63, 0x2a, 0x36, 0x7f, 0x5b, 0x8c, 0x34, 0x25, 0x20, 0xc4, 0xaf, 0xc2, 0xe9, 0x91, 0xcb, + 0xc4, 0x14, 0xcc, 0xfe, 0x0e, 0x67, 0x76, 0x72, 0xc4, 0x52, 0xc1, 0x4d, 0xc2, 0x71, 0x59, 0xfe, + 0x5d, 0x61, 0x12, 0xf0, 0x00, 0xaf, 0x2d, 0x12, 0xb4, 0x38, 0xea, 0xee, 0xf1, 0xa4, 0xf6, 0xf7, + 0x84, 0xd4, 0x18, 0x6d, 0x48, 0x6a, 0x6d, 0x38, 0xc9, 0x39, 0x1e, 0x6f, 0x5c, 0x7f, 0x52, 0x18, + 0x56, 0x46, 0xbd, 0x1d, 0x1e, 0xdd, 0xaf, 0x83, 0xb2, 0x27, 0x4e, 0xe1, 0x1d, 0x3b, 0x4a, 0x4f, + 0xb5, 0xa6, 0xe0, 0xfc, 0x53, 0x9c, 0xb3, 0xb0, 0xf8, 0x9e, 0x7b, 0xed, 0xac, 0xab, 0x16, 0x61, + 0xfe, 0x0a, 0x94, 0x04, 0xf3, 0xbe, 0x61, 0x63, 0xcd, 0xdc, 0x33, 0xf4, 0x37, 0x70, 0x67, 0x0a, + 0xd6, 0x3f, 0x3d, 0x30, 0x54, 0xdb, 0x01, 0x72, 0xc2, 0xb9, 0x09, 0x92, 0xe7, 0xab, 0x28, 0x7a, + 0xcf, 0x32, 0x6d, 0x77, 0x02, 0xc7, 0x9f, 0x11, 0x23, 0xe5, 0xd1, 0x35, 0x29, 0xd9, 0x72, 0x03, + 0xd8, 0xe9, 0x8f, 0x69, 0x55, 0xf2, 0x53, 0x9c, 0x51, 0xde, 0xa7, 0xe2, 0x86, 0x43, 0x33, 0x7b, + 0x96, 0x6a, 0x4f, 0x63, 0xff, 0xfe, 0xbe, 0x30, 0x1c, 0x9c, 0x84, 0x1b, 0x0e, 0xe2, 0xd1, 0x91, + 0xd5, 0x7e, 0x0a, 0x0e, 0x3f, 0x2b, 0x0c, 0x87, 0xa0, 0xe1, 0x2c, 0x84, 0xc3, 0x30, 0x05, 0x8b, + 0x9f, 0x13, 0x2c, 0x04, 0x0d, 0x61, 0xf1, 0xb2, 0xbf, 0xd0, 0xda, 0x78, 0x4f, 0x77, 0x5c, 0x9b, + 0xb9, 0xe4, 0x47, 0xb3, 0xfa, 0xf9, 0x2f, 0x86, 0x9d, 0x30, 0x39, 0x40, 0x4a, 0x2c, 0x11, 0xdf, + 0xfa, 0xa0, 0x21, 0xdb, 0xe4, 0x86, 0xfd, 0x82, 0xb0, 0x44, 0x01, 0x32, 0xd2, 0xb6, 0x80, 0x87, + 0x48, 0xc4, 0xae, 0x91, 0x40, 0x65, 0x0a, 0x76, 0xff, 0x60, 0xa0, 0x71, 0x2d, 0x41, 0x4b, 0x78, + 0x06, 0xfc, 0x9f, 0xbe, 0x71, 0x13, 0x1f, 0x4e, 0xa5, 0x9d, 0xbf, 0x38, 0xe0, 0xff, 0x6c, 0x33, + 0x4a, 0x66, 0x43, 0x8a, 0x03, 0xfe, 0x14, 0x9a, 0x74, 0xd6, 0xaf, 0xf4, 0x4d, 0x6f, 0xf1, 0xfe, + 0x86, 0xdd, 0xa9, 0xe5, 0x35, 0xa2, 0xe4, 0x61, 0xa7, 0x67, 0x32, 0xb3, 0x0f, 0xbe, 0xe5, 0xe9, + 0x79, 0xc8, 0xe7, 0x59, 0xbe, 0x0a, 0xf9, 0x90, 0xc3, 0x33, 0x99, 0xd5, 0x37, 0x73, 0x56, 0xb9, + 0xa0, 0xbf, 0xb3, 0x7c, 0x09, 0xe2, 0xc4, 0x79, 0x99, 0x4c, 0xfe, 0x2d, 0x9c, 0x9c, 0xa2, 0x2f, + 0xbf, 0x00, 0x69, 0xe1, 0xb4, 0x4c, 0x26, 0xfd, 0x2b, 0x9c, 0xd4, 0x23, 0x21, 0xe4, 0xc2, 0x61, + 0x99, 0x4c, 0xfe, 0x57, 0x05, 0xb9, 0x20, 0x21, 0xe4, 0xd3, 0x8b, 0xf0, 0x97, 0xbf, 0x2d, 0xce, + 0x17, 0x1d, 0x21, 0xbb, 0x2b, 0x90, 0xe2, 0x9e, 0xca, 0x64, 0xea, 0x6f, 0xe5, 0x95, 0x0b, 0x8a, + 0xe5, 0x67, 0x21, 0x31, 0xa5, 0xc0, 0xbf, 0x83, 0x93, 0x32, 0xfc, 0xe5, 0x3a, 0x64, 0x03, 0xde, + 0xc9, 0x64, 0xf2, 0xef, 0xe4, 0xe4, 0x41, 0x2a, 0xd2, 0x74, 0xee, 0x9d, 0x4c, 0x66, 0xf0, 0xd7, + 0x44, 0xd3, 0x39, 0x05, 0x11, 0x9b, 0x70, 0x4c, 0x26, 0x53, 0x7f, 0x58, 0x48, 0x5d, 0x90, 0x2c, + 0xbf, 0x08, 0x19, 0x6f, 0xb1, 0x99, 0x4c, 0xff, 0x5d, 0x9c, 0xde, 0xa7, 0x21, 0x12, 0x08, 0x2c, + 0x76, 0x93, 0x59, 0xfc, 0x75, 0x21, 0x81, 0x00, 0x15, 0x99, 0x46, 0x83, 0x0e, 0xcc, 0x64, 0x4e, + 0xdf, 0x2d, 0xa6, 0xd1, 0x80, 0xff, 0x42, 0x46, 0x93, 0xda, 0xfc, 0xc9, 0x2c, 0xbe, 0x47, 0x8c, + 0x26, 0xc5, 0x27, 0xcd, 0x18, 0xf4, 0x08, 0x26, 0xf3, 0xf8, 0x3e, 0xd1, 0x8c, 0x01, 0x87, 0x60, + 0x79, 0x0b, 0xd0, 0xb0, 0x37, 0x30, 0x99, 0xdf, 0x47, 0x38, 0xbf, 0xd9, 0x21, 0x67, 0x60, 0xf9, + 0xbd, 0x70, 0x72, 0xb4, 0x27, 0x30, 0x99, 0xeb, 0xf7, 0xbf, 0x35, 0x10, 0xbb, 0x05, 0x1d, 0x81, + 0xe5, 0xb6, 0xbf, 0xa4, 0x04, 0xbd, 0x80, 0xc9, 0x6c, 0x7f, 0xe0, 0xad, 0xb0, 0xe1, 0x0e, 0x3a, + 0x01, 0xcb, 0x55, 0x00, 0x7f, 0x01, 0x9e, 0xcc, 0xeb, 0x63, 0x9c, 0x57, 0x80, 0x88, 0x4c, 0x0d, + 0xbe, 0xfe, 0x4e, 0xa6, 0xbf, 0x2b, 0xa6, 0x06, 0xa7, 0x20, 0x53, 0x43, 0x2c, 0xbd, 0x93, 0xa9, + 0x7f, 0x50, 0x4c, 0x0d, 0x41, 0x42, 0x34, 0x3b, 0xb0, 0xba, 0x4d, 0xe6, 0xf0, 0x09, 0xa1, 0xd9, + 0x01, 0xaa, 0xe5, 0x0d, 0x98, 0x1d, 0x5a, 0x10, 0x27, 0xb3, 0xfa, 0x21, 0xce, 0x4a, 0x1a, 0x5c, + 0x0f, 0x83, 0x8b, 0x17, 0x5f, 0x0c, 0x27, 0x73, 0xfb, 0xe1, 0x81, 0xc5, 0x8b, 0xaf, 0x85, 0xcb, + 0x57, 0x20, 0x6d, 0xf4, 0xbb, 0x5d, 0x32, 0x79, 0xd0, 0xd1, 0xe7, 0x73, 0x4b, 0xff, 0xf9, 0xcb, + 0x5c, 0x3a, 0x82, 0x60, 0xf9, 0x12, 0x24, 0x70, 0x6f, 0x07, 0x77, 0x26, 0x51, 0x7e, 0xe1, 0xcb, + 0xc2, 0x60, 0x12, 0xec, 0xe5, 0x17, 0x01, 0x58, 0x6a, 0x84, 0x6e, 0x9c, 0x4f, 0xa0, 0xfd, 0x83, + 0x2f, 0xf3, 0x03, 0x71, 0x3e, 0x89, 0xcf, 0x80, 0x1d, 0xaf, 0x3b, 0x9a, 0xc1, 0x17, 0xc3, 0x0c, + 0xe8, 0x88, 0x3c, 0x0f, 0xa9, 0xd7, 0x1d, 0xd3, 0x70, 0xd5, 0xbd, 0x49, 0xd4, 0x7f, 0xc8, 0xa9, + 0x05, 0x3e, 0x11, 0x58, 0xcf, 0xb4, 0xb1, 0xab, 0xee, 0x39, 0x93, 0x68, 0xff, 0x0b, 0xa7, 0xf5, + 0x08, 0x08, 0xb1, 0xa6, 0x3a, 0xee, 0x34, 0xfd, 0xfe, 0xaf, 0x82, 0x58, 0x10, 0x90, 0x46, 0x93, + 0xdf, 0x37, 0xf1, 0xe1, 0x24, 0xda, 0x3f, 0x12, 0x8d, 0xe6, 0xf8, 0xcb, 0x2f, 0x40, 0x86, 0xfc, + 0x64, 0xa7, 0x5c, 0x27, 0x10, 0xff, 0x31, 0x27, 0xf6, 0x29, 0x48, 0xcd, 0x8e, 0xdb, 0x71, 0xf5, + 0xc9, 0xc2, 0xfe, 0x12, 0x1f, 0x69, 0x81, 0xbf, 0x5c, 0x85, 0xac, 0xe3, 0x76, 0x3a, 0x7d, 0xee, + 0x9f, 0x4e, 0x20, 0xff, 0x93, 0x2f, 0x7b, 0x29, 0x0b, 0x8f, 0x86, 0x8c, 0xf6, 0xed, 0x9b, 0xae, + 0x65, 0xd2, 0xfd, 0x96, 0x49, 0x1c, 0xde, 0xe2, 0x1c, 0x02, 0x24, 0xcb, 0x75, 0xc8, 0x91, 0xbe, + 0xd8, 0xd8, 0xc2, 0x74, 0x73, 0x6c, 0x02, 0x8b, 0x3f, 0xe5, 0x02, 0x08, 0x11, 0xd5, 0xbe, 0xf1, + 0x57, 0x3f, 0x7b, 0x36, 0xf2, 0xe9, 0xcf, 0x9e, 0x8d, 0xfc, 0xf6, 0x67, 0xcf, 0x46, 0x3e, 0xfc, + 0xb9, 0xb3, 0x33, 0x9f, 0xfe, 0xdc, 0xd9, 0x99, 0xdf, 0xfc, 0xdc, 0xd9, 0x99, 0xd1, 0x59, 0x62, + 0x58, 0x35, 0x57, 0x4d, 0x96, 0x1f, 0x7e, 0xed, 0xa1, 0x3d, 0xdd, 0xdd, 0xef, 0xef, 0x2c, 0x69, + 0x66, 0xef, 0x82, 0x66, 0x3a, 0x3d, 0xd3, 0xb9, 0x10, 0xce, 0xeb, 0xd2, 0x5f, 0xf0, 0xbf, 0x22, + 0x24, 0x66, 0x0e, 0xa7, 0x73, 0x55, 0xe3, 0x70, 0xdc, 0x65, 0xba, 0xcb, 0x10, 0xab, 0x1a, 0x87, + 0xe8, 0x34, 0x33, 0x70, 0x4a, 0xdf, 0xee, 0xf2, 0xa3, 0x96, 0x29, 0xf2, 0xbd, 0x6d, 0x77, 0xd1, + 0xbc, 0x7f, 0x1e, 0x3a, 0x72, 0x2e, 0xc7, 0x0f, 0x39, 0xd7, 0xbe, 0x33, 0x72, 0xbc, 0x9e, 0xa4, + 0xab, 0xc6, 0x21, 0xed, 0xc8, 0x56, 0xe4, 0xb5, 0xc7, 0x27, 0xe6, 0xb9, 0x6f, 0x1a, 0xe6, 0x6d, + 0x83, 0x34, 0xdb, 0xda, 0x11, 0x39, 0xee, 0xb3, 0x83, 0x39, 0xee, 0xf7, 0xe2, 0x6e, 0xf7, 0x25, + 0x82, 0xd7, 0x26, 0x24, 0x3b, 0x49, 0x76, 0xaa, 0x1f, 0xbe, 0x3b, 0x0a, 0x67, 0x87, 0xd2, 0xd9, + 0x5c, 0x09, 0xc6, 0x09, 0x61, 0x19, 0xd2, 0x2b, 0x42, 0xb7, 0x4a, 0x90, 0x72, 0xb0, 0x66, 0x1a, + 0x1d, 0x87, 0x0a, 0x22, 0x26, 0x8b, 0x4f, 0x22, 0x08, 0x43, 0x35, 0x4c, 0x87, 0x1f, 0x56, 0x66, + 0x1f, 0xb5, 0x8f, 0x1e, 0x53, 0x10, 0x79, 0x51, 0x93, 0x90, 0xc6, 0x53, 0x53, 0x4a, 0x43, 0x74, + 0x22, 0x94, 0xf9, 0x9f, 0x56, 0x2a, 0xdf, 0x17, 0x85, 0x85, 0x41, 0xa9, 0x90, 0x99, 0xe5, 0xb8, + 0x6a, 0xcf, 0x1a, 0x27, 0x96, 0x2b, 0x90, 0x69, 0x0b, 0x9c, 0x63, 0xcb, 0xe5, 0xee, 0x31, 0xe5, + 0x52, 0xf0, 0xaa, 0x12, 0x82, 0xb9, 0x38, 0xa5, 0x60, 0xbc, 0x7e, 0xdc, 0x93, 0x64, 0xfe, 0x67, + 0x12, 0x4e, 0xb3, 0xe9, 0xa4, 0xb0, 0xa9, 0xc4, 0x3e, 0xb8, 0x4c, 0x72, 0xc1, 0xa2, 0xc9, 0xfb, + 0x24, 0x95, 0x97, 0x60, 0xae, 0x49, 0xac, 0x05, 0x89, 0x82, 0xfc, 0x1d, 0x9e, 0x91, 0xe7, 0xb9, + 0x17, 0x43, 0x0e, 0x3f, 0xdf, 0xdf, 0x0a, 0x82, 0x2a, 0xdf, 0x14, 0x01, 0xa9, 0xa5, 0xa9, 0x5d, + 0xd5, 0xfe, 0x4a, 0x59, 0xa1, 0x67, 0x01, 0xd8, 0x71, 0x0f, 0xef, 0xe2, 0x5e, 0xe1, 0x62, 0x69, + 0x29, 0xd8, 0xb9, 0x25, 0x56, 0x13, 0x3d, 0x41, 0x95, 0xa1, 0xb8, 0xe4, 0xe7, 0xf9, 0x57, 0x00, + 0xfc, 0x02, 0x74, 0x06, 0x4e, 0xb5, 0xea, 0xd5, 0xb5, 0xaa, 0x2c, 0x0e, 0x09, 0xb5, 0xb6, 0x1a, + 0xf5, 0xe6, 0xd5, 0x66, 0x63, 0x45, 0x9a, 0x41, 0x27, 0x01, 0x05, 0x0b, 0xbd, 0x43, 0x4d, 0x27, + 0x60, 0x36, 0x08, 0x67, 0xb7, 0x54, 0xa2, 0xc4, 0x53, 0xd4, 0x7b, 0x56, 0x17, 0xd3, 0x9d, 0x47, + 0x45, 0x17, 0x52, 0x9b, 0xec, 0x84, 0xfc, 0xda, 0xbf, 0x63, 0x37, 0x17, 0xe6, 0x7c, 0x72, 0x4f, + 0xe6, 0xcb, 0x6b, 0x30, 0xab, 0x6a, 0x1a, 0xb6, 0x42, 0x2c, 0x27, 0x98, 0x6a, 0xc2, 0x90, 0xee, + 0xa5, 0x72, 0x4a, 0x9f, 0xdb, 0xb3, 0x90, 0x74, 0x68, 0xef, 0x27, 0xb1, 0xf8, 0x75, 0xce, 0x82, + 0xa3, 0x2f, 0x1b, 0x30, 0x4b, 0x3c, 0x3f, 0xd5, 0xc6, 0x81, 0x66, 0x1c, 0x9d, 0x67, 0xf8, 0x87, + 0x3f, 0xf3, 0x24, 0xdd, 0x59, 0x7d, 0x20, 0x3c, 0x2c, 0x23, 0xd4, 0x49, 0x96, 0x38, 0x6f, 0xbf, + 0xa1, 0x18, 0x0a, 0xa2, 0x3e, 0xde, 0xe0, 0xa3, 0x2b, 0xfb, 0x25, 0x5e, 0xd9, 0xd9, 0x51, 0x3a, + 0x10, 0xa8, 0x29, 0xcf, 0xb9, 0xb2, 0x82, 0x5a, 0x63, 0xdc, 0x9c, 0x7e, 0xed, 0xb1, 0xe1, 0xd5, + 0x89, 0xfd, 0xf7, 0x04, 0xe5, 0x7c, 0x25, 0x58, 0x8d, 0x37, 0xf7, 0x3e, 0x1a, 0x87, 0x59, 0xb5, + 0xa7, 0x1b, 0xe6, 0x05, 0xfa, 0x2f, 0x9f, 0x73, 0x09, 0xfa, 0x31, 0xc5, 0xa6, 0xe4, 0x65, 0x36, + 0x15, 0x26, 0x6b, 0xcc, 0x1f, 0x7f, 0xfb, 0x8f, 0x26, 0xfc, 0xe9, 0xb2, 0xbc, 0x0e, 0x92, 0x38, + 0xc4, 0x8b, 0x0d, 0xcd, 0xec, 0x4c, 0x95, 0xa5, 0xf8, 0x92, 0xe0, 0x21, 0xf2, 0x5b, 0x0d, 0x4e, + 0xba, 0xfc, 0x6e, 0x48, 0x7b, 0x6c, 0x26, 0x79, 0x26, 0x82, 0x89, 0x47, 0x41, 0xfc, 0x12, 0x36, + 0x33, 0xa7, 0xf1, 0x42, 0xdf, 0x12, 0xf4, 0x6c, 0x86, 0x6e, 0x90, 0xde, 0xac, 0x42, 0xa1, 0x63, + 0x1a, 0xae, 0x62, 0xf6, 0x74, 0x17, 0xf7, 0x2c, 0x77, 0xa2, 0x5f, 0xf7, 0xa7, 0x8c, 0x49, 0x5a, + 0xce, 0x13, 0xba, 0x4d, 0x41, 0x46, 0x5a, 0xc2, 0xee, 0xe9, 0x4d, 0xd3, 0x92, 0xff, 0xe6, 0xb5, + 0x84, 0xd2, 0x90, 0x96, 0xdc, 0x93, 0x76, 0x38, 0x9d, 0x9b, 0xdc, 0x98, 0xbb, 0x07, 0x4c, 0x0b, + 0x3c, 0xed, 0xf8, 0x27, 0x71, 0x38, 0xcb, 0x91, 0x77, 0x54, 0x07, 0x5f, 0xb8, 0xf5, 0xd4, 0x0e, + 0x76, 0xd5, 0xa7, 0x2e, 0x68, 0xa6, 0x2e, 0x56, 0xf2, 0x39, 0x6e, 0xac, 0x49, 0xf9, 0x12, 0x2f, + 0x2f, 0x8f, 0xdc, 0xee, 0x2e, 0x8f, 0x37, 0xf2, 0xe5, 0x61, 0x1d, 0xac, 0x74, 0x21, 0x5e, 0x37, + 0x75, 0x83, 0xac, 0x6d, 0x1d, 0x6c, 0x98, 0x3d, 0x6e, 0x6e, 0xd9, 0x07, 0xba, 0x06, 0x49, 0xb5, + 0x67, 0xf6, 0x0d, 0x97, 0x99, 0xda, 0xda, 0x93, 0xbf, 0xfa, 0xe6, 0xc2, 0xcc, 0x7f, 0x78, 0x73, + 0xe1, 0x04, 0x63, 0xeb, 0x74, 0x6e, 0x2e, 0xe9, 0xe6, 0x85, 0x9e, 0xea, 0xee, 0x93, 0xe9, 0xfb, + 0x99, 0x4f, 0x3d, 0x01, 0xbc, 0xbe, 0xa6, 0xe1, 0x7e, 0xf2, 0xf7, 0x7f, 0xf2, 0x7c, 0x44, 0xe6, + 0xf4, 0xcb, 0xf1, 0xcf, 0x7f, 0x7c, 0x21, 0x52, 0xb1, 0x20, 0xb5, 0x82, 0xb5, 0x23, 0x2a, 0x6c, + 0x0e, 0x54, 0xf8, 0x14, 0xaf, 0xf0, 0xcc, 0x70, 0x85, 0xec, 0xc0, 0xde, 0x0a, 0xd6, 0x02, 0xd5, + 0xae, 0x60, 0x6d, 0xa0, 0xc6, 0x26, 0xa4, 0x9b, 0x86, 0xcb, 0x2e, 0x1b, 0xbd, 0x00, 0x31, 0xdd, + 0x60, 0xe7, 0xd7, 0x33, 0xb5, 0xc7, 0x8e, 0xd1, 0x15, 0x99, 0xd0, 0x55, 0x36, 0x21, 0xbd, 0x82, + 0x35, 0xc6, 0xaa, 0x0e, 0xb1, 0x0e, 0xd6, 0x38, 0xab, 0x7b, 0x68, 0x24, 0xa1, 0xae, 0xad, 0xfc, + 0xe6, 0xef, 0x9c, 0x9d, 0xf9, 0xc0, 0x67, 0xcf, 0xce, 0x8c, 0x55, 0xa7, 0xca, 0x64, 0x75, 0xf2, + 0xb4, 0xe8, 0x47, 0xe3, 0x70, 0x3f, 0xbd, 0xad, 0x6a, 0xf7, 0x74, 0xc3, 0xbd, 0xa0, 0xd9, 0x87, + 0x96, 0x6b, 0x12, 0xa3, 0x62, 0xee, 0x72, 0x25, 0x9a, 0xf5, 0x8b, 0x97, 0x58, 0xf1, 0x68, 0x15, + 0xaa, 0xec, 0x42, 0x62, 0x8b, 0xd0, 0x91, 0x41, 0x72, 0x4d, 0x57, 0xed, 0x72, 0x4f, 0x88, 0x7d, + 0x10, 0x28, 0xbb, 0xe1, 0x1a, 0x65, 0x50, 0x5d, 0x5c, 0x6e, 0xed, 0x62, 0x75, 0x97, 0x5d, 0x14, + 0x8a, 0x51, 0x17, 0x3a, 0x4d, 0x00, 0xf4, 0x4e, 0xd0, 0x3c, 0x24, 0xd4, 0x3e, 0x3b, 0xcc, 0x13, + 0x23, 0xbe, 0x35, 0xfd, 0xa8, 0xbc, 0x04, 0x29, 0xbe, 0xa7, 0x8f, 0x24, 0x88, 0xdd, 0xc4, 0x87, + 0xb4, 0x9e, 0x9c, 0x4c, 0x7e, 0xa2, 0x25, 0x48, 0xd0, 0xc6, 0xf3, 0x1b, 0x90, 0xa5, 0xa5, 0xa1, + 0xd6, 0x2f, 0xd1, 0x46, 0xca, 0x0c, 0xad, 0x72, 0x1d, 0xd2, 0x2b, 0x26, 0xd1, 0xec, 0x30, 0xb7, + 0x0c, 0xe3, 0x46, 0xdb, 0x6c, 0xf5, 0xb9, 0x5e, 0xc9, 0xec, 0x03, 0x9d, 0x84, 0x24, 0xbb, 0x38, + 0xc6, 0x0f, 0x24, 0xf1, 0xaf, 0x4a, 0x1d, 0x52, 0x94, 0xf7, 0xa6, 0x45, 0xdc, 0x10, 0xef, 0x2c, + 0x7d, 0x86, 0x5f, 0x23, 0xe6, 0xec, 0xa3, 0x7e, 0x63, 0x11, 0xc4, 0x3b, 0xaa, 0xab, 0xf2, 0x7e, + 0xd3, 0xdf, 0x95, 0xf7, 0x40, 0x9a, 0x33, 0x71, 0xd0, 0x45, 0x88, 0x99, 0x96, 0xc3, 0x8f, 0x14, + 0x95, 0xc7, 0x75, 0x65, 0xd3, 0xaa, 0xc5, 0x89, 0x2e, 0xc9, 0x04, 0xb9, 0xb6, 0x31, 0x56, 0x2d, + 0x9e, 0x09, 0xa9, 0x45, 0x0f, 0xbb, 0x3b, 0xbb, 0xae, 0xff, 0x83, 0x0d, 0xe7, 0x90, 0x2a, 0x78, + 0x8a, 0x72, 0x37, 0x0a, 0x67, 0x03, 0xa5, 0xb7, 0xb0, 0xed, 0xe8, 0xa6, 0xc1, 0xb4, 0x89, 0x6b, + 0x0a, 0x0a, 0x34, 0x90, 0x97, 0x8f, 0x51, 0x95, 0x17, 0x20, 0x56, 0xb5, 0x2c, 0x54, 0x86, 0x34, + 0xfd, 0xd6, 0x4c, 0xa6, 0x2b, 0x71, 0xd9, 0xfb, 0x26, 0x65, 0x8e, 0xb9, 0xeb, 0xde, 0x56, 0x6d, + 0xef, 0x5e, 0xb5, 0xf8, 0xae, 0x3c, 0x0f, 0x99, 0xba, 0x69, 0x38, 0xd8, 0x70, 0xfa, 0xd4, 0xbf, + 0xde, 0xe9, 0x9a, 0xda, 0x4d, 0xce, 0x81, 0x7d, 0x10, 0x61, 0xab, 0x96, 0x45, 0x29, 0xe3, 0x32, + 0xf9, 0xc9, 0x66, 0x76, 0x6d, 0x73, 0xac, 0x78, 0x2e, 0x1d, 0x4f, 0x3c, 0xbc, 0x83, 0xbe, 0xa3, + 0x1c, 0x81, 0xfb, 0x86, 0x27, 0xd2, 0x4d, 0x7c, 0xe8, 0x1c, 0x77, 0x1e, 0xbd, 0x02, 0x99, 0x2d, + 0xfa, 0xe4, 0xc9, 0x4b, 0xf8, 0x10, 0x95, 0x21, 0x85, 0x3b, 0x17, 0x2f, 0x5d, 0x7a, 0xea, 0x79, + 0xa6, 0xe5, 0xd7, 0x66, 0x64, 0x01, 0x40, 0x67, 0x21, 0xe3, 0x60, 0xcd, 0xba, 0x78, 0xe9, 0xf2, + 0xcd, 0xa7, 0x98, 0x5a, 0x5d, 0x9b, 0x91, 0x7d, 0xd0, 0x72, 0x9a, 0xf4, 0xf8, 0xf3, 0x9f, 0x58, + 0x88, 0xd4, 0x12, 0x10, 0x73, 0xfa, 0xbd, 0x77, 0x4c, 0x37, 0xfe, 0x28, 0x09, 0x8b, 0x81, 0x52, + 0xb6, 0x60, 0xdd, 0x52, 0xbb, 0x7a, 0x47, 0xf5, 0x1f, 0xaa, 0x91, 0x02, 0xfd, 0xa7, 0x18, 0x63, + 0x56, 0xa2, 0x23, 0xa5, 0x58, 0xf9, 0xe9, 0x08, 0xe4, 0x6e, 0x08, 0xce, 0x2d, 0xec, 0xa2, 0x2b, + 0x00, 0x5e, 0x4d, 0x62, 0xaa, 0x9c, 0x59, 0x1a, 0xac, 0x6b, 0xc9, 0xa3, 0x91, 0x03, 0xe8, 0xe8, + 0x59, 0xaa, 0x80, 0x96, 0xe9, 0xf0, 0x3b, 0xb6, 0x13, 0x48, 0x3d, 0x64, 0xf4, 0x38, 0x20, 0x6a, + 0xd5, 0x94, 0x5b, 0xa6, 0xab, 0x1b, 0x7b, 0x8a, 0x65, 0xde, 0xe6, 0x2f, 0x17, 0xc4, 0x64, 0x89, + 0x96, 0xdc, 0xa0, 0x05, 0x5b, 0x04, 0x4e, 0x1a, 0x9d, 0xf1, 0xb8, 0x90, 0x50, 0x51, 0xed, 0x74, + 0x6c, 0xec, 0x38, 0xdc, 0x70, 0x89, 0x4f, 0x74, 0x05, 0x52, 0x56, 0x7f, 0x47, 0x11, 0x56, 0x22, + 0x7b, 0xf1, 0xbe, 0x51, 0x73, 0x5e, 0xe8, 0x06, 0x9f, 0xf5, 0x49, 0xab, 0xbf, 0x43, 0x34, 0xe5, + 0x01, 0xc8, 0x8d, 0x68, 0x4c, 0xf6, 0x96, 0xdf, 0x0e, 0xfa, 0xca, 0x0e, 0xef, 0x81, 0x62, 0xd9, + 0xba, 0x69, 0xeb, 0xee, 0x21, 0x3d, 0x0a, 0x18, 0x93, 0x25, 0x51, 0xb0, 0xc5, 0xe1, 0x95, 0x9b, + 0x50, 0x6c, 0xd1, 0x10, 0xc2, 0x6f, 0xf9, 0x25, 0xbf, 0x7d, 0x91, 0xc9, 0xed, 0x1b, 0xdb, 0xb2, + 0xe8, 0x50, 0xcb, 0xce, 0xff, 0x46, 0x04, 0xb2, 0x35, 0x32, 0x71, 0x9b, 0x2b, 0x57, 0xbb, 0xea, + 0x1e, 0x7a, 0x0a, 0x4e, 0xd4, 0xd6, 0x36, 0xeb, 0x2f, 0x29, 0xcd, 0x15, 0xe5, 0xea, 0x5a, 0x75, + 0xd5, 0x3f, 0x7b, 0x5c, 0x3e, 0x79, 0xe7, 0xee, 0x22, 0x0a, 0xe0, 0x6e, 0x1b, 0x34, 0xce, 0x45, + 0x17, 0x60, 0x3e, 0x4c, 0x52, 0xad, 0xb5, 0x1a, 0x1b, 0x6d, 0x29, 0x52, 0x3e, 0x71, 0xe7, 0xee, + 0xe2, 0x6c, 0x80, 0xa2, 0xba, 0xe3, 0x60, 0xc3, 0x1d, 0x26, 0xa8, 0x6f, 0xae, 0xaf, 0x37, 0xdb, + 0x52, 0x74, 0x88, 0xa0, 0x6e, 0xf6, 0x7a, 0xba, 0x8b, 0x1e, 0x85, 0xd9, 0x30, 0xc1, 0x46, 0x73, + 0x4d, 0x8a, 0x95, 0xd1, 0x9d, 0xbb, 0x8b, 0x85, 0x00, 0xf6, 0x86, 0xde, 0x2d, 0xa7, 0x3f, 0xf4, + 0xc3, 0x67, 0x67, 0x3e, 0xf9, 0x37, 0xcf, 0x46, 0x6a, 0xeb, 0x63, 0xe7, 0xdc, 0xd3, 0xc7, 0x9b, + 0x73, 0xe1, 0x75, 0xfb, 0xcb, 0xf7, 0x85, 0xcc, 0x0d, 0xf7, 0x11, 0x03, 0xc6, 0x78, 0xda, 0xe9, + 0x36, 0x29, 0xef, 0x51, 0x3e, 0xda, 0x3d, 0x28, 0x4f, 0x58, 0x14, 0xca, 0x13, 0x0d, 0x43, 0xe5, + 0x79, 0xc8, 0x6f, 0xa9, 0xb6, 0xdb, 0xc2, 0xee, 0x35, 0xac, 0x76, 0xb0, 0x1d, 0xf6, 0x1f, 0xf2, + 0xc2, 0x7f, 0x40, 0x10, 0xa7, 0x4e, 0x02, 0x5b, 0x3f, 0xe9, 0xef, 0xca, 0x3e, 0xc4, 0xe9, 0x29, + 0x67, 0xcf, 0xb7, 0xe0, 0x14, 0xcc, 0xb7, 0x20, 0x2b, 0xc3, 0xa1, 0x8b, 0x1d, 0x91, 0x9a, 0xa3, + 0x1f, 0xe8, 0x19, 0xe1, 0x21, 0xc4, 0x8e, 0xf6, 0x10, 0xf8, 0xf4, 0xe2, 0x7e, 0x42, 0x17, 0x52, + 0x7c, 0x88, 0xbd, 0x86, 0x44, 0xfc, 0x86, 0xa0, 0x75, 0x28, 0x5a, 0xaa, 0xed, 0xd2, 0x5b, 0x8f, + 0xfb, 0xb4, 0x17, 0x7c, 0x06, 0x2f, 0x0c, 0xdb, 0x93, 0x50, 0x67, 0x79, 0x2d, 0x79, 0x2b, 0x08, + 0xac, 0xfc, 0x5e, 0x1c, 0x92, 0x5c, 0x18, 0x2f, 0x40, 0x8a, 0x8b, 0x95, 0xcf, 0xb9, 0xfb, 0x97, + 0x86, 0x97, 0xd9, 0x25, 0x6f, 0x39, 0xe4, 0xfc, 0x04, 0x0d, 0x7a, 0x18, 0xd2, 0xda, 0xbe, 0xaa, + 0x1b, 0x8a, 0xde, 0xe1, 0xce, 0x71, 0xf6, 0xb3, 0x6f, 0x2e, 0xa4, 0xea, 0x04, 0xd6, 0x5c, 0x91, + 0x53, 0xb4, 0xb0, 0xd9, 0x21, 0x3e, 0xcd, 0x3e, 0xd6, 0xf7, 0xf6, 0x5d, 0x6e, 0x37, 0xf8, 0x17, + 0x7a, 0x0e, 0xe2, 0x44, 0x21, 0xf8, 0x9d, 0xf8, 0xf2, 0x50, 0xd4, 0xe3, 0xa5, 0xa5, 0x6a, 0x69, + 0x52, 0xf1, 0x87, 0xff, 0xd3, 0x42, 0x44, 0xa6, 0x14, 0xa8, 0x0e, 0xf9, 0xae, 0xea, 0xb8, 0x0a, + 0x5d, 0x8f, 0x49, 0xf5, 0x09, 0xca, 0xe2, 0xf4, 0xb0, 0x40, 0xb8, 0x60, 0x79, 0xd3, 0xb3, 0x84, + 0x8a, 0x81, 0x3a, 0xe8, 0x1c, 0x48, 0x94, 0x89, 0x46, 0x67, 0x20, 0xf3, 0x12, 0x93, 0x54, 0xee, + 0x05, 0x02, 0x67, 0x13, 0x93, 0xfa, 0x8a, 0x67, 0x20, 0x43, 0x6f, 0xe1, 0x52, 0x14, 0x76, 0xb4, + 0x3e, 0x4d, 0x00, 0xb4, 0xf0, 0x11, 0x28, 0xfa, 0x56, 0x9f, 0xa1, 0xa4, 0x19, 0x17, 0x1f, 0x4c, + 0x11, 0x9f, 0x84, 0x79, 0x03, 0x1f, 0xd0, 0xc3, 0xfe, 0x21, 0xec, 0x0c, 0xc5, 0x46, 0xa4, 0xec, + 0x46, 0x98, 0xe2, 0x21, 0x28, 0x68, 0x42, 0xf8, 0x0c, 0x17, 0x28, 0x6e, 0xde, 0x83, 0x52, 0xb4, + 0xd3, 0x90, 0x56, 0x2d, 0x8b, 0x21, 0x64, 0xb9, 0xd5, 0xb7, 0x2c, 0x5a, 0x74, 0x1e, 0x66, 0x69, + 0x1f, 0x6d, 0xec, 0xf4, 0xbb, 0x2e, 0x67, 0x92, 0xa3, 0x38, 0x45, 0x52, 0x20, 0x33, 0x38, 0xc5, + 0x7d, 0x10, 0xf2, 0xf8, 0x96, 0xde, 0xc1, 0x86, 0x86, 0x19, 0x5e, 0x9e, 0xe2, 0xe5, 0x04, 0x90, + 0x22, 0x3d, 0x0a, 0x9e, 0x35, 0x57, 0xc4, 0x4a, 0x53, 0x60, 0xfc, 0x04, 0xbc, 0xca, 0xc0, 0x95, + 0x12, 0xc4, 0x57, 0x54, 0x57, 0x25, 0xee, 0x92, 0x7b, 0xc0, 0x96, 0xcf, 0x9c, 0x4c, 0x7e, 0x56, + 0x7e, 0x2e, 0x06, 0xf1, 0x1b, 0xa6, 0x8b, 0xd1, 0xd3, 0x01, 0x57, 0xb6, 0x30, 0x4a, 0x9f, 0x5b, + 0xfa, 0x9e, 0x81, 0x3b, 0xeb, 0xce, 0x5e, 0xe0, 0xc9, 0x1c, 0x5f, 0x9d, 0xa2, 0x21, 0x75, 0x9a, + 0x87, 0x84, 0x6d, 0xf6, 0x8d, 0x8e, 0x38, 0x94, 0x4e, 0x3f, 0x50, 0x03, 0xd2, 0x9e, 0x96, 0xc4, + 0x27, 0x69, 0x49, 0x91, 0x68, 0x09, 0xd1, 0x61, 0x0e, 0x90, 0x53, 0x3b, 0x5c, 0x59, 0x6a, 0x90, + 0xf1, 0x8c, 0x17, 0xd7, 0xb6, 0xe9, 0x14, 0xd6, 0x27, 0x23, 0x4b, 0xa4, 0x37, 0xf6, 0x9e, 0xf0, + 0x98, 0xc6, 0x49, 0x5e, 0x01, 0x97, 0x5e, 0x48, 0xad, 0xf8, 0xf3, 0x3d, 0x29, 0xda, 0x2f, 0x5f, + 0xad, 0xd8, 0x13, 0x3e, 0xf7, 0x41, 0xc6, 0xd1, 0xf7, 0x0c, 0xd5, 0xed, 0xdb, 0x98, 0x6b, 0x9e, + 0x0f, 0x20, 0xa5, 0xfe, 0x05, 0x0d, 0xa6, 0x69, 0x81, 0x57, 0xc5, 0x2e, 0xc0, 0x9c, 0xff, 0x9e, + 0x97, 0xcf, 0x85, 0x69, 0x19, 0xf2, 0x8a, 0x5a, 0xa2, 0xa4, 0xf2, 0xcb, 0x11, 0x48, 0xf2, 0x15, + 0xcb, 0x1f, 0x86, 0xc8, 0xe8, 0x61, 0x88, 0x8e, 0x1b, 0x86, 0xd8, 0xbd, 0x0f, 0x43, 0x15, 0xc0, + 0x6b, 0xa6, 0xc3, 0x1f, 0x69, 0x19, 0xe1, 0x56, 0xb1, 0x26, 0xb6, 0xf4, 0x3d, 0x3e, 0xef, 0x03, + 0x44, 0x95, 0xdf, 0x8a, 0x10, 0x0f, 0x9f, 0x97, 0xa3, 0x2a, 0xe4, 0x45, 0xbb, 0x94, 0xdd, 0xae, + 0xba, 0xc7, 0x55, 0xf1, 0xfe, 0xb1, 0x8d, 0x23, 0xab, 0xb0, 0x9c, 0xe5, 0xed, 0xa1, 0xfe, 0xc4, + 0xc8, 0x61, 0x8d, 0x8e, 0x19, 0xd6, 0x90, 0x1e, 0xc5, 0xee, 0x4d, 0x8f, 0x42, 0x23, 0x1e, 0x1f, + 0x18, 0xf1, 0xca, 0xef, 0x44, 0xf8, 0x6b, 0x62, 0x1d, 0x76, 0xbb, 0xe4, 0xcf, 0x6a, 0xa8, 0x5e, + 0xe3, 0xba, 0xd5, 0xc1, 0x1d, 0x65, 0x68, 0xcc, 0x1e, 0x1c, 0xe6, 0x18, 0x6e, 0xb3, 0x3f, 0x76, + 0x48, 0x70, 0x69, 0xf9, 0x63, 0xf8, 0xa9, 0x28, 0xcc, 0x0e, 0xe1, 0xff, 0xf9, 0x1b, 0xcb, 0xf0, + 0xec, 0x4d, 0x4c, 0x39, 0x7b, 0x93, 0x63, 0x67, 0xef, 0xcf, 0x44, 0x69, 0x02, 0xc0, 0x32, 0x1d, + 0xb5, 0xfb, 0xd5, 0xb0, 0xbd, 0x67, 0x20, 0x63, 0x99, 0x5d, 0x85, 0x95, 0xb0, 0x6b, 0x41, 0x69, + 0xcb, 0xec, 0xca, 0x43, 0x6a, 0x96, 0x78, 0x9b, 0x0c, 0x73, 0xf2, 0x6d, 0x18, 0x84, 0xd4, 0xe0, + 0x84, 0xb2, 0x21, 0xc7, 0x44, 0xc1, 0xbd, 0xa6, 0x27, 0x89, 0x0c, 0xa8, 0x1b, 0x16, 0x19, 0xf6, + 0xf2, 0x58, 0xb3, 0x19, 0xa6, 0xcc, 0xf1, 0x08, 0x05, 0x73, 0x32, 0x46, 0x65, 0x8e, 0x82, 0x16, + 0x4b, 0xe6, 0x78, 0x95, 0xef, 0x8d, 0x00, 0xac, 0x11, 0xc9, 0xd2, 0xfe, 0x12, 0x7f, 0xc7, 0xa1, + 0x4d, 0x50, 0x42, 0x35, 0x9f, 0x1d, 0x37, 0x68, 0xbc, 0xfe, 0x9c, 0x13, 0x6c, 0x77, 0x1d, 0xf2, + 0xbe, 0x6e, 0x3b, 0x58, 0x34, 0xe6, 0xec, 0x11, 0x51, 0x69, 0x0b, 0xbb, 0x72, 0xee, 0x56, 0xe0, + 0xab, 0xf2, 0x8f, 0x23, 0x90, 0xa1, 0x6d, 0x5a, 0xc7, 0xae, 0x1a, 0x1a, 0xc3, 0xc8, 0xbd, 0x8f, + 0xe1, 0xfd, 0x00, 0x8c, 0x8d, 0xa3, 0xbf, 0x81, 0xb9, 0x66, 0x65, 0x28, 0xa4, 0xa5, 0xbf, 0x81, + 0xd1, 0x65, 0x4f, 0xe0, 0xb1, 0xa3, 0x05, 0x2e, 0xa2, 0x56, 0x2e, 0xf6, 0x53, 0x90, 0xa2, 0xef, + 0x5d, 0x1e, 0x38, 0x3c, 0x10, 0x4d, 0x1a, 0xfd, 0x5e, 0xfb, 0xc0, 0xa9, 0xbc, 0x0e, 0xa9, 0xf6, + 0x01, 0xcb, 0x27, 0x9e, 0x81, 0x8c, 0x6d, 0x9a, 0xdc, 0xfb, 0x63, 0x5e, 0x77, 0x9a, 0x00, 0xa8, + 0xb3, 0x23, 0x72, 0x68, 0x51, 0x3f, 0x87, 0xe6, 0x27, 0x01, 0x63, 0x53, 0x25, 0x01, 0x49, 0xf4, + 0x99, 0x0f, 0xcd, 0x24, 0xf4, 0x38, 0x9c, 0x6a, 0x35, 0x57, 0x37, 0x1a, 0x2b, 0xca, 0x7a, 0x6b, + 0x75, 0xe0, 0xca, 0x7f, 0xb9, 0x78, 0xe7, 0xee, 0x62, 0x96, 0x87, 0x9d, 0xe3, 0xb0, 0xb7, 0xe4, + 0xc6, 0x8d, 0xcd, 0x76, 0x43, 0x8a, 0x30, 0xec, 0x2d, 0x1b, 0xdf, 0x32, 0x5d, 0xf6, 0xa0, 0xec, + 0x93, 0x70, 0x7a, 0x04, 0xb6, 0x17, 0x7c, 0xce, 0xde, 0xb9, 0xbb, 0x98, 0xdf, 0xb2, 0x31, 0xd3, + 0x32, 0x4a, 0xb1, 0x04, 0xa5, 0x61, 0x8a, 0xcd, 0xad, 0xcd, 0x56, 0x75, 0x4d, 0x5a, 0x2c, 0x4b, + 0x77, 0xee, 0x2e, 0xe6, 0x84, 0xc9, 0x20, 0xf8, 0xef, 0x7c, 0xf4, 0xf9, 0xad, 0xe9, 0x50, 0xd6, + 0x98, 0xc5, 0x75, 0x96, 0x6a, 0xab, 0xbd, 0xe3, 0x86, 0x9f, 0x13, 0x0e, 0x23, 0x54, 0x7e, 0x3a, + 0x0a, 0x45, 0x2f, 0xb8, 0xd9, 0xa2, 0x35, 0xa0, 0xa7, 0x83, 0x19, 0xbf, 0xec, 0xd8, 0xb5, 0x83, + 0x61, 0x8b, 0x84, 0xe0, 0xbb, 0x21, 0x2d, 0x9c, 0x64, 0x3e, 0xa9, 0x16, 0x47, 0xac, 0x6f, 0x1c, + 0x83, 0x93, 0x7a, 0x14, 0xe8, 0x45, 0xc8, 0x78, 0x53, 0xcc, 0x7b, 0x74, 0x6d, 0xfc, 0x9c, 0xe4, + 0xf4, 0x3e, 0x0d, 0x7a, 0xde, 0x0f, 0xe3, 0xe2, 0xe3, 0x02, 0xc3, 0x1b, 0x0c, 0x81, 0x13, 0x7b, + 0x21, 0xdc, 0x93, 0x10, 0x57, 0x77, 0x34, 0x9d, 0x1b, 0xe0, 0xfb, 0x86, 0xe9, 0xaa, 0xb5, 0x7a, + 0x93, 0x13, 0x51, 0xcc, 0x4a, 0x93, 0x27, 0x53, 0xb8, 0xbc, 0xe8, 0x13, 0x37, 0x07, 0x0a, 0x8b, + 0x85, 0x99, 0x77, 0x91, 0xee, 0xa9, 0x07, 0x35, 0x1a, 0x0e, 0x9f, 0x82, 0x14, 0x29, 0xdc, 0xe3, + 0x8f, 0x28, 0xc4, 0xe4, 0x64, 0x4f, 0x3d, 0x58, 0x55, 0x9d, 0xeb, 0xf1, 0x74, 0x4c, 0x8a, 0x57, + 0x7e, 0x9c, 0x78, 0x2a, 0x21, 0xa9, 0xa0, 0xc7, 0x00, 0x11, 0x0a, 0x75, 0x0f, 0x2b, 0x64, 0xea, + 0x52, 0xf1, 0x0a, 0xbe, 0xc5, 0x9e, 0x7a, 0x50, 0xdd, 0xc3, 0x1b, 0xfd, 0x1e, 0x6d, 0x80, 0x83, + 0xd6, 0x41, 0x12, 0xc8, 0x62, 0x64, 0xb9, 0xf8, 0x4f, 0x0f, 0x3f, 0xda, 0xca, 0x11, 0xd8, 0x02, + 0xf0, 0x11, 0xb2, 0x00, 0x14, 0x18, 0x3f, 0xef, 0xf8, 0x49, 0xa8, 0x2b, 0xb1, 0x70, 0x57, 0x2a, + 0x2f, 0x42, 0x71, 0x60, 0x04, 0x50, 0x05, 0xf2, 0x3c, 0x63, 0x45, 0xb7, 0xf6, 0x59, 0x84, 0x93, + 0x91, 0xb3, 0x2c, 0x33, 0x45, 0x8f, 0x3a, 0x2c, 0xa7, 0x7f, 0xfe, 0xe3, 0x0b, 0x11, 0xba, 0xed, + 0xf3, 0x18, 0xe4, 0x43, 0x63, 0x20, 0xb2, 0xc8, 0x11, 0x3f, 0x8b, 0xec, 0x23, 0xbf, 0x06, 0x39, + 0x62, 0x80, 0x70, 0x87, 0xe3, 0x3e, 0x0c, 0x45, 0x66, 0x20, 0x07, 0x65, 0xcd, 0x1c, 0x9e, 0x75, + 0x21, 0xf0, 0x8a, 0xf0, 0x80, 0xc2, 0x62, 0xcf, 0x0a, 0xac, 0x55, 0xd5, 0xa9, 0x6c, 0x02, 0xf8, + 0x83, 0x8a, 0xaa, 0x70, 0x3f, 0x31, 0x1e, 0xc1, 0xa3, 0xa8, 0xfc, 0xb9, 0xad, 0x90, 0xc7, 0x58, + 0x26, 0x48, 0xfe, 0x71, 0x53, 0xf6, 0xe8, 0xd6, 0x35, 0x8a, 0x51, 0x7b, 0xf9, 0x93, 0x9f, 0x3d, + 0x1b, 0x79, 0x67, 0x6c, 0xc1, 0xbf, 0x7f, 0x15, 0xce, 0x04, 0x0a, 0x89, 0x02, 0x86, 0x12, 0x51, + 0xc5, 0x80, 0xbe, 0x92, 0xc2, 0x49, 0x09, 0xa5, 0x23, 0xf3, 0xbf, 0xe5, 0xa3, 0xcd, 0xce, 0xe4, + 0x6c, 0xd3, 0xe4, 0x7c, 0xd7, 0xe8, 0xa4, 0xfc, 0x3f, 0xca, 0x40, 0x4a, 0xc6, 0xef, 0xef, 0x63, + 0xc7, 0x45, 0x17, 0x21, 0x8e, 0xb5, 0x7d, 0x73, 0x54, 0x0e, 0x94, 0x74, 0x70, 0x89, 0xe3, 0x35, + 0xb4, 0x7d, 0xf3, 0xda, 0x8c, 0x4c, 0x71, 0xd1, 0x25, 0x48, 0xec, 0x76, 0xfb, 0x3c, 0x7d, 0x35, + 0x60, 0xb3, 0x82, 0x44, 0x57, 0x09, 0xd2, 0xb5, 0x19, 0x99, 0x61, 0x93, 0xaa, 0xe8, 0x6b, 0xdb, + 0xb1, 0xa3, 0xab, 0x6a, 0x1a, 0xbb, 0xb4, 0x2a, 0x82, 0x8b, 0x6a, 0x00, 0xba, 0xa1, 0xbb, 0x0a, + 0x4d, 0xed, 0x70, 0xab, 0xf1, 0xc0, 0x78, 0x4a, 0xdd, 0xa5, 0xc9, 0xa0, 0x6b, 0x33, 0x72, 0x46, + 0x17, 0x1f, 0xa4, 0xb9, 0xef, 0xef, 0x63, 0xfb, 0x90, 0x7b, 0x6b, 0x63, 0x9b, 0xfb, 0x32, 0x41, + 0x22, 0xcd, 0xa5, 0xd8, 0xc4, 0xc8, 0xb2, 0x87, 0xfb, 0xdc, 0x03, 0xfe, 0x1c, 0xed, 0xc2, 0x38, + 0x4a, 0xfa, 0x7a, 0x5f, 0xfb, 0xe0, 0xda, 0x8c, 0x9c, 0xd2, 0xd8, 0x4f, 0xf4, 0x9c, 0xe7, 0x82, + 0x65, 0x87, 0xbd, 0x9e, 0x10, 0x2d, 0x4b, 0xfb, 0xcc, 0x08, 0x57, 0x0c, 0x6d, 0x40, 0xa1, 0xab, + 0x3b, 0xae, 0xe2, 0x18, 0xaa, 0xe5, 0xec, 0x9b, 0xae, 0x43, 0xf3, 0x27, 0xd9, 0x8b, 0x0f, 0x8d, + 0xe3, 0xb0, 0xa6, 0x3b, 0x6e, 0x4b, 0x20, 0x5f, 0x9b, 0x91, 0xf3, 0xdd, 0x20, 0x80, 0xf0, 0x33, + 0x77, 0x77, 0xb1, 0xed, 0x31, 0xa4, 0x79, 0x96, 0x23, 0xf8, 0x6d, 0x12, 0x6c, 0x41, 0x4f, 0xf8, + 0x99, 0x41, 0x00, 0xfa, 0x3a, 0x98, 0xeb, 0x9a, 0x6a, 0xc7, 0x63, 0xa7, 0x68, 0xfb, 0x7d, 0xe3, + 0x26, 0x4d, 0xca, 0x64, 0x2f, 0x3e, 0x3a, 0xb6, 0x91, 0xa6, 0xda, 0x11, 0x2c, 0xea, 0x84, 0xe0, + 0xda, 0x8c, 0x3c, 0xdb, 0x1d, 0x04, 0xa2, 0xf7, 0xc1, 0xbc, 0x6a, 0x59, 0xdd, 0xc3, 0x41, 0xee, + 0x45, 0xca, 0xfd, 0xfc, 0x38, 0xee, 0x55, 0x42, 0x33, 0xc8, 0x1e, 0xa9, 0x43, 0x50, 0xd4, 0x06, + 0xc9, 0xb2, 0x31, 0xbd, 0xcd, 0x65, 0x71, 0x2f, 0x83, 0xbe, 0x75, 0x95, 0xbd, 0xf8, 0xc8, 0x38, + 0xde, 0x5b, 0x0c, 0x5f, 0x38, 0x25, 0xd7, 0x66, 0xe4, 0xa2, 0x15, 0x06, 0x31, 0xae, 0xa6, 0x86, + 0xe9, 0x53, 0x7c, 0x9c, 0xeb, 0xec, 0x24, 0xae, 0x14, 0x3f, 0xcc, 0x35, 0x04, 0x42, 0x0d, 0xc8, + 0xb2, 0x50, 0x54, 0x21, 0xc6, 0x90, 0xbe, 0x90, 0x95, 0xbd, 0x58, 0x19, 0x3b, 0x43, 0x29, 0xea, + 0x0d, 0xd3, 0xc5, 0xd7, 0x66, 0x64, 0xc0, 0xde, 0x17, 0x52, 0xe1, 0x04, 0x7d, 0x2c, 0xec, 0x50, + 0x09, 0x1b, 0xde, 0xd2, 0x1c, 0x65, 0xf8, 0xd8, 0x38, 0x86, 0x37, 0x28, 0xd1, 0x8d, 0xa0, 0x1d, + 0xbe, 0x36, 0x23, 0xcf, 0xdd, 0x1a, 0x06, 0x13, 0x15, 0xdb, 0xd5, 0x0d, 0xb5, 0xab, 0xbf, 0x81, + 0xd9, 0x12, 0x4a, 0x9f, 0xc9, 0x3c, 0x42, 0xc5, 0xae, 0x72, 0x6c, 0xba, 0xb0, 0x12, 0x15, 0xdb, + 0x0d, 0x02, 0x6a, 0x29, 0x7e, 0x0e, 0xd5, 0x7b, 0xf6, 0x2d, 0x25, 0xa5, 0xd9, 0x53, 0x6f, 0xd7, + 0xe3, 0x69, 0x90, 0xb2, 0x95, 0x47, 0x20, 0x1b, 0x30, 0x4c, 0xa8, 0x04, 0x29, 0x7e, 0x52, 0x47, + 0x9c, 0x68, 0xe5, 0x9f, 0x95, 0x02, 0xe4, 0x82, 0xc6, 0xa8, 0xf2, 0xe1, 0x88, 0x47, 0x49, 0xdf, + 0xbb, 0x28, 0x85, 0x33, 0xd2, 0x19, 0xdf, 0x53, 0x79, 0x50, 0x2c, 0x6d, 0xa2, 0x9c, 0x6d, 0xbf, + 0xe6, 0x28, 0x90, 0xaf, 0xac, 0x68, 0x01, 0xb2, 0xd6, 0x45, 0xcb, 0x43, 0x89, 0x51, 0x14, 0xb0, + 0x2e, 0x5a, 0x02, 0xe1, 0x01, 0xc8, 0x91, 0x7e, 0x2b, 0x41, 0x7f, 0x29, 0x23, 0x67, 0x09, 0x8c, + 0xa3, 0x54, 0xfe, 0x65, 0x14, 0xa4, 0x41, 0x03, 0xe6, 0xa5, 0xaa, 0x23, 0xc7, 0x4e, 0x55, 0x9f, + 0x1e, 0x4c, 0x92, 0xfb, 0x79, 0xf1, 0x35, 0x90, 0xfc, 0xf4, 0x2e, 0x5b, 0x6a, 0xc6, 0xfb, 0x7f, + 0x03, 0x8e, 0xaa, 0x5c, 0xd4, 0x06, 0x3c, 0xd7, 0xab, 0xa1, 0xcd, 0x4a, 0xf1, 0xe7, 0x28, 0x06, + 0x07, 0xdc, 0x73, 0x62, 0xb6, 0xad, 0x8e, 0xea, 0x62, 0x91, 0x1f, 0x0b, 0xec, 0x5b, 0x3e, 0x0c, + 0x45, 0xd5, 0xb2, 0x14, 0xc7, 0x55, 0x5d, 0xcc, 0x7d, 0x0d, 0x96, 0x79, 0xc8, 0xab, 0x96, 0xd5, + 0x22, 0x50, 0xe6, 0x6b, 0x3c, 0x04, 0x05, 0x62, 0xd3, 0x75, 0xb5, 0x2b, 0x5c, 0x85, 0x24, 0x73, + 0x49, 0x38, 0x94, 0x79, 0x07, 0x95, 0x8e, 0x37, 0xe2, 0xd4, 0x9e, 0x7b, 0x31, 0x55, 0x24, 0x10, + 0x53, 0x21, 0xfe, 0x0e, 0x09, 0x93, 0x8f, 0x78, 0xbb, 0x65, 0xf4, 0xa6, 0xc1, 0x3c, 0x8d, 0xbf, + 0x6e, 0xb1, 0x64, 0x49, 0x5a, 0x66, 0x1f, 0x15, 0x19, 0x0a, 0x61, 0xdb, 0x8f, 0x0a, 0x10, 0x75, + 0x0f, 0x78, 0x2d, 0x51, 0xf7, 0x80, 0x78, 0xba, 0xde, 0xeb, 0xbd, 0x85, 0x11, 0xab, 0x1d, 0xa7, + 0xf3, 0x73, 0x1d, 0x95, 0x22, 0xe4, 0x43, 0x6b, 0x42, 0xe5, 0x24, 0xcc, 0x8f, 0x32, 0xf1, 0x95, + 0x7d, 0x0f, 0x1e, 0x32, 0xd5, 0xe8, 0x12, 0xa4, 0x3d, 0x1b, 0x3f, 0x22, 0x3a, 0xa6, 0xd5, 0x0a, + 0x64, 0xd9, 0x43, 0x0d, 0xa5, 0xf3, 0xa3, 0xa1, 0x74, 0x7e, 0xe5, 0x1b, 0xa1, 0x34, 0xce, 0x7e, + 0x0f, 0x24, 0xf9, 0xe2, 0x9e, 0xc0, 0x4e, 0x42, 0x92, 0x3f, 0x93, 0x19, 0xa5, 0x1b, 0x58, 0xfc, + 0x8b, 0x08, 0x92, 0xd9, 0xf2, 0x18, 0xdb, 0xd7, 0xa2, 0x1f, 0x15, 0x05, 0x4e, 0x8f, 0xb5, 0xe1, + 0xe3, 0xb7, 0xc2, 0x18, 0x23, 0xbe, 0x15, 0xa6, 0x89, 0xe6, 0x38, 0xb4, 0xaf, 0xe2, 0x20, 0x0b, + 0xfb, 0xaa, 0x7c, 0x24, 0x06, 0x27, 0x47, 0x5b, 0x72, 0xb4, 0x08, 0x39, 0xe2, 0xb7, 0xba, 0x61, + 0x17, 0x17, 0x7a, 0xea, 0x41, 0x9b, 0xfb, 0xb7, 0x7c, 0x2b, 0x21, 0xea, 0x6d, 0x25, 0xa0, 0x6d, + 0x98, 0xed, 0x9a, 0x9a, 0xda, 0x55, 0x02, 0x5b, 0x39, 0x7c, 0x12, 0x3d, 0x38, 0x24, 0xec, 0x70, + 0xca, 0x90, 0x18, 0x1c, 0xae, 0xff, 0x45, 0xca, 0x63, 0xcd, 0xdb, 0xf5, 0x41, 0x2b, 0x90, 0xed, + 0xe9, 0xce, 0x0e, 0xde, 0x57, 0x6f, 0xe9, 0xa6, 0xcd, 0x67, 0xd3, 0xb0, 0xd2, 0xac, 0xfb, 0x38, + 0x62, 0x87, 0x29, 0x40, 0x16, 0x18, 0x92, 0xc4, 0xc8, 0x8d, 0xaf, 0xe4, 0xb1, 0xad, 0xc9, 0xb8, + 0x3d, 0xa4, 0xd4, 0xd8, 0x3d, 0xa4, 0x51, 0x1b, 0x36, 0xe9, 0xd1, 0x1b, 0x36, 0x1f, 0x0a, 0x0e, + 0x4d, 0x78, 0xed, 0x1b, 0xda, 0xc3, 0x41, 0x2d, 0x98, 0xe7, 0xf4, 0x9d, 0x90, 0xec, 0x47, 0x1c, + 0x75, 0x60, 0xf3, 0x6b, 0x50, 0xe6, 0x48, 0x90, 0x8f, 0x17, 0x7b, 0xec, 0xde, 0xc4, 0x2e, 0x36, + 0x51, 0xe3, 0x81, 0x4d, 0xd4, 0xff, 0xcb, 0x86, 0xe2, 0x83, 0x31, 0x98, 0x1d, 0x72, 0x24, 0x46, + 0xee, 0x0e, 0x8f, 0xcb, 0xc8, 0x8a, 0x8e, 0xc5, 0x8e, 0xdd, 0x31, 0x3e, 0xd6, 0xf1, 0xc9, 0x63, + 0x9d, 0x78, 0x1b, 0xc7, 0x3a, 0x79, 0x6f, 0x63, 0xfd, 0x8e, 0x8e, 0xc2, 0xc7, 0x22, 0x50, 0x1e, + 0xef, 0x7d, 0x8d, 0x1c, 0x8e, 0x63, 0x6d, 0x20, 0x8c, 0x5b, 0xe3, 0x1e, 0x82, 0xc2, 0x80, 0x6f, + 0xc8, 0x54, 0x39, 0x1f, 0x8a, 0xc2, 0x2b, 0xdf, 0x1c, 0xf3, 0x16, 0x9e, 0x90, 0x03, 0x37, 0x62, + 0xb6, 0xbe, 0x0c, 0x73, 0x1d, 0xac, 0xe9, 0x9d, 0x7b, 0x9d, 0xac, 0xb3, 0x9c, 0xfa, 0xff, 0xcd, + 0xd5, 0x61, 0x2d, 0xf9, 0x1e, 0x80, 0xb4, 0x8c, 0x1d, 0x8b, 0xf8, 0x63, 0xa8, 0x06, 0x19, 0x7c, + 0xa0, 0x61, 0xcb, 0xf5, 0x0f, 0x55, 0x8c, 0x0a, 0x11, 0x18, 0x76, 0x43, 0x60, 0x92, 0x00, 0xd9, + 0x23, 0x43, 0x4f, 0xf3, 0x1c, 0xc0, 0xf8, 0x70, 0x9e, 0x93, 0x07, 0x93, 0x00, 0x97, 0x45, 0x12, + 0x20, 0x36, 0x36, 0xbe, 0x65, 0x54, 0x03, 0x59, 0x80, 0xa7, 0x79, 0x16, 0x20, 0x3e, 0xa1, 0xb2, + 0x50, 0x1a, 0xa0, 0x1e, 0x4a, 0x03, 0x24, 0x27, 0x74, 0x73, 0x4c, 0x1e, 0xe0, 0xb2, 0xc8, 0x03, + 0xa4, 0x26, 0xb4, 0x78, 0x20, 0x11, 0xf0, 0x42, 0x20, 0x11, 0x90, 0x19, 0xce, 0xb6, 0x86, 0x48, + 0x47, 0x64, 0x02, 0x9e, 0xf7, 0x32, 0x01, 0xb9, 0xb1, 0x59, 0x04, 0x4e, 0x3c, 0x98, 0x0a, 0xd8, + 0x1c, 0x4a, 0x05, 0xe4, 0xf9, 0x1f, 0x5d, 0x1a, 0xc7, 0x62, 0x42, 0x2e, 0x60, 0x73, 0x28, 0x17, + 0x50, 0x98, 0xc0, 0x70, 0x42, 0x32, 0xe0, 0xeb, 0x47, 0x27, 0x03, 0xc6, 0x87, 0xeb, 0xbc, 0x99, + 0xd3, 0x65, 0x03, 0x94, 0x31, 0xd9, 0x00, 0x69, 0x6c, 0xe4, 0xca, 0xd8, 0x4f, 0x9d, 0x0e, 0xd8, + 0x1e, 0x91, 0x0e, 0x60, 0x81, 0xfb, 0xb9, 0xb1, 0xcc, 0xa7, 0xc8, 0x07, 0x6c, 0x8f, 0xc8, 0x07, + 0xa0, 0x89, 0x6c, 0x27, 0x26, 0x04, 0xae, 0x86, 0x13, 0x02, 0x73, 0x63, 0xbc, 0x4e, 0x7f, 0xb6, + 0x8f, 0xc9, 0x08, 0xec, 0x8c, 0xcb, 0x08, 0xb0, 0xa8, 0xfd, 0xf1, 0xb1, 0x1c, 0x8f, 0x91, 0x12, + 0xd8, 0x1c, 0x4a, 0x09, 0x9c, 0x98, 0xa0, 0x69, 0xd3, 0xe7, 0x04, 0xd8, 0x23, 0xf0, 0xec, 0xf9, + 0x77, 0x90, 0xb2, 0xd7, 0xe3, 0xe9, 0xac, 0x94, 0xab, 0x3c, 0x4a, 0x3c, 0x98, 0x01, 0x3b, 0x47, + 0x62, 0x05, 0x6c, 0xdb, 0xa6, 0x2d, 0xee, 0x58, 0xd0, 0x8f, 0xca, 0x39, 0x12, 0x23, 0xfa, 0x36, + 0xed, 0x88, 0xfc, 0x01, 0x8d, 0xc9, 0x02, 0x76, 0xac, 0xf2, 0xf3, 0x11, 0x9f, 0x96, 0x66, 0x10, + 0x82, 0xf1, 0x65, 0x86, 0xc7, 0x97, 0x81, 0xac, 0x42, 0x34, 0x9c, 0x55, 0x58, 0x80, 0x2c, 0x89, + 0xb5, 0x06, 0x12, 0x06, 0xaa, 0xe5, 0x25, 0x0c, 0xc4, 0x01, 0x2a, 0x96, 0x7b, 0xe0, 0xcb, 0x12, + 0xdb, 0x4d, 0x2c, 0x7a, 0x87, 0xc9, 0x58, 0xa8, 0x8b, 0x9e, 0x80, 0xb9, 0x00, 0xae, 0x17, 0xc3, + 0xb1, 0xe8, 0x59, 0xf2, 0xb0, 0xab, 0x3c, 0x98, 0xfb, 0xa7, 0x11, 0x5f, 0x42, 0x7e, 0xa6, 0x61, + 0x54, 0x52, 0x20, 0xf2, 0x36, 0x25, 0x05, 0xa2, 0xf7, 0x9c, 0x14, 0x08, 0xc6, 0xa4, 0xb1, 0x70, + 0x4c, 0xfa, 0xdf, 0x23, 0xfe, 0x98, 0x78, 0x21, 0xbe, 0x66, 0x76, 0x30, 0x8f, 0x12, 0xe9, 0x6f, + 0xe2, 0x92, 0x74, 0xcd, 0x3d, 0x1e, 0x0b, 0x92, 0x9f, 0x04, 0xcb, 0x5b, 0x78, 0x32, 0x7c, 0x5d, + 0xf1, 0x02, 0xcc, 0x44, 0xf0, 0x1e, 0x07, 0xbf, 0xdc, 0x90, 0xf4, 0x2f, 0x37, 0x78, 0x17, 0xa3, + 0x53, 0x81, 0x8b, 0xd1, 0xe8, 0x39, 0xc8, 0xd0, 0x64, 0xbf, 0x62, 0x5a, 0xe2, 0x2f, 0x96, 0x9d, + 0x19, 0x7f, 0xb1, 0xc1, 0xa1, 0x47, 0xae, 0xd9, 0x65, 0x08, 0xdf, 0xe3, 0xc8, 0x84, 0x3c, 0x8e, + 0xfb, 0x20, 0x43, 0x5a, 0xcf, 0xfe, 0xf2, 0x06, 0xf0, 0x5b, 0xf5, 0x02, 0x50, 0xf9, 0x89, 0x28, + 0x14, 0x07, 0x16, 0x9a, 0x91, 0x7d, 0x1f, 0xb5, 0x8d, 0x3c, 0x9d, 0x3c, 0xce, 0x02, 0xec, 0xa9, + 0x8e, 0x72, 0x5b, 0x35, 0x5c, 0xdc, 0xe1, 0x42, 0x09, 0x40, 0x50, 0x19, 0xd2, 0xe4, 0xab, 0xef, + 0xe0, 0x0e, 0xcf, 0xbe, 0x78, 0xdf, 0xe8, 0x1a, 0x24, 0xf1, 0x2d, 0xfa, 0xf2, 0x2c, 0x7b, 0xbf, + 0xf9, 0xe4, 0x70, 0x38, 0x4c, 0x8a, 0x6b, 0x25, 0x32, 0xd8, 0x5f, 0x78, 0x73, 0x41, 0x62, 0xd8, + 0x8f, 0x7b, 0x97, 0xd9, 0x64, 0x4e, 0x1f, 0x96, 0x42, 0x7a, 0x40, 0x0a, 0x34, 0x0f, 0x98, 0x13, + 0xe1, 0x3d, 0x91, 0x29, 0x3b, 0xe3, 0x2d, 0xe7, 0x7b, 0xb8, 0x67, 0x99, 0x66, 0x57, 0x61, 0x73, + 0xbc, 0x0a, 0x85, 0xf0, 0xba, 0xca, 0xfe, 0x2a, 0x96, 0xab, 0xea, 0x86, 0x12, 0x72, 0x82, 0x73, + 0x0c, 0xc8, 0xe6, 0xd4, 0xf5, 0x78, 0x3a, 0x22, 0x45, 0xaf, 0xc7, 0xd3, 0x51, 0x29, 0x56, 0xd9, + 0x82, 0x13, 0x23, 0xd7, 0x55, 0xf4, 0x2c, 0x64, 0xfc, 0x25, 0x99, 0x1d, 0xd3, 0x3f, 0x22, 0xd3, + 0xe2, 0xe3, 0x56, 0x7e, 0x29, 0xe2, 0xb3, 0x0c, 0xe7, 0x6e, 0x1a, 0x90, 0x64, 0x67, 0x26, 0xf9, + 0xf9, 0x98, 0x27, 0xa6, 0x5b, 0x91, 0x97, 0xd8, 0x81, 0x4a, 0x99, 0x13, 0x57, 0xde, 0x07, 0x49, + 0x06, 0x41, 0x59, 0x48, 0xf9, 0x6f, 0x5c, 0x03, 0x24, 0xab, 0xf5, 0x7a, 0x63, 0x4b, 0x3c, 0x58, + 0x5b, 0xdb, 0x94, 0xdb, 0x52, 0x94, 0x80, 0xe5, 0xc6, 0xf5, 0x46, 0xbd, 0x2d, 0xc5, 0xd0, 0x2c, + 0xe4, 0xd9, 0x6f, 0xe5, 0xea, 0xa6, 0xbc, 0x5e, 0x6d, 0x4b, 0xf1, 0x00, 0xa8, 0xd5, 0xd8, 0x58, + 0x69, 0xc8, 0x52, 0xa2, 0xf2, 0x14, 0x9c, 0x1e, 0xbb, 0x86, 0xfb, 0x89, 0x99, 0x48, 0x20, 0x31, + 0x53, 0xf9, 0x48, 0x94, 0x04, 0x35, 0xe3, 0x16, 0x66, 0x74, 0x7d, 0xa0, 0xe3, 0x17, 0x8f, 0xb1, + 0xaa, 0x0f, 0xf4, 0x9e, 0xc4, 0x31, 0x36, 0xde, 0xc5, 0xae, 0xb6, 0xcf, 0x1c, 0x05, 0x66, 0x81, + 0xf2, 0x72, 0x9e, 0x43, 0x29, 0x91, 0xc3, 0xd0, 0x5e, 0xc7, 0x9a, 0xab, 0x30, 0x25, 0x72, 0xf8, + 0x1f, 0xf1, 0xcd, 0x33, 0x68, 0x8b, 0x01, 0x2b, 0xdf, 0x78, 0x2c, 0x59, 0x66, 0x20, 0x21, 0x37, + 0xda, 0xf2, 0xab, 0x52, 0x0c, 0x21, 0x28, 0xd0, 0x9f, 0x4a, 0x6b, 0xa3, 0xba, 0xd5, 0xba, 0xb6, + 0x49, 0x64, 0x39, 0x07, 0x45, 0x21, 0x4b, 0x01, 0x4c, 0x54, 0x1e, 0x83, 0x53, 0x63, 0xbc, 0x8a, + 0x11, 0x87, 0x58, 0x3f, 0x11, 0x09, 0x62, 0x87, 0x3d, 0x83, 0x4d, 0x48, 0x3a, 0xae, 0xea, 0xf6, + 0x1d, 0x2e, 0xc4, 0x67, 0xa7, 0x75, 0x33, 0x96, 0xc4, 0x8f, 0x16, 0x25, 0x97, 0x39, 0x9b, 0xca, + 0x25, 0x28, 0x84, 0x4b, 0xc6, 0xcb, 0xc0, 0x57, 0xa2, 0x68, 0xe5, 0x0a, 0xa0, 0x61, 0xef, 0x63, + 0x44, 0x78, 0x19, 0x19, 0x15, 0x5e, 0xfe, 0x48, 0x04, 0xce, 0x1c, 0xe1, 0x69, 0xa0, 0x97, 0x07, + 0x3a, 0xf9, 0xfc, 0x71, 0xfc, 0x94, 0x25, 0x06, 0x1b, 0xe8, 0xe6, 0xd3, 0x90, 0x0b, 0xc2, 0xa7, + 0xeb, 0xe4, 0x17, 0xa2, 0xfe, 0x24, 0x0e, 0xc7, 0xc1, 0xbe, 0x09, 0x8c, 0x7c, 0x85, 0x26, 0xf0, + 0xdd, 0x00, 0xee, 0x81, 0x38, 0x45, 0xcd, 0xd7, 0xd1, 0xfb, 0x47, 0xe4, 0x17, 0xb1, 0xd6, 0x3e, + 0xe0, 0x93, 0x20, 0xe3, 0xf2, 0x5f, 0x0e, 0x6a, 0x05, 0x93, 0x02, 0x7d, 0xba, 0xc6, 0x3a, 0xde, + 0x9f, 0xf0, 0x9d, 0x6e, 0x31, 0xf6, 0x93, 0x07, 0x0c, 0xec, 0xa0, 0x57, 0xe1, 0xd4, 0x80, 0xa3, + 0xe0, 0xb1, 0x8e, 0x4f, 0xeb, 0x2f, 0x9c, 0x08, 0xfb, 0x0b, 0x82, 0x75, 0x70, 0xb5, 0x4f, 0x84, + 0x57, 0xfb, 0x57, 0x01, 0xfc, 0xe4, 0x80, 0x7f, 0xec, 0x2f, 0x12, 0x3c, 0xf6, 0x77, 0x09, 0x12, + 0x44, 0x93, 0x84, 0x9c, 0x86, 0x4d, 0x31, 0xd1, 0x84, 0x40, 0x72, 0x81, 0x61, 0x57, 0x74, 0x40, + 0xc3, 0x09, 0xda, 0x31, 0x55, 0xbc, 0x10, 0xae, 0xe2, 0x81, 0xb1, 0xa9, 0xde, 0xd1, 0x55, 0xbd, + 0x01, 0x09, 0x3a, 0xf2, 0x23, 0xef, 0x52, 0x7e, 0x03, 0x80, 0xea, 0xba, 0xb6, 0xbe, 0xd3, 0xf7, + 0x2b, 0x58, 0x18, 0xad, 0x39, 0x55, 0x81, 0x57, 0xbb, 0x8f, 0xab, 0xd0, 0xbc, 0x4f, 0x1a, 0x50, + 0xa3, 0x00, 0xc3, 0xca, 0x06, 0x14, 0xc2, 0xb4, 0xa3, 0xef, 0x86, 0xfa, 0x0f, 0xbf, 0x64, 0x84, + 0x7f, 0xe3, 0x79, 0x47, 0xfc, 0x31, 0x26, 0xfa, 0x51, 0xf9, 0x40, 0x14, 0x72, 0x41, 0xc5, 0xfb, + 0x8b, 0xe7, 0x82, 0x54, 0xbe, 0x25, 0x02, 0x69, 0xaf, 0xfb, 0x47, 0x1c, 0x76, 0xf6, 0xef, 0x08, + 0x7b, 0x9b, 0x17, 0x6c, 0x9b, 0x28, 0xe6, 0x6d, 0x13, 0x5d, 0xf1, 0x96, 0xbf, 0x71, 0x09, 0x91, + 0xa0, 0xac, 0xc5, 0x81, 0x43, 0xbe, 0xda, 0x5f, 0x99, 0xee, 0x2a, 0xde, 0x3c, 0x24, 0x82, 0xd7, + 0xe8, 0xd8, 0x47, 0xa5, 0x13, 0x38, 0x61, 0xc4, 0x26, 0x62, 0xf0, 0xce, 0x5e, 0xe4, 0xd8, 0x77, + 0xf6, 0xbc, 0x5a, 0xa2, 0xc1, 0x5a, 0xbe, 0x3b, 0x02, 0x69, 0x31, 0x27, 0xd0, 0x7b, 0x82, 0x27, + 0xcf, 0xc4, 0xd6, 0xe6, 0x58, 0x7b, 0xc4, 0xf9, 0x07, 0x0e, 0x9e, 0x0d, 0x1d, 0xb8, 0x8e, 0x1d, + 0xf7, 0xc0, 0x35, 0xf7, 0xec, 0xfe, 0x24, 0x02, 0xd2, 0xe0, 0x8c, 0xfd, 0x8a, 0x5b, 0x37, 0xbc, + 0xcc, 0xc5, 0x46, 0x2c, 0x73, 0xe3, 0x4e, 0x51, 0xc7, 0xc7, 0x9d, 0xa2, 0x1e, 0xee, 0x75, 0xe2, + 0x1e, 0x7b, 0xfd, 0xc1, 0x28, 0x64, 0x03, 0xe9, 0x51, 0xf4, 0x4c, 0xe8, 0x44, 0xf6, 0xe2, 0x51, + 0xa9, 0xd4, 0xc0, 0x91, 0xec, 0x90, 0x98, 0xa2, 0xc7, 0x17, 0xd3, 0xdb, 0x7f, 0x3b, 0x6b, 0xf4, + 0x05, 0xd6, 0xc4, 0x98, 0x0b, 0xac, 0x7f, 0x39, 0x02, 0x69, 0xcf, 0xed, 0x3e, 0xee, 0x26, 0xe6, + 0x49, 0x48, 0x72, 0xcf, 0x92, 0xed, 0x62, 0xf2, 0xaf, 0x91, 0x69, 0xe5, 0x32, 0xa4, 0xc5, 0xdf, + 0x53, 0xe4, 0xab, 0x9a, 0xf7, 0x7d, 0xfe, 0x79, 0xc8, 0x06, 0x36, 0x80, 0x89, 0x69, 0xdc, 0x68, + 0xbc, 0x57, 0x9a, 0x29, 0xa7, 0xee, 0xdc, 0x5d, 0x8c, 0x6d, 0xe0, 0xdb, 0x64, 0x36, 0xcb, 0x8d, + 0xfa, 0xb5, 0x46, 0xfd, 0x25, 0x29, 0x52, 0xce, 0xde, 0xb9, 0xbb, 0x98, 0x92, 0x31, 0xcd, 0x28, + 0x9e, 0x7f, 0x09, 0x8a, 0x03, 0x03, 0x13, 0x76, 0x5b, 0x10, 0x14, 0x56, 0xb6, 0xb7, 0xd6, 0x9a, + 0xf5, 0x6a, 0xbb, 0xa1, 0xb0, 0x73, 0xbb, 0xe8, 0x14, 0xcc, 0xad, 0x35, 0x57, 0xaf, 0xb5, 0x95, + 0xfa, 0x5a, 0xb3, 0xb1, 0xd1, 0x56, 0xaa, 0xed, 0x76, 0xb5, 0xfe, 0x92, 0x14, 0xbd, 0x78, 0x37, + 0x0b, 0xf1, 0x6a, 0xad, 0xde, 0x44, 0x75, 0x88, 0xd3, 0x54, 0xc8, 0x91, 0x27, 0xc0, 0xca, 0x47, + 0xe7, 0x86, 0xd1, 0x55, 0x48, 0xd0, 0x2c, 0x09, 0x3a, 0xfa, 0x48, 0x58, 0x79, 0x42, 0xb2, 0x98, + 0x34, 0x86, 0xce, 0xc8, 0x23, 0xcf, 0x88, 0x95, 0x8f, 0xce, 0x1d, 0xa3, 0x35, 0x48, 0x89, 0x20, + 0x79, 0xd2, 0xc1, 0xad, 0xf2, 0xc4, 0x84, 0x2e, 0xe9, 0x1a, 0x4b, 0x36, 0x1c, 0x7d, 0x7c, 0xac, + 0x3c, 0x21, 0xab, 0x8c, 0x9a, 0xde, 0x7d, 0xa6, 0x09, 0x27, 0xc2, 0xca, 0x93, 0xf2, 0xc4, 0x48, + 0x86, 0x8c, 0x9f, 0xc6, 0x99, 0x7c, 0x28, 0xae, 0x3c, 0x45, 0xc2, 0x1c, 0xbd, 0x0f, 0xf2, 0xe1, + 0x50, 0x77, 0xba, 0x53, 0x67, 0xe5, 0x29, 0x33, 0xd2, 0x84, 0x7f, 0x38, 0xee, 0x9d, 0xee, 0x14, + 0x5a, 0x79, 0xca, 0x04, 0x35, 0x7a, 0x1d, 0x66, 0x87, 0xe3, 0xd2, 0xe9, 0x0f, 0xa5, 0x95, 0x8f, + 0x91, 0xb2, 0x46, 0x3d, 0x40, 0x23, 0xe2, 0xd9, 0x63, 0x9c, 0x51, 0x2b, 0x1f, 0x27, 0x83, 0x8d, + 0x3a, 0x50, 0x1c, 0x0c, 0x12, 0xa7, 0x3d, 0xb3, 0x56, 0x9e, 0x3a, 0x9b, 0xcd, 0x6a, 0x09, 0x07, + 0x97, 0xd3, 0x9e, 0x61, 0x2b, 0x4f, 0x9d, 0xdc, 0x46, 0xdb, 0x00, 0x81, 0xf8, 0x70, 0x8a, 0x33, + 0x6d, 0xe5, 0x69, 0xd2, 0xdc, 0xc8, 0x82, 0xb9, 0x51, 0x81, 0xe3, 0x71, 0x8e, 0xb8, 0x95, 0x8f, + 0x95, 0xfd, 0x26, 0xfa, 0x1c, 0x0e, 0x01, 0xa7, 0x3b, 0xf2, 0x56, 0x9e, 0x32, 0x0d, 0x5e, 0xab, + 0x8e, 0x3d, 0xe7, 0xfc, 0xc8, 0x91, 0xe7, 0x9c, 0xfd, 0x93, 0xcb, 0xde, 0xd9, 0xe6, 0xdf, 0x58, + 0x86, 0x77, 0xf1, 0x17, 0x74, 0x1c, 0x57, 0xbd, 0xa9, 0x1b, 0x7b, 0xde, 0x33, 0x4b, 0xfc, 0x9b, + 0x1f, 0x72, 0x3e, 0xc9, 0x5f, 0xe9, 0x11, 0xd0, 0x09, 0x8f, 0x2d, 0x8d, 0x7d, 0x81, 0x72, 0xd2, + 0x7d, 0x88, 0xc9, 0xc7, 0x97, 0x8f, 0x78, 0xc8, 0x69, 0xc2, 0x73, 0x51, 0x23, 0x1e, 0x7a, 0x2a, + 0x1f, 0xf9, 0xc6, 0x40, 0xf9, 0xa8, 0x73, 0xdf, 0xc4, 0x8b, 0x2d, 0x5c, 0xd3, 0x1d, 0xd7, 0xb4, + 0x75, 0x4d, 0xed, 0xd2, 0xe5, 0xe5, 0xca, 0xb4, 0xb7, 0xb2, 0x6a, 0x19, 0xe2, 0xae, 0xf0, 0xb7, + 0xa0, 0xf8, 0x4d, 0xa1, 0x15, 0x48, 0xde, 0x52, 0xbb, 0xec, 0x4e, 0x54, 0xf0, 0x21, 0xb8, 0x41, + 0x99, 0x07, 0xfc, 0xa8, 0x20, 0x17, 0x46, 0x5b, 0xf9, 0x5e, 0x7a, 0x9f, 0xa4, 0xd7, 0xd3, 0x1d, + 0xa2, 0x8b, 0x32, 0x0d, 0xa5, 0xaf, 0x43, 0xdc, 0x56, 0x5d, 0x1e, 0x60, 0xd6, 0x2e, 0x1f, 0xfb, + 0x5d, 0x26, 0x56, 0x03, 0xe5, 0x81, 0x5e, 0x86, 0x74, 0x4f, 0x3d, 0x50, 0x28, 0xbf, 0xe8, 0x57, + 0xc4, 0x2f, 0xd5, 0x53, 0x0f, 0x48, 0xfb, 0xd0, 0xfb, 0xa0, 0x48, 0x58, 0x6a, 0xfb, 0xaa, 0xb1, + 0x87, 0x19, 0xe7, 0xd8, 0x57, 0xc4, 0x39, 0xdf, 0x53, 0x0f, 0xea, 0x94, 0x1b, 0xe1, 0xcf, 0x9f, + 0xbc, 0xfa, 0x95, 0x08, 0xcf, 0x1a, 0x50, 0xc1, 0x20, 0x15, 0x24, 0xcd, 0xfb, 0xa2, 0x95, 0x8a, + 0x2d, 0x8e, 0x47, 0xc6, 0xc9, 0x7d, 0x40, 0xac, 0xb5, 0x3c, 0x69, 0xde, 0xa7, 0xdf, 0x5c, 0x88, + 0xb0, 0x5a, 0x8b, 0xda, 0x90, 0xd8, 0xb3, 0x2c, 0x19, 0xa2, 0x50, 0x1f, 0x36, 0x3a, 0xd1, 0x87, + 0xcd, 0x0b, 0x1f, 0x96, 0x31, 0x04, 0x46, 0x4d, 0xca, 0x79, 0x1f, 0x3e, 0x19, 0x81, 0xec, 0x4a, + 0xe0, 0x59, 0xc7, 0x12, 0xa4, 0x7a, 0xa6, 0xa1, 0xdf, 0xc4, 0xb6, 0xb7, 0x47, 0xc5, 0x3e, 0x89, + 0x9f, 0xc9, 0xfe, 0x3a, 0xa0, 0x7b, 0x28, 0x5e, 0x17, 0x12, 0xdf, 0x84, 0xea, 0x36, 0xde, 0x71, + 0x74, 0x21, 0x67, 0x59, 0x7c, 0xa2, 0x47, 0x41, 0x72, 0xb0, 0xd6, 0xb7, 0x75, 0xf7, 0x50, 0xd1, + 0x4c, 0xc3, 0x55, 0x35, 0x97, 0xc7, 0xe1, 0x45, 0x01, 0xaf, 0x33, 0x30, 0x61, 0xd2, 0xc1, 0xae, + 0xaa, 0x77, 0xd9, 0xc9, 0xcc, 0x8c, 0x2c, 0x3e, 0x79, 0x53, 0x3f, 0x1a, 0x81, 0x7c, 0xdb, 0xbc, + 0x89, 0xe9, 0x05, 0x32, 0x3a, 0x39, 0xee, 0x07, 0x70, 0x09, 0x40, 0xf1, 0xe2, 0x8b, 0x84, 0x9c, + 0x71, 0x05, 0x0a, 0xc2, 0x80, 0x6c, 0x7c, 0x5b, 0xb5, 0x3b, 0x8e, 0xf8, 0xfb, 0xfc, 0x3a, 0x8f, + 0x1b, 0xef, 0x5d, 0x11, 0x66, 0x39, 0xc7, 0x75, 0x8f, 0x21, 0x6f, 0xdd, 0x8f, 0xa4, 0x83, 0x51, + 0x72, 0x1d, 0x24, 0xd3, 0xc2, 0x76, 0xe8, 0xb8, 0x0c, 0x9b, 0x2b, 0xa5, 0xcf, 0x7c, 0xea, 0x89, + 0x79, 0xce, 0x95, 0x1f, 0xb5, 0x60, 0x7f, 0x63, 0x41, 0x2e, 0x0a, 0x0a, 0x71, 0x8e, 0xe6, 0xd5, + 0xd0, 0x9e, 0x59, 0x7f, 0xc7, 0x7f, 0xe4, 0x66, 0x7e, 0x68, 0xc8, 0xab, 0xc6, 0x61, 0xad, 0xf4, + 0xeb, 0x3e, 0x6b, 0x3f, 0x8a, 0x7e, 0x09, 0x1f, 0x06, 0x37, 0xd0, 0x28, 0x1b, 0x12, 0x60, 0xbc, + 0xae, 0xea, 0x5d, 0xf1, 0x67, 0x5e, 0x65, 0xfe, 0x85, 0x96, 0xbd, 0xe4, 0x67, 0x9c, 0x46, 0x6b, + 0x95, 0x71, 0x9a, 0x5b, 0x33, 0x8d, 0x4e, 0x38, 0xcb, 0x89, 0xea, 0x90, 0xa4, 0xb2, 0xe7, 0xc3, + 0x77, 0xbc, 0x87, 0xdf, 0x38, 0x29, 0xfa, 0x7a, 0x90, 0x3a, 0xb8, 0x8b, 0xf7, 0xd8, 0x6d, 0xce, + 0x7d, 0xd5, 0xc6, 0xec, 0x2d, 0x81, 0x7b, 0x7a, 0xfc, 0xad, 0xe8, 0xb1, 0x6a, 0x51, 0x4e, 0x68, + 0x2b, 0xfc, 0xac, 0x69, 0x8a, 0x6f, 0x6d, 0x8f, 0xe9, 0x63, 0x60, 0x5e, 0x04, 0xed, 0x62, 0xe8, + 0x19, 0xd4, 0x47, 0x41, 0xea, 0x1b, 0x3b, 0xa6, 0x41, 0xff, 0x3a, 0x22, 0x8f, 0xf1, 0xd2, 0x6c, + 0x1f, 0xd5, 0x83, 0xf3, 0x7d, 0xd4, 0x2d, 0x28, 0xf8, 0xa8, 0x74, 0xfe, 0x66, 0x8e, 0x3b, 0x7f, + 0xf3, 0x1e, 0x03, 0x82, 0x82, 0xd6, 0x01, 0x7c, 0x0b, 0x41, 0x37, 0xf2, 0xb2, 0xe3, 0x47, 0xcc, + 0xb7, 0x35, 0xc1, 0xce, 0x04, 0x18, 0xa0, 0xaf, 0x83, 0xb9, 0x9e, 0x6e, 0x28, 0x0e, 0xee, 0xee, + 0x2a, 0x5c, 0x72, 0x84, 0x6f, 0xf6, 0xf8, 0xa3, 0x39, 0xdb, 0xd3, 0x8d, 0x16, 0xee, 0xee, 0xae, + 0x78, 0x5c, 0xd0, 0xbb, 0xe1, 0x8c, 0xdf, 0x7b, 0xd3, 0x50, 0xf6, 0xcd, 0x6e, 0x47, 0xb1, 0xf1, + 0xae, 0xa2, 0xd1, 0x57, 0x08, 0x73, 0x54, 0x66, 0xa7, 0x3c, 0x94, 0x4d, 0xe3, 0x9a, 0xd9, 0xed, + 0xc8, 0x78, 0xb7, 0x4e, 0x8a, 0xd1, 0x83, 0xe0, 0x77, 0x5d, 0xd1, 0x3b, 0x4e, 0x29, 0xbf, 0x18, + 0x3b, 0x17, 0x97, 0x73, 0x1e, 0xb0, 0xd9, 0x71, 0x48, 0x80, 0xee, 0xf4, 0x2d, 0xcb, 0xb4, 0x5d, + 0x25, 0x60, 0x16, 0x0a, 0xd4, 0x2c, 0x48, 0xbc, 0xc4, 0x33, 0x20, 0xe8, 0x26, 0x94, 0x7c, 0x4d, + 0x13, 0x76, 0x82, 0x6b, 0x5c, 0xf1, 0x5e, 0x35, 0xee, 0xa4, 0xc7, 0x52, 0x66, 0x1c, 0x99, 0xe2, + 0x2d, 0xa7, 0x3f, 0xf4, 0xf1, 0x85, 0x99, 0xcf, 0x7f, 0x7c, 0x61, 0xa6, 0x72, 0x95, 0x3e, 0xc6, + 0xc5, 0xa7, 0x38, 0x76, 0xd0, 0x65, 0xc8, 0xa8, 0xe2, 0x83, 0x5d, 0xb5, 0x3b, 0xc2, 0x44, 0xf8, + 0xa8, 0x95, 0x1f, 0x8f, 0x40, 0x72, 0xe5, 0xc6, 0x96, 0xaa, 0xdb, 0xa8, 0x01, 0xb3, 0x7e, 0x4f, + 0xa6, 0xb5, 0x36, 0xfe, 0x34, 0x13, 0xe6, 0x66, 0x63, 0xdc, 0x19, 0xbf, 0x4c, 0xed, 0x81, 0xcf, + 0x7c, 0xea, 0x89, 0xfb, 0x39, 0x9b, 0x1b, 0x03, 0xc7, 0xfd, 0x04, 0xbf, 0xc1, 0x63, 0x80, 0x81, + 0x3e, 0x5f, 0x87, 0x14, 0x6b, 0xaa, 0x83, 0x5e, 0x84, 0x84, 0x45, 0x7e, 0xf0, 0xad, 0x8b, 0xb3, + 0x63, 0xe7, 0x1e, 0xc5, 0x0f, 0x6a, 0x2a, 0xa3, 0xab, 0x7c, 0x5b, 0x14, 0x60, 0xe5, 0xc6, 0x8d, + 0xb6, 0xad, 0x5b, 0x5d, 0xec, 0xbe, 0x5d, 0x7d, 0xdf, 0x86, 0x13, 0x81, 0x4b, 0xe4, 0xb6, 0x76, + 0xfc, 0xfe, 0xcf, 0xf9, 0xf7, 0xc9, 0x6d, 0x6d, 0x24, 0xdb, 0x8e, 0xe3, 0x7a, 0x6c, 0x63, 0xc7, + 0x67, 0xbb, 0xe2, 0xb8, 0xc3, 0x92, 0x7d, 0x05, 0xb2, 0xbe, 0x30, 0x1c, 0xd4, 0x84, 0xb4, 0xcb, + 0x7f, 0x73, 0x01, 0x57, 0xc6, 0x0b, 0x58, 0x90, 0x05, 0x85, 0xec, 0x91, 0x57, 0xfe, 0x63, 0x04, + 0x92, 0x5b, 0xd8, 0xd6, 0xcd, 0x0e, 0xbd, 0x7e, 0x42, 0x7f, 0x05, 0xd7, 0x59, 0x60, 0x20, 0x3a, + 0x95, 0x56, 0x20, 0x3d, 0xfd, 0x4d, 0xd5, 0xbc, 0xb8, 0xa9, 0xca, 0x6b, 0xf4, 0xde, 0xe0, 0x1f, + 0xbd, 0x5c, 0xc7, 0xde, 0x99, 0xe5, 0xfa, 0x37, 0xa2, 0x20, 0xb1, 0xee, 0x05, 0x6c, 0xd4, 0xb3, + 0x30, 0xcf, 0x3b, 0xea, 0x9b, 0x3f, 0xf1, 0x06, 0x40, 0xa6, 0x96, 0x60, 0x2c, 0x91, 0x35, 0x40, + 0xd6, 0xec, 0xa0, 0x26, 0x24, 0xb9, 0xe5, 0xb8, 0xf7, 0xd7, 0x54, 0x19, 0x03, 0xf4, 0x0a, 0x14, + 0x06, 0x8c, 0x51, 0xec, 0x5e, 0x59, 0xe6, 0xed, 0xa0, 0x0d, 0x1a, 0x1c, 0xc6, 0xf8, 0xa8, 0x61, + 0xc4, 0x46, 0x87, 0x2d, 0x4d, 0x89, 0xe3, 0x2e, 0x4d, 0x29, 0x6c, 0x74, 0x48, 0x61, 0xe5, 0x33, + 0x64, 0x82, 0xfa, 0x32, 0xfd, 0xda, 0x34, 0x4e, 0x81, 0x11, 0x8b, 0xbd, 0xfd, 0x23, 0x16, 0x7f, + 0x7b, 0x46, 0x2c, 0x30, 0xcf, 0xbf, 0x23, 0x0a, 0x73, 0xdb, 0x62, 0xad, 0xfb, 0xda, 0x97, 0xee, + 0x36, 0xa4, 0xb0, 0xe1, 0xda, 0xba, 0xb7, 0x1f, 0xfc, 0xe4, 0x38, 0x33, 0x34, 0xa2, 0x53, 0x0d, + 0xc3, 0xb5, 0x0f, 0x83, 0x46, 0x49, 0xf0, 0x0a, 0xc8, 0xe3, 0xdf, 0xc6, 0xa0, 0x34, 0x8e, 0x14, + 0x3d, 0x02, 0x45, 0xcd, 0xc6, 0x6c, 0xf6, 0x86, 0xf6, 0xcc, 0x0a, 0x02, 0xcc, 0x3d, 0x32, 0x19, + 0x48, 0x84, 0x45, 0xec, 0x1d, 0x41, 0xbd, 0xb7, 0x90, 0xaa, 0xe0, 0x73, 0xa0, 0x3e, 0x59, 0x1b, + 0x8a, 0xe2, 0xfe, 0xd8, 0x8e, 0xda, 0x55, 0x0d, 0x4d, 0x84, 0x9e, 0xc7, 0x72, 0xa0, 0xc4, 0x1d, + 0xb4, 0x1a, 0x63, 0x81, 0x1a, 0x90, 0x12, 0xdc, 0xe2, 0xc7, 0xe7, 0x26, 0x68, 0xd1, 0x03, 0x90, + 0x0b, 0xba, 0x51, 0x74, 0x96, 0xc7, 0xe5, 0x6c, 0xc0, 0x8b, 0x9a, 0xe4, 0xa7, 0x25, 0x8f, 0xf6, + 0xd3, 0xc6, 0x59, 0xd0, 0xd4, 0x04, 0x0b, 0xca, 0xad, 0xf2, 0x6f, 0xd2, 0xfb, 0x21, 0x9d, 0x3f, + 0xff, 0xe3, 0xb9, 0x05, 0xc0, 0x6c, 0x05, 0xf1, 0x0a, 0xee, 0xdd, 0x5e, 0x64, 0x18, 0x93, 0x15, + 0xc7, 0xfd, 0x9a, 0x1f, 0xda, 0xdf, 0x8a, 0x42, 0x2e, 0x38, 0xb4, 0x7f, 0x21, 0x3d, 0x37, 0xb4, + 0xe1, 0x1b, 0x46, 0x76, 0xf9, 0xee, 0xd1, 0x71, 0x86, 0x71, 0x68, 0x1a, 0x4c, 0xb0, 0x88, 0xbf, + 0x97, 0x80, 0x24, 0x3f, 0x1d, 0xbb, 0x39, 0x14, 0x68, 0x46, 0x8e, 0xe9, 0x94, 0x0d, 0xc4, 0x99, + 0x0f, 0x41, 0xa1, 0xa7, 0x1e, 0x28, 0xa1, 0x23, 0xb7, 0x91, 0x73, 0x79, 0x9a, 0x15, 0xf3, 0x2f, + 0x98, 0x10, 0x07, 0x83, 0xa0, 0xf9, 0x96, 0x9f, 0xe0, 0x40, 0x4f, 0x3d, 0x68, 0x30, 0x08, 0x7a, + 0x02, 0xd0, 0xbe, 0x97, 0xde, 0x54, 0x7c, 0x41, 0x10, 0xbc, 0x59, 0xbf, 0x44, 0xa0, 0xdf, 0x0f, + 0x40, 0x5a, 0xa1, 0xb0, 0xe7, 0xeb, 0xf9, 0x1f, 0x07, 0x20, 0x90, 0x15, 0xfa, 0x84, 0xfd, 0x37, + 0x47, 0x58, 0xbc, 0x3a, 0x90, 0x74, 0xe3, 0xe9, 0x82, 0xf6, 0x14, 0xb3, 0xe9, 0x4b, 0x6f, 0x2e, + 0x94, 0x0f, 0xd5, 0x5e, 0x77, 0xb9, 0x32, 0x82, 0x4f, 0x65, 0xa4, 0x3f, 0xd9, 0xd3, 0x8d, 0x70, + 0xd2, 0x0e, 0xc9, 0x50, 0x20, 0xd4, 0x81, 0x80, 0x39, 0x75, 0x7c, 0xfb, 0x90, 0xef, 0xe9, 0x46, + 0x60, 0x59, 0x7f, 0x12, 0xe6, 0x77, 0xbb, 0xf8, 0x40, 0xdf, 0xe9, 0x62, 0x25, 0xe8, 0xb3, 0xa5, + 0xa9, 0xcf, 0x86, 0x44, 0xd9, 0x96, 0xef, 0xbb, 0xd5, 0x21, 0xc5, 0x10, 0x9d, 0x52, 0xe6, 0xe8, + 0xc8, 0x8a, 0x11, 0x85, 0xb4, 0x89, 0x53, 0xd2, 0x53, 0xe1, 0xa6, 0x76, 0x13, 0x77, 0x82, 0xf1, + 0x33, 0xd0, 0x3a, 0x8b, 0xac, 0xc0, 0x0f, 0x9f, 0x5f, 0x86, 0xac, 0x8f, 0xe4, 0x94, 0xb2, 0xb4, + 0xd2, 0x87, 0xc6, 0x55, 0x1a, 0xca, 0xdb, 0x85, 0xf2, 0x0f, 0x5e, 0xba, 0xce, 0x59, 0x7e, 0x17, + 0x31, 0x14, 0x77, 0x7e, 0xff, 0x27, 0xcf, 0x9f, 0x09, 0xbc, 0xbd, 0x7f, 0xe0, 0x6d, 0x23, 0x30, + 0xed, 0x26, 0x81, 0x2f, 0xf2, 0x45, 0xe5, 0xdd, 0x50, 0x5a, 0x07, 0x08, 0x0c, 0x41, 0xe4, 0xe8, + 0x5c, 0x88, 0x4f, 0x1f, 0x6a, 0x4b, 0xc0, 0x3a, 0xbd, 0xc7, 0x5f, 0x70, 0x45, 0x44, 0x33, 0xe2, + 0x2f, 0x43, 0x2c, 0xd5, 0x4d, 0x3d, 0xc4, 0x42, 0x10, 0x51, 0xa3, 0x37, 0x53, 0xf9, 0x57, 0x11, + 0x38, 0x3d, 0x34, 0x91, 0xbd, 0x26, 0x6b, 0x24, 0xe0, 0x09, 0x18, 0x53, 0x32, 0x21, 0xc4, 0x91, + 0x98, 0x7b, 0xb3, 0x0b, 0xb3, 0xf6, 0xd0, 0xe2, 0xf9, 0xf6, 0x78, 0x0e, 0xdc, 0x88, 0xff, 0x5a, + 0x04, 0xe6, 0x83, 0x0d, 0xf0, 0xba, 0xd2, 0x82, 0x5c, 0xb0, 0x6a, 0xde, 0x89, 0x77, 0x4d, 0xd3, + 0x89, 0x60, 0xfb, 0x43, 0x4c, 0xd0, 0x0d, 0xdf, 0x58, 0xb2, 0xfd, 0x8b, 0xa7, 0xa6, 0x16, 0x8a, + 0x68, 0xd8, 0x48, 0xa3, 0xc9, 0xc6, 0xe6, 0x0f, 0x22, 0x10, 0xdf, 0x32, 0xcd, 0x2e, 0x7a, 0x3f, + 0xcc, 0x1a, 0xa6, 0xab, 0x10, 0xc3, 0x22, 0x34, 0x5f, 0x2c, 0x44, 0x8d, 0x23, 0x65, 0xf5, 0x85, + 0x37, 0x17, 0x86, 0x29, 0x47, 0xfd, 0x6d, 0x8e, 0xa2, 0x61, 0xba, 0x35, 0x8a, 0xd4, 0x66, 0x59, + 0xce, 0x5d, 0xc8, 0x87, 0xab, 0x63, 0x8b, 0x55, 0x75, 0x52, 0x75, 0xf9, 0x89, 0x55, 0xe5, 0x76, + 0x02, 0xf5, 0xb0, 0xe7, 0xec, 0xff, 0x88, 0x8c, 0xdc, 0xab, 0x20, 0xdd, 0x18, 0x3c, 0x6a, 0xd9, + 0x80, 0x94, 0x38, 0x5a, 0x19, 0x99, 0xf2, 0xd4, 0x66, 0x50, 0x9c, 0x9c, 0xf6, 0xfc, 0xcf, 0x46, + 0x00, 0xfc, 0x74, 0x30, 0x7a, 0x1c, 0x4e, 0xd5, 0x36, 0x37, 0x56, 0x94, 0x56, 0xbb, 0xda, 0xde, + 0x6e, 0x85, 0xff, 0xa2, 0x93, 0x78, 0x07, 0xce, 0xb1, 0xb0, 0xa6, 0xef, 0xea, 0xb8, 0x83, 0x1e, + 0x86, 0xf9, 0x30, 0x36, 0xf9, 0x6a, 0xac, 0x48, 0x91, 0x72, 0xee, 0xce, 0xdd, 0xc5, 0x34, 0xf3, + 0xf1, 0x71, 0x07, 0x9d, 0x83, 0x13, 0xc3, 0x78, 0xcd, 0x8d, 0x55, 0x29, 0x5a, 0xce, 0xdf, 0xb9, + 0xbb, 0x98, 0xf1, 0x82, 0x01, 0x54, 0x01, 0x14, 0xc4, 0xe4, 0xfc, 0x62, 0x65, 0xb8, 0x73, 0x77, + 0x31, 0xc9, 0x46, 0xa1, 0x1c, 0xff, 0xd0, 0x0f, 0x9f, 0x9d, 0x39, 0xff, 0x0d, 0x00, 0x4d, 0x63, + 0xd7, 0x56, 0x35, 0xaa, 0x6d, 0x65, 0x38, 0xd9, 0xdc, 0xb8, 0x2a, 0x57, 0xeb, 0xed, 0xe6, 0xe6, + 0xc6, 0xc0, 0x1f, 0xa2, 0x0a, 0x97, 0xad, 0x6c, 0x6e, 0xd7, 0xd6, 0x1a, 0x4a, 0xab, 0xb9, 0xba, + 0xc1, 0x0e, 0xbd, 0x84, 0xca, 0xde, 0xbb, 0xd1, 0x6e, 0xae, 0x37, 0xa4, 0x68, 0xed, 0xea, 0xd8, + 0x4d, 0xd5, 0xc7, 0x8f, 0xfc, 0x6b, 0x23, 0xbe, 0xc5, 0x0b, 0xed, 0xac, 0xfe, 0x9f, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x3f, 0x9e, 0x66, 0x5b, 0xdc, 0xa6, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) @@ -2654,6 +2664,9 @@ func (this *Params) Equal(that interface{}) bool { return false } } + if this.LockedTokenType != that1.LockedTokenType { + return false + } if len(this.TokenTypes) != len(that1.TokenTypes) { return false } @@ -3752,9 +3765,14 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintStaking(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x52 + dAtA[i] = 0x5a } } + if m.LockedTokenType != 0 { + i = encodeVarintStaking(dAtA, i, uint64(m.LockedTokenType)) + i-- + dAtA[i] = 0x50 + } if len(m.Periods) > 0 { for iNdEx := len(m.Periods) - 1; iNdEx >= 0; iNdEx-- { { @@ -4474,6 +4492,9 @@ func (m *Params) Size() (n int) { n += 1 + l + sovStaking(uint64(l)) } } + if m.LockedTokenType != 0 { + n += 1 + sovStaking(uint64(m.LockedTokenType)) + } if len(m.TokenTypes) > 0 { for _, e := range m.TokenTypes { l = e.Size() @@ -7894,6 +7915,25 @@ func (m *Params) Unmarshal(dAtA []byte) error { } iNdEx = postIndex case 10: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field LockedTokenType", wireType) + } + m.LockedTokenType = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStaking + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.LockedTokenType |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field TokenTypes", wireType) }