Merge pull request #11659 from wswcfan/add-auth-revision-status

etcdserver: add auth revision to AuthStatus to improve observability and testability
release-3.5
Hitoshi Mitake 2020-03-09 23:08:55 +09:00 committed by GitHub
commit 6d1982efe8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 751 additions and 247 deletions

View File

@ -253,6 +253,7 @@ Empty field.
| ----- | ----------- | ---- |
| header | | ResponseHeader |
| enabled | | bool |
| authRevision | authRevision is the current revision of auth store | uint64 |

View File

@ -34,6 +34,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthenticateResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -61,6 +67,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthDisableResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -88,6 +100,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthEnableResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -115,6 +133,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthRoleAddResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -142,6 +166,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthRoleDeleteResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -169,6 +199,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthRoleGetResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -196,6 +232,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthRoleGrantPermissionResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -223,6 +265,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthRoleListResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -250,6 +298,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthRoleRevokePermissionResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -277,6 +331,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthStatusResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -304,6 +364,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthUserAddResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -331,6 +397,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthUserChangePasswordResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -358,6 +430,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthUserDeleteResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -385,6 +463,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthUserGetResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -412,6 +496,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthUserGrantRoleResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -439,6 +529,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthUserListResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -466,6 +562,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAuthUserRevokeRoleResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -493,6 +595,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbMemberAddResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -520,6 +628,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbMemberListResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -547,6 +661,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbMemberPromoteResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -574,6 +694,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbMemberRemoveResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -601,6 +727,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbMemberUpdateResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -628,6 +760,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbCompactionResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -655,6 +793,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbDeleteRangeResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -682,6 +826,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbLeaseLeasesResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -709,6 +859,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbLeaseRevokeResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -736,6 +892,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbLeaseTimeToLiveResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -763,6 +925,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbPutResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -790,6 +958,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbRangeResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -817,6 +991,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbTxnResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -844,6 +1024,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbLeaseGrantResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -881,6 +1067,12 @@
}
}
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -908,6 +1100,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbLeaseLeasesResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -935,6 +1133,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbLeaseRevokeResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -962,6 +1166,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbLeaseTimeToLiveResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -989,6 +1199,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbAlarmResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -1016,6 +1232,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbDefragmentResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -1043,6 +1265,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbHashKVResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -1079,6 +1307,12 @@
}
}
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -1106,6 +1340,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbStatusResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -1133,6 +1373,12 @@
"schema": {
"$ref": "#/definitions/etcdserverpbMoveLeaderResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -1170,6 +1416,12 @@
}
}
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
}
}
@ -1479,6 +1731,11 @@
"etcdserverpbAuthStatusResponse": {
"type": "object",
"properties": {
"authRevision": {
"type": "string",
"format": "uint64",
"title": "authRevision is the current revision of auth store"
},
"enabled": {
"type": "boolean",
"format": "boolean"
@ -2665,6 +2922,27 @@
}
}
},
"runtimeError": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"details": {
"type": "array",
"items": {
"$ref": "#/definitions/protobufAny"
}
},
"error": {
"type": "string"
},
"message": {
"type": "string"
}
}
},
"runtimeStreamError": {
"type": "object",
"properties": {

View File

@ -21,6 +21,12 @@
"schema": {
"$ref": "#/definitions/v3electionpbCampaignResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
},
"parameters": [
@ -48,6 +54,12 @@
"schema": {
"$ref": "#/definitions/v3electionpbLeaderResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
},
"parameters": [
@ -84,6 +96,12 @@
},
"title": "Stream result of v3electionpbLeaderResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
},
"parameters": [
@ -111,6 +129,12 @@
"schema": {
"$ref": "#/definitions/v3electionpbProclaimResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
},
"parameters": [
@ -138,6 +162,12 @@
"schema": {
"$ref": "#/definitions/v3electionpbResignResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
},
"parameters": [
@ -229,6 +259,27 @@
}
}
},
"runtimeError": {
"type": "object",
"properties": {
"error": {
"type": "string"
},
"code": {
"type": "integer",
"format": "int32"
},
"message": {
"type": "string"
},
"details": {
"type": "array",
"items": {
"$ref": "#/definitions/protobufAny"
}
}
}
},
"runtimeStreamError": {
"type": "object",
"properties": {

View File

@ -21,6 +21,12 @@
"schema": {
"$ref": "#/definitions/v3lockpbLockResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
},
"parameters": [
@ -48,6 +54,12 @@
"schema": {
"$ref": "#/definitions/v3lockpbUnlockResponse"
}
},
"default": {
"description": "An unexpected error response",
"schema": {
"$ref": "#/definitions/runtimeError"
}
}
},
"parameters": [
@ -92,6 +104,39 @@
}
}
},
"protobufAny": {
"type": "object",
"properties": {
"type_url": {
"type": "string"
},
"value": {
"type": "string",
"format": "byte"
}
}
},
"runtimeError": {
"type": "object",
"properties": {
"error": {
"type": "string"
},
"code": {
"type": "integer",
"format": "int32"
},
"message": {
"type": "string"
},
"details": {
"type": "array",
"items": {
"$ref": "#/definitions/protobufAny"
}
}
}
},
"v3lockpbLockRequest": {
"type": "object",
"properties": {

View File

@ -56,7 +56,7 @@ func authStatusCommandFunc(cmd *cobra.Command, args []string) {
ExitWithError(ExitError, err)
}
fmt.Println("Authentication Status:", result.Enabled)
display.AuthStatus(*result)
}
func newAuthEnableCommand() *cobra.Command {

View File

@ -67,6 +67,8 @@ type printer interface {
UserGrantRole(user string, role string, r v3.AuthUserGrantRoleResponse)
UserRevokeRole(user string, role string, r v3.AuthUserRevokeRoleResponse)
UserDelete(user string, r v3.AuthUserDeleteResponse)
AuthStatus(r v3.AuthStatusResponse)
}
func NewPrinter(printerType string, isHex bool) printer {
@ -141,6 +143,9 @@ func (p *printerRPC) UserRevokeRole(_ string, _ string, r v3.AuthUserRevokeRoleR
func (p *printerRPC) UserDelete(_ string, r v3.AuthUserDeleteResponse) {
p.p((*pb.AuthUserDeleteResponse)(&r))
}
func (p *printerRPC) AuthStatus(r v3.AuthStatusResponse) {
p.p((*pb.AuthStatusResponse)(&r))
}
type printerUnsupported struct{ printerRPC }

View File

@ -285,3 +285,8 @@ func (s *simplePrinter) UserList(r v3.AuthUserListResponse) {
fmt.Printf("%s\n", user)
}
}
func (s *simplePrinter) AuthStatus(r v3.AuthStatusResponse) {
fmt.Println("Authentication Status:", r.Enabled)
fmt.Println("AuthRevision:", r.AuthRevision)
}

View File

@ -716,7 +716,8 @@ func (a *applierV3backend) AuthDisable() (*pb.AuthDisableResponse, error) {
func (a *applierV3backend) AuthStatus() (*pb.AuthStatusResponse, error) {
enabled := a.s.AuthStore().IsAuthEnabled()
return &pb.AuthStatusResponse{Header: newHeader(a.s), Enabled: enabled}, nil
authRevision := a.s.AuthStore().Revision()
return &pb.AuthStatusResponse{Header: newHeader(a.s), Enabled: enabled, AuthRevision: authRevision}, nil
}
func (a *applierV3backend) Authenticate(r *pb.InternalAuthenticateRequest) (*pb.AuthenticateResponse, error) {

View File

@ -3062,6 +3062,8 @@ func (m *AuthDisableResponse) GetHeader() *ResponseHeader {
type AuthStatusResponse struct {
Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
Enabled bool `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
// authRevision is the current revision of auth store
AuthRevision uint64 `protobuf:"varint,3,opt,name=authRevision,proto3" json:"authRevision,omitempty"`
}
func (m *AuthStatusResponse) Reset() { *m = AuthStatusResponse{} }
@ -3083,6 +3085,13 @@ func (m *AuthStatusResponse) GetEnabled() bool {
return false
}
func (m *AuthStatusResponse) GetAuthRevision() uint64 {
if m != nil {
return m.AuthRevision
}
return 0
}
type AuthenticateResponse struct {
Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
// token is an authorized token that can be used in succeeding RPCs
@ -8128,6 +8137,11 @@ func (m *AuthStatusResponse) MarshalTo(dAtA []byte) (int, error) {
}
i++
}
if m.AuthRevision != 0 {
dAtA[i] = 0x18
i++
i = encodeVarintRpc(dAtA, i, uint64(m.AuthRevision))
}
return i, nil
}
@ -9843,6 +9857,9 @@ func (m *AuthStatusResponse) Size() (n int) {
if m.Enabled {
n += 2
}
if m.AuthRevision != 0 {
n += 1 + sovRpc(uint64(m.AuthRevision))
}
return n
}
@ -18695,6 +18712,25 @@ func (m *AuthStatusResponse) Unmarshal(dAtA []byte) error {
}
}
m.Enabled = bool(v != 0)
case 3:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field AuthRevision", wireType)
}
m.AuthRevision = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowRpc
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.AuthRevision |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
default:
iNdEx = preIndex
skippy, err := skipRpc(dAtA[iNdEx:])
@ -20133,253 +20169,254 @@ var (
func init() { proto.RegisterFile("rpc.proto", fileDescriptorRpc) }
var fileDescriptorRpc = []byte{
// 3963 bytes of a gzipped FileDescriptorProto
// 3977 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5b, 0x5b, 0x73, 0x23, 0xc7,
0x75, 0xe6, 0x00, 0xc4, 0xed, 0xe0, 0x42, 0xb0, 0x79, 0x59, 0x2c, 0x76, 0x97, 0x4b, 0xf5, 0x6a,
0x25, 0x6a, 0x57, 0x22, 0x64, 0xda, 0x4e, 0xaa, 0x36, 0x89, 0x63, 0x2e, 0x09, 0xed, 0x52, 0xe4,
0x12, 0xd4, 0x10, 0xbb, 0xba, 0x94, 0x2b, 0xac, 0x21, 0xd0, 0x24, 0x27, 0x04, 0x66, 0xe0, 0x99,
0x01, 0x44, 0x2a, 0x17, 0xa7, 0x5c, 0x8e, 0xab, 0x92, 0x47, 0xbb, 0x2a, 0x95, 0x3c, 0xe4, 0x29,
0x95, 0x72, 0xf9, 0x21, 0xcf, 0xf9, 0x0b, 0x79, 0xca, 0xa5, 0xf2, 0x07, 0x52, 0x8a, 0x5f, 0x92,
0x5f, 0xe1, 0xea, 0xdb, 0x4c, 0xcf, 0x0d, 0x5c, 0x0b, 0x92, 0x5e, 0xc8, 0xe9, 0xd3, 0xa7, 0xcf,
0x77, 0xfa, 0x74, 0xf7, 0x39, 0xdd, 0xa7, 0x1b, 0x50, 0x72, 0x46, 0xbd, 0xcd, 0x91, 0x63, 0x7b,
0x36, 0xaa, 0x10, 0xaf, 0xd7, 0x77, 0x89, 0x33, 0x21, 0xce, 0xe8, 0xb4, 0xb9, 0x7c, 0x6e, 0x9f,
0xdb, 0xac, 0xa2, 0x45, 0xbf, 0x38, 0x4f, 0xf3, 0x36, 0xe5, 0x69, 0x0d, 0x27, 0xbd, 0x1e, 0xfb,
0x33, 0x3a, 0x6d, 0x5d, 0x4e, 0x44, 0xd5, 0x1d, 0x56, 0x65, 0x8c, 0xbd, 0x0b, 0xf6, 0x67, 0x74,
0xca, 0xfe, 0x89, 0xca, 0xbb, 0xe7, 0xb6, 0x7d, 0x3e, 0x20, 0x2d, 0x63, 0x64, 0xb6, 0x0c, 0xcb,
0xb2, 0x3d, 0xc3, 0x33, 0x6d, 0xcb, 0xe5, 0xb5, 0xf8, 0xaf, 0x35, 0xa8, 0xe9, 0xc4, 0x1d, 0xd9,
0x96, 0x4b, 0x9e, 0x13, 0xa3, 0x4f, 0x1c, 0x74, 0x0f, 0xa0, 0x37, 0x18, 0xbb, 0x1e, 0x71, 0x4e,
0xcc, 0x7e, 0x43, 0x5b, 0xd7, 0x36, 0xe6, 0xf5, 0x92, 0xa0, 0xec, 0xf5, 0xd1, 0x1d, 0x28, 0x0d,
0xc9, 0xf0, 0x94, 0xd7, 0x66, 0x58, 0x6d, 0x91, 0x13, 0xf6, 0xfa, 0xa8, 0x09, 0x45, 0x87, 0x4c,
0x4c, 0xd7, 0xb4, 0xad, 0x46, 0x76, 0x5d, 0xdb, 0xc8, 0xea, 0x7e, 0x99, 0x36, 0x74, 0x8c, 0x33,
0xef, 0xc4, 0x23, 0xce, 0xb0, 0x31, 0xcf, 0x1b, 0x52, 0x42, 0x97, 0x38, 0x43, 0xfc, 0xb3, 0x1c,
0x54, 0x74, 0xc3, 0x3a, 0x27, 0x3a, 0xf9, 0xf1, 0x98, 0xb8, 0x1e, 0xaa, 0x43, 0xf6, 0x92, 0x5c,
0x33, 0xf8, 0x8a, 0x4e, 0x3f, 0x79, 0x7b, 0xeb, 0x9c, 0x9c, 0x10, 0x8b, 0x03, 0x57, 0x68, 0x7b,
0xeb, 0x9c, 0xb4, 0xad, 0x3e, 0x5a, 0x86, 0xdc, 0xc0, 0x1c, 0x9a, 0x9e, 0x40, 0xe5, 0x85, 0x90,
0x3a, 0xf3, 0x11, 0x75, 0x76, 0x00, 0x5c, 0xdb, 0xf1, 0x4e, 0x6c, 0xa7, 0x4f, 0x9c, 0x46, 0x6e,
0x5d, 0xdb, 0xa8, 0x6d, 0xbd, 0xb9, 0xa9, 0x0e, 0xc4, 0xa6, 0xaa, 0xd0, 0xe6, 0xb1, 0xed, 0x78,
0x1d, 0xca, 0xab, 0x97, 0x5c, 0xf9, 0x89, 0x3e, 0x80, 0x32, 0x13, 0xe2, 0x19, 0xce, 0x39, 0xf1,
0x1a, 0x79, 0x26, 0xe5, 0xe1, 0x0d, 0x52, 0xba, 0x8c, 0x59, 0x67, 0xf0, 0xfc, 0x1b, 0x61, 0xa8,
0xb8, 0xc4, 0x31, 0x8d, 0x81, 0xf9, 0x85, 0x71, 0x3a, 0x20, 0x8d, 0xc2, 0xba, 0xb6, 0x51, 0xd4,
0x43, 0x34, 0xda, 0xff, 0x4b, 0x72, 0xed, 0x9e, 0xd8, 0xd6, 0xe0, 0xba, 0x51, 0x64, 0x0c, 0x45,
0x4a, 0xe8, 0x58, 0x83, 0x6b, 0x36, 0x68, 0xf6, 0xd8, 0xf2, 0x78, 0x6d, 0x89, 0xd5, 0x96, 0x18,
0x85, 0x55, 0x6f, 0x40, 0x7d, 0x68, 0x5a, 0x27, 0x43, 0xbb, 0x7f, 0xe2, 0x1b, 0x04, 0x98, 0x41,
0x6a, 0x43, 0xd3, 0x7a, 0x61, 0xf7, 0x75, 0x69, 0x16, 0xca, 0x69, 0x5c, 0x85, 0x39, 0xcb, 0x82,
0xd3, 0xb8, 0x52, 0x39, 0x37, 0x61, 0x89, 0xca, 0xec, 0x39, 0xc4, 0xf0, 0x48, 0xc0, 0x5c, 0x61,
0xcc, 0x8b, 0x43, 0xd3, 0xda, 0x61, 0x35, 0x21, 0x7e, 0xe3, 0x2a, 0xc6, 0x5f, 0x15, 0xfc, 0xc6,
0x55, 0x98, 0x1f, 0x6f, 0x42, 0xc9, 0xb7, 0x39, 0x2a, 0xc2, 0xfc, 0x61, 0xe7, 0xb0, 0x5d, 0x9f,
0x43, 0x00, 0xf9, 0xed, 0xe3, 0x9d, 0xf6, 0xe1, 0x6e, 0x5d, 0x43, 0x65, 0x28, 0xec, 0xb6, 0x79,
0x21, 0x83, 0x9f, 0x02, 0x04, 0xd6, 0x45, 0x05, 0xc8, 0xee, 0xb7, 0x3f, 0xad, 0xcf, 0x51, 0x9e,
0x57, 0x6d, 0xfd, 0x78, 0xaf, 0x73, 0x58, 0xd7, 0x68, 0xe3, 0x1d, 0xbd, 0xbd, 0xdd, 0x6d, 0xd7,
0x33, 0x94, 0xe3, 0x45, 0x67, 0xb7, 0x9e, 0x45, 0x25, 0xc8, 0xbd, 0xda, 0x3e, 0x78, 0xd9, 0xae,
0xcf, 0xe3, 0x5f, 0x6a, 0x50, 0x15, 0xe3, 0xc5, 0xd7, 0x04, 0xfa, 0x1e, 0xe4, 0x2f, 0xd8, 0xba,
0x60, 0x53, 0xb1, 0xbc, 0x75, 0x37, 0x32, 0xb8, 0xa1, 0xb5, 0xa3, 0x0b, 0x5e, 0x84, 0x21, 0x7b,
0x39, 0x71, 0x1b, 0x99, 0xf5, 0xec, 0x46, 0x79, 0xab, 0xbe, 0xc9, 0x17, 0xec, 0xe6, 0x3e, 0xb9,
0x7e, 0x65, 0x0c, 0xc6, 0x44, 0xa7, 0x95, 0x08, 0xc1, 0xfc, 0xd0, 0x76, 0x08, 0x9b, 0xb1, 0x45,
0x9d, 0x7d, 0xd3, 0x69, 0xcc, 0x06, 0x4d, 0xcc, 0x56, 0x5e, 0xc0, 0xbf, 0xd6, 0x00, 0x8e, 0xc6,
0x5e, 0xfa, 0xd2, 0x58, 0x86, 0xdc, 0x84, 0x0a, 0x16, 0xcb, 0x82, 0x17, 0xd8, 0x9a, 0x20, 0x86,
0x4b, 0xfc, 0x35, 0x41, 0x0b, 0xe8, 0x16, 0x14, 0x46, 0x0e, 0x99, 0x9c, 0x5c, 0x4e, 0x18, 0x48,
0x51, 0xcf, 0xd3, 0xe2, 0xfe, 0x04, 0xbd, 0x01, 0x15, 0xf3, 0xdc, 0xb2, 0x1d, 0x72, 0xc2, 0x65,
0xe5, 0x58, 0x6d, 0x99, 0xd3, 0x98, 0xde, 0x0a, 0x0b, 0x17, 0x9c, 0x57, 0x59, 0x0e, 0x28, 0x09,
0x5b, 0x50, 0x66, 0xaa, 0xce, 0x64, 0xbe, 0x77, 0x02, 0x1d, 0x33, 0xac, 0x59, 0xdc, 0x84, 0x42,
0x6b, 0xfc, 0x23, 0x40, 0xbb, 0x64, 0x40, 0x3c, 0x32, 0x8b, 0xf7, 0x50, 0x6c, 0x92, 0x55, 0x6d,
0x82, 0x7f, 0xa1, 0xc1, 0x52, 0x48, 0xfc, 0x4c, 0xdd, 0x6a, 0x40, 0xa1, 0xcf, 0x84, 0x71, 0x0d,
0xb2, 0xba, 0x2c, 0xa2, 0xc7, 0x50, 0x14, 0x0a, 0xb8, 0x8d, 0x6c, 0xca, 0xa4, 0x29, 0x70, 0x9d,
0x5c, 0xfc, 0xeb, 0x0c, 0x94, 0x44, 0x47, 0x3b, 0x23, 0xb4, 0x0d, 0x55, 0x87, 0x17, 0x4e, 0x58,
0x7f, 0x84, 0x46, 0xcd, 0x74, 0x27, 0xf4, 0x7c, 0x4e, 0xaf, 0x88, 0x26, 0x8c, 0x8c, 0xfe, 0x00,
0xca, 0x52, 0xc4, 0x68, 0xec, 0x09, 0x93, 0x37, 0xc2, 0x02, 0x82, 0xf9, 0xf7, 0x7c, 0x4e, 0x07,
0xc1, 0x7e, 0x34, 0xf6, 0x50, 0x17, 0x96, 0x65, 0x63, 0xde, 0x1b, 0xa1, 0x46, 0x96, 0x49, 0x59,
0x0f, 0x4b, 0x89, 0x0f, 0xd5, 0xf3, 0x39, 0x1d, 0x89, 0xf6, 0x4a, 0xa5, 0xaa, 0x92, 0x77, 0xc5,
0x9d, 0x77, 0x4c, 0xa5, 0xee, 0x95, 0x15, 0x57, 0xa9, 0x7b, 0x65, 0x3d, 0x2d, 0x41, 0x41, 0x94,
0xf0, 0xbf, 0x66, 0x00, 0xe4, 0x68, 0x74, 0x46, 0x68, 0x17, 0x6a, 0x8e, 0x28, 0x85, 0xac, 0x75,
0x27, 0xd1, 0x5a, 0x62, 0x10, 0xe7, 0xf4, 0xaa, 0x6c, 0xc4, 0x95, 0xfb, 0x01, 0x54, 0x7c, 0x29,
0x81, 0xc1, 0x6e, 0x27, 0x18, 0xcc, 0x97, 0x50, 0x96, 0x0d, 0xa8, 0xc9, 0x3e, 0x86, 0x15, 0xbf,
0x7d, 0x82, 0xcd, 0xde, 0x98, 0x62, 0x33, 0x5f, 0xe0, 0x92, 0x94, 0xa0, 0x5a, 0x4d, 0x55, 0x2c,
0x30, 0xdb, 0xed, 0x04, 0xb3, 0xc5, 0x15, 0xa3, 0x86, 0x03, 0x1a, 0x2f, 0x79, 0x11, 0xff, 0x5f,
0x16, 0x0a, 0x3b, 0xf6, 0x70, 0x64, 0x38, 0x74, 0x34, 0xf2, 0x0e, 0x71, 0xc7, 0x03, 0x8f, 0x99,
0xab, 0xb6, 0xf5, 0x20, 0x2c, 0x51, 0xb0, 0xc9, 0xff, 0x3a, 0x63, 0xd5, 0x45, 0x13, 0xda, 0x58,
0x84, 0xc7, 0xcc, 0x6b, 0x34, 0x16, 0xc1, 0x51, 0x34, 0x91, 0x0b, 0x39, 0x1b, 0x2c, 0xe4, 0x26,
0x14, 0x26, 0xc4, 0x09, 0x42, 0xfa, 0xf3, 0x39, 0x5d, 0x12, 0xd0, 0x3b, 0xb0, 0x10, 0x0d, 0x2f,
0x39, 0xc1, 0x53, 0xeb, 0x85, 0xa3, 0xd1, 0x03, 0xa8, 0x84, 0x62, 0x5c, 0x5e, 0xf0, 0x95, 0x87,
0x4a, 0x88, 0x5b, 0x95, 0x7e, 0x95, 0xc6, 0xe3, 0xca, 0xf3, 0x39, 0xe9, 0x59, 0x57, 0xa5, 0x67,
0x2d, 0x8a, 0x56, 0xc2, 0xb7, 0x86, 0x9c, 0xcc, 0x0f, 0xc3, 0x4e, 0x06, 0xff, 0x10, 0xaa, 0x21,
0x03, 0xd1, 0xb8, 0xd3, 0xfe, 0xe8, 0xe5, 0xf6, 0x01, 0x0f, 0x52, 0xcf, 0x58, 0x5c, 0xd2, 0xeb,
0x1a, 0x8d, 0x75, 0x07, 0xed, 0xe3, 0xe3, 0x7a, 0x06, 0x55, 0xa1, 0x74, 0xd8, 0xe9, 0x9e, 0x70,
0xae, 0x2c, 0x7e, 0xe6, 0x4b, 0x10, 0x41, 0x4e, 0x89, 0x6d, 0x73, 0x4a, 0x6c, 0xd3, 0x64, 0x6c,
0xcb, 0x04, 0xb1, 0x8d, 0x85, 0xb9, 0x83, 0xf6, 0xf6, 0x71, 0xbb, 0x3e, 0xff, 0xb4, 0x06, 0x15,
0x6e, 0xdf, 0x93, 0xb1, 0x45, 0x43, 0xed, 0x3f, 0x69, 0x00, 0xc1, 0x6a, 0x42, 0x2d, 0x28, 0xf4,
0x38, 0x4e, 0x43, 0x63, 0xce, 0x68, 0x25, 0x71, 0xc8, 0x74, 0xc9, 0x85, 0xbe, 0x03, 0x05, 0x77,
0xdc, 0xeb, 0x11, 0x57, 0x86, 0xbc, 0x5b, 0x51, 0x7f, 0x28, 0xbc, 0x95, 0x2e, 0xf9, 0x68, 0x93,
0x33, 0xc3, 0x1c, 0x8c, 0x59, 0x00, 0x9c, 0xde, 0x44, 0xf0, 0xe1, 0x7f, 0xd0, 0xa0, 0xac, 0x4c,
0xde, 0xaf, 0xe8, 0x84, 0xef, 0x42, 0x89, 0xe9, 0x40, 0xfa, 0xc2, 0x0d, 0x17, 0xf5, 0x80, 0x80,
0x7e, 0x0f, 0x4a, 0x72, 0x05, 0x48, 0x4f, 0xdc, 0x48, 0x16, 0xdb, 0x19, 0xe9, 0x01, 0x2b, 0xde,
0x87, 0x45, 0x66, 0x95, 0x1e, 0xdd, 0x5c, 0x4b, 0x3b, 0xaa, 0xdb, 0x4f, 0x2d, 0xb2, 0xfd, 0x6c,
0x42, 0x71, 0x74, 0x71, 0xed, 0x9a, 0x3d, 0x63, 0x20, 0xb4, 0xf0, 0xcb, 0xf8, 0x43, 0x40, 0xaa,
0xb0, 0x59, 0xba, 0x8b, 0xab, 0x50, 0x7e, 0x6e, 0xb8, 0x17, 0x42, 0x25, 0xfc, 0x18, 0xaa, 0xb4,
0xb8, 0xff, 0xea, 0x35, 0x74, 0x64, 0x87, 0x03, 0xc9, 0x3d, 0x93, 0xcd, 0x11, 0xcc, 0x5f, 0x18,
0xee, 0x05, 0xeb, 0x68, 0x55, 0x67, 0xdf, 0xe8, 0x1d, 0xa8, 0xf7, 0x78, 0x27, 0x4f, 0x22, 0x47,
0x86, 0x05, 0x41, 0xf7, 0x77, 0x82, 0x9f, 0x40, 0x85, 0xf7, 0xe1, 0xeb, 0x56, 0x02, 0x2f, 0xc2,
0xc2, 0xb1, 0x65, 0x8c, 0xdc, 0x0b, 0x5b, 0x46, 0x37, 0xda, 0xe9, 0x7a, 0x40, 0x9b, 0x09, 0xf1,
0x6d, 0x58, 0x70, 0xc8, 0xd0, 0x30, 0x2d, 0xd3, 0x3a, 0x3f, 0x39, 0xbd, 0xf6, 0x88, 0x2b, 0x0e,
0x4c, 0x35, 0x9f, 0xfc, 0x94, 0x52, 0xa9, 0x6a, 0xa7, 0x03, 0xfb, 0x54, 0xb8, 0x39, 0xf6, 0x8d,
0x7f, 0x9e, 0x81, 0xca, 0xc7, 0x86, 0xd7, 0x93, 0x43, 0x87, 0xf6, 0xa0, 0xe6, 0x3b, 0x37, 0x46,
0x11, 0xba, 0x44, 0x42, 0x2c, 0x6b, 0x23, 0xb7, 0xd2, 0x32, 0x3a, 0x56, 0x7b, 0x2a, 0x81, 0x89,
0x32, 0xac, 0x1e, 0x19, 0xf8, 0xa2, 0x32, 0xe9, 0xa2, 0x18, 0xa3, 0x2a, 0x4a, 0x25, 0xa0, 0x0e,
0xd4, 0x47, 0x8e, 0x7d, 0xee, 0x10, 0xd7, 0xf5, 0x85, 0xf1, 0x30, 0x86, 0x13, 0x84, 0x1d, 0x09,
0xd6, 0x40, 0xdc, 0xc2, 0x28, 0x4c, 0x7a, 0xba, 0x10, 0xec, 0x67, 0xb8, 0x73, 0xfa, 0xaf, 0x0c,
0xa0, 0x78, 0xa7, 0x7e, 0xd7, 0x2d, 0xde, 0x43, 0xa8, 0xb9, 0x9e, 0xe1, 0xc4, 0x26, 0x5b, 0x95,
0x51, 0x7d, 0x8f, 0xff, 0x36, 0xf8, 0x0a, 0x9d, 0x58, 0xb6, 0x67, 0x9e, 0x5d, 0x8b, 0x5d, 0x72,
0x4d, 0x92, 0x0f, 0x19, 0x15, 0xb5, 0xa1, 0x70, 0x66, 0x0e, 0x3c, 0xe2, 0xb8, 0x8d, 0xdc, 0x7a,
0x76, 0xa3, 0xb6, 0xf5, 0xf8, 0xa6, 0x61, 0xd8, 0xfc, 0x80, 0xf1, 0x77, 0xaf, 0x47, 0x44, 0x97,
0x6d, 0xd5, 0x9d, 0x67, 0x3e, 0xb4, 0x1b, 0xbf, 0x0d, 0xc5, 0xcf, 0xa9, 0x08, 0x7a, 0xca, 0x2e,
0xf0, 0xcd, 0x22, 0x2b, 0xf3, 0x43, 0xf6, 0x99, 0x63, 0x9c, 0x0f, 0x89, 0xe5, 0xc9, 0x73, 0xa0,
0x2c, 0xe3, 0x87, 0x00, 0x01, 0x0c, 0x75, 0xf9, 0x87, 0x9d, 0xa3, 0x97, 0xdd, 0xfa, 0x1c, 0xaa,
0x40, 0xf1, 0xb0, 0xb3, 0xdb, 0x3e, 0x68, 0xd3, 0xf8, 0x80, 0x5b, 0xd2, 0xa4, 0xa1, 0xb1, 0x54,
0x31, 0xb5, 0x10, 0x26, 0x5e, 0x85, 0xe5, 0xa4, 0x01, 0xa4, 0x7b, 0xd1, 0xaa, 0x98, 0xa5, 0x33,
0x2d, 0x15, 0x15, 0x3a, 0x13, 0xee, 0x6e, 0x03, 0x0a, 0x7c, 0xf6, 0xf6, 0xc5, 0xe6, 0x5c, 0x16,
0xa9, 0x21, 0xf8, 0x64, 0x24, 0x7d, 0x31, 0x4a, 0x7e, 0x39, 0xd1, 0xbd, 0xe4, 0x12, 0xdd, 0x0b,
0x7a, 0x00, 0x55, 0x7f, 0x35, 0x18, 0xae, 0xd8, 0x0b, 0x94, 0xf4, 0x8a, 0x9c, 0xe8, 0x94, 0x16,
0x32, 0x7a, 0x21, 0x6c, 0x74, 0xf4, 0x10, 0xf2, 0x64, 0x42, 0x2c, 0xcf, 0x6d, 0x94, 0x59, 0xc4,
0xa8, 0xca, 0xbd, 0x7b, 0x9b, 0x52, 0x75, 0x51, 0x89, 0xbf, 0x0f, 0x8b, 0xec, 0x8c, 0xf4, 0xcc,
0x31, 0x2c, 0xf5, 0x30, 0xd7, 0xed, 0x1e, 0x08, 0x73, 0xd3, 0x4f, 0x54, 0x83, 0xcc, 0xde, 0xae,
0x30, 0x42, 0x66, 0x6f, 0x17, 0xff, 0x54, 0x03, 0xa4, 0xb6, 0x9b, 0xc9, 0xce, 0x11, 0xe1, 0x12,
0x3e, 0x1b, 0xc0, 0x2f, 0x43, 0x8e, 0x38, 0x8e, 0xed, 0x30, 0x8b, 0x96, 0x74, 0x5e, 0xc0, 0x6f,
0x0a, 0x1d, 0x74, 0x32, 0xb1, 0x2f, 0xfd, 0x35, 0xc8, 0xa5, 0x69, 0xbe, 0xaa, 0xfb, 0xb0, 0x14,
0xe2, 0x9a, 0x29, 0x72, 0x7d, 0x00, 0x0b, 0x4c, 0xd8, 0xce, 0x05, 0xe9, 0x5d, 0x8e, 0x6c, 0xd3,
0x8a, 0xe1, 0xd1, 0x91, 0x0b, 0x1c, 0x2c, 0xed, 0x07, 0xef, 0x58, 0xc5, 0x27, 0x76, 0xbb, 0x07,
0xf8, 0x53, 0x58, 0x8d, 0xc8, 0x91, 0xea, 0xff, 0x31, 0x94, 0x7b, 0x3e, 0xd1, 0x15, 0x7b, 0x9d,
0x7b, 0x61, 0xe5, 0xa2, 0x4d, 0xd5, 0x16, 0xb8, 0x03, 0xb7, 0x62, 0xa2, 0x67, 0xea, 0xf3, 0xdb,
0xb0, 0xc2, 0x04, 0xee, 0x13, 0x32, 0xda, 0x1e, 0x98, 0x93, 0x54, 0x4b, 0x8f, 0x44, 0xa7, 0x14,
0xc6, 0x6f, 0x76, 0x5e, 0xe0, 0x3f, 0x14, 0x88, 0x5d, 0x73, 0x48, 0xba, 0xf6, 0x41, 0xba, 0x6e,
0x34, 0x9a, 0x5d, 0x92, 0x6b, 0x57, 0x6c, 0x6b, 0xd8, 0x37, 0xfe, 0x67, 0x4d, 0x98, 0x4a, 0x6d,
0xfe, 0x0d, 0xcf, 0xe4, 0x35, 0x80, 0x73, 0xba, 0x64, 0x48, 0x9f, 0x56, 0xf0, 0x8c, 0x8a, 0x42,
0xf1, 0xf5, 0xa4, 0xfe, 0xbb, 0x22, 0xf4, 0x5c, 0x16, 0xf3, 0x9c, 0xfd, 0xf1, 0xbd, 0xdc, 0x3d,
0x28, 0x33, 0xc2, 0xb1, 0x67, 0x78, 0x63, 0x37, 0x36, 0x18, 0x7f, 0x29, 0xa6, 0xbd, 0x6c, 0x34,
0x53, 0xbf, 0xbe, 0x03, 0x79, 0x76, 0x98, 0x90, 0x5b, 0xe9, 0xdb, 0x09, 0xf3, 0x91, 0xeb, 0xa1,
0x0b, 0x46, 0xfc, 0x73, 0x0d, 0xf2, 0x2f, 0x58, 0x0a, 0x56, 0x51, 0x6d, 0x5e, 0x8e, 0x85, 0x65,
0x0c, 0x79, 0x62, 0xa8, 0xa4, 0xb3, 0x6f, 0xb6, 0xf5, 0x24, 0xc4, 0x79, 0xa9, 0x1f, 0xf0, 0x2d,
0x6e, 0x49, 0xf7, 0xcb, 0xd4, 0x66, 0xbd, 0x81, 0x49, 0x2c, 0x8f, 0xd5, 0xce, 0xb3, 0x5a, 0x85,
0x42, 0x77, 0xcf, 0xa6, 0x7b, 0x40, 0x0c, 0xc7, 0x12, 0x49, 0xd3, 0xa2, 0x1e, 0x10, 0xf0, 0x01,
0xd4, 0xb9, 0x1e, 0xdb, 0xfd, 0xbe, 0xb2, 0xc1, 0xf4, 0xd1, 0xb4, 0x08, 0x5a, 0x48, 0x5a, 0x26,
0x2a, 0xed, 0x57, 0x1a, 0x2c, 0x2a, 0xe2, 0x66, 0xb2, 0xea, 0xbb, 0x90, 0xe7, 0x49, 0x6a, 0xb1,
0xd3, 0x59, 0x0e, 0xb7, 0xe2, 0x30, 0xba, 0xe0, 0x41, 0x9b, 0x50, 0xe0, 0x5f, 0xf2, 0x0c, 0x90,
0xcc, 0x2e, 0x99, 0xf0, 0x43, 0x58, 0x12, 0x24, 0x32, 0xb4, 0x93, 0x16, 0x06, 0x1b, 0x0c, 0xfc,
0xe7, 0xb0, 0x1c, 0x66, 0x9b, 0xa9, 0x4b, 0x8a, 0x92, 0x99, 0xd7, 0x51, 0x72, 0x5b, 0x2a, 0xf9,
0x72, 0xd4, 0x57, 0xf6, 0x51, 0xd1, 0x19, 0xa3, 0x8e, 0x57, 0x26, 0x3c, 0x5e, 0x41, 0x07, 0xa4,
0x88, 0x6f, 0xb5, 0x03, 0x4b, 0x72, 0x3a, 0x1c, 0x98, 0xae, 0xbf, 0x5d, 0xff, 0x02, 0x90, 0x4a,
0xfc, 0x56, 0x15, 0x7a, 0x4b, 0x9a, 0xe3, 0xc8, 0xb1, 0x87, 0x76, 0xaa, 0x49, 0xf1, 0x5f, 0xc0,
0x4a, 0x84, 0xef, 0xdb, 0xb6, 0xdb, 0x2e, 0x91, 0x9b, 0x15, 0x69, 0xb7, 0x0f, 0x01, 0xa9, 0xc4,
0x99, 0xa2, 0x56, 0x0b, 0x16, 0x5f, 0xd8, 0x13, 0xea, 0xfe, 0x28, 0x35, 0x58, 0xf7, 0x3c, 0xc7,
0xe0, 0x9b, 0xc2, 0x2f, 0x53, 0x70, 0xb5, 0xc1, 0x4c, 0xe0, 0xff, 0xa1, 0x41, 0x65, 0x7b, 0x60,
0x38, 0x43, 0x09, 0xfc, 0x03, 0xc8, 0xf3, 0x93, 0xb3, 0x48, 0x56, 0xbd, 0x15, 0x16, 0xa3, 0xf2,
0xf2, 0xc2, 0x36, 0x3f, 0x67, 0x8b, 0x56, 0x54, 0x71, 0x71, 0x9f, 0xb5, 0x1b, 0xb9, 0xdf, 0xda,
0x45, 0xef, 0x41, 0xce, 0xa0, 0x4d, 0x58, 0x98, 0xa9, 0x45, 0x73, 0x16, 0x4c, 0x1a, 0xdb, 0xdf,
0x73, 0x2e, 0xfc, 0x3d, 0x28, 0x2b, 0x08, 0xa8, 0x00, 0xd9, 0x67, 0x6d, 0xb1, 0x19, 0xdf, 0xde,
0xe9, 0xee, 0xbd, 0xe2, 0xc9, 0x9a, 0x1a, 0xc0, 0x6e, 0xdb, 0x2f, 0x67, 0xf0, 0x27, 0xa2, 0x95,
0x70, 0xe9, 0xaa, 0x3e, 0x5a, 0x9a, 0x3e, 0x99, 0xd7, 0xd2, 0xe7, 0x0a, 0xaa, 0xa2, 0xfb, 0xb3,
0x86, 0x28, 0x26, 0x2f, 0x25, 0x44, 0x29, 0xca, 0xeb, 0x82, 0x11, 0x2f, 0x40, 0x55, 0x04, 0x2d,
0x31, 0xff, 0xfe, 0x3d, 0x03, 0x35, 0x49, 0x99, 0x35, 0xa9, 0x2e, 0xf3, 0x81, 0x3c, 0xc8, 0xf9,
0xd9, 0xc0, 0x55, 0xc8, 0xf7, 0x4f, 0x8f, 0xcd, 0x2f, 0xe4, 0x05, 0x88, 0x28, 0x51, 0xfa, 0x80,
0xe3, 0xf0, 0x5b, 0x48, 0x51, 0xa2, 0xd1, 0xc8, 0x31, 0xce, 0xbc, 0x3d, 0xab, 0x4f, 0xae, 0x58,
0x6c, 0x9b, 0xd7, 0x03, 0x02, 0x4b, 0x94, 0x88, 0xdb, 0x4a, 0x76, 0x40, 0x50, 0x6e, 0x2f, 0xd1,
0x23, 0xa8, 0xd3, 0xef, 0xed, 0xd1, 0x68, 0x60, 0x92, 0x3e, 0x17, 0x50, 0x60, 0x3c, 0x31, 0x3a,
0x45, 0x67, 0x5b, 0x6a, 0xb7, 0x51, 0x64, 0xde, 0x55, 0x94, 0xd0, 0x3a, 0x94, 0xb9, 0x7e, 0x7b,
0xd6, 0x4b, 0x97, 0xb0, 0x2b, 0xbc, 0xac, 0xae, 0x92, 0xc2, 0xd1, 0x12, 0xa2, 0xd1, 0x72, 0x09,
0x16, 0xb7, 0xc7, 0xde, 0x45, 0xdb, 0x32, 0x4e, 0x07, 0xd2, 0x13, 0xd1, 0xed, 0x0c, 0x25, 0xee,
0x9a, 0xae, 0x4a, 0x15, 0xac, 0xe1, 0x01, 0x69, 0xc3, 0x12, 0x25, 0x12, 0xcb, 0x33, 0x7b, 0x4a,
0x78, 0x90, 0x1b, 0x08, 0x2d, 0xb2, 0x81, 0x30, 0x5c, 0xf7, 0x73, 0xdb, 0xe9, 0x0b, 0x9b, 0xfb,
0x65, 0x3c, 0xe1, 0x88, 0x2f, 0xdd, 0xd0, 0x26, 0xe0, 0x77, 0x94, 0x82, 0xde, 0x87, 0x82, 0x3d,
0x62, 0xf7, 0xd4, 0x22, 0x99, 0xb0, 0xba, 0xc9, 0x6f, 0xb6, 0x37, 0x85, 0xe0, 0x0e, 0xaf, 0xd5,
0x25, 0x1b, 0xde, 0x08, 0x70, 0x9f, 0x11, 0x6f, 0x0a, 0x2e, 0x7e, 0x0c, 0x2b, 0x92, 0x53, 0xe4,
0xce, 0xa7, 0x30, 0x77, 0xe0, 0x9e, 0x64, 0xde, 0xb9, 0x30, 0xac, 0x73, 0x72, 0x24, 0x54, 0xfc,
0xaa, 0xf6, 0x79, 0x0a, 0x0d, 0x5f, 0x4f, 0x76, 0x9e, 0xb3, 0x07, 0xaa, 0x02, 0x63, 0x57, 0x4c,
0xff, 0x92, 0xce, 0xbe, 0x29, 0xcd, 0xb1, 0x07, 0xfe, 0x06, 0x8e, 0x7e, 0xe3, 0x1d, 0xb8, 0x2d,
0x65, 0x88, 0x93, 0x56, 0x58, 0x48, 0x4c, 0xa1, 0x24, 0x21, 0xc2, 0x60, 0xb4, 0xe9, 0xf4, 0x81,
0x52, 0x39, 0xc3, 0xa6, 0x65, 0x32, 0x35, 0x45, 0xe6, 0x0a, 0x9f, 0x43, 0x54, 0x31, 0x35, 0x46,
0x0b, 0x32, 0x15, 0xa0, 0x92, 0xc5, 0x40, 0x50, 0x72, 0x6c, 0x20, 0x62, 0xa2, 0x7f, 0x04, 0x6b,
0xbe, 0x12, 0xd4, 0x6e, 0x47, 0xc4, 0x19, 0x9a, 0xae, 0xab, 0x64, 0x5b, 0x93, 0x3a, 0xfe, 0x16,
0xcc, 0x8f, 0x88, 0x70, 0x8f, 0xe5, 0x2d, 0x24, 0x27, 0x91, 0xd2, 0x98, 0xd5, 0xe3, 0x3e, 0xdc,
0x97, 0xd2, 0xb9, 0x45, 0x13, 0xc5, 0x47, 0x95, 0x92, 0x39, 0xa8, 0x4c, 0x4a, 0x0e, 0x2a, 0x1b,
0xb9, 0x01, 0xf8, 0x90, 0x1b, 0x52, 0x2e, 0xd1, 0x99, 0xc2, 0xde, 0x3e, 0xb7, 0xa9, 0xbf, 0xb2,
0x67, 0x12, 0xd6, 0xe7, 0x8a, 0x7d, 0x5d, 0xfe, 0x98, 0xb0, 0x0e, 0xca, 0xec, 0xba, 0x2c, 0xe2,
0x53, 0x58, 0x0e, 0x7b, 0x98, 0x99, 0x70, 0x96, 0x21, 0xe7, 0xd9, 0x97, 0x44, 0x7a, 0x7d, 0x5e,
0x90, 0x66, 0xf1, 0xdd, 0xcf, 0x4c, 0x66, 0x31, 0x02, 0x61, 0x6c, 0xe2, 0xcf, 0xaa, 0x2f, 0x9d,
0x33, 0x72, 0x53, 0xcd, 0x0b, 0xf8, 0x10, 0x56, 0xa3, 0xce, 0x68, 0x26, 0x95, 0x5f, 0xf1, 0x65,
0x92, 0xe4, 0xaf, 0x66, 0x92, 0xfb, 0x51, 0xe0, 0x72, 0x14, 0xb7, 0x35, 0x93, 0x48, 0x1d, 0x9a,
0x49, 0x5e, 0xec, 0xeb, 0x58, 0x15, 0xbe, 0x53, 0x9b, 0x49, 0x98, 0x1b, 0x08, 0x9b, 0x7d, 0xf8,
0x03, 0x4f, 0x94, 0x9d, 0xea, 0x89, 0xc4, 0x22, 0x09, 0x7c, 0xe5, 0x37, 0x30, 0xe9, 0x04, 0x46,
0xe0, 0xa6, 0x67, 0xc5, 0xa0, 0x91, 0xca, 0xc7, 0x60, 0x05, 0x39, 0xb1, 0x55, 0xe7, 0x3e, 0xd3,
0x60, 0x7c, 0x1c, 0x78, 0xe8, 0x98, 0xff, 0x9f, 0x49, 0xf0, 0x27, 0xb0, 0x9e, 0xee, 0xfa, 0x67,
0x91, 0xfc, 0xa8, 0x05, 0x25, 0x7f, 0x07, 0xae, 0x3c, 0x60, 0x2a, 0x43, 0xe1, 0xb0, 0x73, 0x7c,
0xb4, 0xbd, 0xd3, 0xe6, 0x2f, 0x98, 0x76, 0x3a, 0xba, 0xfe, 0xf2, 0xa8, 0x5b, 0xcf, 0x6c, 0xfd,
0x26, 0x0b, 0x99, 0xfd, 0x57, 0xe8, 0x53, 0xc8, 0xf1, 0xeb, 0xfc, 0x29, 0x6f, 0x38, 0x9a, 0xd3,
0x5e, 0x2c, 0xe0, 0x5b, 0x3f, 0xfd, 0xef, 0xdf, 0xfc, 0x32, 0xb3, 0x88, 0x2b, 0xad, 0xc9, 0x77,
0x5b, 0x97, 0x93, 0x16, 0x8b, 0x40, 0x4f, 0xb4, 0x47, 0xe8, 0x23, 0xc8, 0x1e, 0x8d, 0x3d, 0x94,
0xfa, 0xb6, 0xa3, 0x99, 0xfe, 0x88, 0x01, 0xaf, 0x30, 0xa1, 0x0b, 0x18, 0x84, 0xd0, 0xd1, 0xd8,
0xa3, 0x22, 0x7f, 0x0c, 0x65, 0xf5, 0x09, 0xc2, 0x8d, 0x0f, 0x3e, 0x9a, 0x37, 0x3f, 0x6f, 0xc0,
0xf7, 0x18, 0xd4, 0x2d, 0x8c, 0x04, 0x14, 0x7f, 0x24, 0xa1, 0xf6, 0xa2, 0x7b, 0x65, 0xa1, 0xd4,
0xe7, 0x20, 0xcd, 0xf4, 0x17, 0x0f, 0xb1, 0x5e, 0x78, 0x57, 0x16, 0x15, 0xf9, 0xa7, 0xe2, 0xb1,
0x43, 0xcf, 0x43, 0xf7, 0x13, 0x2e, 0xbb, 0xd5, 0x6b, 0xdd, 0xe6, 0x7a, 0x3a, 0x83, 0x00, 0xb9,
0xcb, 0x40, 0x56, 0xf1, 0xa2, 0x00, 0xe9, 0xf9, 0x2c, 0x4f, 0xb4, 0x47, 0x5b, 0x3d, 0xc8, 0xb1,
0x2b, 0x13, 0xf4, 0x99, 0xfc, 0x68, 0x26, 0xdc, 0x1d, 0xa5, 0x0c, 0x74, 0xe8, 0xb2, 0x05, 0x2f,
0x33, 0xa0, 0x1a, 0x2e, 0x51, 0x20, 0x76, 0x61, 0xf2, 0x44, 0x7b, 0xb4, 0xa1, 0xbd, 0xaf, 0x6d,
0xfd, 0x4b, 0x0e, 0x72, 0x2c, 0x57, 0x88, 0x2e, 0x01, 0x82, 0xeb, 0x83, 0x68, 0xef, 0x62, 0x17,
0x12, 0xd1, 0xde, 0xc5, 0x6f, 0x1e, 0x70, 0x93, 0x81, 0x2e, 0xe3, 0x05, 0x0a, 0xca, 0x52, 0x90,
0x2d, 0x96, 0x55, 0xa5, 0x76, 0xfc, 0x1b, 0x4d, 0xa4, 0x4a, 0xf9, 0x5a, 0x42, 0x49, 0xd2, 0x42,
0x77, 0x08, 0xd1, 0xe9, 0x90, 0x70, 0x7f, 0x80, 0xbf, 0xcf, 0x00, 0x5b, 0xb8, 0x1e, 0x00, 0x3a,
0x8c, 0xe3, 0x89, 0xf6, 0xe8, 0xb3, 0x06, 0x5e, 0x12, 0x56, 0x8e, 0xd4, 0xa0, 0x9f, 0x40, 0x2d,
0x9c, 0x23, 0x47, 0x0f, 0x12, 0xb0, 0xa2, 0xa9, 0xf6, 0xe6, 0x9b, 0xd3, 0x99, 0x84, 0x4e, 0x6b,
0x4c, 0x27, 0x01, 0xce, 0x91, 0x2f, 0x09, 0x19, 0x19, 0x94, 0x49, 0x8c, 0x01, 0xfa, 0x47, 0x4d,
0x5c, 0x61, 0x04, 0x49, 0x6f, 0x94, 0x24, 0x3d, 0x96, 0x52, 0x6f, 0x3e, 0xbc, 0x81, 0x4b, 0x28,
0xf1, 0x47, 0x4c, 0x89, 0xdf, 0xc7, 0xcb, 0x81, 0x12, 0x9e, 0x39, 0x24, 0x9e, 0x2d, 0xb4, 0xf8,
0xec, 0x2e, 0xbe, 0x15, 0x32, 0x4e, 0xa8, 0x36, 0x18, 0x2c, 0x9e, 0xb8, 0x4e, 0x1c, 0xac, 0x50,
0x22, 0x3c, 0x71, 0xb0, 0xc2, 0x59, 0xef, 0xa4, 0xc1, 0xe2, 0x69, 0xea, 0xa4, 0xc1, 0xf2, 0x6b,
0xb6, 0xfe, 0x7f, 0x1e, 0x0a, 0x3b, 0xfc, 0x91, 0x31, 0xb2, 0xa1, 0xe4, 0xe7, 0x7d, 0xd1, 0x5a,
0x52, 0x72, 0x2b, 0x38, 0xb1, 0x34, 0xef, 0xa7, 0xd6, 0x0b, 0x85, 0xde, 0x60, 0x0a, 0xdd, 0xc1,
0xab, 0x14, 0x59, 0xbc, 0x63, 0x6e, 0xf1, 0x0c, 0x4a, 0xcb, 0xe8, 0xf7, 0xa9, 0x21, 0xfe, 0x0c,
0x2a, 0x6a, 0x62, 0x16, 0xbd, 0x91, 0x98, 0x50, 0x53, 0x73, 0xbb, 0x4d, 0x3c, 0x8d, 0x45, 0x20,
0xbf, 0xc9, 0x90, 0xd7, 0xf0, 0xed, 0x04, 0x64, 0x87, 0xb1, 0x86, 0xc0, 0x79, 0x52, 0x35, 0x19,
0x3c, 0x94, 0xb3, 0x4d, 0x06, 0x0f, 0xe7, 0x64, 0xa7, 0x82, 0x8f, 0x19, 0x2b, 0x05, 0x77, 0x01,
0x82, 0xf4, 0x29, 0x4a, 0xb4, 0xa5, 0x72, 0x64, 0x8b, 0x3a, 0x87, 0x78, 0xe6, 0x15, 0x63, 0x06,
0x2b, 0xe6, 0x5d, 0x04, 0x76, 0x60, 0xba, 0x1e, 0x5f, 0x98, 0xd5, 0x50, 0x3e, 0x14, 0x25, 0xf6,
0x27, 0x9c, 0x54, 0x6d, 0x3e, 0x98, 0xca, 0x23, 0xd0, 0x1f, 0x32, 0xf4, 0xfb, 0xb8, 0x99, 0x80,
0x3e, 0xe2, 0xbc, 0x74, 0xb2, 0xfd, 0x6d, 0x1e, 0xca, 0x2f, 0x0c, 0xd3, 0xf2, 0x88, 0x65, 0x58,
0x3d, 0x82, 0x4e, 0x21, 0xc7, 0x22, 0x75, 0xd4, 0x11, 0xab, 0xb9, 0xc2, 0xa8, 0x23, 0x0e, 0x25,
0xd2, 0xf0, 0x3a, 0x03, 0x6e, 0xe2, 0x15, 0x0a, 0x3c, 0x0c, 0x44, 0xb7, 0x58, 0xfe, 0x8b, 0x76,
0xfa, 0x0c, 0xf2, 0xe2, 0xfa, 0x28, 0x22, 0x28, 0x94, 0x86, 0x69, 0xde, 0x4d, 0xae, 0x4c, 0x9a,
0xcb, 0x2a, 0x8c, 0xcb, 0xf8, 0x28, 0xce, 0x04, 0x20, 0x48, 0xec, 0x46, 0x47, 0x34, 0x96, 0x07,
0x6e, 0xae, 0xa7, 0x33, 0x24, 0xd9, 0x54, 0xc5, 0xec, 0xfb, 0xbc, 0x14, 0xf7, 0x4f, 0x60, 0xfe,
0xb9, 0xe1, 0x5e, 0xa0, 0x48, 0xec, 0x55, 0x1e, 0x1f, 0x35, 0x9b, 0x49, 0x55, 0x02, 0xe5, 0x3e,
0x43, 0xb9, 0xcd, 0x5d, 0x99, 0x8a, 0x72, 0x61, 0xb8, 0x34, 0xa8, 0xa1, 0x3e, 0xe4, 0xf9, 0x5b,
0xa4, 0xa8, 0xfd, 0x42, 0xef, 0x99, 0xa2, 0xf6, 0x0b, 0x3f, 0x5f, 0xba, 0x19, 0x65, 0x04, 0x45,
0xf9, 0xf8, 0x07, 0x45, 0x6e, 0x82, 0x23, 0x0f, 0x85, 0x9a, 0x6b, 0x69, 0xd5, 0x02, 0xeb, 0x01,
0xc3, 0xba, 0x87, 0x1b, 0xb1, 0xb1, 0x12, 0x9c, 0x4f, 0xb4, 0x47, 0xef, 0x6b, 0xe8, 0x27, 0x00,
0x41, 0x2e, 0x3c, 0xb6, 0x02, 0xa3, 0x69, 0xf5, 0xd8, 0x0a, 0x8c, 0xa5, 0xd1, 0xf1, 0x26, 0xc3,
0xdd, 0xc0, 0x0f, 0xa2, 0xb8, 0x9e, 0x63, 0x58, 0xee, 0x19, 0x71, 0xde, 0xe3, 0xf9, 0x4e, 0xf7,
0xc2, 0x1c, 0xd1, 0xc5, 0xf0, 0xab, 0x3a, 0xcc, 0xd3, 0x1d, 0x30, 0xdd, 0x28, 0x04, 0xe9, 0x89,
0xa8, 0x26, 0xb1, 0xdc, 0x62, 0x54, 0x93, 0x78, 0x66, 0x23, 0xbc, 0x51, 0x60, 0x3f, 0x4f, 0xe1,
0xa9, 0x00, 0x6a, 0x68, 0x1b, 0xca, 0x4a, 0xfe, 0x02, 0x25, 0x08, 0x0b, 0x27, 0x2d, 0xa3, 0xa1,
0x27, 0x21, 0xf9, 0x81, 0xef, 0x30, 0xbc, 0x15, 0x1e, 0x7a, 0x18, 0x5e, 0x9f, 0x73, 0x50, 0x40,
0xd1, 0x3b, 0xb1, 0x06, 0x13, 0x7a, 0x17, 0x5e, 0x87, 0xeb, 0xe9, 0x0c, 0xa9, 0xbd, 0x0b, 0x16,
0xe1, 0xe7, 0x50, 0x51, 0x53, 0x1d, 0x28, 0x41, 0xf9, 0x48, 0xa2, 0x35, 0xea, 0xd3, 0x93, 0x32,
0x25, 0x61, 0x2f, 0xe3, 0xff, 0xde, 0x47, 0xb2, 0x51, 0xe0, 0x01, 0x14, 0x44, 0xee, 0x23, 0xc9,
0xa4, 0xe1, 0xac, 0x6c, 0x92, 0x49, 0x23, 0x89, 0x93, 0xf0, 0x4e, 0x96, 0x21, 0xd2, 0xe3, 0x9d,
0x8c, 0x9b, 0x02, 0xed, 0x19, 0xf1, 0xd2, 0xd0, 0x82, 0x84, 0x61, 0x1a, 0x9a, 0x72, 0xb4, 0x4e,
0x43, 0x3b, 0x27, 0x9e, 0x58, 0x9b, 0xf2, 0xc8, 0x8a, 0x52, 0x84, 0xa9, 0xb1, 0x0a, 0x4f, 0x63,
0x49, 0x3a, 0x68, 0x04, 0x80, 0x32, 0x50, 0x5d, 0x01, 0x04, 0x99, 0x99, 0xe8, 0xee, 0x31, 0x31,
0x89, 0x1c, 0xdd, 0x3d, 0x26, 0x27, 0x77, 0xc2, 0x7e, 0x28, 0xc0, 0xe5, 0xe7, 0x1c, 0x8a, 0xfc,
0x0b, 0x0d, 0x50, 0x3c, 0x89, 0x83, 0x1e, 0x27, 0x4b, 0x4f, 0x4c, 0x4d, 0x37, 0xdf, 0x7d, 0x3d,
0xe6, 0xa4, 0xd0, 0x12, 0xa8, 0xd4, 0x63, 0xdc, 0xa3, 0xcf, 0xa9, 0x52, 0x7f, 0xa5, 0x41, 0x35,
0x94, 0x01, 0x42, 0x6f, 0xa5, 0x8c, 0x69, 0x24, 0xb3, 0xdd, 0x7c, 0xfb, 0x46, 0xbe, 0xa4, 0x6d,
0xb5, 0x32, 0x03, 0xe4, 0xf9, 0xe2, 0x67, 0x1a, 0xd4, 0xc2, 0x19, 0x23, 0x94, 0x22, 0x3b, 0x96,
0x19, 0x6f, 0x6e, 0xdc, 0xcc, 0x38, 0x7d, 0x78, 0x82, 0xa3, 0xc5, 0x00, 0x0a, 0x22, 0xc7, 0x94,
0x34, 0xf1, 0xc3, 0x39, 0xf5, 0xa4, 0x89, 0x1f, 0x49, 0x50, 0x25, 0x4c, 0x7c, 0xc7, 0x1e, 0x10,
0x65, 0x99, 0x89, 0x24, 0x54, 0x1a, 0xda, 0xf4, 0x65, 0x16, 0xc9, 0x60, 0xa5, 0xa1, 0x05, 0xcb,
0x4c, 0x66, 0x9f, 0x50, 0x8a, 0xb0, 0x1b, 0x96, 0x59, 0x34, 0x79, 0x95, 0xb0, 0xcc, 0x18, 0xa0,
0xb2, 0xcc, 0x82, 0x3c, 0x51, 0xd2, 0x32, 0x8b, 0x5d, 0x11, 0x24, 0x2d, 0xb3, 0x78, 0xaa, 0x29,
0x61, 0x1c, 0x19, 0x6e, 0x68, 0x99, 0x2d, 0x25, 0xa4, 0x94, 0xd0, 0xbb, 0x29, 0x46, 0x4c, 0xbc,
0x79, 0x68, 0xbe, 0xf7, 0x9a, 0xdc, 0xa9, 0x73, 0x9c, 0x9b, 0x5f, 0xce, 0xf1, 0xbf, 0xd3, 0x60,
0x39, 0x29, 0x1d, 0x85, 0x52, 0x70, 0x52, 0x6e, 0x2c, 0x9a, 0x9b, 0xaf, 0xcb, 0x3e, 0xdd, 0x5a,
0xfe, 0xac, 0x7f, 0x5a, 0xff, 0xb7, 0x2f, 0xd7, 0xb4, 0xff, 0xfc, 0x72, 0x4d, 0xfb, 0x9f, 0x2f,
0xd7, 0xb4, 0xbf, 0xff, 0xdf, 0xb5, 0xb9, 0xd3, 0x3c, 0xfb, 0x15, 0xe9, 0x77, 0x7f, 0x1b, 0x00,
0x00, 0xff, 0xff, 0x6d, 0x57, 0xfc, 0xd5, 0xcc, 0x3a, 0x00, 0x00,
0x01, 0x44, 0x2a, 0x17, 0xa7, 0x5c, 0x8e, 0x2b, 0xc9, 0xa3, 0x5d, 0x95, 0x4a, 0x1e, 0xf2, 0x94,
0x4a, 0xb9, 0xfc, 0x90, 0xe7, 0xfc, 0x85, 0x3c, 0xe5, 0x52, 0xf9, 0x03, 0x29, 0xc5, 0x2f, 0xc9,
0xaf, 0x48, 0xf5, 0x6d, 0xa6, 0xe7, 0x06, 0xae, 0x05, 0x49, 0x2f, 0xe4, 0xf4, 0xe9, 0xd3, 0xe7,
0x9c, 0x3e, 0xdd, 0x7d, 0x4e, 0xf7, 0xd7, 0x0d, 0x28, 0x39, 0xa3, 0xde, 0xe6, 0xc8, 0xb1, 0x3d,
0x1b, 0x55, 0x88, 0xd7, 0xeb, 0xbb, 0xc4, 0x99, 0x10, 0x67, 0x74, 0xda, 0x5c, 0x3e, 0xb7, 0xcf,
0x6d, 0x56, 0xd1, 0xa2, 0x5f, 0x9c, 0xa7, 0x79, 0x9b, 0xf2, 0xb4, 0x86, 0x93, 0x5e, 0x8f, 0xfd,
0x19, 0x9d, 0xb6, 0x2e, 0x27, 0xa2, 0xea, 0x0e, 0xab, 0x32, 0xc6, 0xde, 0x05, 0xfb, 0x33, 0x3a,
0x65, 0xff, 0x44, 0xe5, 0xdd, 0x73, 0xdb, 0x3e, 0x1f, 0x90, 0x96, 0x31, 0x32, 0x5b, 0x86, 0x65,
0xd9, 0x9e, 0xe1, 0x99, 0xb6, 0xe5, 0xf2, 0x5a, 0xfc, 0x97, 0x1a, 0xd4, 0x74, 0xe2, 0x8e, 0x6c,
0xcb, 0x25, 0xcf, 0x89, 0xd1, 0x27, 0x0e, 0xba, 0x07, 0xd0, 0x1b, 0x8c, 0x5d, 0x8f, 0x38, 0x27,
0x66, 0xbf, 0xa1, 0xad, 0x6b, 0x1b, 0xf3, 0x7a, 0x49, 0x50, 0xf6, 0xfa, 0xe8, 0x0e, 0x94, 0x86,
0x64, 0x78, 0xca, 0x6b, 0x33, 0xac, 0xb6, 0xc8, 0x09, 0x7b, 0x7d, 0xd4, 0x84, 0xa2, 0x43, 0x26,
0xa6, 0x6b, 0xda, 0x56, 0x23, 0xbb, 0xae, 0x6d, 0x64, 0x75, 0xbf, 0x4c, 0x1b, 0x3a, 0xc6, 0x99,
0x77, 0xe2, 0x11, 0x67, 0xd8, 0x98, 0xe7, 0x0d, 0x29, 0xa1, 0x4b, 0x9c, 0x21, 0xfe, 0x59, 0x0e,
0x2a, 0xba, 0x61, 0x9d, 0x13, 0x9d, 0xfc, 0x78, 0x4c, 0x5c, 0x0f, 0xd5, 0x21, 0x7b, 0x49, 0xae,
0x99, 0xfa, 0x8a, 0x4e, 0x3f, 0x79, 0x7b, 0xeb, 0x9c, 0x9c, 0x10, 0x8b, 0x2b, 0xae, 0xd0, 0xf6,
0xd6, 0x39, 0x69, 0x5b, 0x7d, 0xb4, 0x0c, 0xb9, 0x81, 0x39, 0x34, 0x3d, 0xa1, 0x95, 0x17, 0x42,
0xe6, 0xcc, 0x47, 0xcc, 0xd9, 0x01, 0x70, 0x6d, 0xc7, 0x3b, 0xb1, 0x9d, 0x3e, 0x71, 0x1a, 0xb9,
0x75, 0x6d, 0xa3, 0xb6, 0xf5, 0xe6, 0xa6, 0x3a, 0x10, 0x9b, 0xaa, 0x41, 0x9b, 0xc7, 0xb6, 0xe3,
0x75, 0x28, 0xaf, 0x5e, 0x72, 0xe5, 0x27, 0xfa, 0x00, 0xca, 0x4c, 0x88, 0x67, 0x38, 0xe7, 0xc4,
0x6b, 0xe4, 0x99, 0x94, 0x87, 0x37, 0x48, 0xe9, 0x32, 0x66, 0x9d, 0xa9, 0xe7, 0xdf, 0x08, 0x43,
0xc5, 0x25, 0x8e, 0x69, 0x0c, 0xcc, 0x2f, 0x8c, 0xd3, 0x01, 0x69, 0x14, 0xd6, 0xb5, 0x8d, 0xa2,
0x1e, 0xa2, 0xd1, 0xfe, 0x5f, 0x92, 0x6b, 0xf7, 0xc4, 0xb6, 0x06, 0xd7, 0x8d, 0x22, 0x63, 0x28,
0x52, 0x42, 0xc7, 0x1a, 0x5c, 0xb3, 0x41, 0xb3, 0xc7, 0x96, 0xc7, 0x6b, 0x4b, 0xac, 0xb6, 0xc4,
0x28, 0xac, 0x7a, 0x03, 0xea, 0x43, 0xd3, 0x3a, 0x19, 0xda, 0xfd, 0x13, 0xdf, 0x21, 0xc0, 0x1c,
0x52, 0x1b, 0x9a, 0xd6, 0x0b, 0xbb, 0xaf, 0x4b, 0xb7, 0x50, 0x4e, 0xe3, 0x2a, 0xcc, 0x59, 0x16,
0x9c, 0xc6, 0x95, 0xca, 0xb9, 0x09, 0x4b, 0x54, 0x66, 0xcf, 0x21, 0x86, 0x47, 0x02, 0xe6, 0x0a,
0x63, 0x5e, 0x1c, 0x9a, 0xd6, 0x0e, 0xab, 0x09, 0xf1, 0x1b, 0x57, 0x31, 0xfe, 0xaa, 0xe0, 0x37,
0xae, 0xc2, 0xfc, 0x78, 0x13, 0x4a, 0xbe, 0xcf, 0x51, 0x11, 0xe6, 0x0f, 0x3b, 0x87, 0xed, 0xfa,
0x1c, 0x02, 0xc8, 0x6f, 0x1f, 0xef, 0xb4, 0x0f, 0x77, 0xeb, 0x1a, 0x2a, 0x43, 0x61, 0xb7, 0xcd,
0x0b, 0x19, 0xfc, 0x14, 0x20, 0xf0, 0x2e, 0x2a, 0x40, 0x76, 0xbf, 0xfd, 0x69, 0x7d, 0x8e, 0xf2,
0xbc, 0x6a, 0xeb, 0xc7, 0x7b, 0x9d, 0xc3, 0xba, 0x46, 0x1b, 0xef, 0xe8, 0xed, 0xed, 0x6e, 0xbb,
0x9e, 0xa1, 0x1c, 0x2f, 0x3a, 0xbb, 0xf5, 0x2c, 0x2a, 0x41, 0xee, 0xd5, 0xf6, 0xc1, 0xcb, 0x76,
0x7d, 0x1e, 0xff, 0x52, 0x83, 0xaa, 0x18, 0x2f, 0xbe, 0x26, 0xd0, 0xf7, 0x20, 0x7f, 0xc1, 0xd6,
0x05, 0x9b, 0x8a, 0xe5, 0xad, 0xbb, 0x91, 0xc1, 0x0d, 0xad, 0x1d, 0x5d, 0xf0, 0x22, 0x0c, 0xd9,
0xcb, 0x89, 0xdb, 0xc8, 0xac, 0x67, 0x37, 0xca, 0x5b, 0xf5, 0x4d, 0xbe, 0x60, 0x37, 0xf7, 0xc9,
0xf5, 0x2b, 0x63, 0x30, 0x26, 0x3a, 0xad, 0x44, 0x08, 0xe6, 0x87, 0xb6, 0x43, 0xd8, 0x8c, 0x2d,
0xea, 0xec, 0x9b, 0x4e, 0x63, 0x36, 0x68, 0x62, 0xb6, 0xf2, 0x02, 0xfe, 0xb5, 0x06, 0x70, 0x34,
0xf6, 0xd2, 0x97, 0xc6, 0x32, 0xe4, 0x26, 0x54, 0xb0, 0x58, 0x16, 0xbc, 0xc0, 0xd6, 0x04, 0x31,
0x5c, 0xe2, 0xaf, 0x09, 0x5a, 0x40, 0xb7, 0xa0, 0x30, 0x72, 0xc8, 0xe4, 0xe4, 0x72, 0xc2, 0x94,
0x14, 0xf5, 0x3c, 0x2d, 0xee, 0x4f, 0xd0, 0x1b, 0x50, 0x31, 0xcf, 0x2d, 0xdb, 0x21, 0x27, 0x5c,
0x56, 0x8e, 0xd5, 0x96, 0x39, 0x8d, 0xd9, 0xad, 0xb0, 0x70, 0xc1, 0x79, 0x95, 0xe5, 0x80, 0x92,
0xb0, 0x05, 0x65, 0x66, 0xea, 0x4c, 0xee, 0x7b, 0x27, 0xb0, 0x31, 0xc3, 0x9a, 0xc5, 0x5d, 0x28,
0xac, 0xc6, 0x3f, 0x02, 0xb4, 0x4b, 0x06, 0xc4, 0x23, 0xb3, 0x44, 0x0f, 0xc5, 0x27, 0x59, 0xd5,
0x27, 0xf8, 0x17, 0x1a, 0x2c, 0x85, 0xc4, 0xcf, 0xd4, 0xad, 0x06, 0x14, 0xfa, 0x4c, 0x18, 0xb7,
0x20, 0xab, 0xcb, 0x22, 0x7a, 0x0c, 0x45, 0x61, 0x80, 0xdb, 0xc8, 0xa6, 0x4c, 0x9a, 0x02, 0xb7,
0xc9, 0xc5, 0xbf, 0xce, 0x40, 0x49, 0x74, 0xb4, 0x33, 0x42, 0xdb, 0x50, 0x75, 0x78, 0xe1, 0x84,
0xf5, 0x47, 0x58, 0xd4, 0x4c, 0x0f, 0x42, 0xcf, 0xe7, 0xf4, 0x8a, 0x68, 0xc2, 0xc8, 0xe8, 0xf7,
0xa0, 0x2c, 0x45, 0x8c, 0xc6, 0x9e, 0x70, 0x79, 0x23, 0x2c, 0x20, 0x98, 0x7f, 0xcf, 0xe7, 0x74,
0x10, 0xec, 0x47, 0x63, 0x0f, 0x75, 0x61, 0x59, 0x36, 0xe6, 0xbd, 0x11, 0x66, 0x64, 0x99, 0x94,
0xf5, 0xb0, 0x94, 0xf8, 0x50, 0x3d, 0x9f, 0xd3, 0x91, 0x68, 0xaf, 0x54, 0xaa, 0x26, 0x79, 0x57,
0x3c, 0x78, 0xc7, 0x4c, 0xea, 0x5e, 0x59, 0x71, 0x93, 0xba, 0x57, 0xd6, 0xd3, 0x12, 0x14, 0x44,
0x09, 0xff, 0x4b, 0x06, 0x40, 0x8e, 0x46, 0x67, 0x84, 0x76, 0xa1, 0xe6, 0x88, 0x52, 0xc8, 0x5b,
0x77, 0x12, 0xbd, 0x25, 0x06, 0x71, 0x4e, 0xaf, 0xca, 0x46, 0xdc, 0xb8, 0x1f, 0x40, 0xc5, 0x97,
0x12, 0x38, 0xec, 0x76, 0x82, 0xc3, 0x7c, 0x09, 0x65, 0xd9, 0x80, 0xba, 0xec, 0x63, 0x58, 0xf1,
0xdb, 0x27, 0xf8, 0xec, 0x8d, 0x29, 0x3e, 0xf3, 0x05, 0x2e, 0x49, 0x09, 0xaa, 0xd7, 0x54, 0xc3,
0x02, 0xb7, 0xdd, 0x4e, 0x70, 0x5b, 0xdc, 0x30, 0xea, 0x38, 0xa0, 0xf9, 0x92, 0x17, 0xf1, 0xff,
0x66, 0xa1, 0xb0, 0x63, 0x0f, 0x47, 0x86, 0x43, 0x47, 0x23, 0xef, 0x10, 0x77, 0x3c, 0xf0, 0x98,
0xbb, 0x6a, 0x5b, 0x0f, 0xc2, 0x12, 0x05, 0x9b, 0xfc, 0xaf, 0x33, 0x56, 0x5d, 0x34, 0xa1, 0x8d,
0x45, 0x7a, 0xcc, 0xbc, 0x46, 0x63, 0x91, 0x1c, 0x45, 0x13, 0xb9, 0x90, 0xb3, 0xc1, 0x42, 0x6e,
0x42, 0x61, 0x42, 0x9c, 0x20, 0xa5, 0x3f, 0x9f, 0xd3, 0x25, 0x01, 0xbd, 0x03, 0x0b, 0xd1, 0xf4,
0x92, 0x13, 0x3c, 0xb5, 0x5e, 0x38, 0x1b, 0x3d, 0x80, 0x4a, 0x28, 0xc7, 0xe5, 0x05, 0x5f, 0x79,
0xa8, 0xa4, 0xb8, 0x55, 0x19, 0x57, 0x69, 0x3e, 0xae, 0x3c, 0x9f, 0x93, 0x91, 0x75, 0x55, 0x46,
0xd6, 0xa2, 0x68, 0x25, 0x62, 0x6b, 0x28, 0xc8, 0xfc, 0x30, 0x1c, 0x64, 0xf0, 0x0f, 0xa1, 0x1a,
0x72, 0x10, 0xcd, 0x3b, 0xed, 0x8f, 0x5e, 0x6e, 0x1f, 0xf0, 0x24, 0xf5, 0x8c, 0xe5, 0x25, 0xbd,
0xae, 0xd1, 0x5c, 0x77, 0xd0, 0x3e, 0x3e, 0xae, 0x67, 0x50, 0x15, 0x4a, 0x87, 0x9d, 0xee, 0x09,
0xe7, 0xca, 0xe2, 0x67, 0xbe, 0x04, 0x91, 0xe4, 0x94, 0xdc, 0x36, 0xa7, 0xe4, 0x36, 0x4d, 0xe6,
0xb6, 0x4c, 0x90, 0xdb, 0x58, 0x9a, 0x3b, 0x68, 0x6f, 0x1f, 0xb7, 0xeb, 0xf3, 0x4f, 0x6b, 0x50,
0xe1, 0xfe, 0x3d, 0x19, 0x5b, 0x34, 0xd5, 0xfe, 0xa3, 0x06, 0x10, 0xac, 0x26, 0xd4, 0x82, 0x42,
0x8f, 0xeb, 0x69, 0x68, 0x2c, 0x18, 0xad, 0x24, 0x0e, 0x99, 0x2e, 0xb9, 0xd0, 0x77, 0xa0, 0xe0,
0x8e, 0x7b, 0x3d, 0xe2, 0xca, 0x94, 0x77, 0x2b, 0x1a, 0x0f, 0x45, 0xb4, 0xd2, 0x25, 0x1f, 0x6d,
0x72, 0x66, 0x98, 0x83, 0x31, 0x4b, 0x80, 0xd3, 0x9b, 0x08, 0x3e, 0xfc, 0xf7, 0x1a, 0x94, 0x95,
0xc9, 0xfb, 0x15, 0x83, 0xf0, 0x5d, 0x28, 0x31, 0x1b, 0x48, 0x5f, 0x84, 0xe1, 0xa2, 0x1e, 0x10,
0xd0, 0xef, 0x40, 0x49, 0xae, 0x00, 0x19, 0x89, 0x1b, 0xc9, 0x62, 0x3b, 0x23, 0x3d, 0x60, 0xc5,
0xfb, 0xb0, 0xc8, 0xbc, 0xd2, 0xa3, 0x9b, 0x6b, 0xe9, 0x47, 0x75, 0xfb, 0xa9, 0x45, 0xb6, 0x9f,
0x4d, 0x28, 0x8e, 0x2e, 0xae, 0x5d, 0xb3, 0x67, 0x0c, 0x84, 0x15, 0x7e, 0x19, 0x7f, 0x08, 0x48,
0x15, 0x36, 0x4b, 0x77, 0x71, 0x15, 0xca, 0xcf, 0x0d, 0xf7, 0x42, 0x98, 0x84, 0x1f, 0x43, 0x95,
0x16, 0xf7, 0x5f, 0xbd, 0x86, 0x8d, 0xec, 0x70, 0x20, 0xb9, 0x67, 0xf2, 0x39, 0x82, 0xf9, 0x0b,
0xc3, 0xbd, 0x60, 0x1d, 0xad, 0xea, 0xec, 0x1b, 0xbd, 0x03, 0xf5, 0x1e, 0xef, 0xe4, 0x49, 0xe4,
0xc8, 0xb0, 0x20, 0xe8, 0xfe, 0x4e, 0xf0, 0x13, 0xa8, 0xf0, 0x3e, 0x7c, 0xdd, 0x46, 0xe0, 0x45,
0x58, 0x38, 0xb6, 0x8c, 0x91, 0x7b, 0x61, 0xcb, 0xec, 0x46, 0x3b, 0x5d, 0x0f, 0x68, 0x33, 0x69,
0x7c, 0x1b, 0x16, 0x1c, 0x32, 0x34, 0x4c, 0xcb, 0xb4, 0xce, 0x4f, 0x4e, 0xaf, 0x3d, 0xe2, 0x8a,
0x03, 0x53, 0xcd, 0x27, 0x3f, 0xa5, 0x54, 0x6a, 0xda, 0xe9, 0xc0, 0x3e, 0x15, 0x61, 0x8e, 0x7d,
0xe3, 0x9f, 0x67, 0xa0, 0xf2, 0xb1, 0xe1, 0xf5, 0xe4, 0xd0, 0xa1, 0x3d, 0xa8, 0xf9, 0xc1, 0x8d,
0x51, 0x84, 0x2d, 0x91, 0x14, 0xcb, 0xda, 0xc8, 0xad, 0xb4, 0xcc, 0x8e, 0xd5, 0x9e, 0x4a, 0x60,
0xa2, 0x0c, 0xab, 0x47, 0x06, 0xbe, 0xa8, 0x4c, 0xba, 0x28, 0xc6, 0xa8, 0x8a, 0x52, 0x09, 0xa8,
0x03, 0xf5, 0x91, 0x63, 0x9f, 0x3b, 0xc4, 0x75, 0x7d, 0x61, 0x3c, 0x8d, 0xe1, 0x04, 0x61, 0x47,
0x82, 0x35, 0x10, 0xb7, 0x30, 0x0a, 0x93, 0x9e, 0x2e, 0x04, 0xfb, 0x19, 0x1e, 0x9c, 0xfe, 0x33,
0x03, 0x28, 0xde, 0xa9, 0xdf, 0x76, 0x8b, 0xf7, 0x10, 0x6a, 0xae, 0x67, 0x38, 0xb1, 0xc9, 0x56,
0x65, 0x54, 0x3f, 0xe2, 0xbf, 0x0d, 0xbe, 0x41, 0x27, 0x96, 0xed, 0x99, 0x67, 0xd7, 0x62, 0x97,
0x5c, 0x93, 0xe4, 0x43, 0x46, 0x45, 0x6d, 0x28, 0x9c, 0x99, 0x03, 0x8f, 0x38, 0x6e, 0x23, 0xb7,
0x9e, 0xdd, 0xa8, 0x6d, 0x3d, 0xbe, 0x69, 0x18, 0x36, 0x3f, 0x60, 0xfc, 0xdd, 0xeb, 0x11, 0xd1,
0x65, 0x5b, 0x75, 0xe7, 0x99, 0x0f, 0xed, 0xc6, 0x6f, 0x43, 0xf1, 0x73, 0x2a, 0x82, 0x9e, 0xb2,
0x0b, 0x7c, 0xb3, 0xc8, 0xca, 0xfc, 0x90, 0x7d, 0xe6, 0x18, 0xe7, 0x43, 0x62, 0x79, 0xf2, 0x1c,
0x28, 0xcb, 0xf8, 0x21, 0x40, 0xa0, 0x86, 0x86, 0xfc, 0xc3, 0xce, 0xd1, 0xcb, 0x6e, 0x7d, 0x0e,
0x55, 0xa0, 0x78, 0xd8, 0xd9, 0x6d, 0x1f, 0xb4, 0x69, 0x7e, 0xc0, 0x2d, 0xe9, 0xd2, 0xd0, 0x58,
0xaa, 0x3a, 0xb5, 0x90, 0x4e, 0xbc, 0x0a, 0xcb, 0x49, 0x03, 0x48, 0xf7, 0xa2, 0x55, 0x31, 0x4b,
0x67, 0x5a, 0x2a, 0xaa, 0xea, 0x4c, 0xb8, 0xbb, 0x0d, 0x28, 0xf0, 0xd9, 0xdb, 0x17, 0x9b, 0x73,
0x59, 0xa4, 0x8e, 0xe0, 0x93, 0x91, 0xf4, 0xc5, 0x28, 0xf9, 0xe5, 0xc4, 0xf0, 0x92, 0x4b, 0x0c,
0x2f, 0xe8, 0x01, 0x54, 0xfd, 0xd5, 0x60, 0xb8, 0x62, 0x2f, 0x50, 0xd2, 0x2b, 0x72, 0xa2, 0x53,
0x5a, 0xc8, 0xe9, 0x85, 0xb0, 0xd3, 0xd1, 0x43, 0xc8, 0x93, 0x09, 0xb1, 0x3c, 0xb7, 0x51, 0x66,
0x19, 0xa3, 0x2a, 0xf7, 0xee, 0x6d, 0x4a, 0xd5, 0x45, 0x25, 0xfe, 0x3e, 0x2c, 0xb2, 0x33, 0xd2,
0x33, 0xc7, 0xb0, 0xd4, 0xc3, 0x5c, 0xb7, 0x7b, 0x20, 0xdc, 0x4d, 0x3f, 0x51, 0x0d, 0x32, 0x7b,
0xbb, 0xc2, 0x09, 0x99, 0xbd, 0x5d, 0xfc, 0x53, 0x0d, 0x90, 0xda, 0x6e, 0x26, 0x3f, 0x47, 0x84,
0x4b, 0xf5, 0xd9, 0x40, 0xfd, 0x32, 0xe4, 0x88, 0xe3, 0xd8, 0x0e, 0xf3, 0x68, 0x49, 0xe7, 0x05,
0xfc, 0xa6, 0xb0, 0x41, 0x27, 0x13, 0xfb, 0xd2, 0x5f, 0x83, 0x5c, 0x9a, 0xe6, 0x9b, 0xba, 0x0f,
0x4b, 0x21, 0xae, 0x99, 0x32, 0xd7, 0x07, 0xb0, 0xc0, 0x84, 0xed, 0x5c, 0x90, 0xde, 0xe5, 0xc8,
0x36, 0xad, 0x98, 0x3e, 0x3a, 0x72, 0x41, 0x80, 0xa5, 0xfd, 0xe0, 0x1d, 0xab, 0xf8, 0xc4, 0x6e,
0xf7, 0x00, 0x7f, 0x0a, 0xab, 0x11, 0x39, 0xd2, 0xfc, 0x3f, 0x84, 0x72, 0xcf, 0x27, 0xba, 0x62,
0xaf, 0x73, 0x2f, 0x6c, 0x5c, 0xb4, 0xa9, 0xda, 0x02, 0x77, 0xe0, 0x56, 0x4c, 0xf4, 0x4c, 0x7d,
0x7e, 0x1b, 0x56, 0x98, 0xc0, 0x7d, 0x42, 0x46, 0xdb, 0x03, 0x73, 0x92, 0xea, 0xe9, 0x91, 0xe8,
0x94, 0xc2, 0xf8, 0xcd, 0xce, 0x0b, 0xfc, 0xfb, 0x42, 0x63, 0xd7, 0x1c, 0x92, 0xae, 0x7d, 0x90,
0x6e, 0x1b, 0xcd, 0x66, 0x97, 0xe4, 0xda, 0x15, 0xdb, 0x1a, 0xf6, 0x8d, 0xff, 0x49, 0x13, 0xae,
0x52, 0x9b, 0x7f, 0xc3, 0x33, 0x79, 0x0d, 0xe0, 0x9c, 0x2e, 0x19, 0xd2, 0xa7, 0x15, 0x1c, 0x51,
0x51, 0x28, 0xbe, 0x9d, 0x34, 0x7e, 0x57, 0x84, 0x9d, 0xcb, 0x62, 0x9e, 0xb3, 0x3f, 0x7e, 0x94,
0xbb, 0x07, 0x65, 0x46, 0x38, 0xf6, 0x0c, 0x6f, 0xec, 0xc6, 0x06, 0xe3, 0xcf, 0xc5, 0xb4, 0x97,
0x8d, 0x66, 0xea, 0xd7, 0x77, 0x20, 0xcf, 0x0e, 0x13, 0x72, 0x2b, 0x7d, 0x3b, 0x61, 0x3e, 0x72,
0x3b, 0x74, 0xc1, 0x88, 0x7f, 0xae, 0x41, 0xfe, 0x05, 0x83, 0x60, 0x15, 0xd3, 0xe6, 0xe5, 0x58,
0x58, 0xc6, 0x90, 0x03, 0x43, 0x25, 0x9d, 0x7d, 0xb3, 0xad, 0x27, 0x21, 0xce, 0x4b, 0xfd, 0x80,
0x6f, 0x71, 0x4b, 0xba, 0x5f, 0xa6, 0x3e, 0xeb, 0x0d, 0x4c, 0x62, 0x79, 0xac, 0x76, 0x9e, 0xd5,
0x2a, 0x14, 0xba, 0x7b, 0x36, 0xdd, 0x03, 0x62, 0x38, 0x96, 0x00, 0x4d, 0x8b, 0x7a, 0x40, 0xc0,
0x07, 0x50, 0xe7, 0x76, 0x6c, 0xf7, 0xfb, 0xca, 0x06, 0xd3, 0xd7, 0xa6, 0x45, 0xb4, 0x85, 0xa4,
0x65, 0xa2, 0xd2, 0x7e, 0xa5, 0xc1, 0xa2, 0x22, 0x6e, 0x26, 0xaf, 0xbe, 0x0b, 0x79, 0x0e, 0x52,
0x8b, 0x9d, 0xce, 0x72, 0xb8, 0x15, 0x57, 0xa3, 0x0b, 0x1e, 0xb4, 0x09, 0x05, 0xfe, 0x25, 0xcf,
0x00, 0xc9, 0xec, 0x92, 0x09, 0x3f, 0x84, 0x25, 0x41, 0x22, 0x43, 0x3b, 0x69, 0x61, 0xb0, 0xc1,
0xc0, 0x7f, 0x0a, 0xcb, 0x61, 0xb6, 0x99, 0xba, 0xa4, 0x18, 0x99, 0x79, 0x1d, 0x23, 0xb7, 0xa5,
0x91, 0x2f, 0x47, 0x7d, 0x65, 0x1f, 0x15, 0x9d, 0x31, 0xea, 0x78, 0x65, 0xc2, 0xe3, 0x15, 0x74,
0x40, 0x8a, 0xf8, 0x56, 0x3b, 0xb0, 0x24, 0xa7, 0xc3, 0x81, 0xe9, 0xfa, 0xdb, 0xf5, 0x2f, 0x00,
0xa9, 0xc4, 0x6f, 0xd5, 0xa0, 0xb7, 0xa4, 0x3b, 0x8e, 0x1c, 0x7b, 0x68, 0xa7, 0xba, 0x14, 0xff,
0x19, 0xac, 0x44, 0xf8, 0xbe, 0x6d, 0xbf, 0xed, 0x12, 0xb9, 0x59, 0x91, 0x7e, 0xfb, 0x10, 0x90,
0x4a, 0x9c, 0x29, 0x6b, 0xb5, 0x60, 0xf1, 0x85, 0x3d, 0xa1, 0xe1, 0x8f, 0x52, 0x83, 0x75, 0xcf,
0x31, 0x06, 0xdf, 0x15, 0x7e, 0x99, 0x2a, 0x57, 0x1b, 0xcc, 0xa4, 0xfc, 0xdf, 0x35, 0xa8, 0x6c,
0x0f, 0x0c, 0x67, 0x28, 0x15, 0xff, 0x00, 0xf2, 0xfc, 0xe4, 0x2c, 0xc0, 0xaa, 0xb7, 0xc2, 0x62,
0x54, 0x5e, 0x5e, 0xd8, 0xe6, 0xe7, 0x6c, 0xd1, 0x8a, 0x1a, 0x2e, 0xee, 0xb3, 0x76, 0x23, 0xf7,
0x5b, 0xbb, 0xe8, 0x3d, 0xc8, 0x19, 0xb4, 0x09, 0x4b, 0x33, 0xb5, 0x28, 0x66, 0xc1, 0xa4, 0xb1,
0xfd, 0x3d, 0xe7, 0xc2, 0xdf, 0x83, 0xb2, 0xa2, 0x01, 0x15, 0x20, 0xfb, 0xac, 0x2d, 0x36, 0xe3,
0xdb, 0x3b, 0xdd, 0xbd, 0x57, 0x1c, 0xac, 0xa9, 0x01, 0xec, 0xb6, 0xfd, 0x72, 0x06, 0x7f, 0x22,
0x5a, 0x89, 0x90, 0xae, 0xda, 0xa3, 0xa5, 0xd9, 0x93, 0x79, 0x2d, 0x7b, 0xae, 0xa0, 0x2a, 0xba,
0x3f, 0x6b, 0x8a, 0x62, 0xf2, 0x52, 0x52, 0x94, 0x62, 0xbc, 0x2e, 0x18, 0xf1, 0x02, 0x54, 0x45,
0xd2, 0x12, 0xf3, 0xef, 0xdf, 0x32, 0x50, 0x93, 0x94, 0x59, 0x41, 0x75, 0x89, 0x07, 0xf2, 0x24,
0xe7, 0xa3, 0x81, 0xab, 0x90, 0xef, 0x9f, 0x1e, 0x9b, 0x5f, 0xc8, 0x0b, 0x10, 0x51, 0xa2, 0xf4,
0x01, 0xd7, 0xc3, 0x6f, 0x21, 0x45, 0x89, 0x66, 0x23, 0xc7, 0x38, 0xf3, 0xf6, 0xac, 0x3e, 0xb9,
0x62, 0xb9, 0x6d, 0x5e, 0x0f, 0x08, 0x0c, 0x28, 0x11, 0xb7, 0x95, 0xec, 0x80, 0xa0, 0xdc, 0x5e,
0xa2, 0x47, 0x50, 0xa7, 0xdf, 0xdb, 0xa3, 0xd1, 0xc0, 0x24, 0x7d, 0x2e, 0xa0, 0xc0, 0x78, 0x62,
0x74, 0xaa, 0x9d, 0x6d, 0xa9, 0xdd, 0x46, 0x91, 0x45, 0x57, 0x51, 0x42, 0xeb, 0x50, 0xe6, 0xf6,
0xed, 0x59, 0x2f, 0x5d, 0xc2, 0xae, 0xf0, 0xb2, 0xba, 0x4a, 0x0a, 0x67, 0x4b, 0x88, 0x66, 0xcb,
0x25, 0x58, 0xdc, 0x1e, 0x7b, 0x17, 0x6d, 0xcb, 0x38, 0x1d, 0xc8, 0x48, 0x44, 0xb7, 0x33, 0x94,
0xb8, 0x6b, 0xba, 0x2a, 0x55, 0xb0, 0x86, 0x07, 0xa4, 0x0d, 0x4b, 0x94, 0x48, 0x2c, 0xcf, 0xec,
0x29, 0xe9, 0x41, 0x6e, 0x20, 0xb4, 0xc8, 0x06, 0xc2, 0x70, 0xdd, 0xcf, 0x6d, 0xa7, 0x2f, 0x7c,
0xee, 0x97, 0xf1, 0x84, 0x6b, 0x7c, 0xe9, 0x86, 0x36, 0x01, 0xbf, 0xa5, 0x14, 0xf4, 0x3e, 0x14,
0xec, 0x11, 0xbb, 0xa7, 0x16, 0x60, 0xc2, 0xea, 0x26, 0xbf, 0xd9, 0xde, 0x14, 0x82, 0x3b, 0xbc,
0x56, 0x97, 0x6c, 0x78, 0x23, 0xd0, 0xfb, 0x8c, 0x78, 0x53, 0xf4, 0xe2, 0xc7, 0xb0, 0x22, 0x39,
0x05, 0x76, 0x3e, 0x85, 0xb9, 0x03, 0xf7, 0x24, 0xf3, 0xce, 0x85, 0x61, 0x9d, 0x93, 0x23, 0x61,
0xe2, 0x57, 0xf5, 0xcf, 0x53, 0x68, 0xf8, 0x76, 0xb2, 0xf3, 0x9c, 0x3d, 0x50, 0x0d, 0x18, 0xbb,
0x62, 0xfa, 0x97, 0x74, 0xf6, 0x4d, 0x69, 0x8e, 0x3d, 0xf0, 0x37, 0x70, 0xf4, 0x1b, 0xef, 0xc0,
0x6d, 0x29, 0x43, 0x9c, 0xb4, 0xc2, 0x42, 0x62, 0x06, 0x25, 0x09, 0x11, 0x0e, 0xa3, 0x4d, 0xa7,
0x0f, 0x94, 0xca, 0x19, 0x76, 0x2d, 0x93, 0xa9, 0x29, 0x32, 0x57, 0xf8, 0x1c, 0xa2, 0x86, 0xa9,
0x39, 0x5a, 0x90, 0xa9, 0x00, 0x95, 0x2c, 0x06, 0x82, 0x92, 0x63, 0x03, 0x11, 0x13, 0xfd, 0x23,
0x58, 0xf3, 0x8d, 0xa0, 0x7e, 0x3b, 0x22, 0xce, 0xd0, 0x74, 0x5d, 0x05, 0x6d, 0x4d, 0xea, 0xf8,
0x5b, 0x30, 0x3f, 0x22, 0x22, 0x3c, 0x96, 0xb7, 0x90, 0x9c, 0x44, 0x4a, 0x63, 0x56, 0x8f, 0xfb,
0x70, 0x5f, 0x4a, 0xe7, 0x1e, 0x4d, 0x14, 0x1f, 0x35, 0x4a, 0x62, 0x50, 0x99, 0x14, 0x0c, 0x2a,
0x1b, 0xb9, 0x01, 0xf8, 0x90, 0x3b, 0x52, 0x2e, 0xd1, 0x99, 0xd2, 0xde, 0x3e, 0xf7, 0xa9, 0xbf,
0xb2, 0x67, 0x12, 0xf6, 0x57, 0x1a, 0xb7, 0xec, 0xeb, 0x0a, 0xc8, 0x84, 0xf5, 0x50, 0xc2, 0xeb,
0xb2, 0x88, 0x30, 0x54, 0xe8, 0x00, 0xe8, 0x2a, 0x02, 0x37, 0xaf, 0x87, 0x68, 0xf8, 0x14, 0x96,
0xc3, 0x61, 0x68, 0x26, 0x5b, 0x96, 0x21, 0xe7, 0xd9, 0x97, 0x44, 0xa6, 0x06, 0x5e, 0x90, 0xbe,
0xf3, 0x63, 0xd4, 0x4c, 0xbe, 0x33, 0x02, 0x61, 0x6c, 0x75, 0xcc, 0x6a, 0x2f, 0x9d, 0x58, 0x72,
0xe7, 0xcd, 0x0b, 0xf8, 0x10, 0x56, 0xa3, 0x11, 0x6b, 0x26, 0x93, 0x5f, 0xf1, 0xb5, 0x94, 0x14,
0xd4, 0x66, 0x92, 0xfb, 0x51, 0x10, 0x97, 0x94, 0xd8, 0x36, 0x93, 0x48, 0x1d, 0x9a, 0x49, 0xa1,
0xee, 0xeb, 0x58, 0x3a, 0x7e, 0xe4, 0x9b, 0x49, 0x98, 0x1b, 0x08, 0x9b, 0x7d, 0xf8, 0x83, 0x70,
0x95, 0x9d, 0x1a, 0xae, 0xc4, 0x22, 0x09, 0x02, 0xea, 0x37, 0x30, 0xe9, 0x84, 0x8e, 0x20, 0x96,
0xcf, 0xaa, 0x83, 0xa6, 0x33, 0x5f, 0x07, 0x2b, 0xc8, 0x89, 0xad, 0x66, 0x80, 0x99, 0x06, 0xe3,
0xe3, 0x20, 0x8c, 0xc7, 0x92, 0xc4, 0x4c, 0x82, 0x3f, 0x81, 0xf5, 0xf4, 0xfc, 0x30, 0x8b, 0xe4,
0x47, 0x2d, 0x28, 0xf9, 0xdb, 0x74, 0xe5, 0x95, 0x53, 0x19, 0x0a, 0x87, 0x9d, 0xe3, 0xa3, 0xed,
0x9d, 0x36, 0x7f, 0xe6, 0xb4, 0xd3, 0xd1, 0xf5, 0x97, 0x47, 0xdd, 0x7a, 0x66, 0xeb, 0x37, 0x59,
0xc8, 0xec, 0xbf, 0x42, 0x9f, 0x42, 0x8e, 0xdf, 0xf9, 0x4f, 0x79, 0xe8, 0xd1, 0x9c, 0xf6, 0xac,
0x01, 0xdf, 0xfa, 0xe9, 0x7f, 0xfd, 0xe6, 0x97, 0x99, 0x45, 0x5c, 0x69, 0x4d, 0xbe, 0xdb, 0xba,
0x9c, 0xb4, 0x58, 0x9a, 0x7a, 0xa2, 0x3d, 0x42, 0x1f, 0x41, 0xf6, 0x68, 0xec, 0xa1, 0xd4, 0x07,
0x20, 0xcd, 0xf4, 0x97, 0x0e, 0x78, 0x85, 0x09, 0x5d, 0xc0, 0x20, 0x84, 0x8e, 0xc6, 0x1e, 0x15,
0xf9, 0x63, 0x28, 0xab, 0xef, 0x14, 0x6e, 0x7c, 0x15, 0xd2, 0xbc, 0xf9, 0x0d, 0x04, 0xbe, 0xc7,
0x54, 0xdd, 0xc2, 0x48, 0xa8, 0xe2, 0x2f, 0x29, 0xd4, 0x5e, 0x74, 0xaf, 0x2c, 0x94, 0xfa, 0x66,
0xa4, 0x99, 0xfe, 0x2c, 0x22, 0xd6, 0x0b, 0xef, 0xca, 0xa2, 0x22, 0xff, 0x58, 0xbc, 0x88, 0xe8,
0x79, 0xe8, 0x7e, 0xc2, 0x8d, 0xb8, 0x7a, 0xf7, 0xdb, 0x5c, 0x4f, 0x67, 0x10, 0x4a, 0xee, 0x32,
0x25, 0xab, 0x78, 0x51, 0x28, 0xe9, 0xf9, 0x2c, 0x4f, 0xb4, 0x47, 0x5b, 0x3d, 0xc8, 0xb1, 0x7b,
0x15, 0xf4, 0x99, 0xfc, 0x68, 0x26, 0x5c, 0x30, 0xa5, 0x0c, 0x74, 0xe8, 0x46, 0x06, 0x2f, 0x33,
0x45, 0x35, 0x5c, 0xa2, 0x8a, 0xd8, 0xad, 0xca, 0x13, 0xed, 0xd1, 0x86, 0xf6, 0xbe, 0xb6, 0xf5,
0xcf, 0x39, 0xc8, 0x31, 0x40, 0x11, 0x5d, 0x02, 0x04, 0x77, 0x0c, 0xd1, 0xde, 0xc5, 0x6e, 0x2d,
0xa2, 0xbd, 0x8b, 0x5f, 0x4f, 0xe0, 0x26, 0x53, 0xba, 0x8c, 0x17, 0xa8, 0x52, 0x86, 0x53, 0xb6,
0x18, 0xf4, 0x4a, 0xfd, 0xf8, 0xd7, 0x9a, 0xc0, 0x53, 0xf9, 0x5a, 0x42, 0x49, 0xd2, 0x42, 0x17,
0x0d, 0xd1, 0xe9, 0x90, 0x70, 0xc9, 0x80, 0xbf, 0xcf, 0x14, 0xb6, 0x70, 0x3d, 0x50, 0xe8, 0x30,
0x8e, 0x27, 0xda, 0xa3, 0xcf, 0x1a, 0x78, 0x49, 0x78, 0x39, 0x52, 0x83, 0x7e, 0x02, 0xb5, 0x30,
0x90, 0x8e, 0x1e, 0x24, 0xe8, 0x8a, 0xe2, 0xf1, 0xcd, 0x37, 0xa7, 0x33, 0x09, 0x9b, 0xd6, 0x98,
0x4d, 0x42, 0x39, 0xd7, 0x7c, 0x49, 0xc8, 0xc8, 0xa0, 0x4c, 0x62, 0x0c, 0xd0, 0x3f, 0x68, 0xe2,
0x9e, 0x23, 0x40, 0xc6, 0x51, 0x92, 0xf4, 0x18, 0xee, 0xde, 0x7c, 0x78, 0x03, 0x97, 0x30, 0xe2,
0x0f, 0x98, 0x11, 0xbf, 0x8b, 0x97, 0x03, 0x23, 0x3c, 0x73, 0x48, 0x3c, 0x5b, 0x58, 0xf1, 0xd9,
0x5d, 0x7c, 0x2b, 0xe4, 0x9c, 0x50, 0x6d, 0x30, 0x58, 0x1c, 0xdd, 0x4e, 0x1c, 0xac, 0x10, 0x5a,
0x9e, 0x38, 0x58, 0x61, 0x68, 0x3c, 0x69, 0xb0, 0x38, 0x96, 0x9d, 0x34, 0x58, 0x7e, 0xcd, 0xd6,
0xff, 0xcd, 0x43, 0x61, 0x87, 0xbf, 0x44, 0x46, 0x36, 0x94, 0x7c, 0x70, 0x18, 0xad, 0x25, 0x21,
0x60, 0xc1, 0xb1, 0xa6, 0x79, 0x3f, 0xb5, 0x5e, 0x18, 0xf4, 0x06, 0x33, 0xe8, 0x0e, 0x5e, 0xa5,
0x9a, 0xc5, 0x63, 0xe7, 0x16, 0x87, 0x59, 0x5a, 0x46, 0xbf, 0x4f, 0x1d, 0xf1, 0x27, 0x50, 0x51,
0xd1, 0x5b, 0xf4, 0x46, 0x22, 0xea, 0xa6, 0x02, 0xc0, 0x4d, 0x3c, 0x8d, 0x45, 0x68, 0x7e, 0x93,
0x69, 0x5e, 0xc3, 0xb7, 0x13, 0x34, 0x3b, 0x8c, 0x35, 0xa4, 0x9c, 0x23, 0xaf, 0xc9, 0xca, 0x43,
0xc0, 0x6e, 0xb2, 0xf2, 0x30, 0x70, 0x3b, 0x55, 0xf9, 0x98, 0xb1, 0x52, 0xe5, 0x2e, 0x40, 0x80,
0xb1, 0xa2, 0x44, 0x5f, 0x2a, 0xe7, 0xba, 0x68, 0x70, 0x88, 0xc3, 0xb3, 0x18, 0x33, 0xb5, 0x62,
0xde, 0x45, 0xd4, 0x0e, 0x4c, 0xd7, 0xe3, 0x0b, 0xb3, 0x1a, 0x02, 0x4d, 0x51, 0x62, 0x7f, 0xc2,
0xc8, 0x6b, 0xf3, 0xc1, 0x54, 0x1e, 0xa1, 0xfd, 0x21, 0xd3, 0x7e, 0x1f, 0x37, 0x13, 0xb4, 0x8f,
0x38, 0x2f, 0x9d, 0x6c, 0x7f, 0x93, 0x87, 0xf2, 0x0b, 0xc3, 0xb4, 0x3c, 0x62, 0x19, 0x56, 0x8f,
0xa0, 0x53, 0xc8, 0xb1, 0x4c, 0x1d, 0x0d, 0xc4, 0x2a, 0xa0, 0x18, 0x0d, 0xc4, 0x21, 0xb4, 0x0d,
0xaf, 0x33, 0xc5, 0x4d, 0xbc, 0x42, 0x15, 0x0f, 0x03, 0xd1, 0x2d, 0x06, 0x92, 0xd1, 0x4e, 0x9f,
0x41, 0x5e, 0xdc, 0x31, 0x45, 0x04, 0x85, 0xb0, 0x9a, 0xe6, 0xdd, 0xe4, 0xca, 0xa4, 0xb9, 0xac,
0xaa, 0x71, 0x19, 0x1f, 0xd5, 0x33, 0x01, 0x08, 0xd0, 0xdf, 0xe8, 0x88, 0xc6, 0xc0, 0xe2, 0xe6,
0x7a, 0x3a, 0x43, 0x92, 0x4f, 0x55, 0x9d, 0x7d, 0x9f, 0x97, 0xea, 0xfd, 0x23, 0x98, 0x7f, 0x6e,
0xb8, 0x17, 0x28, 0x92, 0x7b, 0x95, 0x17, 0x4a, 0xcd, 0x66, 0x52, 0x95, 0xd0, 0x72, 0x9f, 0x69,
0xb9, 0xcd, 0x43, 0x99, 0xaa, 0xe5, 0xc2, 0x70, 0x69, 0x52, 0x43, 0x7d, 0xc8, 0xf3, 0x07, 0x4b,
0x51, 0xff, 0x85, 0x1e, 0x3d, 0x45, 0xfd, 0x17, 0x7e, 0xe3, 0x74, 0xb3, 0x96, 0x11, 0x14, 0xe5,
0x0b, 0x21, 0x14, 0xb9, 0x2e, 0x8e, 0xbc, 0x26, 0x6a, 0xae, 0xa5, 0x55, 0x0b, 0x5d, 0x0f, 0x98,
0xae, 0x7b, 0xb8, 0x11, 0x1b, 0x2b, 0xc1, 0xf9, 0x44, 0x7b, 0xf4, 0xbe, 0x86, 0x7e, 0x02, 0x10,
0x00, 0xe6, 0xb1, 0x15, 0x18, 0xc5, 0xde, 0x63, 0x2b, 0x30, 0x86, 0xb5, 0xe3, 0x4d, 0xa6, 0x77,
0x03, 0x3f, 0x88, 0xea, 0xf5, 0x1c, 0xc3, 0x72, 0xcf, 0x88, 0xf3, 0x1e, 0x07, 0x45, 0xdd, 0x0b,
0x73, 0x44, 0x17, 0xc3, 0xaf, 0xea, 0x30, 0x4f, 0x77, 0xc0, 0x74, 0xa3, 0x10, 0x60, 0x18, 0x51,
0x4b, 0x62, 0x00, 0x64, 0xd4, 0x92, 0x38, 0xfc, 0x11, 0xde, 0x28, 0xb0, 0xdf, 0xb0, 0x70, 0xb8,
0x80, 0x3a, 0xda, 0x86, 0xb2, 0x02, 0x72, 0xa0, 0x04, 0x61, 0x61, 0x64, 0x33, 0x9a, 0x7a, 0x12,
0x10, 0x12, 0x7c, 0x87, 0xe9, 0x5b, 0xe1, 0xa9, 0x87, 0xe9, 0xeb, 0x73, 0x0e, 0xaa, 0x50, 0xf4,
0x4e, 0xac, 0xc1, 0x84, 0xde, 0x85, 0xd7, 0xe1, 0x7a, 0x3a, 0x43, 0x6a, 0xef, 0x82, 0x45, 0xf8,
0x39, 0x54, 0x54, 0xa8, 0x03, 0x25, 0x18, 0x1f, 0x41, 0x63, 0xa3, 0x31, 0x3d, 0x09, 0x29, 0x09,
0x47, 0x19, 0xff, 0x47, 0x41, 0x92, 0x8d, 0x2a, 0x1e, 0x40, 0x41, 0x60, 0x1f, 0x49, 0x2e, 0x0d,
0x43, 0xb7, 0x49, 0x2e, 0x8d, 0x00, 0x27, 0xe1, 0x9d, 0x2c, 0xd3, 0x48, 0x8f, 0x77, 0x32, 0x6f,
0x0a, 0x6d, 0xcf, 0x88, 0x97, 0xa6, 0x2d, 0x40, 0x15, 0xd3, 0xb4, 0x29, 0x47, 0xeb, 0x34, 0x6d,
0xe7, 0xc4, 0x13, 0x6b, 0x53, 0x1e, 0x59, 0x51, 0x8a, 0x30, 0x35, 0x57, 0xe1, 0x69, 0x2c, 0x49,
0x07, 0x8d, 0x40, 0xa1, 0x4c, 0x54, 0x57, 0x00, 0x01, 0x32, 0x13, 0xdd, 0x3d, 0x26, 0x22, 0xcd,
0xd1, 0xdd, 0x63, 0x32, 0xb8, 0x13, 0x8e, 0x43, 0x81, 0x5e, 0x7e, 0xce, 0xa1, 0x9a, 0x7f, 0xa1,
0x01, 0x8a, 0x83, 0x38, 0xe8, 0x71, 0xb2, 0xf4, 0x44, 0xfc, 0xba, 0xf9, 0xee, 0xeb, 0x31, 0x27,
0xa5, 0x96, 0xc0, 0xa4, 0x1e, 0xe3, 0x1e, 0x7d, 0x4e, 0x8d, 0xfa, 0x0b, 0x0d, 0xaa, 0x21, 0x04,
0x08, 0xbd, 0x95, 0x32, 0xa6, 0x11, 0xf8, 0xbb, 0xf9, 0xf6, 0x8d, 0x7c, 0x49, 0xdb, 0x6a, 0x65,
0x06, 0xc8, 0xf3, 0xc5, 0xcf, 0x34, 0xa8, 0x85, 0x11, 0x23, 0x94, 0x22, 0x3b, 0x06, 0x9f, 0x37,
0x37, 0x6e, 0x66, 0x9c, 0x3e, 0x3c, 0xc1, 0xd1, 0x62, 0x00, 0x05, 0x81, 0x31, 0x25, 0x4d, 0xfc,
0x30, 0xf0, 0x9e, 0x34, 0xf1, 0x23, 0x00, 0x55, 0xc2, 0xc4, 0x77, 0xec, 0x01, 0x51, 0x96, 0x99,
0x00, 0xa1, 0xd2, 0xb4, 0x4d, 0x5f, 0x66, 0x11, 0x04, 0x2b, 0x4d, 0x5b, 0xb0, 0xcc, 0x24, 0xfa,
0x84, 0x52, 0x84, 0xdd, 0xb0, 0xcc, 0xa2, 0xe0, 0x55, 0xc2, 0x32, 0x63, 0x0a, 0x95, 0x65, 0x16,
0xe0, 0x44, 0x49, 0xcb, 0x2c, 0x76, 0x8f, 0x90, 0xb4, 0xcc, 0xe2, 0x50, 0x53, 0xc2, 0x38, 0x32,
0xbd, 0xa1, 0x65, 0xb6, 0x94, 0x00, 0x29, 0xa1, 0x77, 0x53, 0x9c, 0x98, 0x78, 0x3d, 0xd1, 0x7c,
0xef, 0x35, 0xb9, 0x53, 0xe7, 0x38, 0x77, 0xbf, 0x9c, 0xe3, 0x7f, 0xab, 0xc1, 0x72, 0x12, 0x1c,
0x85, 0x52, 0xf4, 0xa4, 0x5c, 0x6b, 0x34, 0x37, 0x5f, 0x97, 0x7d, 0xba, 0xb7, 0xfc, 0x59, 0xff,
0xb4, 0xfe, 0xaf, 0x5f, 0xae, 0x69, 0xff, 0xf1, 0xe5, 0x9a, 0xf6, 0xdf, 0x5f, 0xae, 0x69, 0x7f,
0xf7, 0x3f, 0x6b, 0x73, 0xa7, 0x79, 0xf6, 0x53, 0xd3, 0xef, 0xfe, 0x7f, 0x00, 0x00, 0x00, 0xff,
0xff, 0x15, 0xe9, 0x99, 0xb4, 0xf1, 0x3a, 0x00, 0x00,
}

View File

@ -1093,6 +1093,8 @@ message AuthDisableResponse {
message AuthStatusResponse {
ResponseHeader header = 1;
bool enabled = 2;
// authRevision is the current revision of auth store
uint64 authRevision = 3;
}
message AuthenticateResponse {

View File

@ -15,8 +15,10 @@
package e2e
import (
"context"
"fmt"
"os"
"syscall"
"testing"
"time"
@ -25,6 +27,7 @@ import (
func TestCtlV3AuthEnable(t *testing.T) { testCtl(t, authEnableTest) }
func TestCtlV3AuthDisable(t *testing.T) { testCtl(t, authDisableTest) }
func TestCtlV3AuthStatus(t *testing.T) { testCtl(t, authStatusTest) }
func TestCtlV3AuthWriteKey(t *testing.T) { testCtl(t, authCredWriteKeyTest) }
func TestCtlV3AuthRoleUpdate(t *testing.T) { testCtl(t, authRoleUpdateTest) }
func TestCtlV3AuthUserDeleteDuringOps(t *testing.T) { testCtl(t, authUserDeleteDuringOpsTest) }
@ -69,6 +72,7 @@ func TestCtlV3AuthJWTExpire(t *testing.T) { testCtl(t, authTestJWTExpire, withCf
func TestCtlV3AuthCertCNAndUsernameNoPassword(t *testing.T) {
testCtl(t, authTestCertCNAndUsernameNoPassword, withCfg(configClientTLSCertAuth))
}
func TestCtlV3AuthRevisionConsistency(t *testing.T) { testCtl(t, authTestRevisionConsistency) }
func authEnableTest(cx ctlCtx) {
if err := authEnable(cx); err != nil {
@ -141,6 +145,32 @@ func ctlV3AuthDisable(cx ctlCtx) error {
return spawnWithExpect(cmdArgs, "Authentication Disabled")
}
func authStatusTest(cx ctlCtx) {
cmdArgs := append(cx.PrefixArgs(), "auth", "status")
if err := spawnWithExpects(cmdArgs, "Authentication Status: false", "AuthRevision:"); err != nil {
cx.t.Fatal(err)
}
if err := authEnable(cx); err != nil {
cx.t.Fatal(err)
}
cx.user, cx.pass = "root", "root"
cmdArgs = append(cx.PrefixArgs(), "auth", "status")
if err := spawnWithExpects(cmdArgs, "Authentication Status: true", "AuthRevision:"); err != nil {
cx.t.Fatal(err)
}
cmdArgs = append(cx.PrefixArgs(), "auth", "status", "--write-out", "json")
if err := spawnWithExpect(cmdArgs, "enabled"); err != nil {
cx.t.Fatal(err)
}
if err := spawnWithExpect(cmdArgs, "authRevision"); err != nil {
cx.t.Fatal(err)
}
}
func authCredWriteKeyTest(cx ctlCtx) {
// baseline key to check for failed puts
if err := ctlV3Put(cx, "foo", "a", ""); err != nil {
@ -1130,3 +1160,52 @@ func authTestJWTExpire(cx ctlCtx) {
cx.t.Error(err)
}
}
func authTestRevisionConsistency(cx ctlCtx) {
if err := authEnable(cx); err != nil {
cx.t.Fatal(err)
}
cx.user, cx.pass = "root", "root"
// add user
if err := ctlV3User(cx, []string{"add", "test-user", "--interactive=false"}, "User test-user created", []string{"pass"}); err != nil {
cx.t.Fatal(err)
}
// delete the same user
if err := ctlV3User(cx, []string{"delete", "test-user"}, "User test-user deleted", []string{}); err != nil {
cx.t.Fatal(err)
}
// get node0 auth revision
node0 := cx.epc.procs[0]
endpoint := node0.EndpointsV3()[0]
cli, err := clientv3.New(clientv3.Config{Endpoints: []string{endpoint}, Username: cx.user, Password: cx.pass, DialTimeout: 3 * time.Second})
if err != nil {
cx.t.Fatal(err)
}
defer cli.Close()
sresp, err := cli.AuthStatus(context.TODO())
if err != nil {
cx.t.Fatal(err)
}
oldAuthRevision := sresp.AuthRevision
// restart the node
node0.WithStopSignal(syscall.SIGINT)
if err := node0.Restart(); err != nil {
cx.t.Fatal(err)
}
// get node0 auth revision again
sresp, err = cli.AuthStatus(context.TODO())
if err != nil {
cx.t.Fatal(err)
}
newAuthRevision := sresp.AuthRevision
// assert AuthRevision equal
if newAuthRevision != oldAuthRevision {
cx.t.Fatalf("auth revison shouldn't change when restarting etcd, expected: %d, got: %d", oldAuthRevision, newAuthRevision)
}
}