From 06f545d127a4ff94f68a389e780047cc55a837e0 Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Thu, 9 Mar 2023 15:43:24 +0800 Subject: [PATCH] Add feder proto Signed-off-by: cai.zhang --- go-api/commonpb/common.pb.go | 576 ++++++++++----------- go-api/federpb/feder.pb.go | 382 ++++++++++++++ go-api/milvuspb/milvus.pb.go | 938 +++++++++++++++++++---------------- go-api/schemapb/schema.pb.go | 10 +- proto/common.proto | 2 + proto/feder.proto | 40 ++ proto/milvus.proto | 4 + scripts/proto_gen_go.sh | 7 + 8 files changed, 1245 insertions(+), 714 deletions(-) create mode 100644 go-api/federpb/feder.pb.go create mode 100644 proto/feder.proto diff --git a/go-api/commonpb/common.pb.go b/go-api/commonpb/common.pb.go index 5ec6b0d..268ab3d 100644 --- a/go-api/commonpb/common.pb.go +++ b/go-api/commonpb/common.pb.go @@ -359,13 +359,15 @@ const ( MsgType_LoadPartitions MsgType = 205 MsgType_ReleasePartitions MsgType = 206 // DEFINE REQUESTS: SEGMENT - MsgType_ShowSegments MsgType = 250 - MsgType_DescribeSegment MsgType = 251 - MsgType_LoadSegments MsgType = 252 - MsgType_ReleaseSegments MsgType = 253 - MsgType_HandoffSegments MsgType = 254 - MsgType_LoadBalanceSegments MsgType = 255 - MsgType_DescribeSegments MsgType = 256 + MsgType_ShowSegments MsgType = 250 + MsgType_DescribeSegment MsgType = 251 + MsgType_LoadSegments MsgType = 252 + MsgType_ReleaseSegments MsgType = 253 + MsgType_HandoffSegments MsgType = 254 + MsgType_LoadBalanceSegments MsgType = 255 + MsgType_DescribeSegments MsgType = 256 + MsgType_FederListIndexedSegment MsgType = 257 + MsgType_FederDescribeSegmentIndexData MsgType = 258 // DEFINITION REQUESTS: INDEX MsgType_CreateIndex MsgType = 300 MsgType_DescribeIndex MsgType = 301 @@ -468,6 +470,8 @@ var MsgType_name = map[int32]string{ 254: "HandoffSegments", 255: "LoadBalanceSegments", 256: "DescribeSegments", + 257: "FederListIndexedSegment", + 258: "FederDescribeSegmentIndexData", 300: "CreateIndex", 301: "DescribeIndex", 302: "DropIndex", @@ -532,97 +536,99 @@ var MsgType_name = map[int32]string{ } var MsgType_value = map[string]int32{ - "Undefined": 0, - "CreateCollection": 100, - "DropCollection": 101, - "HasCollection": 102, - "DescribeCollection": 103, - "ShowCollections": 104, - "GetSystemConfigs": 105, - "LoadCollection": 106, - "ReleaseCollection": 107, - "CreateAlias": 108, - "DropAlias": 109, - "AlterAlias": 110, - "AlterCollection": 111, - "RenameCollection": 112, - "DescribeAlias": 113, - "ListAliases": 114, - "CreatePartition": 200, - "DropPartition": 201, - "HasPartition": 202, - "DescribePartition": 203, - "ShowPartitions": 204, - "LoadPartitions": 205, - "ReleasePartitions": 206, - "ShowSegments": 250, - "DescribeSegment": 251, - "LoadSegments": 252, - "ReleaseSegments": 253, - "HandoffSegments": 254, - "LoadBalanceSegments": 255, - "DescribeSegments": 256, - "CreateIndex": 300, - "DescribeIndex": 301, - "DropIndex": 302, - "Insert": 400, - "Delete": 401, - "Flush": 402, - "ResendSegmentStats": 403, - "Upsert": 404, - "Search": 500, - "SearchResult": 501, - "GetIndexState": 502, - "GetIndexBuildProgress": 503, - "GetCollectionStatistics": 504, - "GetPartitionStatistics": 505, - "Retrieve": 506, - "RetrieveResult": 507, - "WatchDmChannels": 508, - "RemoveDmChannels": 509, - "WatchQueryChannels": 510, - "RemoveQueryChannels": 511, - "SealedSegmentsChangeInfo": 512, - "WatchDeltaChannels": 513, - "GetShardLeaders": 514, - "GetReplicas": 515, - "UnsubDmChannel": 516, - "GetDistribution": 517, - "SyncDistribution": 518, - "SegmentInfo": 600, - "SystemInfo": 601, - "GetRecoveryInfo": 602, - "GetSegmentState": 603, - "TimeTick": 1200, - "QueryNodeStats": 1201, - "LoadIndex": 1202, - "RequestID": 1203, - "RequestTSO": 1204, - "AllocateSegment": 1205, - "SegmentStatistics": 1206, - "SegmentFlushDone": 1207, - "DataNodeTt": 1208, - "CreateCredential": 1500, - "GetCredential": 1501, - "DeleteCredential": 1502, - "UpdateCredential": 1503, - "ListCredUsernames": 1504, - "CreateRole": 1600, - "DropRole": 1601, - "OperateUserRole": 1602, - "SelectRole": 1603, - "SelectUser": 1604, - "SelectResource": 1605, - "OperatePrivilege": 1606, - "SelectGrant": 1607, - "RefreshPolicyInfoCache": 1608, - "ListPolicy": 1609, - "CreateResourceGroup": 1700, - "DropResourceGroup": 1701, - "ListResourceGroups": 1702, - "DescribeResourceGroup": 1703, - "TransferNode": 1704, - "TransferReplica": 1705, + "Undefined": 0, + "CreateCollection": 100, + "DropCollection": 101, + "HasCollection": 102, + "DescribeCollection": 103, + "ShowCollections": 104, + "GetSystemConfigs": 105, + "LoadCollection": 106, + "ReleaseCollection": 107, + "CreateAlias": 108, + "DropAlias": 109, + "AlterAlias": 110, + "AlterCollection": 111, + "RenameCollection": 112, + "DescribeAlias": 113, + "ListAliases": 114, + "CreatePartition": 200, + "DropPartition": 201, + "HasPartition": 202, + "DescribePartition": 203, + "ShowPartitions": 204, + "LoadPartitions": 205, + "ReleasePartitions": 206, + "ShowSegments": 250, + "DescribeSegment": 251, + "LoadSegments": 252, + "ReleaseSegments": 253, + "HandoffSegments": 254, + "LoadBalanceSegments": 255, + "DescribeSegments": 256, + "FederListIndexedSegment": 257, + "FederDescribeSegmentIndexData": 258, + "CreateIndex": 300, + "DescribeIndex": 301, + "DropIndex": 302, + "Insert": 400, + "Delete": 401, + "Flush": 402, + "ResendSegmentStats": 403, + "Upsert": 404, + "Search": 500, + "SearchResult": 501, + "GetIndexState": 502, + "GetIndexBuildProgress": 503, + "GetCollectionStatistics": 504, + "GetPartitionStatistics": 505, + "Retrieve": 506, + "RetrieveResult": 507, + "WatchDmChannels": 508, + "RemoveDmChannels": 509, + "WatchQueryChannels": 510, + "RemoveQueryChannels": 511, + "SealedSegmentsChangeInfo": 512, + "WatchDeltaChannels": 513, + "GetShardLeaders": 514, + "GetReplicas": 515, + "UnsubDmChannel": 516, + "GetDistribution": 517, + "SyncDistribution": 518, + "SegmentInfo": 600, + "SystemInfo": 601, + "GetRecoveryInfo": 602, + "GetSegmentState": 603, + "TimeTick": 1200, + "QueryNodeStats": 1201, + "LoadIndex": 1202, + "RequestID": 1203, + "RequestTSO": 1204, + "AllocateSegment": 1205, + "SegmentStatistics": 1206, + "SegmentFlushDone": 1207, + "DataNodeTt": 1208, + "CreateCredential": 1500, + "GetCredential": 1501, + "DeleteCredential": 1502, + "UpdateCredential": 1503, + "ListCredUsernames": 1504, + "CreateRole": 1600, + "DropRole": 1601, + "OperateUserRole": 1602, + "SelectRole": 1603, + "SelectUser": 1604, + "SelectResource": 1605, + "OperatePrivilege": 1606, + "SelectGrant": 1607, + "RefreshPolicyInfoCache": 1608, + "ListPolicy": 1609, + "CreateResourceGroup": 1700, + "DropResourceGroup": 1701, + "ListResourceGroups": 1702, + "DescribeResourceGroup": 1703, + "TransferNode": 1704, + "TransferReplica": 1705, } func (x MsgType) String() string { @@ -1614,191 +1620,193 @@ func init() { func init() { proto.RegisterFile("common.proto", fileDescriptor_555bd8c177793206) } var fileDescriptor_555bd8c177793206 = []byte{ - // 2971 bytes of a gzipped FileDescriptorProto + // 2998 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x59, 0x59, 0x70, 0x5c, 0x47, - 0xd5, 0xf6, 0x68, 0x46, 0xcb, 0xf4, 0x8c, 0xa4, 0x76, 0x7b, 0x1b, 0xdb, 0xb2, 0x2d, 0xeb, 0x4f, - 0x7e, 0xcc, 0x10, 0xcb, 0x89, 0x03, 0x49, 0xa0, 0x2a, 0x14, 0xd2, 0x8c, 0x24, 0x4f, 0x45, 0x5b, - 0xee, 0xc8, 0x81, 0xa2, 0x0a, 0x5c, 0x3d, 0xf7, 0x1e, 0x8d, 0xda, 0xbe, 0x73, 0xfb, 0xe6, 0x76, - 0x8f, 0xac, 0xc9, 0x53, 0x08, 0xcb, 0x33, 0x5b, 0x15, 0x6f, 0x14, 0x0f, 0xec, 0x05, 0x29, 0x76, - 0x78, 0x04, 0xc2, 0x92, 0xb0, 0x3d, 0xb3, 0xc3, 0x03, 0x0f, 0xf0, 0xce, 0x9a, 0x95, 0x3a, 0xdd, - 0x77, 0x95, 0x1d, 0x78, 0xe0, 0x6d, 0xfa, 0x3b, 0xa7, 0xcf, 0xd6, 0xa7, 0xcf, 0x39, 0x7d, 0x87, - 0xd4, 0x5d, 0x39, 0x18, 0xc8, 0x60, 0x31, 0x8c, 0xa4, 0x96, 0xec, 0xd8, 0x40, 0xf8, 0xfb, 0x43, - 0x65, 0x57, 0x8b, 0x96, 0x74, 0x66, 0xbe, 0x2f, 0x65, 0xdf, 0x87, 0x2b, 0x06, 0xec, 0x0d, 0x77, - 0xaf, 0x78, 0xa0, 0xdc, 0x48, 0x84, 0x5a, 0x46, 0x96, 0x71, 0x41, 0x91, 0x89, 0xae, 0xe6, 0x7a, - 0xa8, 0xd8, 0xa3, 0x84, 0x40, 0x14, 0xc9, 0xe8, 0x86, 0x2b, 0x3d, 0x68, 0x94, 0xe6, 0x4b, 0x97, - 0x66, 0xae, 0x9e, 0x5f, 0xbc, 0x8b, 0xd4, 0xc5, 0x15, 0x64, 0x6b, 0x49, 0x0f, 0x9c, 0x2a, 0x24, - 0x3f, 0xd9, 0x49, 0x32, 0x11, 0x01, 0x57, 0x32, 0x68, 0x8c, 0xcd, 0x97, 0x2e, 0x55, 0x9d, 0x78, - 0xc5, 0x18, 0xa9, 0x18, 0x81, 0xe5, 0xf9, 0xd2, 0xa5, 0x71, 0xc7, 0xfc, 0x5e, 0x78, 0x88, 0xd4, - 0x1f, 0x83, 0xd1, 0x13, 0xdc, 0x1f, 0xc2, 0x36, 0x17, 0x11, 0xa3, 0xa4, 0x7c, 0x0b, 0x46, 0x46, - 0x67, 0xd5, 0xc1, 0x9f, 0xec, 0x38, 0x19, 0xdf, 0x47, 0x72, 0x2c, 0xcc, 0x2e, 0x16, 0x1e, 0x24, - 0xb5, 0xc7, 0x60, 0xd4, 0xe6, 0x9a, 0xbf, 0xce, 0x36, 0x46, 0x2a, 0x1e, 0xd7, 0xdc, 0xec, 0xaa, - 0x3b, 0xe6, 0xf7, 0xc2, 0x1c, 0xa9, 0x2c, 0xfb, 0xb2, 0x97, 0x89, 0x2c, 0x19, 0x62, 0x2c, 0x72, - 0x9f, 0xd0, 0x6d, 0x9f, 0xbb, 0xb0, 0x27, 0x7d, 0x0f, 0x22, 0x63, 0x12, 0xca, 0xd5, 0xbc, 0x9f, - 0xc8, 0xd5, 0xbc, 0xcf, 0x1e, 0x21, 0x15, 0x3d, 0x0a, 0xad, 0x35, 0x33, 0x57, 0xef, 0xb9, 0x6b, - 0x54, 0x72, 0x62, 0x76, 0x46, 0x21, 0x38, 0x66, 0x07, 0x86, 0xc5, 0x28, 0x52, 0x8d, 0xf2, 0x7c, - 0xf9, 0x52, 0xdd, 0x89, 0x57, 0x0b, 0xef, 0x29, 0xe8, 0x5d, 0x8b, 0xe4, 0x30, 0x64, 0x1d, 0x52, - 0x0f, 0x33, 0x4c, 0x35, 0x4a, 0xf3, 0xe5, 0x4b, 0xb5, 0xab, 0xf7, 0xfe, 0x37, 0x6d, 0xc6, 0x68, - 0xa7, 0xb0, 0x75, 0xe1, 0x32, 0x99, 0x5c, 0xf2, 0xbc, 0x08, 0x94, 0x62, 0x33, 0x64, 0x4c, 0x84, - 0xb1, 0x33, 0x63, 0x22, 0xc4, 0x18, 0x85, 0x32, 0xd2, 0xc6, 0x97, 0xb2, 0x63, 0x7e, 0x2f, 0x3c, - 0x5b, 0x22, 0x93, 0x1b, 0xaa, 0xbf, 0xcc, 0x15, 0xb0, 0x87, 0xc9, 0xd4, 0x40, 0xf5, 0x6f, 0x18, - 0x7f, 0x6d, 0x16, 0xcc, 0xdd, 0xd5, 0x82, 0x0d, 0xd5, 0x37, 0x7e, 0x4e, 0x0e, 0xec, 0x0f, 0x0c, - 0xf0, 0x40, 0xf5, 0x3b, 0xed, 0x58, 0xb2, 0x5d, 0xb0, 0x39, 0x52, 0xd5, 0x62, 0x00, 0x4a, 0xf3, - 0x41, 0x68, 0x92, 0xa0, 0xe2, 0x64, 0x00, 0x3b, 0x43, 0xa6, 0x94, 0x1c, 0x46, 0x2e, 0x74, 0xda, - 0x8d, 0x8a, 0xd9, 0x96, 0xae, 0x91, 0xa6, 0x79, 0xd4, 0x07, 0xdd, 0x69, 0x37, 0xc6, 0x2d, 0x2d, - 0x59, 0x2f, 0x3c, 0x4a, 0xaa, 0x1b, 0xaa, 0x7f, 0x0d, 0xb8, 0x07, 0x11, 0xbb, 0x9f, 0x54, 0x7a, - 0x5c, 0x59, 0x6b, 0x6b, 0xaf, 0x6f, 0x2d, 0x7a, 0xe7, 0x18, 0xce, 0x85, 0xf7, 0x92, 0x7a, 0x7b, - 0x63, 0xfd, 0x7f, 0x90, 0x80, 0x6e, 0xa9, 0x3d, 0x1e, 0x79, 0x9b, 0x7c, 0x90, 0x24, 0x69, 0x06, - 0x2c, 0xbc, 0x54, 0x22, 0xf5, 0xed, 0x48, 0xec, 0x0b, 0x1f, 0xfa, 0xb0, 0x72, 0xa0, 0xd9, 0x3b, - 0x48, 0x4d, 0xf6, 0x6e, 0x82, 0xab, 0xf3, 0x71, 0xbd, 0x70, 0x57, 0x3d, 0x5b, 0x86, 0xcf, 0x84, - 0x96, 0xc8, 0xf4, 0x37, 0xdb, 0x22, 0x34, 0x96, 0x10, 0x26, 0x82, 0xff, 0x63, 0x3a, 0x5a, 0x31, - 0xa9, 0x11, 0xce, 0xac, 0x2c, 0x02, 0xac, 0x49, 0x8e, 0xc6, 0x02, 0x03, 0x3e, 0x80, 0x1b, 0x22, - 0xf0, 0xe0, 0x20, 0xbe, 0xa5, 0x31, 0x2f, 0xba, 0xd2, 0x41, 0x98, 0xdd, 0x47, 0xd8, 0x1d, 0xbc, - 0xca, 0x1c, 0xd8, 0xb8, 0x43, 0x0f, 0x31, 0xab, 0x85, 0x55, 0x52, 0xef, 0x42, 0x7f, 0x00, 0x81, - 0xc6, 0xd2, 0xa2, 0x30, 0x56, 0xf1, 0xba, 0xd3, 0x36, 0xae, 0x97, 0x9d, 0x0c, 0x60, 0x0d, 0x32, - 0xb9, 0x39, 0x1c, 0x38, 0xf2, 0xb6, 0x8a, 0x13, 0x27, 0x59, 0x36, 0x9f, 0x23, 0xa4, 0x9a, 0xd6, - 0x1a, 0x56, 0x23, 0x93, 0xdd, 0xa1, 0xeb, 0x82, 0x52, 0xf4, 0x08, 0x3b, 0x46, 0x66, 0xaf, 0x07, - 0x70, 0x10, 0x82, 0xab, 0xc1, 0x33, 0x3c, 0xb4, 0xc4, 0x8e, 0x92, 0xe9, 0x96, 0x0c, 0x02, 0x70, - 0xf5, 0x2a, 0x17, 0x3e, 0x78, 0x74, 0x8c, 0x1d, 0x27, 0x74, 0x1b, 0xa2, 0x81, 0x50, 0x4a, 0xc8, - 0xa0, 0x0d, 0x81, 0x00, 0x8f, 0x96, 0xd9, 0x29, 0x72, 0xac, 0x25, 0x7d, 0x1f, 0x5c, 0x2d, 0x64, - 0xb0, 0x29, 0xf5, 0xca, 0x81, 0x50, 0x5a, 0xd1, 0x0a, 0x8a, 0xed, 0xf8, 0x3e, 0xf4, 0xb9, 0xbf, - 0x14, 0xf5, 0x87, 0x68, 0x20, 0x1d, 0x47, 0x19, 0x31, 0xd8, 0x16, 0x03, 0x08, 0x50, 0x12, 0x9d, - 0xcc, 0xa1, 0xc6, 0x6b, 0x3c, 0x23, 0x3a, 0xc5, 0x4e, 0x93, 0x13, 0x31, 0x9a, 0x53, 0xc0, 0x07, - 0x40, 0xab, 0x6c, 0x96, 0xd4, 0x62, 0xd2, 0xce, 0xd6, 0xf6, 0x63, 0x94, 0xe4, 0x24, 0x38, 0xf2, - 0xb6, 0x03, 0xae, 0x8c, 0x3c, 0x5a, 0xcb, 0x99, 0xf0, 0x04, 0xb8, 0x5a, 0x46, 0x9d, 0x36, 0xad, - 0xa3, 0xc1, 0x31, 0xd8, 0x05, 0x1e, 0xb9, 0x7b, 0x0e, 0xa8, 0xa1, 0xaf, 0xe9, 0x34, 0xa3, 0xa4, - 0xbe, 0x2a, 0x7c, 0xd8, 0x94, 0x7a, 0x55, 0x0e, 0x03, 0x8f, 0xce, 0xb0, 0x19, 0x42, 0x36, 0x40, - 0xf3, 0x38, 0x02, 0xb3, 0xa8, 0xb6, 0xc5, 0xdd, 0x3d, 0x88, 0x01, 0xca, 0x4e, 0x12, 0xd6, 0xe2, - 0x41, 0x20, 0x75, 0x2b, 0x02, 0xae, 0x61, 0xd5, 0x54, 0x0c, 0x7a, 0x14, 0xcd, 0x29, 0xe0, 0xc2, - 0x07, 0xca, 0x32, 0xee, 0x36, 0xf8, 0x90, 0x72, 0x1f, 0xcb, 0xb8, 0x63, 0x1c, 0xb9, 0x8f, 0xa3, - 0xf1, 0xcb, 0x43, 0xe1, 0x7b, 0x26, 0x24, 0xf6, 0x58, 0x4e, 0xa0, 0x8d, 0xb1, 0xf1, 0x9b, 0xeb, - 0x9d, 0xee, 0x0e, 0x3d, 0xc9, 0x4e, 0x90, 0xa3, 0x31, 0xb2, 0x01, 0x3a, 0x12, 0xae, 0x09, 0xde, - 0x29, 0x34, 0x75, 0x6b, 0xa8, 0xb7, 0x76, 0x37, 0x60, 0x20, 0xa3, 0x11, 0x6d, 0xe0, 0x81, 0x1a, - 0x49, 0xc9, 0x11, 0xd1, 0xd3, 0xa8, 0x61, 0x65, 0x10, 0xea, 0x51, 0x16, 0x5e, 0x7a, 0x86, 0x9d, - 0x25, 0xa7, 0xae, 0x87, 0x1e, 0xd7, 0xd0, 0x19, 0x60, 0x39, 0xdb, 0xe1, 0xea, 0x16, 0xba, 0x3b, - 0x8c, 0x80, 0x9e, 0x65, 0x67, 0xc8, 0xc9, 0xe2, 0x59, 0xa4, 0xc1, 0x9a, 0xc3, 0x8d, 0xd6, 0xdb, - 0x56, 0x04, 0x1e, 0x04, 0x5a, 0x70, 0x3f, 0xd9, 0x78, 0x2e, 0x93, 0x7a, 0x27, 0xf1, 0x3c, 0x12, - 0xad, 0xe7, 0x77, 0x12, 0x2f, 0xb0, 0x06, 0x39, 0xbe, 0x06, 0xfa, 0x4e, 0xca, 0x3c, 0x52, 0xd6, - 0x85, 0x32, 0xa4, 0xeb, 0x0a, 0x22, 0x95, 0x50, 0x2e, 0x32, 0x46, 0x66, 0xd6, 0x40, 0x23, 0x98, - 0x60, 0x0b, 0x18, 0x27, 0x6b, 0x9e, 0x23, 0x7d, 0x48, 0xe0, 0xff, 0xc3, 0x18, 0xb4, 0x23, 0x19, - 0xe6, 0xc1, 0x7b, 0xd0, 0xcd, 0xad, 0x10, 0x22, 0xae, 0x01, 0x65, 0xe4, 0x69, 0xf7, 0xa2, 0x9c, - 0x2e, 0x60, 0x04, 0xf2, 0xf0, 0xff, 0x67, 0x70, 0x5e, 0xeb, 0x1b, 0x30, 0x87, 0x63, 0x6e, 0xb0, - 0xb5, 0x38, 0x21, 0x5d, 0x42, 0xaf, 0x63, 0x25, 0x69, 0x1d, 0x49, 0x88, 0x6f, 0xc4, 0x54, 0xb1, - 0xfb, 0xd6, 0x22, 0x1e, 0xe8, 0x04, 0x6f, 0xb2, 0x8b, 0xe4, 0x9c, 0x03, 0xbb, 0x11, 0xa8, 0xbd, - 0x6d, 0xe9, 0x0b, 0x77, 0xd4, 0x09, 0x76, 0x65, 0x9a, 0x92, 0xc8, 0xf2, 0x26, 0xb4, 0x04, 0xc3, - 0x62, 0xe9, 0x09, 0x7c, 0x1f, 0xc6, 0x64, 0x53, 0xea, 0x2e, 0x96, 0xd5, 0x75, 0x53, 0xa8, 0xe9, - 0x65, 0xd4, 0xb2, 0x29, 0x1d, 0x08, 0x7d, 0xe1, 0xf2, 0xa5, 0x7d, 0x2e, 0x7c, 0xde, 0xf3, 0x81, - 0x2e, 0x62, 0x50, 0xe2, 0x9a, 0x92, 0x9e, 0xef, 0x15, 0x36, 0x4d, 0xaa, 0xab, 0x32, 0x72, 0xa1, - 0x0d, 0xc1, 0x88, 0xde, 0x8f, 0x4b, 0x87, 0x6b, 0x58, 0x17, 0x03, 0xa1, 0xe9, 0x03, 0x56, 0xbc, - 0x07, 0x9d, 0xf6, 0xa6, 0xd4, 0x1b, 0x5c, 0xbb, 0x7b, 0xf4, 0x2a, 0xe6, 0xf5, 0xf5, 0x50, 0x41, - 0xa4, 0x97, 0x86, 0x5a, 0x76, 0xda, 0x3b, 0xd1, 0x10, 0xe8, 0x83, 0x6c, 0x8e, 0x34, 0x3a, 0x81, - 0x1a, 0xee, 0xee, 0x0a, 0x57, 0x40, 0xa0, 0x6d, 0x82, 0xee, 0xc8, 0x75, 0xc9, 0x3d, 0xfa, 0x66, - 0x3c, 0x54, 0x8b, 0x3c, 0x3e, 0x94, 0x9a, 0xaf, 0x1c, 0xec, 0xf1, 0xa1, 0xd2, 0xe0, 0xd1, 0xb7, - 0xa0, 0xb1, 0x6d, 0xa1, 0x6e, 0x1d, 0xc2, 0x1f, 0x42, 0x7f, 0x77, 0xc4, 0x00, 0x76, 0x84, 0x7b, - 0x6b, 0x5d, 0x06, 0xfd, 0x36, 0xf8, 0x7c, 0x44, 0x1f, 0xc6, 0x7c, 0xdf, 0x94, 0xda, 0x01, 0xee, - 0x8d, 0xba, 0x10, 0xed, 0x03, 0x7d, 0x04, 0x23, 0x9e, 0x40, 0x2d, 0x29, 0x23, 0x6f, 0xc9, 0xd5, - 0x62, 0x9f, 0x6b, 0x11, 0xf4, 0xe9, 0x5b, 0xf1, 0xc2, 0xe0, 0x30, 0x64, 0x08, 0x9b, 0x4b, 0xd4, - 0x63, 0x8c, 0x4c, 0xb7, 0xdb, 0x0e, 0x3c, 0x39, 0x04, 0xa5, 0x1d, 0xee, 0x02, 0xfd, 0xf3, 0x64, - 0xd3, 0x25, 0xc4, 0x5c, 0x22, 0xac, 0xc5, 0x80, 0x3e, 0x67, 0xab, 0x4d, 0x19, 0x00, 0x3d, 0xc2, - 0xea, 0x64, 0xea, 0x7a, 0x20, 0x94, 0x1a, 0x82, 0x47, 0x4b, 0x58, 0x40, 0x3a, 0xc1, 0x76, 0x24, - 0xfb, 0x38, 0x3d, 0xd0, 0x31, 0xa4, 0xae, 0x8a, 0x40, 0xa8, 0x3d, 0x53, 0x3a, 0x09, 0x99, 0x88, - 0x2b, 0x49, 0x85, 0x55, 0xc9, 0xb8, 0x03, 0x3a, 0x1a, 0xd1, 0xf1, 0xe6, 0x33, 0xa5, 0x42, 0xcd, - 0xc7, 0x61, 0x80, 0xe6, 0xd7, 0x99, 0xa6, 0xf4, 0x2e, 0x97, 0xb0, 0xa2, 0xaf, 0x45, 0xf2, 0x36, - 0xfa, 0x32, 0x86, 0x82, 0xbb, 0xc0, 0x7d, 0xa3, 0xa4, 0x46, 0x26, 0x57, 0xfd, 0xa1, 0xd1, 0x58, - 0x31, 0xfa, 0x71, 0x81, 0x6c, 0xe3, 0x48, 0xc2, 0xdc, 0x0f, 0xc1, 0xa3, 0x13, 0x78, 0x9e, 0xf6, - 0xc6, 0x23, 0x6d, 0xb2, 0xf9, 0x76, 0x32, 0x7b, 0x68, 0x08, 0x63, 0x53, 0xa4, 0x12, 0xab, 0xa6, - 0xa4, 0xbe, 0x2c, 0x02, 0x1e, 0x8d, 0x6c, 0x59, 0xa5, 0x1e, 0x46, 0x6f, 0xd5, 0x97, 0x5c, 0xc7, - 0x00, 0x34, 0xff, 0x34, 0x63, 0xa6, 0x20, 0xb3, 0x71, 0x9a, 0x54, 0xaf, 0x07, 0x1e, 0xec, 0x8a, - 0x00, 0x3c, 0x7a, 0xc4, 0x94, 0x3b, 0x5b, 0x28, 0xb2, 0xba, 0x83, 0xe1, 0x9e, 0x41, 0x63, 0x72, - 0x18, 0xe0, 0x19, 0x5e, 0xe3, 0x2a, 0x07, 0xed, 0x9a, 0x2c, 0x30, 0x73, 0x77, 0x2f, 0xbf, 0xbd, - 0x6f, 0x52, 0x76, 0x4f, 0xde, 0xce, 0x30, 0x45, 0xf7, 0x50, 0xd3, 0x1a, 0xe8, 0xee, 0x48, 0x69, - 0x18, 0xb4, 0x64, 0xb0, 0x2b, 0xfa, 0x8a, 0x0a, 0xd4, 0x84, 0xc9, 0x96, 0xdb, 0x7e, 0x13, 0x93, - 0xc8, 0x01, 0x1f, 0xb8, 0xca, 0x4b, 0xbd, 0x65, 0x0a, 0xbe, 0x31, 0x75, 0xc9, 0x17, 0x5c, 0x51, - 0x1f, 0x5d, 0x41, 0x2b, 0xed, 0x72, 0x80, 0xe7, 0xbb, 0xe4, 0x6b, 0x88, 0xec, 0x3a, 0x40, 0x2b, - 0xcc, 0x3a, 0x27, 0x44, 0xa2, 0x15, 0x0e, 0x60, 0xaf, 0xcf, 0xa1, 0x21, 0xfa, 0x96, 0x38, 0x62, - 0x77, 0x3f, 0x89, 0xda, 0xf0, 0xe6, 0x9a, 0x25, 0x28, 0x1a, 0xb1, 0xe3, 0x64, 0xd6, 0xaa, 0xdf, - 0xe6, 0x91, 0x16, 0x66, 0xe3, 0xf3, 0x25, 0x93, 0x98, 0x91, 0x0c, 0x33, 0xec, 0x05, 0x6c, 0xd7, - 0xf5, 0x6b, 0x5c, 0x65, 0xd0, 0x4f, 0x4a, 0xec, 0x24, 0x39, 0x9a, 0x28, 0xc8, 0xf0, 0x9f, 0x96, - 0xd8, 0x31, 0x32, 0x83, 0x91, 0x4a, 0x31, 0x45, 0x7f, 0x66, 0x40, 0x8c, 0x49, 0x0e, 0xfc, 0xb9, - 0x91, 0x10, 0x07, 0x25, 0x87, 0xff, 0xc2, 0x28, 0x43, 0x09, 0x71, 0x4e, 0x2a, 0xfa, 0x62, 0x09, - 0x2d, 0x4d, 0x94, 0xc5, 0x30, 0x7d, 0xc9, 0x30, 0xa2, 0xd4, 0x94, 0xf1, 0x65, 0xc3, 0x18, 0xcb, - 0x4c, 0xd1, 0x57, 0x0c, 0x7a, 0x8d, 0x07, 0x9e, 0xdc, 0xdd, 0x4d, 0xd1, 0x57, 0x4b, 0xac, 0x41, - 0x8e, 0xe1, 0xf6, 0x65, 0xee, 0xf3, 0xc0, 0xcd, 0xf8, 0x5f, 0x2b, 0xb1, 0x13, 0x84, 0x1e, 0x52, - 0xa7, 0xe8, 0xd3, 0x63, 0x8c, 0x26, 0xc7, 0x65, 0xae, 0x25, 0xfd, 0xd2, 0x98, 0x89, 0x55, 0xcc, - 0x68, 0xb1, 0x2f, 0x8f, 0xb1, 0x19, 0x7b, 0x86, 0x76, 0xfd, 0xec, 0x18, 0xab, 0x91, 0x89, 0x4e, - 0x80, 0x65, 0x8a, 0x7e, 0x18, 0xaf, 0xcb, 0x84, 0xed, 0x45, 0xf4, 0x23, 0x78, 0x41, 0xc7, 0xcd, - 0x75, 0xa1, 0x1f, 0xc5, 0x39, 0x87, 0x39, 0xa0, 0x20, 0xf0, 0xf2, 0xe3, 0x18, 0xfd, 0x98, 0xd9, - 0x61, 0xab, 0x1c, 0xfd, 0xb8, 0x59, 0xd8, 0xa9, 0x82, 0xfe, 0xb5, 0x6c, 0xe2, 0x94, 0x1f, 0x31, - 0xfe, 0x56, 0x46, 0x7b, 0xd6, 0x40, 0x67, 0x55, 0x83, 0xfe, 0xbd, 0xcc, 0xce, 0x90, 0x13, 0x09, - 0x66, 0x1a, 0x7e, 0x5a, 0x2f, 0xfe, 0x51, 0x66, 0x73, 0xe4, 0x14, 0x76, 0xbf, 0x34, 0x71, 0x70, - 0x93, 0x50, 0x5a, 0xb8, 0x8a, 0xfe, 0xb3, 0xcc, 0xce, 0x92, 0x93, 0x6b, 0xa0, 0xd3, 0xc3, 0xc9, - 0x11, 0xff, 0x55, 0x66, 0xd3, 0x64, 0x0a, 0x2b, 0x8a, 0x80, 0x7d, 0xa0, 0x2f, 0x96, 0xf1, 0x84, - 0x93, 0x65, 0x6c, 0xce, 0x4b, 0x65, 0x8c, 0xfb, 0x3b, 0xb1, 0x58, 0xb7, 0x07, 0xad, 0x3d, 0x1e, - 0x04, 0xe0, 0x2b, 0xfa, 0x72, 0x19, 0xa3, 0xeb, 0xc0, 0x40, 0xee, 0x43, 0x0e, 0x7e, 0xc5, 0x44, - 0xc0, 0x30, 0x3f, 0x3e, 0x84, 0x68, 0x94, 0x12, 0x5e, 0x2d, 0xe3, 0x39, 0x59, 0xfe, 0x22, 0xe5, - 0xb5, 0x32, 0x3b, 0x47, 0x1a, 0xb6, 0x10, 0x25, 0xa7, 0x84, 0xc4, 0x3e, 0x60, 0xd7, 0xa2, 0x4f, - 0x57, 0x52, 0x89, 0x6d, 0xf0, 0x35, 0x4f, 0xf7, 0xbd, 0xaf, 0x82, 0x76, 0xe1, 0xc5, 0xcd, 0x9a, - 0x95, 0xa2, 0xcf, 0x54, 0xf0, 0x78, 0xd7, 0x40, 0xc7, 0xfd, 0x4a, 0xd1, 0xf7, 0xe3, 0x8c, 0x39, - 0x73, 0x3d, 0x50, 0xc3, 0x5e, 0x6a, 0x28, 0xfd, 0x40, 0xb2, 0xb9, 0x2d, 0x94, 0x8e, 0x44, 0x6f, - 0x68, 0xd2, 0xfe, 0x83, 0x15, 0x74, 0xaa, 0x3b, 0x0a, 0xdc, 0x02, 0xfc, 0x21, 0x23, 0x33, 0x19, - 0x9f, 0xd1, 0xa8, 0x5f, 0x56, 0xd8, 0x2c, 0x21, 0xb6, 0x62, 0x18, 0xe0, 0x57, 0x89, 0x3c, 0x1c, - 0x2a, 0xf7, 0x21, 0x32, 0x1d, 0x97, 0xfe, 0x3a, 0x35, 0x31, 0x57, 0x97, 0xe9, 0x6f, 0x2a, 0x18, - 0xf4, 0xa4, 0x19, 0xd1, 0xaf, 0x54, 0xd1, 0x3e, 0x13, 0x13, 0x6c, 0x8d, 0x36, 0x61, 0xbe, 0x5a, - 0xc5, 0xfc, 0xc3, 0xb4, 0xb6, 0xf9, 0xf7, 0x35, 0xb3, 0x8e, 0xdb, 0x4c, 0xa7, 0x4d, 0xbf, 0x8e, - 0xc3, 0x2d, 0x89, 0xd7, 0x3b, 0xdd, 0x2d, 0xfa, 0x8d, 0x2a, 0xaa, 0x5a, 0xf2, 0x7d, 0xe9, 0x72, - 0x9d, 0x5e, 0xae, 0x6f, 0x56, 0xf1, 0x76, 0xe6, 0xb4, 0xc7, 0xe7, 0xfe, 0xad, 0xaa, 0x71, 0xd4, - 0xe2, 0x26, 0x77, 0xdb, 0x58, 0xb2, 0xbf, 0x6d, 0xa4, 0x62, 0x7f, 0x43, 0x4b, 0x76, 0x34, 0xfd, - 0x8e, 0xe1, 0x3b, 0x3c, 0xaf, 0xd1, 0xdf, 0xd6, 0xe2, 0x0c, 0xcd, 0x61, 0xbf, 0xab, 0xd9, 0xeb, - 0x56, 0x1c, 0xd0, 0xe8, 0xef, 0x0d, 0x7c, 0x78, 0xa8, 0xa3, 0x7f, 0xa8, 0xa1, 0x61, 0xf9, 0xb9, - 0x0c, 0x2b, 0x9f, 0xa2, 0x7f, 0xac, 0xa1, 0x05, 0xd9, 0x04, 0x46, 0xbf, 0x5b, 0xc7, 0x60, 0x25, - 0xb3, 0x17, 0xfd, 0x5e, 0x1d, 0xdd, 0x3c, 0x34, 0x75, 0xd1, 0xef, 0xd7, 0xcd, 0x71, 0xa4, 0xf3, - 0x16, 0x7d, 0x2e, 0x07, 0x20, 0x17, 0xfd, 0x41, 0xdd, 0x14, 0xb4, 0xc2, 0x8c, 0x45, 0x7f, 0x58, - 0x47, 0xdb, 0x0e, 0x4f, 0x57, 0xf4, 0x47, 0x75, 0x7b, 0xdc, 0xe9, 0x5c, 0x45, 0x7f, 0x5c, 0xc7, - 0x3b, 0x74, 0xf7, 0x89, 0x8a, 0x3e, 0x6f, 0x74, 0x65, 0xb3, 0x14, 0x7d, 0xa1, 0x8e, 0xa9, 0x1e, - 0xfb, 0x10, 0xeb, 0x32, 0x5f, 0x1b, 0xe8, 0xa7, 0xa7, 0x4d, 0xb9, 0x45, 0x67, 0x0a, 0xf8, 0x67, - 0xa6, 0x31, 0xc7, 0x51, 0x44, 0x01, 0x57, 0xf4, 0xb3, 0xd3, 0x78, 0xed, 0x93, 0xd2, 0x54, 0xdc, - 0xf4, 0xb9, 0x69, 0xac, 0x1c, 0x3b, 0x11, 0x0f, 0xd4, 0x2e, 0x44, 0x78, 0x60, 0xf4, 0xf3, 0xd3, - 0x18, 0x9d, 0x04, 0x8a, 0x6f, 0x00, 0xfd, 0xc2, 0x74, 0x73, 0x81, 0x4c, 0xb6, 0x95, 0x6f, 0xba, - 0xec, 0x24, 0x29, 0xb7, 0x95, 0x4f, 0x8f, 0x60, 0x53, 0x5a, 0x96, 0xd2, 0x5f, 0x39, 0x08, 0xa3, - 0x27, 0x1e, 0xa0, 0xa5, 0xe6, 0x32, 0x99, 0x6d, 0xc9, 0x41, 0xc8, 0xd3, 0x02, 0x62, 0x1a, 0xab, - 0xed, 0xc8, 0xe0, 0xd9, 0xd4, 0x3d, 0x82, 0x9d, 0x6d, 0xe5, 0x00, 0xdc, 0xa1, 0xe9, 0xff, 0x25, - 0x5c, 0xe2, 0x26, 0x3c, 0x74, 0x8f, 0x8e, 0x35, 0xdf, 0x45, 0x68, 0x4b, 0x06, 0x4a, 0x28, 0x0d, - 0x81, 0x3b, 0x5a, 0x87, 0x7d, 0xf0, 0xcd, 0x94, 0xa1, 0x23, 0x19, 0xf4, 0xe9, 0x11, 0xf3, 0xa0, - 0x04, 0xf3, 0x30, 0xb4, 0xb3, 0xc8, 0x32, 0x0e, 0x8d, 0xe6, 0xd5, 0x38, 0x43, 0xc8, 0xca, 0x3e, - 0x04, 0x7a, 0xc8, 0x7d, 0x7f, 0x44, 0xcb, 0xb8, 0x6e, 0x0d, 0x95, 0x96, 0x03, 0xf1, 0x14, 0x8e, - 0x24, 0xcd, 0x4f, 0x96, 0x48, 0xcd, 0x0e, 0x1e, 0xa9, 0x69, 0x76, 0xb9, 0x0d, 0x81, 0x27, 0x8c, - 0x70, 0x7c, 0xf4, 0x18, 0x28, 0x9e, 0x96, 0x4a, 0x19, 0x53, 0x57, 0xf3, 0xc8, 0x58, 0x68, 0xde, - 0x7a, 0xf1, 0xbe, 0xc8, 0xd8, 0xe9, 0xd1, 0xf1, 0x8c, 0x2f, 0x19, 0x81, 0xa6, 0x32, 0xbe, 0xcc, - 0xbd, 0x09, 0x1c, 0xf8, 0xf3, 0x1a, 0x96, 0x02, 0xaf, 0xe5, 0x03, 0xc7, 0x71, 0x65, 0xb2, 0x79, - 0x95, 0x90, 0xec, 0x33, 0x82, 0x31, 0x3f, 0x6b, 0xe3, 0x47, 0x30, 0x08, 0x6b, 0xbe, 0xec, 0x71, - 0x9f, 0x96, 0x70, 0x40, 0x32, 0x39, 0x39, 0xd6, 0xfc, 0xc4, 0x24, 0x99, 0x3d, 0xf4, 0xd1, 0x00, - 0xbd, 0x48, 0x17, 0x4b, 0x3e, 0x1e, 0xd4, 0x39, 0x72, 0x3a, 0x45, 0xee, 0x98, 0x88, 0x4a, 0x38, - 0xae, 0xa6, 0xe4, 0x43, 0xa3, 0xd1, 0x18, 0xbb, 0x40, 0xce, 0x66, 0xc4, 0x3b, 0x07, 0x22, 0xec, - 0x1c, 0x8d, 0x94, 0xe1, 0xf0, 0x64, 0x54, 0xc1, 0xc0, 0xa4, 0x54, 0x33, 0x79, 0x9b, 0xa7, 0x79, - 0xf6, 0x85, 0xc3, 0xb6, 0x68, 0x3a, 0x81, 0xaf, 0xe5, 0xcc, 0xc6, 0x34, 0x8b, 0xe8, 0x24, 0xc6, - 0x31, 0x25, 0xc4, 0xed, 0x73, 0xaa, 0x00, 0xc6, 0x6d, 0xb4, 0x8a, 0xc1, 0x4d, 0x41, 0x2c, 0x99, - 0x59, 0xb5, 0x22, 0x38, 0xee, 0x1f, 0x0a, 0x81, 0x2d, 0x8b, 0xb5, 0x02, 0xc5, 0x60, 0x6d, 0xd0, - 0x5c, 0xf8, 0xb4, 0x8e, 0x23, 0x60, 0x21, 0x2e, 0x76, 0xc7, 0x74, 0x41, 0x79, 0xdc, 0x84, 0x67, - 0x70, 0xd8, 0xcb, 0x9e, 0x57, 0xa6, 0x97, 0xcf, 0x16, 0x30, 0x53, 0x9e, 0x29, 0x2d, 0xa8, 0xcb, - 0x0d, 0x1d, 0xf4, 0x68, 0xd1, 0x51, 0x93, 0x24, 0x94, 0x15, 0xa2, 0x6b, 0xed, 0xde, 0xba, 0x1d, - 0x40, 0xa4, 0xf6, 0x44, 0x48, 0x8f, 0x15, 0x82, 0x66, 0x2b, 0xa4, 0xc9, 0x8b, 0xe3, 0x85, 0x50, - 0xa0, 0xe9, 0xd9, 0xa6, 0x13, 0xc5, 0x03, 0x33, 0x35, 0x2a, 0xa3, 0x9e, 0x2c, 0x50, 0x37, 0x78, - 0xc0, 0xfb, 0x39, 0x85, 0xa7, 0x0a, 0x0a, 0x73, 0xc5, 0xb1, 0x51, 0x30, 0x3e, 0x9e, 0x52, 0x4e, - 0xb3, 0x79, 0x32, 0x77, 0xc8, 0xf8, 0x62, 0x01, 0x3a, 0xc3, 0xce, 0x93, 0x33, 0x05, 0x3b, 0x8b, - 0xf4, 0xb3, 0x6c, 0x81, 0x9c, 0xbf, 0x23, 0xfb, 0x8a, 0x3c, 0x73, 0x85, 0x0c, 0xbd, 0x4b, 0x05, - 0x3c, 0x87, 0x6f, 0xe3, 0x94, 0xa1, 0x50, 0xed, 0xce, 0x17, 0xbc, 0x3d, 0x5c, 0xf5, 0x2e, 0x14, - 0x24, 0xaf, 0x81, 0xc6, 0xe3, 0x12, 0x41, 0x3f, 0x1d, 0x9b, 0xe6, 0x0b, 0x92, 0x63, 0x06, 0x5b, - 0xe6, 0x2e, 0x36, 0xbb, 0xa4, 0x6a, 0x7e, 0x9a, 0xcf, 0x60, 0x58, 0x58, 0x02, 0x81, 0x7d, 0x4b, - 0x3c, 0x25, 0x92, 0x3a, 0x76, 0x0d, 0xb8, 0xaf, 0xf7, 0x46, 0xb4, 0x84, 0xaf, 0xa5, 0xa5, 0x5e, - 0x20, 0xa3, 0x01, 0xf7, 0xe9, 0x98, 0x29, 0x71, 0x9a, 0x07, 0xde, 0x32, 0x56, 0xb1, 0x3a, 0x99, - 0xea, 0x6a, 0x19, 0x86, 0xb8, 0xab, 0xd2, 0x74, 0x6d, 0x47, 0xb7, 0x05, 0x0c, 0xdf, 0xdf, 0xc9, - 0x22, 0x7d, 0xa0, 0x99, 0x57, 0x4f, 0x1e, 0x36, 0x97, 0xae, 0x54, 0x40, 0x63, 0x3f, 0x6c, 0x2d, - 0x2b, 0xa0, 0xf8, 0x90, 0x7b, 0x9b, 0x24, 0x47, 0xd3, 0xaf, 0x95, 0x37, 0xe0, 0x40, 0xdf, 0x90, - 0xbd, 0x9b, 0xec, 0xc2, 0xa2, 0xfd, 0x57, 0x62, 0x31, 0xf9, 0x57, 0x62, 0x71, 0x03, 0x94, 0xc2, - 0xec, 0x08, 0xcd, 0x55, 0x6f, 0xfc, 0x65, 0xd2, 0x7c, 0x86, 0xbd, 0x78, 0xf7, 0x0f, 0xdf, 0xb9, - 0xcf, 0xaa, 0xce, 0x6c, 0x98, 0x5b, 0x6d, 0xf5, 0x6e, 0x2e, 0xef, 0x92, 0x19, 0x21, 0x93, 0x7d, - 0xfd, 0x28, 0x74, 0x97, 0x6b, 0x2d, 0xb3, 0x6f, 0x1b, 0x65, 0x6c, 0x97, 0xde, 0xfd, 0x40, 0x5f, - 0xe8, 0xbd, 0x61, 0x0f, 0xa5, 0x5d, 0xb1, 0x6c, 0x97, 0x85, 0x4c, 0x7e, 0x19, 0x45, 0x57, 0xfa, - 0xf2, 0x32, 0x0f, 0xc5, 0x15, 0xab, 0x2f, 0xec, 0x7d, 0xaa, 0x54, 0xfa, 0xe2, 0xd8, 0x4c, 0x67, - 0x6b, 0x71, 0xc3, 0x4a, 0x5d, 0x8b, 0x42, 0xb7, 0x37, 0x61, 0x58, 0x1f, 0xfc, 0x77, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x87, 0xe1, 0x20, 0x1c, 0x84, 0x19, 0x00, 0x00, + 0xd5, 0xf6, 0x2c, 0x5a, 0xa6, 0x67, 0x24, 0xb5, 0xdb, 0x9b, 0x6c, 0xcb, 0xb6, 0xac, 0x3f, 0xf9, + 0x7f, 0xff, 0x22, 0x96, 0x13, 0x07, 0x92, 0x40, 0x55, 0x28, 0xa4, 0x19, 0x49, 0x9e, 0x8a, 0xb6, + 0xdc, 0x91, 0x03, 0x45, 0x15, 0xb8, 0x7a, 0xee, 0x3d, 0x1a, 0xb5, 0x7d, 0xe7, 0xf6, 0xcd, 0xed, + 0x1e, 0x59, 0x93, 0xa7, 0x24, 0x2c, 0xcf, 0x6c, 0x55, 0xbc, 0x51, 0x3c, 0x40, 0x58, 0x0a, 0x52, + 0xec, 0xf0, 0x08, 0x84, 0x25, 0x61, 0x7b, 0x66, 0x87, 0x47, 0x78, 0x67, 0xcd, 0x4a, 0x9d, 0xee, + 0xbb, 0x8e, 0x1d, 0x78, 0xe0, 0x6d, 0xfa, 0x3b, 0xfb, 0xe9, 0xd3, 0xa7, 0x4f, 0xdf, 0x21, 0x0d, + 0x57, 0xf6, 0xfb, 0x32, 0x58, 0x0a, 0x23, 0xa9, 0x25, 0x3b, 0xd6, 0x17, 0xfe, 0xc1, 0x40, 0xd9, + 0xd5, 0x92, 0x25, 0x9d, 0x99, 0xef, 0x49, 0xd9, 0xf3, 0xe1, 0x8a, 0x01, 0xbb, 0x83, 0xbd, 0x2b, + 0x1e, 0x28, 0x37, 0x12, 0xa1, 0x96, 0x91, 0x65, 0x5c, 0x50, 0x64, 0xbc, 0xa3, 0xb9, 0x1e, 0x28, + 0xf6, 0x28, 0x21, 0x10, 0x45, 0x32, 0xba, 0xe1, 0x4a, 0x0f, 0x66, 0x4b, 0xf3, 0xa5, 0x4b, 0xd3, + 0x57, 0xcf, 0x2f, 0xdd, 0x45, 0xeb, 0xd2, 0x2a, 0xb2, 0x35, 0xa5, 0x07, 0x4e, 0x0d, 0x92, 0x9f, + 0xec, 0x24, 0x19, 0x8f, 0x80, 0x2b, 0x19, 0xcc, 0x96, 0xe7, 0x4b, 0x97, 0x6a, 0x4e, 0xbc, 0x62, + 0x8c, 0x54, 0x8d, 0xc2, 0xca, 0x7c, 0xe9, 0xd2, 0x98, 0x63, 0x7e, 0x2f, 0x3c, 0x44, 0x1a, 0x8f, + 0xc1, 0xf0, 0x09, 0xee, 0x0f, 0x60, 0x87, 0x8b, 0x88, 0x51, 0x52, 0xb9, 0x05, 0x43, 0x63, 0xb3, + 0xe6, 0xe0, 0x4f, 0x76, 0x9c, 0x8c, 0x1d, 0x20, 0x39, 0x56, 0x66, 0x17, 0x0b, 0x0f, 0x92, 0xfa, + 0x63, 0x30, 0x6c, 0x71, 0xcd, 0xdf, 0x44, 0x8c, 0x91, 0xaa, 0xc7, 0x35, 0x37, 0x52, 0x0d, 0xc7, + 0xfc, 0x5e, 0x98, 0x23, 0xd5, 0x15, 0x5f, 0x76, 0x33, 0x95, 0x25, 0x43, 0x8c, 0x55, 0x1e, 0x10, + 0xba, 0xe3, 0x73, 0x17, 0xf6, 0xa5, 0xef, 0x41, 0x64, 0x5c, 0x42, 0xbd, 0x9a, 0xf7, 0x12, 0xbd, + 0x9a, 0xf7, 0xd8, 0x23, 0xa4, 0xaa, 0x87, 0xa1, 0xf5, 0x66, 0xfa, 0xea, 0x3d, 0x77, 0xcd, 0x4a, + 0x4e, 0xcd, 0xee, 0x30, 0x04, 0xc7, 0x48, 0x60, 0x5a, 0x8c, 0x21, 0x35, 0x5b, 0x99, 0xaf, 0x5c, + 0x6a, 0x38, 0xf1, 0x6a, 0xe1, 0x7d, 0x05, 0xbb, 0xeb, 0x91, 0x1c, 0x84, 0xac, 0x4d, 0x1a, 0x61, + 0x86, 0xa9, 0xd9, 0xd2, 0x7c, 0xe5, 0x52, 0xfd, 0xea, 0xbd, 0xff, 0xc9, 0x9a, 0x71, 0xda, 0x29, + 0x88, 0x2e, 0x5c, 0x26, 0x13, 0xcb, 0x9e, 0x17, 0x81, 0x52, 0x6c, 0x9a, 0x94, 0x45, 0x18, 0x07, + 0x53, 0x16, 0x21, 0xe6, 0x28, 0x94, 0x91, 0x36, 0xb1, 0x54, 0x1c, 0xf3, 0x7b, 0xe1, 0xf9, 0x12, + 0x99, 0xd8, 0x54, 0xbd, 0x15, 0xae, 0x80, 0x3d, 0x4c, 0x26, 0xfb, 0xaa, 0x77, 0xc3, 0xc4, 0x6b, + 0xab, 0x60, 0xee, 0xae, 0x1e, 0x6c, 0xaa, 0x9e, 0x89, 0x73, 0xa2, 0x6f, 0x7f, 0x60, 0x82, 0xfb, + 0xaa, 0xd7, 0x6e, 0xc5, 0x9a, 0xed, 0x82, 0xcd, 0x91, 0x9a, 0x16, 0x7d, 0x50, 0x9a, 0xf7, 0x43, + 0x53, 0x04, 0x55, 0x27, 0x03, 0xd8, 0x19, 0x32, 0xa9, 0xe4, 0x20, 0x72, 0xa1, 0xdd, 0x9a, 0xad, + 0x1a, 0xb1, 0x74, 0x8d, 0x34, 0xcd, 0xa3, 0x1e, 0xe8, 0x76, 0x6b, 0x76, 0xcc, 0xd2, 0x92, 0xf5, + 0xc2, 0xa3, 0xa4, 0xb6, 0xa9, 0x7a, 0xd7, 0x80, 0x7b, 0x10, 0xb1, 0xfb, 0x49, 0xb5, 0xcb, 0x95, + 0xf5, 0xb6, 0xfe, 0xe6, 0xde, 0x62, 0x74, 0x8e, 0xe1, 0x5c, 0x78, 0x3f, 0x69, 0xb4, 0x36, 0x37, + 0xfe, 0x0b, 0x0d, 0x18, 0x96, 0xda, 0xe7, 0x91, 0xb7, 0xc5, 0xfb, 0x49, 0x91, 0x66, 0xc0, 0xc2, + 0x2b, 0x25, 0xd2, 0xd8, 0x89, 0xc4, 0x81, 0xf0, 0xa1, 0x07, 0xab, 0x87, 0x9a, 0xbd, 0x8b, 0xd4, + 0x65, 0xf7, 0x26, 0xb8, 0x3a, 0x9f, 0xd7, 0x0b, 0x77, 0xb5, 0xb3, 0x6d, 0xf8, 0x4c, 0x6a, 0x89, + 0x4c, 0x7f, 0xb3, 0x6d, 0x42, 0x63, 0x0d, 0x61, 0xa2, 0xf8, 0xdf, 0x96, 0xa3, 0x55, 0x93, 0x3a, + 0xe1, 0xcc, 0xc8, 0x22, 0xc0, 0x16, 0xc9, 0xd1, 0x58, 0x61, 0xc0, 0xfb, 0x70, 0x43, 0x04, 0x1e, + 0x1c, 0xc6, 0xa7, 0x34, 0xe6, 0xc5, 0x50, 0xda, 0x08, 0xb3, 0xfb, 0x08, 0xbb, 0x83, 0x57, 0x99, + 0x0d, 0x1b, 0x73, 0xe8, 0x08, 0xb3, 0x5a, 0x58, 0x23, 0x8d, 0x0e, 0xf4, 0xfa, 0x10, 0x68, 0x6c, + 0x2d, 0x0a, 0x73, 0x15, 0xaf, 0xdb, 0x2d, 0x13, 0x7a, 0xc5, 0xc9, 0x00, 0x36, 0x4b, 0x26, 0xb6, + 0x06, 0x7d, 0x47, 0xde, 0x56, 0x71, 0xe1, 0x24, 0xcb, 0xc5, 0x17, 0x08, 0xa9, 0xa5, 0xbd, 0x86, + 0xd5, 0xc9, 0x44, 0x67, 0xe0, 0xba, 0xa0, 0x14, 0x3d, 0xc2, 0x8e, 0x91, 0x99, 0xeb, 0x01, 0x1c, + 0x86, 0xe0, 0x6a, 0xf0, 0x0c, 0x0f, 0x2d, 0xb1, 0xa3, 0x64, 0xaa, 0x29, 0x83, 0x00, 0x5c, 0xbd, + 0xc6, 0x85, 0x0f, 0x1e, 0x2d, 0xb3, 0xe3, 0x84, 0xee, 0x40, 0xd4, 0x17, 0x4a, 0x09, 0x19, 0xb4, + 0x20, 0x10, 0xe0, 0xd1, 0x0a, 0x3b, 0x45, 0x8e, 0x35, 0xa5, 0xef, 0x83, 0xab, 0x85, 0x0c, 0xb6, + 0xa4, 0x5e, 0x3d, 0x14, 0x4a, 0x2b, 0x5a, 0x45, 0xb5, 0x6d, 0xdf, 0x87, 0x1e, 0xf7, 0x97, 0xa3, + 0xde, 0x00, 0x1d, 0xa4, 0x63, 0xa8, 0x23, 0x06, 0x5b, 0xa2, 0x0f, 0x01, 0x6a, 0xa2, 0x13, 0x39, + 0xd4, 0x44, 0x8d, 0x7b, 0x44, 0x27, 0xd9, 0x69, 0x72, 0x22, 0x46, 0x73, 0x06, 0x78, 0x1f, 0x68, + 0x8d, 0xcd, 0x90, 0x7a, 0x4c, 0xda, 0xdd, 0xde, 0x79, 0x8c, 0x92, 0x9c, 0x06, 0x47, 0xde, 0x76, + 0xc0, 0x95, 0x91, 0x47, 0xeb, 0x39, 0x17, 0x9e, 0x00, 0x57, 0xcb, 0xa8, 0xdd, 0xa2, 0x0d, 0x74, + 0x38, 0x06, 0x3b, 0xc0, 0x23, 0x77, 0xdf, 0x01, 0x35, 0xf0, 0x35, 0x9d, 0x62, 0x94, 0x34, 0xd6, + 0x84, 0x0f, 0x5b, 0x52, 0xaf, 0xc9, 0x41, 0xe0, 0xd1, 0x69, 0x36, 0x4d, 0xc8, 0x26, 0x68, 0x1e, + 0x67, 0x60, 0x06, 0xcd, 0x36, 0xb9, 0xbb, 0x0f, 0x31, 0x40, 0xd9, 0x49, 0xc2, 0x9a, 0x3c, 0x08, + 0xa4, 0x6e, 0x46, 0xc0, 0x35, 0xac, 0x99, 0x8e, 0x41, 0x8f, 0xa2, 0x3b, 0x05, 0x5c, 0xf8, 0x40, + 0x59, 0xc6, 0xdd, 0x02, 0x1f, 0x52, 0xee, 0x63, 0x19, 0x77, 0x8c, 0x23, 0xf7, 0x71, 0x74, 0x7e, + 0x65, 0x20, 0x7c, 0xcf, 0xa4, 0xc4, 0x6e, 0xcb, 0x09, 0xf4, 0x31, 0x76, 0x7e, 0x6b, 0xa3, 0xdd, + 0xd9, 0xa5, 0x27, 0xd9, 0x09, 0x72, 0x34, 0x46, 0x36, 0x41, 0x47, 0xc2, 0x35, 0xc9, 0x3b, 0x85, + 0xae, 0x6e, 0x0f, 0xf4, 0xf6, 0xde, 0x26, 0xf4, 0x65, 0x34, 0xa4, 0xb3, 0xb8, 0xa1, 0x46, 0x53, + 0xb2, 0x45, 0xf4, 0x34, 0x5a, 0x58, 0xed, 0x87, 0x7a, 0x98, 0xa5, 0x97, 0x9e, 0x61, 0x67, 0xc9, + 0xa9, 0xeb, 0xa1, 0xc7, 0x35, 0xb4, 0xfb, 0xd8, 0xce, 0x76, 0xb9, 0xba, 0x85, 0xe1, 0x0e, 0x22, + 0xa0, 0x67, 0xd9, 0x19, 0x72, 0xb2, 0xb8, 0x17, 0x69, 0xb2, 0xe6, 0x50, 0xd0, 0x46, 0xdb, 0x8c, + 0xc0, 0x83, 0x40, 0x0b, 0xee, 0x27, 0x82, 0xe7, 0x32, 0xad, 0x77, 0x12, 0xcf, 0x23, 0xd1, 0x46, + 0x7e, 0x27, 0xf1, 0x02, 0x9b, 0x25, 0xc7, 0xd7, 0x41, 0xdf, 0x49, 0x99, 0x47, 0xca, 0x86, 0x50, + 0x86, 0x74, 0x5d, 0x41, 0xa4, 0x12, 0xca, 0x45, 0xc6, 0xc8, 0xf4, 0x3a, 0x68, 0x04, 0x13, 0x6c, + 0x01, 0xf3, 0x64, 0xdd, 0x73, 0xa4, 0x0f, 0x09, 0xfc, 0x3f, 0x98, 0x83, 0x56, 0x24, 0xc3, 0x3c, + 0x78, 0x0f, 0x86, 0xb9, 0x1d, 0x42, 0xc4, 0x35, 0xa0, 0x8e, 0x3c, 0xed, 0x5e, 0xd4, 0xd3, 0x01, + 0xcc, 0x40, 0x1e, 0xfe, 0xdf, 0x0c, 0xce, 0x5b, 0xfd, 0x3f, 0xac, 0xe1, 0x98, 0x1b, 0x6c, 0x2f, + 0x4e, 0x48, 0x97, 0x30, 0xea, 0xd8, 0x48, 0xda, 0x47, 0x12, 0xe2, 0xff, 0x63, 0xa9, 0x58, 0xb9, + 0xf5, 0x88, 0x07, 0x3a, 0xc1, 0x17, 0xd9, 0x45, 0x72, 0xce, 0x81, 0xbd, 0x08, 0xd4, 0xfe, 0x8e, + 0xf4, 0x85, 0x3b, 0x6c, 0x07, 0x7b, 0x32, 0x2d, 0x49, 0x64, 0x79, 0x0b, 0x7a, 0x82, 0x69, 0xb1, + 0xf4, 0x04, 0xbe, 0x0f, 0x73, 0xb2, 0x25, 0x75, 0x07, 0xdb, 0xea, 0x86, 0x69, 0xd4, 0xf4, 0x32, + 0x5a, 0xd9, 0x92, 0x0e, 0x84, 0xbe, 0x70, 0xf9, 0xf2, 0x01, 0x17, 0x3e, 0xef, 0xfa, 0x40, 0x97, + 0x30, 0x29, 0x71, 0x4f, 0x49, 0xf7, 0xf7, 0x0a, 0x9b, 0x22, 0xb5, 0x35, 0x19, 0xb9, 0xd0, 0x82, + 0x60, 0x48, 0xef, 0xc7, 0xa5, 0xc3, 0x35, 0x6c, 0x88, 0xbe, 0xd0, 0xf4, 0x01, 0xab, 0xde, 0x83, + 0x76, 0x6b, 0x4b, 0xea, 0x4d, 0xae, 0xdd, 0x7d, 0x7a, 0x15, 0xeb, 0xfa, 0x7a, 0xa8, 0x20, 0xd2, + 0xcb, 0x03, 0x2d, 0xdb, 0xad, 0xdd, 0x68, 0x00, 0xf4, 0x41, 0x36, 0x47, 0x66, 0xdb, 0x81, 0x1a, + 0xec, 0xed, 0x09, 0x57, 0x40, 0xa0, 0x6d, 0x81, 0xee, 0xca, 0x0d, 0xc9, 0x3d, 0xfa, 0x56, 0xdc, + 0x54, 0x8b, 0x3c, 0x3e, 0x90, 0x9a, 0xaf, 0x1e, 0xee, 0xf3, 0x81, 0xd2, 0xe0, 0xd1, 0xb7, 0xa1, + 0xb3, 0x2d, 0xa1, 0x6e, 0x8d, 0xe0, 0x0f, 0x61, 0xbc, 0xbb, 0xa2, 0x0f, 0xbb, 0xc2, 0xbd, 0xb5, + 0x21, 0x83, 0x5e, 0x0b, 0x7c, 0x3e, 0xa4, 0x0f, 0x63, 0xbd, 0x6f, 0x49, 0xed, 0x00, 0xf7, 0x86, + 0x1d, 0x88, 0x0e, 0x80, 0x3e, 0x82, 0x19, 0x4f, 0xa0, 0xa6, 0x94, 0x91, 0xb7, 0xec, 0x6a, 0x71, + 0xc0, 0xb5, 0x08, 0x7a, 0xf4, 0xed, 0x78, 0x60, 0x70, 0x18, 0x32, 0x84, 0xad, 0x65, 0xea, 0x31, + 0x46, 0xa6, 0x5a, 0x2d, 0x07, 0x9e, 0x1c, 0x80, 0xd2, 0x0e, 0x77, 0x81, 0xfe, 0x69, 0x62, 0xd1, + 0x25, 0xc4, 0x1c, 0x22, 0xec, 0xc5, 0x80, 0x31, 0x67, 0xab, 0x2d, 0x19, 0x00, 0x3d, 0xc2, 0x1a, + 0x64, 0xf2, 0x7a, 0x20, 0x94, 0x1a, 0x80, 0x47, 0x4b, 0xd8, 0x40, 0xda, 0xc1, 0x4e, 0x24, 0x7b, + 0x38, 0x3d, 0xd0, 0x32, 0x52, 0xd7, 0x44, 0x20, 0xd4, 0xbe, 0x69, 0x9d, 0x84, 0x8c, 0xc7, 0x9d, + 0xa4, 0xca, 0x6a, 0x64, 0xcc, 0x01, 0x1d, 0x0d, 0xe9, 0xd8, 0xe2, 0xb3, 0xa5, 0x42, 0xcf, 0xc7, + 0x61, 0x80, 0xe6, 0xd7, 0x99, 0xa5, 0xf4, 0x2c, 0x97, 0xb0, 0xa3, 0xaf, 0x47, 0xf2, 0x36, 0xc6, + 0x52, 0x46, 0xc5, 0x1d, 0xe0, 0xbe, 0x31, 0x52, 0x27, 0x13, 0x6b, 0xfe, 0xc0, 0x58, 0xac, 0x1a, + 0xfb, 0xb8, 0x40, 0xb6, 0x31, 0x24, 0x61, 0xed, 0x87, 0xe0, 0xd1, 0x71, 0xdc, 0x4f, 0x7b, 0xe2, + 0x91, 0x36, 0xb1, 0xf8, 0x4e, 0x32, 0x33, 0x32, 0x84, 0xb1, 0x49, 0x52, 0x8d, 0x4d, 0x53, 0xd2, + 0x58, 0x11, 0x01, 0x8f, 0x86, 0xb6, 0xad, 0x52, 0x0f, 0xb3, 0xb7, 0xe6, 0x4b, 0xae, 0x63, 0x00, + 0x16, 0x9f, 0x9b, 0x31, 0x53, 0x90, 0x11, 0x9c, 0x22, 0xb5, 0xeb, 0x81, 0x07, 0x7b, 0x22, 0x00, + 0x8f, 0x1e, 0x31, 0xed, 0xce, 0x36, 0x8a, 0xac, 0xef, 0x60, 0xba, 0xa7, 0xd1, 0x99, 0x1c, 0x06, + 0xb8, 0x87, 0xd7, 0xb8, 0xca, 0x41, 0x7b, 0xa6, 0x0a, 0xcc, 0xdc, 0xdd, 0xcd, 0x8b, 0xf7, 0x4c, + 0xc9, 0xee, 0xcb, 0xdb, 0x19, 0xa6, 0xe8, 0x3e, 0x5a, 0x5a, 0x07, 0xdd, 0x19, 0x2a, 0x0d, 0xfd, + 0xa6, 0x0c, 0xf6, 0x44, 0x4f, 0x51, 0x81, 0x96, 0xb0, 0xd8, 0x72, 0xe2, 0x37, 0xb1, 0x88, 0x1c, + 0xf0, 0x81, 0xab, 0xbc, 0xd6, 0x5b, 0xa6, 0xe1, 0x1b, 0x57, 0x97, 0x7d, 0xc1, 0x15, 0xf5, 0x31, + 0x14, 0xf4, 0xd2, 0x2e, 0xfb, 0xb8, 0xbf, 0xcb, 0xbe, 0x86, 0xc8, 0xae, 0x03, 0xf4, 0xc2, 0xac, + 0x73, 0x4a, 0x24, 0x7a, 0xe1, 0x00, 0xde, 0xf5, 0x39, 0x34, 0xc4, 0xd8, 0x92, 0x40, 0xac, 0xf4, + 0x93, 0x68, 0x0d, 0x4f, 0xae, 0x59, 0x82, 0xa2, 0x11, 0x3b, 0x4e, 0x66, 0xac, 0xf9, 0x1d, 0x1e, + 0x69, 0x61, 0x04, 0x5f, 0x2c, 0x99, 0xc2, 0x8c, 0x64, 0x98, 0x61, 0x2f, 0xe1, 0x75, 0xdd, 0xb8, + 0xc6, 0x55, 0x06, 0xfd, 0xa4, 0xc4, 0x4e, 0x92, 0xa3, 0x89, 0x81, 0x0c, 0xff, 0x69, 0x89, 0x1d, + 0x23, 0xd3, 0x98, 0xa9, 0x14, 0x53, 0xf4, 0x67, 0x06, 0xc4, 0x9c, 0xe4, 0xc0, 0x9f, 0x1b, 0x0d, + 0x71, 0x52, 0x72, 0xf8, 0x2f, 0x8c, 0x31, 0xd4, 0x10, 0xd7, 0xa4, 0xa2, 0x2f, 0x97, 0xd0, 0xd3, + 0xc4, 0x58, 0x0c, 0xd3, 0x57, 0x0c, 0x23, 0x6a, 0x4d, 0x19, 0x5f, 0x35, 0x8c, 0xb1, 0xce, 0x14, + 0x7d, 0xcd, 0xa0, 0xd7, 0x78, 0xe0, 0xc9, 0xbd, 0xbd, 0x14, 0x7d, 0xbd, 0xc4, 0x66, 0xc9, 0x31, + 0x14, 0x5f, 0xe1, 0x3e, 0x0f, 0xdc, 0x8c, 0xff, 0x8d, 0x12, 0x3b, 0x41, 0xe8, 0x88, 0x39, 0x45, + 0x9f, 0x2e, 0xb3, 0x39, 0x72, 0x6a, 0x0d, 0x3c, 0x88, 0x30, 0x8b, 0xe6, 0x64, 0x42, 0x62, 0x9b, + 0x3e, 0x53, 0x66, 0x0b, 0xe4, 0x9c, 0xa1, 0x8e, 0x48, 0x1a, 0x46, 0x3c, 0xfa, 0xf4, 0xd9, 0x32, + 0xa3, 0xc9, 0x86, 0x1b, 0x94, 0x7e, 0xa9, 0x6c, 0xb2, 0x1d, 0x0b, 0x58, 0xec, 0xcb, 0x65, 0x36, + 0x6d, 0xab, 0xc0, 0xae, 0x9f, 0x2f, 0xb3, 0x3a, 0x19, 0x6f, 0x07, 0xd8, 0xe8, 0xe8, 0x47, 0xf0, + 0xc0, 0x8d, 0xdb, 0xdb, 0x8c, 0x7e, 0x14, 0x8f, 0xf8, 0x98, 0x39, 0x70, 0xf4, 0x63, 0x38, 0x29, + 0x31, 0x07, 0x14, 0x04, 0x5e, 0x7e, 0xa0, 0xa3, 0x1f, 0x37, 0x12, 0xb6, 0x4f, 0xd2, 0x4f, 0x98, + 0x85, 0x9d, 0x4b, 0xe8, 0x5f, 0x2a, 0x26, 0xd3, 0xf9, 0x21, 0xe5, 0xaf, 0x15, 0xf4, 0x67, 0x1d, + 0x74, 0xd6, 0x77, 0xe8, 0xdf, 0x2a, 0xec, 0x0c, 0x39, 0x91, 0x60, 0x66, 0x64, 0x48, 0x3b, 0xce, + 0xdf, 0x2b, 0x98, 0x13, 0xbc, 0x3f, 0xd3, 0xd2, 0x43, 0x21, 0xa1, 0xb4, 0x70, 0x15, 0xfd, 0x47, + 0x85, 0x9d, 0x25, 0x27, 0xd7, 0x41, 0xa7, 0xdb, 0x9b, 0x23, 0xfe, 0xb3, 0xc2, 0xa6, 0xc8, 0x24, + 0xf6, 0x24, 0x01, 0x07, 0x40, 0x5f, 0xae, 0x60, 0x8d, 0x24, 0xcb, 0xd8, 0x9d, 0x57, 0x2a, 0xb8, + 0x73, 0xef, 0xc6, 0x76, 0xdf, 0xea, 0x37, 0xf7, 0x79, 0x10, 0x80, 0xaf, 0xe8, 0xab, 0x15, 0xdc, + 0x1f, 0x07, 0xfa, 0xf2, 0x00, 0x72, 0xf0, 0x6b, 0x26, 0x03, 0x86, 0xf9, 0xf1, 0x01, 0x44, 0xc3, + 0x94, 0xf0, 0x7a, 0x05, 0x77, 0xda, 0xf2, 0x17, 0x29, 0x6f, 0x54, 0xd8, 0x39, 0x32, 0x6b, 0x5b, + 0x59, 0xb2, 0xcf, 0x48, 0xec, 0x01, 0xde, 0x7b, 0xf4, 0xe9, 0x6a, 0xaa, 0xb1, 0x05, 0xbe, 0xe6, + 0xa9, 0xdc, 0x33, 0x55, 0xf4, 0x0b, 0x8f, 0x7e, 0x76, 0xdd, 0x29, 0xfa, 0x6c, 0x15, 0xb7, 0x77, + 0x1d, 0x74, 0x7c, 0xe3, 0x29, 0xfa, 0x01, 0x9c, 0x52, 0xa7, 0xaf, 0x07, 0x6a, 0xd0, 0x4d, 0x1d, + 0xa5, 0x1f, 0x4c, 0x84, 0x5b, 0x42, 0xe9, 0x48, 0x74, 0x07, 0xe6, 0xe0, 0x7c, 0xa8, 0x8a, 0x41, + 0x75, 0x86, 0x81, 0x5b, 0x80, 0x3f, 0x6c, 0x74, 0xa6, 0x95, 0xb4, 0x27, 0xe9, 0x2f, 0xab, 0x6c, + 0x86, 0x10, 0xdb, 0x73, 0x0c, 0xf0, 0xab, 0x44, 0x1f, 0x8e, 0xa5, 0x07, 0x10, 0x99, 0x3b, 0x9b, + 0xfe, 0x3a, 0x75, 0x31, 0xd7, 0xd9, 0xe9, 0x6f, 0xaa, 0x98, 0xf4, 0xe4, 0x3a, 0xa3, 0x5f, 0xa9, + 0xa1, 0x7f, 0x26, 0x27, 0x78, 0xb9, 0xda, 0x82, 0xf9, 0x6a, 0x0d, 0xeb, 0x0f, 0x0f, 0x86, 0xad, + 0xbf, 0xaf, 0x99, 0x75, 0x7c, 0x51, 0xb5, 0x5b, 0xf4, 0xeb, 0x38, 0x1e, 0x93, 0x78, 0xbd, 0xdb, + 0xd9, 0xa6, 0xdf, 0xa8, 0xa1, 0xa9, 0x65, 0xdf, 0x97, 0x2e, 0xd7, 0xe9, 0xf1, 0xfc, 0x66, 0x0d, + 0xcf, 0x77, 0xce, 0x7a, 0xbc, 0xef, 0xdf, 0xaa, 0x99, 0x40, 0x2d, 0x6e, 0x6a, 0xb7, 0x85, 0x4d, + 0xff, 0xdb, 0x46, 0x2b, 0x1e, 0x13, 0xf4, 0x64, 0x57, 0xd3, 0xef, 0x18, 0xbe, 0xd1, 0x89, 0x8f, + 0xfe, 0xb6, 0x1e, 0x57, 0x68, 0x0e, 0xfb, 0x5d, 0xdd, 0x1e, 0xd8, 0xe2, 0x88, 0x47, 0x7f, 0x6f, + 0xe0, 0xd1, 0xb1, 0x90, 0xfe, 0xa1, 0x8e, 0x8e, 0xe5, 0x27, 0x3b, 0xec, 0x9d, 0x8a, 0xfe, 0xb1, + 0x8e, 0x1e, 0x64, 0x33, 0x1c, 0xfd, 0x6e, 0x03, 0x93, 0x95, 0x4c, 0x6f, 0xf4, 0x7b, 0x0d, 0x0c, + 0x73, 0x64, 0x6e, 0xa3, 0xdf, 0x6f, 0x98, 0xed, 0x48, 0x27, 0x36, 0xfa, 0x42, 0x0e, 0x40, 0x2e, + 0xfa, 0x83, 0x86, 0x69, 0x89, 0x85, 0x29, 0x8d, 0xfe, 0xb0, 0x81, 0xbe, 0x8d, 0xce, 0x67, 0xf4, + 0x47, 0x0d, 0xbb, 0xdd, 0xe9, 0x64, 0x46, 0x7f, 0xdc, 0xc0, 0x33, 0x74, 0xf7, 0x99, 0x8c, 0xbe, + 0x68, 0x6c, 0x65, 0xd3, 0x18, 0x7d, 0xa9, 0x81, 0xa5, 0x1e, 0xc7, 0x10, 0xdb, 0x32, 0xdf, 0x2b, + 0xe8, 0x67, 0xa6, 0x4c, 0xc3, 0xc6, 0x60, 0x0a, 0xf8, 0x67, 0xa7, 0xb0, 0xc6, 0x51, 0x45, 0x01, + 0x57, 0xf4, 0xb9, 0x29, 0x3c, 0xf6, 0x49, 0x6b, 0x2a, 0x0a, 0x7d, 0x6e, 0x0a, 0x3b, 0xc7, 0x6e, + 0xc4, 0x03, 0xb5, 0x07, 0x11, 0x6e, 0x18, 0xfd, 0xfc, 0x14, 0x66, 0x27, 0x81, 0xe2, 0x13, 0x40, + 0xbf, 0x30, 0xb5, 0xb8, 0x40, 0x26, 0x5a, 0xca, 0x37, 0xf7, 0xf4, 0x04, 0xa9, 0xb4, 0x94, 0x4f, + 0x8f, 0xe0, 0xb5, 0xb6, 0x22, 0xa5, 0xbf, 0x7a, 0x18, 0x46, 0x4f, 0x3c, 0x40, 0x4b, 0x8b, 0x2b, + 0x64, 0xa6, 0x29, 0xfb, 0x21, 0x4f, 0x1b, 0x88, 0xb9, 0x9a, 0xed, 0x9d, 0x0e, 0x9e, 0x2d, 0xdd, + 0x23, 0x78, 0x37, 0xae, 0x1e, 0x82, 0x3b, 0x30, 0x13, 0x44, 0x09, 0x97, 0x28, 0x84, 0x9b, 0xee, + 0xd1, 0xf2, 0xe2, 0x7b, 0x08, 0x6d, 0xca, 0x40, 0x09, 0xa5, 0x21, 0x70, 0x87, 0x1b, 0x70, 0x00, + 0xbe, 0x99, 0x53, 0x74, 0x24, 0x83, 0x1e, 0x3d, 0x62, 0x9e, 0xa4, 0x60, 0x9e, 0x96, 0x76, 0x9a, + 0x59, 0xc1, 0xb1, 0xd3, 0xbc, 0x3b, 0xa7, 0x09, 0x59, 0x3d, 0x80, 0x40, 0x0f, 0xb8, 0xef, 0x0f, + 0x69, 0x05, 0xd7, 0xcd, 0x81, 0xd2, 0xb2, 0x2f, 0x9e, 0xc2, 0xa1, 0x66, 0xf1, 0x53, 0x25, 0x52, + 0xb7, 0xa3, 0x4b, 0xea, 0x9a, 0x5d, 0xee, 0x40, 0xe0, 0x09, 0xa3, 0x1c, 0x9f, 0x4d, 0x06, 0x8a, + 0xe7, 0xad, 0x52, 0xc6, 0xd4, 0xd1, 0x3c, 0x32, 0x1e, 0x9a, 0xd7, 0x62, 0x2c, 0x17, 0x19, 0x3f, + 0x3d, 0x3a, 0x96, 0xf1, 0x25, 0x43, 0xd4, 0x64, 0xc6, 0x97, 0x85, 0x37, 0x8e, 0x4f, 0x86, 0xbc, + 0x85, 0xe5, 0xc0, 0x6b, 0xfa, 0xc0, 0x71, 0xe0, 0x99, 0x58, 0xbc, 0x4a, 0x48, 0xf6, 0x21, 0xc2, + 0xb8, 0x9f, 0x0d, 0x02, 0x47, 0x30, 0x09, 0xeb, 0xbe, 0xec, 0x72, 0x9f, 0x96, 0x70, 0xc4, 0x32, + 0x35, 0x59, 0x5e, 0xfc, 0xe4, 0x04, 0x99, 0x19, 0xf9, 0xec, 0x80, 0x51, 0xa4, 0x8b, 0x65, 0x1f, + 0x37, 0xea, 0x1c, 0x39, 0x9d, 0x22, 0x77, 0xcc, 0x54, 0x25, 0x1c, 0x78, 0x53, 0xf2, 0xc8, 0x70, + 0x55, 0x66, 0x17, 0xc8, 0xd9, 0x8c, 0x78, 0xe7, 0x48, 0x85, 0x37, 0xc7, 0x6c, 0xca, 0x30, 0x3a, + 0x5b, 0x55, 0x31, 0x31, 0x29, 0xd5, 0xcc, 0xee, 0xe6, 0x71, 0x9f, 0x7d, 0x23, 0xb1, 0x97, 0x3c, + 0x1d, 0xc7, 0xf7, 0x76, 0xe6, 0x63, 0x5a, 0x45, 0x74, 0x02, 0xf3, 0x98, 0x12, 0xe2, 0xeb, 0x73, + 0xb2, 0x00, 0xc6, 0xd7, 0x68, 0x0d, 0x93, 0x9b, 0x82, 0xd8, 0x32, 0xb3, 0x6e, 0x45, 0xf0, 0xc1, + 0x30, 0x92, 0x02, 0xdb, 0x16, 0xeb, 0x05, 0x8a, 0xbd, 0xe4, 0x41, 0x73, 0xe1, 0xd3, 0x06, 0x0e, + 0x91, 0x85, 0xbc, 0x58, 0x89, 0xa9, 0x82, 0xf1, 0xf8, 0x12, 0x9e, 0xc6, 0x71, 0x31, 0x7b, 0xa0, + 0x99, 0xbb, 0x7c, 0xa6, 0x80, 0x99, 0xf6, 0x4c, 0x69, 0xc1, 0x5c, 0x6e, 0x6c, 0xa1, 0x47, 0x8b, + 0x81, 0x9a, 0x22, 0xa1, 0xac, 0x90, 0x5d, 0xeb, 0xf7, 0xf6, 0xed, 0x00, 0x22, 0xb5, 0x2f, 0x42, + 0x7a, 0xac, 0x90, 0x34, 0xdb, 0x21, 0x4d, 0x5d, 0x1c, 0x2f, 0xa4, 0x02, 0x5d, 0xcf, 0x84, 0x4e, + 0x14, 0x37, 0xcc, 0xf4, 0xa8, 0x8c, 0x7a, 0xb2, 0x40, 0xdd, 0xe4, 0x01, 0xef, 0xe5, 0x0c, 0x9e, + 0x2a, 0x18, 0xcc, 0x35, 0xc7, 0xd9, 0x82, 0xf3, 0xf1, 0x94, 0x72, 0x9a, 0xcd, 0x93, 0xb9, 0x11, + 0xe7, 0x8b, 0x0d, 0xe8, 0x0c, 0x3b, 0x4f, 0xce, 0x14, 0xfc, 0x2c, 0xd2, 0xcf, 0xb2, 0x05, 0x72, + 0xfe, 0x8e, 0xea, 0x2b, 0xf2, 0xcc, 0x15, 0x2a, 0xf4, 0x2e, 0x1d, 0xf0, 0x1c, 0xbe, 0xae, 0x53, + 0x86, 0x42, 0xb7, 0x3b, 0x5f, 0x88, 0x76, 0xb4, 0xeb, 0x5d, 0x28, 0x68, 0x5e, 0x07, 0x8d, 0xdb, + 0x25, 0x82, 0x5e, 0x3a, 0x36, 0xcd, 0x17, 0x34, 0xc7, 0x0c, 0xb6, 0xcd, 0x5d, 0x5c, 0xec, 0x90, + 0x9a, 0xf9, 0x69, 0x3e, 0xa4, 0x61, 0x63, 0x09, 0x04, 0xde, 0x5b, 0xe2, 0x29, 0x91, 0xf4, 0xb1, + 0x6b, 0xc0, 0x7d, 0xbd, 0x3f, 0xa4, 0x25, 0x7c, 0x6f, 0x2d, 0x77, 0x03, 0x19, 0xf5, 0xb9, 0x4f, + 0xcb, 0xa6, 0xc5, 0x69, 0x1e, 0x78, 0x2b, 0xd8, 0xc5, 0x1a, 0x64, 0xb2, 0xa3, 0x65, 0x18, 0xa2, + 0x54, 0x75, 0xd1, 0xb5, 0x37, 0xba, 0x6d, 0x60, 0xf8, 0x82, 0x4f, 0x16, 0xe9, 0x13, 0xcf, 0xbc, + 0x9b, 0xf2, 0xb0, 0x39, 0x74, 0xa5, 0x02, 0x1a, 0xc7, 0x61, 0x7b, 0x59, 0x01, 0xc5, 0xa7, 0xe0, + 0x3b, 0x24, 0x39, 0x9a, 0x7e, 0xef, 0xbc, 0x01, 0x87, 0xfa, 0x86, 0xec, 0xde, 0x64, 0x17, 0x96, + 0xec, 0xff, 0x1a, 0x4b, 0xc9, 0xff, 0x1a, 0x4b, 0x9b, 0xa0, 0x14, 0x56, 0x47, 0x68, 0x8e, 0xfa, + 0xec, 0x9f, 0x27, 0xcc, 0x87, 0xdc, 0x8b, 0x77, 0xff, 0x74, 0x9e, 0xfb, 0x30, 0xeb, 0xcc, 0x84, + 0xb9, 0xd5, 0x76, 0xf7, 0xe6, 0xca, 0x1e, 0x99, 0x16, 0x32, 0x91, 0xeb, 0x45, 0xa1, 0xbb, 0x52, + 0x6f, 0x1a, 0xb9, 0x1d, 0xd4, 0xb1, 0x53, 0x7a, 0xef, 0x03, 0x3d, 0xa1, 0xf7, 0x07, 0x5d, 0xd4, + 0x76, 0xc5, 0xb2, 0x5d, 0x16, 0x32, 0xf9, 0x65, 0x0c, 0x5d, 0xe9, 0xc9, 0xcb, 0x3c, 0x14, 0x57, + 0xac, 0xbd, 0xb0, 0xfb, 0xe9, 0x52, 0xe9, 0x8b, 0xe5, 0xe9, 0xf6, 0xf6, 0xd2, 0xa6, 0xd5, 0xba, + 0x1e, 0x85, 0x6e, 0x77, 0xdc, 0xb0, 0x3e, 0xf8, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x67, 0xb9, + 0x91, 0x17, 0xc6, 0x19, 0x00, 0x00, } diff --git a/go-api/federpb/feder.pb.go b/go-api/federpb/feder.pb.go new file mode 100644 index 0000000..8a6209c --- /dev/null +++ b/go-api/federpb/feder.pb.go @@ -0,0 +1,382 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// source: feder.proto + +package federpb + +import ( + fmt "fmt" + proto "github.com/golang/protobuf/proto" + commonpb "github.com/milvus-io/milvus-proto/go-api/commonpb" + math "math" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package + +type SegmentIndexData struct { + SegmentID int64 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"` + IndexData string `protobuf:"bytes,2,opt,name=index_data,json=indexData,proto3" json:"index_data,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SegmentIndexData) Reset() { *m = SegmentIndexData{} } +func (m *SegmentIndexData) String() string { return proto.CompactTextString(m) } +func (*SegmentIndexData) ProtoMessage() {} +func (*SegmentIndexData) Descriptor() ([]byte, []int) { + return fileDescriptor_84d670fd126c7825, []int{0} +} + +func (m *SegmentIndexData) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SegmentIndexData.Unmarshal(m, b) +} +func (m *SegmentIndexData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SegmentIndexData.Marshal(b, m, deterministic) +} +func (m *SegmentIndexData) XXX_Merge(src proto.Message) { + xxx_messageInfo_SegmentIndexData.Merge(m, src) +} +func (m *SegmentIndexData) XXX_Size() int { + return xxx_messageInfo_SegmentIndexData.Size(m) +} +func (m *SegmentIndexData) XXX_DiscardUnknown() { + xxx_messageInfo_SegmentIndexData.DiscardUnknown(m) +} + +var xxx_messageInfo_SegmentIndexData proto.InternalMessageInfo + +func (m *SegmentIndexData) GetSegmentID() int64 { + if m != nil { + return m.SegmentID + } + return 0 +} + +func (m *SegmentIndexData) GetIndexData() string { + if m != nil { + return m.IndexData + } + return "" +} + +type FederSegmentSearchResult struct { + SegmentID int64 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"` + VisitInfo string `protobuf:"bytes,2,opt,name=visit_info,json=visitInfo,proto3" json:"visit_info,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *FederSegmentSearchResult) Reset() { *m = FederSegmentSearchResult{} } +func (m *FederSegmentSearchResult) String() string { return proto.CompactTextString(m) } +func (*FederSegmentSearchResult) ProtoMessage() {} +func (*FederSegmentSearchResult) Descriptor() ([]byte, []int) { + return fileDescriptor_84d670fd126c7825, []int{1} +} + +func (m *FederSegmentSearchResult) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_FederSegmentSearchResult.Unmarshal(m, b) +} +func (m *FederSegmentSearchResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_FederSegmentSearchResult.Marshal(b, m, deterministic) +} +func (m *FederSegmentSearchResult) XXX_Merge(src proto.Message) { + xxx_messageInfo_FederSegmentSearchResult.Merge(m, src) +} +func (m *FederSegmentSearchResult) XXX_Size() int { + return xxx_messageInfo_FederSegmentSearchResult.Size(m) +} +func (m *FederSegmentSearchResult) XXX_DiscardUnknown() { + xxx_messageInfo_FederSegmentSearchResult.DiscardUnknown(m) +} + +var xxx_messageInfo_FederSegmentSearchResult proto.InternalMessageInfo + +func (m *FederSegmentSearchResult) GetSegmentID() int64 { + if m != nil { + return m.SegmentID + } + return 0 +} + +func (m *FederSegmentSearchResult) GetVisitInfo() string { + if m != nil { + return m.VisitInfo + } + return "" +} + +type ListIndexedSegmentRequest struct { + Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` + CollectionName string `protobuf:"bytes,2,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` + IndexName string `protobuf:"bytes,3,opt,name=index_name,json=indexName,proto3" json:"index_name,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ListIndexedSegmentRequest) Reset() { *m = ListIndexedSegmentRequest{} } +func (m *ListIndexedSegmentRequest) String() string { return proto.CompactTextString(m) } +func (*ListIndexedSegmentRequest) ProtoMessage() {} +func (*ListIndexedSegmentRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_84d670fd126c7825, []int{2} +} + +func (m *ListIndexedSegmentRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ListIndexedSegmentRequest.Unmarshal(m, b) +} +func (m *ListIndexedSegmentRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ListIndexedSegmentRequest.Marshal(b, m, deterministic) +} +func (m *ListIndexedSegmentRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListIndexedSegmentRequest.Merge(m, src) +} +func (m *ListIndexedSegmentRequest) XXX_Size() int { + return xxx_messageInfo_ListIndexedSegmentRequest.Size(m) +} +func (m *ListIndexedSegmentRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ListIndexedSegmentRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ListIndexedSegmentRequest proto.InternalMessageInfo + +func (m *ListIndexedSegmentRequest) GetBase() *commonpb.MsgBase { + if m != nil { + return m.Base + } + return nil +} + +func (m *ListIndexedSegmentRequest) GetCollectionName() string { + if m != nil { + return m.CollectionName + } + return "" +} + +func (m *ListIndexedSegmentRequest) GetIndexName() string { + if m != nil { + return m.IndexName + } + return "" +} + +type ListIndexedSegmentResponse struct { + Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` + SegmentIDs []int64 `protobuf:"varint,2,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ListIndexedSegmentResponse) Reset() { *m = ListIndexedSegmentResponse{} } +func (m *ListIndexedSegmentResponse) String() string { return proto.CompactTextString(m) } +func (*ListIndexedSegmentResponse) ProtoMessage() {} +func (*ListIndexedSegmentResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_84d670fd126c7825, []int{3} +} + +func (m *ListIndexedSegmentResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ListIndexedSegmentResponse.Unmarshal(m, b) +} +func (m *ListIndexedSegmentResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ListIndexedSegmentResponse.Marshal(b, m, deterministic) +} +func (m *ListIndexedSegmentResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListIndexedSegmentResponse.Merge(m, src) +} +func (m *ListIndexedSegmentResponse) XXX_Size() int { + return xxx_messageInfo_ListIndexedSegmentResponse.Size(m) +} +func (m *ListIndexedSegmentResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ListIndexedSegmentResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ListIndexedSegmentResponse proto.InternalMessageInfo + +func (m *ListIndexedSegmentResponse) GetStatus() *commonpb.Status { + if m != nil { + return m.Status + } + return nil +} + +func (m *ListIndexedSegmentResponse) GetSegmentIDs() []int64 { + if m != nil { + return m.SegmentIDs + } + return nil +} + +type DescribeSegmentIndexDataRequest struct { + Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` + CollectionName string `protobuf:"bytes,2,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` + IndexName string `protobuf:"bytes,3,opt,name=index_name,json=indexName,proto3" json:"index_name,omitempty"` + SegmentsIDs []int64 `protobuf:"varint,4,rep,packed,name=segmentsIDs,proto3" json:"segmentsIDs,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *DescribeSegmentIndexDataRequest) Reset() { *m = DescribeSegmentIndexDataRequest{} } +func (m *DescribeSegmentIndexDataRequest) String() string { return proto.CompactTextString(m) } +func (*DescribeSegmentIndexDataRequest) ProtoMessage() {} +func (*DescribeSegmentIndexDataRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_84d670fd126c7825, []int{4} +} + +func (m *DescribeSegmentIndexDataRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_DescribeSegmentIndexDataRequest.Unmarshal(m, b) +} +func (m *DescribeSegmentIndexDataRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_DescribeSegmentIndexDataRequest.Marshal(b, m, deterministic) +} +func (m *DescribeSegmentIndexDataRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_DescribeSegmentIndexDataRequest.Merge(m, src) +} +func (m *DescribeSegmentIndexDataRequest) XXX_Size() int { + return xxx_messageInfo_DescribeSegmentIndexDataRequest.Size(m) +} +func (m *DescribeSegmentIndexDataRequest) XXX_DiscardUnknown() { + xxx_messageInfo_DescribeSegmentIndexDataRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_DescribeSegmentIndexDataRequest proto.InternalMessageInfo + +func (m *DescribeSegmentIndexDataRequest) GetBase() *commonpb.MsgBase { + if m != nil { + return m.Base + } + return nil +} + +func (m *DescribeSegmentIndexDataRequest) GetCollectionName() string { + if m != nil { + return m.CollectionName + } + return "" +} + +func (m *DescribeSegmentIndexDataRequest) GetIndexName() string { + if m != nil { + return m.IndexName + } + return "" +} + +func (m *DescribeSegmentIndexDataRequest) GetSegmentsIDs() []int64 { + if m != nil { + return m.SegmentsIDs + } + return nil +} + +type DescribeSegmentIndexDataResponse struct { + Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` + // segmentID => segmentIndexData + IndexData map[int64]*SegmentIndexData `protobuf:"bytes,2,rep,name=index_data,json=indexData,proto3" json:"index_data,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + IndexParams []*commonpb.KeyValuePair `protobuf:"bytes,3,rep,name=index_params,json=indexParams,proto3" json:"index_params,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *DescribeSegmentIndexDataResponse) Reset() { *m = DescribeSegmentIndexDataResponse{} } +func (m *DescribeSegmentIndexDataResponse) String() string { return proto.CompactTextString(m) } +func (*DescribeSegmentIndexDataResponse) ProtoMessage() {} +func (*DescribeSegmentIndexDataResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_84d670fd126c7825, []int{5} +} + +func (m *DescribeSegmentIndexDataResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_DescribeSegmentIndexDataResponse.Unmarshal(m, b) +} +func (m *DescribeSegmentIndexDataResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_DescribeSegmentIndexDataResponse.Marshal(b, m, deterministic) +} +func (m *DescribeSegmentIndexDataResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_DescribeSegmentIndexDataResponse.Merge(m, src) +} +func (m *DescribeSegmentIndexDataResponse) XXX_Size() int { + return xxx_messageInfo_DescribeSegmentIndexDataResponse.Size(m) +} +func (m *DescribeSegmentIndexDataResponse) XXX_DiscardUnknown() { + xxx_messageInfo_DescribeSegmentIndexDataResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_DescribeSegmentIndexDataResponse proto.InternalMessageInfo + +func (m *DescribeSegmentIndexDataResponse) GetStatus() *commonpb.Status { + if m != nil { + return m.Status + } + return nil +} + +func (m *DescribeSegmentIndexDataResponse) GetIndexData() map[int64]*SegmentIndexData { + if m != nil { + return m.IndexData + } + return nil +} + +func (m *DescribeSegmentIndexDataResponse) GetIndexParams() []*commonpb.KeyValuePair { + if m != nil { + return m.IndexParams + } + return nil +} + +func init() { + proto.RegisterType((*SegmentIndexData)(nil), "milvus.proto.feder.SegmentIndexData") + proto.RegisterType((*FederSegmentSearchResult)(nil), "milvus.proto.feder.FederSegmentSearchResult") + proto.RegisterType((*ListIndexedSegmentRequest)(nil), "milvus.proto.feder.ListIndexedSegmentRequest") + proto.RegisterType((*ListIndexedSegmentResponse)(nil), "milvus.proto.feder.ListIndexedSegmentResponse") + proto.RegisterType((*DescribeSegmentIndexDataRequest)(nil), "milvus.proto.feder.DescribeSegmentIndexDataRequest") + proto.RegisterType((*DescribeSegmentIndexDataResponse)(nil), "milvus.proto.feder.DescribeSegmentIndexDataResponse") + proto.RegisterMapType((map[int64]*SegmentIndexData)(nil), "milvus.proto.feder.DescribeSegmentIndexDataResponse.IndexDataEntry") +} + +func init() { proto.RegisterFile("feder.proto", fileDescriptor_84d670fd126c7825) } + +var fileDescriptor_84d670fd126c7825 = []byte{ + // 457 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x53, 0xcb, 0x6e, 0xd3, 0x40, + 0x14, 0x95, 0xe3, 0x52, 0x29, 0xd7, 0x55, 0xa9, 0x66, 0x65, 0x42, 0x01, 0x63, 0x21, 0x91, 0x4d, + 0x9d, 0x2a, 0xdd, 0xa0, 0x2e, 0x4b, 0x40, 0xaa, 0x78, 0x55, 0x13, 0x09, 0x24, 0x36, 0xd1, 0xd8, + 0xb9, 0x49, 0x47, 0xd8, 0x33, 0xae, 0xef, 0x38, 0x22, 0x1f, 0xc2, 0xe7, 0xf0, 0x39, 0xfc, 0x07, + 0xf2, 0x78, 0xd2, 0xa4, 0x6d, 0x50, 0x17, 0x2c, 0xba, 0xb3, 0xcf, 0xdc, 0xf3, 0x9a, 0x07, 0x04, + 0x33, 0x9c, 0x62, 0x95, 0x94, 0x95, 0x36, 0x9a, 0xb1, 0x42, 0xe6, 0x8b, 0x9a, 0xda, 0xbf, 0xc4, + 0xae, 0xf4, 0xf6, 0x32, 0x5d, 0x14, 0x5a, 0xb5, 0x58, 0xfc, 0x05, 0x0e, 0xc6, 0x38, 0x2f, 0x50, + 0x99, 0x73, 0x35, 0xc5, 0x9f, 0x23, 0x61, 0x04, 0x3b, 0x84, 0x2e, 0x39, 0x6c, 0x14, 0x7a, 0x91, + 0xd7, 0xf7, 0xf9, 0x1a, 0x60, 0xcf, 0x00, 0x64, 0x33, 0x3a, 0x99, 0x0a, 0x23, 0xc2, 0x4e, 0xe4, + 0xf5, 0xbb, 0xbc, 0x2b, 0x57, 0xe4, 0xf8, 0x1b, 0x84, 0xef, 0x1b, 0x1f, 0xa7, 0x3a, 0x46, 0x51, + 0x65, 0x97, 0x1c, 0xa9, 0xce, 0xcd, 0xfd, 0xc2, 0x0b, 0x49, 0xd2, 0x4c, 0xa4, 0x9a, 0xe9, 0x95, + 0xb0, 0x45, 0xce, 0xd5, 0x4c, 0xc7, 0xbf, 0x3c, 0x78, 0xf2, 0x51, 0x52, 0x9b, 0x13, 0xa7, 0x4e, + 0x9f, 0xe3, 0x55, 0x8d, 0x64, 0xd8, 0x31, 0xec, 0xa4, 0x82, 0xd0, 0xaa, 0x06, 0xc3, 0xc3, 0xe4, + 0x46, 0x71, 0xd7, 0xf8, 0x13, 0xcd, 0xcf, 0x04, 0x21, 0xb7, 0x93, 0xec, 0x35, 0x3c, 0xce, 0x74, + 0x9e, 0x63, 0x66, 0xa4, 0x56, 0x13, 0x25, 0x0a, 0x74, 0x9e, 0xfb, 0x6b, 0xf8, 0xb3, 0x28, 0x70, + 0x5d, 0xd8, 0xce, 0xf8, 0x1b, 0x85, 0x9b, 0xe5, 0xf8, 0x0a, 0x7a, 0xdb, 0x62, 0x51, 0xa9, 0x15, + 0x21, 0x3b, 0x81, 0x5d, 0x32, 0xc2, 0xd4, 0xe4, 0x92, 0x3d, 0xdd, 0x9a, 0x6c, 0x6c, 0x47, 0xb8, + 0x1b, 0x65, 0xcf, 0x01, 0xae, 0xb7, 0x85, 0xc2, 0x4e, 0xe4, 0xf7, 0x7d, 0xbe, 0x81, 0xc4, 0xbf, + 0x3d, 0x78, 0x31, 0x42, 0xca, 0x2a, 0x99, 0xe2, 0xed, 0xd3, 0x7b, 0xf0, 0x0d, 0x61, 0x11, 0x04, + 0x2e, 0x2b, 0x35, 0xf1, 0x77, 0x6c, 0xfc, 0x4d, 0x28, 0xfe, 0xd3, 0x81, 0xe8, 0xdf, 0xf9, 0xff, + 0x67, 0xe7, 0xd2, 0x5b, 0x97, 0xd3, 0xef, 0x07, 0xc3, 0xb7, 0xc9, 0xdd, 0x57, 0x90, 0xdc, 0x67, + 0x9f, 0x5c, 0x23, 0xef, 0x94, 0xa9, 0x96, 0x1b, 0x37, 0x9c, 0x8d, 0x60, 0xaf, 0xf5, 0x28, 0x45, + 0x25, 0x0a, 0x0a, 0x7d, 0xeb, 0xf2, 0x72, 0x6b, 0xbc, 0x0f, 0xb8, 0xfc, 0x2a, 0xf2, 0x1a, 0x2f, + 0x84, 0xac, 0x78, 0x60, 0x69, 0x17, 0x96, 0xd5, 0x4b, 0x61, 0xff, 0xa6, 0x05, 0x3b, 0x00, 0xff, + 0x07, 0x2e, 0xdd, 0xbb, 0x68, 0x3e, 0xd9, 0x29, 0x3c, 0x5a, 0x34, 0x6c, 0x7b, 0x0e, 0xc1, 0xf0, + 0xd5, 0xb6, 0x22, 0x77, 0x0a, 0xb4, 0x94, 0xd3, 0xce, 0x1b, 0xef, 0x6c, 0xf8, 0xfd, 0x78, 0x2e, + 0xcd, 0x65, 0x9d, 0x36, 0x71, 0x06, 0x2d, 0xf9, 0x48, 0xea, 0xd5, 0x97, 0x95, 0x19, 0xcc, 0xf5, + 0x91, 0x28, 0xe5, 0xc0, 0xaa, 0x95, 0x69, 0xba, 0x6b, 0xd1, 0x93, 0xbf, 0x01, 0x00, 0x00, 0xff, + 0xff, 0x40, 0x49, 0x4e, 0x8e, 0x48, 0x04, 0x00, 0x00, +} diff --git a/go-api/milvuspb/milvus.pb.go b/go-api/milvuspb/milvus.pb.go index 0becfc1..e746dd6 100644 --- a/go-api/milvuspb/milvus.pb.go +++ b/go-api/milvuspb/milvus.pb.go @@ -9,6 +9,7 @@ import ( proto "github.com/golang/protobuf/proto" descriptor "github.com/golang/protobuf/protoc-gen-go/descriptor" commonpb "github.com/milvus-io/milvus-proto/go-api/commonpb" + federpb "github.com/milvus-io/milvus-proto/go-api/federpb" schemapb "github.com/milvus-io/milvus-proto/go-api/schemapb" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -375,6 +376,7 @@ func (m *DescribeAliasRequest) GetAlias() string { return "" } +// // Describe alias response type DescribeAliasResponse struct { // Response status @@ -487,6 +489,7 @@ func (m *ListAliasRequest) GetDbName() string { return "" } +// // List aliases response type ListAliasesResponse struct { // Response status @@ -544,7 +547,7 @@ func (m *ListAliasesResponse) GetAliases() []string { return nil } -// * +//* // Create collection in milvus type CreateCollectionRequest struct { // Not useful for now @@ -640,7 +643,7 @@ func (m *CreateCollectionRequest) GetProperties() []*commonpb.KeyValuePair { return nil } -// * +//* // Drop collection in milvus, also will drop data in collection. type DropCollectionRequest struct { // Not useful for now @@ -700,7 +703,7 @@ func (m *DropCollectionRequest) GetCollectionName() string { return "" } -// * +//* // Alter collection in milvus type AlterCollectionRequest struct { // Not useful for now @@ -776,7 +779,7 @@ func (m *AlterCollectionRequest) GetProperties() []*commonpb.KeyValuePair { return nil } -// * +//* // Check collection exist in milvus or not. type HasCollectionRequest struct { // Not useful for now @@ -939,7 +942,7 @@ func (m *StringResponse) GetValue() string { return "" } -// * +//* // Get collection meta datas like: schema, collectionID, shards number ... type DescribeCollectionRequest struct { // Not useful for now @@ -1017,7 +1020,7 @@ func (m *DescribeCollectionRequest) GetTimeStamp() uint64 { return 0 } -// * +//* // DescribeCollection Response type DescribeCollectionResponse struct { // Contain error_code and reason @@ -1166,7 +1169,7 @@ func (m *DescribeCollectionResponse) GetProperties() []*commonpb.KeyValuePair { return nil } -// * +//* // Load collection data into query nodes, then you can do vector search on this collection. type LoadCollectionRequest struct { // Not useful for now @@ -1253,7 +1256,7 @@ func (m *LoadCollectionRequest) GetRefresh() bool { return false } -// * +//* // Release collection data from query nodes, then you can't do vector search on this collection. type ReleaseCollectionRequest struct { // Not useful for now @@ -1313,7 +1316,7 @@ func (m *ReleaseCollectionRequest) GetCollectionName() string { return "" } -// * +//* // Get statistics like row_count. // WARNING: This API is experimental and not useful for now. type GetStatisticsRequest struct { @@ -1392,7 +1395,7 @@ func (m *GetStatisticsRequest) GetGuaranteeTimestamp() uint64 { return 0 } -// * +//* // Will return statistics in stats field like [{key:"row_count",value:"1"}] // WARNING: This API is experimental and not useful for now. type GetStatisticsResponse struct { @@ -1444,7 +1447,7 @@ func (m *GetStatisticsResponse) GetStats() []*commonpb.KeyValuePair { return nil } -// * +//* // Get collection statistics like row_count. type GetCollectionStatisticsRequest struct { // Not useful for now @@ -1504,7 +1507,7 @@ func (m *GetCollectionStatisticsRequest) GetCollectionName() string { return "" } -// * +//* // Will return collection statistics in stats field like [{key:"row_count",value:"1"}] type GetCollectionStatisticsResponse struct { // Contain error_code and reason @@ -1555,6 +1558,7 @@ func (m *GetCollectionStatisticsResponse) GetStats() []*commonpb.KeyValuePair { return nil } +// // List collections type ShowCollectionsRequest struct { // Not useful for now @@ -1633,6 +1637,7 @@ func (m *ShowCollectionsRequest) GetCollectionNames() []string { return nil } +// // Return basic collection infos. type ShowCollectionsResponse struct { // Contain error_code and reason @@ -1729,6 +1734,7 @@ func (m *ShowCollectionsResponse) GetQueryServiceAvailable() []bool { return nil } +// // Create partition in created collection. type CreatePartitionRequest struct { // Not useful for now @@ -1797,6 +1803,7 @@ func (m *CreatePartitionRequest) GetPartitionName() string { return "" } +// // Drop partition in created collection. type DropPartitionRequest struct { // Not useful for now @@ -1865,6 +1872,7 @@ func (m *DropPartitionRequest) GetPartitionName() string { return "" } +// // Check if partition exist in collection or not. type HasPartitionRequest struct { // Not useful for now @@ -1933,6 +1941,7 @@ func (m *HasPartitionRequest) GetPartitionName() string { return "" } +// // Load specific partitions data of one collection into query nodes // Then you can get these data as result when you do vector search on this collection. type LoadPartitionsRequest struct { @@ -2029,6 +2038,7 @@ func (m *LoadPartitionsRequest) GetRefresh() bool { return false } +// // Release specific partitions data of one collection from query nodes. // Then you can not get these data as result when you do vector search on this collection. type ReleasePartitionsRequest struct { @@ -2098,6 +2108,7 @@ func (m *ReleasePartitionsRequest) GetPartitionNames() []string { return nil } +// // Get partition statistics like row_count. type GetPartitionStatisticsRequest struct { // Not useful for now @@ -2213,6 +2224,7 @@ func (m *GetPartitionStatisticsResponse) GetStats() []*commonpb.KeyValuePair { return nil } +// // List all partitions for particular collection type ShowPartitionsRequest struct { // Not useful for now @@ -2300,6 +2312,7 @@ func (m *ShowPartitionsRequest) GetType() ShowType { return ShowType_All } +// // List all partitions for particular collection response. // The returned datas are all rows, we can format to columns by therir index. type ShowPartitionsResponse struct { @@ -2616,6 +2629,7 @@ func (m *ShowSegmentsResponse) GetSegmentIDs() []int64 { return nil } +// // Create index for vector datas type CreateIndexRequest struct { // Not useful for now @@ -2702,6 +2716,7 @@ func (m *CreateIndexRequest) GetIndexName() string { return "" } +// // Get created index information. // Current release of Milvus only supports showing latest built index. type DescribeIndexRequest struct { @@ -2780,6 +2795,7 @@ func (m *DescribeIndexRequest) GetIndexName() string { return "" } +// // Index informations type IndexDescription struct { // Index name @@ -2882,6 +2898,7 @@ func (m *IndexDescription) GetIndexStateFailReason() string { return "" } +// // Describe index response type DescribeIndexResponse struct { // Response status @@ -2932,7 +2949,8 @@ func (m *DescribeIndexResponse) GetIndexDescriptions() []*IndexDescription { return nil } -// Get index building progress +// +// Get index building progress type GetIndexBuildProgressRequest struct { // Not useful for now Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` @@ -4204,7 +4222,6 @@ func (m *VectorIDs) GetPartitionNames() []string { type VectorsArray struct { // Types that are valid to be assigned to Array: - // // *VectorsArray_IdArray // *VectorsArray_DataArray Array isVectorsArray_Array `protobuf_oneof:"array"` @@ -4351,7 +4368,6 @@ type CalcDistanceResults struct { // num(op_left)*num(op_right) distance values, "HAMMIN" return integer distance // // Types that are valid to be assigned to Array: - // // *CalcDistanceResults_IntDist // *CalcDistanceResults_FloatDist Array isCalcDistanceResults_Array `protobuf_oneof:"array"` @@ -5231,6 +5247,7 @@ func (m *GetComponentStatesRequest) XXX_DiscardUnknown() { var xxx_messageInfo_GetComponentStatesRequest proto.InternalMessageInfo +// // Do load balancing operation from src_nodeID to dst_nodeID. type LoadBalanceRequest struct { Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` @@ -8750,416 +8767,419 @@ func init() { func init() { proto.RegisterFile("milvus.proto", fileDescriptor_02345ba45cc0e303) } var fileDescriptor_02345ba45cc0e303 = []byte{ - // 6536 bytes of a gzipped FileDescriptorProto + // 6590 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x59, 0x8c, 0x1c, 0xc7, 0x75, 0xdb, 0x33, 0x3b, 0xd7, 0x9b, 0x99, 0xdd, 0xd9, 0xda, 0x6b, 0x34, 0x24, 0xc5, 0x65, 0x4b, - 0xb2, 0x28, 0xd2, 0x5a, 0x59, 0x2b, 0x51, 0x92, 0x69, 0x5b, 0x16, 0xc9, 0xb5, 0xc8, 0x85, 0x79, - 0xac, 0x7b, 0x49, 0x09, 0x8e, 0x43, 0x4c, 0x7a, 0xa7, 0x6b, 0x67, 0x5b, 0xec, 0xe9, 0x1e, 0x76, - 0xf7, 0x70, 0xb9, 0x0a, 0x02, 0x24, 0x70, 0xec, 0xd8, 0xf0, 0xa1, 0xdc, 0x46, 0x10, 0xc4, 0x09, - 0x0c, 0x27, 0xc8, 0x0d, 0x3b, 0xf9, 0x08, 0x60, 0x24, 0xc8, 0x47, 0x80, 0x7c, 0x18, 0x09, 0x12, - 0x7f, 0x08, 0x49, 0x80, 0x20, 0x5f, 0x46, 0x82, 0x00, 0x09, 0x92, 0x8f, 0xfc, 0xe5, 0x44, 0x1d, - 0xdd, 0x53, 0xdd, 0x53, 0x35, 0x3b, 0xb3, 0x23, 0x8a, 0x4b, 0x23, 0xfb, 0x35, 0x55, 0x5d, 0x55, - 0xef, 0xd5, 0xab, 0x77, 0xd5, 0xab, 0x57, 0xb5, 0x50, 0xe9, 0xd8, 0xce, 0xbd, 0x5e, 0xb0, 0xda, - 0xf5, 0xbd, 0xd0, 0x43, 0xf3, 0x62, 0x69, 0x95, 0x15, 0x1a, 0x95, 0x96, 0xd7, 0xe9, 0x78, 0x2e, - 0xab, 0x6c, 0x54, 0x82, 0xd6, 0x2e, 0xee, 0x98, 0xbc, 0xb4, 0xd2, 0xf6, 0xbc, 0xb6, 0x83, 0x9f, - 0xa3, 0xa5, 0xed, 0xde, 0xce, 0x73, 0x16, 0x0e, 0x5a, 0xbe, 0xdd, 0x0d, 0x3d, 0x9f, 0xb5, 0xd0, - 0xbf, 0xae, 0x01, 0xba, 0xe4, 0x63, 0x33, 0xc4, 0x17, 0x1c, 0xdb, 0x0c, 0x0c, 0x7c, 0xb7, 0x87, - 0x83, 0x10, 0x7d, 0x08, 0xa6, 0xb7, 0xcd, 0x00, 0xd7, 0xb5, 0x15, 0xed, 0x74, 0x79, 0xed, 0xf8, - 0x6a, 0x02, 0x30, 0x07, 0x78, 0x2d, 0x68, 0x5f, 0x34, 0x03, 0x6c, 0xd0, 0x96, 0x68, 0x19, 0x0a, - 0xd6, 0x76, 0xd3, 0x35, 0x3b, 0xb8, 0x9e, 0x59, 0xd1, 0x4e, 0x97, 0x8c, 0xbc, 0xb5, 0x7d, 0xdd, - 0xec, 0x60, 0xf4, 0x34, 0xcc, 0xb6, 0x3c, 0xc7, 0xc1, 0xad, 0xd0, 0xf6, 0x5c, 0xd6, 0x20, 0x4b, - 0x1b, 0xcc, 0xf4, 0xab, 0x69, 0xc3, 0x05, 0xc8, 0x99, 0x04, 0x87, 0xfa, 0x34, 0xfd, 0xcc, 0x0a, - 0x7a, 0x00, 0xb5, 0x75, 0xdf, 0xeb, 0x3e, 0x28, 0xec, 0x62, 0xa0, 0x59, 0x11, 0xe8, 0xaf, 0x68, - 0x30, 0x77, 0xc1, 0x09, 0xb1, 0x7f, 0x44, 0x89, 0xb2, 0x07, 0x0b, 0xeb, 0x74, 0x25, 0xb7, 0xf1, - 0xfb, 0x4b, 0x98, 0x5f, 0xd6, 0x60, 0x31, 0x05, 0x39, 0xe8, 0x7a, 0x6e, 0x80, 0xd1, 0x0b, 0x90, - 0x0f, 0x42, 0x33, 0xec, 0x05, 0x1c, 0xf8, 0x31, 0x29, 0xf0, 0x2d, 0xda, 0xc4, 0xe0, 0x4d, 0xc7, - 0x84, 0x8e, 0x1e, 0x07, 0xe8, 0x93, 0x87, 0x53, 0x44, 0xa8, 0xd1, 0x6f, 0x43, 0xed, 0xaa, 0x1d, - 0x84, 0x0f, 0x88, 0x24, 0xfa, 0x8f, 0xc1, 0x7c, 0x3c, 0x3c, 0x7e, 0x50, 0x33, 0xaf, 0x43, 0xc1, - 0x64, 0x00, 0xea, 0xd9, 0x95, 0xec, 0xe9, 0x92, 0x11, 0x15, 0xf5, 0x7f, 0xcb, 0xc0, 0x32, 0x13, - 0xd5, 0x4b, 0xf1, 0x94, 0x1f, 0x26, 0x6b, 0x2e, 0x41, 0x9e, 0x29, 0x1b, 0xba, 0x12, 0x15, 0x83, - 0x97, 0xd0, 0x09, 0x80, 0x60, 0xd7, 0xf4, 0xad, 0xa0, 0xe9, 0xf6, 0x3a, 0xf5, 0xdc, 0x8a, 0x76, - 0x3a, 0x67, 0x94, 0x58, 0xcd, 0xf5, 0x5e, 0x07, 0x19, 0x30, 0xd7, 0xf2, 0xdc, 0xc0, 0x0e, 0x42, - 0xec, 0xb6, 0xf6, 0x9b, 0x0e, 0xbe, 0x87, 0x9d, 0x7a, 0x7e, 0x45, 0x3b, 0x3d, 0xb3, 0xf6, 0x94, - 0x14, 0xef, 0x4b, 0xfd, 0xd6, 0x57, 0x49, 0x63, 0xa3, 0xd6, 0x4a, 0xd5, 0xa0, 0x0b, 0x00, 0x5d, - 0xdf, 0xeb, 0x62, 0x3f, 0xb4, 0x71, 0x50, 0x2f, 0xac, 0x64, 0x4f, 0x97, 0xd7, 0x4e, 0x49, 0x07, - 0xfb, 0x24, 0xde, 0x7f, 0xc3, 0x74, 0x7a, 0x78, 0xd3, 0xb4, 0x7d, 0x43, 0xe8, 0x74, 0x1e, 0x7d, - 0xf7, 0xd5, 0xd9, 0xa2, 0x56, 0xd3, 0xea, 0xff, 0x1b, 0xfd, 0x69, 0xfa, 0xaf, 0x12, 0x6e, 0xf7, - 0xbd, 0xee, 0x91, 0xa0, 0x77, 0x84, 0x61, 0x46, 0xc4, 0xf0, 0xa7, 0x32, 0xb0, 0x44, 0x15, 0xd5, - 0xd1, 0x60, 0x09, 0x1d, 0x2a, 0xfd, 0x9a, 0x8d, 0x75, 0xca, 0x18, 0x59, 0x23, 0x51, 0x97, 0x5a, - 0xab, 0xdc, 0x7b, 0xb5, 0x56, 0xbf, 0xa5, 0xc1, 0xc2, 0x15, 0x33, 0x38, 0x1a, 0x74, 0x38, 0x01, - 0x10, 0xda, 0x1d, 0xdc, 0x0c, 0x42, 0xb3, 0xd3, 0xa5, 0x54, 0x98, 0x36, 0x4a, 0xa4, 0x66, 0x8b, - 0x54, 0xe8, 0x9f, 0x86, 0xca, 0x45, 0xcf, 0x73, 0x26, 0xd3, 0x20, 0x0b, 0x90, 0xbb, 0x47, 0xa8, - 0x43, 0x71, 0x2c, 0x1a, 0xac, 0xa0, 0x7f, 0x06, 0x66, 0xb6, 0x42, 0xdf, 0x76, 0xdb, 0xef, 0xe1, - 0xe0, 0xa5, 0x68, 0xf0, 0x7f, 0xd4, 0xe0, 0xb1, 0x48, 0xfb, 0x3f, 0x3a, 0x0c, 0x97, 0x5c, 0x8c, - 0x5c, 0x6a, 0x31, 0x22, 0x66, 0xca, 0x8a, 0xcc, 0xf4, 0x67, 0x39, 0x68, 0xc8, 0x26, 0x3a, 0x09, - 0x49, 0x3f, 0x16, 0xab, 0xcb, 0x0c, 0xed, 0x94, 0x52, 0x76, 0xdc, 0x6f, 0xeb, 0x43, 0xdb, 0xa2, - 0x15, 0xb1, 0x56, 0x4d, 0xcf, 0x34, 0x2b, 0x99, 0xe9, 0x1a, 0x2c, 0xde, 0xb3, 0xfd, 0xb0, 0x67, - 0x3a, 0xcd, 0xd6, 0xae, 0xe9, 0xba, 0xd8, 0xa1, 0xb4, 0x23, 0xce, 0x03, 0xb1, 0x24, 0xf3, 0xfc, - 0xe3, 0x25, 0xf6, 0x8d, 0x10, 0x30, 0x40, 0x2f, 0xc2, 0x52, 0x77, 0x77, 0x3f, 0xb0, 0x5b, 0x03, - 0x9d, 0x72, 0xb4, 0xd3, 0x42, 0xf4, 0x35, 0xd1, 0xeb, 0x2c, 0xcc, 0xb5, 0xa8, 0x29, 0xb2, 0x9a, - 0x84, 0x92, 0x8c, 0xb4, 0x79, 0x4a, 0xda, 0x1a, 0xff, 0x70, 0x33, 0xaa, 0x27, 0x68, 0x45, 0x8d, - 0x7b, 0x61, 0x4b, 0xe8, 0x50, 0xa0, 0x1d, 0xe6, 0xf9, 0xc7, 0x5b, 0x61, 0xab, 0xdf, 0x27, 0x69, - 0x44, 0x8a, 0x69, 0x23, 0x22, 0x58, 0xc9, 0x52, 0xc2, 0x4a, 0xa2, 0x0d, 0x98, 0x0d, 0x42, 0xd3, - 0x0f, 0x9b, 0x5d, 0x2f, 0xb0, 0x09, 0x5d, 0x82, 0x3a, 0x50, 0x1d, 0xb3, 0xa2, 0xd2, 0x31, 0xeb, - 0x66, 0x68, 0x52, 0x15, 0x33, 0x43, 0x3b, 0x6e, 0x46, 0xfd, 0xe4, 0x96, 0xaa, 0x3c, 0x99, 0xa5, - 0x92, 0x70, 0x76, 0x45, 0xca, 0xd9, 0x49, 0x35, 0x59, 0x3d, 0x84, 0x9a, 0xd4, 0xff, 0x47, 0x83, - 0xc5, 0xab, 0x9e, 0x69, 0x1d, 0x0d, 0x51, 0x7d, 0x0a, 0x66, 0x7c, 0xdc, 0x75, 0xec, 0x96, 0x49, - 0x96, 0x74, 0x1b, 0xfb, 0x54, 0x58, 0x73, 0x46, 0x95, 0xd7, 0x5e, 0xa7, 0x95, 0x64, 0x3c, 0x1f, - 0x07, 0x5e, 0xcf, 0x6f, 0xe1, 0x66, 0xdb, 0xf7, 0x7a, 0xdd, 0x88, 0x11, 0x67, 0xa2, 0xea, 0xcb, - 0xb4, 0x96, 0xb0, 0x80, 0x8f, 0x77, 0x7c, 0x1c, 0xec, 0x52, 0xc6, 0x2b, 0x1a, 0x51, 0xf1, 0x7c, - 0xe1, 0xbb, 0xaf, 0x4e, 0xd7, 0x72, 0xf5, 0xac, 0xfe, 0x35, 0x0d, 0xea, 0x06, 0x76, 0xb0, 0x19, - 0x1c, 0x0d, 0x75, 0xc5, 0x30, 0xcb, 0xd7, 0xb3, 0xfa, 0xbf, 0x6a, 0xb0, 0x70, 0x19, 0x87, 0x44, - 0x45, 0xd8, 0x41, 0x68, 0xb7, 0x1e, 0xea, 0x1e, 0xe3, 0x69, 0x98, 0xed, 0x9a, 0x7e, 0x68, 0xc7, - 0xed, 0x22, 0x85, 0x31, 0x13, 0x57, 0x33, 0xa9, 0x7f, 0x0e, 0xe6, 0xdb, 0x3d, 0xd3, 0x37, 0xdd, - 0x10, 0x63, 0x41, 0x8c, 0x99, 0x4a, 0x45, 0xf1, 0xa7, 0x58, 0x8a, 0xd9, 0x7c, 0xa1, 0x9e, 0xd5, - 0x3f, 0xa7, 0xc1, 0x62, 0x6a, 0xbe, 0x93, 0xe8, 0xd2, 0x97, 0x21, 0x47, 0x7e, 0x05, 0xf5, 0xcc, - 0xa8, 0x72, 0xc1, 0xda, 0x93, 0x8d, 0xdd, 0xe3, 0x97, 0x71, 0x28, 0x68, 0xd9, 0xa3, 0xb0, 0x02, - 0x7d, 0x3a, 0xbd, 0xa3, 0xc1, 0x49, 0x25, 0x7e, 0x0f, 0x85, 0x62, 0xff, 0xa1, 0xc1, 0xd2, 0xd6, - 0xae, 0xb7, 0xd7, 0x47, 0xe9, 0x41, 0x50, 0x2a, 0x69, 0xa3, 0xb3, 0x29, 0x1b, 0x8d, 0x9e, 0x87, - 0xe9, 0x70, 0xbf, 0x8b, 0xa9, 0xc6, 0x98, 0x59, 0x3b, 0xb1, 0x2a, 0x89, 0x83, 0xac, 0x12, 0x24, - 0x6f, 0xee, 0x77, 0xb1, 0x41, 0x9b, 0xa2, 0x67, 0xa0, 0x96, 0xa2, 0x7d, 0xa4, 0x48, 0x66, 0x93, - 0xc4, 0x8f, 0xdd, 0xc9, 0x69, 0xd1, 0x03, 0xf8, 0xf7, 0x0c, 0x2c, 0x0f, 0x4c, 0x7b, 0x92, 0x05, - 0x90, 0xe1, 0x93, 0x91, 0xe2, 0x43, 0x34, 0xa5, 0xd0, 0xd4, 0xb6, 0xd8, 0x4e, 0x30, 0x6b, 0x54, - 0x05, 0x63, 0x6f, 0x05, 0xe8, 0x59, 0x40, 0x03, 0x36, 0x98, 0x49, 0xee, 0xb4, 0x31, 0x97, 0x36, - 0xc2, 0xd4, 0xd0, 0x4b, 0xad, 0x30, 0x23, 0xcb, 0xb4, 0xb1, 0x20, 0x31, 0xc3, 0x01, 0x7a, 0x1e, - 0x16, 0x6c, 0xf7, 0x1a, 0xee, 0x78, 0xfe, 0x7e, 0xb3, 0x8b, 0xfd, 0x16, 0x76, 0x43, 0xb3, 0x8d, - 0x83, 0x7a, 0x9e, 0x62, 0x34, 0x1f, 0x7d, 0xdb, 0xec, 0x7f, 0x42, 0x2f, 0xc1, 0xf2, 0xdd, 0x1e, - 0xf6, 0xf7, 0x9b, 0x01, 0xf6, 0xef, 0xd9, 0x2d, 0xdc, 0x34, 0xef, 0x99, 0xb6, 0x63, 0x6e, 0x3b, - 0x98, 0xee, 0xcc, 0x8a, 0xc6, 0x22, 0xfd, 0xbc, 0xc5, 0xbe, 0x5e, 0x88, 0x3e, 0xea, 0x7f, 0xa8, - 0xc1, 0x12, 0xdb, 0xdf, 0x6e, 0x46, 0x6a, 0xe7, 0x21, 0xdb, 0xab, 0xa4, 0x56, 0xe4, 0x01, 0x87, - 0x6a, 0x42, 0x29, 0xea, 0xdf, 0xd6, 0x60, 0x81, 0xec, 0x11, 0x1f, 0x25, 0x9c, 0xbf, 0xa5, 0xc1, - 0xfc, 0x15, 0x33, 0x78, 0x94, 0x50, 0xfe, 0x7a, 0x86, 0xf9, 0x32, 0x31, 0xce, 0x8f, 0x86, 0xc5, - 0x1c, 0x74, 0x7a, 0x72, 0x23, 0x3a, 0x3d, 0xf9, 0x83, 0x9c, 0x9e, 0x42, 0xc2, 0xe9, 0xd1, 0xff, - 0xa8, 0xef, 0xeb, 0x3c, 0x5a, 0x34, 0xd2, 0xbf, 0xa3, 0xc1, 0x89, 0xcb, 0x38, 0x8c, 0xb1, 0x3e, - 0x1a, 0x4e, 0xd1, 0x88, 0x7c, 0xf9, 0x55, 0xe6, 0x50, 0x48, 0x91, 0x7f, 0x28, 0xf6, 0xfa, 0x4b, - 0x19, 0x58, 0x24, 0x86, 0xeb, 0x68, 0x30, 0xc1, 0x28, 0xfb, 0x73, 0x09, 0xa3, 0xe4, 0xa4, 0xc2, - 0x14, 0x79, 0x01, 0xf9, 0x91, 0xbd, 0x00, 0xfd, 0x0f, 0x32, 0xcc, 0x7b, 0x11, 0xa9, 0x31, 0xc9, - 0xb2, 0x48, 0x70, 0xcd, 0x48, 0x71, 0xd5, 0xa1, 0x12, 0xd7, 0x6c, 0xac, 0x47, 0x16, 0x3c, 0x51, - 0x77, 0x54, 0x0d, 0xb8, 0xfe, 0x65, 0x0d, 0x96, 0xa2, 0xe8, 0xc7, 0x16, 0x6e, 0x77, 0xb0, 0x1b, - 0x1e, 0x9e, 0x87, 0xd2, 0x1c, 0x90, 0x91, 0x70, 0xc0, 0x71, 0x28, 0x05, 0x0c, 0x4e, 0x1c, 0xd8, - 0xe8, 0x57, 0xe8, 0x7f, 0xaa, 0xc1, 0xf2, 0x00, 0x3a, 0x93, 0x2c, 0x62, 0x1d, 0x0a, 0xb6, 0x6b, - 0xe1, 0xfb, 0x31, 0x36, 0x51, 0x91, 0x7c, 0xd9, 0xee, 0xd9, 0x8e, 0x15, 0xa3, 0x11, 0x15, 0xd1, - 0x29, 0xa8, 0x60, 0x97, 0xb8, 0x29, 0x4d, 0xda, 0x96, 0x32, 0x72, 0xd1, 0x28, 0xb3, 0xba, 0x0d, - 0x52, 0x45, 0x3a, 0xef, 0xd8, 0x98, 0x76, 0xce, 0xb1, 0xce, 0xbc, 0xa8, 0x7f, 0x45, 0x83, 0x79, - 0xc2, 0x85, 0x1c, 0xfb, 0xe0, 0xc1, 0x52, 0x73, 0x05, 0xca, 0x02, 0x9b, 0xf1, 0x89, 0x88, 0x55, - 0xfa, 0x1d, 0x58, 0x48, 0xa2, 0x33, 0x09, 0x35, 0x1f, 0x07, 0x88, 0xd7, 0x8a, 0x49, 0x43, 0xd6, - 0x10, 0x6a, 0xf4, 0x5f, 0xc8, 0x44, 0x27, 0x8c, 0x94, 0x4c, 0x0f, 0x39, 0x2c, 0x4b, 0x97, 0x44, - 0xd4, 0xe7, 0x25, 0x5a, 0x43, 0x3f, 0xaf, 0x43, 0x05, 0xdf, 0x0f, 0x7d, 0xb3, 0xd9, 0x35, 0x7d, - 0xb3, 0x33, 0x46, 0x6c, 0xba, 0x4c, 0xbb, 0x6d, 0xd2, 0x5e, 0x04, 0x08, 0x65, 0x11, 0x06, 0x24, - 0xcf, 0x80, 0xd0, 0x9a, 0xfe, 0x56, 0xaf, 0x5c, 0xcf, 0xea, 0xdf, 0xd3, 0xfa, 0x87, 0x78, 0x47, - 0x9d, 0x32, 0xc9, 0x39, 0xe5, 0xa4, 0x73, 0xaa, 0xd4, 0xb3, 0xfa, 0xbb, 0x19, 0xa8, 0xd1, 0xb9, - 0xac, 0xf3, 0x73, 0x66, 0xdb, 0x73, 0x53, 0x9d, 0xb5, 0x54, 0xe7, 0x21, 0xd2, 0xf8, 0x61, 0xc8, - 0xf3, 0x95, 0xc8, 0x8e, 0xba, 0x12, 0xbc, 0xc3, 0x41, 0xf3, 0x39, 0x05, 0x15, 0x0a, 0x04, 0x5b, - 0x4d, 0xdf, 0xdb, 0x0b, 0xb8, 0xbc, 0x96, 0x79, 0x9d, 0xe1, 0xed, 0xd1, 0x11, 0x42, 0x2f, 0x34, - 0x1d, 0xd6, 0x20, 0xcf, 0x94, 0x12, 0xad, 0xa1, 0x9f, 0xcf, 0x31, 0xfb, 0x8c, 0xa9, 0x1b, 0x36, - 0xb3, 0x76, 0x52, 0x8a, 0x1a, 0x25, 0x05, 0x11, 0x17, 0xcc, 0xac, 0x33, 0x46, 0xe7, 0x60, 0x99, - 0xd1, 0x82, 0x16, 0x9b, 0x3b, 0xa6, 0xed, 0x34, 0x7d, 0x6c, 0x06, 0x9e, 0x4b, 0x63, 0x9c, 0x25, - 0x63, 0xc1, 0x8e, 0xfb, 0xbc, 0x6e, 0xda, 0x8e, 0x41, 0xbf, 0xe9, 0xdf, 0x10, 0x8e, 0x5d, 0x39, - 0xaf, 0x4c, 0x22, 0xb2, 0x37, 0x01, 0x31, 0x2c, 0xac, 0xfe, 0x32, 0x45, 0x9e, 0xc6, 0x53, 0x52, - 0xb3, 0x9a, 0x5e, 0x54, 0x63, 0xce, 0x4e, 0xd5, 0x04, 0xfa, 0xdf, 0x69, 0x70, 0xfc, 0x32, 0x0e, - 0x69, 0xd3, 0x8b, 0x44, 0x6d, 0x6e, 0xfa, 0x5e, 0xdb, 0xc7, 0x41, 0xf0, 0x03, 0xc0, 0xd8, 0xbf, - 0xc8, 0x7c, 0x54, 0xd9, 0xdc, 0x26, 0x59, 0x88, 0x34, 0x1f, 0x66, 0x0e, 0xe2, 0xc3, 0x6c, 0x8a, - 0x0f, 0xa9, 0x16, 0x89, 0x10, 0x63, 0x9c, 0xf6, 0xe8, 0x13, 0xfb, 0x9b, 0x2c, 0x58, 0x28, 0xce, - 0x69, 0x12, 0x22, 0xc7, 0xa2, 0x9a, 0x19, 0x4b, 0x54, 0x4f, 0x42, 0x59, 0x14, 0x4f, 0x36, 0x63, - 0xd8, 0xe9, 0x0b, 0xe5, 0x5f, 0x6a, 0x2c, 0x35, 0xe5, 0x07, 0x41, 0x79, 0x57, 0xeb, 0x59, 0xfd, - 0x77, 0x33, 0x50, 0xdd, 0x70, 0x03, 0xec, 0x87, 0x47, 0x7f, 0xdf, 0x85, 0x3e, 0x0e, 0x65, 0x3a, - 0xc3, 0xa0, 0x69, 0x99, 0xa1, 0xc9, 0x4d, 0xf5, 0xe3, 0xd2, 0x23, 0xb5, 0xd7, 0x49, 0xbb, 0x75, - 0x33, 0x34, 0x0d, 0x46, 0xa6, 0x80, 0xfc, 0x46, 0xc7, 0xa0, 0xb4, 0x6b, 0x06, 0xbb, 0xcd, 0x3b, - 0x78, 0x9f, 0x39, 0xc3, 0x55, 0xa3, 0x48, 0x2a, 0x3e, 0x89, 0xf7, 0x03, 0xf4, 0x18, 0x14, 0xdd, - 0x5e, 0x87, 0x89, 0x1c, 0x51, 0xf0, 0x55, 0xa3, 0xe0, 0xf6, 0x3a, 0x44, 0xe0, 0x18, 0xb9, 0x8a, - 0x9c, 0x5c, 0xb7, 0xba, 0xff, 0x4f, 0xae, 0x11, 0xc8, 0xf5, 0x58, 0x3d, 0xab, 0xff, 0x45, 0x06, - 0x66, 0xae, 0xf5, 0xc8, 0xee, 0x98, 0x1e, 0xa4, 0xf6, 0x9c, 0xf0, 0x70, 0xd2, 0x7c, 0x06, 0xb2, - 0xcc, 0xcf, 0x24, 0x3d, 0xea, 0xd2, 0x19, 0x6c, 0xac, 0x07, 0x06, 0x69, 0x44, 0x0f, 0x11, 0x7b, - 0xad, 0x16, 0x77, 0xd9, 0xb3, 0x14, 0xeb, 0x12, 0xa9, 0x61, 0x0e, 0xfb, 0x31, 0x28, 0x61, 0xdf, - 0x8f, 0x1d, 0x7a, 0x3a, 0x27, 0xec, 0xfb, 0xec, 0xa3, 0x0e, 0x15, 0xb3, 0x75, 0xc7, 0xf5, 0xf6, - 0x1c, 0x6c, 0xb5, 0xb1, 0x45, 0xe5, 0xa6, 0x68, 0x24, 0xea, 0x98, 0x64, 0x11, 0x0e, 0x68, 0xb6, - 0xdc, 0x30, 0xf2, 0x11, 0x58, 0xcd, 0x25, 0x37, 0x24, 0x9f, 0x2d, 0xec, 0xe0, 0x10, 0xd3, 0xcf, - 0x05, 0xf6, 0x99, 0xd5, 0xf0, 0xcf, 0xbd, 0x6e, 0xdc, 0xbb, 0xc8, 0x3e, 0xb3, 0x1a, 0xf2, 0xf9, - 0x38, 0x94, 0xfa, 0x47, 0x2c, 0xa5, 0x7e, 0x44, 0x9c, 0x56, 0xe8, 0xdf, 0xd7, 0xa0, 0xba, 0x4e, - 0x87, 0x7a, 0x04, 0xb8, 0x0f, 0xc1, 0x34, 0xbe, 0xdf, 0xf5, 0xb9, 0xee, 0xa1, 0xbf, 0x87, 0x32, - 0x14, 0xe3, 0x9a, 0x52, 0x3d, 0xab, 0x7f, 0x7e, 0x1a, 0xaa, 0x5b, 0xd8, 0xf4, 0x5b, 0xbb, 0x8f, - 0x44, 0xb8, 0xaf, 0x06, 0x59, 0x2b, 0x70, 0xf8, 0x3c, 0xc9, 0x4f, 0x74, 0x16, 0xe6, 0xba, 0x8e, - 0xd9, 0xc2, 0xbb, 0x9e, 0x63, 0x61, 0x9f, 0x05, 0xf7, 0x28, 0xa7, 0x54, 0x8c, 0x9a, 0xf0, 0x81, - 0x86, 0xf7, 0xd0, 0xcb, 0x50, 0xb4, 0x02, 0xa7, 0x49, 0x83, 0x1c, 0xcc, 0xaf, 0x94, 0xcf, 0x6f, - 0x3d, 0x70, 0x68, 0x8c, 0xa3, 0x60, 0xb1, 0x1f, 0xe8, 0x09, 0xa8, 0x7a, 0xbd, 0xb0, 0xdb, 0x0b, - 0x9b, 0x4c, 0x64, 0xeb, 0x45, 0x8a, 0x5e, 0x85, 0x55, 0x52, 0x89, 0x0e, 0xd0, 0xeb, 0x50, 0x0d, - 0x28, 0x29, 0xa3, 0xfd, 0x4d, 0x69, 0x54, 0xaf, 0xba, 0xc2, 0xfa, 0xf1, 0x0d, 0xce, 0x33, 0x50, - 0x0b, 0x7d, 0xf3, 0x1e, 0x76, 0x84, 0x23, 0x40, 0xa0, 0xfc, 0x39, 0xcb, 0xea, 0xfb, 0xa7, 0xf8, - 0x8a, 0x03, 0xc3, 0xb2, 0xea, 0xc0, 0x10, 0xcd, 0x40, 0xc6, 0xbd, 0x4b, 0x4f, 0xc4, 0xb3, 0x46, - 0xc6, 0xbd, 0xcb, 0x18, 0x61, 0xa6, 0x9e, 0xd5, 0x3f, 0x09, 0xd3, 0x57, 0xec, 0x90, 0x52, 0x98, - 0x88, 0xbf, 0x46, 0xb7, 0x99, 0x54, 0xc8, 0x1f, 0x83, 0xa2, 0xef, 0xed, 0x31, 0xbd, 0x46, 0x5c, - 0xd8, 0x8a, 0x51, 0xf0, 0xbd, 0x3d, 0xaa, 0xb4, 0x68, 0x86, 0x9a, 0xe7, 0xf3, 0x54, 0xba, 0x8c, - 0xc1, 0x4b, 0xfa, 0xef, 0x6b, 0x7d, 0xae, 0x22, 0x9a, 0x28, 0x38, 0x9c, 0x2a, 0xfa, 0x38, 0x14, - 0x7c, 0xd6, 0x7f, 0x68, 0x4a, 0x87, 0x08, 0x89, 0xea, 0xd5, 0xa8, 0xd7, 0xc8, 0x0c, 0xa8, 0x7f, - 0x45, 0x83, 0xca, 0xeb, 0x4e, 0x2f, 0x78, 0x10, 0x52, 0x20, 0x3b, 0x98, 0xca, 0xca, 0x0f, 0xca, - 0xe8, 0x6a, 0xcc, 0xae, 0x64, 0xf5, 0xff, 0x9c, 0x86, 0x2a, 0xc7, 0xe7, 0x81, 0x24, 0x41, 0x6e, - 0x41, 0x99, 0xc0, 0x6e, 0x06, 0xb8, 0x1d, 0x05, 0xcf, 0xca, 0x6b, 0x6b, 0xd2, 0x9d, 0x49, 0x02, - 0x0d, 0x9a, 0x3e, 0xb3, 0x45, 0x3b, 0x7d, 0xc2, 0x0d, 0xfd, 0x7d, 0x96, 0x1d, 0xca, 0x2a, 0x50, - 0x0b, 0xe6, 0x76, 0x48, 0xe3, 0xa6, 0x38, 0xf4, 0x34, 0x1d, 0xfa, 0xe5, 0x11, 0x86, 0xa6, 0xa5, - 0xf4, 0xf8, 0xb3, 0x3b, 0xc9, 0x5a, 0x74, 0x9b, 0x2d, 0x69, 0x33, 0xc0, 0x26, 0x97, 0x0f, 0x6e, - 0x6c, 0xcf, 0x8d, 0x8c, 0xbd, 0xc9, 0x04, 0x88, 0x01, 0xa8, 0xb6, 0xc4, 0xba, 0xc6, 0x6d, 0x98, - 0x4d, 0xa1, 0x40, 0x24, 0xe2, 0x0e, 0xde, 0xe7, 0xfb, 0x6a, 0xf2, 0x13, 0xbd, 0x28, 0x26, 0x6f, - 0xa9, 0xcc, 0xfc, 0x55, 0xcf, 0x6d, 0x5f, 0xf0, 0x7d, 0x73, 0x9f, 0x27, 0x77, 0x9d, 0xcf, 0xbc, - 0xa2, 0x35, 0xb6, 0x61, 0x41, 0x36, 0xcd, 0xf7, 0x14, 0xc6, 0x6b, 0x80, 0x06, 0xe7, 0x29, 0x81, - 0x90, 0x48, 0x41, 0xcb, 0x0a, 0x23, 0xe8, 0xef, 0x64, 0xa1, 0xf2, 0xa9, 0x1e, 0xf6, 0xf7, 0x1f, - 0xa6, 0x4d, 0x88, 0x6c, 0xda, 0xb4, 0x60, 0xd3, 0x06, 0xd4, 0x70, 0x4e, 0xa2, 0x86, 0x25, 0xc6, - 0x24, 0x2f, 0x35, 0x26, 0x32, 0x3d, 0x5b, 0x18, 0x4b, 0xcf, 0x16, 0x95, 0x7a, 0x76, 0x1d, 0x2a, - 0xec, 0x8c, 0x76, 0x5c, 0x53, 0x50, 0xa6, 0xdd, 0x98, 0x25, 0x60, 0xfa, 0xa0, 0x56, 0xcf, 0xea, - 0xbf, 0xa7, 0xc5, 0x2b, 0x32, 0x91, 0x3e, 0x4d, 0x38, 0xa9, 0x99, 0xb1, 0x9d, 0xd4, 0x91, 0xf5, - 0xe9, 0xb7, 0x35, 0x28, 0xbd, 0x81, 0x5b, 0xa1, 0xe7, 0x13, 0x99, 0x95, 0x74, 0xd3, 0x46, 0xd8, - 0x68, 0x65, 0xd2, 0x1b, 0xad, 0x17, 0xa0, 0x68, 0x5b, 0x4d, 0x93, 0x30, 0x3c, 0x85, 0x3b, 0xcc, - 0x3f, 0x2d, 0xd8, 0x16, 0x95, 0x8c, 0xd1, 0x8f, 0xc9, 0xbe, 0xa6, 0x41, 0x85, 0xe1, 0x1c, 0xb0, - 0x9e, 0x1f, 0x11, 0xc0, 0x69, 0x32, 0x29, 0xe4, 0x85, 0x78, 0xa2, 0x57, 0xa6, 0xfa, 0x60, 0x2f, - 0x00, 0x10, 0x22, 0xf3, 0xee, 0x4c, 0x88, 0x57, 0xa4, 0xd8, 0xb2, 0xee, 0x94, 0xe0, 0x57, 0xa6, - 0x8c, 0x12, 0xe9, 0x45, 0x87, 0xb8, 0x58, 0x80, 0x1c, 0xed, 0xad, 0xff, 0x97, 0x06, 0xf3, 0x97, - 0x4c, 0xa7, 0xb5, 0x6e, 0x07, 0xa1, 0xe9, 0xb6, 0x26, 0xf0, 0x48, 0xcf, 0x43, 0xc1, 0xeb, 0x36, - 0x1d, 0xbc, 0x13, 0x72, 0x94, 0x4e, 0x0d, 0x99, 0x11, 0x23, 0x83, 0x91, 0xf7, 0xba, 0x57, 0xf1, - 0x4e, 0x88, 0x3e, 0x0a, 0x45, 0xaf, 0xdb, 0xf4, 0xed, 0xf6, 0x6e, 0xc8, 0xa9, 0x3f, 0x42, 0xe7, - 0x82, 0xd7, 0x35, 0x48, 0x0f, 0x21, 0xd6, 0x38, 0x3d, 0x66, 0xac, 0x51, 0xff, 0xde, 0xc0, 0xf4, - 0x27, 0x90, 0x81, 0xf3, 0x50, 0xb4, 0xdd, 0xb0, 0x69, 0xd9, 0x41, 0x44, 0x82, 0x13, 0x72, 0x1e, - 0x72, 0x43, 0x3a, 0x03, 0xba, 0xa6, 0x6e, 0x48, 0x60, 0xa3, 0xd7, 0x00, 0x76, 0x1c, 0xcf, 0xe4, - 0xbd, 0x19, 0x0d, 0x4e, 0xca, 0xc5, 0x87, 0x34, 0x8b, 0xfa, 0x97, 0x68, 0x27, 0x32, 0x42, 0x7f, - 0x49, 0xff, 0x4a, 0x83, 0xc5, 0x4d, 0xec, 0xb3, 0xdc, 0xc5, 0x90, 0x1f, 0x14, 0x6c, 0xb8, 0x3b, - 0x5e, 0xf2, 0xac, 0x46, 0x4b, 0x9d, 0xd5, 0xbc, 0x37, 0xe7, 0x13, 0x89, 0xfd, 0x24, 0x3b, 0x31, - 0x8c, 0xf6, 0x93, 0xd1, 0xb9, 0x28, 0x8b, 0x63, 0xcc, 0x28, 0x96, 0x89, 0xe3, 0x2b, 0x86, 0x73, - 0xf4, 0x9f, 0x63, 0x99, 0x55, 0xd2, 0x49, 0x1d, 0x9e, 0x61, 0x97, 0x80, 0x1b, 0x8e, 0x94, 0x19, - 0xf9, 0x00, 0xa4, 0x74, 0x87, 0x42, 0x11, 0xfd, 0x92, 0x06, 0x2b, 0x6a, 0xac, 0x26, 0xf1, 0xad, - 0x5e, 0x83, 0x9c, 0xed, 0xee, 0x78, 0x51, 0x58, 0xf7, 0x8c, 0x54, 0x16, 0xe4, 0x70, 0x59, 0x47, - 0xfd, 0xaf, 0x33, 0x50, 0xfb, 0x14, 0xcb, 0xd4, 0x79, 0xdf, 0x97, 0xbf, 0x83, 0x3b, 0xcd, 0xc0, - 0x7e, 0x1b, 0x47, 0xcb, 0xdf, 0xc1, 0x9d, 0x2d, 0xfb, 0x6d, 0x9c, 0xe0, 0x8c, 0x5c, 0x92, 0x33, - 0x86, 0x9f, 0xbb, 0x88, 0xc7, 0x0c, 0x85, 0xe4, 0x31, 0xc3, 0x12, 0xe4, 0x5d, 0xcf, 0xc2, 0x1b, - 0xeb, 0x7c, 0x0f, 0xce, 0x4b, 0x7d, 0x56, 0x2b, 0x8d, 0xc7, 0x6a, 0x04, 0x14, 0x1d, 0xc2, 0x62, - 0xa9, 0xc7, 0x04, 0x47, 0x56, 0xd4, 0xbf, 0xaa, 0x41, 0xe3, 0x32, 0x0e, 0xd3, 0x54, 0x7d, 0x78, - 0xfc, 0xf7, 0x8e, 0x06, 0xc7, 0xa4, 0x08, 0x4d, 0xc2, 0x7a, 0x1f, 0x49, 0xb2, 0x9e, 0xfc, 0x44, - 0x61, 0x00, 0x24, 0xe7, 0xba, 0xe7, 0xa1, 0xb2, 0xde, 0xeb, 0x74, 0x62, 0xdf, 0xee, 0x14, 0x54, - 0x7c, 0xf6, 0x93, 0xed, 0x8b, 0x99, 0x65, 0x2e, 0xf3, 0x3a, 0xb2, 0xfb, 0xd5, 0xcf, 0x42, 0x95, - 0x77, 0xe1, 0x58, 0x37, 0xa0, 0xe8, 0xf3, 0xdf, 0xbc, 0x7d, 0x5c, 0xd6, 0x17, 0x61, 0xde, 0xc0, - 0x6d, 0xc2, 0xf4, 0xfe, 0x55, 0xdb, 0xbd, 0xc3, 0xc1, 0xe8, 0x9f, 0xd5, 0x60, 0x21, 0x59, 0xcf, - 0xc7, 0x7a, 0x09, 0x0a, 0xa6, 0x65, 0xf9, 0x38, 0x08, 0x86, 0x2e, 0xcb, 0x05, 0xd6, 0xc6, 0x88, - 0x1a, 0x0b, 0x94, 0xcb, 0x8c, 0x4c, 0x39, 0xbd, 0x09, 0x73, 0x97, 0x71, 0x78, 0x0d, 0x87, 0xfe, - 0x44, 0xd9, 0x2f, 0x34, 0x4b, 0x88, 0x76, 0xe6, 0x6c, 0x11, 0x15, 0xf5, 0x2f, 0x6b, 0x80, 0x44, - 0x08, 0x93, 0x2c, 0xb3, 0x48, 0xe5, 0x4c, 0x92, 0xca, 0x2c, 0x85, 0xb1, 0xd3, 0xf5, 0x5c, 0xec, - 0x86, 0xa2, 0x23, 0x56, 0x8d, 0x6b, 0x29, 0xfb, 0xfd, 0xb1, 0x06, 0xd5, 0x4b, 0x51, 0x0d, 0xd5, - 0x2f, 0x7d, 0x61, 0xd4, 0x12, 0xc2, 0x88, 0x60, 0xda, 0xf7, 0x9c, 0x08, 0x10, 0xfd, 0x8d, 0x3e, - 0x06, 0xc0, 0x8e, 0xd1, 0x5a, 0x9e, 0xc5, 0x00, 0xcc, 0xa4, 0x5d, 0x20, 0x01, 0x73, 0x7c, 0xc9, - 0xb3, 0xb0, 0x51, 0x0a, 0xa2, 0x9f, 0xc4, 0x5c, 0xb2, 0xe3, 0x5e, 0xc2, 0x78, 0xa3, 0x9b, 0xfd, - 0x12, 0xed, 0x44, 0x90, 0xd5, 0xdf, 0xd5, 0xc8, 0x76, 0x8c, 0xa3, 0x4f, 0x61, 0x04, 0xe8, 0x95, - 0x48, 0x6b, 0x30, 0x4a, 0xea, 0x52, 0xe6, 0x4f, 0xcc, 0x39, 0x52, 0x1b, 0x5b, 0x30, 0x1f, 0xf4, - 0xb6, 0xfb, 0x64, 0xa3, 0xb5, 0x91, 0x10, 0x8d, 0x32, 0x0e, 0x12, 0xbb, 0x73, 0x74, 0xfa, 0x2b, - 0x9b, 0x1d, 0x9d, 0x0d, 0x8f, 0xc1, 0x63, 0x34, 0x09, 0x39, 0x31, 0x54, 0x24, 0x29, 0xdf, 0xd7, - 0x00, 0x5d, 0xf5, 0x4c, 0xeb, 0xa2, 0xe9, 0x4c, 0xe6, 0xec, 0x9d, 0x00, 0x08, 0xfc, 0x56, 0x93, - 0x2f, 0x77, 0x86, 0xdb, 0x12, 0xbf, 0x75, 0x9d, 0xad, 0xf8, 0x49, 0x28, 0x5b, 0x41, 0xc8, 0x3f, - 0x47, 0x09, 0x34, 0x60, 0x05, 0x21, 0xfb, 0x4e, 0xef, 0xa0, 0x90, 0x5d, 0x36, 0xb6, 0x9a, 0x42, - 0xfe, 0xc1, 0x34, 0x6d, 0x56, 0x63, 0x1f, 0xb6, 0xe2, 0x7a, 0x89, 0x42, 0xcc, 0xa9, 0x33, 0xb1, - 0xe7, 0xea, 0x39, 0x7d, 0x07, 0x96, 0xaf, 0x99, 0x6e, 0xcf, 0x74, 0x08, 0x19, 0xcc, 0xc4, 0xcd, - 0x81, 0xb4, 0x95, 0xd3, 0x24, 0x56, 0xee, 0x71, 0x96, 0xd0, 0xcc, 0x36, 0x6a, 0x74, 0x72, 0xd3, - 0x86, 0x50, 0xc3, 0xe0, 0x14, 0xea, 0x9a, 0xfe, 0xeb, 0x1a, 0xd4, 0x07, 0x01, 0x4d, 0x22, 0x97, - 0x14, 0xbd, 0x68, 0x28, 0xd1, 0x08, 0xf7, 0xeb, 0xd0, 0x87, 0x60, 0xbe, 0x5f, 0xde, 0x74, 0x4c, - 0xf7, 0x92, 0xd7, 0x73, 0x99, 0xcf, 0x98, 0x33, 0x64, 0x9f, 0xf4, 0x8f, 0xc7, 0x3c, 0x61, 0xc6, - 0x89, 0xe9, 0x38, 0x41, 0x11, 0x01, 0xa4, 0x36, 0x08, 0x52, 0xff, 0x9d, 0x0c, 0xb5, 0x7d, 0x03, - 0x23, 0x4c, 0x32, 0xd5, 0xf3, 0xc9, 0xa3, 0xbd, 0x27, 0x15, 0xb7, 0x72, 0x92, 0x10, 0xb9, 0xb8, - 0x9d, 0x86, 0x59, 0x7c, 0x1f, 0xb7, 0x7a, 0xa1, 0xed, 0xb6, 0xc9, 0x34, 0xaf, 0x7b, 0xdc, 0x17, - 0x49, 0x57, 0xa3, 0x27, 0xa1, 0x4a, 0x56, 0xce, 0xeb, 0x85, 0xbc, 0x1d, 0x73, 0x4a, 0x92, 0x95, - 0x64, 0x3c, 0x32, 0x5f, 0x07, 0x87, 0xd8, 0xe2, 0xed, 0x98, 0x87, 0x92, 0xae, 0x26, 0xd4, 0xda, - 0x31, 0x6d, 0x27, 0x6e, 0xc6, 0x0e, 0x0e, 0x12, 0x75, 0x03, 0xe4, 0x26, 0xd5, 0xc1, 0x38, 0xe4, - 0xfe, 0x1b, 0x2d, 0x45, 0x6e, 0x3e, 0xc2, 0xc3, 0x22, 0xf7, 0x15, 0x80, 0x0e, 0xf6, 0xdb, 0x78, - 0x83, 0x7a, 0x06, 0x2c, 0xa2, 0x77, 0x5a, 0xa9, 0xd4, 0xd8, 0x00, 0xd7, 0xa2, 0x0e, 0x86, 0xd0, - 0x57, 0xbf, 0x0c, 0xf3, 0x92, 0x26, 0xc4, 0xe8, 0xb1, 0x54, 0xd9, 0x28, 0x3a, 0x1c, 0x15, 0x89, - 0x4d, 0x09, 0x4d, 0xbf, 0x8d, 0x43, 0x2e, 0x0a, 0xbc, 0xa4, 0xbf, 0x44, 0x8f, 0xce, 0x69, 0xc0, - 0x2b, 0xc1, 0xcd, 0xc9, 0x8c, 0x26, 0x6d, 0x20, 0xa3, 0x69, 0x87, 0x1e, 0x4f, 0x8b, 0xfd, 0x26, - 0xcc, 0x46, 0xa3, 0x41, 0x44, 0x6c, 0xf1, 0x9b, 0x9c, 0x51, 0x51, 0xff, 0x6f, 0x0d, 0xaa, 0x1b, - 0x9d, 0xae, 0xd7, 0x3f, 0x61, 0x1c, 0x39, 0x52, 0x31, 0x78, 0x30, 0x93, 0x91, 0x1d, 0xcc, 0x3c, - 0x01, 0xd5, 0xe4, 0x9d, 0x3f, 0x16, 0xf8, 0xad, 0xb4, 0xc4, 0xbb, 0x7e, 0xc7, 0xa0, 0xe4, 0x7b, - 0x7b, 0x4d, 0xa2, 0xb3, 0x2d, 0x9e, 0xf7, 0x56, 0xf4, 0xbd, 0x3d, 0xa2, 0xc9, 0x2d, 0xb4, 0x00, - 0xb9, 0x1d, 0xdb, 0x89, 0x53, 0x36, 0x59, 0x01, 0x7d, 0x84, 0xec, 0xe3, 0x59, 0x56, 0x49, 0x7e, - 0x54, 0xbb, 0x1a, 0xf5, 0x60, 0xaa, 0x11, 0xd5, 0x35, 0xfd, 0x33, 0x30, 0x13, 0x4d, 0x7f, 0xc2, - 0xbb, 0xac, 0xa1, 0x19, 0xdc, 0x89, 0x72, 0xd3, 0x58, 0x41, 0x3f, 0xcb, 0x72, 0x0c, 0xe8, 0xf8, - 0x89, 0xd5, 0x47, 0x30, 0x4d, 0x5a, 0x70, 0xa1, 0xa2, 0xbf, 0xf5, 0x7f, 0xca, 0xc0, 0x52, 0xba, - 0xf5, 0x24, 0x28, 0xbd, 0x94, 0x14, 0x24, 0xf9, 0xd5, 0x44, 0x11, 0x1a, 0x17, 0x22, 0xbe, 0x14, - 0xad, 0x58, 0x59, 0x67, 0xe9, 0x52, 0x50, 0x0d, 0x8d, 0x96, 0xa1, 0x60, 0x5b, 0x4d, 0x87, 0xec, - 0xfd, 0x99, 0x15, 0xcc, 0xdb, 0xd6, 0x55, 0x3b, 0x08, 0xc9, 0x46, 0x86, 0xf9, 0xe3, 0x23, 0x27, - 0xb4, 0xb1, 0xf6, 0x68, 0x06, 0x32, 0xb6, 0xc5, 0xd5, 0x53, 0xc6, 0xb6, 0x28, 0xbb, 0x88, 0x17, - 0x53, 0xf8, 0x4e, 0x4a, 0xb4, 0x7c, 0x16, 0xb1, 0xdb, 0x5c, 0x56, 0xe8, 0xd5, 0x95, 0x62, 0x52, - 0x7c, 0x2c, 0xca, 0x4f, 0x2c, 0x53, 0xb5, 0x19, 0x06, 0x74, 0x6f, 0x95, 0x35, 0x8a, 0xac, 0xe2, - 0x66, 0xa0, 0xbf, 0x09, 0x4b, 0x04, 0x67, 0x36, 0xf7, 0x9b, 0x64, 0xa5, 0xc6, 0xe6, 0xfd, 0x05, - 0xc8, 0x39, 0x76, 0xc7, 0x8e, 0xa4, 0x9d, 0x15, 0xf4, 0x9f, 0xd1, 0x60, 0x79, 0x60, 0xe4, 0x49, - 0xd6, 0xf0, 0x82, 0xc8, 0x56, 0xe5, 0xb5, 0xb3, 0x52, 0x5d, 0x26, 0x67, 0x9a, 0x88, 0x07, 0xff, - 0x84, 0x79, 0xe3, 0x06, 0xbb, 0x0b, 0xf0, 0x80, 0xd3, 0x42, 0x4f, 0x43, 0x6d, 0xcf, 0x0e, 0x77, - 0x9b, 0xf4, 0x12, 0x2d, 0x75, 0xab, 0x98, 0x4f, 0x58, 0x34, 0x66, 0x48, 0xfd, 0x16, 0xa9, 0x26, - 0xae, 0x95, 0x34, 0x1e, 0x3a, 0x2d, 0xdd, 0x3d, 0x7e, 0x41, 0x83, 0xf9, 0x04, 0xfe, 0x93, 0xd0, - 0xf3, 0xa3, 0x64, 0x3b, 0xc1, 0x06, 0xe2, 0x24, 0x5d, 0x91, 0x92, 0x94, 0x43, 0xa3, 0x66, 0x21, - 0xee, 0xa1, 0x7f, 0x2b, 0x0b, 0x65, 0xe1, 0x0b, 0x3a, 0x0e, 0x25, 0xfe, 0xad, 0x1f, 0xa7, 0x88, - 0x2b, 0x46, 0xa2, 0xd7, 0x13, 0xd0, 0x57, 0x96, 0xc2, 0x25, 0x2c, 0x21, 0x85, 0xdb, 0x0a, 0xd0, - 0x15, 0x98, 0x61, 0xf4, 0x8c, 0x51, 0x97, 0xee, 0x23, 0xe2, 0xe4, 0x74, 0xd3, 0xb7, 0x38, 0x96, - 0x46, 0x35, 0x10, 0x4a, 0x2c, 0x87, 0xc2, 0xb3, 0x30, 0x85, 0x94, 0x4b, 0x44, 0x0d, 0xd0, 0x2a, - 0xcc, 0x27, 0x6f, 0x87, 0x88, 0x21, 0x8e, 0xb9, 0xc4, 0x0d, 0x11, 0x2a, 0x00, 0x26, 0xcc, 0xb9, - 0xbd, 0x4e, 0xd3, 0xeb, 0x85, 0xdb, 0x5e, 0xcf, 0x65, 0x6b, 0xcd, 0x1f, 0xc5, 0x38, 0x77, 0x10, - 0x49, 0x57, 0xaf, 0xf7, 0x3a, 0x37, 0x78, 0x47, 0xc2, 0x0d, 0xfc, 0x98, 0xcb, 0x4d, 0xd6, 0x36, - 0x2e, 0xc2, 0x82, 0xac, 0xe1, 0x41, 0xc7, 0x38, 0x39, 0xf1, 0x18, 0xe7, 0xab, 0x1a, 0x54, 0x44, - 0x8a, 0x90, 0x0d, 0xa5, 0x83, 0x4d, 0x0b, 0xfb, 0xf1, 0x92, 0xc5, 0x65, 0xa2, 0x55, 0xd8, 0xef, - 0x26, 0xd9, 0x60, 0x73, 0x6b, 0x06, 0xac, 0x8a, 0xec, 0xbd, 0xd1, 0x07, 0x60, 0xd6, 0xea, 0x24, - 0x6e, 0xb0, 0x47, 0x5b, 0x4e, 0xab, 0x23, 0x5c, 0x5d, 0x4f, 0xd0, 0x79, 0x3a, 0x19, 0x9d, 0xf9, - 0x5c, 0xff, 0x81, 0x15, 0x1f, 0x5b, 0xd8, 0x0d, 0x6d, 0xd3, 0x39, 0xbc, 0x4c, 0x36, 0xa0, 0xd8, - 0x0b, 0xb0, 0x2f, 0x18, 0xdf, 0xb8, 0x4c, 0xbe, 0x75, 0xcd, 0x20, 0xd8, 0xf3, 0x7c, 0x8b, 0x63, - 0x19, 0x97, 0x87, 0xa4, 0xf9, 0xb3, 0x77, 0x24, 0xe4, 0x69, 0xfe, 0x2f, 0xc1, 0x72, 0xc7, 0xb3, - 0xec, 0x1d, 0x5b, 0x76, 0x3b, 0x80, 0x74, 0x5b, 0x8c, 0x3e, 0x27, 0xfa, 0x45, 0x77, 0x1f, 0xe7, - 0xc5, 0xbb, 0x8f, 0xdf, 0xcc, 0xc0, 0xf2, 0xad, 0xae, 0xf5, 0x3e, 0xd0, 0x61, 0x05, 0xca, 0x9e, - 0x63, 0x6d, 0x26, 0x49, 0x21, 0x56, 0x91, 0x16, 0x2e, 0xde, 0x8b, 0x5b, 0x30, 0x3d, 0x24, 0x56, - 0x0d, 0xbd, 0x16, 0x71, 0x28, 0x7a, 0xe5, 0x87, 0xd1, 0xab, 0xf4, 0xdd, 0x57, 0xf3, 0xc5, 0x4c, - 0x6d, 0xa1, 0x9e, 0xd1, 0x7f, 0x14, 0x96, 0x59, 0x06, 0xce, 0x03, 0xa6, 0x52, 0xb4, 0x46, 0x8b, - 0xe2, 0x1a, 0xbd, 0x05, 0x8b, 0xc4, 0x9a, 0x11, 0xd0, 0xb7, 0x02, 0xec, 0x4f, 0xa8, 0x7b, 0x8f, - 0x43, 0x29, 0x82, 0x16, 0x5d, 0x68, 0xe9, 0x57, 0xe8, 0x3f, 0x0c, 0x0b, 0x29, 0x58, 0x87, 0x9c, - 0x65, 0x34, 0x93, 0x25, 0x71, 0x26, 0x2b, 0x00, 0x86, 0xe7, 0x10, 0xfd, 0x61, 0x87, 0xfb, 0xc4, - 0xfb, 0x12, 0x4c, 0x3b, 0xfd, 0x4d, 0x5a, 0x10, 0xb8, 0x43, 0x5a, 0xfc, 0xac, 0x06, 0x73, 0x4c, - 0x72, 0xc9, 0x50, 0x87, 0x5f, 0x85, 0x97, 0x21, 0x8f, 0x29, 0x14, 0x1e, 0xb4, 0x3b, 0x29, 0x57, - 0x97, 0x31, 0xba, 0x06, 0x6f, 0x2e, 0x15, 0xa3, 0x10, 0x66, 0xd7, 0x7d, 0xaf, 0x3b, 0x19, 0x46, - 0xd4, 0xe3, 0x73, 0xb0, 0xe8, 0xc3, 0x17, 0x49, 0xc5, 0x75, 0x15, 0x63, 0xbc, 0xab, 0xc1, 0xd2, - 0x8d, 0x2e, 0xf6, 0xcd, 0x10, 0x13, 0xa2, 0x4d, 0x06, 0x7d, 0x98, 0xec, 0x26, 0x30, 0xcb, 0x26, - 0x31, 0x43, 0x1f, 0x4d, 0x5c, 0xd8, 0x96, 0xef, 0xf3, 0x52, 0x58, 0xf6, 0x6f, 0x6d, 0x45, 0xf3, - 0x5a, 0x16, 0xe7, 0xf5, 0x1d, 0x0d, 0xe6, 0xb6, 0x30, 0x31, 0xcf, 0x93, 0x4d, 0xe9, 0x05, 0x21, - 0x90, 0x38, 0xc2, 0x02, 0xb3, 0x48, 0xe3, 0x19, 0x98, 0xb3, 0xdd, 0x96, 0xd3, 0xb3, 0x70, 0x93, - 0xcc, 0x9f, 0x45, 0x0c, 0x99, 0xf3, 0x34, 0xcb, 0x3f, 0x90, 0x69, 0x10, 0x03, 0x2a, 0xe5, 0xf1, - 0xfb, 0x8c, 0xc7, 0xe3, 0xbc, 0x47, 0x86, 0x82, 0x36, 0x0e, 0x0a, 0xe7, 0x20, 0x47, 0x40, 0x47, - 0xbe, 0x91, 0xbc, 0x57, 0x5f, 0x4c, 0x0c, 0xd6, 0x5a, 0xff, 0x49, 0x0d, 0x90, 0x48, 0xb6, 0x49, - 0xb4, 0xc4, 0x87, 0xc5, 0x7c, 0xa7, 0xec, 0x50, 0xd4, 0xd9, 0x4c, 0xe3, 0x4c, 0x27, 0xfd, 0xdb, - 0xf1, 0xea, 0xd1, 0xe5, 0x9e, 0x64, 0xf5, 0xc8, 0xbc, 0x86, 0xae, 0x9e, 0x40, 0x04, 0xda, 0x58, - 0x5c, 0x3d, 0xca, 0xb1, 0x92, 0xd5, 0x23, 0x38, 0xd3, 0xd5, 0xe3, 0xfa, 0xbd, 0x5e, 0xcf, 0x90, - 0x45, 0x63, 0xc8, 0x46, 0x8b, 0x46, 0x21, 0x6b, 0xe3, 0x40, 0x3e, 0x07, 0x39, 0x02, 0xf1, 0x60, - 0x7a, 0x45, 0x8b, 0x46, 0x5b, 0x0b, 0x8b, 0xc6, 0x11, 0x78, 0xf0, 0x8b, 0xd6, 0x9f, 0x69, 0x7f, - 0xd1, 0x74, 0xa8, 0xdc, 0xd8, 0x7e, 0x0b, 0xb7, 0xc2, 0x21, 0x9a, 0xf7, 0x29, 0x98, 0xdd, 0xf4, - 0xed, 0x7b, 0xb6, 0x83, 0xdb, 0xc3, 0x54, 0xf8, 0x17, 0x34, 0xa8, 0x5e, 0xf6, 0x4d, 0x37, 0xf4, - 0x22, 0x35, 0x7e, 0x28, 0x7a, 0x5e, 0x84, 0x52, 0x37, 0x82, 0xc6, 0x79, 0xe0, 0x49, 0xf9, 0xc1, - 0x66, 0x12, 0x27, 0xa3, 0xdf, 0x4d, 0x7f, 0x03, 0x16, 0x28, 0x26, 0x69, 0xb4, 0x5f, 0x85, 0x22, - 0x55, 0xe6, 0x36, 0x0f, 0x20, 0xa9, 0x62, 0xee, 0x89, 0x69, 0x18, 0x71, 0x1f, 0xfd, 0xef, 0x35, - 0x28, 0xd3, 0x6f, 0xfd, 0x09, 0x8e, 0x2f, 0xe5, 0x1f, 0x86, 0xbc, 0x47, 0x49, 0x3e, 0x34, 0xff, - 0x41, 0x5c, 0x15, 0x83, 0x77, 0x20, 0x1e, 0x32, 0xfb, 0x25, 0x6a, 0x64, 0x60, 0x55, 0x5c, 0x27, - 0x17, 0xda, 0x0c, 0x77, 0xaa, 0x96, 0x47, 0x9b, 0x5f, 0xd4, 0x45, 0xff, 0xf9, 0x98, 0x27, 0x69, - 0x83, 0xc3, 0x8b, 0xf0, 0x2b, 0x29, 0x1b, 0xbb, 0xa2, 0xc6, 0x42, 0x6e, 0x64, 0x13, 0x9a, 0x95, - 0x6c, 0x41, 0x13, 0x68, 0x4d, 0xb8, 0x05, 0x8d, 0x59, 0x60, 0xd8, 0x16, 0x54, 0x44, 0xae, 0xcf, - 0x00, 0x7f, 0xab, 0xc1, 0x32, 0xb7, 0x69, 0x31, 0x6f, 0x3d, 0x04, 0x32, 0xa1, 0x8f, 0x71, 0xdb, - 0xcb, 0x0e, 0xc4, 0x9e, 0x19, 0x66, 0x7b, 0x63, 0x3c, 0x0f, 0x30, 0xbe, 0xbf, 0xa9, 0xd1, 0x70, - 0xf4, 0x55, 0xcf, 0xb4, 0x6c, 0xb7, 0x3d, 0xf9, 0xbd, 0x2e, 0x49, 0x84, 0x21, 0x33, 0x6a, 0xe6, - 0x75, 0x56, 0x96, 0x1d, 0xc5, 0x82, 0x86, 0x2b, 0xf5, 0x8c, 0xde, 0xa1, 0x61, 0xef, 0x01, 0x4c, - 0x27, 0x3c, 0xe8, 0xec, 0xf2, 0x81, 0x78, 0xa4, 0x20, 0x2e, 0xeb, 0xdf, 0x60, 0x21, 0x10, 0x02, - 0x6f, 0xc2, 0xeb, 0x57, 0x0f, 0x88, 0x26, 0xa7, 0xea, 0x19, 0xfd, 0x27, 0xd8, 0x25, 0x31, 0x01, - 0xc9, 0x49, 0xc8, 0xf1, 0x62, 0x32, 0x78, 0x29, 0x3f, 0x71, 0xed, 0xc3, 0xe2, 0xf9, 0x37, 0x4f, - 0x41, 0xe9, 0x1a, 0x6d, 0xf7, 0x89, 0xfb, 0x21, 0xaa, 0x43, 0xe1, 0x1e, 0xf6, 0x03, 0xdb, 0x73, - 0xb9, 0x95, 0x88, 0x8a, 0xfa, 0x3c, 0x3d, 0x01, 0x7f, 0x83, 0x95, 0xa2, 0x23, 0xc7, 0x16, 0x0d, - 0x93, 0xc5, 0x95, 0x13, 0x46, 0xdb, 0x23, 0xc8, 0x99, 0x24, 0xe4, 0x05, 0x40, 0x97, 0x76, 0x71, - 0xeb, 0xce, 0x15, 0x6c, 0x3a, 0x61, 0x94, 0x68, 0xad, 0xff, 0xb9, 0x06, 0xf3, 0x89, 0xea, 0x09, - 0xb7, 0x59, 0x76, 0xc0, 0x06, 0xda, 0xe7, 0xc1, 0xfe, 0x7e, 0x05, 0x3b, 0xb5, 0x37, 0x03, 0xcf, - 0x8d, 0x5f, 0x7e, 0xe5, 0x45, 0x74, 0x11, 0x2a, 0x77, 0x7b, 0x5e, 0x68, 0x46, 0x47, 0xc2, 0xd3, - 0x2b, 0xd9, 0xc1, 0x8b, 0x6c, 0x71, 0x5e, 0x85, 0x17, 0x9a, 0x8c, 0xf2, 0xe5, 0xbb, 0xf1, 0xef, - 0x40, 0xff, 0xa2, 0x06, 0x0d, 0xbe, 0x45, 0x12, 0x03, 0x46, 0x87, 0xe7, 0x57, 0xfa, 0xb4, 0x89, - 0x18, 0x95, 0x8a, 0x8e, 0x18, 0x12, 0x01, 0xa9, 0x48, 0x9d, 0x34, 0x12, 0xaf, 0x96, 0x6a, 0x50, - 0xa7, 0x5b, 0xa3, 0x87, 0x81, 0xc9, 0x31, 0x11, 0x93, 0x7f, 0xd0, 0x60, 0xfe, 0xa6, 0x6f, 0xba, - 0xc1, 0x0e, 0xf6, 0xaf, 0x7b, 0xd6, 0x04, 0xe2, 0xbb, 0x06, 0x8b, 0x1c, 0x05, 0x29, 0x2e, 0xf3, - 0xac, 0x2e, 0x31, 0x63, 0xd2, 0x87, 0x1d, 0x45, 0xa5, 0xfb, 0x30, 0xe3, 0x3d, 0xcf, 0x3e, 0x26, - 0xfb, 0xf0, 0x0c, 0x28, 0x1a, 0xd3, 0x63, 0x0f, 0xe8, 0x15, 0xdc, 0x5e, 0x87, 0xe0, 0x1e, 0x4d, - 0xf0, 0x71, 0x71, 0x82, 0x3f, 0x9d, 0x81, 0xa5, 0x68, 0x82, 0x51, 0xe4, 0xf1, 0xc8, 0xcf, 0x71, - 0xd4, 0x00, 0x34, 0xf1, 0x79, 0x68, 0x3a, 0x18, 0x9b, 0x18, 0x3f, 0x6f, 0x05, 0xb7, 0xd7, 0xe1, - 0x53, 0x8d, 0x48, 0x72, 0x52, 0x24, 0x89, 0x09, 0x8f, 0x5d, 0xb5, 0x83, 0x24, 0xc8, 0xc9, 0x63, - 0x1a, 0x27, 0x44, 0x10, 0x6f, 0x43, 0x43, 0x06, 0x62, 0xc2, 0x97, 0x47, 0xd2, 0x4f, 0x04, 0x65, - 0x64, 0x4f, 0x04, 0xe9, 0x5f, 0xd2, 0xe0, 0x78, 0x74, 0x57, 0xfc, 0xa1, 0x08, 0xd8, 0xf1, 0xd4, - 0x13, 0xca, 0x27, 0x14, 0xd8, 0x4c, 0x42, 0x8d, 0x0d, 0x29, 0x46, 0x2a, 0x97, 0x36, 0x09, 0x38, - 0x89, 0xb5, 0xfe, 0x2f, 0xd3, 0x50, 0x4d, 0xb2, 0x9f, 0x64, 0x03, 0x43, 0x7c, 0x80, 0x96, 0xd9, - 0x35, 0x5b, 0x91, 0x43, 0x96, 0x33, 0xe2, 0x32, 0xfa, 0x20, 0x20, 0xc2, 0x85, 0xf1, 0x33, 0x67, - 0x4c, 0x38, 0x59, 0x2e, 0x45, 0xcd, 0xed, 0x75, 0xe2, 0x27, 0xce, 0x88, 0x94, 0xa2, 0x1d, 0xd6, - 0xda, 0xf1, 0x4c, 0x0b, 0xc7, 0xe7, 0x06, 0xfc, 0xd8, 0xe0, 0x95, 0x83, 0xd1, 0x5f, 0xbd, 0xde, - 0xeb, 0x5c, 0xa5, 0x7d, 0x39, 0x8f, 0xb3, 0x08, 0x3d, 0x81, 0x93, 0xa8, 0x46, 0xad, 0xf8, 0x14, - 0xa0, 0xed, 0xd9, 0x6e, 0x9b, 0x21, 0x95, 0x1b, 0x72, 0xdd, 0x65, 0x00, 0xcc, 0x0d, 0xde, 0x75, - 0xe0, 0x1c, 0x20, 0xae, 0x8d, 0x80, 0xd8, 0x6e, 0xcb, 0xeb, 0xc4, 0x40, 0xf2, 0xe3, 0x00, 0xd9, - 0xe0, 0x5d, 0x93, 0x40, 0xc4, 0xda, 0xc6, 0x25, 0x58, 0x94, 0x4e, 0x7a, 0x9c, 0xd3, 0x86, 0xfe, - 0x89, 0x45, 0x72, 0x4a, 0x87, 0x18, 0x63, 0x00, 0xe3, 0xb1, 0x4e, 0x3d, 0xde, 0xd1, 0x60, 0xd9, - 0xc0, 0x84, 0xa7, 0xde, 0x8b, 0x27, 0x49, 0x67, 0x20, 0x63, 0x6d, 0x73, 0x69, 0xcc, 0x58, 0xdb, - 0xc4, 0x87, 0xf0, 0xd8, 0x6d, 0x04, 0xae, 0x5f, 0xa3, 0x22, 0x4d, 0x4a, 0xc5, 0x7b, 0xd7, 0xfb, - 0xba, 0x34, 0x2a, 0x9e, 0x39, 0x05, 0xc5, 0xe8, 0xd5, 0x24, 0x54, 0x80, 0xec, 0x05, 0xc7, 0xa9, - 0x4d, 0xa1, 0x0a, 0x14, 0x37, 0xf8, 0xd3, 0x40, 0x35, 0xed, 0xcc, 0x6b, 0x30, 0x2f, 0x89, 0xd6, - 0xa1, 0x39, 0xa8, 0x5e, 0xb0, 0x68, 0x4c, 0xf8, 0xa6, 0x47, 0x2a, 0x6b, 0x53, 0x68, 0x09, 0x90, - 0x81, 0x3b, 0xde, 0x3d, 0xda, 0xf0, 0x75, 0xdf, 0xeb, 0xd0, 0x7a, 0xed, 0xcc, 0xb3, 0xb0, 0x20, - 0xdb, 0x73, 0xa0, 0x12, 0xe4, 0xe8, 0x1e, 0xa6, 0x36, 0x85, 0x00, 0xf2, 0x06, 0xbe, 0xe7, 0xdd, - 0x21, 0xcd, 0x6f, 0x03, 0xf4, 0x1d, 0x19, 0x54, 0x86, 0xc2, 0x2d, 0xf7, 0x8e, 0xeb, 0xed, 0xb9, - 0xb5, 0x29, 0x34, 0x0b, 0x65, 0x03, 0x9b, 0xd6, 0x55, 0xbb, 0x63, 0x87, 0xd8, 0xaa, 0x65, 0x50, - 0x0d, 0x2a, 0x6f, 0xfa, 0x76, 0x88, 0xa3, 0x9a, 0x2c, 0x9a, 0x01, 0x58, 0xc7, 0xee, 0xfe, 0x4d, - 0x8f, 0x34, 0xac, 0x4d, 0x93, 0x2e, 0xac, 0x4c, 0xdb, 0xd5, 0x72, 0x6b, 0xbf, 0xf1, 0x32, 0x54, - 0x99, 0x37, 0xca, 0x5f, 0x21, 0x44, 0x4d, 0xa8, 0xa5, 0xdf, 0xd6, 0x47, 0x1f, 0x94, 0xa7, 0xa7, - 0xc8, 0x9f, 0xe0, 0x6f, 0x0c, 0xd3, 0x5b, 0xfa, 0x14, 0xfa, 0x0c, 0xcc, 0x24, 0x9f, 0x92, 0x47, - 0xf2, 0x94, 0x6c, 0xe9, 0x7b, 0xf3, 0x07, 0x0d, 0xde, 0x84, 0x6a, 0xe2, 0xed, 0x73, 0x24, 0xdf, - 0xf5, 0xc9, 0xde, 0x47, 0x6f, 0xc8, 0x43, 0x0c, 0xe2, 0xfb, 0xe4, 0x0c, 0xfb, 0xe4, 0x4b, 0xc2, - 0x0a, 0xec, 0xa5, 0xcf, 0x0d, 0x1f, 0x84, 0xbd, 0x09, 0x73, 0x03, 0xaf, 0xf4, 0xa2, 0x67, 0x15, - 0xea, 0x43, 0xfe, 0x9a, 0xef, 0x41, 0x20, 0xf6, 0x00, 0x0d, 0xbe, 0xe7, 0x8d, 0x56, 0xe5, 0x2b, - 0xa0, 0x7a, 0xe1, 0xbc, 0xf1, 0xdc, 0xc8, 0xed, 0x63, 0xc2, 0x7d, 0x5e, 0x83, 0x65, 0xc5, 0x83, - 0xae, 0xe8, 0x05, 0x55, 0xca, 0xc0, 0x90, 0xe7, 0x69, 0x1b, 0x2f, 0x8e, 0xd7, 0x29, 0x46, 0xc4, - 0x85, 0xd9, 0xd4, 0x7b, 0xa6, 0xe8, 0xac, 0xf2, 0x05, 0xb5, 0xc1, 0xc7, 0x5e, 0x1b, 0x1f, 0x1c, - 0xad, 0x71, 0x0c, 0xef, 0x36, 0xcc, 0xa6, 0xfe, 0x31, 0x81, 0x02, 0x9e, 0xfc, 0xdf, 0x17, 0x1c, - 0xb4, 0xa0, 0xb7, 0x61, 0x36, 0xf5, 0x56, 0xa8, 0x62, 0x78, 0xf9, 0x8b, 0xa2, 0x07, 0x0d, 0xff, - 0x69, 0xa8, 0x26, 0x1e, 0xf5, 0x54, 0x08, 0x94, 0xec, 0xe1, 0xcf, 0x83, 0x31, 0xaf, 0x88, 0x6f, - 0x6f, 0xa2, 0xd3, 0x2a, 0x51, 0x1d, 0x18, 0x78, 0x1c, 0x49, 0xed, 0x3f, 0x78, 0x37, 0x44, 0x52, - 0x07, 0xde, 0x08, 0x1c, 0x5d, 0x52, 0x85, 0xf1, 0x87, 0x4a, 0xea, 0xd8, 0x20, 0x3e, 0xab, 0xd1, - 0x54, 0x2b, 0xc9, 0x83, 0x8a, 0x68, 0x4d, 0xc5, 0xfa, 0xea, 0xa7, 0x23, 0x1b, 0x2f, 0x8c, 0xd5, - 0x27, 0xa6, 0xe2, 0x1d, 0x98, 0x49, 0x3e, 0x1b, 0xa8, 0xa0, 0xa2, 0xf4, 0xa5, 0xc5, 0xc6, 0xd9, - 0x91, 0xda, 0xc6, 0xc0, 0xf6, 0x68, 0x78, 0x23, 0x15, 0xb2, 0x52, 0x28, 0x27, 0x65, 0x14, 0x4e, - 0xa1, 0x9c, 0xd4, 0xb1, 0x30, 0x7d, 0x0a, 0x61, 0xa8, 0x88, 0x61, 0x21, 0x05, 0x2b, 0x4a, 0xc2, - 0x5b, 0x8d, 0x67, 0x46, 0x68, 0x19, 0x83, 0xb9, 0x05, 0x65, 0xe1, 0x5f, 0x4c, 0xa1, 0xa7, 0x87, - 0xc8, 0xa9, 0xf8, 0xaf, 0x7b, 0x0e, 0xe2, 0x94, 0x4f, 0x41, 0x29, 0xfe, 0xcf, 0x50, 0xe8, 0x29, - 0xa5, 0x7c, 0x8e, 0x33, 0xe4, 0x16, 0x40, 0xff, 0xdf, 0x3e, 0xa1, 0x0f, 0xa8, 0xf5, 0xd5, 0x38, - 0x83, 0xee, 0x42, 0x35, 0xf1, 0x2f, 0x93, 0x54, 0xba, 0x44, 0xf2, 0x0f, 0x9d, 0x1a, 0x67, 0x46, - 0x69, 0x1a, 0x13, 0xfa, 0x47, 0xa0, 0x2c, 0xfc, 0x83, 0x22, 0x05, 0x4d, 0xd2, 0xff, 0x21, 0xa9, - 0x71, 0x7a, 0x78, 0x33, 0x1c, 0xc8, 0x96, 0x92, 0x3d, 0x92, 0x32, 0x6c, 0x29, 0xc5, 0x67, 0x91, - 0xc6, 0x20, 0x11, 0x1b, 0x78, 0x38, 0x89, 0x12, 0x43, 0x9f, 0x19, 0xa5, 0x69, 0x3c, 0x81, 0x5d, - 0xa8, 0x26, 0x9e, 0x96, 0x42, 0x4a, 0x4e, 0x1e, 0x78, 0x52, 0x4b, 0x01, 0x49, 0xfa, 0x52, 0x95, - 0x3e, 0x85, 0x7e, 0x5c, 0x78, 0xc5, 0x2a, 0xf1, 0x64, 0x18, 0x7a, 0x7e, 0xe8, 0x38, 0xb2, 0xa7, - 0xd3, 0x1a, 0x6b, 0xe3, 0x74, 0x89, 0x51, 0xe0, 0x12, 0xc2, 0x48, 0xaa, 0x96, 0x90, 0x71, 0x56, - 0x6a, 0x0b, 0xf2, 0xec, 0x8d, 0x28, 0xa4, 0x2b, 0x1e, 0x8a, 0x13, 0x5e, 0x44, 0x6a, 0x3c, 0x21, - 0x6d, 0x93, 0x7c, 0x06, 0x88, 0x0d, 0xca, 0x32, 0x69, 0x14, 0x83, 0x26, 0x1e, 0xba, 0x19, 0x63, - 0x50, 0xf6, 0x3c, 0x93, 0x62, 0xd0, 0xc4, 0xdb, 0x4d, 0xa3, 0x0e, 0x6a, 0x40, 0x9e, 0x3d, 0xe7, - 0xa1, 0x18, 0x34, 0xf1, 0x56, 0x4d, 0x63, 0x78, 0x1b, 0x76, 0xc8, 0x3a, 0x85, 0x36, 0x21, 0x47, - 0x73, 0xc9, 0xd1, 0xa9, 0x61, 0x4f, 0x44, 0x0c, 0x1b, 0x31, 0xf1, 0x8a, 0x84, 0x3e, 0x85, 0x6e, - 0x40, 0x8e, 0x5e, 0xaf, 0x53, 0x8c, 0x28, 0xbe, 0x9d, 0xd0, 0x18, 0xda, 0x24, 0x42, 0xd1, 0x82, - 0x8a, 0x78, 0xc3, 0x59, 0x61, 0x28, 0x24, 0x77, 0xc0, 0x1b, 0xa3, 0xb4, 0x8c, 0xa0, 0x30, 0xd9, - 0xec, 0xe7, 0xd5, 0xab, 0x65, 0x73, 0x20, 0x67, 0x5f, 0x2d, 0x9b, 0x83, 0x69, 0xfa, 0xfa, 0x14, - 0xfa, 0xa2, 0x06, 0x75, 0xd5, 0xb5, 0x5b, 0xa4, 0xf4, 0xb0, 0x87, 0xdd, 0x1d, 0x6e, 0x9c, 0x1b, - 0xb3, 0x57, 0x8c, 0xcb, 0xdb, 0xf4, 0x00, 0x69, 0xe0, 0xa2, 0xad, 0xd2, 0x9c, 0x2b, 0x2e, 0x8f, - 0x36, 0x3e, 0x34, 0x7a, 0x87, 0x18, 0xf6, 0x36, 0x94, 0x85, 0xfc, 0x5d, 0x85, 0x3a, 0x1f, 0xcc, - 0x50, 0x6e, 0x9c, 0x3e, 0xb8, 0x61, 0x0c, 0x63, 0x13, 0x72, 0xf4, 0x76, 0xa6, 0x82, 0x19, 0xc5, - 0xcb, 0x9e, 0x0a, 0xf6, 0x4e, 0x5c, 0xee, 0x64, 0x6e, 0x8b, 0x78, 0x55, 0x53, 0xc1, 0x8d, 0x92, - 0x5b, 0x9e, 0x0a, 0xb7, 0x45, 0x76, 0xef, 0x93, 0x6e, 0xaa, 0xa1, 0x7f, 0x55, 0x52, 0xe1, 0x0c, - 0x0c, 0xdc, 0xd6, 0x6c, 0x3c, 0x7d, 0x60, 0xbb, 0x18, 0x80, 0x43, 0xfd, 0xbe, 0xf4, 0x05, 0xc2, - 0x55, 0xf5, 0x06, 0x4f, 0x76, 0x1f, 0xaf, 0xf1, 0xe4, 0xf0, 0x9b, 0x81, 0xfc, 0xf8, 0x87, 0x9a, - 0x6e, 0xe1, 0xda, 0x9e, 0x62, 0xad, 0x07, 0x2f, 0xf6, 0x8d, 0xb0, 0xb3, 0x1e, 0xbc, 0xd5, 0x35, - 0x7c, 0x12, 0x83, 0x17, 0xc8, 0xd4, 0xce, 0xab, 0xe2, 0xba, 0x98, 0x3e, 0x85, 0xee, 0x42, 0x2d, - 0x7d, 0x6f, 0x4e, 0x11, 0xb1, 0x51, 0xdc, 0xe3, 0x6b, 0x3c, 0x3b, 0x62, 0x6b, 0xd1, 0xa4, 0x1f, - 0x1b, 0xc4, 0xe9, 0x4d, 0x3b, 0xdc, 0xa5, 0x97, 0xab, 0x46, 0x99, 0xb5, 0x78, 0x8f, 0x6b, 0x94, - 0x59, 0x27, 0x6e, 0x6d, 0x71, 0xfb, 0x4b, 0x2f, 0x14, 0xa8, 0xec, 0xaf, 0x78, 0x5f, 0x48, 0x61, - 0xd5, 0x92, 0x97, 0x6a, 0xd8, 0x6e, 0x27, 0x79, 0x51, 0x01, 0x9d, 0x19, 0xe9, 0x36, 0xc3, 0xb0, - 0xdd, 0x8e, 0xfc, 0xe6, 0x03, 0x0b, 0x44, 0xa4, 0xee, 0x61, 0x28, 0x76, 0xee, 0xf2, 0x7b, 0x20, - 0x8a, 0x40, 0x84, 0xe2, 0x6a, 0x07, 0x15, 0xe3, 0x5a, 0x3a, 0xa9, 0x7b, 0x78, 0x64, 0x2f, 0x9d, - 0xcd, 0x7b, 0x70, 0xf0, 0xad, 0x96, 0xce, 0x96, 0x56, 0x00, 0x50, 0x24, 0x55, 0x8f, 0x00, 0x20, - 0x9d, 0x68, 0xac, 0x00, 0xa0, 0xc8, 0x47, 0x1e, 0xc1, 0xfd, 0x4e, 0x24, 0xf8, 0x2a, 0x0c, 0xaf, - 0x2c, 0x09, 0x58, 0x61, 0x78, 0xa5, 0xb9, 0xc9, 0x6c, 0x83, 0xd5, 0xcf, 0xd3, 0x55, 0xe8, 0xd4, - 0x81, 0x44, 0xde, 0x83, 0xd0, 0xbf, 0x01, 0xc5, 0x28, 0xd1, 0x16, 0x3d, 0xa9, 0xf4, 0x72, 0xc7, - 0x18, 0xf0, 0x36, 0xcc, 0xa6, 0xc2, 0xdd, 0x0a, 0x16, 0x95, 0x27, 0xda, 0x1e, 0xbc, 0x9e, 0xd0, - 0x4f, 0xc9, 0x54, 0x10, 0x61, 0x20, 0xd5, 0x55, 0x61, 0x58, 0x06, 0x73, 0x3b, 0x45, 0x00, 0x04, - 0xb1, 0xa1, 0x00, 0x84, 0x6c, 0xcc, 0xa1, 0x00, 0xc4, 0x3c, 0x44, 0xc6, 0x91, 0xe9, 0x68, 0xbe, - 0x82, 0x23, 0x15, 0x09, 0x51, 0x07, 0x91, 0x68, 0x1b, 0xca, 0x42, 0x56, 0x17, 0x1a, 0x86, 0x9a, - 0x98, 0x8e, 0xa6, 0x70, 0x4c, 0x24, 0x09, 0x62, 0xb1, 0x7d, 0xe7, 0x59, 0x25, 0x6a, 0xfb, 0x9e, - 0xcc, 0x45, 0x51, 0xdb, 0xf7, 0x54, 0x7a, 0x0a, 0x9b, 0x84, 0x90, 0x3a, 0xa2, 0xda, 0x2c, 0x0f, - 0xe4, 0x9c, 0xa8, 0x7c, 0xe6, 0xc1, 0x2c, 0x14, 0xea, 0x0b, 0xcd, 0x4b, 0xb2, 0x3a, 0x14, 0xde, - 0xa3, 0x3a, 0xff, 0x63, 0x84, 0xc0, 0xdf, 0x40, 0xc2, 0x86, 0x22, 0xf0, 0xa7, 0x4a, 0xec, 0x38, - 0x08, 0xc4, 0x9b, 0x50, 0x11, 0x33, 0x31, 0x14, 0x5e, 0x9d, 0x24, 0x59, 0x63, 0x04, 0x69, 0x4e, - 0x65, 0x40, 0x28, 0xa4, 0x59, 0x9e, 0x27, 0x31, 0x82, 0x03, 0x34, 0x78, 0xd6, 0xaf, 0x70, 0x05, - 0x94, 0x79, 0x07, 0x0a, 0x57, 0x40, 0x9d, 0x44, 0xc0, 0x03, 0x0c, 0xd2, 0xa3, 0x75, 0x45, 0x80, - 0x61, 0x58, 0x52, 0x80, 0x22, 0xc0, 0x30, 0xf4, 0xe4, 0x9e, 0xe9, 0x81, 0xf4, 0x59, 0xa6, 0x42, - 0x0f, 0x28, 0x8e, 0x3c, 0x0f, 0x20, 0xee, 0x5a, 0x0f, 0x2a, 0x9b, 0xbe, 0x77, 0x3f, 0xfa, 0x67, - 0x61, 0xef, 0x93, 0xeb, 0x7f, 0xbe, 0x05, 0x33, 0xac, 0x41, 0x13, 0xdf, 0x0f, 0x9b, 0xde, 0xf6, - 0x5b, 0xe8, 0xf8, 0x2a, 0xfb, 0x57, 0xfa, 0xab, 0xd1, 0xbf, 0xd2, 0x5f, 0x7d, 0xdd, 0x76, 0xf0, - 0x0d, 0x7e, 0xc9, 0xf9, 0x9f, 0x0b, 0x43, 0xde, 0x5f, 0x8b, 0xd3, 0xde, 0x0c, 0xfe, 0xdf, 0xfc, - 0x3f, 0x71, 0x3f, 0xbc, 0xb1, 0xfd, 0xd6, 0xc5, 0x1d, 0x98, 0xb1, 0xe3, 0x46, 0x6d, 0xbf, 0xdb, - 0xba, 0x58, 0x66, 0x4d, 0x37, 0x49, 0xef, 0x4d, 0xed, 0x87, 0x9e, 0x6f, 0xdb, 0xe1, 0x6e, 0x6f, - 0x9b, 0x10, 0xe5, 0x39, 0xd6, 0xec, 0x59, 0xdb, 0x8b, 0x7e, 0x51, 0x10, 0xcf, 0xb5, 0xbd, 0x67, - 0xcd, 0xae, 0xcd, 0xeb, 0xba, 0xdb, 0xbf, 0xa6, 0x69, 0xbf, 0x9d, 0x99, 0xd9, 0xb8, 0xc1, 0x61, - 0xae, 0x5e, 0xf6, 0xbb, 0xad, 0xed, 0x3c, 0x6d, 0xfa, 0xc2, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, - 0x07, 0x1c, 0x93, 0x1e, 0x4c, 0x80, 0x00, 0x00, + 0xb2, 0x28, 0xd2, 0x5a, 0x59, 0x2b, 0x51, 0x07, 0x6d, 0xcb, 0x22, 0xb9, 0x16, 0xb9, 0x30, 0x8f, + 0x75, 0x2f, 0x29, 0xc1, 0x71, 0x88, 0x49, 0xef, 0x74, 0xed, 0x6c, 0x8b, 0x3d, 0xdd, 0xc3, 0xee, + 0x1e, 0x2e, 0x57, 0x41, 0x80, 0x04, 0x8e, 0x1d, 0x1b, 0x3e, 0x94, 0xdb, 0x08, 0x82, 0x38, 0x81, + 0xe1, 0x20, 0x77, 0x60, 0x27, 0x1f, 0x01, 0x8c, 0x04, 0xf9, 0x08, 0x90, 0x0f, 0x23, 0x41, 0xe2, + 0x0f, 0x23, 0x09, 0x10, 0xe4, 0xcb, 0x48, 0x10, 0x20, 0x41, 0xf2, 0x91, 0xbf, 0x9c, 0xa8, 0xa3, + 0x7b, 0xaa, 0x7b, 0xaa, 0x66, 0x67, 0x76, 0x44, 0x71, 0x69, 0x64, 0xbf, 0xa6, 0xaa, 0xab, 0xea, + 0xbd, 0x7a, 0xf5, 0xae, 0x7a, 0xf5, 0xaa, 0x16, 0x2a, 0x1d, 0xdb, 0xb9, 0xd7, 0x0b, 0x56, 0xbb, + 0xbe, 0x17, 0x7a, 0x68, 0x5e, 0x2c, 0xad, 0xb2, 0x42, 0xa3, 0xd2, 0xf2, 0x3a, 0x1d, 0xcf, 0x65, + 0x95, 0x8d, 0x4a, 0xd0, 0xda, 0xc5, 0x1d, 0x93, 0x97, 0xca, 0x3b, 0xd8, 0xc2, 0x3e, 0x2f, 0xac, + 0xb4, 0x3d, 0xaf, 0xed, 0xe0, 0xe7, 0x68, 0x69, 0xbb, 0xb7, 0xf3, 0x9c, 0x85, 0x83, 0x96, 0x6f, + 0x77, 0x43, 0x8f, 0xb7, 0xd0, 0xbf, 0xa6, 0x01, 0xba, 0xe4, 0x63, 0x33, 0xc4, 0x17, 0x1c, 0xdb, + 0x0c, 0x0c, 0x7c, 0xb7, 0x87, 0x83, 0x10, 0x7d, 0x08, 0xa6, 0xb7, 0xcd, 0x00, 0xd7, 0xb5, 0x15, + 0xed, 0x74, 0x79, 0xed, 0xf8, 0x6a, 0x02, 0x0b, 0x0e, 0xfd, 0x5a, 0xd0, 0xbe, 0x68, 0x06, 0xd8, + 0xa0, 0x2d, 0xd1, 0x32, 0x14, 0xac, 0xed, 0xa6, 0x6b, 0x76, 0x70, 0x3d, 0xb3, 0xa2, 0x9d, 0x2e, + 0x19, 0x79, 0x6b, 0xfb, 0xba, 0xd9, 0xc1, 0xe8, 0x69, 0x98, 0x6d, 0x79, 0x8e, 0x83, 0x5b, 0xa1, + 0xed, 0xb9, 0xac, 0x41, 0x96, 0x36, 0x98, 0xe9, 0x57, 0xd3, 0x86, 0x0b, 0x90, 0x33, 0x09, 0x0e, + 0xf5, 0x69, 0xfa, 0x99, 0x15, 0xf4, 0x00, 0x6a, 0xeb, 0xbe, 0xd7, 0x7d, 0x50, 0xd8, 0xc5, 0x40, + 0xb3, 0x22, 0xd0, 0x5f, 0xd1, 0x60, 0xee, 0x82, 0x13, 0x62, 0xff, 0x88, 0x12, 0x65, 0x0f, 0x16, + 0xd6, 0xe9, 0x4a, 0x6e, 0xe3, 0xf7, 0x97, 0x30, 0xbf, 0xac, 0xc1, 0x62, 0x0a, 0x72, 0xd0, 0xf5, + 0xdc, 0x00, 0xa3, 0x17, 0x20, 0x1f, 0x84, 0x66, 0xd8, 0x0b, 0x38, 0xf0, 0x63, 0x52, 0xe0, 0x5b, + 0xb4, 0x89, 0xc1, 0x9b, 0x8e, 0x09, 0x1d, 0x3d, 0x0e, 0xd0, 0x27, 0x0f, 0xa7, 0x88, 0x50, 0xa3, + 0xdf, 0x86, 0xda, 0x55, 0x3b, 0x08, 0x1f, 0x10, 0x49, 0xf4, 0x1f, 0x83, 0xf9, 0x78, 0x78, 0xfc, + 0xa0, 0x66, 0x5e, 0x87, 0x82, 0xc9, 0x00, 0xd4, 0xb3, 0x2b, 0xd9, 0xd3, 0x25, 0x23, 0x2a, 0xea, + 0xff, 0x96, 0x81, 0x65, 0x26, 0xaa, 0x97, 0xe2, 0x29, 0x3f, 0x4c, 0xd6, 0x5c, 0x82, 0x3c, 0xd3, + 0x3c, 0x74, 0x25, 0x2a, 0x06, 0x2f, 0xa1, 0x13, 0x00, 0xc1, 0xae, 0xe9, 0x5b, 0x41, 0xd3, 0xed, + 0x75, 0xea, 0xb9, 0x15, 0xed, 0x74, 0xce, 0x28, 0xb1, 0x9a, 0xeb, 0xbd, 0x0e, 0x32, 0x60, 0xae, + 0xe5, 0xb9, 0x81, 0x1d, 0x84, 0xd8, 0x6d, 0xed, 0x37, 0x1d, 0x7c, 0x0f, 0x3b, 0xf5, 0xfc, 0x8a, + 0x76, 0x7a, 0x66, 0xed, 0x29, 0x29, 0xde, 0x97, 0xfa, 0xad, 0xaf, 0x92, 0xc6, 0x46, 0xad, 0x95, + 0xaa, 0x41, 0x17, 0x00, 0xba, 0xbe, 0xd7, 0xc5, 0x7e, 0x68, 0xe3, 0xa0, 0x5e, 0x58, 0xc9, 0x9e, + 0x2e, 0xaf, 0x9d, 0x92, 0x0e, 0xf6, 0x09, 0xbc, 0xff, 0xa6, 0xe9, 0xf4, 0xf0, 0xa6, 0x69, 0xfb, + 0x86, 0xd0, 0xe9, 0x3c, 0xfa, 0xce, 0x6b, 0xb3, 0x45, 0xad, 0xa6, 0xd5, 0xff, 0x37, 0xfa, 0xd3, + 0xf4, 0x5f, 0x25, 0xdc, 0xee, 0x7b, 0xdd, 0x23, 0x41, 0xef, 0x08, 0xc3, 0x8c, 0x88, 0xe1, 0x4f, + 0x65, 0x60, 0x89, 0x2a, 0xaa, 0xa3, 0xc1, 0x12, 0x3a, 0x54, 0xfa, 0x35, 0x1b, 0xeb, 0x94, 0x31, + 0xb2, 0x46, 0xa2, 0x2e, 0xb5, 0x56, 0xb9, 0xf7, 0x6a, 0xad, 0x7e, 0x4b, 0x83, 0x85, 0x2b, 0x66, + 0x70, 0x34, 0xe8, 0x70, 0x02, 0x20, 0xb4, 0x3b, 0xb8, 0x19, 0x84, 0x66, 0xa7, 0x4b, 0xa9, 0x30, + 0x6d, 0x94, 0x48, 0xcd, 0x16, 0xa9, 0xd0, 0x3f, 0x05, 0x95, 0x8b, 0x9e, 0xe7, 0x4c, 0xa6, 0x41, + 0x16, 0x20, 0x77, 0x8f, 0x50, 0x87, 0xe2, 0x58, 0x34, 0x58, 0x41, 0xff, 0x34, 0xcc, 0x6c, 0x85, + 0xbe, 0xed, 0xb6, 0xdf, 0xc3, 0xc1, 0x4b, 0xd1, 0xe0, 0xff, 0xa8, 0xc1, 0x63, 0x91, 0xf6, 0x7f, + 0x74, 0x18, 0x2e, 0xb9, 0x18, 0xb9, 0xd4, 0x62, 0x44, 0xcc, 0x94, 0x15, 0x99, 0xe9, 0xcf, 0x72, + 0xd0, 0x90, 0x4d, 0x74, 0x12, 0x92, 0x7e, 0x34, 0x56, 0x97, 0x19, 0xda, 0x29, 0xa5, 0xec, 0xb8, + 0x13, 0xd7, 0x87, 0xb6, 0x45, 0x2b, 0x62, 0xad, 0x9a, 0x9e, 0x69, 0x56, 0x32, 0xd3, 0x35, 0x58, + 0xbc, 0x67, 0xfb, 0x61, 0xcf, 0x74, 0x9a, 0xad, 0x5d, 0xd3, 0x75, 0xb1, 0x43, 0x69, 0x47, 0x9c, + 0x07, 0x62, 0x49, 0xe6, 0xf9, 0xc7, 0x4b, 0xec, 0x1b, 0x21, 0x60, 0x80, 0x5e, 0x84, 0xa5, 0xee, + 0xee, 0x7e, 0x60, 0xb7, 0x06, 0x3a, 0xe5, 0x68, 0xa7, 0x85, 0xe8, 0x6b, 0xa2, 0xd7, 0x59, 0x98, + 0x6b, 0x51, 0x53, 0x64, 0x35, 0x09, 0x25, 0x19, 0x69, 0xf3, 0x94, 0xb4, 0x35, 0xfe, 0xe1, 0x66, + 0x54, 0x4f, 0xd0, 0x8a, 0x1a, 0xf7, 0xc2, 0x96, 0xd0, 0xa1, 0x40, 0x3b, 0xcc, 0xf3, 0x8f, 0xb7, + 0xc2, 0x56, 0xbf, 0x4f, 0xd2, 0x88, 0x14, 0xd3, 0x46, 0x44, 0xb0, 0x92, 0xa5, 0x84, 0x95, 0x44, + 0x1b, 0x30, 0x1b, 0x84, 0xa6, 0x1f, 0x36, 0xbb, 0x5e, 0x60, 0x13, 0xba, 0x04, 0x75, 0xa0, 0x3a, + 0x66, 0x45, 0xa5, 0x63, 0xd6, 0xcd, 0xd0, 0xa4, 0x2a, 0x66, 0x86, 0x76, 0xdc, 0x8c, 0xfa, 0xc9, + 0x2d, 0x55, 0x79, 0x32, 0x4b, 0x25, 0xe1, 0xec, 0x8a, 0x94, 0xb3, 0x93, 0x6a, 0xb2, 0x7a, 0x08, + 0x35, 0xa9, 0xff, 0x8f, 0x06, 0x8b, 0x57, 0x3d, 0xd3, 0x3a, 0x1a, 0xa2, 0xfa, 0x14, 0xcc, 0xf8, + 0xb8, 0xeb, 0xd8, 0x2d, 0x93, 0x2c, 0xe9, 0x36, 0xf6, 0xa9, 0xb0, 0xe6, 0x8c, 0x2a, 0xaf, 0xbd, + 0x4e, 0x2b, 0xc9, 0x78, 0x3e, 0x0e, 0xbc, 0x9e, 0xdf, 0xc2, 0xcd, 0xb6, 0xef, 0xf5, 0xba, 0x11, + 0x23, 0xce, 0x44, 0xd5, 0x97, 0x69, 0x2d, 0x61, 0x01, 0x1f, 0xef, 0xf8, 0x38, 0xd8, 0xa5, 0x8c, + 0x57, 0x34, 0xa2, 0xe2, 0xf9, 0xc2, 0x77, 0x5e, 0x9b, 0xae, 0xe5, 0xea, 0x59, 0xfd, 0xab, 0x1a, + 0xd4, 0x0d, 0xec, 0x60, 0x33, 0x38, 0x1a, 0xea, 0x8a, 0x61, 0x96, 0xaf, 0x67, 0xf5, 0x7f, 0xd5, + 0x60, 0xe1, 0x32, 0x0e, 0x89, 0x8a, 0xb0, 0x83, 0xd0, 0x6e, 0x3d, 0xd4, 0x3d, 0xc6, 0xd3, 0x30, + 0xdb, 0x35, 0xfd, 0xd0, 0x8e, 0xdb, 0x45, 0x0a, 0x63, 0x26, 0xae, 0x66, 0x52, 0xff, 0x1c, 0xcc, + 0xb7, 0x7b, 0xa6, 0x6f, 0xba, 0x21, 0xc6, 0x82, 0x18, 0x33, 0x95, 0x8a, 0xe2, 0x4f, 0xb1, 0x14, + 0xb3, 0xf9, 0x42, 0x3d, 0xab, 0x7f, 0x56, 0x83, 0xc5, 0xd4, 0x7c, 0x27, 0xd1, 0xa5, 0x2f, 0x43, + 0x8e, 0xfc, 0x0a, 0xea, 0x99, 0x51, 0xe5, 0x82, 0xb5, 0x27, 0x1b, 0xbb, 0xc7, 0x2f, 0xe3, 0x50, + 0xd0, 0xb2, 0x47, 0x61, 0x05, 0xfa, 0x74, 0x7a, 0x57, 0x83, 0x93, 0x4a, 0xfc, 0x1e, 0x0a, 0xc5, + 0xfe, 0x43, 0x83, 0xa5, 0xad, 0x5d, 0x6f, 0xaf, 0x8f, 0xd2, 0x83, 0xa0, 0x54, 0xd2, 0x46, 0x67, + 0x53, 0x36, 0x1a, 0x3d, 0x0f, 0xd3, 0xe1, 0x7e, 0x17, 0x53, 0x8d, 0x31, 0xb3, 0x76, 0x62, 0x55, + 0x12, 0x14, 0x59, 0x25, 0x48, 0xde, 0xdc, 0xef, 0x62, 0x83, 0x36, 0x45, 0xcf, 0x40, 0x2d, 0x45, + 0xfb, 0x48, 0x91, 0xcc, 0x26, 0x89, 0x1f, 0xbb, 0x93, 0xd3, 0xa2, 0x07, 0xf0, 0xef, 0x19, 0x58, + 0x1e, 0x98, 0xf6, 0x24, 0x0b, 0x20, 0xc3, 0x27, 0x23, 0xc5, 0x87, 0x68, 0x4a, 0xa1, 0xa9, 0x6d, + 0xb1, 0x9d, 0x60, 0xd6, 0xa8, 0x0a, 0xc6, 0xde, 0x0a, 0xd0, 0xb3, 0x80, 0x06, 0x6c, 0x30, 0x93, + 0xdc, 0x69, 0x63, 0x2e, 0x6d, 0x84, 0xa9, 0xa1, 0x97, 0x5a, 0x61, 0x46, 0x96, 0x69, 0x63, 0x41, + 0x62, 0x86, 0x03, 0xf4, 0x3c, 0x2c, 0xd8, 0xee, 0x35, 0xdc, 0xf1, 0xfc, 0xfd, 0x66, 0x17, 0xfb, + 0x2d, 0xec, 0x86, 0x66, 0x1b, 0x07, 0xf5, 0x3c, 0xc5, 0x68, 0x3e, 0xfa, 0xb6, 0xd9, 0xff, 0x84, + 0x5e, 0x82, 0xe5, 0xbb, 0x3d, 0xec, 0xef, 0x37, 0x03, 0xec, 0xdf, 0xb3, 0x5b, 0xb8, 0x69, 0xde, + 0x33, 0x6d, 0xc7, 0xdc, 0x76, 0x30, 0xdd, 0x99, 0x15, 0x8d, 0x45, 0xfa, 0x79, 0x8b, 0x7d, 0xbd, + 0x10, 0x7d, 0xd4, 0xff, 0x50, 0x83, 0x25, 0xb6, 0xbf, 0xdd, 0x8c, 0xd4, 0xce, 0x43, 0xb6, 0x57, + 0x49, 0xad, 0xc8, 0x03, 0x0e, 0xd5, 0x84, 0x52, 0xd4, 0xbf, 0xa5, 0xc1, 0x02, 0xd9, 0x23, 0x3e, + 0x4a, 0x38, 0x7f, 0x53, 0x83, 0xf9, 0x2b, 0x66, 0xf0, 0x28, 0xa1, 0xfc, 0xb5, 0x0c, 0xf3, 0x65, + 0x62, 0x9c, 0x1f, 0x0d, 0x8b, 0x39, 0xe8, 0xf4, 0xe4, 0x46, 0x74, 0x7a, 0xf2, 0x07, 0x39, 0x3d, + 0x85, 0x84, 0xd3, 0xa3, 0xff, 0x51, 0xdf, 0xd7, 0x79, 0xb4, 0x68, 0xa4, 0x7f, 0x5b, 0x83, 0x13, + 0x97, 0x71, 0x18, 0x63, 0x7d, 0x34, 0x9c, 0xa2, 0x11, 0xf9, 0xf2, 0x2b, 0xcc, 0xa1, 0x90, 0x22, + 0xff, 0x50, 0xec, 0xf5, 0x17, 0x33, 0xb0, 0x48, 0x0c, 0xd7, 0xd1, 0x60, 0x82, 0x51, 0xf6, 0xe7, + 0x12, 0x46, 0xc9, 0x49, 0x85, 0x29, 0xf2, 0x02, 0xf2, 0x23, 0x7b, 0x01, 0xfa, 0x1f, 0x64, 0x98, + 0xf7, 0x22, 0x52, 0x63, 0x92, 0x65, 0x91, 0xe0, 0x9a, 0x91, 0xe2, 0xaa, 0x43, 0x25, 0xae, 0xd9, + 0x58, 0x8f, 0x2c, 0x78, 0xa2, 0xee, 0xa8, 0x1a, 0x70, 0xfd, 0x4b, 0x1a, 0x2c, 0x45, 0xd1, 0x8f, + 0x2d, 0xdc, 0xee, 0x60, 0x37, 0x3c, 0x3c, 0x0f, 0xa5, 0x39, 0x20, 0x23, 0xe1, 0x80, 0xe3, 0x50, + 0x0a, 0x18, 0x9c, 0x38, 0xb0, 0xd1, 0xaf, 0xd0, 0xff, 0x54, 0x83, 0xe5, 0x01, 0x74, 0x26, 0x59, + 0xc4, 0x3a, 0x14, 0x6c, 0xd7, 0xc2, 0xf7, 0x63, 0x6c, 0xa2, 0x22, 0xf9, 0xb2, 0xdd, 0xb3, 0x1d, + 0x2b, 0x46, 0x23, 0x2a, 0xa2, 0x53, 0x50, 0xc1, 0x2e, 0x71, 0x53, 0x9a, 0xb4, 0x2d, 0x65, 0xe4, + 0xa2, 0x51, 0x66, 0x75, 0x1b, 0xa4, 0x8a, 0x74, 0xde, 0xb1, 0x31, 0xed, 0x9c, 0x63, 0x9d, 0x79, + 0x51, 0xff, 0xb2, 0x06, 0xf3, 0x84, 0x0b, 0x39, 0xf6, 0xc1, 0x83, 0xa5, 0xe6, 0x0a, 0x94, 0x05, + 0x36, 0xe3, 0x13, 0x11, 0xab, 0xf4, 0x3b, 0xb0, 0x90, 0x44, 0x67, 0x12, 0x6a, 0x3e, 0x0e, 0x10, + 0xaf, 0x15, 0x93, 0x86, 0xac, 0x21, 0xd4, 0xe8, 0xbf, 0x90, 0x89, 0x4e, 0x18, 0x29, 0x99, 0x1e, + 0x72, 0x58, 0x96, 0x2e, 0x89, 0xa8, 0xcf, 0x4b, 0xb4, 0x86, 0x7e, 0x5e, 0x87, 0x0a, 0xbe, 0x1f, + 0xfa, 0x66, 0xb3, 0x6b, 0xfa, 0x66, 0x67, 0x8c, 0xd8, 0x74, 0x99, 0x76, 0xdb, 0xa4, 0xbd, 0x08, + 0x10, 0xca, 0x22, 0x0c, 0x48, 0x9e, 0x01, 0xa1, 0x35, 0xfd, 0xad, 0x5e, 0xb9, 0x9e, 0xd5, 0xbf, + 0xab, 0xf5, 0x0f, 0xf1, 0x8e, 0x3a, 0x65, 0x92, 0x73, 0xca, 0x49, 0xe7, 0x54, 0xa9, 0x67, 0xf5, + 0xef, 0x65, 0xa0, 0x46, 0xe7, 0xb2, 0xce, 0xcf, 0x99, 0x6d, 0xcf, 0x4d, 0x75, 0xd6, 0x52, 0x9d, + 0x87, 0x48, 0xe3, 0xab, 0x90, 0xe7, 0x2b, 0x91, 0x1d, 0x75, 0x25, 0x78, 0x87, 0x83, 0xe6, 0x73, + 0x0a, 0x2a, 0x14, 0x08, 0xb6, 0x9a, 0xbe, 0xb7, 0x17, 0x70, 0x79, 0x2d, 0xf3, 0x3a, 0xc3, 0xdb, + 0xa3, 0x23, 0x84, 0x5e, 0x68, 0x3a, 0xac, 0x41, 0x9e, 0x29, 0x25, 0x5a, 0x43, 0x3f, 0x9f, 0x63, + 0xf6, 0x19, 0x53, 0x37, 0x6c, 0x66, 0xed, 0xa4, 0x14, 0x35, 0x4a, 0x0a, 0x22, 0x2e, 0x98, 0x59, + 0x67, 0x8c, 0xce, 0xc1, 0x32, 0xa3, 0x05, 0x2d, 0x36, 0x77, 0x4c, 0xdb, 0x69, 0xfa, 0xd8, 0x0c, + 0x3c, 0x97, 0xc6, 0x38, 0x4b, 0xc6, 0x82, 0x1d, 0xf7, 0x79, 0xc3, 0xb4, 0x1d, 0x83, 0x7e, 0xd3, + 0xbf, 0x2e, 0x1c, 0xbb, 0x72, 0x5e, 0x99, 0x44, 0x64, 0x6f, 0x02, 0x62, 0x58, 0x58, 0xfd, 0x65, + 0x8a, 0x3c, 0x8d, 0xa7, 0xa4, 0x66, 0x35, 0xbd, 0xa8, 0xc6, 0x9c, 0x9d, 0xaa, 0x09, 0xf4, 0xbf, + 0xd3, 0xe0, 0xf8, 0x65, 0x1c, 0xd2, 0xa6, 0x17, 0x89, 0xda, 0xdc, 0xf4, 0xbd, 0xb6, 0x8f, 0x83, + 0xe0, 0x07, 0x80, 0xb1, 0x7f, 0x91, 0xf9, 0xa8, 0xb2, 0xb9, 0x4d, 0xb2, 0x10, 0x69, 0x3e, 0xcc, + 0x1c, 0xc4, 0x87, 0xd9, 0x14, 0x1f, 0x52, 0x2d, 0x12, 0x21, 0xc6, 0x38, 0xed, 0xd1, 0x27, 0xf6, + 0x37, 0x58, 0xb0, 0x50, 0x9c, 0xd3, 0x24, 0x44, 0x8e, 0x45, 0x35, 0x33, 0x96, 0xa8, 0x9e, 0x84, + 0xb2, 0x28, 0x9e, 0x6c, 0xc6, 0xb0, 0xd3, 0x17, 0xca, 0xbf, 0xd4, 0x58, 0x6a, 0xca, 0x0f, 0x82, + 0xf2, 0xae, 0xd6, 0xb3, 0xfa, 0xef, 0x66, 0xa0, 0xba, 0xe1, 0x06, 0xd8, 0x0f, 0x8f, 0xfe, 0xbe, + 0x0b, 0x7d, 0x0c, 0xca, 0x74, 0x86, 0x41, 0xd3, 0x32, 0x43, 0x93, 0x9b, 0xea, 0xc7, 0xa5, 0x47, + 0x6a, 0x6f, 0x90, 0x76, 0xeb, 0x66, 0x68, 0x1a, 0x8c, 0x4c, 0x01, 0xf9, 0x8d, 0x8e, 0x41, 0x69, + 0xd7, 0x0c, 0x76, 0x9b, 0x77, 0xf0, 0x3e, 0x73, 0x86, 0xab, 0x46, 0x91, 0x54, 0x7c, 0x02, 0xef, + 0x07, 0xe8, 0x31, 0x28, 0xba, 0xbd, 0x0e, 0x13, 0x39, 0xa2, 0xe0, 0xab, 0x46, 0xc1, 0xed, 0x75, + 0x88, 0xc0, 0x31, 0x72, 0x15, 0x39, 0xb9, 0x6e, 0x75, 0xff, 0x9f, 0x5c, 0x23, 0x90, 0xeb, 0xb1, + 0x7a, 0x56, 0xff, 0x8b, 0x0c, 0xcc, 0x5c, 0xeb, 0x91, 0xdd, 0x31, 0x3d, 0x48, 0xed, 0x39, 0xe1, + 0xe1, 0xa4, 0xf9, 0x0c, 0x64, 0x99, 0x9f, 0x49, 0x7a, 0xd4, 0xa5, 0x33, 0xd8, 0x58, 0x0f, 0x0c, + 0xd2, 0x88, 0x1e, 0x22, 0xf6, 0x5a, 0x2d, 0xee, 0xb2, 0x67, 0x29, 0xd6, 0x25, 0x52, 0xc3, 0x1c, + 0xf6, 0x63, 0x50, 0xc2, 0xbe, 0x1f, 0x3b, 0xf4, 0x74, 0x4e, 0xd8, 0xf7, 0xd9, 0x47, 0x1d, 0x2a, + 0x66, 0xeb, 0x8e, 0xeb, 0xed, 0x39, 0xd8, 0x6a, 0x63, 0x8b, 0xca, 0x4d, 0xd1, 0x48, 0xd4, 0x31, + 0xc9, 0x22, 0x1c, 0xd0, 0x6c, 0xb9, 0x61, 0xe4, 0x23, 0xb0, 0x9a, 0x4b, 0x6e, 0x48, 0x3e, 0x5b, + 0xd8, 0xc1, 0x21, 0xa6, 0x9f, 0x0b, 0xec, 0x33, 0xab, 0xe1, 0x9f, 0x7b, 0xdd, 0xb8, 0x77, 0x91, + 0x7d, 0x66, 0x35, 0xe4, 0xf3, 0x71, 0x28, 0xf5, 0x8f, 0x58, 0x4a, 0xfd, 0x88, 0x38, 0xad, 0xd0, + 0xbf, 0xaf, 0x41, 0x75, 0x9d, 0x0e, 0xf5, 0x08, 0x70, 0x1f, 0x82, 0x69, 0x7c, 0xbf, 0xeb, 0x73, + 0xdd, 0x43, 0x7f, 0x0f, 0x65, 0x28, 0xc6, 0x35, 0xa5, 0x7a, 0x56, 0xff, 0xdc, 0x34, 0x54, 0xb7, + 0xb0, 0xe9, 0xb7, 0x76, 0x1f, 0x89, 0x70, 0x5f, 0x0d, 0xb2, 0x56, 0xe0, 0xf0, 0x79, 0x92, 0x9f, + 0xe8, 0x2c, 0xcc, 0x75, 0x1d, 0xb3, 0x85, 0x77, 0x3d, 0xc7, 0xc2, 0x3e, 0x0b, 0xee, 0x51, 0x4e, + 0xa9, 0x18, 0x35, 0xe1, 0x03, 0x0d, 0xef, 0xa1, 0x97, 0xa1, 0x68, 0x05, 0x4e, 0x93, 0x06, 0x39, + 0x98, 0x5f, 0x29, 0x9f, 0xdf, 0x7a, 0xe0, 0xd0, 0x18, 0x47, 0xc1, 0x62, 0x3f, 0xd0, 0x13, 0x50, + 0xf5, 0x7a, 0x61, 0xb7, 0x17, 0x36, 0x99, 0xc8, 0xd6, 0x8b, 0x14, 0xbd, 0x0a, 0xab, 0xa4, 0x12, + 0x1d, 0xa0, 0x37, 0xa0, 0x1a, 0x50, 0x52, 0x46, 0xfb, 0x9b, 0xd2, 0xa8, 0x5e, 0x75, 0x85, 0xf5, + 0xe3, 0x1b, 0x9c, 0x67, 0xa0, 0x16, 0xfa, 0xe6, 0x3d, 0xec, 0x08, 0x47, 0x80, 0x40, 0xf9, 0x73, + 0x96, 0xd5, 0xf7, 0x4f, 0xf1, 0x15, 0x07, 0x86, 0x65, 0xd5, 0x81, 0x21, 0x9a, 0x81, 0x8c, 0x7b, + 0x97, 0x9e, 0x88, 0x67, 0x8d, 0x8c, 0x7b, 0x97, 0x31, 0xc2, 0x4c, 0x3d, 0xab, 0x7f, 0x02, 0xa6, + 0xaf, 0xd8, 0x21, 0xa5, 0x30, 0x11, 0x7f, 0x8d, 0x6e, 0x33, 0xa9, 0x90, 0x3f, 0x06, 0x45, 0xdf, + 0xdb, 0x63, 0x7a, 0x8d, 0xb8, 0xb0, 0x15, 0xa3, 0xe0, 0x7b, 0x7b, 0x54, 0x69, 0xd1, 0x0c, 0x35, + 0xcf, 0xe7, 0xa9, 0x74, 0x19, 0x83, 0x97, 0xf4, 0xdf, 0xd7, 0xfa, 0x5c, 0x45, 0x34, 0x51, 0x70, + 0x38, 0x55, 0xf4, 0x31, 0x28, 0xf8, 0xac, 0xff, 0xd0, 0x94, 0x0e, 0x11, 0x12, 0xd5, 0xab, 0x51, + 0xaf, 0x91, 0x19, 0x50, 0xff, 0xb2, 0x06, 0x95, 0x37, 0x9c, 0x5e, 0xf0, 0x20, 0xa4, 0x40, 0x76, + 0x30, 0x95, 0x95, 0x1f, 0x94, 0xd1, 0xd5, 0x98, 0x5d, 0xc9, 0xea, 0xff, 0x39, 0x0d, 0x55, 0x8e, + 0xcf, 0x03, 0x49, 0x82, 0xdc, 0x82, 0x32, 0x81, 0xdd, 0x0c, 0x70, 0x3b, 0x0a, 0x9e, 0x95, 0xd7, + 0xd6, 0xa4, 0x3b, 0x93, 0x04, 0x1a, 0x34, 0x7d, 0x66, 0x8b, 0x76, 0xfa, 0xb8, 0x1b, 0xfa, 0xfb, + 0x2c, 0x3b, 0x94, 0x55, 0xa0, 0x16, 0xcc, 0xed, 0x90, 0xc6, 0x4d, 0x71, 0xe8, 0x69, 0x3a, 0xf4, + 0xcb, 0x23, 0x0c, 0x4d, 0x4b, 0xe9, 0xf1, 0x67, 0x77, 0x92, 0xb5, 0xe8, 0x36, 0x5b, 0xd2, 0x66, + 0x80, 0x4d, 0x2e, 0x1f, 0xdc, 0xd8, 0x9e, 0x1b, 0x19, 0x7b, 0x93, 0x09, 0x10, 0x03, 0x50, 0x6d, + 0x89, 0x75, 0x8d, 0xdb, 0x30, 0x9b, 0x42, 0x81, 0x48, 0xc4, 0x1d, 0xbc, 0xcf, 0xf7, 0xd5, 0xe4, + 0x27, 0x7a, 0x51, 0x4c, 0xde, 0x52, 0x99, 0xf9, 0xab, 0x9e, 0xdb, 0xbe, 0xe0, 0xfb, 0xe6, 0x3e, + 0x4f, 0xee, 0x3a, 0x9f, 0x79, 0x45, 0x6b, 0x6c, 0xc3, 0x82, 0x6c, 0x9a, 0xef, 0x29, 0x8c, 0xd7, + 0x01, 0x0d, 0xce, 0x53, 0x02, 0x21, 0x91, 0x82, 0x96, 0x15, 0x46, 0xd0, 0xdf, 0xcd, 0x42, 0xe5, + 0x93, 0x3d, 0xec, 0xef, 0x3f, 0x4c, 0x9b, 0x10, 0xd9, 0xb4, 0x69, 0xc1, 0xa6, 0x0d, 0xa8, 0xe1, + 0x9c, 0x44, 0x0d, 0x4b, 0x8c, 0x49, 0x5e, 0x6a, 0x4c, 0x64, 0x7a, 0xb6, 0x30, 0x96, 0x9e, 0x2d, + 0x2a, 0xf5, 0xec, 0x3a, 0x54, 0xd8, 0x19, 0xed, 0xb8, 0xa6, 0xa0, 0x4c, 0xbb, 0x31, 0x4b, 0xc0, + 0xf4, 0x41, 0xad, 0x9e, 0xd5, 0x7f, 0x4f, 0x8b, 0x57, 0x64, 0x22, 0x7d, 0x9a, 0x70, 0x52, 0x33, + 0x63, 0x3b, 0xa9, 0x23, 0xeb, 0xd3, 0x6f, 0x69, 0x50, 0x7a, 0x13, 0xb7, 0x42, 0xcf, 0x27, 0x32, + 0x2b, 0xe9, 0xa6, 0x8d, 0xb0, 0xd1, 0xca, 0xa4, 0x37, 0x5a, 0x2f, 0x40, 0xd1, 0xb6, 0x9a, 0x26, + 0x61, 0x78, 0x0a, 0x77, 0x98, 0x7f, 0x5a, 0xb0, 0x2d, 0x2a, 0x19, 0xa3, 0x1f, 0x93, 0x7d, 0x55, + 0x83, 0x0a, 0xc3, 0x39, 0x60, 0x3d, 0x3f, 0x2c, 0x80, 0xd3, 0x64, 0x52, 0xc8, 0x0b, 0xf1, 0x44, + 0xaf, 0x4c, 0xf5, 0xc1, 0x5e, 0x00, 0x20, 0x44, 0xe6, 0xdd, 0x99, 0x10, 0xaf, 0x48, 0xb1, 0x65, + 0xdd, 0x29, 0xc1, 0xaf, 0x4c, 0x19, 0x25, 0xd2, 0x8b, 0x0e, 0x71, 0xb1, 0x00, 0x39, 0xda, 0x5b, + 0xff, 0x2f, 0x0d, 0xe6, 0x2f, 0x99, 0x4e, 0x6b, 0xdd, 0x0e, 0x42, 0xd3, 0x6d, 0x4d, 0xe0, 0x91, + 0x9e, 0x87, 0x82, 0xd7, 0x6d, 0x3a, 0x78, 0x27, 0xe4, 0x28, 0x9d, 0x1a, 0x32, 0x23, 0x46, 0x06, + 0x23, 0xef, 0x75, 0xaf, 0xe2, 0x9d, 0x10, 0x7d, 0x04, 0x8a, 0x5e, 0xb7, 0xe9, 0xdb, 0xed, 0xdd, + 0x90, 0x53, 0x7f, 0x84, 0xce, 0x05, 0xaf, 0x6b, 0x90, 0x1e, 0x42, 0xac, 0x71, 0x7a, 0xcc, 0x58, + 0xa3, 0xfe, 0xdd, 0x81, 0xe9, 0x4f, 0x20, 0x03, 0xe7, 0xa1, 0x68, 0xbb, 0x61, 0xd3, 0xb2, 0x83, + 0x88, 0x04, 0x27, 0xe4, 0x3c, 0xe4, 0x86, 0x74, 0x06, 0x74, 0x4d, 0xdd, 0x90, 0xc0, 0x46, 0xaf, + 0x03, 0xec, 0x38, 0x9e, 0xc9, 0x7b, 0x33, 0x1a, 0x9c, 0x94, 0x8b, 0x0f, 0x69, 0x16, 0xf5, 0x2f, + 0xd1, 0x4e, 0x64, 0x84, 0xfe, 0x92, 0xfe, 0x95, 0x06, 0x8b, 0x9b, 0xd8, 0x67, 0xb9, 0x8b, 0x21, + 0x3f, 0x28, 0xd8, 0x70, 0x77, 0xbc, 0xe4, 0x59, 0x8d, 0x96, 0x3a, 0xab, 0x79, 0x6f, 0xce, 0x27, + 0x12, 0xfb, 0x49, 0x76, 0x62, 0x18, 0xed, 0x27, 0xa3, 0x73, 0x51, 0x16, 0xc7, 0x98, 0x51, 0x2c, + 0x13, 0xc7, 0x57, 0x0c, 0xe7, 0xe8, 0x3f, 0xc7, 0x32, 0xab, 0xa4, 0x93, 0x3a, 0x3c, 0xc3, 0x2e, + 0x01, 0x37, 0x1c, 0x29, 0x33, 0xf2, 0x01, 0x48, 0xe9, 0x0e, 0x85, 0x22, 0xfa, 0x25, 0x0d, 0x56, + 0xd4, 0x58, 0x4d, 0xe2, 0x5b, 0xbd, 0x0e, 0x39, 0xdb, 0xdd, 0xf1, 0xa2, 0xb0, 0xee, 0x19, 0xa9, + 0x2c, 0xc8, 0xe1, 0xb2, 0x8e, 0xfa, 0x5f, 0x67, 0xa0, 0xf6, 0x49, 0x96, 0xa9, 0xf3, 0xbe, 0x2f, + 0x7f, 0x07, 0x77, 0x9a, 0x81, 0xfd, 0x0e, 0x8e, 0x96, 0xbf, 0x83, 0x3b, 0x5b, 0xf6, 0x3b, 0x38, + 0xc1, 0x19, 0xb9, 0x24, 0x67, 0x0c, 0x3f, 0x77, 0x11, 0x8f, 0x19, 0x0a, 0xc9, 0x63, 0x86, 0x25, + 0xc8, 0xbb, 0x9e, 0x85, 0x37, 0xd6, 0xf9, 0x1e, 0x9c, 0x97, 0xfa, 0xac, 0x56, 0x1a, 0x8f, 0xd5, + 0x08, 0x28, 0x3a, 0x84, 0xc5, 0x52, 0x8f, 0x09, 0x8e, 0xac, 0xa8, 0x7f, 0x45, 0x83, 0xc6, 0x65, + 0x1c, 0xa6, 0xa9, 0xfa, 0xf0, 0xf8, 0xef, 0x5d, 0x0d, 0x8e, 0x49, 0x11, 0x9a, 0x84, 0xf5, 0x3e, + 0x9c, 0x64, 0x3d, 0xf9, 0x89, 0xc2, 0x00, 0x48, 0xce, 0x75, 0xcf, 0x43, 0x65, 0xbd, 0xd7, 0xe9, + 0xc4, 0xbe, 0xdd, 0x29, 0xa8, 0xf8, 0xec, 0x27, 0xdb, 0x17, 0x33, 0xcb, 0x5c, 0xe6, 0x75, 0x64, + 0xf7, 0xab, 0x9f, 0x85, 0x2a, 0xef, 0xc2, 0xb1, 0x6e, 0x40, 0xd1, 0xe7, 0xbf, 0x79, 0xfb, 0xb8, + 0xac, 0x2f, 0xc2, 0xbc, 0x81, 0xdb, 0x84, 0xe9, 0xfd, 0xab, 0xb6, 0x7b, 0x87, 0x83, 0xd1, 0x3f, + 0xa3, 0xc1, 0x42, 0xb2, 0x9e, 0x8f, 0xf5, 0x12, 0x14, 0x4c, 0xcb, 0xf2, 0x71, 0x10, 0x0c, 0x5d, + 0x96, 0x0b, 0xac, 0x8d, 0x11, 0x35, 0x16, 0x28, 0x97, 0x19, 0x99, 0x72, 0x7a, 0x13, 0xe6, 0x2e, + 0xe3, 0xf0, 0x1a, 0x0e, 0xfd, 0x89, 0xb2, 0x5f, 0x68, 0x96, 0x10, 0xed, 0xcc, 0xd9, 0x22, 0x2a, + 0xea, 0x5f, 0xd2, 0x00, 0x89, 0x10, 0x26, 0x59, 0x66, 0x91, 0xca, 0x99, 0x24, 0x95, 0x59, 0x0a, + 0x63, 0xa7, 0xeb, 0xb9, 0xd8, 0x0d, 0x45, 0x47, 0xac, 0x1a, 0xd7, 0x52, 0xf6, 0xfb, 0x63, 0x0d, + 0xaa, 0x97, 0xa2, 0x1a, 0xaa, 0x5f, 0xfa, 0xc2, 0xa8, 0x25, 0x84, 0x11, 0xc1, 0xb4, 0xef, 0x39, + 0x11, 0x20, 0xfa, 0x1b, 0x7d, 0x14, 0x80, 0x1d, 0xa3, 0xb5, 0x3c, 0x8b, 0x01, 0x98, 0x49, 0xbb, + 0x40, 0x02, 0xe6, 0xf8, 0x92, 0x67, 0x61, 0xa3, 0x14, 0x44, 0x3f, 0x89, 0xb9, 0x64, 0xc7, 0xbd, + 0x84, 0xf1, 0x46, 0x37, 0xfb, 0x25, 0xda, 0x89, 0x20, 0xab, 0x7f, 0x4f, 0x23, 0xdb, 0x31, 0x8e, + 0x3e, 0x85, 0x11, 0xa0, 0x57, 0x22, 0xad, 0xc1, 0x28, 0xa9, 0x4b, 0x99, 0x3f, 0x31, 0xe7, 0x48, + 0x6d, 0x6c, 0xc1, 0x7c, 0xd0, 0xdb, 0xee, 0x93, 0x8d, 0xd6, 0x46, 0x42, 0x34, 0xca, 0x38, 0x48, + 0xec, 0xce, 0xd1, 0xe9, 0xaf, 0x6c, 0x76, 0x74, 0x36, 0x3c, 0x06, 0x8f, 0xd1, 0x24, 0xe4, 0xc4, + 0x50, 0x91, 0xa4, 0x7c, 0x5f, 0x03, 0x74, 0xd5, 0x33, 0xad, 0x8b, 0xa6, 0x33, 0x99, 0xb3, 0x77, + 0x02, 0x20, 0xf0, 0x5b, 0x4d, 0xbe, 0xdc, 0x19, 0x6e, 0x4b, 0xfc, 0xd6, 0x75, 0xb6, 0xe2, 0x27, + 0xa1, 0x6c, 0x05, 0x21, 0xff, 0x1c, 0x25, 0xd0, 0x80, 0x15, 0x84, 0xec, 0x3b, 0xbd, 0x83, 0x42, + 0x76, 0xd9, 0xd8, 0x6a, 0x0a, 0xf9, 0x07, 0xd3, 0xb4, 0x59, 0x8d, 0x7d, 0xd8, 0x8a, 0xeb, 0x25, + 0x0a, 0x31, 0xa7, 0xce, 0xc4, 0x9e, 0xab, 0xe7, 0xf4, 0x1d, 0x58, 0xbe, 0x66, 0xba, 0x3d, 0xd3, + 0x21, 0x64, 0x30, 0x13, 0x37, 0x07, 0xd2, 0x56, 0x4e, 0x93, 0x58, 0xb9, 0xc7, 0x59, 0x42, 0x33, + 0xdb, 0xa8, 0xd1, 0xc9, 0x4d, 0x1b, 0x42, 0x0d, 0x83, 0x53, 0xa8, 0x6b, 0xfa, 0xaf, 0x6b, 0x50, + 0x1f, 0x04, 0x34, 0x89, 0x5c, 0x52, 0xf4, 0xa2, 0xa1, 0x44, 0x23, 0xdc, 0xaf, 0x43, 0x1f, 0x82, + 0xf9, 0x7e, 0x79, 0xd3, 0x31, 0xdd, 0x4b, 0x5e, 0xcf, 0x65, 0x3e, 0x63, 0xce, 0x90, 0x7d, 0xd2, + 0x3f, 0x16, 0xf3, 0x84, 0x19, 0x27, 0xa6, 0xe3, 0x04, 0x45, 0x04, 0x90, 0xda, 0x20, 0x48, 0xfd, + 0x77, 0x32, 0xd4, 0xf6, 0x0d, 0x8c, 0x30, 0xc9, 0x54, 0xcf, 0x27, 0x8f, 0xf6, 0x9e, 0x54, 0xdc, + 0xca, 0x49, 0x42, 0xe4, 0xe2, 0x76, 0x1a, 0x66, 0xf1, 0x7d, 0xdc, 0xea, 0x85, 0xb6, 0xdb, 0x26, + 0xd3, 0xbc, 0xee, 0x71, 0x5f, 0x24, 0x5d, 0x8d, 0x9e, 0x84, 0x2a, 0x59, 0x39, 0xaf, 0x17, 0xf2, + 0x76, 0xcc, 0x29, 0x49, 0x56, 0x92, 0xf1, 0xc8, 0x7c, 0x1d, 0x1c, 0x62, 0x8b, 0xb7, 0x63, 0x1e, + 0x4a, 0xba, 0x9a, 0x50, 0x6b, 0xc7, 0xb4, 0x9d, 0xb8, 0x19, 0x3b, 0x38, 0x48, 0xd4, 0x0d, 0x90, + 0x9b, 0x54, 0x07, 0xe3, 0x90, 0xfb, 0x6f, 0xb4, 0x14, 0xb9, 0xf9, 0x08, 0x0f, 0x8b, 0xdc, 0x57, + 0x00, 0x3a, 0xd8, 0x6f, 0xe3, 0x0d, 0xea, 0x19, 0xb0, 0x88, 0xde, 0x69, 0xa5, 0x52, 0x63, 0x03, + 0x5c, 0x8b, 0x3a, 0x18, 0x42, 0x5f, 0xfd, 0x32, 0xcc, 0x4b, 0x9a, 0x10, 0xa3, 0xc7, 0x52, 0x65, + 0xa3, 0xe8, 0x70, 0x54, 0x24, 0x36, 0x25, 0x34, 0xfd, 0x36, 0x0e, 0xb9, 0x28, 0xf0, 0x92, 0xfe, + 0x12, 0x3d, 0x3a, 0xa7, 0x01, 0xaf, 0x04, 0x37, 0x27, 0x33, 0x9a, 0xb4, 0x81, 0x8c, 0xa6, 0x1d, + 0x7a, 0x3c, 0x2d, 0xf6, 0x9b, 0x30, 0x1b, 0x8d, 0x06, 0x11, 0xb1, 0xc5, 0x6f, 0x72, 0x46, 0x45, + 0xfd, 0xbf, 0x35, 0xa8, 0x6e, 0x74, 0xba, 0x5e, 0xff, 0x84, 0x71, 0xe4, 0x48, 0xc5, 0xe0, 0xc1, + 0x4c, 0x46, 0x76, 0x30, 0xf3, 0x04, 0x54, 0x93, 0x77, 0xfe, 0x58, 0xe0, 0xb7, 0xd2, 0x12, 0xef, + 0xfa, 0x1d, 0x83, 0x92, 0xef, 0xed, 0x35, 0x89, 0xce, 0xb6, 0x78, 0xde, 0x5b, 0xd1, 0xf7, 0xf6, + 0x88, 0x26, 0xb7, 0xd0, 0x02, 0xe4, 0x76, 0x6c, 0x27, 0x4e, 0xd9, 0x64, 0x05, 0xf4, 0x61, 0xb2, + 0x8f, 0x67, 0x59, 0x25, 0xf9, 0x51, 0xed, 0x6a, 0xd4, 0x83, 0xa9, 0x46, 0x54, 0xd7, 0xf4, 0x4f, + 0xc3, 0x4c, 0x34, 0xfd, 0x09, 0xef, 0xb2, 0x86, 0x66, 0x70, 0x27, 0xca, 0x4d, 0x63, 0x05, 0xfd, + 0x2c, 0xcb, 0x31, 0xa0, 0xe3, 0x27, 0x56, 0x1f, 0xc1, 0x34, 0x69, 0xc1, 0x85, 0x8a, 0xfe, 0xd6, + 0xff, 0x29, 0x03, 0x4b, 0xe9, 0xd6, 0x93, 0xa0, 0xf4, 0x52, 0x52, 0x90, 0xe4, 0x57, 0x13, 0x45, + 0x68, 0x5c, 0x88, 0xf8, 0x52, 0xb4, 0x62, 0x65, 0x9d, 0xa5, 0x4b, 0x41, 0x35, 0x34, 0x5a, 0x86, + 0x82, 0x6d, 0x35, 0x1d, 0xb2, 0xf7, 0x67, 0x56, 0x30, 0x6f, 0x5b, 0x57, 0xed, 0x20, 0x24, 0x1b, + 0x19, 0xe6, 0x8f, 0x8f, 0x9c, 0xd0, 0xc6, 0xda, 0xa3, 0x19, 0xc8, 0xd8, 0x16, 0x57, 0x4f, 0x19, + 0xdb, 0xa2, 0xec, 0x22, 0x5e, 0x4c, 0xe1, 0x3b, 0x29, 0xd1, 0xf2, 0x59, 0xc4, 0x6e, 0x73, 0x59, + 0xa1, 0x57, 0x57, 0x8a, 0x49, 0xf1, 0xb1, 0x28, 0x3f, 0xb1, 0x4c, 0xd5, 0x66, 0x18, 0xd0, 0xbd, + 0x55, 0xd6, 0x28, 0xb2, 0x8a, 0x9b, 0x81, 0xfe, 0x16, 0x2c, 0x11, 0x9c, 0xd9, 0xdc, 0x6f, 0x92, + 0x95, 0x1a, 0x9b, 0xf7, 0x17, 0x20, 0xe7, 0xd8, 0x1d, 0x3b, 0x92, 0x76, 0x56, 0xd0, 0x7f, 0x46, + 0x83, 0xe5, 0x81, 0x91, 0x27, 0x59, 0xc3, 0x0b, 0x22, 0x5b, 0x95, 0xd7, 0xce, 0x4a, 0x75, 0x99, + 0x9c, 0x69, 0x22, 0x1e, 0xfc, 0x13, 0xe6, 0x8d, 0x1b, 0xec, 0x2e, 0xc0, 0x03, 0x4e, 0x0b, 0x3d, + 0x0d, 0xb5, 0x3d, 0x3b, 0xdc, 0x6d, 0xd2, 0x4b, 0xb4, 0xd4, 0xad, 0x62, 0x3e, 0x61, 0xd1, 0x98, + 0x21, 0xf5, 0x5b, 0xa4, 0x9a, 0xb8, 0x56, 0xd2, 0x78, 0xe8, 0xb4, 0x74, 0xf7, 0xf8, 0x79, 0x0d, + 0xe6, 0x13, 0xf8, 0x4f, 0x42, 0xcf, 0x8f, 0x90, 0xed, 0x04, 0x1b, 0x88, 0x93, 0x74, 0x45, 0x4a, + 0x52, 0x0e, 0x8d, 0x9a, 0x85, 0xb8, 0x87, 0xfe, 0xcd, 0x2c, 0x94, 0x85, 0x2f, 0xe8, 0x38, 0x94, + 0xf8, 0xb7, 0x7e, 0x9c, 0x22, 0xae, 0x18, 0x89, 0x5e, 0x4f, 0x40, 0x5f, 0x59, 0x0a, 0x97, 0xb0, + 0x84, 0x14, 0x6e, 0x2b, 0x40, 0x57, 0x60, 0x86, 0xd1, 0x33, 0x46, 0x5d, 0xba, 0x8f, 0x88, 0x93, + 0xd3, 0x4d, 0xdf, 0xe2, 0x58, 0x1a, 0xd5, 0x40, 0x28, 0xb1, 0x1c, 0x0a, 0xcf, 0xc2, 0x14, 0x52, + 0x2e, 0x11, 0x35, 0x40, 0xab, 0x30, 0x9f, 0xbc, 0x1d, 0x22, 0x86, 0x38, 0xe6, 0x12, 0x37, 0x44, + 0xa8, 0x00, 0x98, 0x30, 0xe7, 0xf6, 0x3a, 0x4d, 0xaf, 0x17, 0x6e, 0x7b, 0x3d, 0x97, 0xad, 0x35, + 0x7f, 0x14, 0xe3, 0xdc, 0x41, 0x24, 0x5d, 0xbd, 0xde, 0xeb, 0xdc, 0xe0, 0x1d, 0x09, 0x37, 0xf0, + 0x63, 0x2e, 0x37, 0x59, 0xdb, 0xb8, 0x08, 0x0b, 0xb2, 0x86, 0x07, 0x1d, 0xe3, 0xe4, 0xc4, 0x63, + 0x9c, 0xaf, 0x68, 0x50, 0x11, 0x29, 0x42, 0x36, 0x94, 0x0e, 0x36, 0x2d, 0xec, 0xc7, 0x4b, 0x16, + 0x97, 0x89, 0x56, 0x61, 0xbf, 0x9b, 0x64, 0x83, 0xcd, 0xad, 0x19, 0xb0, 0x2a, 0xb2, 0xf7, 0x46, + 0x1f, 0x80, 0x59, 0xab, 0x93, 0xb8, 0xc1, 0x1e, 0x6d, 0x39, 0xad, 0x8e, 0x70, 0x75, 0x3d, 0x41, + 0xe7, 0xe9, 0x64, 0x74, 0xe6, 0xb3, 0xfd, 0x07, 0x56, 0x7c, 0x6c, 0x61, 0x37, 0xb4, 0x4d, 0xe7, + 0xf0, 0x32, 0xd9, 0x80, 0x62, 0x2f, 0xc0, 0xbe, 0x60, 0x7c, 0xe3, 0x32, 0xf9, 0xd6, 0x35, 0x83, + 0x60, 0xcf, 0xf3, 0x2d, 0x8e, 0x65, 0x5c, 0x1e, 0x92, 0xe6, 0xcf, 0xde, 0x91, 0x90, 0xa7, 0xf9, + 0xbf, 0x04, 0xcb, 0x1d, 0xcf, 0xb2, 0x77, 0x6c, 0xd9, 0xed, 0x00, 0xd2, 0x6d, 0x31, 0xfa, 0x9c, + 0xe8, 0x17, 0xdd, 0x7d, 0x9c, 0x17, 0xef, 0x3e, 0x7e, 0x23, 0x03, 0xcb, 0xb7, 0xba, 0xd6, 0xfb, + 0x40, 0x87, 0x15, 0x28, 0x7b, 0x8e, 0xb5, 0x99, 0x24, 0x85, 0x58, 0x45, 0x5a, 0xb8, 0x78, 0x2f, + 0x6e, 0xc1, 0xf4, 0x90, 0x58, 0x35, 0xf4, 0x5a, 0xc4, 0xa1, 0xe8, 0x95, 0x1f, 0x46, 0xaf, 0xd2, + 0x77, 0x5e, 0xcb, 0x17, 0x33, 0xb5, 0x85, 0x7a, 0x46, 0xff, 0x51, 0x58, 0x66, 0x19, 0x38, 0x0f, + 0x98, 0x4a, 0xd1, 0x1a, 0x2d, 0x8a, 0x6b, 0xf4, 0x36, 0x2c, 0x12, 0x6b, 0x46, 0x40, 0xdf, 0x0a, + 0xb0, 0x3f, 0xa1, 0xee, 0x3d, 0x0e, 0xa5, 0x08, 0x5a, 0x74, 0xa1, 0xa5, 0x5f, 0xa1, 0xff, 0x30, + 0x2c, 0xa4, 0x60, 0x1d, 0x72, 0x96, 0xd1, 0x4c, 0x96, 0xc4, 0x99, 0xac, 0x00, 0x18, 0x9e, 0x43, + 0xf4, 0x87, 0x1d, 0xee, 0x13, 0xef, 0x4b, 0x30, 0xed, 0xf4, 0x37, 0x69, 0x41, 0xe0, 0x0e, 0x69, + 0xf1, 0xb3, 0x1a, 0xcc, 0x31, 0xc9, 0x25, 0x43, 0x1d, 0x7e, 0x15, 0x5e, 0x86, 0x3c, 0xa6, 0x50, + 0x78, 0xd0, 0xee, 0xa4, 0x5c, 0x5d, 0xc6, 0xe8, 0x1a, 0xbc, 0xb9, 0x54, 0x8c, 0x42, 0x98, 0x5d, + 0xf7, 0xbd, 0xee, 0x64, 0x18, 0x51, 0x8f, 0xcf, 0xc1, 0xa2, 0x0f, 0x5f, 0x24, 0x15, 0xd7, 0x55, + 0x8c, 0xf1, 0x3d, 0x0d, 0x96, 0x6e, 0x74, 0xb1, 0x6f, 0x86, 0x98, 0x10, 0x6d, 0x32, 0xe8, 0xc3, + 0x64, 0x37, 0x81, 0x59, 0x36, 0x89, 0x19, 0xfa, 0x48, 0xe2, 0xc2, 0xb6, 0x7c, 0x9f, 0x97, 0xc2, + 0xb2, 0x7f, 0x6b, 0x2b, 0x9a, 0xd7, 0xb2, 0x38, 0xaf, 0x6f, 0x6b, 0x30, 0xb7, 0x85, 0x89, 0x79, + 0x9e, 0x6c, 0x4a, 0x2f, 0x08, 0x81, 0xc4, 0x11, 0x16, 0x98, 0x45, 0x1a, 0xcf, 0xc0, 0x9c, 0xed, + 0xb6, 0x9c, 0x9e, 0x85, 0x9b, 0x64, 0xfe, 0x2c, 0x62, 0xc8, 0x9c, 0xa7, 0x59, 0xfe, 0x81, 0x4c, + 0x83, 0x18, 0x50, 0x29, 0x8f, 0xdf, 0x67, 0x3c, 0x1e, 0xe7, 0x3d, 0x32, 0x14, 0xb4, 0x71, 0x50, + 0x38, 0x07, 0x39, 0x02, 0x3a, 0xf2, 0x8d, 0xe4, 0xbd, 0xfa, 0x62, 0x62, 0xb0, 0xd6, 0xfa, 0x4f, + 0x6a, 0x80, 0x44, 0xb2, 0x4d, 0xa2, 0x25, 0x5e, 0x15, 0xf3, 0x9d, 0xb2, 0x43, 0x51, 0x67, 0x33, + 0x8d, 0x33, 0x9d, 0xf4, 0x6f, 0xc5, 0xab, 0x47, 0x97, 0x7b, 0x92, 0xd5, 0x23, 0xf3, 0x1a, 0xba, + 0x7a, 0x02, 0x11, 0x68, 0x63, 0x71, 0xf5, 0x28, 0xc7, 0x4a, 0x56, 0x8f, 0xe0, 0x4c, 0x57, 0x8f, + 0xeb, 0xf7, 0x7a, 0x3d, 0x43, 0x16, 0x8d, 0x21, 0x1b, 0x2d, 0x1a, 0x85, 0xac, 0x8d, 0x03, 0xf9, + 0x1c, 0xe4, 0x08, 0xc4, 0x83, 0xe9, 0x15, 0x2d, 0x1a, 0x6d, 0x2d, 0x2c, 0x1a, 0x47, 0xe0, 0xc1, + 0x2f, 0x5a, 0x7f, 0xa6, 0xfd, 0x45, 0xd3, 0xa1, 0x72, 0x63, 0xfb, 0x6d, 0xdc, 0x0a, 0x87, 0x68, + 0xde, 0xa7, 0x60, 0x76, 0xd3, 0xb7, 0xef, 0xd9, 0x0e, 0x6e, 0x0f, 0x53, 0xe1, 0x9f, 0xd7, 0xa0, + 0x7a, 0xd9, 0x37, 0xdd, 0xd0, 0x8b, 0xd4, 0xf8, 0xa1, 0xe8, 0x79, 0x11, 0x4a, 0xdd, 0x08, 0x1a, + 0xe7, 0x81, 0x27, 0xe5, 0x07, 0x9b, 0x49, 0x9c, 0x8c, 0x7e, 0x37, 0xfd, 0x4d, 0x58, 0xa0, 0x98, + 0xa4, 0xd1, 0x7e, 0x0d, 0x8a, 0x54, 0x99, 0xdb, 0x3c, 0x80, 0xa4, 0x8a, 0xb9, 0x27, 0xa6, 0x61, + 0xc4, 0x7d, 0xf4, 0xbf, 0xd7, 0xa0, 0x4c, 0xbf, 0xf5, 0x27, 0x38, 0xbe, 0x94, 0xbf, 0x0a, 0x79, + 0x8f, 0x92, 0x7c, 0x68, 0xfe, 0x83, 0xb8, 0x2a, 0x06, 0xef, 0x40, 0x3c, 0x64, 0xf6, 0x4b, 0xd4, + 0xc8, 0xc0, 0xaa, 0xb8, 0x4e, 0x2e, 0xb4, 0x19, 0xee, 0x54, 0x2d, 0x8f, 0x36, 0xbf, 0xa8, 0x8b, + 0xfe, 0xf3, 0x31, 0x4f, 0xd2, 0x06, 0x87, 0x17, 0xe1, 0x57, 0x52, 0x36, 0x76, 0x45, 0x8d, 0x85, + 0xdc, 0xc8, 0x26, 0x34, 0x2b, 0xd9, 0x82, 0x26, 0xd0, 0x9a, 0x70, 0x0b, 0x1a, 0xb3, 0xc0, 0xb0, + 0x2d, 0xa8, 0x88, 0x5c, 0x9f, 0x01, 0xfe, 0x56, 0x83, 0x65, 0x6e, 0xd3, 0x62, 0xde, 0x7a, 0x08, + 0x64, 0x42, 0x1f, 0xe5, 0xb6, 0x97, 0x1d, 0x88, 0x3d, 0x33, 0xcc, 0xf6, 0xc6, 0x78, 0x1e, 0x60, + 0x7c, 0x7f, 0x53, 0xa3, 0xe1, 0xe8, 0xab, 0x9e, 0x69, 0xd9, 0x6e, 0x7b, 0xf2, 0x7b, 0x5d, 0x92, + 0x08, 0x43, 0x66, 0xd4, 0xcc, 0xeb, 0xac, 0x2c, 0x3b, 0x8a, 0x05, 0x0d, 0x57, 0xea, 0x19, 0xbd, + 0x43, 0xc3, 0xde, 0x03, 0x98, 0x4e, 0x78, 0xd0, 0xd9, 0xe5, 0x03, 0xf1, 0x48, 0x41, 0x5c, 0xd6, + 0xbf, 0xce, 0x42, 0x20, 0x04, 0xde, 0x84, 0xd7, 0xaf, 0x1e, 0x10, 0x4d, 0x4e, 0xd5, 0x33, 0xfa, + 0x4f, 0xb0, 0x4b, 0x62, 0x02, 0x92, 0x93, 0x90, 0xe3, 0xc5, 0x64, 0xf0, 0x52, 0x7e, 0xe2, 0xda, + 0x87, 0xc5, 0xf3, 0x6f, 0x9e, 0x82, 0xd2, 0x35, 0xda, 0xee, 0xe3, 0xf7, 0x43, 0x54, 0x87, 0xc2, + 0x3d, 0xec, 0x07, 0xb6, 0xe7, 0x72, 0x2b, 0x11, 0x15, 0xf5, 0x79, 0x7a, 0x02, 0xfe, 0x26, 0x2b, + 0x45, 0x47, 0x8e, 0x2d, 0x1a, 0x26, 0x8b, 0x2b, 0x27, 0x8c, 0xb6, 0x47, 0x90, 0x33, 0x49, 0xc8, + 0x0b, 0x80, 0x2e, 0xed, 0xe2, 0xd6, 0x9d, 0x2b, 0xd8, 0x74, 0xc2, 0x28, 0xd1, 0x5a, 0xff, 0x73, + 0x0d, 0xe6, 0x13, 0xd5, 0x13, 0x6e, 0xb3, 0xec, 0x80, 0x0d, 0xb4, 0xcf, 0x83, 0xfd, 0xfd, 0x0a, + 0x76, 0x6a, 0x6f, 0x06, 0x9e, 0x1b, 0xbf, 0xfc, 0xca, 0x8b, 0xe8, 0x22, 0x54, 0xee, 0xf6, 0xbc, + 0xd0, 0x8c, 0x8e, 0x84, 0xa7, 0x57, 0xb2, 0x83, 0x17, 0xd9, 0xe2, 0xbc, 0x0a, 0x2f, 0x34, 0x19, + 0xe5, 0xcb, 0x77, 0xe3, 0xdf, 0x81, 0xfe, 0x05, 0x0d, 0x1a, 0x7c, 0x8b, 0x24, 0x06, 0x8c, 0x0e, + 0xcf, 0xaf, 0xf4, 0x69, 0x13, 0x31, 0x2a, 0x15, 0x1d, 0x31, 0x24, 0x02, 0x52, 0x91, 0x3a, 0x69, + 0x24, 0x5e, 0x2d, 0xd5, 0xa0, 0x4e, 0xb7, 0x46, 0x0f, 0x03, 0x93, 0x63, 0x22, 0x26, 0xff, 0xa0, + 0xc1, 0xfc, 0x4d, 0xdf, 0x74, 0x83, 0x1d, 0xec, 0x5f, 0xf7, 0xac, 0x09, 0xc4, 0x77, 0x0d, 0x16, + 0x39, 0x0a, 0x52, 0x5c, 0xe6, 0x59, 0x5d, 0x62, 0xc6, 0xa4, 0x0f, 0x3b, 0x8a, 0x4a, 0xf7, 0x61, + 0xc6, 0x7b, 0x9e, 0x7d, 0x4c, 0xf6, 0xe1, 0x19, 0x50, 0x34, 0xa6, 0xc7, 0x1e, 0xd0, 0x2b, 0xb8, + 0xbd, 0x0e, 0xc1, 0x3d, 0x9a, 0xe0, 0xe3, 0xe2, 0x04, 0x7f, 0x3a, 0x03, 0x4b, 0xd1, 0x04, 0xa3, + 0xc8, 0xe3, 0x91, 0x9f, 0xe3, 0xa8, 0x01, 0x68, 0xe2, 0xf3, 0xd0, 0x74, 0x30, 0x36, 0x31, 0x7e, + 0xde, 0x0a, 0x6e, 0xaf, 0xc3, 0xa7, 0x1a, 0x91, 0xe4, 0xa4, 0x48, 0x12, 0x13, 0x1e, 0xbb, 0x6a, + 0x07, 0x49, 0x90, 0x93, 0xc7, 0x34, 0x4e, 0x88, 0x20, 0xde, 0x81, 0x86, 0x0c, 0xc4, 0x84, 0x2f, + 0x8f, 0xa4, 0x9f, 0x08, 0xca, 0xc8, 0x9e, 0x08, 0xd2, 0xbf, 0xa8, 0xc1, 0xf1, 0xe8, 0xae, 0xf8, + 0x43, 0x11, 0xb0, 0xe3, 0xa9, 0x27, 0x94, 0x4f, 0x28, 0xb0, 0x99, 0x84, 0x1a, 0x1b, 0x52, 0x8c, + 0x54, 0x2e, 0x6d, 0x12, 0x70, 0x12, 0x6b, 0xfd, 0x5f, 0xa6, 0xa1, 0x9a, 0x64, 0x3f, 0xc9, 0x06, + 0x86, 0xf8, 0x00, 0x2d, 0xb3, 0x6b, 0xb6, 0x22, 0x87, 0x2c, 0x67, 0xc4, 0x65, 0xf4, 0x41, 0x40, + 0x84, 0x0b, 0xe3, 0x67, 0xce, 0x98, 0x70, 0xb2, 0x5c, 0x8a, 0x9a, 0xdb, 0xeb, 0xc4, 0x4f, 0x9c, + 0x11, 0x29, 0x45, 0x3b, 0xac, 0xb5, 0xe3, 0x99, 0x16, 0x8e, 0xcf, 0x0d, 0xf8, 0xb1, 0xc1, 0x2b, + 0x07, 0xa3, 0xbf, 0x7a, 0xbd, 0xd7, 0xb9, 0x4a, 0xfb, 0x72, 0x1e, 0x67, 0x11, 0x7a, 0x02, 0x27, + 0x51, 0x8d, 0x5a, 0xf1, 0x29, 0x40, 0xdb, 0xb3, 0xdd, 0x36, 0x43, 0x2a, 0x37, 0xe4, 0xba, 0xcb, + 0x00, 0x98, 0x1b, 0xbc, 0xeb, 0xc0, 0x39, 0x40, 0x5c, 0x1b, 0x01, 0xb1, 0xdd, 0x96, 0xd7, 0x89, + 0x81, 0xe4, 0xc7, 0x01, 0xb2, 0xc1, 0xbb, 0x26, 0x81, 0x88, 0xb5, 0x8d, 0x4b, 0xb0, 0x28, 0x9d, + 0xf4, 0x38, 0xa7, 0x0d, 0xfd, 0x13, 0x8b, 0xe4, 0x94, 0x0e, 0x31, 0xc6, 0x00, 0xc6, 0x63, 0x9d, + 0x7a, 0xbc, 0xab, 0xc1, 0xb2, 0x81, 0x09, 0x4f, 0xbd, 0x17, 0x4f, 0x92, 0xce, 0x40, 0xc6, 0xda, + 0xe6, 0xd2, 0x98, 0xb1, 0xb6, 0x89, 0x0f, 0xe1, 0xb1, 0xdb, 0x08, 0x5c, 0xbf, 0x46, 0x45, 0x9a, + 0x94, 0x8a, 0xf7, 0xae, 0xf7, 0x75, 0x69, 0x54, 0x3c, 0x73, 0x0a, 0x8a, 0xd1, 0xab, 0x49, 0xa8, + 0x00, 0xd9, 0x0b, 0x8e, 0x53, 0x9b, 0x42, 0x15, 0x28, 0x6e, 0xf0, 0xa7, 0x81, 0x6a, 0xda, 0x99, + 0xd7, 0x61, 0x5e, 0x12, 0xad, 0x43, 0x73, 0x50, 0xbd, 0x60, 0xd1, 0x98, 0xf0, 0x4d, 0x8f, 0x54, + 0xd6, 0xa6, 0xd0, 0x12, 0x20, 0x03, 0x77, 0xbc, 0x7b, 0xb4, 0xe1, 0x1b, 0xbe, 0xd7, 0xa1, 0xf5, + 0xda, 0x99, 0x67, 0x61, 0x41, 0xb6, 0xe7, 0x40, 0x25, 0xc8, 0xd1, 0x3d, 0x4c, 0x6d, 0x0a, 0x01, + 0xe4, 0x0d, 0x7c, 0xcf, 0xbb, 0x43, 0x9a, 0xdf, 0x06, 0xe8, 0x3b, 0x32, 0xa8, 0x0c, 0x85, 0x5b, + 0xee, 0x1d, 0xd7, 0xdb, 0x73, 0x6b, 0x53, 0x68, 0x16, 0xca, 0x06, 0x36, 0xad, 0xab, 0x76, 0xc7, + 0x0e, 0xb1, 0x55, 0xcb, 0xa0, 0x1a, 0x54, 0xde, 0xf2, 0xed, 0x10, 0x47, 0x35, 0x59, 0x34, 0x03, + 0xb0, 0x8e, 0xdd, 0xfd, 0x9b, 0x1e, 0x69, 0x58, 0x9b, 0x26, 0x5d, 0x58, 0x99, 0xb6, 0xab, 0xe5, + 0xd6, 0x7e, 0xe3, 0x55, 0xa8, 0x32, 0x6f, 0x94, 0xbf, 0x42, 0x88, 0x9a, 0x50, 0x4b, 0xbf, 0xad, + 0x8f, 0x3e, 0x28, 0x4f, 0x4f, 0x91, 0x3f, 0xc1, 0xdf, 0x18, 0xa6, 0xb7, 0xf4, 0x29, 0xf4, 0x69, + 0x98, 0x49, 0x3e, 0x25, 0x8f, 0xe4, 0x29, 0xd9, 0xd2, 0xf7, 0xe6, 0x0f, 0x1a, 0xbc, 0x09, 0xd5, + 0xc4, 0xdb, 0xe7, 0x48, 0xbe, 0xeb, 0x93, 0xbd, 0x8f, 0xde, 0x90, 0x87, 0x18, 0xc4, 0xf7, 0xc9, + 0x19, 0xf6, 0xc9, 0x97, 0x84, 0x15, 0xd8, 0x4b, 0x9f, 0x1b, 0x3e, 0x08, 0x7b, 0x13, 0xe6, 0x06, + 0x5e, 0xe9, 0x45, 0xcf, 0x2a, 0xd4, 0x87, 0xfc, 0x35, 0xdf, 0x83, 0x40, 0xec, 0x01, 0x1a, 0x7c, + 0xcf, 0x1b, 0xad, 0xca, 0x57, 0x40, 0xf5, 0xc2, 0x79, 0xe3, 0xb9, 0x91, 0xdb, 0xc7, 0x84, 0xfb, + 0x9c, 0x06, 0xcb, 0x8a, 0x07, 0x5d, 0xd1, 0x0b, 0xaa, 0x94, 0x81, 0x21, 0xcf, 0xd3, 0x36, 0x5e, + 0x1c, 0xaf, 0x53, 0x8c, 0x88, 0x0b, 0xb3, 0xa9, 0xf7, 0x4c, 0xd1, 0x59, 0xe5, 0x0b, 0x6a, 0x83, + 0x8f, 0xbd, 0x36, 0x3e, 0x38, 0x5a, 0xe3, 0x18, 0xde, 0x6d, 0x98, 0x4d, 0xfd, 0x63, 0x02, 0x05, + 0x3c, 0xf9, 0xbf, 0x2f, 0x38, 0x68, 0x41, 0x6f, 0xc3, 0x6c, 0xea, 0xad, 0x50, 0xc5, 0xf0, 0xf2, + 0x17, 0x45, 0x0f, 0x1a, 0xfe, 0x53, 0x50, 0x4d, 0x3c, 0xea, 0xa9, 0x10, 0x28, 0xd9, 0xc3, 0x9f, + 0x07, 0x63, 0x5e, 0x11, 0xdf, 0xde, 0x44, 0xa7, 0x55, 0xa2, 0x3a, 0x30, 0xf0, 0x38, 0x92, 0xda, + 0x7f, 0xf0, 0x6e, 0x88, 0xa4, 0x0e, 0xbc, 0x11, 0x38, 0xba, 0xa4, 0x0a, 0xe3, 0x0f, 0x95, 0xd4, + 0xb1, 0x41, 0x7c, 0x46, 0xa3, 0xa9, 0x56, 0x92, 0x07, 0x15, 0xd1, 0x9a, 0x8a, 0xf5, 0xd5, 0x4f, + 0x47, 0x36, 0x5e, 0x18, 0xab, 0x4f, 0x4c, 0xc5, 0x3b, 0x30, 0x93, 0x7c, 0x36, 0x50, 0x41, 0x45, + 0xe9, 0x4b, 0x8b, 0x8d, 0xb3, 0x23, 0xb5, 0x8d, 0x81, 0xed, 0xd1, 0xf0, 0x46, 0x2a, 0x64, 0xa5, + 0x50, 0x4e, 0xca, 0x28, 0x9c, 0x42, 0x39, 0xa9, 0x63, 0x61, 0xfa, 0x14, 0xc2, 0x50, 0x11, 0xc3, + 0x42, 0x0a, 0x56, 0x94, 0x84, 0xb7, 0x1a, 0xcf, 0x8c, 0xd0, 0x32, 0x06, 0x73, 0x0b, 0xca, 0xc2, + 0xbf, 0x98, 0x42, 0x4f, 0x0f, 0x91, 0x53, 0xf1, 0x5f, 0xf7, 0x1c, 0xc4, 0x29, 0x9f, 0x84, 0x52, + 0xfc, 0x9f, 0xa1, 0xd0, 0x53, 0x4a, 0xf9, 0x1c, 0x67, 0xc8, 0x2d, 0x80, 0xfe, 0xbf, 0x7d, 0x42, + 0x1f, 0x50, 0xeb, 0xab, 0x71, 0x06, 0xdd, 0x85, 0x6a, 0xe2, 0x5f, 0x26, 0xa9, 0x74, 0x89, 0xe4, + 0x1f, 0x3a, 0x35, 0xce, 0x8c, 0xd2, 0x34, 0x26, 0xf4, 0x8f, 0x40, 0x59, 0xf8, 0x07, 0x45, 0x0a, + 0x9a, 0xa4, 0xff, 0x43, 0x52, 0xe3, 0xf4, 0xf0, 0x66, 0x38, 0x90, 0x2d, 0x25, 0x7b, 0x24, 0x65, + 0xd8, 0x52, 0x8a, 0xcf, 0x22, 0x8d, 0x41, 0x22, 0x36, 0xf0, 0x70, 0x12, 0x25, 0x86, 0x3e, 0x33, + 0x4a, 0xd3, 0x78, 0x02, 0xbb, 0x50, 0x4d, 0x3c, 0x2d, 0x85, 0x94, 0x9c, 0x3c, 0xf0, 0xa4, 0x96, + 0x02, 0x92, 0xf4, 0xa5, 0x2a, 0x7d, 0x0a, 0xfd, 0xb8, 0xf0, 0x8a, 0x55, 0xe2, 0xc9, 0x30, 0xf4, + 0xfc, 0xd0, 0x71, 0x64, 0x4f, 0xa7, 0x35, 0xd6, 0xc6, 0xe9, 0x12, 0xa3, 0xc0, 0x25, 0x84, 0x91, + 0x54, 0x2d, 0x21, 0xe3, 0xac, 0xd4, 0x16, 0xe4, 0xd9, 0x1b, 0x51, 0x48, 0x57, 0x3c, 0x14, 0x27, + 0xbc, 0x88, 0xd4, 0x78, 0x42, 0xda, 0x26, 0xf9, 0x0c, 0x10, 0x1b, 0x94, 0x65, 0xd2, 0x28, 0x06, + 0x4d, 0x3c, 0x74, 0x33, 0xc6, 0xa0, 0xec, 0x79, 0x26, 0xc5, 0xa0, 0x89, 0xb7, 0x9b, 0x46, 0x1d, + 0xd4, 0x80, 0x3c, 0x7b, 0xce, 0x43, 0x31, 0x68, 0xe2, 0xad, 0x9a, 0xc6, 0xf0, 0x36, 0xec, 0x90, + 0x75, 0x0a, 0x6d, 0x42, 0x8e, 0xe6, 0x92, 0xa3, 0x53, 0xc3, 0x9e, 0x88, 0x18, 0x36, 0x62, 0xe2, + 0x15, 0x09, 0x7d, 0x0a, 0xdd, 0x80, 0x1c, 0xbd, 0x5e, 0xa7, 0x18, 0x51, 0x7c, 0x3b, 0xa1, 0x31, + 0xb4, 0x49, 0x84, 0xa2, 0x05, 0x15, 0xf1, 0x86, 0xb3, 0xc2, 0x50, 0x48, 0xee, 0x80, 0x37, 0x46, + 0x69, 0x19, 0x41, 0x61, 0xb2, 0xd9, 0xcf, 0xab, 0x57, 0xcb, 0xe6, 0x40, 0xce, 0xbe, 0x5a, 0x36, + 0x07, 0xd3, 0xf4, 0xf5, 0x29, 0xf4, 0x05, 0x0d, 0xea, 0xaa, 0x6b, 0xb7, 0x48, 0xe9, 0x61, 0x0f, + 0xbb, 0x3b, 0xdc, 0x38, 0x37, 0x66, 0xaf, 0x18, 0x97, 0x77, 0xe8, 0x01, 0xd2, 0xc0, 0x45, 0x5b, + 0xa5, 0x39, 0x57, 0x5c, 0x1e, 0x6d, 0x7c, 0x68, 0xf4, 0x0e, 0x31, 0xec, 0x6d, 0x28, 0x0b, 0xf9, + 0xbb, 0x0a, 0x75, 0x3e, 0x98, 0xa1, 0xdc, 0x38, 0x7d, 0x70, 0xc3, 0x18, 0xc6, 0x26, 0xe4, 0xe8, + 0xed, 0x4c, 0x05, 0x33, 0x8a, 0x97, 0x3d, 0x15, 0xec, 0x9d, 0xb8, 0xdc, 0xc9, 0xdc, 0x16, 0xf1, + 0xaa, 0xa6, 0x82, 0x1b, 0x25, 0xb7, 0x3c, 0x15, 0x6e, 0x8b, 0xec, 0xde, 0x27, 0xdd, 0x54, 0x43, + 0xff, 0xaa, 0xa4, 0xc2, 0x19, 0x18, 0xb8, 0xad, 0xd9, 0x78, 0xfa, 0xc0, 0x76, 0x31, 0x00, 0x87, + 0xfa, 0x7d, 0xe9, 0x0b, 0x84, 0xab, 0xea, 0x0d, 0x9e, 0xec, 0x3e, 0x5e, 0xe3, 0xc9, 0xe1, 0x37, + 0x03, 0xf9, 0xf1, 0x0f, 0x35, 0xdd, 0xc2, 0xb5, 0x3d, 0xc5, 0x5a, 0x0f, 0x5e, 0xec, 0x1b, 0x61, + 0x67, 0x3d, 0x78, 0xab, 0x6b, 0xf8, 0x24, 0x06, 0x2f, 0x90, 0xa9, 0x9d, 0x57, 0xc5, 0x75, 0x31, + 0x7d, 0x0a, 0xdd, 0x85, 0x5a, 0xfa, 0xde, 0x9c, 0x22, 0x62, 0xa3, 0xb8, 0xc7, 0xd7, 0x78, 0x76, + 0xc4, 0xd6, 0xa2, 0x49, 0x3f, 0x36, 0x88, 0xd3, 0x5b, 0x76, 0xb8, 0x4b, 0x2f, 0x57, 0x8d, 0x32, + 0x6b, 0xf1, 0x1e, 0xd7, 0x28, 0xb3, 0x4e, 0xdc, 0xda, 0xe2, 0xf6, 0x97, 0x5e, 0x28, 0x50, 0xd9, + 0x5f, 0xf1, 0xbe, 0x90, 0xc2, 0xaa, 0x25, 0x2f, 0xd5, 0xb0, 0xdd, 0x4e, 0xf2, 0xa2, 0x02, 0x3a, + 0x33, 0xd2, 0x6d, 0x86, 0x61, 0xbb, 0x1d, 0xf9, 0xcd, 0x07, 0x16, 0x88, 0x48, 0xdd, 0xc3, 0x50, + 0xec, 0xdc, 0xe5, 0xf7, 0x40, 0x14, 0x81, 0x08, 0xc5, 0xd5, 0x0e, 0x2a, 0xc6, 0xb5, 0x74, 0x52, + 0xf7, 0xf0, 0xc8, 0x5e, 0x3a, 0x9b, 0xf7, 0xe0, 0xe0, 0x5b, 0x2d, 0x9d, 0x2d, 0xad, 0x00, 0xa0, + 0x48, 0xaa, 0x1e, 0x01, 0x40, 0x3a, 0xd1, 0x58, 0x01, 0x40, 0x91, 0x8f, 0x3c, 0x82, 0xfb, 0x9d, + 0x48, 0xf0, 0x55, 0x18, 0x5e, 0x59, 0x12, 0xb0, 0xc2, 0xf0, 0x4a, 0x73, 0x93, 0xd9, 0x06, 0xab, + 0x9f, 0xa7, 0xab, 0xd0, 0xa9, 0x03, 0x89, 0xbc, 0x07, 0xa1, 0x7f, 0x03, 0x8a, 0x51, 0xa2, 0x2d, + 0x7a, 0x52, 0xe9, 0xe5, 0x8e, 0x31, 0xe0, 0x6d, 0x98, 0x4d, 0x85, 0xbb, 0x15, 0x2c, 0x2a, 0x4f, + 0xb4, 0x3d, 0x78, 0x3d, 0xa1, 0x9f, 0x92, 0xa9, 0x20, 0xc2, 0x40, 0xaa, 0xab, 0xc2, 0xb0, 0x0c, + 0xe6, 0x76, 0x8a, 0x00, 0x08, 0x62, 0x43, 0x01, 0x08, 0xd9, 0x98, 0x43, 0x01, 0x88, 0x79, 0x88, + 0x8c, 0x23, 0xd3, 0xd1, 0x7c, 0x05, 0x47, 0x2a, 0x12, 0xa2, 0x0e, 0x22, 0xd1, 0x36, 0x94, 0x85, + 0xac, 0x2e, 0x34, 0x0c, 0x35, 0x31, 0x1d, 0x4d, 0xe1, 0x98, 0x48, 0x12, 0xc4, 0x62, 0xfb, 0xce, + 0xb3, 0x4a, 0xd4, 0xf6, 0x3d, 0x99, 0x8b, 0xa2, 0xb6, 0xef, 0xa9, 0xf4, 0x14, 0x36, 0x09, 0x21, + 0x75, 0x44, 0xb5, 0x59, 0x1e, 0xc8, 0x39, 0x51, 0xf9, 0xcc, 0x83, 0x59, 0x28, 0xd4, 0x17, 0x9a, + 0x97, 0x64, 0x75, 0x28, 0xbc, 0x47, 0x75, 0xfe, 0xc7, 0x08, 0x81, 0xbf, 0x81, 0x84, 0x0d, 0x45, + 0xe0, 0x4f, 0x95, 0xd8, 0x71, 0x10, 0x88, 0xb7, 0xa0, 0x22, 0x66, 0x62, 0x28, 0xbc, 0x3a, 0x49, + 0xb2, 0xc6, 0x08, 0xd2, 0x9c, 0xca, 0x80, 0x50, 0x48, 0xb3, 0x3c, 0x4f, 0x62, 0x04, 0x07, 0x68, + 0xf0, 0xac, 0x5f, 0xe1, 0x0a, 0x28, 0xf3, 0x0e, 0x14, 0xae, 0x80, 0x3a, 0x89, 0x80, 0x07, 0x18, + 0xa4, 0x47, 0xeb, 0x8a, 0x00, 0xc3, 0xb0, 0xa4, 0x00, 0x45, 0x80, 0x61, 0xe8, 0xc9, 0x3d, 0xd3, + 0x03, 0xe9, 0xb3, 0x4c, 0x85, 0x1e, 0x50, 0x1c, 0x79, 0x1e, 0x44, 0xdc, 0x1e, 0x23, 0xee, 0x06, + 0x7b, 0x10, 0x9d, 0x6f, 0x62, 0xd2, 0x8c, 0xc7, 0xfe, 0xe3, 0xfd, 0x60, 0xbb, 0x08, 0xc6, 0xea, + 0xa8, 0xcd, 0xe3, 0x79, 0xd1, 0x04, 0xa5, 0xe4, 0xbf, 0x1c, 0x61, 0x2f, 0xe0, 0x9b, 0xa1, 0x99, + 0x3e, 0xb6, 0x61, 0xc3, 0xa9, 0x5a, 0x2b, 0x8e, 0x6d, 0x0e, 0xea, 0x14, 0x61, 0xb2, 0xd6, 0x83, + 0xca, 0xa6, 0xef, 0xdd, 0x8f, 0xfe, 0x5b, 0xda, 0xfb, 0xb4, 0xf7, 0x39, 0xdf, 0x82, 0x19, 0xd6, + 0xa0, 0x89, 0xef, 0x87, 0x4d, 0x6f, 0xfb, 0x6d, 0x74, 0x7c, 0xb5, 0xed, 0x79, 0x6d, 0x07, 0xb3, + 0xee, 0xdb, 0xbd, 0x9d, 0xd5, 0x37, 0x6c, 0x07, 0xdf, 0xe0, 0xb7, 0xbc, 0xff, 0xb9, 0x30, 0xe4, + 0x01, 0xba, 0x38, 0xef, 0xcf, 0xa8, 0x74, 0xa2, 0x9f, 0x37, 0xb6, 0xdf, 0xbe, 0xb8, 0x03, 0x33, + 0x76, 0xdc, 0xa8, 0xed, 0x77, 0x5b, 0x17, 0xcb, 0xac, 0xe9, 0x26, 0xe9, 0xbd, 0xa9, 0xfd, 0xd0, + 0xf3, 0x6d, 0x3b, 0xdc, 0xed, 0x6d, 0x13, 0xae, 0x78, 0x8e, 0x35, 0x7b, 0xd6, 0xf6, 0xa2, 0x5f, + 0x14, 0xc4, 0x73, 0x6d, 0xef, 0x59, 0xb3, 0x6b, 0xf3, 0xba, 0xee, 0xf6, 0xaf, 0x69, 0xda, 0x6f, + 0x67, 0x66, 0x36, 0x6e, 0x70, 0x98, 0xab, 0x97, 0xfd, 0x6e, 0x6b, 0x3b, 0x4f, 0x9b, 0xbe, 0xf0, + 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x0b, 0x4c, 0xbe, 0x61, 0x5a, 0x81, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -9251,6 +9271,8 @@ type MilvusServiceClient interface { ListResourceGroups(ctx context.Context, in *ListResourceGroupsRequest, opts ...grpc.CallOption) (*ListResourceGroupsResponse, error) DescribeResourceGroup(ctx context.Context, in *DescribeResourceGroupRequest, opts ...grpc.CallOption) (*DescribeResourceGroupResponse, error) RenameCollection(ctx context.Context, in *RenameCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error) + ListIndexedSegment(ctx context.Context, in *federpb.ListIndexedSegmentRequest, opts ...grpc.CallOption) (*federpb.ListIndexedSegmentResponse, error) + DescribeSegmentIndexData(ctx context.Context, in *federpb.DescribeSegmentIndexDataRequest, opts ...grpc.CallOption) (*federpb.DescribeSegmentIndexDataResponse, error) } type milvusServiceClient struct { @@ -9891,6 +9913,24 @@ func (c *milvusServiceClient) RenameCollection(ctx context.Context, in *RenameCo return out, nil } +func (c *milvusServiceClient) ListIndexedSegment(ctx context.Context, in *federpb.ListIndexedSegmentRequest, opts ...grpc.CallOption) (*federpb.ListIndexedSegmentResponse, error) { + out := new(federpb.ListIndexedSegmentResponse) + err := c.cc.Invoke(ctx, "/milvus.proto.milvus.MilvusService/ListIndexedSegment", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *milvusServiceClient) DescribeSegmentIndexData(ctx context.Context, in *federpb.DescribeSegmentIndexDataRequest, opts ...grpc.CallOption) (*federpb.DescribeSegmentIndexDataResponse, error) { + out := new(federpb.DescribeSegmentIndexDataResponse) + err := c.cc.Invoke(ctx, "/milvus.proto.milvus.MilvusService/DescribeSegmentIndexData", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // MilvusServiceServer is the server API for MilvusService service. type MilvusServiceServer interface { CreateCollection(context.Context, *CreateCollectionRequest) (*commonpb.Status, error) @@ -9970,6 +10010,8 @@ type MilvusServiceServer interface { ListResourceGroups(context.Context, *ListResourceGroupsRequest) (*ListResourceGroupsResponse, error) DescribeResourceGroup(context.Context, *DescribeResourceGroupRequest) (*DescribeResourceGroupResponse, error) RenameCollection(context.Context, *RenameCollectionRequest) (*commonpb.Status, error) + ListIndexedSegment(context.Context, *federpb.ListIndexedSegmentRequest) (*federpb.ListIndexedSegmentResponse, error) + DescribeSegmentIndexData(context.Context, *federpb.DescribeSegmentIndexDataRequest) (*federpb.DescribeSegmentIndexDataResponse, error) } // UnimplementedMilvusServiceServer can be embedded to have forward compatible implementations. @@ -10186,6 +10228,12 @@ func (*UnimplementedMilvusServiceServer) DescribeResourceGroup(ctx context.Conte func (*UnimplementedMilvusServiceServer) RenameCollection(ctx context.Context, req *RenameCollectionRequest) (*commonpb.Status, error) { return nil, status.Errorf(codes.Unimplemented, "method RenameCollection not implemented") } +func (*UnimplementedMilvusServiceServer) ListIndexedSegment(ctx context.Context, req *federpb.ListIndexedSegmentRequest) (*federpb.ListIndexedSegmentResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ListIndexedSegment not implemented") +} +func (*UnimplementedMilvusServiceServer) DescribeSegmentIndexData(ctx context.Context, req *federpb.DescribeSegmentIndexDataRequest) (*federpb.DescribeSegmentIndexDataResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method DescribeSegmentIndexData not implemented") +} func RegisterMilvusServiceServer(s *grpc.Server, srv MilvusServiceServer) { s.RegisterService(&_MilvusService_serviceDesc, srv) @@ -11451,6 +11499,42 @@ func _MilvusService_RenameCollection_Handler(srv interface{}, ctx context.Contex return interceptor(ctx, in, info, handler) } +func _MilvusService_ListIndexedSegment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(federpb.ListIndexedSegmentRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(MilvusServiceServer).ListIndexedSegment(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/milvus.proto.milvus.MilvusService/ListIndexedSegment", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(MilvusServiceServer).ListIndexedSegment(ctx, req.(*federpb.ListIndexedSegmentRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _MilvusService_DescribeSegmentIndexData_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(federpb.DescribeSegmentIndexDataRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(MilvusServiceServer).DescribeSegmentIndexData(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/milvus.proto.milvus.MilvusService/DescribeSegmentIndexData", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(MilvusServiceServer).DescribeSegmentIndexData(ctx, req.(*federpb.DescribeSegmentIndexDataRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _MilvusService_serviceDesc = grpc.ServiceDesc{ ServiceName: "milvus.proto.milvus.MilvusService", HandlerType: (*MilvusServiceServer)(nil), @@ -11735,6 +11819,14 @@ var _MilvusService_serviceDesc = grpc.ServiceDesc{ MethodName: "RenameCollection", Handler: _MilvusService_RenameCollection_Handler, }, + { + MethodName: "ListIndexedSegment", + Handler: _MilvusService_ListIndexedSegment_Handler, + }, + { + MethodName: "DescribeSegmentIndexData", + Handler: _MilvusService_DescribeSegmentIndexData_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "milvus.proto", diff --git a/go-api/schemapb/schema.pb.go b/go-api/schemapb/schema.pb.go index 7554f09..c77c5f9 100644 --- a/go-api/schemapb/schema.pb.go +++ b/go-api/schemapb/schema.pb.go @@ -21,7 +21,7 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package -// * +//* // @brief Field data type type DataType int32 @@ -109,7 +109,7 @@ func (FieldState) EnumDescriptor() ([]byte, []int) { return fileDescriptor_1c5fb4d8cc22d66a, []int{1} } -// * +//* // @brief Field schema type FieldSchema struct { FieldID int64 `protobuf:"varint,1,opt,name=fieldID,proto3" json:"fieldID,omitempty"` @@ -214,7 +214,7 @@ func (m *FieldSchema) GetState() FieldState { return FieldState_FieldCreated } -// * +//* // @brief Collection schema type CollectionSchema struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` @@ -555,7 +555,6 @@ func (m *StringArray) GetData() []string { type ScalarField struct { // Types that are valid to be assigned to Data: - // // *ScalarField_BoolData // *ScalarField_IntData // *ScalarField_LongData @@ -712,7 +711,6 @@ func (*ScalarField) XXX_OneofWrappers() []interface{} { type VectorField struct { Dim int64 `protobuf:"varint,1,opt,name=dim,proto3" json:"dim,omitempty"` // Types that are valid to be assigned to Data: - // // *VectorField_FloatVector // *VectorField_BinaryVector Data isVectorField_Data `protobuf_oneof:"data"` @@ -802,7 +800,6 @@ type FieldData struct { Type DataType `protobuf:"varint,1,opt,name=type,proto3,enum=milvus.proto.schema.DataType" json:"type,omitempty"` FieldName string `protobuf:"bytes,2,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"` // Types that are valid to be assigned to Field: - // // *FieldData_Scalars // *FieldData_Vectors Field isFieldData_Field `protobuf_oneof:"field"` @@ -905,7 +902,6 @@ func (*FieldData) XXX_OneofWrappers() []interface{} { type IDs struct { // Types that are valid to be assigned to IdField: - // // *IDs_IntId // *IDs_StrId IdField isIDs_IdField `protobuf_oneof:"id_field"` diff --git a/proto/common.proto b/proto/common.proto index 5fd29eb..b61bd52 100644 --- a/proto/common.proto +++ b/proto/common.proto @@ -179,6 +179,8 @@ enum MsgType { HandoffSegments = 254; LoadBalanceSegments = 255; DescribeSegments = 256; + FederListIndexedSegment = 257; + FederDescribeSegmentIndexData = 258; /* DEFINITION REQUESTS: INDEX */ CreateIndex = 300; diff --git a/proto/feder.proto b/proto/feder.proto new file mode 100644 index 0000000..63c7219 --- /dev/null +++ b/proto/feder.proto @@ -0,0 +1,40 @@ +syntax = "proto3"; +package milvus.proto.feder; +option go_package = "github.com/milvus-io/milvus-proto/go-api/federpb"; + +import "common.proto"; + +message SegmentIndexData { + int64 segmentID = 1; + string index_data = 2; // data from knownwhere +} + +message FederSegmentSearchResult { + int64 segmentID = 1; + string visit_info = 2; +} + +message ListIndexedSegmentRequest { + common.MsgBase base = 1; + string collection_name = 2; + string index_name = 3; +} + +message ListIndexedSegmentResponse { + common.Status status = 1; + repeated int64 segmentIDs = 2; +} + +message DescribeSegmentIndexDataRequest { + common.MsgBase base = 1; + string collection_name = 2; + string index_name = 3; + repeated int64 segmentsIDs = 4; +} + +message DescribeSegmentIndexDataResponse { + common.Status status = 1; + // segmentID => segmentIndexData + map index_data = 2; + repeated common.KeyValuePair index_params = 3; +} \ No newline at end of file diff --git a/proto/milvus.proto b/proto/milvus.proto index 41d65ba..b492b0a 100644 --- a/proto/milvus.proto +++ b/proto/milvus.proto @@ -12,6 +12,7 @@ option csharp_namespace = "IO.Milvus.Grpc"; import "common.proto"; import "schema.proto"; +import "feder.proto"; import "google/protobuf/descriptor.proto"; service MilvusService { @@ -108,6 +109,9 @@ service MilvusService { rpc DescribeResourceGroup(DescribeResourceGroupRequest) returns (DescribeResourceGroupResponse) {} rpc RenameCollection(RenameCollectionRequest) returns (common.Status) {} + + rpc ListIndexedSegment(feder.ListIndexedSegmentRequest) returns(feder.ListIndexedSegmentResponse) {} + rpc DescribeSegmentIndexData(feder.DescribeSegmentIndexDataRequest) returns(feder.DescribeSegmentIndexDataResponse) {} } message CreateAliasRequest { diff --git a/scripts/proto_gen_go.sh b/scripts/proto_gen_go.sh index c30d5a5..597e9fd 100755 --- a/scripts/proto_gen_go.sh +++ b/scripts/proto_gen_go.sh @@ -39,6 +39,7 @@ mkdir -p ../go-api/commonpb mkdir -p ../go-api/schemapb mkdir -p ../go-api/milvuspb mkdir -p ../go-api/msgpb +mkdir -p ../go-api/federpb $protoc --version @@ -66,4 +67,10 @@ $protoc --proto_path="${GOOGLE_PROTO_DIR}" --proto_path=. \ --go_opt="Mmessage.proto=github.com/milvus-io/milvus-proto/go-api/msgapb;msgpb" \ --go_out=plugins=grpc,paths=source_relative:./../go-api/msgpb msg.proto +$protoc --proto_path="${GOOGLE_PROTO_DIR}" --proto_path=. \ + --go_opt=Mschema.proto=github.com/milvus-io/milvus-proto/go-api/schemapb \ + --go_opt=Mcommon.proto=github.com/milvus-io/milvus-proto/go-api/commonpb \ + --go_opt="Mmessage.proto=github.com/milvus-io/milvus-proto/go-api/federpb;federpb" \ + --go_out=plugins=grpc,paths=source_relative:./../go-api/federpb feder.proto + popd