blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
264
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
85
| license_type
stringclasses 2
values | repo_name
stringlengths 5
140
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 905
values | visit_date
timestamp[us]date 2015-08-09 11:21:18
2023-09-06 10:45:07
| revision_date
timestamp[us]date 1997-09-14 05:04:47
2023-09-17 19:19:19
| committer_date
timestamp[us]date 1997-09-14 05:04:47
2023-09-06 06:22:19
| github_id
int64 3.89k
681M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us]date 2012-06-07 00:51:45
2023-09-14 21:58:39
⌀ | gha_created_at
timestamp[us]date 2008-03-27 23:40:48
2023-08-21 23:17:38
⌀ | gha_language
stringclasses 141
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
10.4M
| extension
stringclasses 115
values | content
stringlengths 3
10.4M
| authors
sequencelengths 1
1
| author_id
stringlengths 0
158
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ba4493a78821db64cd336b81112b2a8159840c52 | 6e57bdc0a6cd18f9f546559875256c4570256c45 | /external/pdfium/xfa/fxfa/parser/cxfa_instancemanager.cpp | 1ba54990a355b8822b775024446c01dbdc07d7e2 | [
"BSD-3-Clause"
] | permissive | dongdong331/test | 969d6e945f7f21a5819cd1d5f536d12c552e825c | 2ba7bcea4f9d9715cbb1c4e69271f7b185a0786e | refs/heads/master | 2023-03-07T06:56:55.210503 | 2020-12-07T04:15:33 | 2020-12-07T04:15:33 | 134,398,935 | 2 | 1 | null | 2022-11-21T07:53:41 | 2018-05-22T10:26:42 | null | UTF-8 | C++ | false | false | 1,290 | cpp | // Copyright 2017 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#include "xfa/fxfa/parser/cxfa_instancemanager.h"
#include "fxjs/xfa/cjx_instancemanager.h"
#include "third_party/base/ptr_util.h"
namespace {
const CXFA_Node::PropertyData kPropertyData[] = {{XFA_Element::Occur, 1, 0},
{XFA_Element::Unknown, 0, 0}};
const CXFA_Node::AttributeData kAttributeData[] = {
{XFA_Attribute::Name, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}};
constexpr wchar_t kName[] = L"instanceManager";
} // namespace
CXFA_InstanceManager::CXFA_InstanceManager(CXFA_Document* doc,
XFA_PacketType packet)
: CXFA_Node(doc,
packet,
XFA_XDPPACKET_Form,
XFA_ObjectType::Node,
XFA_Element::InstanceManager,
kPropertyData,
kAttributeData,
kName,
pdfium::MakeUnique<CJX_InstanceManager>(this)) {}
CXFA_InstanceManager::~CXFA_InstanceManager() {}
| [
"[email protected]"
] | |
34815d9687b2f84f43689cca9a08a2778acae78f | 931544d66c832c092e0b0b0c6baabbecfe0d47d0 | /solutions/hackerrank/30-2d-arrays.cpp | b7c32edd935e71944e1418141e110002e889ed88 | [
"MIT"
] | permissive | rahulsah123/CodeMonk | 99f006e963d2618ad29987e690e275660877179c | 700d500b56566b63252a51bac8fe30949403d243 | refs/heads/master | 2020-06-13T01:07:37.147814 | 2016-11-27T17:16:40 | 2016-11-27T17:16:40 | 75,470,634 | 1 | 0 | null | 2016-12-03T11:50:46 | 2016-12-03T11:50:46 | null | UTF-8 | C++ | false | false | 1,060 | cpp | /**
* @author yangyanzhan
* @email [email protected]
* @homepage http://www.yangyanzhan.com
* @github_project https://github.com/yangyanzhan/CodeMonk
* @online_judge hackerrank
* @problem_id 30-2d-arrays
* @problem_address https://www.hackerrank.com/challenges/30-2d-arrays
**/
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <iostream>
#include <iterator>
#include <map>
#include <regex>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
using namespace std;
int main(int argc, char *argv[]) {
int res = -9 * 7, n = 6;
int nums[n][n];
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> nums[i][j];
}
}
for (int i = 1; i <= n - 2; i++) {
for (int j = 1; j <= n - 2; j++) {
int sum = nums[i][j];
for (int k = -1; k <= 1; k++) {
sum += nums[i - 1][j + k] + nums[i + 1][j + k];
}
res = max(res, sum);
}
}
cout << res << endl;
return 0;
}
| [
"[email protected]"
] | |
5f29123aeba939aab9812f06f6072fdd8f9db06c | 4b65a00a678db582fa1082721368f82de897faf1 | /src/policy/fees.cpp | ef2ad6ad550ed02039832a5b29e930b36a5897dc | [
"Apache-2.0"
] | permissive | smirnoffalexx/pocketnet.core | c79d3461ebf11c6477a0feb12d2fad1962017c0a | e30f54eee61625f51e2ff9aead46790d56e8d7a6 | refs/heads/master | 2023-06-27T04:41:28.973297 | 2021-06-24T01:03:50 | 2021-06-24T01:03:50 | 378,153,766 | 0 | 0 | Apache-2.0 | 2021-06-18T13:07:53 | 2021-06-18T13:07:53 | null | UTF-8 | C++ | false | false | 42,679 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2018 The Pocketcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <policy/fees.h>
#include <policy/policy.h>
#include <clientversion.h>
#include <primitives/transaction.h>
#include <streams.h>
#include <txmempool.h>
#include <util.h>
static constexpr double INF_FEERATE = 1e99;
std::string StringForFeeEstimateHorizon(FeeEstimateHorizon horizon) {
static const std::map<FeeEstimateHorizon, std::string> horizon_strings = {
{FeeEstimateHorizon::SHORT_HALFLIFE, "short"},
{FeeEstimateHorizon::MED_HALFLIFE, "medium"},
{FeeEstimateHorizon::LONG_HALFLIFE, "long"},
};
auto horizon_string = horizon_strings.find(horizon);
if (horizon_string == horizon_strings.end()) return "unknown";
return horizon_string->second;
}
std::string StringForFeeReason(FeeReason reason) {
static const std::map<FeeReason, std::string> fee_reason_strings = {
{FeeReason::NONE, "None"},
{FeeReason::HALF_ESTIMATE, "Half Target 60% Threshold"},
{FeeReason::FULL_ESTIMATE, "Target 85% Threshold"},
{FeeReason::DOUBLE_ESTIMATE, "Double Target 95% Threshold"},
{FeeReason::CONSERVATIVE, "Conservative Double Target longer horizon"},
{FeeReason::MEMPOOL_MIN, "Mempool Min Fee"},
{FeeReason::PAYTXFEE, "PayTxFee set"},
{FeeReason::FALLBACK, "Fallback fee"},
{FeeReason::REQUIRED, "Minimum Required Fee"},
{FeeReason::MAXTXFEE, "MaxTxFee limit"}
};
auto reason_string = fee_reason_strings.find(reason);
if (reason_string == fee_reason_strings.end()) return "Unknown";
return reason_string->second;
}
bool FeeModeFromString(const std::string& mode_string, FeeEstimateMode& fee_estimate_mode) {
static const std::map<std::string, FeeEstimateMode> fee_modes = {
{"UNSET", FeeEstimateMode::UNSET},
{"ECONOMICAL", FeeEstimateMode::ECONOMICAL},
{"CONSERVATIVE", FeeEstimateMode::CONSERVATIVE},
};
auto mode = fee_modes.find(mode_string);
if (mode == fee_modes.end()) return false;
fee_estimate_mode = mode->second;
return true;
}
/**
* We will instantiate an instance of this class to track transactions that were
* included in a block. We will lump transactions into a bucket according to their
* approximate feerate and then track how long it took for those txs to be included in a block
*
* The tracking of unconfirmed (mempool) transactions is completely independent of the
* historical tracking of transactions that have been confirmed in a block.
*/
class TxConfirmStats
{
private:
//Define the buckets we will group transactions into
const std::vector<double>& buckets; // The upper-bound of the range for the bucket (inclusive)
const std::map<double, unsigned int>& bucketMap; // Map of bucket upper-bound to index into all vectors by bucket
// For each bucket X:
// Count the total # of txs in each bucket
// Track the historical moving average of this total over blocks
std::vector<double> txCtAvg;
// Count the total # of txs confirmed within Y blocks in each bucket
// Track the historical moving average of theses totals over blocks
std::vector<std::vector<double>> confAvg; // confAvg[Y][X]
// Track moving avg of txs which have been evicted from the mempool
// after failing to be confirmed within Y blocks
std::vector<std::vector<double>> failAvg; // failAvg[Y][X]
// Sum the total feerate of all tx's in each bucket
// Track the historical moving average of this total over blocks
std::vector<double> avg;
// Combine the conf counts with tx counts to calculate the confirmation % for each Y,X
// Combine the total value with the tx counts to calculate the avg feerate per bucket
double decay;
// Resolution (# of blocks) with which confirmations are tracked
unsigned int scale;
// Mempool counts of outstanding transactions
// For each bucket X, track the number of transactions in the mempool
// that are unconfirmed for each possible confirmation value Y
std::vector<std::vector<int> > unconfTxs; //unconfTxs[Y][X]
// transactions still unconfirmed after GetMaxConfirms for each bucket
std::vector<int> oldUnconfTxs;
void resizeInMemoryCounters(size_t newbuckets);
public:
/**
* Create new TxConfirmStats. This is called by BlockPolicyEstimator's
* constructor with default values.
* @param defaultBuckets contains the upper limits for the bucket boundaries
* @param maxPeriods max number of periods to track
* @param decay how much to decay the historical moving average per block
*/
TxConfirmStats(const std::vector<double>& defaultBuckets, const std::map<double, unsigned int>& defaultBucketMap,
unsigned int maxPeriods, double decay, unsigned int scale);
/** Roll the circular buffer for unconfirmed txs*/
void ClearCurrent(unsigned int nBlockHeight);
/**
* Record a new transaction data point in the current block stats
* @param blocksToConfirm the number of blocks it took this transaction to confirm
* @param val the feerate of the transaction
* @warning blocksToConfirm is 1-based and has to be >= 1
*/
void Record(int blocksToConfirm, double val);
/** Record a new transaction entering the mempool*/
unsigned int NewTx(unsigned int nBlockHeight, double val);
/** Remove a transaction from mempool tracking stats*/
void removeTx(unsigned int entryHeight, unsigned int nBestSeenHeight,
unsigned int bucketIndex, bool inBlock);
/** Update our estimates by decaying our historical moving average and updating
with the data gathered from the current block */
void UpdateMovingAverages();
/**
* Calculate a feerate estimate. Find the lowest value bucket (or range of buckets
* to make sure we have enough data points) whose transactions still have sufficient likelihood
* of being confirmed within the target number of confirmations
* @param confTarget target number of confirmations
* @param sufficientTxVal required average number of transactions per block in a bucket range
* @param minSuccess the success probability we require
* @param requireGreater return the lowest feerate such that all higher values pass minSuccess OR
* return the highest feerate such that all lower values fail minSuccess
* @param nBlockHeight the current block height
*/
double EstimateMedianVal(int confTarget, double sufficientTxVal,
double minSuccess, bool requireGreater, unsigned int nBlockHeight,
EstimationResult *result = nullptr) const;
/** Return the max number of confirms we're tracking */
unsigned int GetMaxConfirms() const { return scale * confAvg.size(); }
/** Write state of estimation data to a file*/
void Write(CAutoFile& fileout) const;
/**
* Read saved state of estimation data from a file and replace all internal data structures and
* variables with this state.
*/
void Read(CAutoFile& filein, int nFileVersion, size_t numBuckets);
};
TxConfirmStats::TxConfirmStats(const std::vector<double>& defaultBuckets,
const std::map<double, unsigned int>& defaultBucketMap,
unsigned int maxPeriods, double _decay, unsigned int _scale)
: buckets(defaultBuckets), bucketMap(defaultBucketMap)
{
decay = _decay;
assert(_scale != 0 && "_scale must be non-zero");
scale = _scale;
confAvg.resize(maxPeriods);
for (unsigned int i = 0; i < maxPeriods; i++) {
confAvg[i].resize(buckets.size());
}
failAvg.resize(maxPeriods);
for (unsigned int i = 0; i < maxPeriods; i++) {
failAvg[i].resize(buckets.size());
}
txCtAvg.resize(buckets.size());
avg.resize(buckets.size());
resizeInMemoryCounters(buckets.size());
}
void TxConfirmStats::resizeInMemoryCounters(size_t newbuckets) {
// newbuckets must be passed in because the buckets referred to during Read have not been updated yet.
unconfTxs.resize(GetMaxConfirms());
for (unsigned int i = 0; i < unconfTxs.size(); i++) {
unconfTxs[i].resize(newbuckets);
}
oldUnconfTxs.resize(newbuckets);
}
// Roll the unconfirmed txs circular buffer
void TxConfirmStats::ClearCurrent(unsigned int nBlockHeight)
{
for (unsigned int j = 0; j < buckets.size(); j++) {
oldUnconfTxs[j] += unconfTxs[nBlockHeight%unconfTxs.size()][j];
unconfTxs[nBlockHeight%unconfTxs.size()][j] = 0;
}
}
void TxConfirmStats::Record(int blocksToConfirm, double val)
{
// blocksToConfirm is 1-based
if (blocksToConfirm < 1)
return;
int periodsToConfirm = (blocksToConfirm + scale - 1)/scale;
unsigned int bucketindex = bucketMap.lower_bound(val)->second;
for (size_t i = periodsToConfirm; i <= confAvg.size(); i++) {
confAvg[i - 1][bucketindex]++;
}
txCtAvg[bucketindex]++;
avg[bucketindex] += val;
}
void TxConfirmStats::UpdateMovingAverages()
{
for (unsigned int j = 0; j < buckets.size(); j++) {
for (unsigned int i = 0; i < confAvg.size(); i++)
confAvg[i][j] = confAvg[i][j] * decay;
for (unsigned int i = 0; i < failAvg.size(); i++)
failAvg[i][j] = failAvg[i][j] * decay;
avg[j] = avg[j] * decay;
txCtAvg[j] = txCtAvg[j] * decay;
}
}
// returns -1 on error conditions
double TxConfirmStats::EstimateMedianVal(int confTarget, double sufficientTxVal,
double successBreakPoint, bool requireGreater,
unsigned int nBlockHeight, EstimationResult *result) const
{
// Counters for a bucket (or range of buckets)
double nConf = 0; // Number of tx's confirmed within the confTarget
double totalNum = 0; // Total number of tx's that were ever confirmed
int extraNum = 0; // Number of tx's still in mempool for confTarget or longer
double failNum = 0; // Number of tx's that were never confirmed but removed from the mempool after confTarget
int periodTarget = (confTarget + scale - 1)/scale;
int maxbucketindex = buckets.size() - 1;
// requireGreater means we are looking for the lowest feerate such that all higher
// values pass, so we start at maxbucketindex (highest feerate) and look at successively
// smaller buckets until we reach failure. Otherwise, we are looking for the highest
// feerate such that all lower values fail, and we go in the opposite direction.
unsigned int startbucket = requireGreater ? maxbucketindex : 0;
int step = requireGreater ? -1 : 1;
// We'll combine buckets until we have enough samples.
// The near and far variables will define the range we've combined
// The best variables are the last range we saw which still had a high
// enough confirmation rate to count as success.
// The cur variables are the current range we're counting.
unsigned int curNearBucket = startbucket;
unsigned int bestNearBucket = startbucket;
unsigned int curFarBucket = startbucket;
unsigned int bestFarBucket = startbucket;
bool foundAnswer = false;
unsigned int bins = unconfTxs.size();
bool newBucketRange = true;
bool passing = true;
EstimatorBucket passBucket;
EstimatorBucket failBucket;
// Start counting from highest(default) or lowest feerate transactions
for (int bucket = startbucket; bucket >= 0 && bucket <= maxbucketindex; bucket += step) {
if (newBucketRange) {
curNearBucket = bucket;
newBucketRange = false;
}
curFarBucket = bucket;
nConf += confAvg[periodTarget - 1][bucket];
totalNum += txCtAvg[bucket];
failNum += failAvg[periodTarget - 1][bucket];
for (unsigned int confct = confTarget; confct < GetMaxConfirms(); confct++)
extraNum += unconfTxs[(nBlockHeight - confct)%bins][bucket];
extraNum += oldUnconfTxs[bucket];
// If we have enough transaction data points in this range of buckets,
// we can test for success
// (Only count the confirmed data points, so that each confirmation count
// will be looking at the same amount of data and same bucket breaks)
if (totalNum >= sufficientTxVal / (1 - decay)) {
double curPct = nConf / (totalNum + failNum + extraNum);
// Check to see if we are no longer getting confirmed at the success rate
if ((requireGreater && curPct < successBreakPoint) || (!requireGreater && curPct > successBreakPoint)) {
if (passing == true) {
// First time we hit a failure record the failed bucket
unsigned int failMinBucket = std::min(curNearBucket, curFarBucket);
unsigned int failMaxBucket = std::max(curNearBucket, curFarBucket);
failBucket.start = failMinBucket ? buckets[failMinBucket - 1] : 0;
failBucket.end = buckets[failMaxBucket];
failBucket.withinTarget = nConf;
failBucket.totalConfirmed = totalNum;
failBucket.inMempool = extraNum;
failBucket.leftMempool = failNum;
passing = false;
}
continue;
}
// Otherwise update the cumulative stats, and the bucket variables
// and reset the counters
else {
failBucket = EstimatorBucket(); // Reset any failed bucket, currently passing
foundAnswer = true;
passing = true;
passBucket.withinTarget = nConf;
nConf = 0;
passBucket.totalConfirmed = totalNum;
totalNum = 0;
passBucket.inMempool = extraNum;
passBucket.leftMempool = failNum;
failNum = 0;
extraNum = 0;
bestNearBucket = curNearBucket;
bestFarBucket = curFarBucket;
newBucketRange = true;
}
}
}
double median = -1;
double txSum = 0;
// Calculate the "average" feerate of the best bucket range that met success conditions
// Find the bucket with the median transaction and then report the average feerate from that bucket
// This is a compromise between finding the median which we can't since we don't save all tx's
// and reporting the average which is less accurate
unsigned int minBucket = std::min(bestNearBucket, bestFarBucket);
unsigned int maxBucket = std::max(bestNearBucket, bestFarBucket);
for (unsigned int j = minBucket; j <= maxBucket; j++) {
txSum += txCtAvg[j];
}
if (foundAnswer && txSum != 0) {
txSum = txSum / 2;
for (unsigned int j = minBucket; j <= maxBucket; j++) {
if (txCtAvg[j] < txSum)
txSum -= txCtAvg[j];
else { // we're in the right bucket
median = avg[j] / txCtAvg[j];
break;
}
}
passBucket.start = minBucket ? buckets[minBucket-1] : 0;
passBucket.end = buckets[maxBucket];
}
// If we were passing until we reached last few buckets with insufficient data, then report those as failed
if (passing && !newBucketRange) {
unsigned int failMinBucket = std::min(curNearBucket, curFarBucket);
unsigned int failMaxBucket = std::max(curNearBucket, curFarBucket);
failBucket.start = failMinBucket ? buckets[failMinBucket - 1] : 0;
failBucket.end = buckets[failMaxBucket];
failBucket.withinTarget = nConf;
failBucket.totalConfirmed = totalNum;
failBucket.inMempool = extraNum;
failBucket.leftMempool = failNum;
}
LogPrint(BCLog::ESTIMATEFEE, "FeeEst: %d %s%.0f%% decay %.5f: feerate: %g from (%g - %g) %.2f%% %.1f/(%.1f %d mem %.1f out) Fail: (%g - %g) %.2f%% %.1f/(%.1f %d mem %.1f out)\n",
confTarget, requireGreater ? ">" : "<", 100.0 * successBreakPoint, decay,
median, passBucket.start, passBucket.end,
100 * passBucket.withinTarget / (passBucket.totalConfirmed + passBucket.inMempool + passBucket.leftMempool),
passBucket.withinTarget, passBucket.totalConfirmed, passBucket.inMempool, passBucket.leftMempool,
failBucket.start, failBucket.end,
100 * failBucket.withinTarget / (failBucket.totalConfirmed + failBucket.inMempool + failBucket.leftMempool),
failBucket.withinTarget, failBucket.totalConfirmed, failBucket.inMempool, failBucket.leftMempool);
if (result) {
result->pass = passBucket;
result->fail = failBucket;
result->decay = decay;
result->scale = scale;
}
return median;
}
void TxConfirmStats::Write(CAutoFile& fileout) const
{
fileout << decay;
fileout << scale;
fileout << avg;
fileout << txCtAvg;
fileout << confAvg;
fileout << failAvg;
}
void TxConfirmStats::Read(CAutoFile& filein, int nFileVersion, size_t numBuckets)
{
// Read data file and do some very basic sanity checking
// buckets and bucketMap are not updated yet, so don't access them
// If there is a read failure, we'll just discard this entire object anyway
size_t maxConfirms, maxPeriods;
// The current version will store the decay with each individual TxConfirmStats and also keep a scale factor
filein >> decay;
if (decay <= 0 || decay >= 1) {
throw std::runtime_error("Corrupt estimates file. Decay must be between 0 and 1 (non-inclusive)");
}
filein >> scale;
if (scale == 0) {
throw std::runtime_error("Corrupt estimates file. Scale must be non-zero");
}
filein >> avg;
if (avg.size() != numBuckets) {
throw std::runtime_error("Corrupt estimates file. Mismatch in feerate average bucket count");
}
filein >> txCtAvg;
if (txCtAvg.size() != numBuckets) {
throw std::runtime_error("Corrupt estimates file. Mismatch in tx count bucket count");
}
filein >> confAvg;
maxPeriods = confAvg.size();
maxConfirms = scale * maxPeriods;
if (maxConfirms <= 0 || maxConfirms > 6 * 24 * 7) { // one week
throw std::runtime_error("Corrupt estimates file. Must maintain estimates for between 1 and 1008 (one week) confirms");
}
for (unsigned int i = 0; i < maxPeriods; i++) {
if (confAvg[i].size() != numBuckets) {
throw std::runtime_error("Corrupt estimates file. Mismatch in feerate conf average bucket count");
}
}
filein >> failAvg;
if (maxPeriods != failAvg.size()) {
throw std::runtime_error("Corrupt estimates file. Mismatch in confirms tracked for failures");
}
for (unsigned int i = 0; i < maxPeriods; i++) {
if (failAvg[i].size() != numBuckets) {
throw std::runtime_error("Corrupt estimates file. Mismatch in one of failure average bucket counts");
}
}
// Resize the current block variables which aren't stored in the data file
// to match the number of confirms and buckets
resizeInMemoryCounters(numBuckets);
LogPrint(BCLog::ESTIMATEFEE, "Reading estimates: %u buckets counting confirms up to %u blocks\n",
numBuckets, maxConfirms);
}
unsigned int TxConfirmStats::NewTx(unsigned int nBlockHeight, double val)
{
unsigned int bucketindex = bucketMap.lower_bound(val)->second;
unsigned int blockIndex = nBlockHeight % unconfTxs.size();
unconfTxs[blockIndex][bucketindex]++;
return bucketindex;
}
void TxConfirmStats::removeTx(unsigned int entryHeight, unsigned int nBestSeenHeight, unsigned int bucketindex, bool inBlock)
{
//nBestSeenHeight is not updated yet for the new block
int blocksAgo = nBestSeenHeight - entryHeight;
if (nBestSeenHeight == 0) // the BlockPolicyEstimator hasn't seen any blocks yet
blocksAgo = 0;
if (blocksAgo < 0) {
LogPrint(BCLog::ESTIMATEFEE, "Blockpolicy error, blocks ago is negative for mempool tx\n");
return; //This can't happen because we call this with our best seen height, no entries can have higher
}
if (blocksAgo >= (int)unconfTxs.size()) {
if (oldUnconfTxs[bucketindex] > 0) {
oldUnconfTxs[bucketindex]--;
} else {
LogPrint(BCLog::ESTIMATEFEE, "Blockpolicy error, mempool tx removed from >25 blocks,bucketIndex=%u already\n",
bucketindex);
}
}
else {
unsigned int blockIndex = entryHeight % unconfTxs.size();
if (unconfTxs[blockIndex][bucketindex] > 0) {
unconfTxs[blockIndex][bucketindex]--;
} else {
LogPrint(BCLog::ESTIMATEFEE, "Blockpolicy error, mempool tx removed from blockIndex=%u,bucketIndex=%u already\n",
blockIndex, bucketindex);
}
}
if (!inBlock && (unsigned int)blocksAgo >= scale) { // Only counts as a failure if not confirmed for entire period
assert(scale != 0);
unsigned int periodsAgo = blocksAgo / scale;
for (size_t i = 0; i < periodsAgo && i < failAvg.size(); i++) {
failAvg[i][bucketindex]++;
}
}
}
// This function is called from CTxMemPool::removeUnchecked to ensure
// txs removed from the mempool for any reason are no longer
// tracked. Txs that were part of a block have already been removed in
// processBlockTx to ensure they are never double tracked, but it is
// of no harm to try to remove them again.
bool CBlockPolicyEstimator::removeTx(uint256 hash, bool inBlock)
{
LOCK(cs_feeEstimator);
std::map<uint256, TxStatsInfo>::iterator pos = mapMemPoolTxs.find(hash);
if (pos != mapMemPoolTxs.end()) {
feeStats->removeTx(pos->second.blockHeight, nBestSeenHeight, pos->second.bucketIndex, inBlock);
shortStats->removeTx(pos->second.blockHeight, nBestSeenHeight, pos->second.bucketIndex, inBlock);
longStats->removeTx(pos->second.blockHeight, nBestSeenHeight, pos->second.bucketIndex, inBlock);
mapMemPoolTxs.erase(hash);
return true;
} else {
return false;
}
}
CBlockPolicyEstimator::CBlockPolicyEstimator()
: nBestSeenHeight(0), firstRecordedHeight(0), historicalFirst(0), historicalBest(0), trackedTxs(0), untrackedTxs(0)
{
static_assert(MIN_BUCKET_FEERATE > 0, "Min feerate must be nonzero");
size_t bucketIndex = 0;
for (double bucketBoundary = MIN_BUCKET_FEERATE; bucketBoundary <= MAX_BUCKET_FEERATE; bucketBoundary *= FEE_SPACING, bucketIndex++) {
buckets.push_back(bucketBoundary);
bucketMap[bucketBoundary] = bucketIndex;
}
buckets.push_back(INF_FEERATE);
bucketMap[INF_FEERATE] = bucketIndex;
assert(bucketMap.size() == buckets.size());
feeStats = std::unique_ptr<TxConfirmStats>(new TxConfirmStats(buckets, bucketMap, MED_BLOCK_PERIODS, MED_DECAY, MED_SCALE));
shortStats = std::unique_ptr<TxConfirmStats>(new TxConfirmStats(buckets, bucketMap, SHORT_BLOCK_PERIODS, SHORT_DECAY, SHORT_SCALE));
longStats = std::unique_ptr<TxConfirmStats>(new TxConfirmStats(buckets, bucketMap, LONG_BLOCK_PERIODS, LONG_DECAY, LONG_SCALE));
}
CBlockPolicyEstimator::~CBlockPolicyEstimator()
{
}
void CBlockPolicyEstimator::processTransaction(const CTxMemPoolEntry& entry, bool validFeeEstimate)
{
LOCK(cs_feeEstimator);
unsigned int txHeight = entry.GetHeight();
uint256 hash = entry.GetTx().GetHash();
if (mapMemPoolTxs.count(hash)) {
LogPrint(BCLog::ESTIMATEFEE, "Blockpolicy error mempool tx %s already being tracked\n",
hash.ToString().c_str());
return;
}
if (txHeight != nBestSeenHeight) {
// Ignore side chains and re-orgs; assuming they are random they don't
// affect the estimate. We'll potentially double count transactions in 1-block reorgs.
// Ignore txs if BlockPolicyEstimator is not in sync with chainActive.Tip().
// It will be synced next time a block is processed.
return;
}
// Only want to be updating estimates when our blockchain is synced,
// otherwise we'll miscalculate how many blocks its taking to get included.
if (!validFeeEstimate) {
untrackedTxs++;
return;
}
trackedTxs++;
// Feerates are stored and reported as POC-per-kb:
CFeeRate feeRate(entry.GetFee(), entry.GetTxSize());
mapMemPoolTxs[hash].blockHeight = txHeight;
unsigned int bucketIndex = feeStats->NewTx(txHeight, (double)feeRate.GetFeePerK());
mapMemPoolTxs[hash].bucketIndex = bucketIndex;
unsigned int bucketIndex2 = shortStats->NewTx(txHeight, (double)feeRate.GetFeePerK());
assert(bucketIndex == bucketIndex2);
unsigned int bucketIndex3 = longStats->NewTx(txHeight, (double)feeRate.GetFeePerK());
assert(bucketIndex == bucketIndex3);
}
bool CBlockPolicyEstimator::processBlockTx(unsigned int nBlockHeight, const CTxMemPoolEntry* entry)
{
if (!removeTx(entry->GetTx().GetHash(), true)) {
// This transaction wasn't being tracked for fee estimation
return false;
}
// How many blocks did it take for miners to include this transaction?
// blocksToConfirm is 1-based, so a transaction included in the earliest
// possible block has confirmation count of 1
int blocksToConfirm = nBlockHeight - entry->GetHeight();
if (blocksToConfirm <= 0) {
// This can't happen because we don't process transactions from a block with a height
// lower than our greatest seen height
LogPrint(BCLog::ESTIMATEFEE, "Blockpolicy error Transaction had negative blocksToConfirm\n");
return false;
}
// Feerates are stored and reported as POC-per-kb:
CFeeRate feeRate(entry->GetFee(), entry->GetTxSize());
feeStats->Record(blocksToConfirm, (double)feeRate.GetFeePerK());
shortStats->Record(blocksToConfirm, (double)feeRate.GetFeePerK());
longStats->Record(blocksToConfirm, (double)feeRate.GetFeePerK());
return true;
}
void CBlockPolicyEstimator::processBlock(unsigned int nBlockHeight,
std::vector<const CTxMemPoolEntry*>& entries)
{
LOCK(cs_feeEstimator);
if (nBlockHeight <= nBestSeenHeight) {
// Ignore side chains and re-orgs; assuming they are random
// they don't affect the estimate.
// And if an attacker can re-org the chain at will, then
// you've got much bigger problems than "attacker can influence
// transaction fees."
return;
}
// Must update nBestSeenHeight in sync with ClearCurrent so that
// calls to removeTx (via processBlockTx) correctly calculate age
// of unconfirmed txs to remove from tracking.
nBestSeenHeight = nBlockHeight;
// Update unconfirmed circular buffer
feeStats->ClearCurrent(nBlockHeight);
shortStats->ClearCurrent(nBlockHeight);
longStats->ClearCurrent(nBlockHeight);
// Decay all exponential averages
feeStats->UpdateMovingAverages();
shortStats->UpdateMovingAverages();
longStats->UpdateMovingAverages();
unsigned int countedTxs = 0;
// Update averages with data points from current block
for (const auto& entry : entries) {
if (processBlockTx(nBlockHeight, entry))
countedTxs++;
}
if (firstRecordedHeight == 0 && countedTxs > 0) {
firstRecordedHeight = nBestSeenHeight;
LogPrint(BCLog::ESTIMATEFEE, "Blockpolicy first recorded height %u\n", firstRecordedHeight);
}
LogPrint(BCLog::ESTIMATEFEE, "Blockpolicy estimates updated by %u of %u block txs, since last block %u of %u tracked, mempool map size %u, max target %u from %s\n",
countedTxs, entries.size(), trackedTxs, trackedTxs + untrackedTxs, mapMemPoolTxs.size(),
MaxUsableEstimate(), HistoricalBlockSpan() > BlockSpan() ? "historical" : "current");
trackedTxs = 0;
untrackedTxs = 0;
}
CFeeRate CBlockPolicyEstimator::estimateFee(int confTarget) const
{
// It's not possible to get reasonable estimates for confTarget of 1
if (confTarget <= 1)
return CFeeRate(0);
return estimateRawFee(confTarget, DOUBLE_SUCCESS_PCT, FeeEstimateHorizon::MED_HALFLIFE);
}
CFeeRate CBlockPolicyEstimator::estimateRawFee(int confTarget, double successThreshold, FeeEstimateHorizon horizon, EstimationResult* result) const
{
TxConfirmStats* stats;
double sufficientTxs = SUFFICIENT_FEETXS;
switch (horizon) {
case FeeEstimateHorizon::SHORT_HALFLIFE: {
stats = shortStats.get();
sufficientTxs = SUFFICIENT_TXS_SHORT;
break;
}
case FeeEstimateHorizon::MED_HALFLIFE: {
stats = feeStats.get();
break;
}
case FeeEstimateHorizon::LONG_HALFLIFE: {
stats = longStats.get();
break;
}
default: {
throw std::out_of_range("CBlockPolicyEstimator::estimateRawFee unknown FeeEstimateHorizon");
}
}
LOCK(cs_feeEstimator);
// Return failure if trying to analyze a target we're not tracking
if (confTarget <= 0 || (unsigned int)confTarget > stats->GetMaxConfirms())
return CFeeRate(0);
if (successThreshold > 1)
return CFeeRate(0);
double median = stats->EstimateMedianVal(confTarget, sufficientTxs, successThreshold, true, nBestSeenHeight, result);
if (median < 0)
return CFeeRate(0);
return CFeeRate(llround(median));
}
unsigned int CBlockPolicyEstimator::HighestTargetTracked(FeeEstimateHorizon horizon) const
{
switch (horizon) {
case FeeEstimateHorizon::SHORT_HALFLIFE: {
return shortStats->GetMaxConfirms();
}
case FeeEstimateHorizon::MED_HALFLIFE: {
return feeStats->GetMaxConfirms();
}
case FeeEstimateHorizon::LONG_HALFLIFE: {
return longStats->GetMaxConfirms();
}
default: {
throw std::out_of_range("CBlockPolicyEstimator::HighestTargetTracked unknown FeeEstimateHorizon");
}
}
}
unsigned int CBlockPolicyEstimator::BlockSpan() const
{
if (firstRecordedHeight == 0) return 0;
assert(nBestSeenHeight >= firstRecordedHeight);
return nBestSeenHeight - firstRecordedHeight;
}
unsigned int CBlockPolicyEstimator::HistoricalBlockSpan() const
{
if (historicalFirst == 0) return 0;
assert(historicalBest >= historicalFirst);
if (nBestSeenHeight - historicalBest > OLDEST_ESTIMATE_HISTORY) return 0;
return historicalBest - historicalFirst;
}
unsigned int CBlockPolicyEstimator::MaxUsableEstimate() const
{
// Block spans are divided by 2 to make sure there are enough potential failing data points for the estimate
return std::min(longStats->GetMaxConfirms(), std::max(BlockSpan(), HistoricalBlockSpan()) / 2);
}
/** Return a fee estimate at the required successThreshold from the shortest
* time horizon which tracks confirmations up to the desired target. If
* checkShorterHorizon is requested, also allow short time horizon estimates
* for a lower target to reduce the given answer */
double CBlockPolicyEstimator::estimateCombinedFee(unsigned int confTarget, double successThreshold, bool checkShorterHorizon, EstimationResult *result) const
{
double estimate = -1;
if (confTarget >= 1 && confTarget <= longStats->GetMaxConfirms()) {
// Find estimate from shortest time horizon possible
if (confTarget <= shortStats->GetMaxConfirms()) { // short horizon
estimate = shortStats->EstimateMedianVal(confTarget, SUFFICIENT_TXS_SHORT, successThreshold, true, nBestSeenHeight, result);
}
else if (confTarget <= feeStats->GetMaxConfirms()) { // medium horizon
estimate = feeStats->EstimateMedianVal(confTarget, SUFFICIENT_FEETXS, successThreshold, true, nBestSeenHeight, result);
}
else { // long horizon
estimate = longStats->EstimateMedianVal(confTarget, SUFFICIENT_FEETXS, successThreshold, true, nBestSeenHeight, result);
}
if (checkShorterHorizon) {
EstimationResult tempResult;
// If a lower confTarget from a more recent horizon returns a lower answer use it.
if (confTarget > feeStats->GetMaxConfirms()) {
double medMax = feeStats->EstimateMedianVal(feeStats->GetMaxConfirms(), SUFFICIENT_FEETXS, successThreshold, true, nBestSeenHeight, &tempResult);
if (medMax > 0 && (estimate == -1 || medMax < estimate)) {
estimate = medMax;
if (result) *result = tempResult;
}
}
if (confTarget > shortStats->GetMaxConfirms()) {
double shortMax = shortStats->EstimateMedianVal(shortStats->GetMaxConfirms(), SUFFICIENT_TXS_SHORT, successThreshold, true, nBestSeenHeight, &tempResult);
if (shortMax > 0 && (estimate == -1 || shortMax < estimate)) {
estimate = shortMax;
if (result) *result = tempResult;
}
}
}
}
return estimate;
}
/** Ensure that for a conservative estimate, the DOUBLE_SUCCESS_PCT is also met
* at 2 * target for any longer time horizons.
*/
double CBlockPolicyEstimator::estimateConservativeFee(unsigned int doubleTarget, EstimationResult *result) const
{
double estimate = -1;
EstimationResult tempResult;
if (doubleTarget <= shortStats->GetMaxConfirms()) {
estimate = feeStats->EstimateMedianVal(doubleTarget, SUFFICIENT_FEETXS, DOUBLE_SUCCESS_PCT, true, nBestSeenHeight, result);
}
if (doubleTarget <= feeStats->GetMaxConfirms()) {
double longEstimate = longStats->EstimateMedianVal(doubleTarget, SUFFICIENT_FEETXS, DOUBLE_SUCCESS_PCT, true, nBestSeenHeight, &tempResult);
if (longEstimate > estimate) {
estimate = longEstimate;
if (result) *result = tempResult;
}
}
return estimate;
}
/** estimateSmartFee returns the max of the feerates calculated with a 60%
* threshold required at target / 2, an 85% threshold required at target and a
* 95% threshold required at 2 * target. Each calculation is performed at the
* shortest time horizon which tracks the required target. Conservative
* estimates, however, required the 95% threshold at 2 * target be met for any
* longer time horizons also.
*/
CFeeRate CBlockPolicyEstimator::estimateSmartFee(int confTarget, FeeCalculation *feeCalc, bool conservative) const
{
LOCK(cs_feeEstimator);
if (feeCalc) {
feeCalc->desiredTarget = confTarget;
feeCalc->returnedTarget = confTarget;
}
double median = -1;
EstimationResult tempResult;
// Return failure if trying to analyze a target we're not tracking
if (confTarget <= 0 || (unsigned int)confTarget > longStats->GetMaxConfirms()) {
return CFeeRate(0); // error condition
}
// It's not possible to get reasonable estimates for confTarget of 1
if (confTarget == 1) confTarget = 2;
unsigned int maxUsableEstimate = MaxUsableEstimate();
printf("%u\n", maxUsableEstimate);
if ((unsigned int)confTarget > maxUsableEstimate) {
confTarget = maxUsableEstimate;
}
if (feeCalc) feeCalc->returnedTarget = confTarget;
if (confTarget <= 1) {
return CFeeRate(0); // error condition
}
assert(confTarget > 0); //estimateCombinedFee and estimateConservativeFee take unsigned ints
/** true is passed to estimateCombined fee for target/2 and target so
* that we check the max confirms for shorter time horizons as well.
* This is necessary to preserve monotonically increasing estimates.
* For non-conservative estimates we do the same thing for 2*target, but
* for conservative estimates we want to skip these shorter horizons
* checks for 2*target because we are taking the max over all time
* horizons so we already have monotonically increasing estimates and
* the purpose of conservative estimates is not to let short term
* fluctuations lower our estimates by too much.
*/
double halfEst = estimateCombinedFee(confTarget/2, HALF_SUCCESS_PCT, true, &tempResult);
if (feeCalc) {
feeCalc->est = tempResult;
feeCalc->reason = FeeReason::HALF_ESTIMATE;
}
median = halfEst;
double actualEst = estimateCombinedFee(confTarget, SUCCESS_PCT, true, &tempResult);
if (actualEst > median) {
median = actualEst;
if (feeCalc) {
feeCalc->est = tempResult;
feeCalc->reason = FeeReason::FULL_ESTIMATE;
}
}
double doubleEst = estimateCombinedFee(2 * confTarget, DOUBLE_SUCCESS_PCT, !conservative, &tempResult);
if (doubleEst > median) {
median = doubleEst;
if (feeCalc) {
feeCalc->est = tempResult;
feeCalc->reason = FeeReason::DOUBLE_ESTIMATE;
}
}
if (conservative || median == -1) {
double consEst = estimateConservativeFee(2 * confTarget, &tempResult);
if (consEst > median) {
median = consEst;
if (feeCalc) {
feeCalc->est = tempResult;
feeCalc->reason = FeeReason::CONSERVATIVE;
}
}
}
if (median < 0) return CFeeRate(0); // error condition
return CFeeRate(llround(median));
}
bool CBlockPolicyEstimator::Write(CAutoFile& fileout) const
{
try {
LOCK(cs_feeEstimator);
fileout << 149900; // version required to read: 0.14.99 or later
fileout << CLIENT_VERSION; // version that wrote the file
fileout << nBestSeenHeight;
if (BlockSpan() > HistoricalBlockSpan()/2) {
fileout << firstRecordedHeight << nBestSeenHeight;
}
else {
fileout << historicalFirst << historicalBest;
}
fileout << buckets;
feeStats->Write(fileout);
shortStats->Write(fileout);
longStats->Write(fileout);
}
catch (const std::exception&) {
LogPrintf("CBlockPolicyEstimator::Write(): unable to write policy estimator data (non-fatal)\n");
return false;
}
return true;
}
bool CBlockPolicyEstimator::Read(CAutoFile& filein)
{
try {
LOCK(cs_feeEstimator);
int nVersionRequired, nVersionThatWrote;
filein >> nVersionRequired >> nVersionThatWrote;
if (nVersionRequired > CLIENT_VERSION)
return error("CBlockPolicyEstimator::Read(): up-version (%d) fee estimate file", nVersionRequired);
// Read fee estimates file into temporary variables so existing data
// structures aren't corrupted if there is an exception.
unsigned int nFileBestSeenHeight;
filein >> nFileBestSeenHeight;
if (nVersionRequired < 149900) {
LogPrintf("%s: incompatible old fee estimation data (non-fatal). Version: %d\n", __func__, nVersionRequired);
} else { // New format introduced in 149900
unsigned int nFileHistoricalFirst, nFileHistoricalBest;
filein >> nFileHistoricalFirst >> nFileHistoricalBest;
if (nFileHistoricalFirst > nFileHistoricalBest || nFileHistoricalBest > nFileBestSeenHeight) {
throw std::runtime_error("Corrupt estimates file. Historical block range for estimates is invalid");
}
std::vector<double> fileBuckets;
filein >> fileBuckets;
size_t numBuckets = fileBuckets.size();
if (numBuckets <= 1 || numBuckets > 1000)
throw std::runtime_error("Corrupt estimates file. Must have between 2 and 1000 feerate buckets");
std::unique_ptr<TxConfirmStats> fileFeeStats(new TxConfirmStats(buckets, bucketMap, MED_BLOCK_PERIODS, MED_DECAY, MED_SCALE));
std::unique_ptr<TxConfirmStats> fileShortStats(new TxConfirmStats(buckets, bucketMap, SHORT_BLOCK_PERIODS, SHORT_DECAY, SHORT_SCALE));
std::unique_ptr<TxConfirmStats> fileLongStats(new TxConfirmStats(buckets, bucketMap, LONG_BLOCK_PERIODS, LONG_DECAY, LONG_SCALE));
fileFeeStats->Read(filein, nVersionThatWrote, numBuckets);
fileShortStats->Read(filein, nVersionThatWrote, numBuckets);
fileLongStats->Read(filein, nVersionThatWrote, numBuckets);
// Fee estimates file parsed correctly
// Copy buckets from file and refresh our bucketmap
buckets = fileBuckets;
bucketMap.clear();
for (unsigned int i = 0; i < buckets.size(); i++) {
bucketMap[buckets[i]] = i;
}
// Destroy old TxConfirmStats and point to new ones that already reference buckets and bucketMap
feeStats = std::move(fileFeeStats);
shortStats = std::move(fileShortStats);
longStats = std::move(fileLongStats);
nBestSeenHeight = nFileBestSeenHeight;
historicalFirst = nFileHistoricalFirst;
historicalBest = nFileHistoricalBest;
}
}
catch (const std::exception& e) {
LogPrintf("CBlockPolicyEstimator::Read(): unable to read policy estimator data (non-fatal): %s\n",e.what());
return false;
}
return true;
}
void CBlockPolicyEstimator::FlushUnconfirmed() {
int64_t startclear = GetTimeMicros();
LOCK(cs_feeEstimator);
size_t num_entries = mapMemPoolTxs.size();
// Remove every entry in mapMemPoolTxs
while (!mapMemPoolTxs.empty()) {
auto mi = mapMemPoolTxs.begin();
removeTx(mi->first, false); // this calls erase() on mapMemPoolTxs
}
int64_t endclear = GetTimeMicros();
LogPrint(BCLog::ESTIMATEFEE, "Recorded %u unconfirmed txs from mempool in %gs\n", num_entries, (endclear - startclear)*0.000001);
}
FeeFilterRounder::FeeFilterRounder(const CFeeRate& minIncrementalFee)
{
CAmount minFeeLimit = std::max(CAmount(1), minIncrementalFee.GetFeePerK() / 2);
feeset.insert(0);
for (double bucketBoundary = minFeeLimit; bucketBoundary <= MAX_FILTER_FEERATE; bucketBoundary *= FEE_FILTER_SPACING) {
feeset.insert(bucketBoundary);
}
}
CAmount FeeFilterRounder::round(CAmount currentMinFee)
{
std::set<double>::iterator it = feeset.lower_bound(currentMinFee);
if ((it != feeset.begin() && insecure_rand.rand32() % 3 != 0) || it == feeset.end()) {
it--;
}
return static_cast<CAmount>(*it);
}
| [
"[email protected]"
] | |
eadef3081ab5493e8ef003b393f31c18144c60e3 | bc84c328d1cc2a318160d42ed1faa1961bdf1e87 | /C++/base_2/callback_1.cpp | 389dfd7ecc5358711f7c919a2241f4b577881512 | [
"MIT"
] | permissive | liangjisheng/C-Cpp | 25d07580b5dd1ff364087c3cf8e13cebdc9280a5 | 8b33ba1f43580a7bdded8bb4ce3d92983ccedb81 | refs/heads/master | 2021-07-10T14:40:20.006051 | 2019-01-26T09:24:04 | 2019-01-26T09:24:04 | 136,299,205 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,346 | cpp |
// 分层设计就是将软件分层具有某种上下级关系的模块,由于每一层都是相对独立的
// 因此只要定义好层与层之间的接口,从而每层都可以单独实现。
// 上层可以直接调用下层提供的函数,但下层不能直接调用上层提供的函数,且层与层
// 之间绝对不能循环调用,因为层与层之间的循环依赖会严重妨碍软件的复用性和可扩展
// 性,是的系统中的每一层都无法独立构成一个可复用的组件。上层只能调用相邻下层
// 提供的函数,不能跨层调用。即下层模块实现了在上层模块中声明并被高层模块调用
// 的接口,这就是著名的好莱坞扩展原则:不要调用我,让我调用你。当下层需要传递
// 数据给上层时,则采用回调函数指针接口隔离变化
// 由上层模块(即调用者)提供的回调函数的表现形式就是在下层模块中通过函数指针调用
// 另一个函数,即将回调函数的地址作为实参初始化下层模块的形参,由下层模块在某个
// 时刻调用这个函数,这个函数就是回调函数
#include <stdio.h>
#include <string.h>
#include "bubbleSort.h"
int compare_int(const void * e1, const void * e2)
{ return *(int*)e1 - *(int*)e2; }
int compare_int_r(const void * e1, const void * e2)
{ return *(int*)e2 - *(int*)e1; }
// 因为bubbleSort传递的类型是char**的数组元素的地址&array[i],而不是类型为char*的array[i]
int compare_str(const void * e1, const void * e2)
{ return strcmp(*(char**)e1, *(char**)e2); }
int main()
{
int arrayInt[] = {39, 33, 18, 64, 73, 30, 49, 51, 81};
int numArray = sizeof(arrayInt) / sizeof(arrayInt[0]);
bubbleSort(arrayInt, numArray, sizeof(arrayInt[0]), compare_int);
for(int i = 0; i < numArray; i++)
printf("%d ", arrayInt[i]);
printf("\n");
bubbleSort(arrayInt, numArray, sizeof(arrayInt[0]), compare_int_r);
for(int i = 0; i < numArray; i++)
printf("%d ", arrayInt[i]);
printf("\n");
char * arrayStr[] = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };
numArray = sizeof(arrayStr) / sizeof(arrayStr[0]);
bubbleSort(arrayStr, numArray, sizeof(arrayStr[0]), compare_str);
for(int i = 0; i < numArray; i++)
printf("%s\n", arrayStr[i]);
// printf("\n");
getchar();
return 0;
} | [
"[email protected]"
] | |
77fbafa22f24f5cc5c2ec1172574f42e7015c5c4 | 3804d61af078b64e706480585a1870060d9e606c | /section19/reading_file_1/src/main.cpp | 9948d903d636e6a907181779b6f547a5242290a9 | [] | no_license | YnPagani/Learning-Cpp | 334b2b0c8c34dc198642a749a0cfb0f04fc86616 | 19e56a2a235eaffaa4bcf8abf77cad9a7d604d49 | refs/heads/master | 2022-10-06T05:21:57.588075 | 2020-06-08T16:07:18 | 2020-06-08T16:07:18 | 262,172,277 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 939 | cpp | #include <iostream>
#include <fstream>
#include <string>
#include <iomanip>
int main(){
std::ifstream in_file;
std::string line{};
int num{};
double total{};
/* for this path to work with debug and build, in launch.json, "cwd" must be "${workspaceFolder}/src/",
othewise it will only work with build */
in_file.open("test.txt");
if(!in_file){
std::cerr << "Problem opening file" << std::endl;
return 1;
}
// Reading data from test.txt and formatting the output
while(!in_file.eof()){ // eof() return true if it is in the end of the file
in_file >> line >> num >> total;
std::cout << std::setw(10) << std::left << line
<< std::setw(10) << num
<< std::setw(10) << total
<< std::endl;
}
in_file.close();
std::cout << std::endl;
return 0;
}
| [
"[email protected]"
] | |
56d9bd2cc78fec6ffb938ff89c141538b2015806 | 45305ba1f9b3e2eee23c903f7c919d74076ed1f0 | /ejercicios1/Correo.cpp | 162593386a98e52ce00726b0c37e815dc419e998 | [] | no_license | rscortessa/Programaci-n | 0b8861968b11681096f58e7cefe9d3ca6dd010c6 | 8fa388156c090b33a1000a5af170ffece0a3efa7 | refs/heads/master | 2021-01-25T12:43:56.705647 | 2018-03-23T13:54:33 | 2018-03-23T13:54:33 | 123,503,257 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 315 | cpp | #include <iostream>
#include <string>
using namespace std;
int main ()
{
string Correo, Nombre;
cout<<"Ingresa tu correo electrónico seguido de tu nombre.\n"<< endl;
cin >> Correo >> Nombre;
cout<< "Tu correo electrónico es"<<" "<< Correo <<" "<< Nombre<< endl;
return 0;
}
| [
"[email protected]"
] | |
898603b6fcd553777278a98b4fba65145514e605 | f9b061a23dc61639461b03dcc490fe1cad4fffb7 | /include/logger.h | 91533dce319e0078865ed6989a4f2fbb5ae9918a | [
"MIT"
] | permissive | mrlhansen/YaHMC | 791a7285cd77fc9c80431e94454110b850c70915 | 73608c26eb096c1fac5213437be2975c0eb7d89b | refs/heads/master | 2021-09-11T04:05:08.431595 | 2021-09-03T11:55:42 | 2021-09-03T11:55:42 | 160,241,337 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 284 | h | #ifndef LOGGER_H
#define LOGGER_H
#include <string>
using namespace std;
#define CRITICAL 0
#define WARNING 10
#define INFO 20
#define NOTICE 30
#define DEBUG 40
void lprintf(const char*, int, const char*, ...);
void logger_init(string, int);
void logger_exit();
#endif
| [
"[email protected]"
] | |
67205b50276365da863dbf032a88e7c94dd833f0 | fa4460953d4949acddb7cbd6bcf17f0c5f9d79a3 | /Temp/StagingArea/Data/il2cppOutput/Bulk_UnityEngine.Physics2DModule_0.cpp | 34fb416c90f01d85815a10c73e17a4c1cb8be601 | [] | no_license | naomirror/keysmash | 3e3f72f9110676871ca5ec71b98a4b6d35691868 | 46d42b136ad361b3d138a38d4c2638fbb745e689 | refs/heads/master | 2020-04-25T03:22:41.069065 | 2019-02-25T09:42:59 | 2019-02-25T09:42:59 | 172,474,540 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 104,943 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t4286651560;
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>
struct List_1_t2411569343;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t257213610;
// UnityEngine.Collider2D
struct Collider2D_t2806799626;
// UnityEngine.Object
struct Object_t631007953;
// UnityEngine.Rigidbody2D[]
struct Rigidbody2DU5BU5D_t385786356;
// System.String
struct String_t;
// System.Void
struct Void_t1185182177;
// UnityEngine.ContactPoint2D[]
struct ContactPoint2DU5BU5D_t96683501;
extern RuntimeClass* Mathf_t3464937446_il2cpp_TypeInfo_var;
extern const uint32_t ContactFilter2D_CheckConsistency_m222060761_MetadataUsageId;
extern RuntimeClass* Physics2D_t1528932956_il2cpp_TypeInfo_var;
extern const uint32_t ContactFilter2D_CreateLegacyFilter_m1873816896_MetadataUsageId;
extern const uint32_t Physics2D_Raycast_m1728056151_MetadataUsageId;
extern const uint32_t Physics2D_Raycast_m2858866636_MetadataUsageId;
extern const uint32_t Physics2D_Raycast_m2082490717_MetadataUsageId;
extern const uint32_t Physics2D_Raycast_m2341153778_MetadataUsageId;
extern const uint32_t Physics2D_Raycast_m1407159225_MetadataUsageId;
extern const uint32_t Physics2D_Raycast_m1377762210_MetadataUsageId;
extern const uint32_t Physics2D_Raycast_m1700114981_MetadataUsageId;
extern const uint32_t Physics2D_Internal_Raycast_m1768014582_MetadataUsageId;
extern const uint32_t Physics2D_Internal_RaycastNonAlloc_m3815006984_MetadataUsageId;
extern const uint32_t Physics2D_GetRayIntersectionAll_m2567878449_MetadataUsageId;
extern const uint32_t Physics2D_GetRayIntersectionAll_m1670084419_MetadataUsageId;
extern const uint32_t Physics2D_GetRayIntersectionAll_m1507505063_MetadataUsageId;
extern RuntimeClass* List_1_t2411569343_il2cpp_TypeInfo_var;
extern const RuntimeMethod* List_1__ctor_m2466177744_RuntimeMethod_var;
extern const uint32_t Physics2D__cctor_m143866755_MetadataUsageId;
extern RuntimeClass* Object_t631007953_il2cpp_TypeInfo_var;
extern const uint32_t RaycastHit2D_op_Implicit_m653385179_MetadataUsageId;
struct ContactPoint2D_t3390240644 ;
struct ContactPoint2DU5BU5D_t96683501;
struct RaycastHit2DU5BU5D_t4286651560;
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
#ifndef U3CMODULEU3E_T692745535_H
#define U3CMODULEU3E_T692745535_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_t692745535
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CMODULEU3E_T692745535_H
#ifndef PHYSICS2D_T1528932956_H
#define PHYSICS2D_T1528932956_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Physics2D
struct Physics2D_t1528932956 : public RuntimeObject
{
public:
public:
};
struct Physics2D_t1528932956_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D> UnityEngine.Physics2D::m_LastDisabledRigidbody2D
List_1_t2411569343 * ___m_LastDisabledRigidbody2D_0;
public:
inline static int32_t get_offset_of_m_LastDisabledRigidbody2D_0() { return static_cast<int32_t>(offsetof(Physics2D_t1528932956_StaticFields, ___m_LastDisabledRigidbody2D_0)); }
inline List_1_t2411569343 * get_m_LastDisabledRigidbody2D_0() const { return ___m_LastDisabledRigidbody2D_0; }
inline List_1_t2411569343 ** get_address_of_m_LastDisabledRigidbody2D_0() { return &___m_LastDisabledRigidbody2D_0; }
inline void set_m_LastDisabledRigidbody2D_0(List_1_t2411569343 * value)
{
___m_LastDisabledRigidbody2D_0 = value;
Il2CppCodeGenWriteBarrier((&___m_LastDisabledRigidbody2D_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PHYSICS2D_T1528932956_H
#ifndef LIST_1_T2411569343_H
#define LIST_1_T2411569343_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>
struct List_1_t2411569343 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Rigidbody2DU5BU5D_t385786356* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2411569343, ____items_1)); }
inline Rigidbody2DU5BU5D_t385786356* get__items_1() const { return ____items_1; }
inline Rigidbody2DU5BU5D_t385786356** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Rigidbody2DU5BU5D_t385786356* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2411569343, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2411569343, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
};
struct List_1_t2411569343_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::EmptyArray
Rigidbody2DU5BU5D_t385786356* ___EmptyArray_4;
public:
inline static int32_t get_offset_of_EmptyArray_4() { return static_cast<int32_t>(offsetof(List_1_t2411569343_StaticFields, ___EmptyArray_4)); }
inline Rigidbody2DU5BU5D_t385786356* get_EmptyArray_4() const { return ___EmptyArray_4; }
inline Rigidbody2DU5BU5D_t385786356** get_address_of_EmptyArray_4() { return &___EmptyArray_4; }
inline void set_EmptyArray_4(Rigidbody2DU5BU5D_t385786356* value)
{
___EmptyArray_4 = value;
Il2CppCodeGenWriteBarrier((&___EmptyArray_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T2411569343_H
#ifndef VALUETYPE_T3640485471_H
#define VALUETYPE_T3640485471_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t3640485471 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_com
{
};
#endif // VALUETYPE_T3640485471_H
struct Il2CppArrayBounds;
#ifndef RUNTIMEARRAY_H
#define RUNTIMEARRAY_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Array
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEARRAY_H
#ifndef INT32_T2950945753_H
#define INT32_T2950945753_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32
struct Int32_t2950945753
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_2;
public:
inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_2)); }
inline int32_t get_m_value_2() const { return ___m_value_2; }
inline int32_t* get_address_of_m_value_2() { return &___m_value_2; }
inline void set_m_value_2(int32_t value)
{
___m_value_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32_T2950945753_H
#ifndef BOOLEAN_T97287965_H
#define BOOLEAN_T97287965_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean
struct Boolean_t97287965
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_2;
public:
inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_2)); }
inline bool get_m_value_2() const { return ___m_value_2; }
inline bool* get_address_of_m_value_2() { return &___m_value_2; }
inline void set_m_value_2(bool value)
{
___m_value_2 = value;
}
};
struct Boolean_t97287965_StaticFields
{
public:
// System.String System.Boolean::FalseString
String_t* ___FalseString_0;
// System.String System.Boolean::TrueString
String_t* ___TrueString_1;
public:
inline static int32_t get_offset_of_FalseString_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_0)); }
inline String_t* get_FalseString_0() const { return ___FalseString_0; }
inline String_t** get_address_of_FalseString_0() { return &___FalseString_0; }
inline void set_FalseString_0(String_t* value)
{
___FalseString_0 = value;
Il2CppCodeGenWriteBarrier((&___FalseString_0), value);
}
inline static int32_t get_offset_of_TrueString_1() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_1)); }
inline String_t* get_TrueString_1() const { return ___TrueString_1; }
inline String_t** get_address_of_TrueString_1() { return &___TrueString_1; }
inline void set_TrueString_1(String_t* value)
{
___TrueString_1 = value;
Il2CppCodeGenWriteBarrier((&___TrueString_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BOOLEAN_T97287965_H
#ifndef INTPTR_T_H
#define INTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTPTR_T_H
#ifndef VECTOR3_T3722313464_H
#define VECTOR3_T3722313464_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector3
struct Vector3_t3722313464
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_1;
// System.Single UnityEngine.Vector3::y
float ___y_2;
// System.Single UnityEngine.Vector3::z
float ___z_3;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___x_1)); }
inline float get_x_1() const { return ___x_1; }
inline float* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(float value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___y_2)); }
inline float get_y_2() const { return ___y_2; }
inline float* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(float value)
{
___y_2 = value;
}
inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___z_3)); }
inline float get_z_3() const { return ___z_3; }
inline float* get_address_of_z_3() { return &___z_3; }
inline void set_z_3(float value)
{
___z_3 = value;
}
};
struct Vector3_t3722313464_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_t3722313464 ___zeroVector_4;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_t3722313464 ___oneVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_t3722313464 ___upVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_t3722313464 ___downVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_t3722313464 ___leftVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_t3722313464 ___rightVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_t3722313464 ___forwardVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_t3722313464 ___backVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_t3722313464 ___positiveInfinityVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_t3722313464 ___negativeInfinityVector_13;
public:
inline static int32_t get_offset_of_zeroVector_4() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___zeroVector_4)); }
inline Vector3_t3722313464 get_zeroVector_4() const { return ___zeroVector_4; }
inline Vector3_t3722313464 * get_address_of_zeroVector_4() { return &___zeroVector_4; }
inline void set_zeroVector_4(Vector3_t3722313464 value)
{
___zeroVector_4 = value;
}
inline static int32_t get_offset_of_oneVector_5() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___oneVector_5)); }
inline Vector3_t3722313464 get_oneVector_5() const { return ___oneVector_5; }
inline Vector3_t3722313464 * get_address_of_oneVector_5() { return &___oneVector_5; }
inline void set_oneVector_5(Vector3_t3722313464 value)
{
___oneVector_5 = value;
}
inline static int32_t get_offset_of_upVector_6() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___upVector_6)); }
inline Vector3_t3722313464 get_upVector_6() const { return ___upVector_6; }
inline Vector3_t3722313464 * get_address_of_upVector_6() { return &___upVector_6; }
inline void set_upVector_6(Vector3_t3722313464 value)
{
___upVector_6 = value;
}
inline static int32_t get_offset_of_downVector_7() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___downVector_7)); }
inline Vector3_t3722313464 get_downVector_7() const { return ___downVector_7; }
inline Vector3_t3722313464 * get_address_of_downVector_7() { return &___downVector_7; }
inline void set_downVector_7(Vector3_t3722313464 value)
{
___downVector_7 = value;
}
inline static int32_t get_offset_of_leftVector_8() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___leftVector_8)); }
inline Vector3_t3722313464 get_leftVector_8() const { return ___leftVector_8; }
inline Vector3_t3722313464 * get_address_of_leftVector_8() { return &___leftVector_8; }
inline void set_leftVector_8(Vector3_t3722313464 value)
{
___leftVector_8 = value;
}
inline static int32_t get_offset_of_rightVector_9() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___rightVector_9)); }
inline Vector3_t3722313464 get_rightVector_9() const { return ___rightVector_9; }
inline Vector3_t3722313464 * get_address_of_rightVector_9() { return &___rightVector_9; }
inline void set_rightVector_9(Vector3_t3722313464 value)
{
___rightVector_9 = value;
}
inline static int32_t get_offset_of_forwardVector_10() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___forwardVector_10)); }
inline Vector3_t3722313464 get_forwardVector_10() const { return ___forwardVector_10; }
inline Vector3_t3722313464 * get_address_of_forwardVector_10() { return &___forwardVector_10; }
inline void set_forwardVector_10(Vector3_t3722313464 value)
{
___forwardVector_10 = value;
}
inline static int32_t get_offset_of_backVector_11() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___backVector_11)); }
inline Vector3_t3722313464 get_backVector_11() const { return ___backVector_11; }
inline Vector3_t3722313464 * get_address_of_backVector_11() { return &___backVector_11; }
inline void set_backVector_11(Vector3_t3722313464 value)
{
___backVector_11 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_12() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___positiveInfinityVector_12)); }
inline Vector3_t3722313464 get_positiveInfinityVector_12() const { return ___positiveInfinityVector_12; }
inline Vector3_t3722313464 * get_address_of_positiveInfinityVector_12() { return &___positiveInfinityVector_12; }
inline void set_positiveInfinityVector_12(Vector3_t3722313464 value)
{
___positiveInfinityVector_12 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___negativeInfinityVector_13)); }
inline Vector3_t3722313464 get_negativeInfinityVector_13() const { return ___negativeInfinityVector_13; }
inline Vector3_t3722313464 * get_address_of_negativeInfinityVector_13() { return &___negativeInfinityVector_13; }
inline void set_negativeInfinityVector_13(Vector3_t3722313464 value)
{
___negativeInfinityVector_13 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR3_T3722313464_H
#ifndef LAYERMASK_T3493934918_H
#define LAYERMASK_T3493934918_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.LayerMask
struct LayerMask_t3493934918
{
public:
// System.Int32 UnityEngine.LayerMask::m_Mask
int32_t ___m_Mask_0;
public:
inline static int32_t get_offset_of_m_Mask_0() { return static_cast<int32_t>(offsetof(LayerMask_t3493934918, ___m_Mask_0)); }
inline int32_t get_m_Mask_0() const { return ___m_Mask_0; }
inline int32_t* get_address_of_m_Mask_0() { return &___m_Mask_0; }
inline void set_m_Mask_0(int32_t value)
{
___m_Mask_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LAYERMASK_T3493934918_H
#ifndef VECTOR2_T2156229523_H
#define VECTOR2_T2156229523_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector2
struct Vector2_t2156229523
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_t2156229523_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_t2156229523 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_t2156229523 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_t2156229523 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_t2156229523 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_t2156229523 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_t2156229523 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_t2156229523 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_t2156229523 ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___zeroVector_2)); }
inline Vector2_t2156229523 get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_t2156229523 * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_t2156229523 value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___oneVector_3)); }
inline Vector2_t2156229523 get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_t2156229523 * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_t2156229523 value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___upVector_4)); }
inline Vector2_t2156229523 get_upVector_4() const { return ___upVector_4; }
inline Vector2_t2156229523 * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_t2156229523 value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___downVector_5)); }
inline Vector2_t2156229523 get_downVector_5() const { return ___downVector_5; }
inline Vector2_t2156229523 * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_t2156229523 value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___leftVector_6)); }
inline Vector2_t2156229523 get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_t2156229523 * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_t2156229523 value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___rightVector_7)); }
inline Vector2_t2156229523 get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_t2156229523 * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_t2156229523 value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_t2156229523 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_t2156229523 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_t2156229523 value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_t2156229523 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_t2156229523 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_t2156229523 value)
{
___negativeInfinityVector_9 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR2_T2156229523_H
#ifndef SINGLE_T1397266774_H
#define SINGLE_T1397266774_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single
struct Single_t1397266774
{
public:
// System.Single System.Single::m_value
float ___m_value_7;
public:
inline static int32_t get_offset_of_m_value_7() { return static_cast<int32_t>(offsetof(Single_t1397266774, ___m_value_7)); }
inline float get_m_value_7() const { return ___m_value_7; }
inline float* get_address_of_m_value_7() { return &___m_value_7; }
inline void set_m_value_7(float value)
{
___m_value_7 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SINGLE_T1397266774_H
#ifndef VOID_T1185182177_H
#define VOID_T1185182177_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void
struct Void_t1185182177
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOID_T1185182177_H
#ifndef COLLISION2D_T2842956331_H
#define COLLISION2D_T2842956331_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Collision2D
struct Collision2D_t2842956331 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.Collision2D::m_Collider
int32_t ___m_Collider_0;
// System.Int32 UnityEngine.Collision2D::m_OtherCollider
int32_t ___m_OtherCollider_1;
// System.Int32 UnityEngine.Collision2D::m_Rigidbody
int32_t ___m_Rigidbody_2;
// System.Int32 UnityEngine.Collision2D::m_OtherRigidbody
int32_t ___m_OtherRigidbody_3;
// UnityEngine.ContactPoint2D[] UnityEngine.Collision2D::m_Contacts
ContactPoint2DU5BU5D_t96683501* ___m_Contacts_4;
// UnityEngine.Vector2 UnityEngine.Collision2D::m_RelativeVelocity
Vector2_t2156229523 ___m_RelativeVelocity_5;
// System.Int32 UnityEngine.Collision2D::m_Enabled
int32_t ___m_Enabled_6;
public:
inline static int32_t get_offset_of_m_Collider_0() { return static_cast<int32_t>(offsetof(Collision2D_t2842956331, ___m_Collider_0)); }
inline int32_t get_m_Collider_0() const { return ___m_Collider_0; }
inline int32_t* get_address_of_m_Collider_0() { return &___m_Collider_0; }
inline void set_m_Collider_0(int32_t value)
{
___m_Collider_0 = value;
}
inline static int32_t get_offset_of_m_OtherCollider_1() { return static_cast<int32_t>(offsetof(Collision2D_t2842956331, ___m_OtherCollider_1)); }
inline int32_t get_m_OtherCollider_1() const { return ___m_OtherCollider_1; }
inline int32_t* get_address_of_m_OtherCollider_1() { return &___m_OtherCollider_1; }
inline void set_m_OtherCollider_1(int32_t value)
{
___m_OtherCollider_1 = value;
}
inline static int32_t get_offset_of_m_Rigidbody_2() { return static_cast<int32_t>(offsetof(Collision2D_t2842956331, ___m_Rigidbody_2)); }
inline int32_t get_m_Rigidbody_2() const { return ___m_Rigidbody_2; }
inline int32_t* get_address_of_m_Rigidbody_2() { return &___m_Rigidbody_2; }
inline void set_m_Rigidbody_2(int32_t value)
{
___m_Rigidbody_2 = value;
}
inline static int32_t get_offset_of_m_OtherRigidbody_3() { return static_cast<int32_t>(offsetof(Collision2D_t2842956331, ___m_OtherRigidbody_3)); }
inline int32_t get_m_OtherRigidbody_3() const { return ___m_OtherRigidbody_3; }
inline int32_t* get_address_of_m_OtherRigidbody_3() { return &___m_OtherRigidbody_3; }
inline void set_m_OtherRigidbody_3(int32_t value)
{
___m_OtherRigidbody_3 = value;
}
inline static int32_t get_offset_of_m_Contacts_4() { return static_cast<int32_t>(offsetof(Collision2D_t2842956331, ___m_Contacts_4)); }
inline ContactPoint2DU5BU5D_t96683501* get_m_Contacts_4() const { return ___m_Contacts_4; }
inline ContactPoint2DU5BU5D_t96683501** get_address_of_m_Contacts_4() { return &___m_Contacts_4; }
inline void set_m_Contacts_4(ContactPoint2DU5BU5D_t96683501* value)
{
___m_Contacts_4 = value;
Il2CppCodeGenWriteBarrier((&___m_Contacts_4), value);
}
inline static int32_t get_offset_of_m_RelativeVelocity_5() { return static_cast<int32_t>(offsetof(Collision2D_t2842956331, ___m_RelativeVelocity_5)); }
inline Vector2_t2156229523 get_m_RelativeVelocity_5() const { return ___m_RelativeVelocity_5; }
inline Vector2_t2156229523 * get_address_of_m_RelativeVelocity_5() { return &___m_RelativeVelocity_5; }
inline void set_m_RelativeVelocity_5(Vector2_t2156229523 value)
{
___m_RelativeVelocity_5 = value;
}
inline static int32_t get_offset_of_m_Enabled_6() { return static_cast<int32_t>(offsetof(Collision2D_t2842956331, ___m_Enabled_6)); }
inline int32_t get_m_Enabled_6() const { return ___m_Enabled_6; }
inline int32_t* get_address_of_m_Enabled_6() { return &___m_Enabled_6; }
inline void set_m_Enabled_6(int32_t value)
{
___m_Enabled_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.Collision2D
struct Collision2D_t2842956331_marshaled_pinvoke
{
int32_t ___m_Collider_0;
int32_t ___m_OtherCollider_1;
int32_t ___m_Rigidbody_2;
int32_t ___m_OtherRigidbody_3;
ContactPoint2D_t3390240644 * ___m_Contacts_4;
Vector2_t2156229523 ___m_RelativeVelocity_5;
int32_t ___m_Enabled_6;
};
// Native definition for COM marshalling of UnityEngine.Collision2D
struct Collision2D_t2842956331_marshaled_com
{
int32_t ___m_Collider_0;
int32_t ___m_OtherCollider_1;
int32_t ___m_Rigidbody_2;
int32_t ___m_OtherRigidbody_3;
ContactPoint2D_t3390240644 * ___m_Contacts_4;
Vector2_t2156229523 ___m_RelativeVelocity_5;
int32_t ___m_Enabled_6;
};
#endif // COLLISION2D_T2842956331_H
#ifndef CONTACTPOINT2D_T3390240644_H
#define CONTACTPOINT2D_T3390240644_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.ContactPoint2D
struct ContactPoint2D_t3390240644
{
public:
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Point
Vector2_t2156229523 ___m_Point_0;
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Normal
Vector2_t2156229523 ___m_Normal_1;
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_RelativeVelocity
Vector2_t2156229523 ___m_RelativeVelocity_2;
// System.Single UnityEngine.ContactPoint2D::m_Separation
float ___m_Separation_3;
// System.Single UnityEngine.ContactPoint2D::m_NormalImpulse
float ___m_NormalImpulse_4;
// System.Single UnityEngine.ContactPoint2D::m_TangentImpulse
float ___m_TangentImpulse_5;
// System.Int32 UnityEngine.ContactPoint2D::m_Collider
int32_t ___m_Collider_6;
// System.Int32 UnityEngine.ContactPoint2D::m_OtherCollider
int32_t ___m_OtherCollider_7;
// System.Int32 UnityEngine.ContactPoint2D::m_Rigidbody
int32_t ___m_Rigidbody_8;
// System.Int32 UnityEngine.ContactPoint2D::m_OtherRigidbody
int32_t ___m_OtherRigidbody_9;
// System.Int32 UnityEngine.ContactPoint2D::m_Enabled
int32_t ___m_Enabled_10;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint2D_t3390240644, ___m_Point_0)); }
inline Vector2_t2156229523 get_m_Point_0() const { return ___m_Point_0; }
inline Vector2_t2156229523 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector2_t2156229523 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint2D_t3390240644, ___m_Normal_1)); }
inline Vector2_t2156229523 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector2_t2156229523 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector2_t2156229523 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_RelativeVelocity_2() { return static_cast<int32_t>(offsetof(ContactPoint2D_t3390240644, ___m_RelativeVelocity_2)); }
inline Vector2_t2156229523 get_m_RelativeVelocity_2() const { return ___m_RelativeVelocity_2; }
inline Vector2_t2156229523 * get_address_of_m_RelativeVelocity_2() { return &___m_RelativeVelocity_2; }
inline void set_m_RelativeVelocity_2(Vector2_t2156229523 value)
{
___m_RelativeVelocity_2 = value;
}
inline static int32_t get_offset_of_m_Separation_3() { return static_cast<int32_t>(offsetof(ContactPoint2D_t3390240644, ___m_Separation_3)); }
inline float get_m_Separation_3() const { return ___m_Separation_3; }
inline float* get_address_of_m_Separation_3() { return &___m_Separation_3; }
inline void set_m_Separation_3(float value)
{
___m_Separation_3 = value;
}
inline static int32_t get_offset_of_m_NormalImpulse_4() { return static_cast<int32_t>(offsetof(ContactPoint2D_t3390240644, ___m_NormalImpulse_4)); }
inline float get_m_NormalImpulse_4() const { return ___m_NormalImpulse_4; }
inline float* get_address_of_m_NormalImpulse_4() { return &___m_NormalImpulse_4; }
inline void set_m_NormalImpulse_4(float value)
{
___m_NormalImpulse_4 = value;
}
inline static int32_t get_offset_of_m_TangentImpulse_5() { return static_cast<int32_t>(offsetof(ContactPoint2D_t3390240644, ___m_TangentImpulse_5)); }
inline float get_m_TangentImpulse_5() const { return ___m_TangentImpulse_5; }
inline float* get_address_of_m_TangentImpulse_5() { return &___m_TangentImpulse_5; }
inline void set_m_TangentImpulse_5(float value)
{
___m_TangentImpulse_5 = value;
}
inline static int32_t get_offset_of_m_Collider_6() { return static_cast<int32_t>(offsetof(ContactPoint2D_t3390240644, ___m_Collider_6)); }
inline int32_t get_m_Collider_6() const { return ___m_Collider_6; }
inline int32_t* get_address_of_m_Collider_6() { return &___m_Collider_6; }
inline void set_m_Collider_6(int32_t value)
{
___m_Collider_6 = value;
}
inline static int32_t get_offset_of_m_OtherCollider_7() { return static_cast<int32_t>(offsetof(ContactPoint2D_t3390240644, ___m_OtherCollider_7)); }
inline int32_t get_m_OtherCollider_7() const { return ___m_OtherCollider_7; }
inline int32_t* get_address_of_m_OtherCollider_7() { return &___m_OtherCollider_7; }
inline void set_m_OtherCollider_7(int32_t value)
{
___m_OtherCollider_7 = value;
}
inline static int32_t get_offset_of_m_Rigidbody_8() { return static_cast<int32_t>(offsetof(ContactPoint2D_t3390240644, ___m_Rigidbody_8)); }
inline int32_t get_m_Rigidbody_8() const { return ___m_Rigidbody_8; }
inline int32_t* get_address_of_m_Rigidbody_8() { return &___m_Rigidbody_8; }
inline void set_m_Rigidbody_8(int32_t value)
{
___m_Rigidbody_8 = value;
}
inline static int32_t get_offset_of_m_OtherRigidbody_9() { return static_cast<int32_t>(offsetof(ContactPoint2D_t3390240644, ___m_OtherRigidbody_9)); }
inline int32_t get_m_OtherRigidbody_9() const { return ___m_OtherRigidbody_9; }
inline int32_t* get_address_of_m_OtherRigidbody_9() { return &___m_OtherRigidbody_9; }
inline void set_m_OtherRigidbody_9(int32_t value)
{
___m_OtherRigidbody_9 = value;
}
inline static int32_t get_offset_of_m_Enabled_10() { return static_cast<int32_t>(offsetof(ContactPoint2D_t3390240644, ___m_Enabled_10)); }
inline int32_t get_m_Enabled_10() const { return ___m_Enabled_10; }
inline int32_t* get_address_of_m_Enabled_10() { return &___m_Enabled_10; }
inline void set_m_Enabled_10(int32_t value)
{
___m_Enabled_10 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONTACTPOINT2D_T3390240644_H
#ifndef OBJECT_T631007953_H
#define OBJECT_T631007953_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Object
struct Object_t631007953 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_t631007953, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_t631007953_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_t631007953_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_t631007953_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_t631007953_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
#endif // OBJECT_T631007953_H
#ifndef RAYCASTHIT2D_T2279581989_H
#define RAYCASTHIT2D_T2279581989_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.RaycastHit2D
struct RaycastHit2D_t2279581989
{
public:
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid
Vector2_t2156229523 ___m_Centroid_0;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point
Vector2_t2156229523 ___m_Point_1;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal
Vector2_t2156229523 ___m_Normal_2;
// System.Single UnityEngine.RaycastHit2D::m_Distance
float ___m_Distance_3;
// System.Single UnityEngine.RaycastHit2D::m_Fraction
float ___m_Fraction_4;
// UnityEngine.Collider2D UnityEngine.RaycastHit2D::m_Collider
Collider2D_t2806799626 * ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Centroid_0() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Centroid_0)); }
inline Vector2_t2156229523 get_m_Centroid_0() const { return ___m_Centroid_0; }
inline Vector2_t2156229523 * get_address_of_m_Centroid_0() { return &___m_Centroid_0; }
inline void set_m_Centroid_0(Vector2_t2156229523 value)
{
___m_Centroid_0 = value;
}
inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Point_1)); }
inline Vector2_t2156229523 get_m_Point_1() const { return ___m_Point_1; }
inline Vector2_t2156229523 * get_address_of_m_Point_1() { return &___m_Point_1; }
inline void set_m_Point_1(Vector2_t2156229523 value)
{
___m_Point_1 = value;
}
inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Normal_2)); }
inline Vector2_t2156229523 get_m_Normal_2() const { return ___m_Normal_2; }
inline Vector2_t2156229523 * get_address_of_m_Normal_2() { return &___m_Normal_2; }
inline void set_m_Normal_2(Vector2_t2156229523 value)
{
___m_Normal_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_Fraction_4() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Fraction_4)); }
inline float get_m_Fraction_4() const { return ___m_Fraction_4; }
inline float* get_address_of_m_Fraction_4() { return &___m_Fraction_4; }
inline void set_m_Fraction_4(float value)
{
___m_Fraction_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Collider_5)); }
inline Collider2D_t2806799626 * get_m_Collider_5() const { return ___m_Collider_5; }
inline Collider2D_t2806799626 ** get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(Collider2D_t2806799626 * value)
{
___m_Collider_5 = value;
Il2CppCodeGenWriteBarrier((&___m_Collider_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.RaycastHit2D
struct RaycastHit2D_t2279581989_marshaled_pinvoke
{
Vector2_t2156229523 ___m_Centroid_0;
Vector2_t2156229523 ___m_Point_1;
Vector2_t2156229523 ___m_Normal_2;
float ___m_Distance_3;
float ___m_Fraction_4;
Collider2D_t2806799626 * ___m_Collider_5;
};
// Native definition for COM marshalling of UnityEngine.RaycastHit2D
struct RaycastHit2D_t2279581989_marshaled_com
{
Vector2_t2156229523 ___m_Centroid_0;
Vector2_t2156229523 ___m_Point_1;
Vector2_t2156229523 ___m_Normal_2;
float ___m_Distance_3;
float ___m_Fraction_4;
Collider2D_t2806799626 * ___m_Collider_5;
};
#endif // RAYCASTHIT2D_T2279581989_H
#ifndef CONTACTFILTER2D_T3805203441_H
#define CONTACTFILTER2D_T3805203441_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.ContactFilter2D
struct ContactFilter2D_t3805203441
{
public:
// System.Boolean UnityEngine.ContactFilter2D::useTriggers
bool ___useTriggers_0;
// System.Boolean UnityEngine.ContactFilter2D::useLayerMask
bool ___useLayerMask_1;
// System.Boolean UnityEngine.ContactFilter2D::useDepth
bool ___useDepth_2;
// System.Boolean UnityEngine.ContactFilter2D::useOutsideDepth
bool ___useOutsideDepth_3;
// System.Boolean UnityEngine.ContactFilter2D::useNormalAngle
bool ___useNormalAngle_4;
// System.Boolean UnityEngine.ContactFilter2D::useOutsideNormalAngle
bool ___useOutsideNormalAngle_5;
// UnityEngine.LayerMask UnityEngine.ContactFilter2D::layerMask
LayerMask_t3493934918 ___layerMask_6;
// System.Single UnityEngine.ContactFilter2D::minDepth
float ___minDepth_7;
// System.Single UnityEngine.ContactFilter2D::maxDepth
float ___maxDepth_8;
// System.Single UnityEngine.ContactFilter2D::minNormalAngle
float ___minNormalAngle_9;
// System.Single UnityEngine.ContactFilter2D::maxNormalAngle
float ___maxNormalAngle_10;
public:
inline static int32_t get_offset_of_useTriggers_0() { return static_cast<int32_t>(offsetof(ContactFilter2D_t3805203441, ___useTriggers_0)); }
inline bool get_useTriggers_0() const { return ___useTriggers_0; }
inline bool* get_address_of_useTriggers_0() { return &___useTriggers_0; }
inline void set_useTriggers_0(bool value)
{
___useTriggers_0 = value;
}
inline static int32_t get_offset_of_useLayerMask_1() { return static_cast<int32_t>(offsetof(ContactFilter2D_t3805203441, ___useLayerMask_1)); }
inline bool get_useLayerMask_1() const { return ___useLayerMask_1; }
inline bool* get_address_of_useLayerMask_1() { return &___useLayerMask_1; }
inline void set_useLayerMask_1(bool value)
{
___useLayerMask_1 = value;
}
inline static int32_t get_offset_of_useDepth_2() { return static_cast<int32_t>(offsetof(ContactFilter2D_t3805203441, ___useDepth_2)); }
inline bool get_useDepth_2() const { return ___useDepth_2; }
inline bool* get_address_of_useDepth_2() { return &___useDepth_2; }
inline void set_useDepth_2(bool value)
{
___useDepth_2 = value;
}
inline static int32_t get_offset_of_useOutsideDepth_3() { return static_cast<int32_t>(offsetof(ContactFilter2D_t3805203441, ___useOutsideDepth_3)); }
inline bool get_useOutsideDepth_3() const { return ___useOutsideDepth_3; }
inline bool* get_address_of_useOutsideDepth_3() { return &___useOutsideDepth_3; }
inline void set_useOutsideDepth_3(bool value)
{
___useOutsideDepth_3 = value;
}
inline static int32_t get_offset_of_useNormalAngle_4() { return static_cast<int32_t>(offsetof(ContactFilter2D_t3805203441, ___useNormalAngle_4)); }
inline bool get_useNormalAngle_4() const { return ___useNormalAngle_4; }
inline bool* get_address_of_useNormalAngle_4() { return &___useNormalAngle_4; }
inline void set_useNormalAngle_4(bool value)
{
___useNormalAngle_4 = value;
}
inline static int32_t get_offset_of_useOutsideNormalAngle_5() { return static_cast<int32_t>(offsetof(ContactFilter2D_t3805203441, ___useOutsideNormalAngle_5)); }
inline bool get_useOutsideNormalAngle_5() const { return ___useOutsideNormalAngle_5; }
inline bool* get_address_of_useOutsideNormalAngle_5() { return &___useOutsideNormalAngle_5; }
inline void set_useOutsideNormalAngle_5(bool value)
{
___useOutsideNormalAngle_5 = value;
}
inline static int32_t get_offset_of_layerMask_6() { return static_cast<int32_t>(offsetof(ContactFilter2D_t3805203441, ___layerMask_6)); }
inline LayerMask_t3493934918 get_layerMask_6() const { return ___layerMask_6; }
inline LayerMask_t3493934918 * get_address_of_layerMask_6() { return &___layerMask_6; }
inline void set_layerMask_6(LayerMask_t3493934918 value)
{
___layerMask_6 = value;
}
inline static int32_t get_offset_of_minDepth_7() { return static_cast<int32_t>(offsetof(ContactFilter2D_t3805203441, ___minDepth_7)); }
inline float get_minDepth_7() const { return ___minDepth_7; }
inline float* get_address_of_minDepth_7() { return &___minDepth_7; }
inline void set_minDepth_7(float value)
{
___minDepth_7 = value;
}
inline static int32_t get_offset_of_maxDepth_8() { return static_cast<int32_t>(offsetof(ContactFilter2D_t3805203441, ___maxDepth_8)); }
inline float get_maxDepth_8() const { return ___maxDepth_8; }
inline float* get_address_of_maxDepth_8() { return &___maxDepth_8; }
inline void set_maxDepth_8(float value)
{
___maxDepth_8 = value;
}
inline static int32_t get_offset_of_minNormalAngle_9() { return static_cast<int32_t>(offsetof(ContactFilter2D_t3805203441, ___minNormalAngle_9)); }
inline float get_minNormalAngle_9() const { return ___minNormalAngle_9; }
inline float* get_address_of_minNormalAngle_9() { return &___minNormalAngle_9; }
inline void set_minNormalAngle_9(float value)
{
___minNormalAngle_9 = value;
}
inline static int32_t get_offset_of_maxNormalAngle_10() { return static_cast<int32_t>(offsetof(ContactFilter2D_t3805203441, ___maxNormalAngle_10)); }
inline float get_maxNormalAngle_10() const { return ___maxNormalAngle_10; }
inline float* get_address_of_maxNormalAngle_10() { return &___maxNormalAngle_10; }
inline void set_maxNormalAngle_10(float value)
{
___maxNormalAngle_10 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.ContactFilter2D
struct ContactFilter2D_t3805203441_marshaled_pinvoke
{
int32_t ___useTriggers_0;
int32_t ___useLayerMask_1;
int32_t ___useDepth_2;
int32_t ___useOutsideDepth_3;
int32_t ___useNormalAngle_4;
int32_t ___useOutsideNormalAngle_5;
LayerMask_t3493934918 ___layerMask_6;
float ___minDepth_7;
float ___maxDepth_8;
float ___minNormalAngle_9;
float ___maxNormalAngle_10;
};
// Native definition for COM marshalling of UnityEngine.ContactFilter2D
struct ContactFilter2D_t3805203441_marshaled_com
{
int32_t ___useTriggers_0;
int32_t ___useLayerMask_1;
int32_t ___useDepth_2;
int32_t ___useOutsideDepth_3;
int32_t ___useNormalAngle_4;
int32_t ___useOutsideNormalAngle_5;
LayerMask_t3493934918 ___layerMask_6;
float ___minDepth_7;
float ___maxDepth_8;
float ___minNormalAngle_9;
float ___maxNormalAngle_10;
};
#endif // CONTACTFILTER2D_T3805203441_H
#ifndef RAY_T3785851493_H
#define RAY_T3785851493_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Ray
struct Ray_t3785851493
{
public:
// UnityEngine.Vector3 UnityEngine.Ray::m_Origin
Vector3_t3722313464 ___m_Origin_0;
// UnityEngine.Vector3 UnityEngine.Ray::m_Direction
Vector3_t3722313464 ___m_Direction_1;
public:
inline static int32_t get_offset_of_m_Origin_0() { return static_cast<int32_t>(offsetof(Ray_t3785851493, ___m_Origin_0)); }
inline Vector3_t3722313464 get_m_Origin_0() const { return ___m_Origin_0; }
inline Vector3_t3722313464 * get_address_of_m_Origin_0() { return &___m_Origin_0; }
inline void set_m_Origin_0(Vector3_t3722313464 value)
{
___m_Origin_0 = value;
}
inline static int32_t get_offset_of_m_Direction_1() { return static_cast<int32_t>(offsetof(Ray_t3785851493, ___m_Direction_1)); }
inline Vector3_t3722313464 get_m_Direction_1() const { return ___m_Direction_1; }
inline Vector3_t3722313464 * get_address_of_m_Direction_1() { return &___m_Direction_1; }
inline void set_m_Direction_1(Vector3_t3722313464 value)
{
___m_Direction_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RAY_T3785851493_H
#ifndef COMPONENT_T1923634451_H
#define COMPONENT_T1923634451_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Component
struct Component_t1923634451 : public Object_t631007953
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMPONENT_T1923634451_H
#ifndef RIGIDBODY2D_T939494601_H
#define RIGIDBODY2D_T939494601_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Rigidbody2D
struct Rigidbody2D_t939494601 : public Component_t1923634451
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RIGIDBODY2D_T939494601_H
#ifndef BEHAVIOUR_T1437897464_H
#define BEHAVIOUR_T1437897464_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Behaviour
struct Behaviour_t1437897464 : public Component_t1923634451
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BEHAVIOUR_T1437897464_H
#ifndef COLLIDER2D_T2806799626_H
#define COLLIDER2D_T2806799626_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Collider2D
struct Collider2D_t2806799626 : public Behaviour_t1437897464
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLLIDER2D_T2806799626_H
// UnityEngine.ContactPoint2D[]
struct ContactPoint2DU5BU5D_t96683501 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ContactPoint2D_t3390240644 m_Items[1];
public:
inline ContactPoint2D_t3390240644 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ContactPoint2D_t3390240644 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ContactPoint2D_t3390240644 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline ContactPoint2D_t3390240644 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ContactPoint2D_t3390240644 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ContactPoint2D_t3390240644 value)
{
m_Items[index] = value;
}
};
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t4286651560 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastHit2D_t2279581989 m_Items[1];
public:
inline RaycastHit2D_t2279581989 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastHit2D_t2279581989 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RaycastHit2D_t2279581989 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RaycastHit2D_t2279581989 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastHit2D_t2279581989 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHit2D_t2279581989 value)
{
m_Items[index] = value;
}
};
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
extern "C" void List_1__ctor_m2321703786_gshared (List_1_t257213610 * __this, const RuntimeMethod* method);
// System.Boolean System.Single::IsNaN(System.Single)
extern "C" bool Single_IsNaN_m4024467661 (RuntimeObject * __this /* static, unused */, float p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Single UnityEngine.Mathf::Clamp(System.Single,System.Single,System.Single)
extern "C" float Mathf_Clamp_m3350697880 (RuntimeObject * __this /* static, unused */, float p0, float p1, float p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void UnityEngine.ContactFilter2D::CheckConsistency()
extern "C" void ContactFilter2D_CheckConsistency_m222060761 (ContactFilter2D_t3805203441 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void UnityEngine.ContactFilter2D::SetLayerMask(UnityEngine.LayerMask)
extern "C" void ContactFilter2D_SetLayerMask_m3440334821 (ContactFilter2D_t3805203441 * __this, LayerMask_t3493934918 ___layerMask0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void UnityEngine.ContactFilter2D::SetDepth(System.Single,System.Single)
extern "C" void ContactFilter2D_SetDepth_m3691256496 (ContactFilter2D_t3805203441 * __this, float ___minDepth0, float ___maxDepth1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean UnityEngine.Physics2D::get_queriesHitTriggers()
extern "C" bool Physics2D_get_queriesHitTriggers_m1249674012 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// UnityEngine.LayerMask UnityEngine.LayerMask::op_Implicit(System.Int32)
extern "C" LayerMask_t3493934918 LayerMask_op_Implicit_m90232283 (RuntimeObject * __this /* static, unused */, int32_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// UnityEngine.RaycastHit2D UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)
extern "C" RaycastHit2D_t2279581989 Physics2D_Raycast_m1407159225 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 ___origin0, Vector2_t2156229523 ___direction1, float ___distance2, int32_t ___layerMask3, float ___minDepth4, float ___maxDepth5, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// UnityEngine.ContactFilter2D UnityEngine.ContactFilter2D::CreateLegacyFilter(System.Int32,System.Single,System.Single)
extern "C" ContactFilter2D_t3805203441 ContactFilter2D_CreateLegacyFilter_m1873816896 (RuntimeObject * __this /* static, unused */, int32_t ___layerMask0, float ___minDepth1, float ___maxDepth2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void UnityEngine.Physics2D::Internal_Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D&)
extern "C" void Physics2D_Internal_Raycast_m1768014582 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 ___origin0, Vector2_t2156229523 ___direction1, float ___distance2, ContactFilter2D_t3805203441 ___contactFilter3, RaycastHit2D_t2279581989 * ___raycastHit4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[],System.Single)
extern "C" int32_t Physics2D_Raycast_m1700114981 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 ___origin0, Vector2_t2156229523 ___direction1, ContactFilter2D_t3805203441 ___contactFilter2, RaycastHit2DU5BU5D_t4286651560* ___results3, float ___distance4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 UnityEngine.Physics2D::Internal_RaycastNonAlloc(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[])
extern "C" int32_t Physics2D_Internal_RaycastNonAlloc_m3815006984 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 ___origin0, Vector2_t2156229523 ___direction1, float ___distance2, ContactFilter2D_t3805203441 ___contactFilter3, RaycastHit2DU5BU5D_t4286651560* ___results4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void UnityEngine.Physics2D::INTERNAL_CALL_Internal_Raycast(UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,UnityEngine.RaycastHit2D&)
extern "C" void Physics2D_INTERNAL_CALL_Internal_Raycast_m3296033924 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 * ___origin0, Vector2_t2156229523 * ___direction1, float ___distance2, ContactFilter2D_t3805203441 * ___contactFilter3, RaycastHit2D_t2279581989 * ___raycastHit4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 UnityEngine.Physics2D::INTERNAL_CALL_Internal_RaycastNonAlloc(UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,UnityEngine.RaycastHit2D[])
extern "C" int32_t Physics2D_INTERNAL_CALL_Internal_RaycastNonAlloc_m688510606 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 * ___origin0, Vector2_t2156229523 * ___direction1, float ___distance2, ContactFilter2D_t3805203441 * ___contactFilter3, RaycastHit2DU5BU5D_t4286651560* ___results4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// UnityEngine.RaycastHit2D[] UnityEngine.Physics2D::INTERNAL_CALL_GetRayIntersectionAll(UnityEngine.Ray&,System.Single,System.Int32)
extern "C" RaycastHit2DU5BU5D_t4286651560* Physics2D_INTERNAL_CALL_GetRayIntersectionAll_m1016589977 (RuntimeObject * __this /* static, unused */, Ray_t3785851493 * ___ray0, float ___distance1, int32_t ___layerMask2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>::.ctor()
#define List_1__ctor_m2466177744(__this, method) (( void (*) (List_1_t2411569343 *, const RuntimeMethod*))List_1__ctor_m2321703786_gshared)(__this, method)
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_point()
extern "C" Vector2_t2156229523 RaycastHit2D_get_point_m1586138107 (RaycastHit2D_t2279581989 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_normal()
extern "C" Vector2_t2156229523 RaycastHit2D_get_normal_m772343376 (RaycastHit2D_t2279581989 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Single UnityEngine.RaycastHit2D::get_distance()
extern "C" float RaycastHit2D_get_distance_m382898860 (RaycastHit2D_t2279581989 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// UnityEngine.Collider2D UnityEngine.RaycastHit2D::get_collider()
extern "C" Collider2D_t2806799626 * RaycastHit2D_get_collider_m1549426026 (RaycastHit2D_t2279581989 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object)
extern "C" bool Object_op_Inequality_m4071470834 (RuntimeObject * __this /* static, unused */, Object_t631007953 * p0, Object_t631007953 * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.Collision2D
extern "C" void Collision2D_t2842956331_marshal_pinvoke(const Collision2D_t2842956331& unmarshaled, Collision2D_t2842956331_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Contacts_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Contacts' of type 'Collision2D'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Contacts_4Exception);
}
extern "C" void Collision2D_t2842956331_marshal_pinvoke_back(const Collision2D_t2842956331_marshaled_pinvoke& marshaled, Collision2D_t2842956331& unmarshaled)
{
Exception_t* ___m_Contacts_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Contacts' of type 'Collision2D'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Contacts_4Exception);
}
// Conversion method for clean up from marshalling of: UnityEngine.Collision2D
extern "C" void Collision2D_t2842956331_marshal_pinvoke_cleanup(Collision2D_t2842956331_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.Collision2D
extern "C" void Collision2D_t2842956331_marshal_com(const Collision2D_t2842956331& unmarshaled, Collision2D_t2842956331_marshaled_com& marshaled)
{
Exception_t* ___m_Contacts_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Contacts' of type 'Collision2D'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Contacts_4Exception);
}
extern "C" void Collision2D_t2842956331_marshal_com_back(const Collision2D_t2842956331_marshaled_com& marshaled, Collision2D_t2842956331& unmarshaled)
{
Exception_t* ___m_Contacts_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Contacts' of type 'Collision2D'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Contacts_4Exception);
}
// Conversion method for clean up from marshalling of: UnityEngine.Collision2D
extern "C" void Collision2D_t2842956331_marshal_com_cleanup(Collision2D_t2842956331_marshaled_com& marshaled)
{
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.ContactFilter2D
extern "C" void ContactFilter2D_t3805203441_marshal_pinvoke(const ContactFilter2D_t3805203441& unmarshaled, ContactFilter2D_t3805203441_marshaled_pinvoke& marshaled)
{
marshaled.___useTriggers_0 = static_cast<int32_t>(unmarshaled.get_useTriggers_0());
marshaled.___useLayerMask_1 = static_cast<int32_t>(unmarshaled.get_useLayerMask_1());
marshaled.___useDepth_2 = static_cast<int32_t>(unmarshaled.get_useDepth_2());
marshaled.___useOutsideDepth_3 = static_cast<int32_t>(unmarshaled.get_useOutsideDepth_3());
marshaled.___useNormalAngle_4 = static_cast<int32_t>(unmarshaled.get_useNormalAngle_4());
marshaled.___useOutsideNormalAngle_5 = static_cast<int32_t>(unmarshaled.get_useOutsideNormalAngle_5());
marshaled.___layerMask_6 = unmarshaled.get_layerMask_6();
marshaled.___minDepth_7 = unmarshaled.get_minDepth_7();
marshaled.___maxDepth_8 = unmarshaled.get_maxDepth_8();
marshaled.___minNormalAngle_9 = unmarshaled.get_minNormalAngle_9();
marshaled.___maxNormalAngle_10 = unmarshaled.get_maxNormalAngle_10();
}
extern "C" void ContactFilter2D_t3805203441_marshal_pinvoke_back(const ContactFilter2D_t3805203441_marshaled_pinvoke& marshaled, ContactFilter2D_t3805203441& unmarshaled)
{
bool unmarshaled_useTriggers_temp_0 = false;
unmarshaled_useTriggers_temp_0 = static_cast<bool>(marshaled.___useTriggers_0);
unmarshaled.set_useTriggers_0(unmarshaled_useTriggers_temp_0);
bool unmarshaled_useLayerMask_temp_1 = false;
unmarshaled_useLayerMask_temp_1 = static_cast<bool>(marshaled.___useLayerMask_1);
unmarshaled.set_useLayerMask_1(unmarshaled_useLayerMask_temp_1);
bool unmarshaled_useDepth_temp_2 = false;
unmarshaled_useDepth_temp_2 = static_cast<bool>(marshaled.___useDepth_2);
unmarshaled.set_useDepth_2(unmarshaled_useDepth_temp_2);
bool unmarshaled_useOutsideDepth_temp_3 = false;
unmarshaled_useOutsideDepth_temp_3 = static_cast<bool>(marshaled.___useOutsideDepth_3);
unmarshaled.set_useOutsideDepth_3(unmarshaled_useOutsideDepth_temp_3);
bool unmarshaled_useNormalAngle_temp_4 = false;
unmarshaled_useNormalAngle_temp_4 = static_cast<bool>(marshaled.___useNormalAngle_4);
unmarshaled.set_useNormalAngle_4(unmarshaled_useNormalAngle_temp_4);
bool unmarshaled_useOutsideNormalAngle_temp_5 = false;
unmarshaled_useOutsideNormalAngle_temp_5 = static_cast<bool>(marshaled.___useOutsideNormalAngle_5);
unmarshaled.set_useOutsideNormalAngle_5(unmarshaled_useOutsideNormalAngle_temp_5);
LayerMask_t3493934918 unmarshaled_layerMask_temp_6;
memset(&unmarshaled_layerMask_temp_6, 0, sizeof(unmarshaled_layerMask_temp_6));
unmarshaled_layerMask_temp_6 = marshaled.___layerMask_6;
unmarshaled.set_layerMask_6(unmarshaled_layerMask_temp_6);
float unmarshaled_minDepth_temp_7 = 0.0f;
unmarshaled_minDepth_temp_7 = marshaled.___minDepth_7;
unmarshaled.set_minDepth_7(unmarshaled_minDepth_temp_7);
float unmarshaled_maxDepth_temp_8 = 0.0f;
unmarshaled_maxDepth_temp_8 = marshaled.___maxDepth_8;
unmarshaled.set_maxDepth_8(unmarshaled_maxDepth_temp_8);
float unmarshaled_minNormalAngle_temp_9 = 0.0f;
unmarshaled_minNormalAngle_temp_9 = marshaled.___minNormalAngle_9;
unmarshaled.set_minNormalAngle_9(unmarshaled_minNormalAngle_temp_9);
float unmarshaled_maxNormalAngle_temp_10 = 0.0f;
unmarshaled_maxNormalAngle_temp_10 = marshaled.___maxNormalAngle_10;
unmarshaled.set_maxNormalAngle_10(unmarshaled_maxNormalAngle_temp_10);
}
// Conversion method for clean up from marshalling of: UnityEngine.ContactFilter2D
extern "C" void ContactFilter2D_t3805203441_marshal_pinvoke_cleanup(ContactFilter2D_t3805203441_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.ContactFilter2D
extern "C" void ContactFilter2D_t3805203441_marshal_com(const ContactFilter2D_t3805203441& unmarshaled, ContactFilter2D_t3805203441_marshaled_com& marshaled)
{
marshaled.___useTriggers_0 = static_cast<int32_t>(unmarshaled.get_useTriggers_0());
marshaled.___useLayerMask_1 = static_cast<int32_t>(unmarshaled.get_useLayerMask_1());
marshaled.___useDepth_2 = static_cast<int32_t>(unmarshaled.get_useDepth_2());
marshaled.___useOutsideDepth_3 = static_cast<int32_t>(unmarshaled.get_useOutsideDepth_3());
marshaled.___useNormalAngle_4 = static_cast<int32_t>(unmarshaled.get_useNormalAngle_4());
marshaled.___useOutsideNormalAngle_5 = static_cast<int32_t>(unmarshaled.get_useOutsideNormalAngle_5());
marshaled.___layerMask_6 = unmarshaled.get_layerMask_6();
marshaled.___minDepth_7 = unmarshaled.get_minDepth_7();
marshaled.___maxDepth_8 = unmarshaled.get_maxDepth_8();
marshaled.___minNormalAngle_9 = unmarshaled.get_minNormalAngle_9();
marshaled.___maxNormalAngle_10 = unmarshaled.get_maxNormalAngle_10();
}
extern "C" void ContactFilter2D_t3805203441_marshal_com_back(const ContactFilter2D_t3805203441_marshaled_com& marshaled, ContactFilter2D_t3805203441& unmarshaled)
{
bool unmarshaled_useTriggers_temp_0 = false;
unmarshaled_useTriggers_temp_0 = static_cast<bool>(marshaled.___useTriggers_0);
unmarshaled.set_useTriggers_0(unmarshaled_useTriggers_temp_0);
bool unmarshaled_useLayerMask_temp_1 = false;
unmarshaled_useLayerMask_temp_1 = static_cast<bool>(marshaled.___useLayerMask_1);
unmarshaled.set_useLayerMask_1(unmarshaled_useLayerMask_temp_1);
bool unmarshaled_useDepth_temp_2 = false;
unmarshaled_useDepth_temp_2 = static_cast<bool>(marshaled.___useDepth_2);
unmarshaled.set_useDepth_2(unmarshaled_useDepth_temp_2);
bool unmarshaled_useOutsideDepth_temp_3 = false;
unmarshaled_useOutsideDepth_temp_3 = static_cast<bool>(marshaled.___useOutsideDepth_3);
unmarshaled.set_useOutsideDepth_3(unmarshaled_useOutsideDepth_temp_3);
bool unmarshaled_useNormalAngle_temp_4 = false;
unmarshaled_useNormalAngle_temp_4 = static_cast<bool>(marshaled.___useNormalAngle_4);
unmarshaled.set_useNormalAngle_4(unmarshaled_useNormalAngle_temp_4);
bool unmarshaled_useOutsideNormalAngle_temp_5 = false;
unmarshaled_useOutsideNormalAngle_temp_5 = static_cast<bool>(marshaled.___useOutsideNormalAngle_5);
unmarshaled.set_useOutsideNormalAngle_5(unmarshaled_useOutsideNormalAngle_temp_5);
LayerMask_t3493934918 unmarshaled_layerMask_temp_6;
memset(&unmarshaled_layerMask_temp_6, 0, sizeof(unmarshaled_layerMask_temp_6));
unmarshaled_layerMask_temp_6 = marshaled.___layerMask_6;
unmarshaled.set_layerMask_6(unmarshaled_layerMask_temp_6);
float unmarshaled_minDepth_temp_7 = 0.0f;
unmarshaled_minDepth_temp_7 = marshaled.___minDepth_7;
unmarshaled.set_minDepth_7(unmarshaled_minDepth_temp_7);
float unmarshaled_maxDepth_temp_8 = 0.0f;
unmarshaled_maxDepth_temp_8 = marshaled.___maxDepth_8;
unmarshaled.set_maxDepth_8(unmarshaled_maxDepth_temp_8);
float unmarshaled_minNormalAngle_temp_9 = 0.0f;
unmarshaled_minNormalAngle_temp_9 = marshaled.___minNormalAngle_9;
unmarshaled.set_minNormalAngle_9(unmarshaled_minNormalAngle_temp_9);
float unmarshaled_maxNormalAngle_temp_10 = 0.0f;
unmarshaled_maxNormalAngle_temp_10 = marshaled.___maxNormalAngle_10;
unmarshaled.set_maxNormalAngle_10(unmarshaled_maxNormalAngle_temp_10);
}
// Conversion method for clean up from marshalling of: UnityEngine.ContactFilter2D
extern "C" void ContactFilter2D_t3805203441_marshal_com_cleanup(ContactFilter2D_t3805203441_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.ContactFilter2D::CheckConsistency()
extern "C" void ContactFilter2D_CheckConsistency_m222060761 (ContactFilter2D_t3805203441 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ContactFilter2D_CheckConsistency_m222060761_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
float V_1 = 0.0f;
ContactFilter2D_t3805203441 * G_B3_0 = NULL;
ContactFilter2D_t3805203441 * G_B1_0 = NULL;
ContactFilter2D_t3805203441 * G_B2_0 = NULL;
ContactFilter2D_t3805203441 * G_B4_0 = NULL;
float G_B5_0 = 0.0f;
ContactFilter2D_t3805203441 * G_B5_1 = NULL;
ContactFilter2D_t3805203441 * G_B8_0 = NULL;
ContactFilter2D_t3805203441 * G_B6_0 = NULL;
ContactFilter2D_t3805203441 * G_B7_0 = NULL;
ContactFilter2D_t3805203441 * G_B9_0 = NULL;
float G_B10_0 = 0.0f;
ContactFilter2D_t3805203441 * G_B10_1 = NULL;
ContactFilter2D_t3805203441 * G_B14_0 = NULL;
ContactFilter2D_t3805203441 * G_B13_0 = NULL;
float G_B15_0 = 0.0f;
ContactFilter2D_t3805203441 * G_B15_1 = NULL;
ContactFilter2D_t3805203441 * G_B17_0 = NULL;
ContactFilter2D_t3805203441 * G_B16_0 = NULL;
float G_B18_0 = 0.0f;
ContactFilter2D_t3805203441 * G_B18_1 = NULL;
{
float L_0 = __this->get_minDepth_7();
G_B1_0 = __this;
if ((((float)L_0) == ((float)(-std::numeric_limits<float>::infinity()))))
{
G_B3_0 = __this;
goto IL_0032;
}
}
{
float L_1 = __this->get_minDepth_7();
G_B2_0 = G_B1_0;
if ((((float)L_1) == ((float)(std::numeric_limits<float>::infinity()))))
{
G_B3_0 = G_B1_0;
goto IL_0032;
}
}
{
float L_2 = __this->get_minDepth_7();
bool L_3 = Single_IsNaN_m4024467661(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
G_B3_0 = G_B2_0;
if (!L_3)
{
G_B4_0 = G_B2_0;
goto IL_003c;
}
}
IL_0032:
{
G_B5_0 = (-std::numeric_limits<float>::max());
G_B5_1 = G_B3_0;
goto IL_0042;
}
IL_003c:
{
float L_4 = __this->get_minDepth_7();
G_B5_0 = L_4;
G_B5_1 = G_B4_0;
}
IL_0042:
{
G_B5_1->set_minDepth_7(G_B5_0);
float L_5 = __this->get_maxDepth_8();
G_B6_0 = __this;
if ((((float)L_5) == ((float)(-std::numeric_limits<float>::infinity()))))
{
G_B8_0 = __this;
goto IL_0078;
}
}
{
float L_6 = __this->get_maxDepth_8();
G_B7_0 = G_B6_0;
if ((((float)L_6) == ((float)(std::numeric_limits<float>::infinity()))))
{
G_B8_0 = G_B6_0;
goto IL_0078;
}
}
{
float L_7 = __this->get_maxDepth_8();
bool L_8 = Single_IsNaN_m4024467661(NULL /*static, unused*/, L_7, /*hidden argument*/NULL);
G_B8_0 = G_B7_0;
if (!L_8)
{
G_B9_0 = G_B7_0;
goto IL_0082;
}
}
IL_0078:
{
G_B10_0 = (std::numeric_limits<float>::max());
G_B10_1 = G_B8_0;
goto IL_0088;
}
IL_0082:
{
float L_9 = __this->get_maxDepth_8();
G_B10_0 = L_9;
G_B10_1 = G_B9_0;
}
IL_0088:
{
G_B10_1->set_maxDepth_8(G_B10_0);
float L_10 = __this->get_minDepth_7();
float L_11 = __this->get_maxDepth_8();
if ((!(((float)L_10) > ((float)L_11))))
{
goto IL_00ba;
}
}
{
float L_12 = __this->get_minDepth_7();
V_0 = L_12;
float L_13 = __this->get_maxDepth_8();
__this->set_minDepth_7(L_13);
float L_14 = V_0;
__this->set_maxDepth_8(L_14);
}
IL_00ba:
{
float L_15 = __this->get_minNormalAngle_9();
bool L_16 = Single_IsNaN_m4024467661(NULL /*static, unused*/, L_15, /*hidden argument*/NULL);
G_B13_0 = __this;
if (!L_16)
{
G_B14_0 = __this;
goto IL_00d5;
}
}
{
G_B15_0 = (0.0f);
G_B15_1 = G_B13_0;
goto IL_00ea;
}
IL_00d5:
{
float L_17 = __this->get_minNormalAngle_9();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
float L_18 = Mathf_Clamp_m3350697880(NULL /*static, unused*/, L_17, (0.0f), (359.9999f), /*hidden argument*/NULL);
G_B15_0 = L_18;
G_B15_1 = G_B14_0;
}
IL_00ea:
{
G_B15_1->set_minNormalAngle_9(G_B15_0);
float L_19 = __this->get_maxNormalAngle_10();
bool L_20 = Single_IsNaN_m4024467661(NULL /*static, unused*/, L_19, /*hidden argument*/NULL);
G_B16_0 = __this;
if (!L_20)
{
G_B17_0 = __this;
goto IL_010a;
}
}
{
G_B18_0 = (359.9999f);
G_B18_1 = G_B16_0;
goto IL_011f;
}
IL_010a:
{
float L_21 = __this->get_maxNormalAngle_10();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
float L_22 = Mathf_Clamp_m3350697880(NULL /*static, unused*/, L_21, (0.0f), (359.9999f), /*hidden argument*/NULL);
G_B18_0 = L_22;
G_B18_1 = G_B17_0;
}
IL_011f:
{
G_B18_1->set_maxNormalAngle_10(G_B18_0);
float L_23 = __this->get_minNormalAngle_9();
float L_24 = __this->get_maxNormalAngle_10();
if ((!(((float)L_23) > ((float)L_24))))
{
goto IL_0151;
}
}
{
float L_25 = __this->get_minNormalAngle_9();
V_1 = L_25;
float L_26 = __this->get_maxNormalAngle_10();
__this->set_minNormalAngle_9(L_26);
float L_27 = V_1;
__this->set_maxNormalAngle_10(L_27);
}
IL_0151:
{
return;
}
}
extern "C" void ContactFilter2D_CheckConsistency_m222060761_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ContactFilter2D_t3805203441 * _thisAdjusted = reinterpret_cast<ContactFilter2D_t3805203441 *>(__this + 1);
ContactFilter2D_CheckConsistency_m222060761(_thisAdjusted, method);
}
// System.Void UnityEngine.ContactFilter2D::SetLayerMask(UnityEngine.LayerMask)
extern "C" void ContactFilter2D_SetLayerMask_m3440334821 (ContactFilter2D_t3805203441 * __this, LayerMask_t3493934918 ___layerMask0, const RuntimeMethod* method)
{
{
LayerMask_t3493934918 L_0 = ___layerMask0;
__this->set_layerMask_6(L_0);
__this->set_useLayerMask_1((bool)1);
return;
}
}
extern "C" void ContactFilter2D_SetLayerMask_m3440334821_AdjustorThunk (RuntimeObject * __this, LayerMask_t3493934918 ___layerMask0, const RuntimeMethod* method)
{
ContactFilter2D_t3805203441 * _thisAdjusted = reinterpret_cast<ContactFilter2D_t3805203441 *>(__this + 1);
ContactFilter2D_SetLayerMask_m3440334821(_thisAdjusted, ___layerMask0, method);
}
// System.Void UnityEngine.ContactFilter2D::SetDepth(System.Single,System.Single)
extern "C" void ContactFilter2D_SetDepth_m3691256496 (ContactFilter2D_t3805203441 * __this, float ___minDepth0, float ___maxDepth1, const RuntimeMethod* method)
{
{
float L_0 = ___minDepth0;
__this->set_minDepth_7(L_0);
float L_1 = ___maxDepth1;
__this->set_maxDepth_8(L_1);
__this->set_useDepth_2((bool)1);
ContactFilter2D_CheckConsistency_m222060761(__this, /*hidden argument*/NULL);
return;
}
}
extern "C" void ContactFilter2D_SetDepth_m3691256496_AdjustorThunk (RuntimeObject * __this, float ___minDepth0, float ___maxDepth1, const RuntimeMethod* method)
{
ContactFilter2D_t3805203441 * _thisAdjusted = reinterpret_cast<ContactFilter2D_t3805203441 *>(__this + 1);
ContactFilter2D_SetDepth_m3691256496(_thisAdjusted, ___minDepth0, ___maxDepth1, method);
}
// UnityEngine.ContactFilter2D UnityEngine.ContactFilter2D::CreateLegacyFilter(System.Int32,System.Single,System.Single)
extern "C" ContactFilter2D_t3805203441 ContactFilter2D_CreateLegacyFilter_m1873816896 (RuntimeObject * __this /* static, unused */, int32_t ___layerMask0, float ___minDepth1, float ___maxDepth2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ContactFilter2D_CreateLegacyFilter_m1873816896_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ContactFilter2D_t3805203441 V_0;
memset(&V_0, 0, sizeof(V_0));
ContactFilter2D_t3805203441 V_1;
memset(&V_1, 0, sizeof(V_1));
{
il2cpp_codegen_initobj((&V_0), sizeof(ContactFilter2D_t3805203441 ));
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1528932956_il2cpp_TypeInfo_var);
bool L_0 = Physics2D_get_queriesHitTriggers_m1249674012(NULL /*static, unused*/, /*hidden argument*/NULL);
(&V_0)->set_useTriggers_0(L_0);
int32_t L_1 = ___layerMask0;
LayerMask_t3493934918 L_2 = LayerMask_op_Implicit_m90232283(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
ContactFilter2D_SetLayerMask_m3440334821((&V_0), L_2, /*hidden argument*/NULL);
float L_3 = ___minDepth1;
float L_4 = ___maxDepth2;
ContactFilter2D_SetDepth_m3691256496((&V_0), L_3, L_4, /*hidden argument*/NULL);
ContactFilter2D_t3805203441 L_5 = V_0;
V_1 = L_5;
goto IL_0032;
}
IL_0032:
{
ContactFilter2D_t3805203441 L_6 = V_1;
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.RaycastHit2D UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Int32,System.Single)
extern "C" RaycastHit2D_t2279581989 Physics2D_Raycast_m1728056151 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 ___origin0, Vector2_t2156229523 ___direction1, float ___distance2, int32_t ___layerMask3, float ___minDepth4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2D_Raycast_m1728056151_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
RaycastHit2D_t2279581989 V_1;
memset(&V_1, 0, sizeof(V_1));
{
V_0 = (std::numeric_limits<float>::infinity());
Vector2_t2156229523 L_0 = ___origin0;
Vector2_t2156229523 L_1 = ___direction1;
float L_2 = ___distance2;
int32_t L_3 = ___layerMask3;
float L_4 = ___minDepth4;
float L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1528932956_il2cpp_TypeInfo_var);
RaycastHit2D_t2279581989 L_6 = Physics2D_Raycast_m1407159225(NULL /*static, unused*/, L_0, L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
V_1 = L_6;
goto IL_0019;
}
IL_0019:
{
RaycastHit2D_t2279581989 L_7 = V_1;
return L_7;
}
}
// UnityEngine.RaycastHit2D UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Int32)
extern "C" RaycastHit2D_t2279581989 Physics2D_Raycast_m2858866636 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 ___origin0, Vector2_t2156229523 ___direction1, float ___distance2, int32_t ___layerMask3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2D_Raycast_m2858866636_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
float V_1 = 0.0f;
RaycastHit2D_t2279581989 V_2;
memset(&V_2, 0, sizeof(V_2));
{
V_0 = (std::numeric_limits<float>::infinity());
V_1 = (-std::numeric_limits<float>::infinity());
Vector2_t2156229523 L_0 = ___origin0;
Vector2_t2156229523 L_1 = ___direction1;
float L_2 = ___distance2;
int32_t L_3 = ___layerMask3;
float L_4 = V_1;
float L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1528932956_il2cpp_TypeInfo_var);
RaycastHit2D_t2279581989 L_6 = Physics2D_Raycast_m1407159225(NULL /*static, unused*/, L_0, L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
V_2 = L_6;
goto IL_001e;
}
IL_001e:
{
RaycastHit2D_t2279581989 L_7 = V_2;
return L_7;
}
}
// UnityEngine.RaycastHit2D UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single)
extern "C" RaycastHit2D_t2279581989 Physics2D_Raycast_m2082490717 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 ___origin0, Vector2_t2156229523 ___direction1, float ___distance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2D_Raycast_m2082490717_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
float V_1 = 0.0f;
int32_t V_2 = 0;
RaycastHit2D_t2279581989 V_3;
memset(&V_3, 0, sizeof(V_3));
{
V_0 = (std::numeric_limits<float>::infinity());
V_1 = (-std::numeric_limits<float>::infinity());
V_2 = ((int32_t)-5);
Vector2_t2156229523 L_0 = ___origin0;
Vector2_t2156229523 L_1 = ___direction1;
float L_2 = ___distance2;
int32_t L_3 = V_2;
float L_4 = V_1;
float L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1528932956_il2cpp_TypeInfo_var);
RaycastHit2D_t2279581989 L_6 = Physics2D_Raycast_m1407159225(NULL /*static, unused*/, L_0, L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
V_3 = L_6;
goto IL_0021;
}
IL_0021:
{
RaycastHit2D_t2279581989 L_7 = V_3;
return L_7;
}
}
// UnityEngine.RaycastHit2D UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2)
extern "C" RaycastHit2D_t2279581989 Physics2D_Raycast_m2341153778 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 ___origin0, Vector2_t2156229523 ___direction1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2D_Raycast_m2341153778_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
float V_1 = 0.0f;
int32_t V_2 = 0;
float V_3 = 0.0f;
RaycastHit2D_t2279581989 V_4;
memset(&V_4, 0, sizeof(V_4));
{
V_0 = (std::numeric_limits<float>::infinity());
V_1 = (-std::numeric_limits<float>::infinity());
V_2 = ((int32_t)-5);
V_3 = (std::numeric_limits<float>::infinity());
Vector2_t2156229523 L_0 = ___origin0;
Vector2_t2156229523 L_1 = ___direction1;
float L_2 = V_3;
int32_t L_3 = V_2;
float L_4 = V_1;
float L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1528932956_il2cpp_TypeInfo_var);
RaycastHit2D_t2279581989 L_6 = Physics2D_Raycast_m1407159225(NULL /*static, unused*/, L_0, L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
V_4 = L_6;
goto IL_0028;
}
IL_0028:
{
RaycastHit2D_t2279581989 L_7 = V_4;
return L_7;
}
}
// UnityEngine.RaycastHit2D UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)
extern "C" RaycastHit2D_t2279581989 Physics2D_Raycast_m1407159225 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 ___origin0, Vector2_t2156229523 ___direction1, float ___distance2, int32_t ___layerMask3, float ___minDepth4, float ___maxDepth5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2D_Raycast_m1407159225_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ContactFilter2D_t3805203441 V_0;
memset(&V_0, 0, sizeof(V_0));
RaycastHit2D_t2279581989 V_1;
memset(&V_1, 0, sizeof(V_1));
RaycastHit2D_t2279581989 V_2;
memset(&V_2, 0, sizeof(V_2));
{
int32_t L_0 = ___layerMask3;
float L_1 = ___minDepth4;
float L_2 = ___maxDepth5;
ContactFilter2D_t3805203441 L_3 = ContactFilter2D_CreateLegacyFilter_m1873816896(NULL /*static, unused*/, L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
Vector2_t2156229523 L_4 = ___origin0;
Vector2_t2156229523 L_5 = ___direction1;
float L_6 = ___distance2;
ContactFilter2D_t3805203441 L_7 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1528932956_il2cpp_TypeInfo_var);
Physics2D_Internal_Raycast_m1768014582(NULL /*static, unused*/, L_4, L_5, L_6, L_7, (&V_1), /*hidden argument*/NULL);
RaycastHit2D_t2279581989 L_8 = V_1;
V_2 = L_8;
goto IL_001e;
}
IL_001e:
{
RaycastHit2D_t2279581989 L_9 = V_2;
return L_9;
}
}
// System.Int32 UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[])
extern "C" int32_t Physics2D_Raycast_m1377762210 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 ___origin0, Vector2_t2156229523 ___direction1, ContactFilter2D_t3805203441 ___contactFilter2, RaycastHit2DU5BU5D_t4286651560* ___results3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2D_Raycast_m1377762210_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
int32_t V_1 = 0;
{
V_0 = (std::numeric_limits<float>::infinity());
Vector2_t2156229523 L_0 = ___origin0;
Vector2_t2156229523 L_1 = ___direction1;
ContactFilter2D_t3805203441 L_2 = ___contactFilter2;
RaycastHit2DU5BU5D_t4286651560* L_3 = ___results3;
float L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1528932956_il2cpp_TypeInfo_var);
int32_t L_5 = Physics2D_Raycast_m1700114981(NULL /*static, unused*/, L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
V_1 = L_5;
goto IL_0017;
}
IL_0017:
{
int32_t L_6 = V_1;
return L_6;
}
}
// System.Int32 UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[],System.Single)
extern "C" int32_t Physics2D_Raycast_m1700114981 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 ___origin0, Vector2_t2156229523 ___direction1, ContactFilter2D_t3805203441 ___contactFilter2, RaycastHit2DU5BU5D_t4286651560* ___results3, float ___distance4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2D_Raycast_m1700114981_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Vector2_t2156229523 L_0 = ___origin0;
Vector2_t2156229523 L_1 = ___direction1;
float L_2 = ___distance4;
ContactFilter2D_t3805203441 L_3 = ___contactFilter2;
RaycastHit2DU5BU5D_t4286651560* L_4 = ___results3;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1528932956_il2cpp_TypeInfo_var);
int32_t L_5 = Physics2D_Internal_RaycastNonAlloc_m3815006984(NULL /*static, unused*/, L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
V_0 = L_5;
goto IL_0012;
}
IL_0012:
{
int32_t L_6 = V_0;
return L_6;
}
}
// System.Void UnityEngine.Physics2D::Internal_Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D&)
extern "C" void Physics2D_Internal_Raycast_m1768014582 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 ___origin0, Vector2_t2156229523 ___direction1, float ___distance2, ContactFilter2D_t3805203441 ___contactFilter3, RaycastHit2D_t2279581989 * ___raycastHit4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2D_Internal_Raycast_m1768014582_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___distance2;
RaycastHit2D_t2279581989 * L_1 = ___raycastHit4;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1528932956_il2cpp_TypeInfo_var);
Physics2D_INTERNAL_CALL_Internal_Raycast_m3296033924(NULL /*static, unused*/, (&___origin0), (&___direction1), L_0, (&___contactFilter3), L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Physics2D::INTERNAL_CALL_Internal_Raycast(UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,UnityEngine.RaycastHit2D&)
extern "C" void Physics2D_INTERNAL_CALL_Internal_Raycast_m3296033924 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 * ___origin0, Vector2_t2156229523 * ___direction1, float ___distance2, ContactFilter2D_t3805203441 * ___contactFilter3, RaycastHit2D_t2279581989 * ___raycastHit4, const RuntimeMethod* method)
{
typedef void (*Physics2D_INTERNAL_CALL_Internal_Raycast_m3296033924_ftn) (Vector2_t2156229523 *, Vector2_t2156229523 *, float, ContactFilter2D_t3805203441 *, RaycastHit2D_t2279581989 *);
static Physics2D_INTERNAL_CALL_Internal_Raycast_m3296033924_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Physics2D_INTERNAL_CALL_Internal_Raycast_m3296033924_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Physics2D::INTERNAL_CALL_Internal_Raycast(UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,UnityEngine.RaycastHit2D&)");
_il2cpp_icall_func(___origin0, ___direction1, ___distance2, ___contactFilter3, ___raycastHit4);
}
// System.Int32 UnityEngine.Physics2D::Internal_RaycastNonAlloc(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[])
extern "C" int32_t Physics2D_Internal_RaycastNonAlloc_m3815006984 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 ___origin0, Vector2_t2156229523 ___direction1, float ___distance2, ContactFilter2D_t3805203441 ___contactFilter3, RaycastHit2DU5BU5D_t4286651560* ___results4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2D_Internal_RaycastNonAlloc_m3815006984_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
float L_0 = ___distance2;
RaycastHit2DU5BU5D_t4286651560* L_1 = ___results4;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1528932956_il2cpp_TypeInfo_var);
int32_t L_2 = Physics2D_INTERNAL_CALL_Internal_RaycastNonAlloc_m688510606(NULL /*static, unused*/, (&___origin0), (&___direction1), L_0, (&___contactFilter3), L_1, /*hidden argument*/NULL);
V_0 = L_2;
goto IL_0015;
}
IL_0015:
{
int32_t L_3 = V_0;
return L_3;
}
}
// System.Int32 UnityEngine.Physics2D::INTERNAL_CALL_Internal_RaycastNonAlloc(UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,UnityEngine.RaycastHit2D[])
extern "C" int32_t Physics2D_INTERNAL_CALL_Internal_RaycastNonAlloc_m688510606 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 * ___origin0, Vector2_t2156229523 * ___direction1, float ___distance2, ContactFilter2D_t3805203441 * ___contactFilter3, RaycastHit2DU5BU5D_t4286651560* ___results4, const RuntimeMethod* method)
{
typedef int32_t (*Physics2D_INTERNAL_CALL_Internal_RaycastNonAlloc_m688510606_ftn) (Vector2_t2156229523 *, Vector2_t2156229523 *, float, ContactFilter2D_t3805203441 *, RaycastHit2DU5BU5D_t4286651560*);
static Physics2D_INTERNAL_CALL_Internal_RaycastNonAlloc_m688510606_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Physics2D_INTERNAL_CALL_Internal_RaycastNonAlloc_m688510606_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Physics2D::INTERNAL_CALL_Internal_RaycastNonAlloc(UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,UnityEngine.RaycastHit2D[])");
int32_t retVal = _il2cpp_icall_func(___origin0, ___direction1, ___distance2, ___contactFilter3, ___results4);
return retVal;
}
// UnityEngine.RaycastHit2D[] UnityEngine.Physics2D::GetRayIntersectionAll(UnityEngine.Ray,System.Single,System.Int32)
extern "C" RaycastHit2DU5BU5D_t4286651560* Physics2D_GetRayIntersectionAll_m2567878449 (RuntimeObject * __this /* static, unused */, Ray_t3785851493 ___ray0, float ___distance1, int32_t ___layerMask2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2D_GetRayIntersectionAll_m2567878449_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastHit2DU5BU5D_t4286651560* V_0 = NULL;
{
float L_0 = ___distance1;
int32_t L_1 = ___layerMask2;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1528932956_il2cpp_TypeInfo_var);
RaycastHit2DU5BU5D_t4286651560* L_2 = Physics2D_INTERNAL_CALL_GetRayIntersectionAll_m1016589977(NULL /*static, unused*/, (&___ray0), L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
goto IL_0010;
}
IL_0010:
{
RaycastHit2DU5BU5D_t4286651560* L_3 = V_0;
return L_3;
}
}
// UnityEngine.RaycastHit2D[] UnityEngine.Physics2D::GetRayIntersectionAll(UnityEngine.Ray,System.Single)
extern "C" RaycastHit2DU5BU5D_t4286651560* Physics2D_GetRayIntersectionAll_m1670084419 (RuntimeObject * __this /* static, unused */, Ray_t3785851493 ___ray0, float ___distance1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2D_GetRayIntersectionAll_m1670084419_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RaycastHit2DU5BU5D_t4286651560* V_1 = NULL;
{
V_0 = ((int32_t)-5);
float L_0 = ___distance1;
int32_t L_1 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1528932956_il2cpp_TypeInfo_var);
RaycastHit2DU5BU5D_t4286651560* L_2 = Physics2D_INTERNAL_CALL_GetRayIntersectionAll_m1016589977(NULL /*static, unused*/, (&___ray0), L_0, L_1, /*hidden argument*/NULL);
V_1 = L_2;
goto IL_0013;
}
IL_0013:
{
RaycastHit2DU5BU5D_t4286651560* L_3 = V_1;
return L_3;
}
}
// UnityEngine.RaycastHit2D[] UnityEngine.Physics2D::GetRayIntersectionAll(UnityEngine.Ray)
extern "C" RaycastHit2DU5BU5D_t4286651560* Physics2D_GetRayIntersectionAll_m1507505063 (RuntimeObject * __this /* static, unused */, Ray_t3785851493 ___ray0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2D_GetRayIntersectionAll_m1507505063_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
float V_1 = 0.0f;
RaycastHit2DU5BU5D_t4286651560* V_2 = NULL;
{
V_0 = ((int32_t)-5);
V_1 = (std::numeric_limits<float>::infinity());
float L_0 = V_1;
int32_t L_1 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1528932956_il2cpp_TypeInfo_var);
RaycastHit2DU5BU5D_t4286651560* L_2 = Physics2D_INTERNAL_CALL_GetRayIntersectionAll_m1016589977(NULL /*static, unused*/, (&___ray0), L_0, L_1, /*hidden argument*/NULL);
V_2 = L_2;
goto IL_0019;
}
IL_0019:
{
RaycastHit2DU5BU5D_t4286651560* L_3 = V_2;
return L_3;
}
}
// UnityEngine.RaycastHit2D[] UnityEngine.Physics2D::INTERNAL_CALL_GetRayIntersectionAll(UnityEngine.Ray&,System.Single,System.Int32)
extern "C" RaycastHit2DU5BU5D_t4286651560* Physics2D_INTERNAL_CALL_GetRayIntersectionAll_m1016589977 (RuntimeObject * __this /* static, unused */, Ray_t3785851493 * ___ray0, float ___distance1, int32_t ___layerMask2, const RuntimeMethod* method)
{
typedef RaycastHit2DU5BU5D_t4286651560* (*Physics2D_INTERNAL_CALL_GetRayIntersectionAll_m1016589977_ftn) (Ray_t3785851493 *, float, int32_t);
static Physics2D_INTERNAL_CALL_GetRayIntersectionAll_m1016589977_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Physics2D_INTERNAL_CALL_GetRayIntersectionAll_m1016589977_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Physics2D::INTERNAL_CALL_GetRayIntersectionAll(UnityEngine.Ray&,System.Single,System.Int32)");
RaycastHit2DU5BU5D_t4286651560* retVal = _il2cpp_icall_func(___ray0, ___distance1, ___layerMask2);
return retVal;
}
// System.Boolean UnityEngine.Physics2D::get_queriesHitTriggers()
extern "C" bool Physics2D_get_queriesHitTriggers_m1249674012 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
typedef bool (*Physics2D_get_queriesHitTriggers_m1249674012_ftn) ();
static Physics2D_get_queriesHitTriggers_m1249674012_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Physics2D_get_queriesHitTriggers_m1249674012_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Physics2D::get_queriesHitTriggers()");
bool retVal = _il2cpp_icall_func();
return retVal;
}
// System.Void UnityEngine.Physics2D::.cctor()
extern "C" void Physics2D__cctor_m143866755 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2D__cctor_m143866755_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
List_1_t2411569343 * L_0 = (List_1_t2411569343 *)il2cpp_codegen_object_new(List_1_t2411569343_il2cpp_TypeInfo_var);
List_1__ctor_m2466177744(L_0, /*hidden argument*/List_1__ctor_m2466177744_RuntimeMethod_var);
((Physics2D_t1528932956_StaticFields*)il2cpp_codegen_static_fields_for(Physics2D_t1528932956_il2cpp_TypeInfo_var))->set_m_LastDisabledRigidbody2D_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.RaycastHit2D
extern "C" void RaycastHit2D_t2279581989_marshal_pinvoke(const RaycastHit2D_t2279581989& unmarshaled, RaycastHit2D_t2279581989_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Collider_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Collider' of type 'RaycastHit2D': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Collider_5Exception);
}
extern "C" void RaycastHit2D_t2279581989_marshal_pinvoke_back(const RaycastHit2D_t2279581989_marshaled_pinvoke& marshaled, RaycastHit2D_t2279581989& unmarshaled)
{
Exception_t* ___m_Collider_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Collider' of type 'RaycastHit2D': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Collider_5Exception);
}
// Conversion method for clean up from marshalling of: UnityEngine.RaycastHit2D
extern "C" void RaycastHit2D_t2279581989_marshal_pinvoke_cleanup(RaycastHit2D_t2279581989_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.RaycastHit2D
extern "C" void RaycastHit2D_t2279581989_marshal_com(const RaycastHit2D_t2279581989& unmarshaled, RaycastHit2D_t2279581989_marshaled_com& marshaled)
{
Exception_t* ___m_Collider_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Collider' of type 'RaycastHit2D': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Collider_5Exception);
}
extern "C" void RaycastHit2D_t2279581989_marshal_com_back(const RaycastHit2D_t2279581989_marshaled_com& marshaled, RaycastHit2D_t2279581989& unmarshaled)
{
Exception_t* ___m_Collider_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Collider' of type 'RaycastHit2D': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Collider_5Exception);
}
// Conversion method for clean up from marshalling of: UnityEngine.RaycastHit2D
extern "C" void RaycastHit2D_t2279581989_marshal_com_cleanup(RaycastHit2D_t2279581989_marshaled_com& marshaled)
{
}
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_point()
extern "C" Vector2_t2156229523 RaycastHit2D_get_point_m1586138107 (RaycastHit2D_t2279581989 * __this, const RuntimeMethod* method)
{
Vector2_t2156229523 V_0;
memset(&V_0, 0, sizeof(V_0));
{
Vector2_t2156229523 L_0 = __this->get_m_Point_1();
V_0 = L_0;
goto IL_000d;
}
IL_000d:
{
Vector2_t2156229523 L_1 = V_0;
return L_1;
}
}
extern "C" Vector2_t2156229523 RaycastHit2D_get_point_m1586138107_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
RaycastHit2D_t2279581989 * _thisAdjusted = reinterpret_cast<RaycastHit2D_t2279581989 *>(__this + 1);
return RaycastHit2D_get_point_m1586138107(_thisAdjusted, method);
}
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_normal()
extern "C" Vector2_t2156229523 RaycastHit2D_get_normal_m772343376 (RaycastHit2D_t2279581989 * __this, const RuntimeMethod* method)
{
Vector2_t2156229523 V_0;
memset(&V_0, 0, sizeof(V_0));
{
Vector2_t2156229523 L_0 = __this->get_m_Normal_2();
V_0 = L_0;
goto IL_000d;
}
IL_000d:
{
Vector2_t2156229523 L_1 = V_0;
return L_1;
}
}
extern "C" Vector2_t2156229523 RaycastHit2D_get_normal_m772343376_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
RaycastHit2D_t2279581989 * _thisAdjusted = reinterpret_cast<RaycastHit2D_t2279581989 *>(__this + 1);
return RaycastHit2D_get_normal_m772343376(_thisAdjusted, method);
}
// System.Single UnityEngine.RaycastHit2D::get_distance()
extern "C" float RaycastHit2D_get_distance_m382898860 (RaycastHit2D_t2279581989 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_Distance_3();
V_0 = L_0;
goto IL_000d;
}
IL_000d:
{
float L_1 = V_0;
return L_1;
}
}
extern "C" float RaycastHit2D_get_distance_m382898860_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
RaycastHit2D_t2279581989 * _thisAdjusted = reinterpret_cast<RaycastHit2D_t2279581989 *>(__this + 1);
return RaycastHit2D_get_distance_m382898860(_thisAdjusted, method);
}
// UnityEngine.Collider2D UnityEngine.RaycastHit2D::get_collider()
extern "C" Collider2D_t2806799626 * RaycastHit2D_get_collider_m1549426026 (RaycastHit2D_t2279581989 * __this, const RuntimeMethod* method)
{
Collider2D_t2806799626 * V_0 = NULL;
{
Collider2D_t2806799626 * L_0 = __this->get_m_Collider_5();
V_0 = L_0;
goto IL_000d;
}
IL_000d:
{
Collider2D_t2806799626 * L_1 = V_0;
return L_1;
}
}
extern "C" Collider2D_t2806799626 * RaycastHit2D_get_collider_m1549426026_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
RaycastHit2D_t2279581989 * _thisAdjusted = reinterpret_cast<RaycastHit2D_t2279581989 *>(__this + 1);
return RaycastHit2D_get_collider_m1549426026(_thisAdjusted, method);
}
// System.Boolean UnityEngine.RaycastHit2D::op_Implicit(UnityEngine.RaycastHit2D)
extern "C" bool RaycastHit2D_op_Implicit_m653385179 (RuntimeObject * __this /* static, unused */, RaycastHit2D_t2279581989 ___hit0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RaycastHit2D_op_Implicit_m653385179_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
Collider2D_t2806799626 * L_0 = RaycastHit2D_get_collider_m1549426026((&___hit0), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_t631007953_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Inequality_m4071470834(NULL /*static, unused*/, L_0, (Object_t631007953 *)NULL, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_0014;
}
IL_0014:
{
bool L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"[email protected]"
] | |
a5a4381131a7817a5a082fb2f4058e57210274ba | b9728590df884acbfa1561e525649e7e0bf70a0a | /task3_7/task3_7/task3_7.cpp | 2b967ff14926f75d4bc9ca33c1dbdfdb5558c07e | [] | no_license | Yuliia9/task3_7 | 1ca8b49a7eac86dbf1ae823ccded64b5392cbe20 | 932e71f639f162b992e07e82d6e3ab130778e014 | refs/heads/master | 2021-01-25T07:07:51.278840 | 2014-03-15T16:22:44 | 2014-03-15T16:22:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,124 | cpp |
/*
* @file task3_7.cpp
* @brief Program delete words with defined numbers. For now it's delete 2 and 5 words
* Copyright 2014 by Yuliia Lyubchik Inc.,
*
* This software is the confidential and proprietary information
* of Yuliia Lyubchik. ("Confidential Information"). You
* shall not disclose such Confidential Information and shall use
* it only with permission from Yuliia.
*
*/
#include "stdafx.h"
#include "task3_7.h" /*defines prototypes of used in this file functions*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
const unsigned char ERROR = 0;
const unsigned char SUCCESS = 1;
const unsigned int MAIN_SUCCESS = 0;
/*number of words needed to be deleted in string*/
const unsigned int NUM1 = 2;
const unsigned int NUM2 = 5;
int main( )
{
Interface();
char* riadok = NULL;
unsigned char retCode;
char* censorship = NULL; /*string after deleting words*/
unsigned int count = 0; /*the quantity of deleted words*/
retCode = Input(&riadok);
if (retCode == ERROR)
{
printf("Error occurs while trying to input string.\n");
return (int)ERROR;
}
if (riadok != NULL && strlen(riadok) != 0)
{
censorship = (char*)malloc(strlen(riadok) * sizeof(char));
strcpy(censorship, riadok);
}
retCode = Delete_bad_word(censorship, NUM1);
if (retCode == ERROR)
{
printf("Can not delete word number %u.\n", NUM1);
printf("String after censoring: %s\n", censorship);
}
else
{
printf("String after censoring word number %u: %s\n", NUM1, censorship);
}
++count;
retCode = Delete_bad_word(censorship, NUM2 - count);
if (retCode == ERROR)
{
printf("Can not delete word number %u.\n", NUM2);
printf("String after censoring: %s\n", censorship);
}
else
{
printf("String after censoring words number %u and %u: %s\n", NUM1, NUM2,censorship);
}
free(riadok);
system("pause");
return MAIN_SUCCESS;
}
void Interface(void)
{
printf("------------------------------------------------------------------\n");
printf("Hi! Welcome to the brilliant word censor.\n");
printf("Enter sentences and program will delete for you 2 and 5 word. \n");
printf("Program made by Yuliia Lyubchik.\n");
printf("------------------------------------------------------------------\n\n");
}
unsigned char Input(char** riadok)
{
do
{
char temp;
int count = 0;
printf("Please enter sentence: ");
do
{
scanf("%c", &temp);
++count;
*riadok = (char*)realloc(*riadok, count * sizeof(char));
if (*riadok != NULL)
{
*(*riadok + count - 1) = temp;
}
else
{
free(riadok);
puts("Error (re)allocating memory. \n");
return ERROR;
}
}
while (temp != '\n' && temp != EOF);
fflush(stdin);
*(*riadok + count - 1) = '\0';
}
while (riadok == NULL || strlen(*riadok) == 0);
return SUCCESS;
}
unsigned char Delete_bad_word(char* censorship, unsigned int number)
{
if (censorship == NULL)
{
printf("Can not get access to memory. \n");
return ERROR;
}
char* temp;
temp = (char*)malloc(strlen(censorship) * sizeof(char));
temp[0] = '\0';
char* begin = NULL;
char* end = NULL;
char* token;
unsigned int count = 1;
const char delimiters[] = { ' ', ',', '-', '.', ':', ';', '(', ')', '[', ']', '!', '?' };
token = strpbrk(censorship, delimiters);
++count;
while (token != NULL)
{
if (count == number)
{
begin = token;
}
else if (count == (number + 1))
{
end = token;
}
token = strpbrk(token + 1, delimiters);
++count;
}
if (count < number)
{
printf("Sorry but there is no word with such number.\n");
return ERROR;
}
if (begin == NULL)
{
printf("Sorry but there is no word with such number.\n");
return ERROR;
}
unsigned int n = begin - censorship;
strncpy(temp, censorship, begin - censorship);
temp[n] = '\0';
if (end == NULL)
{
end = censorship + strlen(censorship);
}
n = end - censorship;
strcat(temp, censorship + n);
strcpy(censorship, temp);
return SUCCESS;
}
| [
"[email protected]"
] | |
9e9d4b2e5c1b39617ee922f223cab7689bfdabed | bf1f40886a54ff8ae25ac612cceee6d8701100f0 | /pascal_triangle.cc | a7797d887a731bf92e02b0fc9605a1b82880b215 | [] | no_license | gqqh/leetcodes | be57941888c61fec51fa9b86f5f94f9e4c77cd2d | 9ff1709820b5d17544fc8d6c84e0335cdb49f940 | refs/heads/master | 2021-01-25T08:49:06.612971 | 2016-12-07T03:53:08 | 2016-12-07T03:53:08 | 40,632,656 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,212 | cc | //求杨辉三角的前k行, k = 5;
// 第0行 1
// 第1行 1 1
// 第2行 1 2 1
// 第3行 1 3 3 1
// 第4行 1 4 6 4 1
//总结,当k>=1时,k行有k个元素,从前往后分别是C(k-1, [0,...,k-1])
#include <iostream>
#include <vector>
//从后面往前遍历,初始化全部为0,然后把最后一个置为1,每次把后一个元素加上它的
//前一个元素
using namespace std;
class Solution {
public:
vector<vector<int> > generate(int numRows) {
vector<vector<int> > ret;
if(numRows <= 0) return ret;
vector<int> r = {1};
ret.push_back(r);
for(int i = 1; i < numRows; i++){
r.resize(0);
r.push_back(1);
for(int j = 1; j < i; j++)
r.push_back(ret[i-1][j-1]+ret[i-1][j]);
r.push_back(1);
ret.push_back(r);
}
return ret;
}
};
int main(int argc, char const *argv[]) {
Solution test;
int n = 6;
if(argc == 2) n = atoi(argv[1]);
vector<vector<int> > ret = test.generate(n);
for(auto i : ret){
for(auto j : i)
cout << j << " ";
cout << endl;
}
cout << endl;
return 0;
}
| [
"[email protected]"
] | |
3de719bb6ee275d24fda9c78ea314c56353b3e4f | 369270a3af0639450d49c522b1ce1abe74c82279 | /src/analysis/costModel.cpp | f6ebd81109e6b67166a64ba0e30d515dc772b6f6 | [
"NCSA",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | sx-aurora-devold/rv | 0d9c0823b097464d2330055676b6cd2986cb67b6 | a5ffe4c913ebaae2106c0f76056f01dcc4e48c5e | refs/heads/master | 2020-05-03T06:17:12.206977 | 2019-04-12T13:27:20 | 2019-04-12T13:27:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,584 | cpp | #include "rv/analysis/costModel.h"
#include "rv/PlatformInfo.h"
#include "rv/vectorizationInfo.h"
#include "rv/region/Region.h"
#include "rv/annotations.h"
#include "rv/config.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/BasicBlock.h"
#include "llvm/IR/DerivedTypes.h"
using namespace llvm;
#define IF_DEBUG_CM if (false)
namespace rv {
CostModel::CostModel(PlatformInfo & _platInfo, Config & _config)
: platInfo(_platInfo)
, config(_config)
, tti(*platInfo.getTTI())
{}
bool
CostModel::needsReplication(const Instruction & inst) const {
return true; // TODO query vecInfo
}
static
size_t
CountDataPhis(const BasicBlock & block) {
size_t t = 0;
for (auto & inst : block) {
if (!isa<PHINode>(inst)) continue;
t += (size_t) inst.getType()->isFloatingPointTy();
}
return t;
}
size_t
CostModel::pickWidthForMapping(const VectorMapping & mapping) const {
if (mapping.vectorFn) return mapping.vectorWidth;
// default to vector of bytes
size_t vecWidth = platInfo.getMaxVectorWidth();
auto * scaFuncTy = mapping.scalarFn->getFunctionType();
for (size_t i = 0; i < scaFuncTy->getNumParams(); ++i) {
auto argShape = mapping.argShapes[i];
if (argShape.isVarying()) {
vecWidth = std::min(vecWidth, pickWidthForType(*scaFuncTy->getParamType(i), vecWidth));
}
}
return vecWidth;
}
size_t
CostModel::pickWidthForInstruction(const Instruction & inst, size_t maxWidth) const {
if (!needsReplication(inst)) return maxWidth; // remains scalar
// check call mappings, critical sections
auto * call = dyn_cast<CallInst>(&inst);
if (call) {
auto * callee = dyn_cast_or_null<Function>(call->getCalledValue());
if (!callee) return 1;
// check if this is a critical section
if (IsCriticalSection(*callee)) return maxWidth;
// can we vectorize the callee recursively
if (!callee->isDeclaration() && config.enableGreedyIPV) return maxWidth; // everything is possible with IPV..
VectorShapeVec topArgVec;
for (int i = 0; i < (int) call->getNumArgOperands(); ++i) {
// botArgVec.push_back(VectorShape::undef()); // FIXME this causes divergence in the VA
topArgVec.push_back(VectorShape::varying());
}
// find widest available implementation
size_t sampleWidth = maxWidth;
StringRef calleeName = callee->getName();
for (; sampleWidth > 1; sampleWidth /= 2) {
// if (platInfo.getMappingsForCall(matchVec, *callee, botArgVec, sampleWidth, needsPredication)) break; // FIXME deprecated
const bool needsPredicate = false; // FIXME
if (platInfo.getResolver(calleeName, *callee->getFunctionType(), topArgVec, sampleWidth, needsPredicate)) {
break;
}
}
IF_DEBUG_CM { errs() << "cm: max width for " << calleeName << " is " << sampleWidth << "\n"; }
return sampleWidth;
}
// TODO memory access pattern
const auto & instTy = *inst.getType();
if (instTy.isVoidTy()) {
return maxWidth;
}
// default to type based width
return pickWidthForType(instTy, maxWidth);
}
size_t
CostModel::pickWidthForType(const Type & type, size_t maxWidth) const {
// assume that only floating point values are vectorized
size_t rawSize = type.getScalarSizeInBits();
if ((rawSize > 0) &&
(type.isIntegerTy() || type.isFloatingPointTy()))
{
maxWidth = std::min<size_t>(maxWidth, platInfo.getMaxVectorBits() / rawSize);
}
return maxWidth;
}
size_t
CostModel::pickWidthForBlock(const BasicBlock & block, size_t maxWidth) const {
for (const auto & inst : block) maxWidth = pickWidthForInstruction(inst, maxWidth);
size_t numDataPhis = CountDataPhis(block);
if (numDataPhis > 2*maxWidth) {
// do not vectorize if too many values are in flight
// FIXME this is a crude method to estimate the hazard of being surpassed by plain SLP vectorization
// this assumes that the number of data-bearing (as compared to address computation, control slice) phi nodes correlates with instruction level parallelism.
// Hence, it might be sensible to relay on SLP vectorization instead of turning each one of them into a vector PHI.
return 1;
}
return maxWidth;
}
size_t
CostModel::pickWidthForRegion(const Region & region, size_t maxWidth) const {
size_t width = std::min(maxWidth, platInfo.getMaxVectorBits());
IF_DEBUG_CM { errs() << "cm: bounding vector width for region " << region.str() << ", initial max width " << width << "\n"; }
region.for_blocks([&](const BasicBlock & block) {
width = pickWidthForBlock(block, width);
return width > 1;
});
return width;
}
}
| [
"[email protected]"
] | |
e402a3207fb7d8db7c9a65c1ac490c04ed1bbf41 | 9f2b07eb0e9467e17448de413162a14f8207e5d0 | /libsrc/pylith/faults/KinSrcConstRate.hh | bac91f1acf78b1827080d7b62b0cb23d9b251785 | [
"MIT"
] | permissive | fjiaqi/pylith | 2aa3f7fdbd18f1205a5023f8c6c4182ff533c195 | 67bfe2e75e0a20bb55c93eb98bef7a9b3694523a | refs/heads/main | 2023-09-04T19:24:51.783273 | 2021-10-19T17:01:41 | 2021-10-19T17:01:41 | 373,739,198 | 0 | 0 | MIT | 2021-06-04T06:12:08 | 2021-06-04T06:12:07 | null | UTF-8 | C++ | false | false | 8,338 | hh | // -*- C++ -*-
//
// ----------------------------------------------------------------------
//
// Brad T. Aagaard, U.S. Geological Survey
// Charles A. Williams, GNS Science
// Matthew G. Knepley, University at Buffalo
//
// This code was developed as part of the Computational Infrastructure
// for Geodynamics (http://geodynamics.org).
//
// Copyright (c) 2010-2021 University of California, Davis
//
// See LICENSE.md for license information.
//
// ----------------------------------------------------------------------
//
/** @file libsrc/faults/KinSrcConstRate.hh
*
* @brief C++ implementation of a constant slip rate slip time function.
*/
#if !defined(pylith_faults_kinsrcconstrate_hh)
#define pylith_faults_kinsrcconstrate_hh
// Include directives ---------------------------------------------------
#include "KinSrc.hh"
// KinSrcConstRate ------------------------------------------------------
/** @brief Constant slip rate slip-time function.
*
* Slip time function follows the integral of constant slip rate slip
* time function.
*
* slip = slip_rate * (t - t0) for t >= t0.
* slip_rate = slip_rate for t >= t0.
*
* slip = 0 for t < t0.
* slip_rate = 0 for t < t0.
*/
class pylith::faults::KinSrcConstRate : public KinSrc {
friend class TestKinSrcConstRate; // unit testing
// PUBLIC METHODS ///////////////////////////////////////////////////////
public:
/// Default constructor.
KinSrcConstRate(void);
/// Destructor.
~KinSrcConstRate(void);
/** Slip time function kernel.
*
* The "solution" field s is ignored.
*
* @param[in] dim Spatial dimension.
* @param[in] numS Number of registered subfields in solution field.
* @param[in] numA Number of registered subfields in auxiliary field.
* @param[in] sOff Offset of registered subfields in solution field [numS].
* @param[in] sOff_x Offset of registered subfields in gradient of the solution field [numS].
* @param[in] s Solution field with all subfields.
* @param[in] s_t Time derivative of solution field.
* @param[in] s_x Gradient of solution field.
* @param[in] aOff Offset of registered subfields in auxiliary field [numA]
* @param[in] aOff_x Offset of registered subfields in gradient of auxiliary field [numA]
* @param[in] a Auxiliary field with all subfields.
* @param[in] a_t Time derivative of auxiliary field.
* @param[in] a_x Gradient of auxiliary field.
* @param[in] t Time for residual evaluation.
* @param[in] x Coordinates of point evaluation.
* @param[in] numConstants Number of registered constants.
* @param[in] constants Array of registered constants.
* @param[out] slip [dim].
*/
static
void slipFn(const PylithInt dim,
const PylithInt numS,
const PylithInt numA,
const PylithInt sOff[],
const PylithInt sOff_x[],
const PylithScalar s[],
const PylithScalar s_t[],
const PylithScalar s_x[],
const PylithInt aOff[],
const PylithInt aOff_x[],
const PylithScalar a[],
const PylithScalar a_t[],
const PylithScalar a_x[],
const PylithReal t,
const PylithScalar x[],
const PylithInt numConstants,
const PylithScalar constants[],
PylithScalar slip[]);
/** Slip rate time function kernel.
*
* The "solution" field s is ignored.
*
* @param[in] dim Spatial dimension.
* @param[in] numS Number of registered subfields in solution field.
* @param[in] numA Number of registered subfields in auxiliary field.
* @param[in] sOff Offset of registered subfields in solution field [numS].
* @param[in] sOff_x Offset of registered subfields in gradient of the solution field [numS].
* @param[in] s Solution field with all subfields.
* @param[in] s_t Time derivative of solution field.
* @param[in] s_x Gradient of solution field.
* @param[in] aOff Offset of registered subfields in auxiliary field [numA]
* @param[in] aOff_x Offset of registered subfields in gradient of auxiliary field [numA]
* @param[in] a Auxiliary field with all subfields.
* @param[in] a_t Time derivative of auxiliary field.
* @param[in] a_x Gradient of auxiliary field.
* @param[in] t Time for residual evaluation.
* @param[in] x Coordinates of point evaluation.
* @param[in] numConstants Number of registered constants.
* @param[in] constants Array of registered constants.
* @param[out] slipRate [dim].
*/
static
void slipRateFn(const PylithInt dim,
const PylithInt numS,
const PylithInt numA,
const PylithInt sOff[],
const PylithInt sOff_x[],
const PylithScalar s[],
const PylithScalar s_t[],
const PylithScalar s_x[],
const PylithInt aOff[],
const PylithInt aOff_x[],
const PylithScalar a[],
const PylithScalar a_t[],
const PylithScalar a_x[],
const PylithReal t,
const PylithScalar x[],
const PylithInt numConstants,
const PylithScalar constants[],
PylithScalar slipRate[]);
/** Slip acceleration time function kernel.
*
* The "solution" field s is ignored.
*
* @param[in] dim Spatial dimension.
* @param[in] numS Number of registered subfields in solution field.
* @param[in] numA Number of registered subfields in auxiliary field.
* @param[in] sOff Offset of registered subfields in solution field [numS].
* @param[in] sOff_x Offset of registered subfields in gradient of the solution field [numS].
* @param[in] s Solution field with all subfields.
* @param[in] s_t Time derivative of solution field.
* @param[in] s_x Gradient of solution field.
* @param[in] aOff Offset of registered subfields in auxiliary field [numA]
* @param[in] aOff_x Offset of registered subfields in gradient of auxiliary field [numA]
* @param[in] a Auxiliary field with all subfields.
* @param[in] a_t Time derivative of auxiliary field.
* @param[in] a_x Gradient of auxiliary field.
* @param[in] t Time for residual evaluation.
* @param[in] x Coordinates of point evaluation.
* @param[in] numConstants Number of registered constants.
* @param[in] constants Array of registered constants.
* @param[out] slipAcc [dim].
*/
static
void slipAccFn(const PylithInt dim,
const PylithInt numS,
const PylithInt numA,
const PylithInt sOff[],
const PylithInt sOff_x[],
const PylithScalar s[],
const PylithScalar s_t[],
const PylithScalar s_x[],
const PylithInt aOff[],
const PylithInt aOff_x[],
const PylithScalar a[],
const PylithScalar a_t[],
const PylithScalar a_x[],
const PylithReal t,
const PylithScalar x[],
const PylithInt numConstants,
const PylithScalar constants[],
PylithScalar slipAcc[]);
// PROTECTED METHODS //////////////////////////////////////////////////
protected:
/** Setup auxiliary subfields (discretization and query fns).
*
* @param[in] normalizer Normalizer for nondimensionalizing values.
* @param[in] cs Coordinate system for problem.
*/
void _auxiliaryFieldSetup(const spatialdata::units::Nondimensional& normalizer,
const spatialdata::geocoords::CoordSys* cs);
// NOT IMPLEMENTED //////////////////////////////////////////////////////
private:
KinSrcConstRate(const KinSrcConstRate&); ///< Not implemented
const KinSrcConstRate& operator=(const KinSrcConstRate&); ///< Not implemented
}; // class KinSrcConstRate
#endif // pylith_faults_kinsrcconstrate_hh
// End of file
| [
"[email protected]"
] | |
af86ffbc91d69576af5dcf7b2c35539bfd52717e | 77c3bd9cc21a47f0dc5b2de26b425e9131b78ab3 | /Game301Engine/GameEngine.cpp | 9aed9808e02abafc7e12dd4798bc4b627504509e | [] | no_license | AJPuntillo/Game301Engine | 30772ef6a9ad563a52af2cc4217b5c87f39502c9 | 2406f872e9236caeb04106c213365f57fc574c78 | refs/heads/master | 2021-09-05T08:59:32.135651 | 2018-01-25T21:06:56 | 2018-01-25T21:06:56 | 103,178,629 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,354 | cpp | #include "GameEngine.h"
using namespace ENGINE;
//Initialize static variables
GameEngine* GameEngine::m_gameEngineInstance = nullptr;
Window* GameEngine::m_window(nullptr);
GameEngine::GameEngine()
{
//Empty
}
GameEngine::~GameEngine()
{
onEnd();
}
GameEngine* GameEngine::getInstance()
{
//Check to see if it has already been initialized
if (m_gameEngineInstance == nullptr) {
m_gameEngineInstance = new GameEngine();
}
return m_gameEngineInstance;
}
bool GameEngine::onStart()
{
m_window = new Window();
m_window->initialize("Demo", 800, 600, 0);
m_camera = new Camera();
m_inputManager = new InputManager();
m_sceneGraph = new SceneGraph();
//Check if the game interface exists
if (gameInterface != nullptr) {
if (gameInterface->onStart() == false) {
return false;
}
}
else {
return false;
}
return true;
}
void GameEngine::onEnd()
{
exit(0);
m_window->shutdown();
m_window = nullptr;
SDL_Quit();
}
void GameEngine::run()
{
//Set the isRunning state to true the first time this method is called
m_isRunning = true;
//Maintain the game loop while this engine is running
while (m_isRunning) {
processInput();
update();
preRender();
render();
postRender();
logMessage();
}
}
void GameEngine::processInput()
{
//Update the InputManager
m_inputManager->update();
SDL_Event evnt;
//We toss in the event as a reference so that SDL_PollEvent will modifiy it internally and
//then leave it for us to look at.
while (SDL_PollEvent(&evnt)) {
if (evnt.type == SDL_QUIT)
m_isRunning = false;
if (evnt.type == SDL_KEYDOWN)
m_inputManager->pressKey(evnt.key.keysym.sym);
if (evnt.type == SDL_KEYUP)
m_inputManager->releaseKey(evnt.key.keysym.sym);
if (evnt.type == SDL_MOUSEBUTTONDOWN)
m_inputManager->pressKey(evnt.key.keysym.sym);
if (evnt.type == SDL_MOUSEBUTTONUP)
m_inputManager->releaseKey(evnt.key.keysym.sym);
if (evnt.type == SDL_MOUSEMOTION)
m_inputManager->setMouseCoords(evnt.motion.x, evnt.motion.y);
}
gameInterface->processInput();
}
void GameEngine::update()
{
gameInterface->update();
}
void GameEngine::preRender()
{
gameInterface->preRender();
}
void GameEngine::render()
{
gameInterface->render();
}
void GameEngine::postRender()
{
gameInterface->postRender();
}
void GameEngine::logMessage()
{
gameInterface->logMessage();
} | [
"[email protected]"
] | |
2fd6ef2c367b5fa2245a8144e98e1696dacf1010 | 63c839e756e112a3ae939ae4a80d77c58b851d0a | /Plugins/GameLiftClientSDK/Source/GameLiftClientSDK/Public/aws/gamelift/model/ValidateMatchmakingRuleSetRequest.h | 32280c18026c3249b1bf2214b7620454e7191d96 | [
"Apache-2.0"
] | permissive | ArifZx/GameliftClientPlugin | 5ad23b69514662ae8ef7d573298c04e8a9535e13 | 14f53de4c392e6aea89609b33d0ef4549738be29 | refs/heads/master | 2020-11-24T13:07:48.006998 | 2019-12-16T07:08:55 | 2019-12-16T07:08:55 | 228,158,770 | 2 | 1 | null | 2019-12-16T01:56:40 | 2019-12-15T09:23:42 | C++ | UTF-8 | C++ | false | false | 3,733 | h | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#pragma once
#include <aws/gamelift/GameLift_EXPORTS.h>
#include <aws/gamelift/GameLiftRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace GameLift
{
namespace Model
{
/**
* <p>Represents the input for a request action.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/gamelift-2015-10-01/ValidateMatchmakingRuleSetInput">AWS
* API Reference</a></p>
*/
class AWS_GAMELIFT_API ValidateMatchmakingRuleSetRequest : public GameLiftRequest
{
public:
ValidateMatchmakingRuleSetRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "ValidateMatchmakingRuleSet"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>Collection of matchmaking rules to validate, formatted as a JSON string.</p>
*/
inline const Aws::String& GetRuleSetBody() const{ return m_ruleSetBody; }
/**
* <p>Collection of matchmaking rules to validate, formatted as a JSON string.</p>
*/
inline bool RuleSetBodyHasBeenSet() const { return m_ruleSetBodyHasBeenSet; }
/**
* <p>Collection of matchmaking rules to validate, formatted as a JSON string.</p>
*/
inline void SetRuleSetBody(const Aws::String& value) { m_ruleSetBodyHasBeenSet = true; m_ruleSetBody = value; }
/**
* <p>Collection of matchmaking rules to validate, formatted as a JSON string.</p>
*/
inline void SetRuleSetBody(Aws::String&& value) { m_ruleSetBodyHasBeenSet = true; m_ruleSetBody = std::move(value); }
/**
* <p>Collection of matchmaking rules to validate, formatted as a JSON string.</p>
*/
inline void SetRuleSetBody(const char* value) { m_ruleSetBodyHasBeenSet = true; m_ruleSetBody.assign(value); }
/**
* <p>Collection of matchmaking rules to validate, formatted as a JSON string.</p>
*/
inline ValidateMatchmakingRuleSetRequest& WithRuleSetBody(const Aws::String& value) { SetRuleSetBody(value); return *this;}
/**
* <p>Collection of matchmaking rules to validate, formatted as a JSON string.</p>
*/
inline ValidateMatchmakingRuleSetRequest& WithRuleSetBody(Aws::String&& value) { SetRuleSetBody(std::move(value)); return *this;}
/**
* <p>Collection of matchmaking rules to validate, formatted as a JSON string.</p>
*/
inline ValidateMatchmakingRuleSetRequest& WithRuleSetBody(const char* value) { SetRuleSetBody(value); return *this;}
private:
Aws::String m_ruleSetBody;
bool m_ruleSetBodyHasBeenSet;
};
} // namespace Model
} // namespace GameLift
} // namespace Aws
| [
"[email protected]"
] | |
6e867b855588ccc01496d83109957ec8c083229e | 5838cf8f133a62df151ed12a5f928a43c11772ed | /NT/base/win32/fusion/utils/io.cpp | 026f7c1381140e5f518e22cb76d2bf36eccba0ae | [] | no_license | proaholic/Win2K3 | e5e17b2262f8a2e9590d3fd7a201da19771eb132 | 572f0250d5825e7b80920b6610c22c5b9baaa3aa | refs/heads/master | 2023-07-09T06:15:54.474432 | 2021-08-11T09:09:14 | 2021-08-11T09:09:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 37,720 | cpp | #include "stdinc.h"
#include "FusionBuffer.h"
#include "Util.h"
#include "FusionHandle.h"
#define SXSP_MOVE_FILE_FLAG_COMPRESSION_AWARE 1
BOOL
SxspDoesFileExist(
DWORD dwFlags,
PCWSTR pszFileName,
bool &rfExists
)
{
BOOL fSuccess = FALSE;
FN_TRACE_WIN32(fSuccess);
const bool fCheckFileOnly = ((dwFlags & SXSP_DOES_FILE_EXIST_FLAG_CHECK_FILE_ONLY) != 0);
const bool fCheckDirectoryOnly = ((dwFlags & SXSP_DOES_FILE_EXIST_FLAG_CHECK_DIRECTORY_ONLY) != 0);
DWORD dwFileOrDirectoryExists = 0;
DWORD dwFlags2 = 0;
if (&rfExists != NULL)
{
rfExists = false;
}
PARAMETER_CHECK(pszFileName != NULL);
PARAMETER_CHECK(&rfExists != NULL);
PARAMETER_CHECK((dwFlags & ~(SXSP_DOES_FILE_EXIST_FLAG_COMPRESSION_AWARE | SXSP_DOES_FILE_EXIST_FLAG_INCLUDE_NETWORK_ERRORS | SXSP_DOES_FILE_EXIST_FLAG_CHECK_DIRECTORY_ONLY | SXSP_DOES_FILE_EXIST_FLAG_CHECK_FILE_ONLY)) == 0);
//
// one or neither of these can be set, but not both
//
PARAMETER_CHECK(!(fCheckFileOnly && fCheckDirectoryOnly));
if ((dwFlags & SXSP_DOES_FILE_EXIST_FLAG_COMPRESSION_AWARE) != 0)
dwFlags2 |= SXSP_DOES_FILE_OR_DIRECTORY_EXIST_FLAG_COMPRESSION_AWARE;
if ((dwFlags & SXSP_DOES_FILE_EXIST_FLAG_INCLUDE_NETWORK_ERRORS) != 0)
dwFlags2 |= SXSP_DOES_FILE_OR_DIRECTORY_EXIST_FLAG_INCLUDE_NETWORK_ERRORS;
IFW32FALSE_EXIT(SxspDoesFileOrDirectoryExist(dwFlags2, pszFileName, dwFileOrDirectoryExists));
if (fCheckFileOnly)
{
rfExists = (dwFileOrDirectoryExists == SXSP_DOES_FILE_OR_DIRECTORY_EXIST_DISPOSITION_FILE_EXISTS);
}
else if (fCheckDirectoryOnly)
{
rfExists = (dwFileOrDirectoryExists == SXSP_DOES_FILE_OR_DIRECTORY_EXIST_DISPOSITION_DIRECTORY_EXISTS);
}
else
{
rfExists = (dwFileOrDirectoryExists != SXSP_DOES_FILE_OR_DIRECTORY_EXIST_DISPOSITION_NEITHER_EXISTS);
}
fSuccess = TRUE;
Exit:
return fSuccess;
}
BOOL
SxspDoesFileOrDirectoryExist(
DWORD dwFlags,
PCWSTR pszFileName,
OUT DWORD &rdwDisposition
)
{
BOOL fSuccess = FALSE;
FN_TRACE_WIN32(fSuccess);
PWSTR pszActualSource = NULL;
DWORD dwFileOrDirectoryExists = 0;
if (&rdwDisposition != NULL)
{
rdwDisposition = SXSP_DOES_FILE_OR_DIRECTORY_EXIST_DISPOSITION_NEITHER_EXISTS;
}
PARAMETER_CHECK(&rdwDisposition != NULL);
PARAMETER_CHECK(pszFileName != NULL);
PARAMETER_CHECK((dwFlags & ~(SXSP_DOES_FILE_OR_DIRECTORY_EXIST_FLAG_COMPRESSION_AWARE | SXSP_DOES_FILE_OR_DIRECTORY_EXIST_FLAG_INCLUDE_NETWORK_ERRORS)) == 0);
if (dwFlags & SXSP_DOES_FILE_OR_DIRECTORY_EXIST_FLAG_COMPRESSION_AWARE)
{
DWORD dwTemp = 0;
DWORD dwSourceFileSize = 0;
DWORD dwTargetFileSize = 0;
UINT uiCompressionType = 0;
dwTemp = ::SetupGetFileCompressionInfoW(
pszFileName,
&pszActualSource,
&dwSourceFileSize,
&dwTargetFileSize,
&uiCompressionType);
if (pszActualSource != NULL)
{
::LocalFree((HLOCAL) pszActualSource);
pszActualSource = NULL;
}
//
// don't care about ERROR_PATH_NOT_FOUND or network errors here?
//
if (dwTemp == ERROR_FILE_NOT_FOUND)
{
// This case is OK. No error to return...
}
else if (dwTemp != ERROR_SUCCESS)
{
ORIGINATE_WIN32_FAILURE_AND_EXIT(SetupGetFileCompressionInfoW, dwTemp);
}
else
{
rdwDisposition = SXSP_DOES_FILE_OR_DIRECTORY_EXIST_DISPOSITION_FILE_EXISTS;
}
}
else
{
const DWORD dwAttribute = ::GetFileAttributesW(pszFileName);
if (dwAttribute == INVALID_FILE_ATTRIBUTES)
{
const DWORD dwLastError = ::FusionpGetLastWin32Error();
const bool fUseNetwork = ((dwFlags & SXSP_DOES_FILE_OR_DIRECTORY_EXIST_FLAG_INCLUDE_NETWORK_ERRORS) != 0);
//
// Apologies for the wierd logic, but this was simpler to write.
//
if ((dwLastError == ERROR_SUCCESS) ||
(dwLastError == ERROR_FILE_NOT_FOUND) ||
(dwLastError == ERROR_PATH_NOT_FOUND) ||
(fUseNetwork && (dwLastError == ERROR_BAD_NETPATH)) ||
(fUseNetwork && (dwLastError == ERROR_BAD_NET_NAME)))
{
//
// ok, do nothing
//
}
else
{
ORIGINATE_WIN32_FAILURE_AND_EXIT(GetFileAttributesW, dwLastError);
}
}
else
{
if ((dwAttribute & FILE_ATTRIBUTE_DIRECTORY) != 0)
{
rdwDisposition = SXSP_DOES_FILE_OR_DIRECTORY_EXIST_DISPOSITION_DIRECTORY_EXISTS;
}
else
{
rdwDisposition = SXSP_DOES_FILE_OR_DIRECTORY_EXIST_DISPOSITION_FILE_EXISTS;
}
}
}
fSuccess = TRUE;
Exit:
if (pszActualSource != NULL)
{
CSxsPreserveLastError ple;
::LocalFree((HLOCAL) pszActualSource);
ple.Restore();
}
return fSuccess;
}
// NTRAID#NTBUG9 - 589828 - 2002/03/26 - xiaoyuw:
// the current implementation assumes that the input path always begins with "c:\" or "\\machinename"
// So if we want to support path beginning with "\\?\", more code need added....
BOOL
FusionpCreateDirectories(
PCWSTR pszDirectory,
SIZE_T cchDirectory
)
/*-----------------------------------------------------------------------------
like ::CreateDirectoryW, but will create the parent directories as needed;
origin of this code
\\lang5\V5.PRO\src\ide5\shell\path.cpp ("MakeDirectory")
\\kingbird\vseedev\src\vsee98\vsee\pkgs\scc\path.cpp ("MakeDirectory")
then ported to \\kingbird\vseedev\src\vsee70\pkgs\scc\path.cpp ("MakeDirectory")
then moved to \vsee\lib\io\io.cpp, converted to use exceptions ("NVseeLibIo::FCreateDirectories")
then copied to fusion\dll\whistler\util.cpp, exceptions converted to BOOL/LastError ("SxspCreateDirectories")
-----------------------------------------------------------------------------*/
{
BOOL fSuccess = FALSE;
FN_TRACE_WIN32(fSuccess);
CStringBuffer strBuffer;
DWORD dwAttribs = 0;
PARAMETER_CHECK(pszDirectory != NULL);
PARAMETER_CHECK(cchDirectory != 0);
IFW32FALSE_EXIT(strBuffer.Win32Assign(pszDirectory, cchDirectory));
//::CreateDirectoryW will do the wrong thing if strBuffer has a trailing slash,
//so we'll strip it off if it's there. (see bug VS7:31319) [MSantoro]
IFW32FALSE_EXIT(strBuffer.Win32RemoveTrailingPathSeparators());
// cover the two common cases of its parent exists or it exists
if ((!::CreateDirectoryW(strBuffer, NULL)) && (::FusionpGetLastWin32Error() != ERROR_ALREADY_EXISTS))
{
CStringBufferAccessor sbaBuffer;
// now the slow path
//
// Try to create the subdirectories (if any) named in the path.
//
sbaBuffer.Attach(&strBuffer);
WCHAR* pStart = sbaBuffer.GetBufferPtr();
WCHAR* pCurr = pStart;
// skip the leading drive or \\computer\share
// this way we don't try to create C: in trying to create C:\
// or \\computer\share in trying to create \\computer\share\dir
// FUTURE This is not ideal.. (need NVseeLibPath)
if (pCurr[0] != 0)
{
const static WCHAR rgchAZaz[] = L"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
C_ASSERT(NUMBER_OF(rgchAZaz) == 53);
if ((pCurr[1] == L':') &&
CUnicodeCharTraits::IsPathSeparator(pCurr[2]) &&
(wcschr(rgchAZaz, pCurr[0]) != NULL))
{
pCurr += 3;
}
else if (CUnicodeCharTraits::IsPathSeparator(pCurr[0]) &&
CUnicodeCharTraits::IsPathSeparator(pCurr[1]))
{
// skip to after the share, since we presumably can't create shares with CreateDirectory
pCurr += wcsspn(pCurr, CUnicodeCharTraits::PathSeparators()); // skip leading two slashes
pCurr += wcscspn(pCurr, CUnicodeCharTraits::PathSeparators()); // skip computer name
pCurr += wcsspn(pCurr, CUnicodeCharTraits::PathSeparators()); // skip slashes after computer name
pCurr += wcscspn(pCurr, CUnicodeCharTraits::PathSeparators()); // skip share name
pCurr += wcsspn(pCurr, CUnicodeCharTraits::PathSeparators()); // skip slashes after share name
}
}
while (*pCurr != L'\0')
{
pCurr += wcscspn(pCurr, CUnicodeCharTraits::PathSeparators()); // skip to next slash
if (*pCurr != 0)
{
// [a-JayK, JayKrell April 2000] Why not just assume it's a backslash?
WCHAR chSaved = *pCurr;
*pCurr = 0;
if (!::CreateDirectoryW(pStart, NULL))
{
// In trying to create c:\foo\bar,
// we try to create c:\foo, which fails, but is ok.
const DWORD dwLastError = ::FusionpGetLastWin32Error();
bool fExist;
IFW32FALSE_EXIT(::SxspDoesFileExist(SXSP_DOES_FILE_EXIST_FLAG_CHECK_DIRECTORY_ONLY, pStart, fExist));
if (!fExist)
{
::SetLastError(ERROR_PATH_NOT_FOUND);
goto Exit;
}
}
*pCurr = chSaved;
pCurr += 1;
}
}
IFW32FALSE_ORIGINATE_AND_EXIT(::CreateDirectoryW(pStart, NULL));
}
//
// Try again to see if the given directory exists and
// return true if successful.
//
bool fExist;
IFW32FALSE_EXIT(::SxspDoesFileExist(SXSP_DOES_FILE_EXIST_FLAG_CHECK_DIRECTORY_ONLY, strBuffer, fExist));
if (!fExist)
{
::SetLastError(ERROR_PATH_NOT_FOUND);
goto Exit;
}
fSuccess = TRUE;
Exit:
return fSuccess;
}
VOID
CFusionDirectoryDifference::DbgPrint(
PCWSTR dir1,
PCWSTR dir2
)
{
#if DBG // { {
switch (m_e)
{
case eEqual:
::FusionpDbgPrintEx(
FUSION_DBG_LEVEL_ERROR,
"SXS.DLL: The directories %ls and %ls match size-wise recursively\n",
dir1,
dir2);
break;
case eExtraOrMissingFile:
::FusionpDbgPrintEx(
FUSION_DBG_LEVEL_ERROR,
"SXS.DLL: The directories %ls and %ls mismatch, the file %ls is only in one of them.\n",
dir1,
dir2,
static_cast<PCWSTR>(*m_pstrExtraOrMissingFile));
break;
case eMismatchedFileSize:
::FusionpDbgPrintEx(
FUSION_DBG_LEVEL_ERROR,
"SXS.DLL: The directories %ls and %ls mismatch, file:%ls, size:%I64d, file:%ls, size:%I64d.\n",
dir1,
dir2,
static_cast<PCWSTR>(*m_pstrMismatchedSizeFile1),
m_nMismatchedFileSize1,
static_cast<PCWSTR>(*m_pstrMismatchedSizeFile2),
m_nMismatchedFileSize2);
break;
case eMismatchedFileCount:
::FusionpDbgPrintEx(
FUSION_DBG_LEVEL_ERROR,
"SXS.DLL: The directories %ls and %ls mismatch in number of files,"
"subdirectory %ls has %I64d files, subdirectory %ls has %I64d files\n",
dir1,
dir2,
static_cast<PCWSTR>(*m_pstrMismatchedCountDir1),
m_nMismatchedFileCount1,
static_cast<PCWSTR>(*m_pstrMismatchedCountDir2),
m_nMismatchedFileCount2);
break;
case eFileDirectoryMismatch:
::FusionpDbgPrintEx(
FUSION_DBG_LEVEL_ERROR,
"SXS.DLL: The directories %ls and %ls mismatch, "
"%ls is a file, %ls is a directory.\n",
dir1,
dir2,
static_cast<PCWSTR>(*m_pstrFile),
static_cast<PCWSTR>(*m_pstrDirectory));
break;
}
#endif // } }
}
/*-----------------------------------------------------------------------------*/
// NTRAID#NTBUG9 - 589828 - 2002/03/26 - xiaoyuw:
// if an input path containing both "\" and "/", the implementation would take it as
// a valid path;
int __cdecl
CFusionFilePathAndSize::QsortComparePath(
const void* pvx,
const void* pvy
)
{
const CFusionFilePathAndSize* px = reinterpret_cast<const CFusionFilePathAndSize*>(pvx);
const CFusionFilePathAndSize* py = reinterpret_cast<const CFusionFilePathAndSize*>(pvy);
int i =
::FusionpCompareStrings(
px->m_path,
px->m_path.Cch(),
py->m_path,
py->m_path.Cch(),
TRUE);
return i;
}
int __cdecl
CFusionFilePathAndSize::QsortIndirectComparePath(
const void* ppvx,
const void* ppvy
)
{
const void* pv = *reinterpret_cast<void const* const*>(ppvx);
const void* py = *reinterpret_cast<void const* const*>(ppvy);
int i = QsortComparePath(pv, py);
return i;
}
/*-----------------------------------------------------------------------------
See FusionpCompareDirectoriesSizewiseRecursively for what this does;
this function exists to reduce the stack usage of
FusionpCompareDirectoriesSizewiseRecursively.
-----------------------------------------------------------------------------*/
static BOOL
FusionpCompareDirectoriesSizewiseRecursivelyHelper(
CFusionDirectoryDifference *pResult,
CBaseStringBuffer &rdir1,
CBaseStringBuffer &rdir2,
WIN32_FIND_DATAW &rwfd
)
{
BOOL fSuccess = FALSE;
FN_TRACE_WIN32(fSuccess);
// either or both directories can be on FAT, we can't assume that FindFirstFile
// returns entries in any particular order, so we first enumerate one directory
// entirely, storing the leaf names in an array, sort the array, then
// walk the second directory doing a binary search in the first array
// if the file is not in the array, we have an extra on one side
// we count the elements in both directories, if the counts don't match,
// we have a mismatch
typedef CFusionArray<CFusionFilePathAndSize> CDirEntries;
CDirEntries dir1Entries;
typedef CFusionArray<CFusionFilePathAndSize*> CIndirectDirEntries;
CIndirectDirEntries indirectDir1Entries;
CFusionFilePathAndSize* pFoundDirEntry = NULL;
CFusionFilePathAndSize** ppFoundDirEntry = NULL;
CFindFile findFile;
const SIZE_T dirSlash1Length = rdir1.Cch();
const SIZE_T dirSlash2Length = rdir2.Cch();
CFusionFilePathAndSize pathAndSize;
CFusionFilePathAndSize* pPathAndSize = &pathAndSize;
INT count1 = 0; // seperate from the array, because this includes directories, and the array does not
INT count2 = 0;
DWORD dwAttributes = 0;
IFW32FALSE_EXIT(rdir1.Win32Append(L"*", 1));
IFW32FALSE_EXIT(findFile.Win32FindFirstFile(rdir1, &rwfd));
do
{
if (FusionpIsDotOrDotDot(rwfd.cFileName))
continue;
++count1;
if ((rwfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0)
{
rdir1.Left(dirSlash1Length);
rdir2.Left(dirSlash2Length);
IFW32FALSE_EXIT(rdir1.Win32Append(rwfd.cFileName, ::wcslen(rwfd.cFileName)));
IFW32FALSE_EXIT(rdir1.Win32EnsureTrailingPathSeparator());
IFW32FALSE_EXIT(rdir2.Win32Append(rwfd.cFileName, ::wcslen(rwfd.cFileName)));
bool fExist;
IFW32FALSE_EXIT(SxspDoesFileExist(0, rdir2, fExist));
if (!fExist)
{
IFW32FALSE_EXIT(pResult->m_str1.Win32Assign(rdir1, dirSlash1Length));
IFW32FALSE_EXIT(pResult->m_str1.Win32Append(rwfd.cFileName, ::wcslen(rwfd.cFileName)));
pResult->m_e = CFusionDirectoryDifference::eExtraOrMissingFile;
fSuccess = TRUE;
goto Exit;
}
IFW32FALSE_EXIT(SxspGetFileAttributesW(rdir2, dwAttributes));
if ((dwAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
{
SIZE_T cchTemp = ::wcslen(rwfd.cFileName);
IFW32FALSE_EXIT(pResult->m_pstrDirectory->Win32Assign(rdir1, dirSlash1Length));
IFW32FALSE_EXIT(pResult->m_pstrDirectory->Win32Append(rwfd.cFileName, cchTemp));
IFW32FALSE_EXIT(pResult->m_pstrFile->Win32Assign(rdir2, dirSlash2Length));
IFW32FALSE_EXIT(pResult->m_pstrFile->Win32Append(rwfd.cFileName, cchTemp));
pResult->m_e = CFusionDirectoryDifference::eFileDirectoryMismatch;
fSuccess = TRUE;
goto Exit;
}
IFW32FALSE_EXIT(rdir2.Win32EnsureTrailingPathSeparator());
IFW32FALSE_EXIT(
::FusionpCompareDirectoriesSizewiseRecursivelyHelper(
pResult,
rdir1,
rdir2,
rwfd));
if (pResult->m_e != CFusionDirectoryDifference::eEqual)
{
fSuccess = TRUE;
goto Exit;
}
}
else
{
IFW32FALSE_EXIT(pathAndSize.m_path.Win32Assign(rwfd.cFileName, ::wcslen(rwfd.cFileName)));
pathAndSize.m_size = ::FusionpFileSizeFromFindData(rwfd);
IFW32FALSE_EXIT(dir1Entries.Win32Append(pathAndSize));
}
} while (FindNextFileW(findFile, &rwfd));
if (::FusionpGetLastWin32Error() != ERROR_NO_MORE_FILES)
{
goto Exit;
}
// dir1Entries cannot be sorted directly because it contains CStringBuffers.
// first initialize the index to be an identity
IFW32FALSE_EXIT(indirectDir1Entries.Win32SetSize(dir1Entries.GetSize()));
ULONG i;
for (i = 0 ; i != dir1Entries.GetSize() ; ++i)
{
indirectDir1Entries[i] = &dir1Entries[i];
}
qsort(
&*indirectDir1Entries.Begin(),
indirectDir1Entries.GetSize(),
sizeof(CIndirectDirEntries::ValueType),
CFusionFilePathAndSize::QsortIndirectComparePath);
IFW32FALSE_EXIT(findFile.Win32Close());
rdir2.Left(dirSlash2Length);
IFW32FALSE_EXIT(rdir2.Win32Append(L"*", 1));
IFW32FALSE_EXIT(findFile.Win32FindFirstFile(rdir2, &rwfd));
do
{
if (::FusionpIsDotOrDotDot(rwfd.cFileName))
continue;
++count2;
if ((rwfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0)
continue;
IFW32FALSE_EXIT(pathAndSize.m_path.Win32Assign(rwfd.cFileName, ::wcslen(rwfd.cFileName)));
pathAndSize.m_size = ::FusionpFileSizeFromFindData(rwfd);
ppFoundDirEntry = reinterpret_cast<CFusionFilePathAndSize**>(::bsearch(
&pPathAndSize,
&*indirectDir1Entries.Begin(),
indirectDir1Entries.GetSize(),
sizeof(CIndirectDirEntries::ValueType),
CFusionFilePathAndSize::QsortIndirectComparePath));
pFoundDirEntry = (ppFoundDirEntry != NULL) ? *ppFoundDirEntry : NULL;
if (pFoundDirEntry == NULL)
{
IFW32FALSE_EXIT(pResult->m_str1.Win32Assign(rdir2, dirSlash2Length));
IFW32FALSE_EXIT(pResult->m_str1.Win32Append(rwfd.cFileName, ::wcslen(rwfd.cFileName)));
pResult->m_e = CFusionDirectoryDifference::eExtraOrMissingFile;
fSuccess = TRUE;
goto Exit;
}
if (pFoundDirEntry->m_size != pathAndSize.m_size)
{
SIZE_T cchTemp = ::wcslen(rwfd.cFileName);
IFW32FALSE_EXIT(pResult->m_str1.Win32Assign(rdir1, dirSlash1Length));
IFW32FALSE_EXIT(pResult->m_str1.Win32Append(rwfd.cFileName, cchTemp));
pResult->m_nMismatchedFileSize1 = pFoundDirEntry->m_size;
IFW32FALSE_EXIT(pResult->m_str2.Win32Assign(rdir2, dirSlash2Length));
IFW32FALSE_EXIT(pResult->m_str2.Win32Append(rwfd.cFileName, cchTemp));
pResult->m_nMismatchedFileSize2 = pathAndSize.m_size;
pResult->m_e = CFusionDirectoryDifference::eMismatchedFileSize;
fSuccess = TRUE;
goto Exit;
}
} while (::FindNextFileW(findFile, &rwfd));
if (::FusionpGetLastWin32Error() != ERROR_NO_MORE_FILES)
goto Exit;
if (count1 != count2)
{
IFW32FALSE_EXIT(pResult->m_str1.Win32Assign(rdir1, dirSlash1Length - 1));
IFW32FALSE_EXIT(pResult->m_str2.Win32Assign(rdir2, dirSlash2Length - 1));
pResult->m_nMismatchedFileCount1 = count1;
pResult->m_nMismatchedFileCount2 = count2;
pResult->m_e = CFusionDirectoryDifference::eMismatchedFileCount;
fSuccess = TRUE;
goto Exit;
}
IFW32FALSE_EXIT(findFile.Win32Close());
pResult->m_e = CFusionDirectoryDifference::eEqual;
fSuccess = TRUE;
Exit:
// restore the paths for our caller
rdir1.Left(dirSlash1Length);
rdir2.Left(dirSlash2Length);
return fSuccess;
}
/*-----------------------------------------------------------------------------
walk dirSlash1 and dirSlash2 recursively
for each file in either tree, see if it is in the other tree
at the same analogous position, and has the same size
if all files are present in both trees, no extra in either tree,
all with same size, return true
if any files are in one tree but not the other, or vice versa, or any
sizes mis match, return false
the algorithm short circuits
but it also does a depth first recursion
-----------------------------------------------------------------------------*/
BOOL
FusionpCompareDirectoriesSizewiseRecursively(
CFusionDirectoryDifference* pResult,
const CBaseStringBuffer &rdir1,
const CBaseStringBuffer &rdir2
)
{
/*
security issue marker
large frame -- over 1500 bytes
and worse than that, indefinite recursion
*/
BOOL fSuccess = FALSE;
FN_TRACE_WIN32(fSuccess);
// only hog one stack frame with these large variables, rather than
// putting them in the recursive function
WIN32_FIND_DATAW wfd = {0};
CStringBuffer mutableDir1;
CStringBuffer mutableDir2;
pResult->m_e = pResult->eEqual;
IFW32FALSE_EXIT(mutableDir1.Win32Assign(rdir1, rdir1.Cch()));
IFW32FALSE_EXIT(mutableDir1.Win32EnsureTrailingPathSeparator());
IFW32FALSE_EXIT(mutableDir2.Win32Assign(rdir2, rdir2.Cch()));
IFW32FALSE_EXIT(mutableDir2.Win32EnsureTrailingPathSeparator());
// if either directory is a subdirectory of the other,
// (or a subdir of a subdir, any generation descendant)
// return an error; we could also interpret this as unequal,
// since they can't be equal, or we could do the comparison
// but not recurse on the subdir that is also a root;
//
// must do this check after the slashes are in place, because
// "c:\food" is not a subdir of "c:\foo", but "c:\foo\d" is a subdir of "c:\foo\"
// (quotes avoid backslash line continuation)
PARAMETER_CHECK(_wcsnicmp(mutableDir1, mutableDir2, mutableDir1.Cch()) != 0);
PARAMETER_CHECK(_wcsnicmp(mutableDir1, mutableDir2, mutableDir2.Cch()) != 0);
IFW32FALSE_EXIT(
::FusionpCompareDirectoriesSizewiseRecursivelyHelper(
pResult,
mutableDir1,
mutableDir2,
wfd));
fSuccess = TRUE;
Exit:
return fSuccess;
}
static BOOL
IsStarOrStarDotStar(
PCWSTR str
)
{
// NTRAID#NTBUG9 - 589828 - 2002/03/26 - xiaoyuw:
// better use WCHAR instead of CHAR for the following char constant.
return (str[0] == '*'
&& (str[1] == 0 || (str[1] == '.' && str[2] == '*' && str[3] == 0)));
}
CDirWalk::ECallbackResult
CDirWalk::WalkHelper(
)
{
#if DBG
#define SET_LINE() Line = __LINE__
ULONG Line = 0;
#else
#define SET_LINE() /* nothing */
#endif
const PCWSTR* fileFilter = NULL;
BOOL fGotAll = FALSE;
BOOL fThisIsAll = FALSE;
CFindFile hFind;
SIZE_T directoryLength = m_strParent.Cch();
ECallbackResult result = eKeepWalking;
DWORD dwWalkDirFlags = 0;
::ZeroMemory(&m_fileData, sizeof(m_fileData));
result |= m_callback(eBeginDirectory, this, dwWalkDirFlags);
if (result & (eError | eSuccess))
{
SET_LINE();
goto Exit;
}
if ((result & eStopWalkingFiles) == 0)
{
for (fileFilter = m_fileFiltersBegin ; fileFilter != m_fileFiltersEnd ; ++fileFilter)
{
//
// FindFirstFile equates *.* with *, so we do too.
//
fThisIsAll = ::IsStarOrStarDotStar(*fileFilter);
fGotAll = fGotAll || fThisIsAll;
if (!m_strParent.Win32EnsureTrailingPathSeparator())
goto Error;
if (!m_strParent.Win32Append(*fileFilter, (*fileFilter != NULL) ? ::wcslen(*fileFilter) : 0))
goto Error;
hFind = ::FindFirstFileW(m_strParent, &m_fileData);
m_strParent.Left(directoryLength);
if (hFind != INVALID_HANDLE_VALUE)
{
do
{
if (::FusionpIsDotOrDotDot(m_fileData.cFileName))
continue;
if (!m_strLastObjectFound.Win32Assign(m_fileData.cFileName, ::wcslen(m_fileData.cFileName)))
{
SET_LINE();
goto Error;
}
//
// we recurse on directories only if we are getting all of them
// otherwise we do them afterward
//
// the order directories are visited is therefore inconsistent, but
// most applications should be happy enough with the eEndDirectory
// notification (to implement rd /q/s)
//
if (m_fileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
{
if (fThisIsAll && (result & eStopWalkingDirectories) == 0)
{
if (!m_strParent.Win32Append("\\", 1))
{
SET_LINE();
goto Error;
}
if (!m_strParent.Win32Append(m_fileData.cFileName, ::wcslen(m_fileData.cFileName)))
{
SET_LINE();
goto Error;
}
result |= WalkHelper();
}
}
else
{
if ((result & eStopWalkingFiles) == 0)
{
dwWalkDirFlags |= SXSP_DIR_WALK_FLAGS_FIND_AT_LEAST_ONE_FILEUNDER_CURRENTDIR;
result |= m_callback(eFile, this, dwWalkDirFlags);
if(result == (eStopWalkingFiles | eStopWalkingDirectories))
dwWalkDirFlags |= SXSP_DIR_WALK_FLAGS_INSTALL_ASSEMBLY_UNDER_CURRECTDIR_SUCCEED;
}
}
m_strParent.Left(directoryLength);
if (result & (eError | eSuccess))
{
SET_LINE();
goto Exit;
}
if (fThisIsAll)
{
if ((result & eStopWalkingDirectories) &&
(result & eStopWalkingFiles))
{
if (!hFind.Win32Close())
{
SET_LINE();
goto Error;
}
SET_LINE();
goto StopWalking;
}
}
else
{
if (result & eStopWalkingFiles)
{
if (!hFind.Win32Close())
{
SET_LINE();
goto Error;
}
SET_LINE();
goto StopWalking;
}
}
} while(::FindNextFileW(hFind, &m_fileData));
if (::FusionpGetLastWin32Error() != ERROR_NO_MORE_FILES)
{
SET_LINE();
goto Error;
}
if (!hFind.Win32Close())
{
SET_LINE();
goto Error;
}
}
}
}
StopWalking:;
//
// make another pass with * to get all directories, if we haven't already
//
if (!fGotAll && (result & eStopWalkingDirectories) == 0)
{
if (!m_strParent.Win32Append("\\*", 2))
{
SET_LINE();
goto Error;
}
hFind = ::FindFirstFileW(m_strParent, &m_fileData);
m_strParent.Left(directoryLength);
if (hFind != INVALID_HANDLE_VALUE)
{
do
{
if (::FusionpIsDotOrDotDot(m_fileData.cFileName))
continue;
if (!m_strLastObjectFound.Win32Assign(m_fileData.cFileName, ::wcslen(m_fileData.cFileName)))
{
SET_LINE();
goto Error;
}
if ((m_fileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
continue;
if (!m_strParent.Win32Append("\\", 1))
{
SET_LINE();
goto Error;
}
if (!m_strParent.Win32Append(m_fileData.cFileName, ::wcslen(m_fileData.cFileName)))
{
SET_LINE();
goto Error;
}
result |= WalkHelper();
m_strParent.Left(directoryLength);
if (result & (eError | eSuccess))
{
SET_LINE();
goto Exit;
}
if (result & eStopWalkingDirectories)
{
SET_LINE();
goto StopWalkingDirs;
}
} while(::FindNextFileW(hFind, &m_fileData));
if (::FusionpGetLastWin32Error() != ERROR_NO_MORE_FILES)
{
SET_LINE();
goto Error;
}
StopWalkingDirs:
if (!hFind.Win32Close())
{
SET_LINE();
goto Error;
}
}
}
::ZeroMemory(&m_fileData, sizeof(m_fileData));
result |= m_callback(eEndDirectory, this, dwWalkDirFlags);
if (result & (eError | eSuccess))
{
SET_LINE();
goto Exit;
}
result = eKeepWalking;
Exit:
if ((result & eStopWalkingDeep) == 0)
{
result &= ~(eStopWalkingFiles | eStopWalkingDirectories);
}
if (result & eError)
{
result |= (eStopWalkingFiles | eStopWalkingDirectories | eStopWalkingDeep);
#if DBG
::FusionpDbgPrintEx(FUSION_DBG_LEVEL_ERROR, "%s(%lu): %s\n", __FILE__, Line, __FUNCTION__);
#endif
}
return result;
Error:
result |= eError;
goto Exit;
#undef SET_LINE
}
CDirWalk::CDirWalk()
{
const static PCWSTR defaultFileFilter[] = { L"*" };
m_fileFiltersBegin = defaultFileFilter;
m_fileFiltersEnd = defaultFileFilter + NUMBER_OF(defaultFileFilter);
}
BOOL
CDirWalk::Walk()
{
BOOL fSuccess = FALSE;
//
// Save off the original path length before we go twiddling m_strParent
//
m_cchOriginalPath = m_strParent.Cch();
ECallbackResult result = WalkHelper();
if (result & eError)
{
if (::FusionpGetLastWin32Error() == ERROR_SUCCESS) // forget to set lasterror ?
::SetLastError(ERROR_INSTALL_FAILURE);
goto Exit;
}
fSuccess = TRUE;
Exit:
return fSuccess;
}
/*-----------------------------------------------------------------------------
helper function to reduce recursive stack size
-----------------------------------------------------------------------------*/
static VOID
SxspDeleteDirectoryHelper(
CBaseStringBuffer &dir,
WIN32_FIND_DATAW &wfd,
DWORD &dwFirstError
)
{
//
// the reason to add this call here is that if installation ends successfully, the directory
// would be
// C:\WINDOWS\WINSXS\INSTALLTEMP\15349016
// +---Manifests
//
// and they are "empty" directories (no files). Manifests is a SH dir so set it to be
// FILE_ATTRIBUTE_NORMAL be more efficient.
//
//
::SetFileAttributesW(dir, FILE_ATTRIBUTE_NORMAL);
if (RemoveDirectoryW(dir)) // empty dir
return;
//
// this is the *only* "valid" reason for DeleteDirectory fail
// but I am not sure about "only"
//
DWORD dwLastError = ::FusionpGetLastWin32Error();
if ( dwLastError != ERROR_DIR_NOT_EMPTY)
{
if (dwFirstError == 0)
dwFirstError = dwLastError;
return;
}
const static WCHAR SlashStar[] = L"\\*";
SIZE_T length = dir.Cch();
CFindFile findFile;
if (!dir.Win32Append(SlashStar, NUMBER_OF(SlashStar) - 1))
{
if (dwFirstError == NO_ERROR)
dwFirstError = ::FusionpGetLastWin32Error();
goto Exit;
}
if (!findFile.Win32FindFirstFile(dir, &wfd))
{
if (dwFirstError == NO_ERROR)
dwFirstError = ::FusionpGetLastWin32Error();
goto Exit;
}
do
{
if (::FusionpIsDotOrDotDot(wfd.cFileName))
continue;
DWORD dwFileAttributes = wfd.dwFileAttributes;
// Trim back to the slash...
dir.Left(length + 1);
if (dir.Win32Append(wfd.cFileName, ::wcslen(wfd.cFileName)))
{
if (dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
{
// recurse
::SxspDeleteDirectoryHelper(dir, wfd, dwFirstError);
}
else
{
if (!DeleteFileW(dir))
{
::SetFileAttributesW(dir, FILE_ATTRIBUTE_NORMAL);
if (!DeleteFileW(dir))
{
if (dwFirstError == NO_ERROR)
{
//
// continue even in delete file ( delete files as much as possible)
// and record the errorCode for first failure
//
dwFirstError = ::FusionpGetLastWin32Error();
}
}
}
}
}
} while (::FindNextFileW(findFile, &wfd));
if (::FusionpGetLastWin32Error() != ERROR_NO_MORE_FILES)
{
if (dwFirstError == NO_ERROR)
dwFirstError = ::FusionpGetLastWin32Error();
}
Exit:
if (!findFile.Win32Close()) // otherwise RemoveDirectory fails
if (dwFirstError == NO_ERROR)
dwFirstError = ::FusionpGetLastWin32Error();
dir.Left(length);
if (!RemoveDirectoryW(dir)) // the dir must be empty and NORMAL_ATTRIBUTE : ready to delete
{
if (dwFirstError == NO_ERROR)
dwFirstError = ::FusionpGetLastWin32Error();
}
}
/*-----------------------------------------------------------------------------
delete a directory recursively, continues upon errors, but returns
FALSE if there were any.
-----------------------------------------------------------------------------*/
BOOL
SxspDeleteDirectory(
const CBaseStringBuffer &dir
)
{
BOOL fSuccess = FALSE;
FN_TRACE_WIN32(fSuccess);
CStringBuffer mutableDir;
WIN32_FIND_DATAW wfd = {0};
DWORD dwFirstError = ERROR_SUCCESS;
IFW32FALSE_EXIT(mutableDir.Win32Assign(dir));
IFW32FALSE_EXIT(mutableDir.Win32RemoveTrailingPathSeparators());
::SxspDeleteDirectoryHelper(
mutableDir,
wfd,
dwFirstError);
//
// Set wFirstError to Teb->LastWin32Error
//
if (dwFirstError != ERROR_SUCCESS)
goto Exit;
fSuccess = TRUE;
//
// Oops, the walker will end up out here with ERROR_NO_MORE_FILES,
// which is a plainly 'good' error. Mask it.
//
FusionpSetLastWin32Error(ERROR_SUCCESS);
Exit:
return fSuccess;
}
BOOL
SxspGetFileAttributesW(
PCWSTR lpFileName,
DWORD &rdwFileAttributes,
DWORD &rdwWin32Error,
SIZE_T cExceptionalWin32Errors,
...
)
{
FN_PROLOG_WIN32
rdwWin32Error = ERROR_SUCCESS;
if ((rdwFileAttributes = ::GetFileAttributesW(lpFileName)) == ((DWORD) -1))
{
SIZE_T i = 0;
va_list ap;
const DWORD dwLastError = ::FusionpGetLastWin32Error();
va_start(ap, cExceptionalWin32Errors);
for (i=0; i<cExceptionalWin32Errors; i++)
{
if (dwLastError == va_arg(ap, DWORD))
{
rdwWin32Error = dwLastError;
break;
}
}
va_end(ap);
if (i == cExceptionalWin32Errors)
{
ORIGINATE_WIN32_FAILURE_AND_EXIT_EX(dwLastError, ("%s(%ls)", "GetFileAttributesW", lpFileName));
}
}
FN_EPILOG
}
BOOL
SxspGetFileAttributesW(
PCWSTR lpFileName,
DWORD &rdwFileAttributes
)
{
DWORD dw = 0;
return ::SxspGetFileAttributesW(lpFileName, rdwFileAttributes, dw, 0);
}
| [
"[email protected]"
] | |
9723c815b16bdc33235152722ed768cb63dd1c42 | 1f429ded528d4309d2d8874e98211690118fc26c | /Win32Project3/cscenemodel.h | 9312ffdf8e85e13621c2d119280413658c611cee | [] | no_license | MandaiRyuta/3KouGoudou | d681d992b73fba7b63744a4c0842d547ada85ead | 598e6a45653a4651af29ebd0b5f529a44297e499 | refs/heads/master | 2020-03-27T02:33:14.994576 | 2018-08-23T04:09:51 | 2018-08-23T04:09:51 | 145,798,303 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,415 | h | #pragma once
#include "main.h"
#include "cscene.h"
#include "colision.h"
#include <string>
class CModel : public CScene
{
private:
MATRIX3DMANAGER::Model* model_;
D3DXMATRIX mtxrotation = {};
D3DXMATRIX mtxtranslasion = {};
D3DXMATRIX mtxscaling = {};
D3DXMATRIX setmtx;
static D3DXMATRIX view_;
static D3DXMATRIX proj_;
std::string filename_;
SphereInfo modelinfo_;
LPD3DXEFFECT effect_;
D3DXHANDLE technique_;
D3DXHANDLE wvp_;
D3DXHANDLE wlp_;
D3DXHANDLE wlpb_;
D3DXHANDLE color_;
D3DXHANDLE direction_;
D3DXHANDLE shadowmap_;
D3DXHANDLE srcmap_;
LPDIRECT3DSURFACE9 pshadowmapz_;
LPDIRECT3DTEXTURE9 pshadowmap_;
LPDIRECT3DSURFACE9 pshadowmapsurf_;
LPDIRECT3DTEXTURE9 pedgemap_;
LPDIRECT3DSURFACE9 pedgemapsurf_;
LPDIRECT3DTEXTURE9 psoftmap_[2];
LPDIRECT3DSURFACE9 psoftmapsurf_[2];
public:
CModel(int Priority,MATRIX3DMANAGER::Model* model, std::string filename)
: model_(model), filename_(filename), CScene(Priority){}
~CModel(){}
public:
void Init() override;
void Update() override;
void Draw() override;
void Uninit() override;
void SetMtxView(D3DXMATRIX view) override;
void SetMtxProj(D3DXMATRIX proj) override;
void SetMtxModel(D3DXMATRIX model) override;
void SetMtxRot(D3DXMATRIX Rot) override;
SphereInfo Set();
public:
static CModel* Create(MATRIX3DMANAGER::Model* model, std::string filename);
}; | [
"[email protected]"
] | |
5f24eb7ef142b12bde071921d6df5fffa7310da6 | db73ca5eeefba36ae73c128caefcff668b70dbb3 | /EarthDefender/jni/Panel.hpp | 440b657024951caf9e9ec71d686a5231989184e3 | [] | no_license | inirion/PUM_Project | 7160b8e1b9ede5b0e3f4f39d4681423644f46bd1 | a2aa7af12cce0268f537a500b6611789ad8af795 | refs/heads/master | 2021-01-23T00:21:28.923274 | 2017-03-21T16:06:08 | 2017-03-21T16:06:08 | 85,724,432 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,507 | hpp | #ifndef PANEL_HPP_
#define PANEL_HPP_
#include <map>
#include <string>
#include <SFML/Graphics.hpp>
#include "Lang.hpp"
#include "Conf.hpp"
#include "Gestures.hpp"
#include "HaveButtons.hpp"
#include "Textable.hpp"
#include "PosReferenceable.hpp"
#include "Textureable.hpp"
#include "Hoverable.hpp"
class Panel:
public sf::Drawable,
public Hoverable,
public Textable,
public PosReferenceable,
public Textureable,
public HaveButtons {
private:
SimpleButton special;
float openValue;
bool opening;
float scroll;
float scrollVelocity;
float scrollStop;
public:
Panel(std::string nameid = "") :
Textable(nameid, 32), Textureable("color.dgray"), openValue(0.0), opening(
false), scroll(0.0f), scrollVelocity(0.0f), scrollStop(0.0f) {
hpr = hprRight;
textCenter = true;
textShift.x = 0.f;
textShift.y = 20.f;
size.x = 200.0f;
size.y = 200.0f;
}
inline void setScrollStop(float s) {
scrollStop = s;
}
inline void close() {
openValue -= 0.1 * Conf::dtime;
opening = false;
}
inline void open() {
opening = true;
}
inline bool isOpened() {
return openValue >= 1.0;
}
inline void setSpecialButton(SimpleButton &btn) {
special = btn;
}
inline SimpleButton &getSpecialButton() {
return special;
}
void update(sf::RenderWindow &rw);// metoda odświeżająca dany obiekt.
void draw(sf::RenderTarget &target, sf::RenderStates states) const;// metoda draw wymagana przy implementacji sf::Drawable(rysowanie obiektów).
};
#endif /* PANEL_HPP_ */
| [
"[email protected]"
] | |
871f1a169da458c506099d937c56e48d7e83eb33 | f4b0a8c93e50b7db55510ba5862d3b298a5183b3 | /src/main.cpp | d694bec980682b702e79df66903cb261614d3dce | [
"MIT"
] | permissive | lch770011/m5paper-practice-lvgl | de1f1e0f8a457589ada4af7a5487fcf72510fc6e | 58b1f0bb232fe03845857e245d884d4b88b22d3c | refs/heads/main | 2023-08-17T12:38:38.834179 | 2021-10-11T09:48:21 | 2021-10-11T09:48:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,570 | cpp | // Copyright (c) 2021 Inaba
// This software is released under the MIT License.
// http://opensource.org/licenses/mit-license.php
#define LGFX_AUTODETECT
#define LGFX_USE_V1
#include <lvgl.h>
#include <M5EPD.h>
#include <LovyanGFX.hpp>
namespace {
constexpr uint16_t screenWidth = 960;
constexpr uint16_t screenHeight = 540;
static lv_disp_draw_buf_t draw_buf;
static lv_color_t buf[screenWidth * 10];
LGFX gfx;
void my_disp_flush(
lv_disp_drv_t* disp, const lv_area_t* area, lv_color_t* color_p) {
const u_long w = area->x2 - area->x1 + 1;
const u_long h = area->y2 - area->y1 + 1;
if (gfx.getStartCount() <= 0) {
gfx.startWrite();
}
gfx.setAddrWindow(area->x1, area->y1, w, h);
gfx.pushPixels(static_cast<uint16_t *>(&color_p->full), w * h);
if (lv_disp_flush_is_last(disp)) {
gfx.endWrite();
}
::lv_disp_flush_ready(disp);
}
void my_touchpad_read(lv_indev_drv_t*, lv_indev_data_t* data) {
M5.TP.update();
if (!M5.TP.isFingerUp()) {
const tp_finger_t finger = M5.TP.readFinger(0);
data->state = LV_INDEV_STATE_PR;
data->point.x = finger.x;
data->point.y = finger.y;
} else {
data->state = LV_INDEV_STATE_REL;
}
}
void btn_event_cb(lv_event_t * e) {
lv_event_code_t code = ::lv_event_get_code(e);
lv_obj_t * btn = ::lv_event_get_target(e);
uint8_t* d = static_cast<uint8_t*>(lv_event_get_user_data(e));
if (code == LV_EVENT_CLICKED) {
*d += 1;
lv_obj_t * label = ::lv_obj_get_child(btn, 0);
::lv_label_set_text_fmt(label, "Button: %d", *d);
}
}
lv_style_t style_btn;
lv_style_t style_btn_pressed;
lv_style_t style_label;
void style_init() {
::lv_style_init(&style_btn);
::lv_style_set_radius(&style_btn, 10);
::lv_style_set_bg_opa(&style_btn, LV_OPA_COVER);
::lv_style_set_bg_color(&style_btn, ::lv_color_white());
::lv_style_set_border_color(&style_btn, ::lv_color_black());
::lv_style_set_border_opa(&style_btn, LV_OPA_COVER);
::lv_style_set_border_width(&style_btn, 2);
// style for the pressed state.
::lv_style_init(&style_btn_pressed);
::lv_style_set_bg_color(&style_btn_pressed, ::lv_color_black());
// label
::lv_style_init(&style_label);
::lv_style_set_text_font(&style_label, &lv_font_montserrat_42);
}
void create_objects() {
style_init();
static uint8_t data;
lv_obj_t * btn = ::lv_btn_create(::lv_scr_act());
::lv_obj_remove_style_all(btn);
::lv_obj_set_pos(btn, 50, 100);
::lv_obj_set_size(btn, 400, 300);
::lv_obj_add_event_cb(btn, btn_event_cb, LV_EVENT_ALL, &data);
::lv_obj_add_style(btn, &style_btn, LV_STATE_DEFAULT);
::lv_obj_add_style(btn, &style_btn_pressed, LV_STATE_PRESSED);
lv_obj_t * label = ::lv_label_create(btn);
::lv_obj_add_style(label, &style_label, LV_STATE_DEFAULT);
::lv_label_set_text(label, "Button: 0");
::lv_obj_center(label);
}
} // namespace
void setup() {
M5.begin();
M5.TP.SetRotation(180);
gfx.begin();
gfx.setRotation(3);
gfx.setEpdMode(epd_mode_t::epd_quality);
::lv_init();
::lv_disp_draw_buf_init(&draw_buf, buf, NULL, screenWidth * 10);
static lv_disp_drv_t disp_drv;
::lv_disp_drv_init(&disp_drv);
disp_drv.hor_res = screenWidth;
disp_drv.ver_res = screenHeight;
disp_drv.flush_cb = my_disp_flush;
disp_drv.draw_buf = &draw_buf;
::lv_disp_drv_register(&disp_drv);
static lv_indev_drv_t indev_drv;
::lv_indev_drv_init(&indev_drv);
indev_drv.type = LV_INDEV_TYPE_POINTER;
indev_drv.read_cb = my_touchpad_read;
::lv_indev_drv_register(&indev_drv);
create_objects();
}
void loop() {
::lv_timer_handler();
::delay(5);
}
| [
"[email protected]"
] | |
5195362ab662e20afb6ec07abf7eb81d7f1045af | d53bb5929c83ebbead345e2f489bf055c75ffcf3 | /ScalesServer/main.cpp | 62f955e76a6da7db3beb59b592da39d4f4f21d22 | [] | no_license | VlMan/ScalesEmulator | 2ec75fc23aa989a97fdf316a362687c16f8e13e8 | 074c8019ec59e6a4bcb8aafc62936d7a69447f75 | refs/heads/main | 2023-09-03T20:46:08.560283 | 2021-11-16T11:33:40 | 2021-11-16T11:33:40 | 426,947,918 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 185 | cpp | #include "scalesserver.h"
#include <QtWidgets/QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
ScalesServer w;
w.show();
return a.exec();
}
| [
"[email protected]"
] | |
a90cf9ca851b82cea9cc7ab25c28eca98a8929d8 | bf11dcaf828c3dcccaafffe61df08e9e8c3e6653 | /spec/L01_FunctionsSpec.cpp | d398ee71165034fcba8c478c3f8898ef74cfb493 | [] | no_license | nandeswar/c-unit-2 | e3ce06c4f54d85901d0253664a7d27cfbde33736 | d81278355b86acb1ea462c5f56e02928fe9ddee3 | refs/heads/master | 2020-05-25T11:02:36.646513 | 2019-05-21T06:08:18 | 2019-05-21T06:08:18 | 187,771,640 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,716 | cpp | /*
Note:
You read the code in L01_Functions.cpp file and understand the behaviour.
And replace the blanks with correct expected output in this file.
*/
#include "stdafx.h"
#include "../src/L01_Functions.cpp"
#include "TestHelperMethods.h"
#include "../src/BinaryTree.h"
using namespace System;
using namespace System::Text;
using namespace System::Collections::Generic;
using namespace Microsoft::VisualStudio::TestTools::UnitTesting;
namespace spec
{
[TestClass]
public ref class L01_FunctionsSpec
{
private:
TestContext^ testContextInstance;
public:
/// <summary>
///Gets or sets the test context which provides
///information about and functionality for the current test run.
///</summary>
property Microsoft::VisualStudio::TestTools::UnitTesting::TestContext^ TestContext
{
Microsoft::VisualStudio::TestTools::UnitTesting::TestContext^ get()
{
return testContextInstance;
}
System::Void set(Microsoft::VisualStudio::TestTools::UnitTesting::TestContext^ value)
{
testContextInstance = value;
}
};
//
// For Recursive functions
//
//
// sum of digits and it's mysterious brother
//
[TestMethod, Timeout(3000)]
void TestsumOfDigitsSingleDigits(){
int sum = sumOfDigits(8);
Assert::AreEqual(8, sum);
sum = sumOfDigits(0);
Assert::AreEqual(0, sum);
}
[TestMethod, Timeout(3000)]
void TestsumOfDigitsDoubleDigits(){
int sum = sumOfDigits(89);
Assert::AreEqual(17, sum);
sum = sumOfDigits(10);
Assert::AreEqual(1, sum);
}
[TestMethod, Timeout(3000)]
void TestsumOfDigitsMultipleDigits(){
int sum = sumOfDigits(8539);
Assert::AreEqual(25, sum);
sum = sumOfDigits(103323);
Assert::AreEqual(12, sum);
sum = sumOfDigits(99999);
Assert::AreEqual(45, sum);
}
// mysterious one
[TestMethod, Timeout(3000)]
void TestsumOfDigitsMysterySingleDigits(){
int sum = sumOfDigitsMystery(8);
Assert::AreEqual(8, sum);
sum = sumOfDigitsMystery(0);
Assert::AreEqual(0, sum);
}
[TestMethod, Timeout(3000)]
void TestsumOfDigitsMysteryDoubleDigits(){
int sum = sumOfDigitsMystery(89);
Assert::AreEqual(8, sum);
sum = sumOfDigitsMystery(10);
Assert::AreEqual(1, sum);
}
[TestMethod, Timeout(3000)]
void TestsumOfDigitsMysteryMultipleDigits(){
int sum = sumOfDigitsMystery(8539);
Assert::AreEqual(7, sum);
sum = sumOfDigitsMystery(103323);
Assert::AreEqual(3, sum);
sum = sumOfDigitsMystery(99999);
Assert::AreEqual(9, sum);
}
[TestMethod, Timeout(3000)]
void TestsumOfDigitsMysteryJust99s(){
int sum = sumOfDigitsMystery(99 * 99);
Assert::AreEqual(9, sum);
sum = sumOfDigitsMystery(999 + 999);
Assert::AreEqual(9, sum);
sum = sumOfDigitsMystery(99999 * 9);
Assert::AreEqual(9, sum);
}
//
// Let's check the height of some tree
//
// Does these tree's grow?
// What determines the height of the binary search tree?
// Is there a way to reduce the height?
// Is there any advantange in having lesser height tree
// for the same number of nodes?
// What are these unary tree and balanced tree?
//
[TestMethod, Timeout(3000)]
void TestheightOfTreeEmptyTree(){
int height = heightOfTree(NULL);
Assert::AreEqual(0, height);
}
[TestMethod, Timeout(3000)]
void TestheightOfTreeUnaryTree(){
int nodeValues[] = { 1, 2, 3, 4, 5, 6, 7};
treeNode *root = createTree(nodeValues, 7);
int height = heightOfTree(root);
Assert::AreEqual(___, height);
}
[TestMethod, Timeout(3000)]
void TestheightOfTreeBalancedTree(){
int nodeValues[] = { 4, 6, 2, 1, 3, 5, 7 };
treeNode *root = createTree(nodeValues, 7);
int height = heightOfTree(root);
Assert::AreEqual(___, height);
}
[TestMethod, Timeout(3000)]
void TestheightOfTreeSmall(){
treeNode *root;
int height;
int nodevalues1[] = { 1 };
root = createTree(nodevalues1, 1);
height = heightOfTree(root);
Assert::AreEqual(___, height);
int nodevalues2[] = { 1, 1 };
root = createTree(nodevalues2, 2);
height = heightOfTree(root);
Assert::AreEqual(___, height);
int nodevalues3[] = { 1, 2, 2 };
root = createTree(nodevalues3, 3);
height = heightOfTree(root);
Assert::AreEqual(___, height);
int nodevalues4[] = { 1,2,3 };
root = createTree(nodevalues4, 3);
height = heightOfTree(root);
Assert::AreEqual(___, height);
int nodevalues5[] = { 2, 1, 3 };
root = createTree(nodevalues5, 3);
height = heightOfTree(root);
Assert::AreEqual(___, height);
int nodevalues6[] = { 3, 2, 1 };
root = createTree(nodevalues6, 3);
height = heightOfTree(root);
Assert::AreEqual(___, height);
}
[TestMethod, Timeout(3000)]
void TestheightOfTreeMedium(){
treeNode *root;
int height;
int nodevalues1[] = { 1, 3, 5, 2, 5, 34, 3 };
root = createTree(nodevalues1, 7);
height = heightOfTree(root);
Assert::AreEqual(___, height);
int nodevalues2[] = { 1, 1, 1, 1, 1, 1, 1, 1, 1 };
root = createTree(nodevalues2, 9);
height = heightOfTree(root);
Assert::AreEqual(___, height);
int nodevalues3[] = { 2, 4, 1, 4, 7, 3, 6, 8, 3 };
root = createTree(nodevalues3, 9);
height = heightOfTree(root);
Assert::AreEqual(___, height);
int nodevalues4[] = { 4, 3, 5, 2, 6, 1 };
root = createTree(nodevalues4, 6);
height = heightOfTree(root);
Assert::AreEqual(___, height);
int nodevalues5[] = { 5, 4, 2, 3, 6, 1 };
root = createTree(nodevalues5, 6);
height = heightOfTree(root);
Assert::AreEqual(___, height);
int nodevalues6[] = { 93, 23, 45, 11, 9, 1 };
root = createTree(nodevalues6, 6);
height = heightOfTree(root);
Assert::AreEqual(___, height);
}
// Let's plant some trees.
// Tree's are nothing but better-half of our lungs.
// Don't forget to plant one. Better way of half-organ donation.
// Not let's checkout these functions
// asking each other to do some part work.
[TestMethod, Timeout(3000)]
void TestFunctionsCallingEachOther(){
int res;
int numbers1[] = { 1, 2, 3, 4, 5, 6 };
res = youDoTheWork(numbers1, 6);
Assert::AreEqual(___, res, L"youDoTheWork() failed", 1, 2);
int numbers2[] = { 3, 5};
res = youDoTheWork(numbers2, 2);
Assert::AreEqual(___, res, L"youDoTheWork() failed", 1, 2);
int numbers3[] = { 90,20 };
res = youDoTheWork(numbers3, 2);
Assert::AreEqual(___, res, L"youDoTheWork() failed", 1, 2);
int numbers4[] = { 52 };
res = youDoTheWork(numbers4, 1);
Assert::AreEqual(___, res, L"youDoTheWork() failed", 1, 2);
int numbers5[] = { 3, 5, 6, 3, 72, 6 };
res = firstYouDoThisPart(numbers5, 6);
Assert::AreEqual(___, res, L"youDoTheWork() failed", 1, 2);
int numbers6[] = { 1 };
res = youDoTheWork(numbers6, 1);
Assert::AreEqual(___, res, L"youDoTheWork() failed", 1, 2);
}
// luckyly these above functions does have dead-locked each other
// like the way we do, you do this, then I will do this.
// Both waiting eternally with dead-lock, only gets unlocked when one is dead.
//
// Not checkout these weird sorting methods.
// These sorting methods looks like they came from some
// higher-order world, than the normal sort functions that we see.
// Let's sweetly call them higher-order functions.
//
[TestMethod, Timeout(3000)]
void TestsortNonDescending(){
int numbers1[] = {1,3,1,4,2,45,3};
int ans1[] = ______ ;
sortNonDescending(numbers1, 7);
Assert::AreEqual(true, areEqualArrays(numbers1, ans1, 7), L"sortNonDescending() failed", 1, 2);
int numbers2[] = { 1, 1, 1, 1, 1, 1, 1 };
int ans2[] = ______;
sortNonDescending(numbers2, 7);
Assert::AreEqual(true, areEqualArrays(numbers2, ans2, 7), L"sortNonDescending() failed", 1, 2);
int numbers3[] = { 1, 2, 3, 4, 5, 6 };
int ans3[] = ______;
sortNonDescending(numbers3, 6);
Assert::AreEqual(true, areEqualArrays(numbers3, ans3, 6), L"sortNonDescending() failed", 1, 2);
}
[TestMethod, Timeout(3000)]
void TestsortNonAscending(){
int numbers1[] = { 1, 5, 3, 2, 5, 3, 3 };
int ans1[] = ______;
sortNonAscending(numbers1, 7);
Assert::AreEqual(true, areEqualArrays(numbers1, ans1, 7), L"sortNonDescending() failed", 1, 2);
int numbers2[] = { 0,0,0,0,0,0,0 };
int ans2[] = ______;
sortNonAscending(numbers2, 7);
Assert::AreEqual(true, areEqualArrays(numbers2, ans2, 7), L"sortNonDescending() failed", 1, 2);
int numbers3[] = { 6, 5, 4, 3, 2, 1 };
int ans3[] = ______;
sortNonAscending(numbers3, 6);
Assert::AreEqual(true, areEqualArrays(numbers3, ans3, 6), L"sortNonDescending() failed", 1, 2);
}
//
// from now on read questions in Data Structure books, carefully
// when they say non-decending order instead of simply saying ascending order.
//
};
}
| [
"[email protected]"
] | |
ee69d4c29005dfcc51c7fa1c460282d0f57df0a1 | 47ebaa434e78c396c4e6baa14f0b78073f08a549 | /tags/Release-12_9_9/server/src/npc.cpp | 9c536a577c2f5208a3ab270fc083b3aa968e1362 | [] | no_license | BackupTheBerlios/wolfpack-svn | d0730dc59b6c78c6b517702e3825dd98410c2afd | 4f738947dd076479af3db0251fb040cd665544d0 | refs/heads/master | 2021-10-13T13:52:36.548015 | 2013-11-01T01:16:57 | 2013-11-01T01:16:57 | 40,748,157 | 1 | 2 | null | 2021-09-30T04:28:19 | 2015-08-15T05:35:25 | C++ | UTF-8 | C++ | false | false | 36,674 | cpp | /*
* Wolfpack Emu (WP)
* UO Server Emulation Program
*
* Copyright 2001-2004 by holders identified in AUTHORS.txt
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Palace - Suite 330, Boston, MA 02111-1307, USA.
*
* In addition to that license, if you are running this program or modified
* versions of it on a public system you HAVE TO make the complete source of
* the version used by you available or provide people with a location to
* download it.
*
* Wolfpack Homepage: http://wpdev.sf.net/
*/
// library includes
#include <qvaluelist.h>
#include <math.h>
// wolfpack includes
#include "npc.h"
#include "network/uotxpackets.h"
#include "network/uosocket.h"
#include "network/network.h"
#include "player.h"
#include "world.h"
#include "persistentbroker.h"
#include "dbdriver.h"
#include "sectors.h"
#include "serverconfig.h"
#include "log.h"
#include "console.h"
#include "corpse.h"
#include "definitions.h"
#include "combat.h"
#include "walking.h"
#include "skills.h"
#include "ai/ai.h"
#include "inlines.h"
#include "basics.h"
#include "basedef.h"
cNPC::cNPC()
{
setWanderFollowTarget(0);
nextMsgTime_ = 0;
nextGuardCallTime_ = 0;
nextBeggingTime_ = 0;
nextMoveTime_ = 0;
summonTime_ = 0;
additionalFlags_ = 0;
owner_ = NULL;
stablemasterSerial_ = INVALID_SERIAL;
wanderType_ = stWanderType();
aiid_ = "Monster_Aggressive_L1";
ai_ = new Monster_Aggressive_L1( this );
aiCheckInterval_ = ( Q_UINT16 ) floor( Config::instance()->checkAITime() * MY_CLOCKS_PER_SEC );
aiCheckTime_ = Server::instance()->time() + aiCheckInterval_;
}
cNPC::cNPC( const cNPC& right ) : cBaseChar(right)
{
}
cNPC::~cNPC()
{
delete ai_;
}
cNPC& cNPC::operator=( const cNPC& /*right*/ )
{
return *this;
}
static FactoryRegistration<cNPC> registration("cNPC");
unsigned char cNPC::classid;
void cNPC::buildSqlString( const char *objectid, QStringList& fields, QStringList& tables, QStringList& conditions )
{
cBaseChar::buildSqlString( objectid, fields, tables, conditions );
fields.push_back( "npcs.summontime,npcs.additionalflags,npcs.owner" );
fields.push_back( "npcs.stablemaster" );
fields.push_back( "npcs.ai,npcs.wandertype" );
fields.push_back( "npcs.wanderx1,npcs.wanderx2,npcs.wandery1,npcs.wandery2" );
fields.push_back( "npcs.wanderradius" );
tables.push_back( "npcs" );
conditions.push_back( "uobjectmap.serial = npcs.serial" );
}
static void npcRegisterAfterLoading( P_NPC pc );
void cNPC::postload( unsigned int version )
{
cBaseChar::postload( version );
SERIAL owner = ( SERIAL ) owner_;
owner_ = 0;
setOwner( dynamic_cast<P_PLAYER>( World::instance()->findChar( owner ) ) );
if ( wanderType() == enFollowTarget )
setWanderType( enFreely );
}
void cNPC::load( cBufferedReader& reader )
{
load( reader, reader.version() );
World::instance()->registerObject( this );
SectorMaps::instance()->add( this );
}
void cNPC::load( cBufferedReader& reader, unsigned int version )
{
cBaseChar::load( reader, version );
summonTime_ = reader.readInt();
if ( summonTime_ )
{
summonTime_ += Server::instance()->time();
}
additionalFlags_ = reader.readInt();
owner_ = reinterpret_cast<P_PLAYER>( reader.readInt() );
stablemasterSerial_ = reader.readInt();
setAI( reader.readAscii().data() );
setWanderType( ( enWanderTypes ) reader.readByte() );
setWanderX1( reader.readShort() );
setWanderY1( reader.readShort() );
setWanderX2( reader.readShort() );
setWanderY2( reader.readShort() );
setWanderRadius( reader.readShort() );
}
void cNPC::save( cBufferedWriter& writer, unsigned int version )
{
cBaseChar::save( writer, version );
writer.writeInt( summonTime_ ? summonTime_ - Server::instance()->time() : 0 );
writer.writeInt( additionalFlags_ );
writer.writeInt( owner_ ? owner_->serial() : INVALID_SERIAL );
writer.writeInt( stablemasterSerial_ );
writer.writeAscii( aiid_.latin1() );
writer.writeByte( ( unsigned char ) wanderType() );
writer.writeShort( wanderX1() );
writer.writeShort( wanderY1() );
writer.writeShort( wanderX2() );
writer.writeShort( wanderY2() );
writer.writeShort( wanderRadius() );
}
void cNPC::load( char** result, Q_UINT16& offset )
{
cBaseChar::load( result, offset );
SERIAL ser;
summonTime_ = atoi( result[offset++] ) + Server::instance()->time();
if ( summonTime_ )
summonTime_ += Server::instance()->time();
additionalFlags_ = atoi( result[offset++] );
owner_ = reinterpret_cast<P_PLAYER>(atoi(result[offset++]));
stablemasterSerial_ = atoi( result[offset++] );
setAI( result[offset++] );
setWanderType( ( enWanderTypes ) atoi( result[offset++] ) );
setWanderX1( atoi( result[offset++] ) );
setWanderX2( atoi( result[offset++] ) );
setWanderY1( atoi( result[offset++] ) );
setWanderY2( atoi( result[offset++] ) );
setWanderRadius( atoi( result[offset++] ) );
npcRegisterAfterLoading( this );
changed_ = false;
}
void cNPC::save()
{
if ( changed_ )
{
initSave;
setTable( "npcs" );
addField( "serial", serial() );
addField( "summontime", summonTime_ ? summonTime_ - Server::instance()->time() : 0 );
addField( "additionalflags", additionalFlags_ );
addField( "owner", owner_ ? owner_->serial() : INVALID_SERIAL );
addField( "stablemaster", stablemasterSerial_ );
addStrField( "ai", aiid_ );
addField( "wandertype", ( Q_UINT8 ) wanderType() );
addField( "wanderx1", wanderX1() );
addField( "wanderx2", wanderX2() );
addField( "wandery1", wanderY1() );
addField( "wandery2", wanderY2() );
addField( "wanderradius", wanderRadius() );
addCondition( "serial", serial() );
saveFields;
}
cBaseChar::save();
}
bool cNPC::del()
{
if ( !isPersistent )
return false; // We didn't need to delete the object
PersistentBroker::instance()->addToDeleteQueue( "npcs", QString( "serial = '%1'" ).arg( serial() ) );
changed_ = true;
return cBaseChar::del();
}
static void npcRegisterAfterLoading( P_NPC pc )
{
if ( pc->stablemasterSerial() == INVALID_SERIAL )
{
MapObjects::instance()->add( pc );
}
}
bool cNPC::isInnocent()
{
return notoriety() == 1;
}
void cNPC::setOwner( P_PLAYER data, bool nochecks )
{
if ( !nochecks && owner_ )
{
owner_->removePet( this, true );
}
owner_ = data;
changed( TOOLTIP );
changed_ = true;
if ( !nochecks && owner_ )
{
owner_->addPet( this, true );
setSpawnregion( 0 );
}
}
void cNPC::setNextMoveTime()
{
unsigned int interval;
if ( isTamed() )
{
interval = ( unsigned int ) Config::instance()->tamedNpcMoveTime() * MY_CLOCKS_PER_SEC;
}
else
{
interval = ( unsigned int ) Config::instance()->npcMoveTime() * MY_CLOCKS_PER_SEC;
}
// Wander slowly if wandering freely.
if ( wanderType() == enFreely || wanderType() == enCircle || wanderType() == enRectangle )
{
interval *= 3;
}
setNextMoveTime( Server::instance()->time() + interval );
}
// Update flags etc.
void cNPC::update( bool )
{
cUOTxUpdatePlayer update;
update.fromChar( this );
for ( cUOSocket*socket = Network::instance()->first(); socket; socket = Network::instance()->next() )
{
if ( socket->canSee( this ) )
{
update.setHighlight( notoriety( socket->player() ) );
socket->send( &update );
}
}
}
// Resend the char to all sockets in range
void cNPC::resend( bool clean )
{
// We are stabled and therefore we arent visible to others
if ( stablemasterSerial() != INVALID_SERIAL )
return;
cUOTxRemoveObject remove;
remove.setSerial( serial_ );
for ( cUOSocket*socket = Network::instance()->first(); socket; socket = Network::instance()->next() )
{
if ( socket->canSee( this ) )
{
cUOTxDrawChar drawChar;
drawChar.fromChar( this );
drawChar.setHighlight( notoriety( socket->player() ) );
socket->send( &drawChar );
sendTooltip( socket );
for ( ItemContainer::const_iterator it = content_.begin(); it != content_.end(); ++it )
{
it.data()->sendTooltip( socket );
}
}
else if ( clean )
{
socket->send( &remove );
}
}
}
void cNPC::talk( const QString& message, UI16 color, Q_UINT8 type, bool autospam, cUOSocket* socket )
{
if ( autospam )
{
if ( nextMsgTime_ < Server::instance()->time() )
nextMsgTime_ = Server::instance()->time() + MY_CLOCKS_PER_SEC * 10;
else
return;
}
if ( color == 0xFFFF )
color = saycolor_;
cUOTxUnicodeSpeech::eSpeechType speechType;
switch ( type )
{
case 0x01:
speechType = cUOTxUnicodeSpeech::Broadcast; break;
case 0x06:
speechType = cUOTxUnicodeSpeech::System; break;
case 0x09:
speechType = cUOTxUnicodeSpeech::Yell; break;
case 0x02:
speechType = cUOTxUnicodeSpeech::Emote; break;
case 0x08:
speechType = cUOTxUnicodeSpeech::Whisper; break;
case 0x0A:
speechType = cUOTxUnicodeSpeech::Spell; break;
default:
speechType = cUOTxUnicodeSpeech::Regular; break;
};
cUOTxUnicodeSpeech* textSpeech = new cUOTxUnicodeSpeech();
textSpeech->setSource( serial() );
textSpeech->setModel( body_ );
textSpeech->setFont( 3 ); // Default Font
textSpeech->setType( speechType );
textSpeech->setLanguage( "" );
textSpeech->setName( name() );
textSpeech->setColor( color );
textSpeech->setText( message );
if ( socket )
{
socket->send( textSpeech );
}
else
{
// Send to all clients in range
for ( cUOSocket*mSock = Network::instance()->first(); mSock; mSock = Network::instance()->next() )
{
if ( mSock->player() && ( mSock->player()->dist( this ) < 18 ) )
{
mSock->send( new cUOTxUnicodeSpeech( *textSpeech ) );
}
}
delete textSpeech;
}
}
void cNPC::talk( const Q_UINT32 MsgID, const QString& params /*= 0*/, const QString& affix /*= 0*/, bool prepend /*= false*/, UI16 color /*= 0xFFFF*/, cUOSocket* socket /*= 0*/ )
{
if ( color == 0xFFFF )
color = saycolor_;
if ( socket )
{
if ( affix.isEmpty() )
socket->clilocMessage( MsgID, params, color, 3, this );
else
socket->clilocMessageAffix( MsgID, params, affix, color, 3, this, false, prepend );
}
else
{
// Send to all clients in range
for ( cUOSocket*mSock = Network::instance()->first(); mSock; mSock = Network::instance()->next() )
{
if ( mSock->player() && ( mSock->player()->dist( this ) < 18 ) )
{
if ( affix.isEmpty() )
mSock->clilocMessage( MsgID, params, color, 3, this );
else
mSock->clilocMessageAffix( MsgID, params, affix, color, 3, this, false, prepend );
}
}
}
}
Q_UINT8 cNPC::notoriety( P_CHAR pChar ) // Gets the notoriety toward another char
{
if ( isIncognito() )
{
return 0x03;
}
/*
Hard to tell because the ai-types are now string based
0 = invalid/across server line
1 = innocent (blue)
2 = guilded/ally (green)
3 = attackable but not criminal (gray)
4 = criminal (gray)
5 = enemy (orange)
6 = murderer (red)
7 = invulnerable (yellow)
//7 = unknown use (translucent (like 0x4000 hue))
*/
Q_UINT8 result;
if ( isInvulnerable() )
{
return 7;
}
// Check for Guild status + Highlight
// Q_UINT8 guildStatus = GuildCompare( this, pChar );
// if( npcaitype() == 0x02 )
// return 0x06; // 6 = Red -> Monster
if ( ai_ && ai_->notorietyOverride() )
return ai_->notorietyOverride();
if ( !pChar )
return 3;
if ( pChar->kills() > Config::instance()->maxkills() )
result = 0x06; // 6 = Red -> Murderer
// else if( guildStatus == 1 )
// result = 0x02; // 2 = Green -> Same Guild
// else if( guildStatus == 2 )
// result = 0x05; // 5 = Orange -> Enemy Guild
else
{
// Monsters are always bad
// if( npcaitype_ == 4 )
// return 0x01;
if ( isHuman() )
{
if ( karma_ >= 0 )
result = 0x01;
else
result = 0x06;
}
// Everything else
else
{
return 3;
}
}
return result;
}
/*!
If this character is in a guarded area, it checks the surroundings for criminals
or murderers and spawns a guard if one is found.
*/
void cNPC::callGuards()
{
if ( nextGuardCallTime() < Server::instance()->time() )
{
setNextGuardCallTime( Server::instance()->time() + ( MY_CLOCKS_PER_SEC * 10 ) );
}
else
return;
cBaseChar::callGuards();
}
void cNPC::applyDefinition( const cElement* sectionNode )
{
cBaseChar::applyDefinition( sectionNode );
// Let's try to assume some unspecified values
if ( this->strength() && !this->hitpoints() ) // we don't want to instantly die, right?
{
if ( !this->maxHitpoints() )
setMaxHitpoints( strength() );
setHitpoints( maxHitpoints() );
}
}
void cNPC::showName( cUOSocket* socket )
{
if ( !socket->player() )
return;
QString charName = name();
// apply titles
if ( Config::instance()->showNpcTitles() && !title_.isEmpty() )
charName.append( ", " + title_ );
// Append serial for GMs
if ( socket->player()->showSerials() )
charName.append( QString( " [0x%1]" ).arg( serial(), 4, 16 ) );
// Frozen
if ( isFrozen() )
charName.append( tr( " [frozen]" ) );
// Guarded
if ( guardedby_.size() > 0 )
charName.append( tr( " [guarded]" ) );
// Guarding
if ( isTamed() && guarding_ )
charName.append( tr( " [guarding]" ) );
Q_UINT16 speechColor;
// 0x01 Blue, 0x02 Green, 0x03 Grey, 0x05 Orange, 0x06 Red
switch ( notoriety( socket->player() ) )
{
case 0x01:
speechColor = 0x59; break; //blue
case 0x02:
speechColor = 0x3F; break; //green
case 0x03:
speechColor = 0x3B2; break; //grey
case 0x05:
speechColor = 0x90; break; //orange
case 0x06:
speechColor = 0x22; break; //red
default:
speechColor = 0x3B2; break; // grey
}
if ( isInvulnerable() )
{
speechColor = 0x35;
}
// Show it to the socket
socket->showSpeech( this, charName, speechColor, 3, cUOTxUnicodeSpeech::System );
}
void cNPC::soundEffect( UI16 soundId, bool hearAll )
{
if ( !hearAll )
return;
cUOTxSoundEffect pSoundEffect;
pSoundEffect.setSound( soundId );
pSoundEffect.setCoord( pos() );
// Send the sound to all sockets in range
for ( cUOSocket*s = Network::instance()->first(); s; s = Network::instance()->next() )
if ( s->player() && s->player()->inRange( this, s->player()->visualRange() ) )
s->send( &pSoundEffect );
}
void cNPC::giveGold( Q_UINT32 amount, bool inBank )
{
Q_UNUSED( inBank );
P_ITEM pCont = getBackpack();
if ( !pCont )
return;
// Begin Spawning
Q_UINT32 total = amount;
while ( total > 0 )
{
P_ITEM pile = cItem::createFromScript( "eed" );
pile->setAmount( QMIN( total, static_cast<Q_UINT32>( 65535 ) ) );
pCont->addItem( pile );
total -= pile->amount();
}
}
Q_UINT32 cNPC::takeGold( Q_UINT32 amount, bool inBank )
{
Q_UNUSED( inBank );
P_ITEM pPack = getBackpack();
Q_UINT32 dAmount = 0;
if ( pPack )
dAmount = pPack->deleteAmount( amount, 0xEED, 0 );
return dAmount;
}
void cNPC::processNode( const cElement* Tag )
{
changed_ = true;
QString TagName = Tag->name();
QString Value = Tag->value();
//<npcwander type="rectangle" x1="-10" x2="12" y1="5" y2="7" />
//<......... type="rect" ... />
//<......... type="3" ... />
//<......... type="circle" radius="10" />
//<......... type="2" ... />
//<......... type="free" (or "1") />
//<......... type="none" (or "0") />
if ( TagName == "npcwander" )
{
if ( Tag->hasAttribute( "type" ) )
{
QString wanderType = Tag->getAttribute( "type" );
if ( wanderType == "rectangle" || wanderType == "rect" || wanderType == "3" )
if ( Tag->hasAttribute( "x1" ) && Tag->hasAttribute( "x2" ) && Tag->hasAttribute( "y1" ) && Tag->hasAttribute( "y2" ) )
{
wanderType_ = stWanderType( pos().x + Tag->getAttribute( "x1" ).toInt(), pos().x + Tag->getAttribute( "x2" ).toInt(), pos().y + Tag->getAttribute( "y1" ).toInt(), pos().y + Tag->getAttribute( "y2" ).toInt() );
}
else if ( wanderType == "circle" || wanderType == "4" )
{
wanderType_ = stWanderType( pos().x, pos().y, 5 );
if ( Tag->hasAttribute( "radius" ) )
setWanderRadius( Tag->getAttribute( "radius" ).toInt() );
}
else if ( wanderType == "free" || wanderType == "2" )
wanderType_ = stWanderType( enFreely );
else
wanderType_ = stWanderType();
}
}
//<shopkeeper>
// <sellable>...handled like item-<contains>-section...</sellable>
// <buyable>...see above...</buyable>
// <restockable>...see above...</restockable>
//</shopkeeper>
else if ( TagName == "shopkeeper" )
{
makeShop();
for ( unsigned int i = 0; i < Tag->childCount(); ++i )
{
const cElement* currNode = Tag->getChild( i );
if ( !currNode->childCount() )
continue;
unsigned char contlayer = 0;
if ( currNode->name() == "restockable" )
contlayer = BuyRestockContainer;
else if ( currNode->name() == "buyable" )
contlayer = BuyNoRestockContainer;
else if ( currNode->name() == "sellable" )
contlayer = SellContainer;
else
continue;
P_ITEM contItem = this->getItemOnLayer( contlayer );
if ( contItem != NULL )
contItem->processContainerNode( currNode );
}
}
else if ( TagName == "inherit" )
{
QString inheritID;
if ( Tag->hasAttribute( "id" ) )
inheritID = Tag->getAttribute( "id" );
else
inheritID = Value;
const cElement* element = Definitions::instance()->getDefinition( WPDT_NPC, inheritID );
if ( element )
applyDefinition( element );
}
else
cBaseChar::processNode( Tag );
}
// Simple setting and getting of properties for scripts and the set command.
stError* cNPC::setProperty( const QString& name, const cVariant& value )
{
changed( TOOLTIP );
changed_ = true;
/*
\property char.nextmsgtime This integer value is the next time the npc will say something.
This property is exclusive to NPC objects.
*/
SET_INT_PROPERTY( "nextmsgtime", nextMsgTime_ )
/*
\property char.nextguardcalltime This integer value is the next time the npc will call for a guard.
This property is exclusive to NPC objects.
*/
else
SET_INT_PROPERTY( "nextguardcalltime", nextGuardCallTime_ )
/*
\property char.stablemaster If this integer property is not -1, the NPC won't be visible. Is is something like a container
value for NPCs. Item and character serials are valid here. If you set the stablemaster serial, the NPC will be automatically
removed from the map.
This property is exclusive to NPC objects.
*/
else if ( name == "stablemaster" )
{
setStablemasterSerial( value.toInt() );
return 0;
}
/*
\property char.nextmovetime This integer is the time the npc will move next.
This property is exclusive to NPC objects.
*/
else
SET_INT_PROPERTY( "nextmovetime", nextMoveTime_ )
/*
\property char.summoned This boolean flag indicates whether the NPC was summoned and doesn't leave a corpse behind.
This property is exclusive to NPC objects.
*/
else if ( name == "summoned" )
{
setSummoned( value.toInt() == 1 );
return 0;
/*
\property char.wandertype This integer is the type of wander algorithm used for this character. One of the following values is possible:
<code>0x00 Standing
0x01 Rectangle
0x02 Circle
0x03 FollowTarget
0x04 Destination
0x04 Inside Spawnregion only</code>
This property is exclusive to NPC objects.
*/
}
else if ( name == "wandertype" )
{
setWanderType( ( enWanderTypes ) value.toInt() );
return 0;
}
/*
\property char.wanderx1 This integer property is either the x component of the upper left corner of the wander rectangle or the x component of the coordinate used by the Circle wandertype.
This property is exclusive to NPC objects.
*/
else if ( name == "fx1" || name == "wanderx1" )
{
setWanderX1( value.toInt() );
return 0;
}
/*
\property char.wanderx2 This integer property is the x component of the lower right corner of the wander rectangle.
This property is exclusive to NPC objects.
*/
else if ( name == "fx2" || name == "wanderx2" )
{
setWanderX2( value.toInt() );
return 0;
}
/*
\property char.wandery1 This integer property is either the y component of the upper left corner of the wander rectangle or the y component of the coordinate used by the Circle wandertype.
This property is exclusive to NPC objects.
*/
else if ( name == "fy1" || name == "wandery1" )
{
setWanderY1( value.toInt() );
return 0;
}
/*
\property char.wandery2 This integer property is the y component of the lower right corner of the wander rectangle.
This property is exclusive to NPC objects.
*/
else if ( name == "fy2" || name == "wandery2" )
{
setWanderY2( value.toInt() );
return 0;
}
/*
\property char.wanderradius This integer property is the radius of the circle used by the Circle wandertype.
This property is exclusive to NPC objects.
*/
else if ( name == "fz1" || name == "wanderradius" )
{
setWanderRadius( value.toInt() );
return 0;
}
/*
\property char.summontime The servertime when this summoned creature will disappear.
If this integer value is 0, the NPC will never disappear.
This property is exclusive to NPC objects.
*/
else
SET_INT_PROPERTY( "summontime", summonTime_ )
/*
\property char.owner This is the owner of this NPC. It returns a character object or None.
Please note that you automatically tame the NPC by setting a new owner.
This property is exclusive to NPC objects.
*/
else if ( name == "owner" )
{
P_PLAYER pOwner = dynamic_cast<P_PLAYER>( value.toChar() );
setOwner( pOwner );
return 0;
}
// skill.
else if ( name.left( 6 ) == "skill." )
{
QString skill = name.right( name.length() - 6 );
Q_INT16 skillId = Skills::instance()->findSkillByDef( skill );
if ( skillId != -1 )
{
setSkillValue( skillId, value.toInt() );
return 0;
}
}
/*
\property char.ai This string property is the name of the AI used by this NPC.
This property is exclusive to NPC objects.
*/
else if ( name == "ai" )
{
setAI( value.toString() );
return 0;
// skillcap.
}
else if ( name.left( 9 ) == "skillcap." )
{
QString skill = name.right( name.length() - 9 );
Q_INT16 skillId = Skills::instance()->findSkillByDef( skill );
if ( skillId != -1 )
{
setSkillCap( skillId, value.toInt() );
return 0;
}
}
else
{
Q_INT16 skillId = Skills::instance()->findSkillByDef( name );
if ( skillId != -1 )
{
setSkillValue( skillId, value.toInt() );
return 0;
}
}
return cBaseChar::setProperty( name, value );
}
PyObject* cNPC::getProperty( const QString& name )
{
PY_PROPERTY( "nextmsgtime", nextMsgTime_ )
PY_PROPERTY( "antispamtimer", nextMsgTime_ )
PY_PROPERTY( "nextguardcalltime", nextGuardCallTime_ )
PY_PROPERTY( "antiguardstimer", nextGuardCallTime_ )
PY_PROPERTY( "stablemaster", stablemasterSerial_ )
PY_PROPERTY( "npc", true )
PY_PROPERTY( "nextmovetime", nextMoveTime_ )
PY_PROPERTY( "npcmovetime", nextMoveTime_ )
PY_PROPERTY( "wandertype", wanderType() )
PY_PROPERTY( "wanderx1", wanderX1() )
PY_PROPERTY( "fx1", wanderX1() )
PY_PROPERTY( "wanderx2", wanderX2() )
PY_PROPERTY( "fx2", wanderX2() )
PY_PROPERTY( "wandery1", wanderY1() )
PY_PROPERTY( "fy1", wanderY1() )
PY_PROPERTY( "wandery2", wanderY2() )
PY_PROPERTY( "fy2", wanderY2() )
PY_PROPERTY( "wanderradius", wanderRadius() )
PY_PROPERTY( "fz1", wanderRadius() )
PY_PROPERTY( "summontime", summonTime_ )
PY_PROPERTY( "summontimer", summonTime_ )
PY_PROPERTY( "owner", owner_ )
PY_PROPERTY( "ai", aiid_ )
PY_PROPERTY( "summoned", summoned() )
return cBaseChar::getProperty( name );
}
Coord_cl cNPC::nextMove()
{
Coord_cl ret;
if ( !path_.empty() )
{
ret = path_.front();
}
else
ret = Coord_cl( 0xFFFF, 0xFFFF, (SI08) 0xFF, 0 );
return ret;
}
void cNPC::pushMove( UI16 x, UI16 y, SI08 z )
{
path_.push_back( Coord_cl( x, y, z, 0 ) );
}
void cNPC::pushMove( const Coord_cl& move )
{
path_.push_back( move );
}
void cNPC::popMove( void )
{
path_.pop_front();
}
void cNPC::clearPath( void )
{
path_.clear();
}
bool cNPC::hasPath( void )
{
return !path_.empty();
}
Coord_cl cNPC::pathDestination( void ) const
{
if ( path_.empty() )
return Coord_cl( 0xFFFF, 0xFFFF, (SI08) 0xFF, 0 );
else
return path_.back();
}
/*!
A* pathfinding algorithm implementation. consult me (sereg) for changes!
I've used this paper as a base: http://www.wpdev.org/docs/informed-search.pdf
A*>>
*/
/*!
We'll need to build a list of pathnodes. Each pathnode contains
coordinates, iteration step, cost and a pointer to its predecessor.
*/
class pathnode_cl
{
public:
pathnode_cl( UI16 x_, UI16 y_, SI08 z_, UI16 step_, float cost_ ) : x( x_ ), y( y_ ), z( z_ ), step( step_ ), cost( cost_ ), prev( 0 )
{
}
pathnode_cl() : prev( NULL )
{
}
UI16 x;
UI16 y;
SI08 z;
UI16 step;
float cost;
pathnode_cl* prev;
};
/*!
Compare predicate for pathnodes using cost and step
Two times because we need more weight for the costs.
*/
struct pathnode_comparePredicate : public std::binary_function<pathnode_cl, pathnode_cl, bool>
{
bool operator()( const pathnode_cl* a, const pathnode_cl* b )
{
return ( a->step + 2 * a->cost ) > ( b->step + 2 * b->cost );
}
};
/*!
Compare predicate for pathnodes using coordinates
*/
struct pathnode_coordComparePredicate : public std::binary_function<pathnode_cl, pathnode_cl, bool>
{
bool operator()( const pathnode_cl* a, const pathnode_cl* b )
{
return ( a->x * a->x + a->y * a->y + a->z * a->z ) < ( b->x * b->x + b->y * b->y + b->z * b->z );
}
};
/*!
Heuristic function for A*
We use simple 3-dim. euclid distance: d = sqrt( (x1-x2) + (y1-y2) + (z1-z2) )
*/
float cNPC::pathHeuristic( const Coord_cl& source, const Coord_cl& destination )
{
return ( float ) ( sqrt( pow( ( float ) ( source.x - destination.x ), 2 ) + pow( ( float ) ( source.y - destination.y ), 2 ) + pow( ( source.z - destination.z ) / 5.0f, 2 ) ) );
}
/*!
The algorithm..
currently works in x,y,z direction. no idea how to implement map jumping yet.
*/
void cNPC::findPath( const Coord_cl& goal, float sufficient_cost /* = 0.0f */ )
{
if ( path_.size() > 0 )
path_.clear();
if ( pos_.map != goal.map )
return;
/*
For A* we use a priority queue to store the unexamined path nodes
in a way, that the node with lowest cost lies always at the beginning.
I'll use std::vector combined with the stl heap functions for it.
*/
std::vector<pathnode_cl*> unvisited_nodes;
std::vector<pathnode_cl*> visited_nodes;
std::make_heap( unvisited_nodes.begin(), unvisited_nodes.end(), pathnode_comparePredicate() );
/*
We also need a vector for the calculated list.
And a temporary vector of neighbours.
*/
std::vector<pathnode_cl*> allnodes;
std::vector<Coord_cl> neighbours;
std::vector<pathnode_cl*>::iterator pit;
std::vector<Coord_cl>::iterator nit;
/*
So let's start :)
The initial thing we'll have to do is to push the current char position
into the priority queue.
*/
pathnode_cl* baseNode = new pathnode_cl( pos_.x, pos_.y, pos_.z, 0, pathHeuristic( pos_, goal ) );
unvisited_nodes.push_back( baseNode );
// pushing the heap isnt needed here..
allnodes.push_back( baseNode );
/*
Each iteration of the following loop will take the first element
out of the priority queue and calculate the neighbour nodes
(sourrounding coordinates). The nodes have prev pointers which let
us get the whole path in the end.
All neighbours that are reachable will be pushed into the priority
queue.
If no neighbour is reachable we ran into a dead end. Nothing will
be done in this iteration, because we'll get a better node out of the
priority queue next iteration.
*/
pathnode_cl* currentNode = NULL;
pathnode_cl* newNode = NULL;
//pathnode_cl* prevNode = NULL;
int iterations = 0;
while ( !unvisited_nodes.empty() )
{
// get the first element of the queue
bool visited;
do
{
visited = false;
currentNode = *unvisited_nodes.begin();
// remove it from the queue
std::pop_heap( unvisited_nodes.begin(), unvisited_nodes.end(), pathnode_comparePredicate() );
unvisited_nodes.pop_back();
// dont calculate loops !
visited = std::binary_search( visited_nodes.begin(), visited_nodes.end(), currentNode, pathnode_coordComparePredicate() );
// steps > step depth
}
while ( ( visited || currentNode->step > Config::instance()->pathfindMaxSteps() ) && !unvisited_nodes.empty() );
if ( iterations > Config::instance()->pathfindMaxIterations() || currentNode->step > Config::instance()->pathfindMaxSteps() )
{
// lets set the pointer invalid if we have an invalid path
currentNode = NULL;
break;
}
// we reached the goal
if ( currentNode->cost <= sufficient_cost )
break;
// the neighbours can be all surrounding x-y-coordinates
neighbours.clear();
int i = 0;
int j = 0;
Coord_cl pos;
for ( i = -1; i <= 1; ++i )
{
for ( j = -1; j <= 1; ++j )
{
if ( i != 0 || j != 0 )
neighbours.push_back( Coord_cl( currentNode->x + i, currentNode->y + j, currentNode->z, pos_.map ) );
}
}
// check walkability and set z offsets for neighbours
nit = neighbours.begin();
while ( nit != neighbours.end() )
{
pos = *nit;
// this should change z coordinates also if there are stairs
if ( mayWalk( this, pos ) && !Movement::instance()->CheckForCharacterAtXYZ( this, pos ) )
{
// push a path node into the priority queue
newNode = new pathnode_cl( pos.x, pos.y, pos.z, currentNode->step + 1, pathHeuristic( pos, goal ) );
newNode->prev = currentNode;
unvisited_nodes.push_back( newNode );
allnodes.push_back( newNode );
std::push_heap( unvisited_nodes.begin(), unvisited_nodes.end(), pathnode_comparePredicate() );
}
++nit;
}
visited_nodes.push_back( currentNode );
std::sort( visited_nodes.begin(), visited_nodes.end(), pathnode_coordComparePredicate() );
++iterations;
}
// finally lets set the char's path
if ( currentNode )
{
path_.clear();
while ( currentNode->prev )
{
path_.push_front( Coord_cl( currentNode->x, currentNode->y, currentNode->z, pos_.map ) );
currentNode = currentNode->prev;
}
}
/* debug...
Console::instance()->send( QString( "Pathfinding: %1 iterations\n" ).arg( iterations ) );
std::deque< Coord_cl >::const_iterator it = path_.begin();
while( it != path_.end() )
{
Console::instance()->send( QString( "%1,%2\n" ).arg( (*it).x ).arg( (*it).y ) );
++it;
}
*/
// lets free the memory assigned to the nodes...
pit = allnodes.begin();
while ( pit != allnodes.end() )
{
delete * pit;
++pit;
}
}
/*!
<<A*
*/
void cNPC::setAI( const QString& data )
{
QString tmp = QStringList::split( ",", data )[0];
aiid_ = tmp;
if ( ai_ )
delete ai_;
ai_ = NULL;
AbstractAI* ai = AIFactory::instance()->createObject( tmp );
if ( !ai )
return;
ScriptAI* sai = dynamic_cast<ScriptAI*>( ai );
if ( sai )
{
sai->setName( tmp );
}
ai->init( this );
setAI( ai );
}
void cNPC::makeShop()
{
P_ITEM currCont = getItemOnLayer( BuyRestockContainer );
if ( !currCont )
{
currCont = cItem::createFromScript( "e75" );
currCont->setOwner( this );
addItem( BuyRestockContainer, currCont );
currCont->update();
}
currCont = getItemOnLayer( BuyNoRestockContainer );
if ( !currCont )
{
currCont = cItem::createFromScript( "e75" );
currCont->setOwner( this );
addItem( BuyNoRestockContainer, currCont );
currCont->update();
}
currCont = getItemOnLayer( SellContainer );
if ( !currCont )
{
currCont = cItem::createFromScript( "e75" );
currCont->setOwner( this );
addItem( SellContainer, currCont );
currCont->update();
}
}
void cNPC::awardKarma( P_CHAR pKilled, short amount )
{
int nCurKarma = 0, nChange = 0, nEffect = 0;
nCurKarma = karma();
if ( nCurKarma <amount && amount> 0 )
{
nChange = ( ( amount - nCurKarma ) / 75 );
setKarma( nCurKarma + nChange );
nEffect = 1;
}
if ( ( nCurKarma > amount ) && ( !pKilled ) )
{
nChange = ( ( nCurKarma - amount ) / 50 );
setKarma( nCurKarma - nChange );
nEffect = 0;
}
else if ( ( nCurKarma > amount ) && ( pKilled->karma() > 0 ) )
{
nChange = ( ( nCurKarma - amount ) / 50 );
setKarma( nCurKarma - nChange );
nEffect = 0;
}
// Cap at 10000 or -10000
if ( karma_ > 10000 )
karma_ = 10000;
else if ( karma_ < -10000 )
karma_ = -10000;
}
void cNPC::awardFame( short amount )
{
int nCurFame, nChange = 0;
setFame( QMIN( 10000, fame() ) );
nCurFame = fame();
// We already have more than that.
if ( nCurFame > amount )
return;
// Loose Fame when we died
if ( isDead() )
{
// Fame / 25 is our loss
nChange = nCurFame / 25;
setFame( QMAX( 0, nCurFame - nChange ) );
setDeaths( deaths() + 1 );
}
else
{
nChange = ( amount - nCurFame ) / 75;
setFame( nCurFame + nChange );
}
}
void cNPC::vendorBuy( P_PLAYER player )
{
P_ITEM pContA = getItemOnLayer( cBaseChar::BuyRestockContainer );
P_ITEM pContB = getItemOnLayer( cBaseChar::BuyNoRestockContainer );
if ( player->isDead() )
return;
if ( !pContA && !pContB )
{
talk( tr( "Sorry but i have no goods to sell" ) );
return;
}
talk( 500186, 0, 0, false, saycolor(), player->socket() ); // Greetings. Have a look around.
player->socket()->sendBuyWindow( this );
}
void cNPC::vendorSell( P_PLAYER player )
{
P_ITEM pContC = getItemOnLayer( cBaseChar::SellContainer );
if ( !pContC || pContC->content().size() == 0 )
{
talk( 501550, 0, 0, false, saycolor_, player->socket() );
return;
}
player->socket()->sendSellWindow( this, player );
}
void cNPC::log( eLogLevel loglevel, const QString& string )
{
// NPC's usually don't have sockets
Log::instance()->print( loglevel, string );
}
void cNPC::log( const QString& string )
{
log( LOG_NOTICE, string );
}
PyObject* cNPC::getPyObject()
{
return PyGetCharObject( this );
}
const char* cNPC::className() const
{
return "npc";
}
bool cNPC::inWorld()
{
return stablemasterSerial() == INVALID_SERIAL;
}
void cNPC::createTooltip( cUOTxTooltipList& tooltip, cPlayer* player )
{
cUObject::createTooltip( tooltip, player );
QString affix;
if ( !title_.isEmpty() )
{
affix = " " + title_;
}
else
{
affix = " ";
}
// Append the (frozen) tag
if ( isFrozen() )
{
if ( affix.endsWith( " " ) )
{
affix.append( tr( "(frozen)" ) );
}
else
{
affix.append( tr( " (frozen)" ) );
}
}
tooltip.addLine( 1050045, QString( " \t%1\t%2" ).arg( name_ ).arg( affix ) );
onShowTooltip( player, &tooltip );
}
void cNPC::setStablemasterSerial( SERIAL data )
{
stablemasterSerial_ = data;
changed_ = true;
if ( data == INVALID_SERIAL )
{
MapObjects::instance()->add( this );
}
else
{
MapObjects::instance()->remove( this );
}
}
cNPC* cNPC::createFromScript( const QString& section, const Coord_cl& pos )
{
if ( section.isNull() || section.isEmpty() )
return NULL;
const cElement* DefSection = Definitions::instance()->getDefinition( WPDT_NPC, section );
if ( !DefSection )
{
Console::instance()->log( LOG_ERROR, QString( "Unable to create unscripted npc: %1\n" ).arg( section ) );
return NULL;
}
P_NPC pChar = new cNPC;
pChar->Init();
pChar->basedef_ = CharBaseDefs::instance()->get( section.latin1() );
pChar->moveTo( pos );
pChar->applyDefinition( DefSection );
// OrgBody and OrgSkin are often not set in the scripts
pChar->setOrgBody( pChar->body() );
pChar->setOrgSkin( pChar->skin() );
// Now we call onCreate
cDelayedOnCreateCall* onCreateCall = new cDelayedOnCreateCall( pChar, section );
Timers::instance()->insert( onCreateCall );
pChar->resend( false );
return pChar;
}
void cNPC::remove()
{
// If a player is mounted on us, unmount him.
if ( stablemasterSerial_ != INVALID_SERIAL )
{
P_PLAYER player = dynamic_cast<P_PLAYER>( World::instance()->findChar( stablemasterSerial_ ) );
if ( player )
{
P_ITEM mount = player->atLayer( cBaseChar::Mount );
if ( mount && ( unsigned int ) mount->getTag( "pet" ).toInt() == serial_ )
{
mount->remove();
}
}
}
setOwner( 0 );
cBaseChar::remove();
}
unsigned int cNPC::damage( eDamageType type, unsigned int amount, cUObject* source ) {
amount = cBaseChar::damage(type, amount, source);
if (amount != 0) {
// the more stamina we have, the more we loose
// the more hitpoints we have, the less we loose
int value = (int)(amount * (100.0 / hitpoints_) * (stamina_ / 100.0)) - 5;
if (value > 0) {
stamina_ = QMAX(0, stamina_ - value);
}
}
return amount;
}
bool cNPC::isOverloaded() {
return false;
}
unsigned int cNPC::maxWeight() {
return 0;
} | [
"(no author)@db57ef4e-4fe8-0310-84ee-c23f6f2f8b61"
] | (no author)@db57ef4e-4fe8-0310-84ee-c23f6f2f8b61 |
e25f11c3dc1b5676b7d88372d958ce304dfc9e95 | fdd4e700f7729cc605d4b2eb54d604307a01924c | /epl_ros/powerlink_test/src/listener.cpp | ff7a951bfa7bf555802a5f5d77bb1f558373fd86 | [
"BSD-2-Clause"
] | permissive | gdamion/grad_project | 23032d34b02c5a7deb0a2baacef2b3c4b8cb407c | 80471d5b5130cb97cf137f001ea1c0e95f3ccb45 | refs/heads/master | 2022-07-23T01:32:48.503470 | 2020-05-21T15:51:20 | 2020-05-21T15:51:20 | 254,843,048 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,694 | cpp | #include "ros/ros.h"
#include "std_msgs/String.h"
#include <signal.h>
#include <time.h>
#include <fstream>
#include <iostream>
#include <sstream>
#include <stdlib.h>
#include <sched.h>
#include <powerlink_test/Signal.h>
#include <powerlink_test/MemoryAPI.h>
#include <powerlink_test/PrioritySetter.h>
#include <powerlink_test/ros_wrapper.h>
using namespace std;
void powerlink_out_callback(const powerlink_test::PowerlinkOut::ConstPtr& msg);
void status_out_callback(const powerlink_test::StatusOut::ConstPtr& msg);
void testing_out_callback(const powerlink_test::TestingOut::ConstPtr& msg);
void user_signal_handler(int sig);
int init_signal_hooks();
void check_shared_memory();
bool ros_memory_ready;
int main(int argc, char **argv)
{
if (init_signal_hooks())
{
return 1;
}
int pid = getpid();
stringstream node_name;
node_name << "listener_" << pid;
ros::init(argc, argv, node_name.str());
ros::NodeHandle n;
ros::Subscriber powerlink_out_sub = n.subscribe("PowerlinkOut", 1000, powerlink_out_callback);
ros::Subscriber status_out_sub = n.subscribe("StatusOut", 1000, status_out_callback);
ros::Subscriber testing_out_sub = n.subscribe("TestingOut", 1000, testing_out_callback);
ros::Publisher powerlink_in_pub = n.advertise<powerlink_test::PowerlinkIn>("PowerlinkIn", 1000);
ros::Publisher fallback_in_pub = n.advertise<powerlink_test::FallbackIn>("FallbackIn", 1000);
ros::ServiceClient client = n.serviceClient<powerlink_test::Signal>("signal");
set_group_priority(getpgrp());
ros::Rate loop_rate(1000);
powerlink_test::Signal srv;
srv.request.do_add = true;
srv.request.pid = getpgrp();
if ((client.call(srv)) && (srv.response.success))
{
ROS_INFO("Signal service request: OK");
}
else
{
ROS_ERROR("Signal service request: FAIL");
return 1;
}
powerlink_test::PowerlinkIn powerlink_in_msg;
powerlink_in_msg.pid = pid;
powerlink_in_msg.shm_name = powerlink_in.shm_name;
powerlink_test::FallbackIn fallback_in_msg;
fallback_in_msg.pid = pid;
fallback_in_msg.shm_name = fallback_in.shm_name;
ROS_INFO("-------------------------");
ROS_INFO("Entering ROS loop");
ros::spin();
return 0;
}
void powerlink_out_callback(const powerlink_test::PowerlinkOut::ConstPtr& msg)
{
check_shared_memory();
}
void status_out_callback(const powerlink_test::StatusOut::ConstPtr& msg)
{
check_shared_memory();
}
void testing_out_callback(const powerlink_test::TestingOut::ConstPtr& msg)
{
check_shared_memory();
}
void user_signal_handler(int sig)
{
if (!ros_memory_ready)
{
check_shared_memory();
}
if (sig == SIGUSR1)
{
powerlink_in.buffer_a->CN1_M02_X20DO9322_DigitalOutput = 1;
// ROS_INFO("My DI is: %i", powerlink_out.buffer_a->CN1_M01_X20DI9371_DigitalInput);
}
if (sig == SIGUSR2)
{
powerlink_in.buffer_b->CN1_M02_X20DO9322_DigitalOutput = 0;
// ROS_INFO("My DI is: %i", powerlink_out.buffer_b->CN1_M01_X20DI9371_DigitalInput);
}
}
int init_signal_hooks()
{
if (signal(SIGUSR1, user_signal_handler) == SIG_ERR)
{
ROS_ERROR("Setting USR1 hook: FAIL");
}
else
{
ROS_INFO("Setting USR1 hook: OK");
}
if (signal(SIGUSR2, user_signal_handler) == SIG_ERR)
{
ROS_ERROR("Setting USR2 hook: FAIL");
}
else
{
ROS_INFO("Setting USR2 hook: OK");
}
return 0;
}
void check_shared_memory()
{
if (!ros_memory_ready)
{
if (init_ros_memory(0))
{
ros::shutdown();
}
ros_memory_ready = true;
}
}
| [
"[email protected]"
] | |
ab2ea8d4e47b85e2413814a2c5effca68c8a9a75 | a5f66b8fb0ba688d2240a20b215589ab227c6537 | /codebase/apps/didss/src/edge2dsr/DataMgr.cc | 456bc1edce19512de2177ab771e3c84608062ccc | [
"BSD-3-Clause"
] | permissive | marack/lrose-core | 93254fcf6c62146d437f09322922485605089e5f | 2a05ec2960c5f95bda680bf6d29176e5bc20b38f | refs/heads/master | 2020-04-16T12:42:06.895998 | 2019-01-14T03:10:02 | 2019-01-14T03:10:02 | 165,592,701 | 0 | 0 | NOASSERTION | 2019-01-14T03:58:34 | 2019-01-14T03:58:34 | null | UTF-8 | C++ | false | false | 12,056 | cc | // *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
// ** Copyright UCAR (c) 1990 - 2016
// ** University Corporation for Atmospheric Research (UCAR)
// ** National Center for Atmospheric Research (NCAR)
// ** Boulder, Colorado, USA
// ** BSD licence applies - redistribution and use in source and binary
// ** forms, with or without modification, are permitted provided that
// ** the following conditions are met:
// ** 1) If the software is modified to produce derivative works,
// ** such modified software should be clearly marked, so as not
// ** to confuse it with the version available from UCAR.
// ** 2) Redistributions of source code must retain the above copyright
// ** notice, this list of conditions and the following disclaimer.
// ** 3) Redistributions in binary form must reproduce the above copyright
// ** notice, this list of conditions and the following disclaimer in the
// ** documentation and/or other materials provided with the distribution.
// ** 4) Neither the name of UCAR nor the names of its contributors,
// ** if any, may be used to endorse or promote products derived from
// ** this software without specific prior written permission.
// ** DISCLAIMER: THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS
// ** OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
// ** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
// *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
//////////////////////////////////////////////////////////////////////
// $Id: DataMgr.cc,v 1.53 2016/03/06 23:53:42 dixon Exp $
//
// Data managment class
/////////////////////////////////////////////////////////////////////
#include <vector>
#include <climits>
#include <cmath>
#include <unistd.h>
#include <toolsa/file_io.h>
#include <toolsa/udatetime.h>
#include <toolsa/str.h>
#include <toolsa/pmu.h>
#include <toolsa/MsgLog.hh>
#include <rapformats/DsRadarMsg.hh>
#include <Fmq/DsRadarQueue.hh>
//#include <fmqFormats/DsRadarQueue.hh>
#include "DataMgr.hh"
#include "Edge2Dsr.hh"
#include "EdgeMsg.hh"
#include "EdgeTape.hh"
#include "EdgeTcpip.hh"
#include "EdgeUdp.hh"
#include "ScanStrategy.hh"
#include "DropEOVStrategy.hh"
#include "EndEOVStrategy.hh"
#include "StartEOVStrategy.hh"
using namespace std;
const int DataMgr::MAX_BUF_SIZE = 5000;
DataMgr::DataMgr() :
edgeUdp(0),
edgeFmq(0),
edgeTape(0),
buffer(new char[MAX_BUF_SIZE]),
edgeMsg(new EdgeMsg()),
paramsRead(false),
_beamWriter(0),
archiveQueue(0),
archiveFp(0)
{
memset( (void *) buffer, (int) 0, MAX_BUF_SIZE );
}
DataMgr::~DataMgr()
{
delete edgeUdp;
delete edgeFmq;
delete edgeTape;
delete[] buffer;
delete edgeMsg;
delete _beamWriter;
delete archiveQueue;
if (archiveFp != 0)
fclose( archiveFp );
}
int
DataMgr::init( Params& params, MsgLog* msgLog )
{
//
// Are we writing to a log file?
//
if( params.archive_file &&
strcmp( params.archive_file_path, "" ) ) {
if( (archiveFp =
ta_fopen_uncompress( params.archive_file_path, "a" )) == NULL ) {
POSTMSG( ERROR, "Could not open log file %s",
params.archive_file );
return( FAILURE );
}
}
switch( params.input_type ) {
case Params::UDP:
//
// Set up input udp
//
edgeUdp = new EdgeUdp( params.port, MAX_BUF_SIZE );
if( edgeUdp->init() != SUCCESS )
return( FAILURE );
inputMode = UDP;
break;
case Params::TCPIP:
//
// Set up input TCP/IP object
//
edgeTcpip = new EdgeTcpip(params.tcpip_host, params.port,
MAX_BUF_SIZE);
if (!edgeTcpip->init())
return( FAILURE );
inputMode = TCPIP;
break;
case Params::FMQ:
//
// Set up input fmq
//
edgeFmq = new DsFmq;
if ( edgeFmq->init( params.input_fmq_url,
PROGRAM_NAME, DEBUG_ENABLED,
DsFmq::BLOCKING_READ_ONLY,
DsFmq::END,
false, 1024, 10000, 1000,
msgLog ) != 0 ) {
POSTMSG( ERROR, "Cannot initialize input queue.\n"
"Make sure fmq_url (%s) is correct.",
params.input_fmq_url );
return( FAILURE );
}
inputMode = FMQ;
break;
case Params::TAPE:
//
// Set up edge tape object
//
edgeTape = new EdgeTape( params.input_tape_name,
params.input_tape_wait,
edgeMsg->getHeaderSize() );
edgeTape->init();
inputMode = TAPE;
break;
default:
return( FAILURE );
break;
}
//
// Set up archive fmq
//
if( params.archive_fmq ) {
archiveQueue = new DsFmq;
if (archiveQueue->init( params.archive_fmq_url,
PROGRAM_NAME,
DEBUG_ENABLED,
DsFmq::READ_WRITE, DsFmq::END,
(bool) params.archive_fmq_compress,
params.archive_fmq_nslots,
params.archive_fmq_size,
1000, msgLog )) {
POSTMSG( ERROR, "Could not initialize archive queue '%s'",
params.archive_fmq_url );
return( FAILURE );
}
}
//
// Initialize the beam writer object
//
_beamWriter = new BeamWriter();
ScanStrategy scan_strategy;
int n_elevations = params.scan_strategy_n;
for( int i = 0; i < params.scan_strategy_n; ++i )
scan_strategy.addElevation(params._scan_strategy[i]);
if (!_beamWriter->init(params.output_fmq_url,
(bool)params.output_fmq_compress,
params.output_fmq_nslots,
params.output_fmq_size,
params.write_blocking,
archiveQueue,
scan_strategy,
n_elevations,
params.max_elev_diff,
params.max_diff_from_scan,
params.max_diff_from_target,
msgLog))
{
POSTMSG(ERROR, "Could not initialize beam writer object");
return(FAILURE);
}
if (!_beamWriter->initRadarParams(params.radar_id,
params.n_gates_out,
params.polarization_code,
params.radar_constant,
params.gate_spacing,
params.beam_width,
params.wavelength,
params.peak_xmit_pwr,
params.receiver_mds,
params.receiver_gain,
params.antenna_gain,
params.system_gain,
params.radar_name,
params.site_name,
params.scan_type_name))
{
POSTMSG(ERROR, "Could not initialize beam writer radar parameters");
return(FAILURE);
}
if (!_beamWriter->initFieldParams(params.dbz_scaling_info.scale,
params.dbz_scaling_info.bias,
params.vel_scaling_info.scale,
params.vel_scaling_info.bias,
params.sw_scaling_info.scale,
params.sw_scaling_info.bias,
params.dbz_scaling_info.scale,
params.dbz_scaling_info.bias))
{
POSTMSG(ERROR, "Could not initialize beam writer field parameters");
return(FAILURE);
}
EOVStrategy *eov_strategy;
switch (params.trigger_mode)
{
case Params::TRIGGER_BY_ANGLE_DROP :
eov_strategy = new DropEOVStrategy(params.end_of_volume_trigger);
break;
case Params::TRIGGER_BY_END_TILT :
eov_strategy = new EndEOVStrategy(params.end_of_volume_trigger,
scan_strategy);
break;
case Params::TRIGGER_BY_START_TILT :
eov_strategy = new StartEOVStrategy(params.end_of_volume_trigger,
scan_strategy);
break;
}
_beamWriter->setEndOfVolStrategy(eov_strategy);
if (params.override_latlon)
_beamWriter->setLatLonOverride(params.radar_location.latitude,
params.radar_location.longitude,
params.radar_location.altitude);
_beamWriter->setDiagnostics(params.print_summary == TRUE,
params.summary_interval);
//
// Set up edge message object
//
edgeMsg->init( params );
return( SUCCESS );
}
int
DataMgr::processData()
{
//
// Clear out the buffer
//
memset( (void *) buffer, (int) 0, MAX_BUF_SIZE );
bufferLen = 0;
//
// Read raw data
//
switch( inputMode ) {
case TCPIP:
PMU_auto_register( "Reading TCP/IP socket" );
if (edgeTcpip->readTcpip())
{
bufferLen = edgeTcpip->getNextMsg(buffer, MAX_BUF_SIZE);
if (bufferLen < 0)
{
POSTMSG(ERROR,
"Error reading EDGE message from TCP/IP sockets");
return FAILURE;
}
}
break;
case UDP:
PMU_auto_register( "Reading udp socket" );
if( (bufferLen = edgeUdp->readUdp( buffer )) <= 0 ) {
return( FAILURE );
}
break;
case FMQ:
PMU_auto_register( "Reading fmq" );
if( edgeFmq->readMsgBlocking() != 0 ) {
POSTMSG( ERROR, "Failed reading input fmq" );
sleep( 1 );
} else {
if( edgeFmq->getMsgType() != DsFmq::eof ) {
bufferLen = edgeFmq->getMsgLen();
memcpy( (void *) buffer,
(void *) edgeFmq->getMsg(),
bufferLen );
}
}
break;
case TAPE:
PMU_auto_register( "Reading tape" );
if( edgeTape->getMsg( buffer, &bufferLen ) != SUCCESS ) {
POSTMSG( ERROR, "Failed reading input tape" );
return( FAILURE );
}
break;
}
//
// Write udp message to archive fmq
//
PMU_auto_register( "Writing to archive fmq" );
if( archiveQueue ) {
archiveQueue->writeMsg( DS_MESSAGE_TYPE_EEC_ASCII,
0, buffer, bufferLen );
}
//
// Write buffer to archive file
//
PMU_auto_register( "Writing to archive file" );
if( archiveFp ) {
char lenString[9];
sprintf( lenString, " %4d: ", bufferLen );
if( fwrite( (void *) lenString, sizeof(char), 9,
archiveFp ) != 9 * sizeof(char) ) {
POSTMSG( ERROR, "Could not write to archive file" );
return( FAILURE );
}
if( fwrite( (void *) buffer, sizeof(char), (size_t) bufferLen,
archiveFp ) != bufferLen * sizeof(char) ) {
POSTMSG( ERROR, "Could not write to archive file" );
return( FAILURE );
}
}
//
// Read header
//
PMU_auto_register( "Reading header" );
if( edgeMsg->readHdr( buffer ) != SUCCESS ) {
return( FAILURE );
}
//
// If the message was a beam, decide if we got
// a new beam. If we did, use what is already
// in the edge message to write out the beam data.
// This will be the previous beam data. If we
// didn't get a new beam, proceed with reading
// the message and filling out the beam data.
//
// If we got a status message, read it and
// continue.
//
switch( edgeMsg->getMsgType() ) {
case EdgeMsg::BEAM:
PMU_auto_register( "Reading beam data" );
POSTMSG( DEBUG, "Reading beam data" );
if( !paramsRead ) {
return( SUCCESS );
}
if( edgeMsg->isNewBeam() ) {
_beamWriter->writeBeam(*edgeMsg);
}
if( edgeMsg->readMsg( buffer ) != SUCCESS ) {
return( FAILURE );
}
break;
case EdgeMsg::STATUS:
PMU_auto_register( "Reading status information" );
POSTMSG( DEBUG, "Reading status information" );
if( edgeMsg->readMsg( buffer ) != SUCCESS ) {
return( FAILURE );
}
paramsRead = true;
POSTMSG( DEBUG, "Parameters read" );
break;
case EdgeMsg::UNKNOWN:
break;
}
return( SUCCESS );
}
| [
"[email protected]"
] | |
87099a37aeafbc3e3b68b4e38c578b6551f8a1d0 | 245d8a636fb1c1b047be6978429ac57d9f84eaab | /IiwaCommand/catkin_ws/src/iiwa_command/src/msg_transform_helper_node.cpp | dcb91f02689106d21737066c448b70062f79a590 | [] | no_license | MritulaC/roboespas | 2526e211e32aa4e567312b119538286832e3c111 | d4eeace87d012f762f4644be2ad36badfd27206c | refs/heads/master | 2023-01-08T08:23:17.636397 | 2020-09-29T19:18:11 | 2020-09-29T19:18:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,931 | cpp | #include <cstdlib>
#include <iostream>
#include <fstream>
#include <boost/filesystem.hpp>
#include <string>
#include "ros/ros.h"
#include "sensor_msgs/JointState.h"
#include "trajectory_msgs/JointTrajectoryPoint.h"
#include "trajectory_msgs/JointTrajectory.h"
#include <Eigen/Dense>
#include <math.h>
#include <iiwa_command/FromJointTrajectory.h>
#include <iiwa_command/ToJointTrajectory.h>
#include <iiwa_command/FromJointStateVec.h>
#include <iiwa_command/ToJointStateVec.h>
#include <iiwa_command/FromTwistStampedVec.h>
#include <iiwa_command/ToTwistStampedVec.h>
using namespace std;
class MsgTransformHelperNode
{
private:
ros::NodeHandle nh;
ros::ServiceServer from_joint_traj_server;
ros::ServiceServer to_joint_traj_server;
ros::ServiceServer from_joint_state_vec_server;
ros::ServiceServer to_joint_state_vec_server;
ros::ServiceServer from_twist_stamped_vec_server;
ros::ServiceServer to_twist_stamped_vec_server;
public:
MsgTransformHelperNode(std::string name)
{
ROS_INFO ("Node registered as %s\n", name.c_str());
from_joint_traj_server = nh.advertiseService("/msg_transform_helper/from_joint_traj", &MsgTransformHelperNode::callback_from_joint_traj_server, this);
to_joint_traj_server = nh.advertiseService("/msg_transform_helper/to_joint_traj", &MsgTransformHelperNode::callback_to_joint_traj_server, this);
from_joint_state_vec_server = nh.advertiseService("/msg_transform_helper/from_joint_state_vec", &MsgTransformHelperNode::callback_from_joint_state_vec_server, this);
to_joint_state_vec_server = nh.advertiseService("/msg_transform_helper/to_joint_state_vec", &MsgTransformHelperNode::callback_to_joint_state_vec_server, this);
from_twist_stamped_vec_server = nh.advertiseService("/msg_transform_helper/from_twist_stamped_vec", &MsgTransformHelperNode::callback_from_twist_stamped_vec_server, this);
to_twist_stamped_vec_server = nh.advertiseService("/msg_transform_helper/to_twist_stamped_vec", &MsgTransformHelperNode::callback_to_twist_stamped_vec_server, this);
}
bool callback_from_joint_traj_server(iiwa_command::FromJointTrajectory::Request &req, iiwa_command::FromJointTrajectory::Response &res)
{
res.joint_names=req.joint_trajectory.joint_names;
for (int i=0; i<req.joint_trajectory.points.size(); i++)
{
res.stamps.push_back(req.joint_trajectory.points[i].time_from_start.toSec());
for (int j=0; j<req.joint_trajectory.points[i].positions.size(); j++)
res.positions.push_back(req.joint_trajectory.points[i].positions[j]);
for (int j=0; j<req.joint_trajectory.points[i].velocities.size(); j++)
res.velocities.push_back(req.joint_trajectory.points[i].velocities[j]);
for (int j=0; j<req.joint_trajectory.points[i].accelerations.size(); j++)
res.accelerations.push_back(req.joint_trajectory.points[i].accelerations[j]);
for (int j=0; j<req.joint_trajectory.points[i].effort.size(); j++)
res.efforts.push_back(req.joint_trajectory.points[i].effort[j]);
}
return true;
}
bool callback_to_joint_traj_server(iiwa_command::ToJointTrajectory::Request &req, iiwa_command::ToJointTrajectory::Response &res)
{
res.joint_trajectory.joint_names=req.joint_names;
int njoints=res.joint_trajectory.joint_names.size();
if (njoints!=0)
{
int npos=req.positions.size()/njoints;
int nvels=req.velocities.size()/njoints;
int naccs=req.accelerations.size()/njoints;
int neffs=req.efforts.size()/njoints;
int npoints = req.stamps.size();
int it_positions=0;
int it_velocities=0;
int it_accelerations=0;
int it_efforts=0;
for (int i=0; i<req.stamps.size(); i++)
{
trajectory_msgs::JointTrajectoryPoint p;
p.time_from_start=ros::Duration(req.stamps[i]);
if (i<npos)
{
for (int j=0; j<njoints; j++)
{
p.positions.push_back(req.positions[it_positions]);
it_positions=it_positions+1;
}
}
if (i<nvels)
{
for (int j=0; j<njoints; j++)
{
p.velocities.push_back(req.velocities[it_velocities]);
it_velocities=it_velocities+1;
}
}
if (i<naccs)
{
for (int j=0; j<njoints; j++)
{
p.accelerations.push_back(req.accelerations[it_accelerations]);
it_accelerations=it_accelerations+1;
}
}
if (i<neffs)
{
for (int j=0; j<njoints; j++)
{
p.effort.push_back(req.efforts[it_efforts]);
it_efforts=it_efforts+1;
}
}
res.joint_trajectory.points.push_back(p);
}
}
else
{
ROS_ERROR("ToJointTrajectoryServer Error: Fill joint_names first");
return false;
}
return true;
}
bool callback_from_joint_state_vec_server(iiwa_command::FromJointStateVec::Request &req, iiwa_command::FromJointStateVec::Response &res)
{
if (req.joint_state_vec.size()>0)
{
double first_stamp=req.joint_state_vec[0].header.stamp.toSec();
res.joint_names=req.joint_state_vec[0].name;
for (int i=0; i<req.joint_state_vec.size(); i++)
{
res.stamps.push_back(req.joint_state_vec[i].header.stamp.toSec()-first_stamp);
for (int j=0; j<req.joint_state_vec[i].position.size(); j++)
res.positions.push_back(req.joint_state_vec[i].position[j]);
for (int j=0; j<req.joint_state_vec[i].velocity.size(); j++)
res.velocities.push_back(req.joint_state_vec[i].velocity[j]);
for (int j=0; j<req.joint_state_vec[i].effort.size(); j++)
res.efforts.push_back(req.joint_state_vec[i].effort[j]);
}
}
return true;
}
bool callback_to_joint_state_vec_server(iiwa_command::ToJointStateVec::Request &req, iiwa_command::ToJointStateVec::Response &res)
{
ROS_ERROR("Not implemented yet");
//TODO: Implement
/*
res.joint_names=req.joint_trajectory.joint_names;
for (int i=0; i<req.joint_trajectory.points.size(); i++)
{
res.stamps.push_back(req.joint_trajectory.points[i].time_from_start.toSec());
for (int j=0; j<req.joint_trajectory.points[i].positions.size(); j++)
res.positions.push_back(req.joint_trajectory.points[i].positions[j]);
for (int j=0; j<req.joint_trajectory.points[i].velocities.size(); j++)
res.velocities.push_back(req.joint_trajectory.points[i].velocities[j]);
for (int j=0; j<req.joint_trajectory.points[i].accelerations.size(); j++)
res.accelerations.push_back(req.joint_trajectory.points[i].accelerations[j]);
for (int j=0; j<req.joint_trajectory.points[i].effort.size(); j++)
res.efforts.push_back(req.joint_trajectory.points[i].effort[j]);
}
return true;
*/
return true;
}
bool callback_from_twist_stamped_vec_server(iiwa_command::FromTwistStampedVec::Request &req, iiwa_command::FromTwistStampedVec::Response &res)
{
if (req.twist_stamped_vec.size()>0)
{
double first_stamp=req.twist_stamped_vec[0].header.stamp.toSec();
for (int i=0; i<req.twist_stamped_vec.size(); i++)
{
res.stamps.push_back(req.twist_stamped_vec[i].header.stamp.toSec()-first_stamp);
res.values.push_back(req.twist_stamped_vec[i].twist.linear.x);
res.values.push_back(req.twist_stamped_vec[i].twist.linear.y);
res.values.push_back(req.twist_stamped_vec[i].twist.linear.z);
res.values.push_back(req.twist_stamped_vec[i].twist.angular.x);
res.values.push_back(req.twist_stamped_vec[i].twist.angular.y);
res.values.push_back(req.twist_stamped_vec[i].twist.angular.z);
}
}
return true;
}
bool callback_to_twist_stamped_vec_server(iiwa_command::ToTwistStampedVec::Request &req, iiwa_command::ToTwistStampedVec::Response &res)
{
vector<geometry_msgs::TwistStamped> twist_stamped_vec;
int npoints = req.stamps.size();
int id_values = 0 ;
ros::Time time_start = ros::Time::now();
for (unsigned int i=0; i<npoints; i++)
{
geometry_msgs::TwistStamped twist_stamped;
twist_stamped.twist.linear.x=req.values[id_values];
id_values++;
twist_stamped.twist.linear.y=req.values[id_values];
id_values++;
twist_stamped.twist.linear.z=req.values[id_values];
id_values++;
twist_stamped.twist.angular.x=req.values[id_values];
id_values++;
twist_stamped.twist.angular.y=req.values[id_values];
id_values++;
twist_stamped.twist.angular.z=req.values[id_values];
id_values++;
twist_stamped.header.stamp = ros::Time(req.stamps[i]);
twist_stamped_vec.push_back(twist_stamped);
}
/*if (req.twist_stamped_vec.size()>0)
{
double first_stamp=req.twist_stamped_vec[0].header.stamp.toSec();
for (int i=0; i<req.twist_stamped_vec.size(); i++)
{
res.stamps.push_back(req.twist_stamped_vec[i].header.stamp.toSec()-first_stamp);
res.values.push_back(req.twist_stamped_vec[i].twist.linear.x);
res.values.push_back(req.twist_stamped_vec[i].twist.linear.y);
res.values.push_back(req.twist_stamped_vec[i].twist.linear.z);
res.values.push_back(req.twist_stamped_vec[i].twist.angular.x);
res.values.push_back(req.twist_stamped_vec[i].twist.angular.y);
res.values.push_back(req.twist_stamped_vec[i].twist.angular.z);
}
}*/
//TODO
res.twist_stamped_vec = twist_stamped_vec;
return true;
}
};
int main(int argc, char **argv)
{
ros::init(argc,argv, "msg_transform_helper");
MsgTransformHelperNode msg_transform_node=MsgTransformHelperNode(ros::this_node::getName());
bool success = true;
while (ros::ok())
{
ros::spinOnce();
}
return 0;
}
| [
"[email protected]"
] | |
452ff0ca662ccabe6fc797ab65d5195a97eb8a13 | e077aaaa60a39ba40855f36bc3a53f8adfc8fc08 | /tensorflow-master-tensorflow/core/kernels/queue_ops.cc | 2b8caed009d4dd5475c9c50d7016d5878cc34b28 | [
"MIT"
] | permissive | xijunlee/tensorflow-learning | fe9dd1d9b0d3e79b7ed3cad16c4d25073ab14483 | 936c384667632c43ccd3d536b8136d46a978d5aa | refs/heads/master | 2022-11-01T13:27:22.423217 | 2018-12-05T07:19:34 | 2018-12-05T07:19:34 | 88,263,357 | 1 | 1 | MIT | 2022-10-11T19:19:53 | 2017-04-14T11:48:26 | C++ | UTF-8 | C++ | false | false | 10,267 | cc | /* Copyright 2015 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
// See docs in ../ops/data_flow_ops.cc.
#include "tensorflow/core/framework/op_kernel.h"
#include "tensorflow/core/framework/queue_interface.h"
#include "tensorflow/core/framework/types.h"
#include "tensorflow/core/lib/core/errors.h"
#include "tensorflow/core/platform/macros.h"
#include "tensorflow/core/platform/port.h"
#include "tensorflow/core/public/tensor.h"
#include "tensorflow/core/public/tensor_shape.h"
namespace tensorflow {
class QueueOpKernel : public AsyncOpKernel {
public:
explicit QueueOpKernel(OpKernelConstruction* context)
: AsyncOpKernel(context) {}
void ComputeAsync(OpKernelContext* ctx, DoneCallback callback) final {
QueueInterface* queue;
OP_REQUIRES_OK_ASYNC(ctx, GetResourceFromContext(ctx, "handle", &queue),
callback);
ComputeAsync(ctx, queue, [callback, queue]() {
queue->Unref();
callback();
});
}
protected:
virtual void ComputeAsync(OpKernelContext* ctx, QueueInterface* queue,
DoneCallback callback) = 0;
};
class QueueAccessOpKernel : public QueueOpKernel {
public:
explicit QueueAccessOpKernel(OpKernelConstruction* context)
: QueueOpKernel(context) {
OP_REQUIRES_OK(context, context->GetAttr("timeout_ms", &timeout_));
// TODO(keveman): Enable timeout.
OP_REQUIRES(context, timeout_ == -1,
errors::InvalidArgument("Timeout not supported yet."));
}
protected:
int64 timeout_;
};
// Defines an EnqueueOp, the execution of which enqueues a tuple of
// tensors in the given Queue.
//
// The op has 1 + k inputs, where k is the number of components in the
// tuples stored in the given Queue:
// - Input 0: queue handle.
// - Input 1: 0th element of the tuple.
// - ...
// - Input (1+k): kth element of the tuple.
class EnqueueOp : public QueueAccessOpKernel {
public:
explicit EnqueueOp(OpKernelConstruction* context)
: QueueAccessOpKernel(context) {}
protected:
void ComputeAsync(OpKernelContext* ctx, QueueInterface* queue,
DoneCallback callback) override {
DataTypeVector expected_inputs = {DT_STRING_REF};
for (DataType dt : queue->component_dtypes()) {
expected_inputs.push_back(dt);
}
OP_REQUIRES_OK_ASYNC(ctx, ctx->MatchSignature(expected_inputs, {}),
callback);
QueueInterface::Tuple tuple;
OpInputList components;
OP_REQUIRES_OK_ASYNC(ctx, ctx->input_list("components", &components),
callback);
for (const Tensor& Tcomponent : components) {
tuple.push_back(Tcomponent);
}
OP_REQUIRES_OK_ASYNC(ctx, queue->ValidateTuple(tuple), callback);
queue->TryEnqueue(tuple, ctx, callback);
}
private:
TF_DISALLOW_COPY_AND_ASSIGN(EnqueueOp);
};
REGISTER_KERNEL_BUILDER(Name("QueueEnqueue").Device(DEVICE_CPU), EnqueueOp);
// Defines an EnqueueManyOp, the execution of which slices each
// component of a tuple of tensors along the 0th dimension, and
// enqueues tuples of slices in the given Queue.
//
// The op has 1 + k inputs, where k is the number of components in the
// tuples stored in the given Queue:
// - Input 0: queue handle.
// - Input 1: 0th element of the tuple.
// - ...
// - Input (1+k): kth element of the tuple.
//
// N.B. All tuple components must have the same size in the 0th
// dimension.
class EnqueueManyOp : public QueueAccessOpKernel {
public:
explicit EnqueueManyOp(OpKernelConstruction* context)
: QueueAccessOpKernel(context) {}
protected:
void ComputeAsync(OpKernelContext* ctx, QueueInterface* queue,
DoneCallback callback) override {
DataTypeVector expected_inputs = {DT_STRING_REF};
for (DataType dt : queue->component_dtypes()) {
expected_inputs.push_back(dt);
}
OP_REQUIRES_OK_ASYNC(ctx, ctx->MatchSignature(expected_inputs, {}),
callback);
QueueInterface::Tuple tuple;
OpInputList components;
OP_REQUIRES_OK_ASYNC(ctx, ctx->input_list("components", &components),
callback);
for (const Tensor& Tcomponent : components) {
tuple.push_back(Tcomponent);
}
OP_REQUIRES_OK_ASYNC(ctx, queue->ValidateManyTuple(tuple), callback);
queue->TryEnqueueMany(tuple, ctx, callback);
}
~EnqueueManyOp() override {}
private:
TF_DISALLOW_COPY_AND_ASSIGN(EnqueueManyOp);
};
REGISTER_KERNEL_BUILDER(Name("QueueEnqueueMany").Device(DEVICE_CPU),
EnqueueManyOp);
// Defines a DequeueOp, the execution of which dequeues a tuple of
// tensors from the given Queue.
//
// The op has one input, which is the handle of the appropriate
// Queue. The op has k outputs, where k is the number of components in
// the tuples stored in the given Queue, and output i is the ith
// component of the dequeued tuple.
class DequeueOp : public QueueAccessOpKernel {
public:
explicit DequeueOp(OpKernelConstruction* context)
: QueueAccessOpKernel(context) {}
protected:
void ComputeAsync(OpKernelContext* ctx, QueueInterface* queue,
DoneCallback callback) override {
OP_REQUIRES_OK_ASYNC(
ctx, ctx->MatchSignature({DT_STRING_REF}, queue->component_dtypes()),
callback);
queue->TryDequeue(ctx, [ctx, callback](const QueueInterface::Tuple& tuple) {
if (!ctx->status().ok()) {
callback();
return;
}
OpOutputList output_components;
OP_REQUIRES_OK_ASYNC(
ctx, ctx->output_list("components", &output_components), callback);
for (int i = 0; i < ctx->num_outputs(); ++i) {
output_components.set(i, tuple[i]);
}
callback();
});
}
~DequeueOp() override {}
private:
TF_DISALLOW_COPY_AND_ASSIGN(DequeueOp);
};
REGISTER_KERNEL_BUILDER(Name("QueueDequeue").Device(DEVICE_CPU), DequeueOp);
// Defines a DequeueManyOp, the execution of which concatenates the
// requested number of elements from the given Queue along the 0th
// dimension, and emits the result as a single tuple of tensors.
//
// The op has two inputs:
// - Input 0: the handle to a queue.
// - Input 1: the number of elements to dequeue.
//
// The op has k outputs, where k is the number of components in the
// tuples stored in the given Queue, and output i is the ith component
// of the dequeued tuple.
class DequeueManyOp : public QueueAccessOpKernel {
public:
explicit DequeueManyOp(OpKernelConstruction* context)
: QueueAccessOpKernel(context) {}
protected:
void ComputeAsync(OpKernelContext* ctx, QueueInterface* queue,
DoneCallback callback) override {
const Tensor& Tnum_elements = ctx->input(1);
int32 num_elements = Tnum_elements.flat<int32>()(0);
OP_REQUIRES_ASYNC(
ctx, num_elements >= 0,
errors::InvalidArgument("DequeueManyOp must request a positive number "
"of elements"),
callback);
OP_REQUIRES_OK_ASYNC(ctx, ctx->MatchSignature({DT_STRING_REF, DT_INT32},
queue->component_dtypes()),
callback);
queue->TryDequeueMany(
num_elements, ctx, [ctx, callback](const QueueInterface::Tuple& tuple) {
if (!ctx->status().ok()) {
callback();
return;
}
OpOutputList output_components;
OP_REQUIRES_OK_ASYNC(
ctx, ctx->output_list("components", &output_components),
callback);
for (int i = 0; i < ctx->num_outputs(); ++i) {
output_components.set(i, tuple[i]);
}
callback();
});
}
~DequeueManyOp() override {}
private:
TF_DISALLOW_COPY_AND_ASSIGN(DequeueManyOp);
};
REGISTER_KERNEL_BUILDER(Name("QueueDequeueMany").Device(DEVICE_CPU),
DequeueManyOp);
// Defines a QueueCloseOp, which closes the given Queue. Closing a
// Queue signals that no more elements will be enqueued in it.
//
// The op has one input, which is the handle of the appropriate Queue.
class QueueCloseOp : public QueueOpKernel {
public:
explicit QueueCloseOp(OpKernelConstruction* context)
: QueueOpKernel(context) {
OP_REQUIRES_OK(context, context->GetAttr("cancel_pending_enqueues",
&cancel_pending_enqueues_));
}
protected:
void ComputeAsync(OpKernelContext* ctx, QueueInterface* queue,
DoneCallback callback) override {
queue->Close(ctx, cancel_pending_enqueues_, callback);
}
private:
bool cancel_pending_enqueues_;
TF_DISALLOW_COPY_AND_ASSIGN(QueueCloseOp);
};
REGISTER_KERNEL_BUILDER(Name("QueueClose").Device(DEVICE_CPU), QueueCloseOp);
// Defines a QueueSizeOp, which computes the number of elements in the
// given Queue, and emits it as an output tensor.
//
// The op has one input, which is the handle of the appropriate Queue;
// and one output, which is a single-element tensor containing the current
// size of that Queue.
class QueueSizeOp : public QueueOpKernel {
public:
explicit QueueSizeOp(OpKernelConstruction* context)
: QueueOpKernel(context) {}
protected:
void ComputeAsync(OpKernelContext* ctx, QueueInterface* queue,
DoneCallback callback) override {
Tensor* Tqueue_size = nullptr;
OP_REQUIRES_OK(ctx, ctx->allocate_output(0, TensorShape({}), &Tqueue_size));
Tqueue_size->flat<int32>().setConstant(queue->size());
callback();
}
private:
TF_DISALLOW_COPY_AND_ASSIGN(QueueSizeOp);
};
REGISTER_KERNEL_BUILDER(Name("QueueSize").Device(DEVICE_CPU), QueueSizeOp);
} // namespace tensorflow
| [
"[email protected]"
] | |
f02120eff765b9c886b0a5f1f295f985a4b44568 | 05ffa1b96da6b598eba0996692d932813235aec4 | /CListV1/CDuree.cxx | 43a5636e9b1f1b8470131b067090729a6643796f | [] | no_license | steffunky/CList | 849fc84435249887ccae2c1d96a5ac0594f5995f | b9f081677fe2812d51d728bd4389a4b8e2ba2d1a | refs/heads/master | 2021-01-19T16:51:05.555324 | 2014-12-08T00:38:58 | 2014-12-08T00:38:58 | 27,071,965 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,246 | cxx | /**
*
* @file CDuree.cxx
*
* @authors M. Laporte, D. Mathieu
*
* @date 21/04/2010
*
* @version V1.0
*
* @brief Definition des methodes de la classe CDuree
*
**/
#include <iostream>
#include <iomanip>
#include "CDuree.h"
#include "CstCodErr.h"
#include "CException.h"
#define CDUREE nsUtil::CDuree
using namespace std;
using namespace nsUtil;
// Les valeurs par defaut sont rappelees en commentaires car
// interdites
void CDUREE::Normaliser (void) throw ()
{
m_Secondes = m_Duree % 60;
m_Minutes = m_Duree / 60 % 60;
m_Heures = m_Duree / 3600 % 24;
m_Jours = m_Duree / 86400;
} // Normaliser()
ostream & CDUREE::_Edit (ostream & os) const
{
return
os << '[' << setfill (' ')
<< setw (6) << m_Jours << ':' << setfill ('0')
<< setw (2) << m_Heures << ':'
<< setw (2) << m_Minutes << ':'
<< setw (2) << m_Secondes << ']' << setfill (' ');
} // _Edit()
CDuree CDUREE::operator - (ULLong_t D) const throw (CException)
{
if (m_Duree < D)
throw CException ("-- : operation interdite",
KExcOpInterdite);
return CDuree (m_Duree - D);
} // operator -
CDuree CDUREE::operator + (ULLong_t D) const throw ()
{
return CDuree (m_Duree + D);
} // operator +
CDuree CDUREE::operator - (const CDuree & D) const throw (CException)
{
if (m_Duree < D.m_Duree)
throw CException ("-- : operation interdite",
KExcOpInterdite);
return CDuree (m_Duree - D.m_Duree);
} // operator -
CDuree CDUREE::operator + (const CDuree & D) const throw ()
{
return CDuree (m_Duree + D.m_Duree);
} // operator +
CDuree & CDUREE::operator ++ (void) throw ()
{
++m_Duree;
Normaliser();
return *this;
} // operator ++ pre
CDuree CDUREE::operator ++ (int) throw ()
{
return CDuree (m_Duree++);
} // operator ++ post
CDuree & CDUREE::operator -- (void) throw (CException)
{
if (m_Duree == 0)
throw CException ("-- : operation interdite",
KExcOpInterdite);
--m_Duree;
Normaliser();
return *this;
} // operator -- pre
CDuree CDUREE::operator -- (int) throw (CException)
{
if (m_Duree == 0)
throw CException ("-- : operation interdite",
KExcOpInterdite);
return CDuree (m_Duree--);
} // operator -- post
CDuree & CDUREE::operator += (ULLong_t D) throw ()
{
m_Duree += D;
Normaliser();
return *this;
} // operator +=
CDuree & CDUREE::operator -= (ULLong_t D) throw (CException)
{
if (m_Duree < D)
throw CException ("-- : operation interdite",
KExcOpInterdite);
m_Duree -= D;
Normaliser();
return *this;
} // operator -=
CDuree & CDUREE::operator += (const CDuree & D) throw ()
{
m_Duree += D.m_Duree;
Normaliser();
return *this;
} // operator +=
CDuree & CDUREE::operator -= (const CDuree & D) throw (CException)
{
if (m_Duree < D.m_Duree)
throw CException ("-- : operation interdite",
KExcOpInterdite);
m_Duree -= D.m_Duree;
Normaliser();
return *this;
} // operator -=
#undef CDUREE
| [
"[email protected]"
] | |
0d0cf4211145950a16661f8a576a6b5ac133203a | 13d71dd1ec512889233959377427943d21137d7d | /信息学院/编译原理-zpt/Labs/parser_LR/closure.cpp | 264796d6bbafb243c3fb4fdb365b92553c806719 | [] | no_license | namespace-Pt/Curriculum-RUC | 64dac208cbb1e1d0a5a135c4a911715bfb460578 | 61b1b745d86700caa22e24b607421f9bae097f55 | refs/heads/main | 2023-06-01T00:24:29.940027 | 2021-07-08T09:53:50 | 2021-07-08T09:53:50 | 324,480,325 | 31 | 13 | null | null | null | null | UTF-8 | C++ | false | false | 4,306 | cpp | # include "closure.h"
Closures::Closures(){
// this->total = total;
}
// Closures::Closures(){
// // this->total = total;
// }
Items* Closures::find(Items* target){
for(auto i:closures){
if(i->indices == target->indices){
return i;
}
}
return nullptr;
}
// compute the closure(state) and the go function
void Closures::get_closure_and_go(map<char, vector<Items*>>& items, map<char, Symbol*>& symbols){
bool isChange = true;
int closure_num = 0;
deque<Items*> queue;
set<Item*> tmp;
Items* startClos = new Items(closure_num);
Items* crtClos;
Item* it;
// S->.X
it = items[STARTSYM][0]->items[0];
startClos->append(it,true);
// items[STARTSYM][0]->items[0]->isContained = true;
tmp.insert(it);
// FIXME, requires speeding up
// create closure for start item
// A->a.Bb, append B->.X into this closure
while(!tmp.empty()){
auto lt = *tmp.begin();
// if B is non-terminal
if(lt->dot < lt->length && !lt->get_dot()->is_terminal){
// get all the items whose lhs with B
for(auto rt : items[lt->get_dot()->symbol]){
// append B->.x
if(!startClos->append(*rt->items.begin(),true)){
// (*rt->items.begin())->isContained = true;
tmp.insert(*rt->items.begin());
tmp.erase(lt);
}
else{
tmp.erase(lt);
break;
}
}
}
else{
tmp.erase(lt);
}
}
it = nullptr;
closures.push_back(startClos);
// create closure and go
queue.push_front(startClos);
while(!queue.empty()){
crtClos = queue.back();
queue.pop_back();
// crtClos->info();
// cout<<endl;
for(auto i : symbols){
Items * newClos = new Items(closure_num+1);
for(auto item : crtClos->items){
// if A->a.Xb and the symbol is X, one item can be contained in multiple closures
if(item->next && item->grammer->tail[item->dot]->symbol == i.first){
it = item->next;
newClos->append(it,true);
// calculate closure for it
tmp.clear();
tmp.insert(it);
// A->a.Bb, append B->.X into this closure
while(!tmp.empty()){
auto kt = *tmp.begin();
// if B is non-terminal
if(kt->next && !kt->grammer->tail[kt->dot]->is_terminal){
// get all the items whose lhs with B
for(auto rt : items[kt->grammer->tail[kt->dot]->symbol]){
// append B->.x
if(!newClos->append(*rt->items.begin(), true)){
// (*rt->items.begin())->isContained = true;
tmp.insert(rt->items[0]);
tmp.erase(kt);
}
else{
tmp.erase(kt);
break;
}
}
}
else{
tmp.erase(kt);
}
}
startClos = find(newClos);
if(!startClos){
queue.push_front(newClos);
closures.push_back(newClos);
crtClos->route[i.first] = newClos;
closure_num++;
}
else{
crtClos->route[i.first] = startClos;
}
}
}
}
}
length = closures.size();
}
void Closures::info(){
for(auto i : closures){
cout<<"Closure No."<<i->index<<": ";
i->info();
cout<<"Route:";
for(auto j : i->route){
cout<<'['<<j.first<<" -> "<<j.second->index<<"], ";
}
cout<<endl;
}
} | [
"[email protected]"
] | |
b109869e9c16d37a41ae56bd9a617f424cd2c112 | 74c37de648339a3c1236aadd2420f5aba3b2c03a | /Qn48.cpp | 6d5c6756178923187dc3753f25b24b8fa84ce804 | [] | no_license | MaitreyaPanigrahi/CPP_codes | eec16ff1e4830d6f04f0a2439c5f0f6082e87b52 | 1eadbdb3692512ea7c34c2013fe6919cef06e066 | refs/heads/master | 2023-08-13T19:08:34.173862 | 2021-10-02T05:00:26 | 2021-10-02T05:00:26 | 410,927,670 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 378 | cpp | # include<iostream>
# include<cmath>
using namespace std;
bool isPrime(int num)
{
for(int i=2;i<=sqrt(num);i++)
{
if(num%i==0)
{
return false;
}
}
return true;
}
int main()
{
int a,b;
cin>>a>>b;
for(int i=a;i<=b;i++)
{
if(isPrime(i))
{
cout<<i<<endl;
}
}
return 0;
} | [
"[email protected]"
] | |
b88fb1285d8e9afb92c829944911cbcc122e586c | 8bb9449fa959b1b77f13113a2b2b103ac75d2239 | /algorithms/src/Ex_209/Minimum_size_subarray_sum_@_solution_binary_search_time_nlogn.cpp | c572677d52cf1e6631f22b22138eed688c94d65e | [] | no_license | Yixuan-Lee/LeetCode | 2c8ce9556af77a7b9ed5e26307a84ab049dac110 | 07e0f437775b176295ee0c830bf6d8bd4c57492c | refs/heads/master | 2021-06-24T00:23:05.157714 | 2020-11-08T18:40:02 | 2020-11-08T18:40:02 | 151,669,486 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,030 | cpp | // references:
// https://leetcode.com/articles/minimum-size-subarray-sum/
// https://en.cppreference.com/w/cpp/algorithm/lower_bound
#include <iostream>
#include <vector>
using std::vector;
class Solution {
public:
int minSubArrayLen(int s, vector<int> &nums) {
auto n = static_cast<int> (nums.size());
if (n == 0) {
return 0;
}
int ans = INT_MAX;
// stores the sums from the beginning of array
vector<int> sums(static_cast<unsigned long> (n + 1), 0);
for (int i = 1; i <= n; i++) {
sums[i] = sums[i - 1] + nums[i - 1];
}
for (int i = 1; i <= n; i++) {
int toFind = s + sums[i - 1];
// template<class ForwardIt, class T>
// ForwardIt lower_bound(ForwardIt first, ForwardIt last, const T& value);
//
// returned value of lower_bound(first, last, value):
// returns an iterator pointing to the first element in the range [first, last)
// that is not less than value, or last if no such element is found
//
// complexity of lower_bound(first, last, value):
// logarithmic, needs log2(last - first) + O(1) comparisons
//
auto bound = std::lower_bound(sums.begin(), sums.end(), toFind);
if (bound != sums.end()) {
ans = std::min(ans,
static_cast<int> (bound - (sums.begin() + i - 1)));
}
}
return (ans != INT_MAX) ? ans : 0;
}
};
int main() {
Solution s;
vector<int> nums;
int target;
nums = vector<int> {2, 3, 1, 2, 4, 3};
target = 7;
std::cout << s.minSubArrayLen(target, nums) << std::endl; // 2
nums = vector<int> {1, 2, 3, 4, 5};
target = 15;
std::cout << s.minSubArrayLen(target, nums) << std::endl; // 5
nums = vector<int> {1, 1};
target = 3;
std::cout << s.minSubArrayLen(target, nums) << std::endl; // 0
return 0;
}
| [
"[email protected]"
] | |
bc2d05bbdadcf7b0152d935bc04f7a0127203619 | 65c585802698a1c83f32865f69b57c3e1005a0b1 | /Lumos/Source/Lumos/Graphics/RHI/Pipeline.cpp | e8d3950894a00381d9a54e03cc06c02b56497374 | [
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | amyvmiwei/Lumos | a43f848476d98595bdc5e99afd9ea1343fee5017 | 5c32cdf3d656fc28fc257242968395278d4df943 | refs/heads/master | 2023-08-03T09:56:35.489933 | 2021-08-25T17:27:14 | 2021-08-25T17:27:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,396 | cpp | #include "Precompiled.h"
#include "Pipeline.h"
#include "Core/Engine.h"
#include "SwapChain.h"
#include "Texture.h"
#include "Renderer.h"
#include "Utilities/CombineHash.h"
#include "Graphics/RHI/GraphicsContext.h"
#ifdef LUMOS_RENDER_API_VULKAN
#include "Platform/Vulkan/VK.h"
#endif
#ifdef LUMOS_RENDER_API_OPENGL
#include "Platform/OpenGL/GLSwapChain.h"
#endif
namespace Lumos
{
namespace Graphics
{
struct PipelineAsset
{
SharedPtr<Pipeline> pipeline;
float timeSinceLastAccessed;
};
static std::unordered_map<std::size_t, PipelineAsset> m_PipelineCache;
static const float m_CacheLifeTime = 1.0f;
Pipeline* (*Pipeline::CreateFunc)(const PipelineDesc&) = nullptr;
Pipeline* Pipeline::Create(const PipelineDesc& pipelineDesc)
{
LUMOS_PROFILE_FUNCTION();
LUMOS_ASSERT(CreateFunc, "No Pipeline Create Function");
return CreateFunc(pipelineDesc);
}
SharedPtr<Pipeline> Pipeline::Get(const PipelineDesc& pipelineDesc)
{
LUMOS_PROFILE_FUNCTION();
size_t hash = 0;
HashCombine(hash, pipelineDesc.shader.get(), pipelineDesc.cullMode, pipelineDesc.depthBiasEnabled, pipelineDesc.drawType, pipelineDesc.polygonMode, pipelineDesc.transparencyEnabled);
for(auto texture : pipelineDesc.colourTargets)
{
if(texture)
{
HashCombine(hash, texture);
HashCombine(hash, texture->GetWidth(), texture->GetHeight());
HashCombine(hash, texture->GetHandle());
HashCombine(hash, texture->GetFormat());
#ifdef LUMOS_RENDER_API_VULKAN
if(GraphicsContext::GetRenderAPI() == RenderAPI::VULKAN)
{
VkDescriptorImageInfo* imageHandle = (VkDescriptorImageInfo*)(texture->GetImageHande());
HashCombine(hash, imageHandle->imageLayout, imageHandle->imageView, imageHandle->sampler);
}
#endif
}
}
HashCombine(hash, pipelineDesc.clearTargets);
HashCombine(hash, pipelineDesc.depthTarget);
HashCombine(hash, pipelineDesc.depthArrayTarget);
HashCombine(hash, pipelineDesc.swapchainTarget);
if(pipelineDesc.swapchainTarget)
{
//Add one swapchain image to hash
auto texture = Renderer::GetMainSwapChain()->GetCurrentImage();
if(texture)
{
HashCombine(hash, texture);
HashCombine(hash, texture->GetWidth(), texture->GetHeight());
HashCombine(hash, texture->GetHandle());
HashCombine(hash, texture->GetFormat());
#ifdef LUMOS_RENDER_API_VULKAN
if(GraphicsContext::GetRenderAPI() == RenderAPI::VULKAN)
{
VkDescriptorImageInfo* imageHandle = (VkDescriptorImageInfo*)(texture->GetImageHande());
HashCombine(hash, imageHandle->imageLayout, imageHandle->imageView, imageHandle->sampler);
}
#endif
}
}
auto found = m_PipelineCache.find(hash);
if(found != m_PipelineCache.end() && found->second.pipeline)
{
found->second.timeSinceLastAccessed = Engine::GetTimeStep().GetElapsedSeconds();
return found->second.pipeline;
}
auto pipeline = SharedPtr<Pipeline>(Create(pipelineDesc));
m_PipelineCache[hash] = { pipeline, Engine::GetTimeStep().GetElapsedSeconds() };
return pipeline;
}
void Pipeline::ClearCache()
{
m_PipelineCache.clear();
}
void Pipeline::DeleteUnusedCache()
{
LUMOS_PROFILE_FUNCTION();
static std::size_t keysToDelete[256];
std::size_t keysToDeleteCount = 0;
for(auto&& [key, value] : m_PipelineCache)
{
if(value.pipeline && value.pipeline.GetCounter()->GetReferenceCount() == 1 && (Engine::GetTimeStep().GetElapsedSeconds() - value.timeSinceLastAccessed) > m_CacheLifeTime)
{
keysToDelete[keysToDeleteCount] = key;
keysToDeleteCount++;
}
}
for(std::size_t i = 0; i < keysToDeleteCount; i++)
{
m_PipelineCache[keysToDelete[i]].pipeline = nullptr;
m_PipelineCache.erase(keysToDelete[i]);
}
}
uint32_t Pipeline::GetWidth()
{
if(m_Description.swapchainTarget)
{
#ifdef LUMOS_RENDER_API_OPENGL
if(GraphicsContext::GetRenderAPI() == RenderAPI::OPENGL)
return ((GLSwapChain*)Renderer::GetMainSwapChain())->GetWidth();
#endif
return Renderer::GetMainSwapChain()->GetCurrentImage()->GetWidth();
}
if(m_Description.colourTargets[0])
return m_Description.colourTargets[0]->GetWidth();
if(m_Description.depthTarget)
return m_Description.depthTarget->GetWidth();
if(m_Description.depthArrayTarget)
return m_Description.depthArrayTarget->GetWidth();
LUMOS_LOG_WARN("Invalid pipeline width");
return 0;
}
uint32_t Pipeline::GetHeight()
{
if(m_Description.swapchainTarget)
{
#ifdef LUMOS_RENDER_API_OPENGL
if(GraphicsContext::GetRenderAPI() == RenderAPI::OPENGL)
return ((GLSwapChain*)Renderer::GetMainSwapChain())->GetHeight();
#endif
return Renderer::GetMainSwapChain()->GetCurrentImage()->GetHeight();
}
if(m_Description.colourTargets[0])
return m_Description.colourTargets[0]->GetHeight();
if(m_Description.depthTarget)
return m_Description.depthTarget->GetHeight();
if(m_Description.depthArrayTarget)
return m_Description.depthArrayTarget->GetHeight();
LUMOS_LOG_WARN("Invalid pipeline height");
return 0;
}
}
}
| [
"[email protected]"
] | |
94568aaca655cadbaaf729b5ee00d3d3f4aa4527 | 6b68d264194a4a9dcef42fb757ed5b8365b4e2a5 | /AirLib/include/common/VectorMath.hpp | dccd5113781e845847797f731a65195bd77f983c | [] | no_license | fish1996/CarSim | 5e3aeb552164f19cd538d71b2bdc5485e58971b3 | ddb85bce1329d747c65fd4a91eaa152b608cdb81 | refs/heads/master | 2021-09-03T06:00:05.849455 | 2018-01-06T04:36:37 | 2018-01-06T04:36:37 | 116,452,608 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,335 | hpp | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#ifndef air_VectorMath_hpp
#define air_VectorMath_hpp
#include "common/common_utils/Utils.hpp"
#include "common_utils/RandomGenerator.hpp"
STRICT_MODE_OFF
//if not using unaligned types then disable vectorization to avoid alignment issues all over the places
//#define EIGEN_DONT_VECTORIZE
#include "Eigen/Dense"
STRICT_MODE_ON
namespace msr { namespace airlib {
template <class Vector3T, class QuaternionT, class RealT>
class VectorMathT {
public:
//IMPORTANT: make sure fixed size vectorizable types have no alignment assumption
//https://eigen.tuxfamily.org/dox/group__TopicUnalignedArrayAssert.html
typedef Eigen::Matrix<float, 1, 1> Vector1f;
typedef Eigen::Matrix<double, 1, 1> Vector1d;
typedef Eigen::Matrix<float,2,1,Eigen::DontAlign> Vector2f;
typedef Eigen::Matrix<double,4,1,Eigen::DontAlign> Vector2d;
typedef Eigen::Vector3f Vector3f;
typedef Eigen::Vector3d Vector3d;
typedef Eigen::Array3f Array3f;
typedef Eigen::Array3d Array3d;
typedef Eigen::Quaternion<float,Eigen::DontAlign> Quaternionf;
typedef Eigen::Quaternion<double,Eigen::DontAlign> Quaterniond;
typedef Eigen::Matrix<double, 3, 3> Matrix3x3d;
typedef Eigen::Matrix<float, 3, 3> Matrix3x3f;
typedef Eigen::AngleAxisd AngleAxisd;
typedef Eigen::AngleAxisf AngleAxisf;
typedef common_utils::Utils Utils;
//use different seeds for each component
//TODO: below we are using double instead of RealT becaise of VC++2017 bug in random implementation
typedef common_utils::RandomGenerator<RealT, std::normal_distribution<double>, 1> RandomGeneratorGausianXT;
typedef common_utils::RandomGenerator<RealT, std::normal_distribution<double>, 2> RandomGeneratorGausianYT;
typedef common_utils::RandomGenerator<RealT, std::normal_distribution<double>, 3> RandomGeneratorGausianZT;
typedef common_utils::RandomGenerator<RealT, std::uniform_real_distribution<RealT>, 1> RandomGeneratorXT;
typedef common_utils::RandomGenerator<RealT, std::uniform_real_distribution<RealT>, 2> RandomGeneratorYT;
typedef common_utils::RandomGenerator<RealT, std::uniform_real_distribution<RealT>, 3> RandomGeneratorZT;
struct Pose {
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
Vector3T position = Vector3T::Zero();
QuaternionT orientation = QuaternionT(1, 0, 0, 0);
Pose()
{}
Pose(const Vector3T& position_val, const QuaternionT& orientation_val)
{
orientation = orientation_val;
position = position_val;
}
friend Pose operator-(const Pose& lhs, const Pose& rhs)
{
return VectorMathT::subtract(lhs, rhs);
}
friend bool operator==(const Pose& lhs, const Pose& rhs)
{
return lhs.position == rhs.position && lhs.orientation.coeffs() == rhs.orientation.coeffs();
}
friend bool operator!=(const Pose& lhs, const Pose& rhs)
{
return !(lhs == rhs);;
}
static Pose nanPose()
{
static const Pose nan_pose(VectorMathT::nanVector(), VectorMathT::nanQuaternion());
return nan_pose;
}
static Pose zero()
{
static const Pose zero_pose(Vector3T::Zero(), QuaternionT(1, 0, 0, 0));
return zero_pose;
}
};
struct Transform {
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
Vector3T translation;
QuaternionT rotation;
};
class RandomVectorT {
public:
RandomVectorT()
{}
RandomVectorT(RealT min_val, RealT max_val)
: rx_(min_val, max_val), ry_(min_val, max_val), rz_(min_val, max_val)
{
}
RandomVectorT(const Vector3T& min_val, const Vector3T& max_val)
: rx_(min_val.x(), max_val.x()), ry_(min_val.y(), max_val.y()), rz_(min_val.z(), max_val.z())
{
}
void reset()
{
rx_.reset(); ry_.reset(); rz_.reset();
}
Vector3T next()
{
return Vector3T(rx_.next(), ry_.next(), rz_.next());
}
private:
RandomGeneratorXT rx_;
RandomGeneratorYT ry_;
RandomGeneratorZT rz_;
};
class RandomVectorGaussianT {
public:
RandomVectorGaussianT()
{}
RandomVectorGaussianT(RealT mean, RealT stddev)
: rx_(mean, stddev), ry_(mean, stddev), rz_(mean, stddev)
{
}
RandomVectorGaussianT(const Vector3T& mean, const Vector3T& stddev)
: rx_(mean.x(), stddev.x()), ry_(mean.y(), stddev.y()), rz_(mean.z(), stddev.z())
{
}
void reset()
{
rx_.reset(); ry_.reset(); rz_.reset();
}
Vector3T next()
{
return Vector3T(rx_.next(), ry_.next(), rz_.next());
}
private:
RandomGeneratorGausianXT rx_;
RandomGeneratorGausianYT ry_;
RandomGeneratorGausianZT rz_;
};
public:
static float magnitude(const Vector2f& v)
{
return v.norm();
}
static RealT magnitude(const Vector3T& v)
{
return v.norm();
}
static Vector3T rotateVector(const Vector3T& v, const QuaternionT& q, bool assume_unit_quat)
{
unused(assume_unit_quat); // stop warning: unused parameter.
//More performant method is at http://gamedev.stackexchange.com/a/50545/20758
//QuaternionT vq(0, v.x(), v.y(), v.z());
//QuaternionT qi = assume_unit_quat ? q.conjugate() : q.inverse();
//return (q * vq * qi).vec();
return q._transformVector(v);
}
static Vector3T rotateVectorReverse(const Vector3T& v, const QuaternionT& q, bool assume_unit_quat)
{
//QuaternionT vq(0, v.x(), v.y(), v.z());
//QuaternionT qi = assume_unit_quat ? q.conjugate() : q.inverse();
//return (qi * vq * q).vec();
if (!assume_unit_quat)
return q.inverse()._transformVector(v);
else
return q.conjugate()._transformVector(v);
}
static Vector3T transformToBodyFrame(const Vector3T& v_world, const QuaternionT& q, bool assume_unit_quat = true)
{
return rotateVectorReverse(v_world, q, assume_unit_quat);
}
static Vector3T transformToWorldFrame(const Vector3T& v_body, const QuaternionT& q, bool assume_unit_quat = true)
{
return rotateVector(v_body, q, assume_unit_quat);
}
static Vector3T transformToWorldFrame(const Vector3T& v_body, const Pose& pose, bool assume_unit_quat = true)
{
//translate
Vector3T translated = v_body + pose.position;
//rotate
return transformToWorldFrame(translated, pose.orientation, assume_unit_quat);
}
static QuaternionT negate(const QuaternionT& q)
{
//from Gazebo implementation
return QuaternionT(-q.w(), -q.x(), -q.y(), -q.z());
}
static Vector3T getRandomVectorFromGaussian(RealT stddev = 1, RealT mean = 0)
{
return Vector3T(
Utils::getRandomFromGaussian(stddev, mean),
Utils::getRandomFromGaussian(stddev, mean),
Utils::getRandomFromGaussian(stddev, mean)
);
}
static QuaternionT flipZAxis(const QuaternionT& q)
{
//quaternion formula comes from http://stackoverflow.com/a/40334755/207661
return QuaternionT(q.w(), -q.x(), -q.y(), q.z());
}
static void toEulerianAngle(const QuaternionT& q
, RealT& pitch, RealT& roll, RealT& yaw)
{
RealT ysqr = q.y() * q.y();
// roll (x-axis rotation)
RealT t0 = +2.0f * (q.w() * q.x() + q.y() * q.z());
RealT t1 = +1.0f - 2.0f * (q.x() * q.x() + ysqr);
roll = std::atan2f(t0, t1);
// pitch (y-axis rotation)
RealT t2 = +2.0f * (q.w() * q.y() - q.z() * q.x());
t2 = ((t2 > 1.0f) ? 1.0f : t2);
t2 = ((t2 < -1.0f) ? -1.0f : t2);
pitch = std::asinf(t2);
// yaw (z-axis rotation)
RealT t3 = +2.0f * (q.w() * q.z() + q.x() * q.y());
RealT t4 = +1.0f - 2.0f * (ysqr + q.z() * q.z());
yaw = std::atan2f(t3, t4);
}
static Vector3T toAngularVelocity(const QuaternionT& start, const QuaternionT& end, RealT dt)
{
RealT p_s, r_s, y_s;
toEulerianAngle(start, p_s, r_s, y_s);
RealT p_e, r_e, y_e;
toEulerianAngle(end, p_e, r_e, y_e);
RealT p_rate = (p_e - p_s) / dt;
RealT r_rate = (r_e - r_s) / dt;
RealT y_rate = (y_e - y_s) / dt;
//TODO: optimize below
//Sec 1.3, https://ocw.mit.edu/courses/mechanical-engineering/2-154-maneuvering-and-control-of-surface-and-underwater-vehicles-13-49-fall-2004/lecture-notes/lec1.pdf
RealT wx = r_rate + 0 - y_rate * sinf(p_e);
RealT wy = 0 + p_rate * cosf(r_e) + y_rate * sinf(r_e) * cosf(p_e);
RealT wz = 0 - p_rate * sinf(r_e) + y_rate * cosf(r_e) * cosf(p_e);
return Vector3T(wx, wy, wz);
}
static Vector3T nanVector()
{
static const Vector3T val(std::numeric_limits<RealT>::quiet_NaN(), std::numeric_limits<RealT>::quiet_NaN(), std::numeric_limits<RealT>::quiet_NaN());
return val;
}
static QuaternionT nanQuaternion()
{
return QuaternionT(std::numeric_limits<RealT>::quiet_NaN(), std::numeric_limits<RealT>::quiet_NaN(),
std::numeric_limits<RealT>::quiet_NaN(), std::numeric_limits<RealT>::quiet_NaN());
}
static bool hasNan(const Vector3T& v)
{
return std::isnan(v.x()) || std::isnan(v.y()) || std::isnan(v.z());
}
static bool hasNan(const QuaternionT& q)
{
return std::isnan(q.x()) || std::isnan(q.y()) || std::isnan(q.z()) || std::isnan(q.w());
}
static bool hasNan(const Pose& p)
{
return hasNan(p.position) || hasNan(p.orientation);
}
static QuaternionT addAngularVelocity(const QuaternionT& orientation, const Vector3T& angular_vel, RealT dt)
{
QuaternionT dq_unit = QuaternionT(0, angular_vel.x() * 0.5f, angular_vel.y() * 0.5f, angular_vel.z() * 0.5f) * orientation;
QuaternionT net_q(dq_unit.coeffs() * dt + orientation.coeffs());
return net_q.normalized();
}
static QuaternionT toQuaternion(RealT pitch, RealT roll, RealT yaw)
{
QuaternionT q;
RealT t0 = std::cos(yaw * 0.5f);
RealT t1 = std::sin(yaw * 0.5f);
RealT t2 = std::cos(roll * 0.5f);
RealT t3 = std::sin(roll * 0.5f);
RealT t4 = std::cos(pitch * 0.5f);
RealT t5 = std::sin(pitch * 0.5f);
q.w() = t0 * t2 * t4 + t1 * t3 * t5;
q.x() = t0 * t3 * t4 - t1 * t2 * t5;
q.y() = t0 * t2 * t5 + t1 * t3 * t4;
q.z() = t1 * t2 * t4 - t0 * t3 * t5;
return q;
}
//from http://osrf-distributions.s3.amazonaws.com/gazebo/api/dev/Pose_8hh_source.html
static Vector3T coordPositionSubtract(const Pose& lhs, const Pose& rhs)
{
QuaternionT tmp(0,
lhs.position.x() - rhs.position.x(),
lhs.position.y() - rhs.position.y(),
lhs.position.z() - rhs.position.z()
);
tmp = rhs.orientation.inverse() * (tmp * rhs.orientation);
return tmp.vec();
}
static QuaternionT coordOrientationSubtract(const QuaternionT& lhs, const QuaternionT& rhs)
{
QuaternionT result(rhs.inverse() * lhs);
result.normalize();
return result;
}
static Pose subtract(const Pose& lhs, const Pose& rhs)
{
return Pose(coordPositionSubtract(lhs, rhs), coordOrientationSubtract(lhs.orientation, rhs.orientation));
}
static std::string toString(const Vector3T& vect, const char* prefix = nullptr)
{
if (prefix)
return Utils::stringf("%s[%f, %f, %f]", prefix, vect[0], vect[1], vect[2]);
else
return Utils::stringf("[%f, %f, %f]", vect[0], vect[1], vect[2]);
}
static std::string toString(const QuaternionT& quaternion, bool add_eularian = false)
{
if (!add_eularian)
return Utils::stringf("[%f, %f, %f, %f]", quaternion.w(), quaternion.x(), quaternion.y(), quaternion.z());
else {
RealT pitch, roll, yaw;
toEulerianAngle(quaternion, pitch, roll, yaw);
return Utils::stringf("[%f, %f, %f, %f]-[%f, %f, %f]",
quaternion.w(), quaternion.x(), quaternion.y(), quaternion.z(), pitch, roll, yaw);
}
}
static std::string toString(const Vector2f& vect)
{
return Utils::stringf("[%f, %f]", vect[0], vect[1]);
}
static RealT getYaw(const QuaternionT& q)
{
return std::atan2(2.0f * (q.z() * q.w() + q.x() * q.y())
, - 1.0f + 2.0f * (q.w() * q.w() + q.x() * q.x()));
}
static RealT getPitch(const QuaternionT& q)
{
return std::asin(2.0f * (q.y() * q.w() - q.z() * q.x()));
}
static RealT getRoll(const QuaternionT& q)
{
return std::atan2(2.0f * (q.z() * q.y() + q.w() * q.x())
, 1.0f - 2.0f * (q.x() * q.x() + q.y() * q.y()));
}
static RealT normalizeAngleDegrees(RealT angle)
{
angle = static_cast<RealT>(std::fmod(angle, 360));
if (angle > 180)
return angle - 360;
else if (angle < -180)
return angle + 360;
else
return angle;
}
/**
* \brief Extracts the yaw part from a quaternion, using RPY / euler (z-y'-z'') angles.
* RPY rotates about the fixed axes in the order x-y-z,
* which is the same as euler angles in the order z-y'-x''.
*/
static RealT yawFromQuaternion(const QuaternionT& q) {
return atan2(2.0 * (q.w() * q.z() + q.x() * q.y()),
1.0 - 2.0 * (q.y() * q.y() + q.z() * q.z()));
}
static QuaternionT quaternionFromYaw(RealT yaw) {
return QuaternionT(Eigen::AngleAxisd(yaw, Vector3T::UnitZ()));
}
};
typedef VectorMathT<Eigen::Vector3d, Eigen::Quaternion<double,Eigen::DontAlign>, double> VectorMathd;
typedef VectorMathT<Eigen::Vector3f, Eigen::Quaternion<float,Eigen::DontAlign>, float> VectorMathf;
}} //namespace
#endif
| [
"[email protected]"
] | |
ad7a27176d804229be08d6855deaf8479cf109c1 | 4dd19214f86696d6338217fadd4fcf9da3c9fd32 | /src/System.Numerics.MPFR.Native/AssemblyInfo.cpp | 34497038d6b1d568e38168543b12e6e9098413ae | [
"MIT"
] | permissive | emphasis87/mpfr.NET | e57815fdccda5a5b19272f3c8f36124a180afd43 | 32f6a7a286b58f286183275b17794e7d292cb2a8 | refs/heads/master | 2021-01-19T05:01:56.016328 | 2017-01-02T00:28:31 | 2017-01-02T00:28:31 | 64,378,701 | 15 | 4 | MIT | 2019-11-01T05:54:54 | 2016-07-28T08:39:49 | C# | UTF-8 | C++ | false | false | 1,211 | cpp | #include "stdafx.h"
using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::CompilerServices;
using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;
//
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
//
[assembly:AssemblyTitleAttribute(L"mpfrNET")];
[assembly:AssemblyDescriptionAttribute(L"")];
[assembly:AssemblyConfigurationAttribute(L"")];
[assembly:AssemblyCompanyAttribute(L"")];
[assembly:AssemblyProductAttribute(L"mpfrNET")];
[assembly:AssemblyCopyrightAttribute(L"Copyright (c) 2016")];
[assembly:AssemblyTrademarkAttribute(L"")];
[assembly:AssemblyCultureAttribute(L"")];
//
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the value or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly:AssemblyVersionAttribute("1.0.*")];
[assembly:ComVisible(false)];
[assembly:CLSCompliantAttribute(true)]; | [
"[email protected]"
] | |
2c151b6254f8e796e729a71490782730bd70cdf0 | cf556ac87fa212ca3cbb6a8fbf998e8085bd1cf0 | /reg-lib/cpu/_reg_localTrans_jac.cpp | 7a57786dc8df413e873e362c262d5d1a30f672ff | [] | no_license | 0rC0/niftyreg | fd63deb7b68b6617f2614354bd67e84eee8f9b24 | 99775c6580301143c3667c204f31fa9e10ea53c1 | refs/heads/master | 2021-04-15T14:26:24.716298 | 2018-03-24T10:16:06 | 2018-03-24T10:16:06 | 126,587,574 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 135,755 | cpp | /*
* _reg_localTrans_jac.cpp
*
*
* Created by Marc Modat on 10/05/2011.
* Copyright (c) 2009, University College London. All rights reserved.
* Centre for Medical Image Computing (CMIC)
* See the LICENSE.txt file in the nifty_reg root folder
*
*/
#include "_reg_localTrans_jac.h"
#define _USE_SQUARE_LOG_JAC
/* *************************************************************** */
/* *************************************************************** */
template <class DTYPE>
void addJacobianGradientValues(mat33 jacobianMatrix,
double detJac,
DTYPE basisX,
DTYPE basisY,
DTYPE *jacobianConstraint)
{
jacobianConstraint[0] += detJac * (jacobianMatrix.m[1][1]*basisX - jacobianMatrix.m[1][0]*basisY);
jacobianConstraint[1] += detJac * (jacobianMatrix.m[0][0]*basisY - jacobianMatrix.m[0][1]*basisX);
}
/* *************************************************************** */
template <class DTYPE>
void addJacobianGradientValues(mat33 jacobianMatrix,
double detJac,
DTYPE basisX,
DTYPE basisY,
DTYPE basisZ,
DTYPE *jacobianConstraint)
{
jacobianConstraint[0] += detJac * (
basisX * (jacobianMatrix.m[1][1]*jacobianMatrix.m[2][2] - jacobianMatrix.m[1][2]*jacobianMatrix.m[2][1]) +
basisY * (jacobianMatrix.m[1][2]*jacobianMatrix.m[2][0] - jacobianMatrix.m[1][0]*jacobianMatrix.m[2][2]) +
basisZ * (jacobianMatrix.m[1][0]*jacobianMatrix.m[2][1] - jacobianMatrix.m[1][1]*jacobianMatrix.m[2][0]) );
jacobianConstraint[1] += detJac * (
basisX * (jacobianMatrix.m[0][2]*jacobianMatrix.m[2][1] - jacobianMatrix.m[0][1]*jacobianMatrix.m[2][2]) +
basisY * (jacobianMatrix.m[0][0]*jacobianMatrix.m[2][2] - jacobianMatrix.m[0][2]*jacobianMatrix.m[2][0]) +
basisZ * (jacobianMatrix.m[0][1]*jacobianMatrix.m[2][0] - jacobianMatrix.m[0][0]*jacobianMatrix.m[2][1]) );
jacobianConstraint[2] += detJac * (
basisX * (jacobianMatrix.m[0][1]*jacobianMatrix.m[1][2] - jacobianMatrix.m[0][2]*jacobianMatrix.m[1][1]) +
basisY * (jacobianMatrix.m[0][2]*jacobianMatrix.m[1][0] - jacobianMatrix.m[0][0]*jacobianMatrix.m[1][2]) +
basisZ * (jacobianMatrix.m[0][0]*jacobianMatrix.m[1][1] - jacobianMatrix.m[0][1]*jacobianMatrix.m[1][0]) );
}
/* *************************************************************** */
/* *************************************************************** */
template<class DTYPE>
void reg_linear_spline_jacobian3D(nifti_image *splineControlPoint,
nifti_image *referenceImage,
mat33 *JacobianMatrices,
DTYPE *JacobianDeterminants,
bool approximation,
bool useHeaderInformation)
{
if(JacobianMatrices==NULL && JacobianDeterminants==NULL)
{
reg_print_fct_error("reg_spline_jacobian3D");
reg_print_msg_error("Both output pointers are NULL");
reg_print_msg_error("Nothing to be done");
reg_exit();
}
if(referenceImage==NULL && approximation==false)
{
reg_print_fct_error("reg_spline_jacobian3D");
reg_print_msg_error("The reference image is required to compute the Jacobian at voxel position");
reg_exit();
}
// Create some pointers towards to control point grid image data
size_t nodeNumber = (size_t)splineControlPoint->nx *
splineControlPoint->ny * splineControlPoint->nz;
DTYPE *coeffPtrX = static_cast<DTYPE *>(splineControlPoint->data);
DTYPE *coeffPtrY = &coeffPtrX[nodeNumber];
DTYPE *coeffPtrZ = &coeffPtrY[nodeNumber];
// Define a matrice to reorient the Jacobian matrices and normalise them by the grid spacing
mat33 reorientation,jacobianMatrix;
if(splineControlPoint->sform_code>0)
reorientation = reg_mat44_to_mat33(&splineControlPoint->sto_ijk);
else reorientation = reg_mat44_to_mat33(&splineControlPoint->qto_ijk);
// Useful variables
int x, y, z;
size_t index;
if(approximation)
{
// The Jacobian information is only computed at the control point positions
for(z=1; z<splineControlPoint->nz-1; z++)
{
index=(z-1)*(splineControlPoint->nx-2)*(splineControlPoint->ny-2);
for(y=1; y<splineControlPoint->ny-1; y++)
{
for(x=1; x<splineControlPoint->nx-1; x++)
{
jacobianMatrix.m[0][0] = (coeffPtrX[index+1] - coeffPtrX[-1])/2.;
jacobianMatrix.m[0][1] = (coeffPtrX[index+splineControlPoint->nx] - coeffPtrX[index-splineControlPoint->nx])/2.;
jacobianMatrix.m[0][2] = (coeffPtrX[index+splineControlPoint->nx*splineControlPoint->ny] - coeffPtrX[index-splineControlPoint->nx*splineControlPoint->ny])/2.;
jacobianMatrix.m[1][0] = (coeffPtrY[index+1] - coeffPtrX[-1])/2.;
jacobianMatrix.m[1][1] = (coeffPtrY[index+splineControlPoint->nx] - coeffPtrY[index-splineControlPoint->nx])/2.;
jacobianMatrix.m[1][2] = (coeffPtrY[index+splineControlPoint->nx*splineControlPoint->ny] - coeffPtrY[index-splineControlPoint->nx*splineControlPoint->ny])/2.;
jacobianMatrix.m[2][0] = (coeffPtrZ[index+1] - coeffPtrX[-1])/2.;
jacobianMatrix.m[2][1] = (coeffPtrZ[index+splineControlPoint->nx] - coeffPtrZ[index-splineControlPoint->nx])/2.;
jacobianMatrix.m[2][2] = (coeffPtrZ[index+splineControlPoint->nx*splineControlPoint->ny] - coeffPtrZ[index-splineControlPoint->nx*splineControlPoint->ny])/2.;
jacobianMatrix=nifti_mat33_mul(reorientation,jacobianMatrix);
if(JacobianMatrices!=NULL)
JacobianMatrices[index]=jacobianMatrix;
if(JacobianDeterminants!=NULL)
JacobianDeterminants[index] =
static_cast<DTYPE>(nifti_mat33_determ(jacobianMatrix));
++index;
} // loop over x
} // loop over y
} // loop over z
} // end if approximation at the control point index only
else
{
// The Jacobian matrices and determinants are computed at all voxel positions
// The voxel are discretised using the reference image
// If the control point grid contains an affine transformation,
// the header information is used by default
if(splineControlPoint->num_ext>0)
useHeaderInformation=true;
// Allocate variables that are used in both scenarii
DTYPE gridVoxelSpacing[3]=
{
splineControlPoint->dx / referenceImage->dx,
splineControlPoint->dy / referenceImage->dy,
splineControlPoint->dz / referenceImage->dz
};
DTYPE pre[3];
if(useHeaderInformation)
{
// The reference image is not necessarly aligned with the grid
mat44 transformation;
// reference: voxel to mm
if(referenceImage->sform_code>0)
transformation=referenceImage->sto_xyz;
else transformation=referenceImage->qto_xyz;
// affine: mm to mm
if(splineControlPoint->num_ext>0)
transformation=reg_mat44_mul(
reinterpret_cast<mat44 *>(splineControlPoint->ext_list[0].edata),
&transformation);
// grid: mm to voxel
if(splineControlPoint->sform_code>0)
transformation=reg_mat44_mul(&(splineControlPoint->sto_ijk), &transformation);
else transformation=reg_mat44_mul(&(splineControlPoint->qto_ijk), &transformation);
float imageCoord[3], gridCoord[3];
for(z=0; z<referenceImage->nz; z++)
{
index=z*referenceImage->nx*referenceImage->ny;
imageCoord[2]=z;
for(y=0; y<referenceImage->ny; y++)
{
imageCoord[1]=y;
for(x=0; x<referenceImage->nx; x++)
{
imageCoord[0]=x;
// Compute the position in the grid
reg_mat44_mul(&transformation,imageCoord,gridCoord);
// Compute the anterior node coord
pre[0]=static_cast<int>(reg_floor(gridCoord[0]));
pre[1]=static_cast<int>(reg_floor(gridCoord[1]));
pre[2]=static_cast<int>(reg_floor(gridCoord[2]));
int controlPoint_index=(pre[2]*splineControlPoint->ny+pre[1])*splineControlPoint->nx+pre[0];
jacobianMatrix.m[0][0] = (coeffPtrX[controlPoint_index+1] - coeffPtrX[controlPoint_index]);
jacobianMatrix.m[0][1] = (coeffPtrX[controlPoint_index+splineControlPoint->nx] - coeffPtrX[controlPoint_index]);
jacobianMatrix.m[0][2] = (coeffPtrX[controlPoint_index+splineControlPoint->nx*splineControlPoint->ny] - coeffPtrX[controlPoint_index]);
jacobianMatrix.m[1][0] = (coeffPtrY[controlPoint_index+1] - coeffPtrY[controlPoint_index]);
jacobianMatrix.m[1][1] = (coeffPtrY[controlPoint_index+splineControlPoint->nx] - coeffPtrY[controlPoint_index]);
jacobianMatrix.m[1][2] = (coeffPtrY[controlPoint_index+splineControlPoint->nx*splineControlPoint->ny] - coeffPtrY[controlPoint_index]);
jacobianMatrix.m[2][0] = (coeffPtrZ[controlPoint_index+1] - coeffPtrZ[controlPoint_index]);
jacobianMatrix.m[2][1] = (coeffPtrZ[controlPoint_index+splineControlPoint->nx] - coeffPtrZ[controlPoint_index]);
jacobianMatrix.m[2][2] = (coeffPtrZ[controlPoint_index+splineControlPoint->nx*splineControlPoint->ny] - coeffPtrZ[controlPoint_index]);
// reorient the matrix
jacobianMatrix=nifti_mat33_mul(reorientation,
jacobianMatrix);
if(JacobianMatrices!=NULL)
JacobianMatrices[index]=jacobianMatrix;
if(JacobianDeterminants!=NULL)
JacobianDeterminants[index] =
static_cast<DTYPE>(nifti_mat33_determ(jacobianMatrix));
++index;
} // x
} // y
} // z
}
else
{
// The grid is assumed to be aligned with the reference image
for(z=0; z<referenceImage->nz; z++)
{
index=z*referenceImage->nx*referenceImage->ny;
pre[2]=(int)((DTYPE)z/gridVoxelSpacing[2])+1;
for(y=0; y<referenceImage->ny; y++)
{
pre[1]=(int)((DTYPE)y/gridVoxelSpacing[1])+1;
for(x=0; x<referenceImage->nx; x++)
{
pre[0]=(int)((DTYPE)x/gridVoxelSpacing[0])+1;
int controlPoint_index=(pre[2]*splineControlPoint->ny+pre[1])*splineControlPoint->nx+pre[0];
jacobianMatrix.m[0][0] = (coeffPtrX[controlPoint_index+1] - coeffPtrX[controlPoint_index]);
jacobianMatrix.m[0][1] = (coeffPtrX[controlPoint_index+splineControlPoint->nx] - coeffPtrX[controlPoint_index]);
jacobianMatrix.m[0][2] = (coeffPtrX[controlPoint_index+splineControlPoint->nx*splineControlPoint->ny] - coeffPtrX[controlPoint_index]);
jacobianMatrix.m[1][0] = (coeffPtrY[controlPoint_index+1] - coeffPtrY[controlPoint_index]);
jacobianMatrix.m[1][1] = (coeffPtrY[controlPoint_index+splineControlPoint->nx] - coeffPtrY[controlPoint_index]);
jacobianMatrix.m[1][2] = (coeffPtrY[controlPoint_index+splineControlPoint->nx*splineControlPoint->ny] - coeffPtrY[controlPoint_index]);
jacobianMatrix.m[2][0] = (coeffPtrZ[controlPoint_index+1] - coeffPtrZ[controlPoint_index]);
jacobianMatrix.m[2][1] = (coeffPtrZ[controlPoint_index+splineControlPoint->nx] - coeffPtrZ[controlPoint_index]);
jacobianMatrix.m[2][2] = (coeffPtrZ[controlPoint_index+splineControlPoint->nx*splineControlPoint->ny] - coeffPtrZ[controlPoint_index]);
// reorient the matrix
jacobianMatrix=nifti_mat33_mul(reorientation,
jacobianMatrix);
if(JacobianMatrices!=NULL)
JacobianMatrices[index]=jacobianMatrix;
if(JacobianDeterminants!=NULL)
JacobianDeterminants[index] =
static_cast<DTYPE>(nifti_mat33_determ(jacobianMatrix));
++index;
} // loop over x
} // loop over y
} // loop over z
} // end if the grid is aligned with the reference image
} // end if no approximation
return;
}
/* *************************************************************** */
/* *************************************************************** */
template<class DTYPE>
void reg_cubic_spline_jacobian2D(nifti_image *splineControlPoint,
nifti_image *referenceImage,
mat33 *JacobianMatrices,
DTYPE *JacobianDeterminants,
bool approximation,
bool useHeaderInformation)
{
if(JacobianMatrices==NULL && JacobianDeterminants==NULL)
{
reg_print_fct_error("reg_spline_jacobian2D");
reg_print_msg_error("Both output pointers are NULL");
reg_print_msg_error("Nothing to be done");
reg_exit();
}
if(referenceImage==NULL && approximation==false)
{
reg_print_fct_error("reg_spline_jacobian2D");
reg_print_msg_error("The reference image is required to compute the Jacobian at voxel position");
reg_exit();
}
// Create some pointers towards to control point grid image data
size_t nodeNumber = (size_t)splineControlPoint->nx *
splineControlPoint->ny;
DTYPE *coeffPtrX = static_cast<DTYPE *>(splineControlPoint->data);
DTYPE *coeffPtrY = &coeffPtrX[nodeNumber];
// Define a matrice to reorient the Jacobian matrices and normalise them by the grid spacing
mat33 reorientation,jacobianMatrix;
if(splineControlPoint->sform_code>0)
reorientation = reg_mat44_to_mat33(&splineControlPoint->sto_ijk);
else reorientation = reg_mat44_to_mat33(&splineControlPoint->qto_ijk);
// Useful variables
int x, y, incr0;
size_t voxelIndex;
if(approximation)
{
// The Jacobian information is only computed at the control point positions
// Note that the header information is not used here
float basisX[9], basisY[9];
DTYPE coeffX[9], coeffY[9];
DTYPE normal[3] = { 1.f / 6.f, 2.f / 3.f, 1.f / 6.f };
DTYPE first[3] = { -0.5f, 0.f, 0.5f };
// There are six different values taken into account
int coord=0;
for(int b=0; b<3; ++b)
{
for(int a=0; a<3; ++a)
{
basisX[coord]=normal[b]*first[a]; // y * x'
basisY[coord]=first[b]*normal[a]; // y'* x
coord++;
}
}
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(splineControlPoint, coeffPtrX, coeffPtrY, \
basisX, basisY, reorientation, JacobianMatrices, JacobianDeterminants) \
private(x, y, incr0, coeffX, coeffY, \
jacobianMatrix, voxelIndex)
#endif
for(y=1; y<splineControlPoint->ny-1; y++)
{
voxelIndex=(y-1)*(splineControlPoint->nx-2);
for(x=1; x<splineControlPoint->nx-1; x++)
{
get_GridValues<DTYPE>(x-1,
y-1,
splineControlPoint,
coeffPtrX,
coeffPtrY,
coeffX,
coeffY,
true, // approx
false // not disp
);
memset(&jacobianMatrix,0,sizeof(mat33));
jacobianMatrix.m[2][2]=1.f;
for(incr0=0; incr0<9; ++incr0)
{
jacobianMatrix.m[0][0] += basisX[incr0]*coeffX[incr0];
jacobianMatrix.m[0][1] += basisY[incr0]*coeffX[incr0];
jacobianMatrix.m[1][0] += basisX[incr0]*coeffY[incr0];
jacobianMatrix.m[1][1] += basisY[incr0]*coeffY[incr0];
}
jacobianMatrix=nifti_mat33_mul(reorientation,jacobianMatrix);
if(JacobianMatrices!=NULL)
JacobianMatrices[voxelIndex]=jacobianMatrix;
if(JacobianDeterminants!=NULL)
JacobianDeterminants[voxelIndex] =
static_cast<DTYPE>(nifti_mat33_determ(jacobianMatrix));
++voxelIndex;
} // loop over x
} // loop over y
} // end if approximation at the control point index only
else
{
// The Jacobian matrices and determinants are computed at all voxel positions
// The voxel are discretised using the reference image
// If the control point grid contains an affine transformation,
// the header information is used by default
if(splineControlPoint->num_ext>0)
useHeaderInformation=true;
// Allocate variables that are used in both scenarii
int pre[2], oldPre[2];
int coord, incr0, incr1;
DTYPE xBasis[4], xFirst[4], yBasis[4], yFirst[4];
DTYPE basisX[16], basisY[16];
DTYPE coeffX[16], coeffY[16];
size_t voxelIndex;
if(useHeaderInformation)
{
// The reference image is not necessarly aligned with the grid
mat44 transformation;
// reference: voxel to mm
if(referenceImage->sform_code>0)
transformation=referenceImage->sto_xyz;
else transformation=referenceImage->qto_xyz;
// affine: mm to mm
if(splineControlPoint->num_ext>0)
transformation=reg_mat44_mul(
reinterpret_cast<mat44 *>(splineControlPoint->ext_list[0].edata),
&transformation);
// grid: mm to voxel
if(splineControlPoint->sform_code>0)
transformation=reg_mat44_mul(&(splineControlPoint->sto_ijk), &transformation);
else transformation=reg_mat44_mul(&(splineControlPoint->qto_ijk), &transformation);
float imageCoord[3], gridCoord[3], basis;
imageCoord[2]=0;
for(y=0; y<referenceImage->ny; y++)
{
imageCoord[1]=y;
oldPre[0]=oldPre[1]=999999;
voxelIndex=y*referenceImage->nx;
for(x=0; x<referenceImage->nx; x++)
{
imageCoord[0]=x;
// Compute the position in the grid
reg_mat44_mul(&transformation,imageCoord,gridCoord);
// Compute the anterior node coord
pre[0]=static_cast<int>(reg_floor(gridCoord[0]));
pre[1]=static_cast<int>(reg_floor(gridCoord[1]));
// Compute the basis values and their first derivatives
basis = gridCoord[0] - pre[0];
get_BSplineBasisValues<DTYPE>(basis, xBasis, xFirst);
basis = gridCoord[1] - pre[1];
get_BSplineBasisValues<DTYPE>(basis, yBasis, yFirst);
// Compute the 16 basis values and the corresponding derivatives
coord=0;
for(incr0=0; incr0<4; incr0++)
{
for(incr1=0; incr1<4; incr1++)
{
basisX[coord]=yBasis[incr0]*xFirst[incr1]; // y * x'
basisY[coord]=yFirst[incr0]*xBasis[incr1]; // y' * x
++coord;
}
}
// Fetch the required coefficients
if(oldPre[0]!=pre[0] || oldPre[1]!=pre[1])
{
get_GridValues<DTYPE>(pre[0]-1,
pre[1]-1,
splineControlPoint,
coeffPtrX,
coeffPtrY,
coeffX,
coeffY,
false, // no approx
false // not disp
);
oldPre[0]=pre[0];
oldPre[1]=pre[1];
}
// Compute the Jacobian matrix
memset(&jacobianMatrix, 0, sizeof(mat33));
jacobianMatrix.m[2][2]=1.f;
for(incr0=0; incr0<16; ++incr0)
{
jacobianMatrix.m[0][0] += basisX[incr0]*coeffX[incr0];
jacobianMatrix.m[0][1] += basisY[incr0]*coeffX[incr0];
jacobianMatrix.m[1][0] += basisX[incr0]*coeffY[incr0];
jacobianMatrix.m[1][1] += basisY[incr0]*coeffY[incr0];
}
// reorient the matrix
jacobianMatrix=nifti_mat33_mul(reorientation,
jacobianMatrix);
if(JacobianMatrices!=NULL)
JacobianMatrices[voxelIndex]=jacobianMatrix;
if(JacobianDeterminants!=NULL)
JacobianDeterminants[voxelIndex] =
static_cast<DTYPE>(nifti_mat33_determ(jacobianMatrix));
++voxelIndex;
} // x
} // y
}
else
{
DTYPE basis;
DTYPE gridVoxelSpacing[2]=
{
splineControlPoint->dx / referenceImage->dx,
splineControlPoint->dy / referenceImage->dy
};
// The grid is assumed to be aligned with the reference image
for(y=0; y<referenceImage->ny; y++)
{
voxelIndex=y*referenceImage->nx;
oldPre[0]=oldPre[1]=999999;
pre[1]=(int)((DTYPE)y/gridVoxelSpacing[1]);
basis=(DTYPE)y/gridVoxelSpacing[1]-(DTYPE)pre[1];
if(basis<0.0) basis=0.0; //rounding error
get_BSplineBasisValues<DTYPE>(basis, yBasis, yFirst);
for(x=0; x<referenceImage->nx; x++)
{
pre[0]=(int)((DTYPE)x/gridVoxelSpacing[0]);
basis=(DTYPE)x/gridVoxelSpacing[0]-(DTYPE)pre[0];
if(basis<0.0) basis=0.0; //rounding error
get_BSplineBasisValues<DTYPE>(basis, xBasis, xFirst);
coord=0;
for(incr0=0; incr0<4; ++incr0)
{
for(incr1=0; incr1<4; ++incr1)
{
basisX[coord]=yBasis[incr0]*xFirst[incr1]; // y * x'
basisY[coord]=yFirst[incr0]*xBasis[incr1]; // y'* x
coord++;
}
}
if(oldPre[0]!=pre[0] || oldPre[1]!=pre[1])
{
get_GridValues<DTYPE>(pre[0],
pre[1],
splineControlPoint,
coeffPtrX,
coeffPtrY,
coeffX,
coeffY,
false, // no approx
false // not disp
);
oldPre[0]=pre[0];
oldPre[1]=pre[1];
}
memset(&jacobianMatrix, 0, sizeof(mat33));
jacobianMatrix.m[2][2] = 1.f;
for(incr0=0; incr0<16; ++incr0)
{
jacobianMatrix.m[0][0] += basisX[incr0]*coeffX[incr0];
jacobianMatrix.m[0][1] += basisY[incr0]*coeffX[incr0];
jacobianMatrix.m[1][0] += basisX[incr0]*coeffY[incr0];
jacobianMatrix.m[1][1] += basisY[incr0]*coeffY[incr0];
}
jacobianMatrix=nifti_mat33_mul(reorientation,
jacobianMatrix);
if(JacobianMatrices!=NULL)
JacobianMatrices[voxelIndex]=jacobianMatrix;
if(JacobianDeterminants!=NULL)
JacobianDeterminants[voxelIndex] =
static_cast<DTYPE>(nifti_mat33_determ(jacobianMatrix));
++voxelIndex;
} // loop over x
} // loop over y
} // end if the grid is aligned with the reference image
} // end if no approximation
return;
}
/* *************************************************************** */
template<class DTYPE>
void reg_cubic_spline_jacobian3D(nifti_image *splineControlPoint,
nifti_image *referenceImage,
mat33 *JacobianMatrices,
DTYPE *JacobianDeterminants,
bool approximation,
bool useHeaderInformation)
{
if(JacobianMatrices==NULL && JacobianDeterminants==NULL)
{
reg_print_fct_error("reg_spline_jacobian3D");
reg_print_msg_error("Both output pointers are NULL");
reg_print_msg_error("Nothing to be done");
reg_exit();
}
if(referenceImage==NULL && approximation==false)
{
reg_print_fct_error("reg_spline_jacobian3D");
reg_print_msg_error("The reference image is required to compute the Jacobian at voxel position");
reg_exit();
}
// Create some pointers towards to control point grid image data
size_t nodeNumber = (size_t)splineControlPoint->nx *
splineControlPoint->ny * splineControlPoint->nz;
DTYPE *coeffPtrX = static_cast<DTYPE *>(splineControlPoint->data);
DTYPE *coeffPtrY = &coeffPtrX[nodeNumber];
DTYPE *coeffPtrZ = &coeffPtrY[nodeNumber];
// Define a matrice to reorient the Jacobian matrices and normalise them by the grid spacing
mat33 reorientation,jacobianMatrix;
if(splineControlPoint->sform_code>0)
reorientation = reg_mat44_to_mat33(&splineControlPoint->sto_ijk);
else reorientation = reg_mat44_to_mat33(&splineControlPoint->qto_ijk);
// Useful variables
int x, y, z, incr0;
size_t voxelIndex;
if(approximation)
{
// The Jacobian information is only computed at the control point positions
// Note that the header information is not used here
float basisX[27], basisY[27], basisZ[27];
DTYPE coeffX[27], coeffY[27], coeffZ[27];
DTYPE normal[3] = { 1.f / 6.f, 2.f / 3.f, 1.f / 6.f };
DTYPE first[3] = { -0.5f, 0.f, 0.5f };
// There are six different values taken into account
DTYPE tempX[9], tempY[9], tempZ[9];
int coord=0;
for(int c=0; c<3; c++)
{
for(int b=0; b<3; b++)
{
tempX[coord]=normal[c]*normal[b]; // z * y
tempY[coord]=normal[c]*first[b]; // z * y"
tempZ[coord]=first[c]*normal[b]; // z"* y
coord++;
}
}
coord=0;
for(int bc=0; bc<9; bc++)
{
for(int a=0; a<3; a++)
{
basisX[coord]=tempX[bc]*first[a]; // z * y * x"
basisY[coord]=tempY[bc]*normal[a]; // z * y"* x
basisZ[coord]=tempZ[bc]*normal[a]; // z"* y * x
coord++;
}
}
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(splineControlPoint, coeffPtrX, coeffPtrY, coeffPtrZ, \
basisX, basisY, basisZ, reorientation, JacobianMatrices, JacobianDeterminants) \
private(x, y, z, incr0, coeffX, coeffY, coeffZ, \
jacobianMatrix, voxelIndex)
#endif
for(z=1; z<splineControlPoint->nz-1; z++)
{
voxelIndex=(z-1)*(splineControlPoint->nx-2)*(splineControlPoint->ny-2);
for(y=1; y<splineControlPoint->ny-1; y++)
{
for(x=1; x<splineControlPoint->nx-1; x++)
{
get_GridValues<DTYPE>(x-1,
y-1,
z-1,
splineControlPoint,
coeffPtrX,
coeffPtrY,
coeffPtrZ,
coeffX,
coeffY,
coeffZ,
true, // approx
false // not disp
);
memset(&jacobianMatrix,0,sizeof(mat33));
for(incr0=0; incr0<27; ++incr0)
{
jacobianMatrix.m[0][0] += basisX[incr0]*coeffX[incr0];
jacobianMatrix.m[0][1] += basisY[incr0]*coeffX[incr0];
jacobianMatrix.m[0][2] += basisZ[incr0]*coeffX[incr0];
jacobianMatrix.m[1][0] += basisX[incr0]*coeffY[incr0];
jacobianMatrix.m[1][1] += basisY[incr0]*coeffY[incr0];
jacobianMatrix.m[1][2] += basisZ[incr0]*coeffY[incr0];
jacobianMatrix.m[2][0] += basisX[incr0]*coeffZ[incr0];
jacobianMatrix.m[2][1] += basisY[incr0]*coeffZ[incr0];
jacobianMatrix.m[2][2] += basisZ[incr0]*coeffZ[incr0];
}
jacobianMatrix=nifti_mat33_mul(reorientation,jacobianMatrix);
if(JacobianMatrices!=NULL)
JacobianMatrices[voxelIndex]=jacobianMatrix;
if(JacobianDeterminants!=NULL)
JacobianDeterminants[voxelIndex] =
static_cast<DTYPE>(nifti_mat33_determ(jacobianMatrix));
++voxelIndex;
} // loop over x
} // loop over y
} // loop over z
} // end if approximation at the control point index only
else
{
// The Jacobian matrices and determinants are computed at all voxel positions
// The voxel are discretised using the reference image
// If the control point grid contains an affine transformation,
// the header information is used by default
if(splineControlPoint->num_ext>0)
useHeaderInformation=true;
// Allocate variables that are used in both scenarii
int pre[3], oldPre[3], incr0;
DTYPE basis, xBasis[4], xFirst[4], yBasis[4], yFirst[4], zBasis[4], zFirst[4];
#if _USE_SSE
union
{
__m128 m;
float f[4];
} val;
__m128 _xBasis, _xFirst, _yBasis, _yFirst;
__m128 tempX_x, tempX_y, tempX_z, tempY_x, tempY_y, tempY_z, tempZ_x, tempZ_y, tempZ_z;
#ifdef _WINDOWS
union
{
__m128 m[4];
__declspec(align(16)) DTYPE f[16];
} tempX;
union
{
__m128 m[4];
__declspec(align(16)) DTYPE f[16];
} tempY;
union
{
__m128 m[4];
__declspec(align(16)) DTYPE f[16];
} tempZ;
union
{
__m128 m[16];
__declspec(align(16)) DTYPE f[64];
} basisX;
union
{
__m128 m[16];
__declspec(align(16)) DTYPE f[64];
} basisY;
union
{
__m128 m[16];
__declspec(align(16)) DTYPE f[64];
} basisZ;
union
{
__m128 m[16];
__declspec(align(16)) DTYPE f[64];
} coeffX;
union
{
__m128 m[16];
__declspec(align(16)) DTYPE f[64];
} coeffY;
union
{
__m128 m[16];
__declspec(align(16)) DTYPE f[64];
} coeffZ;
#else // _WINDOWS
union
{
__m128 m[4];
DTYPE f[16] __attribute__((aligned(16)));
} tempX;
union
{
__m128 m[4];
DTYPE f[16] __attribute__((aligned(16)));
} tempY;
union
{
__m128 m[4];
DTYPE f[16] __attribute__((aligned(16)));
} tempZ;
memset(&(tempX.f[0]),0,16*sizeof(float));
memset(&(tempY.f[0]),0,16*sizeof(float));
memset(&(tempZ.f[0]),0,16*sizeof(float));
union
{
__m128 m[16];
DTYPE f[64] __attribute__((aligned(16)));
} basisX;
union
{
__m128 m[16];
DTYPE f[64] __attribute__((aligned(16)));
} basisY;
union
{
__m128 m[16];
DTYPE f[64] __attribute__((aligned(16)));
} basisZ;
union
{
__m128 m[16];
DTYPE f[64] __attribute__((aligned(16)));
} coeffX;
union
{
__m128 m[16];
DTYPE f[64] __attribute__((aligned(16)));
} coeffY;
union
{
__m128 m[16];
DTYPE f[64] __attribute__((aligned(16)));
} coeffZ;
#endif // _WINDOWS
#else
int coord, incr1, incr2;
DTYPE tempX[16], tempY[16], tempZ[16];
DTYPE basisX[64], basisY[64], basisZ[64];
DTYPE coeffX[64], coeffY[64], coeffZ[64];
#endif
DTYPE gridVoxelSpacing[3]=
{
splineControlPoint->dx / referenceImage->dx,
splineControlPoint->dy / referenceImage->dy,
splineControlPoint->dz / referenceImage->dz
};
size_t voxelIndex;
if(useHeaderInformation)
{
// The reference image is not necessarly aligned with the grid
mat44 transformation;
// reference: voxel to mm
if(referenceImage->sform_code>0)
transformation=referenceImage->sto_xyz;
else transformation=referenceImage->qto_xyz;
// affine: mm to mm
if(splineControlPoint->num_ext>0)
transformation=reg_mat44_mul(
reinterpret_cast<mat44 *>(splineControlPoint->ext_list[0].edata),
&transformation);
// grid: mm to voxel
if(splineControlPoint->sform_code>0)
transformation=reg_mat44_mul(&(splineControlPoint->sto_ijk), &transformation);
else transformation=reg_mat44_mul(&(splineControlPoint->qto_ijk), &transformation);
float imageCoord[3], gridCoord[3], basis;
for(z=0; z<referenceImage->nz; z++)
{
oldPre[0]=oldPre[1]=oldPre[2]=999999;
voxelIndex=z*referenceImage->nx*referenceImage->ny;
imageCoord[2]=z;
for(y=0; y<referenceImage->ny; y++)
{
imageCoord[1]=y;
for(x=0; x<referenceImage->nx; x++)
{
imageCoord[0]=x;
// Compute the position in the grid
reg_mat44_mul(&transformation,imageCoord,gridCoord);
// Compute the anterior node coord
pre[0]=static_cast<int>(reg_floor(gridCoord[0]));
pre[1]=static_cast<int>(reg_floor(gridCoord[1]));
pre[2]=static_cast<int>(reg_floor(gridCoord[2]));
// Compute the basis values and their first derivatives
basis = gridCoord[0] - pre[0];
get_BSplineBasisValues<DTYPE>(basis, xBasis, xFirst);
basis = gridCoord[1] - pre[1];
get_BSplineBasisValues<DTYPE>(basis, yBasis, yFirst);
basis = gridCoord[2] - pre[2];
get_BSplineBasisValues<DTYPE>(basis, zBasis, zFirst);
// Compute the 64 basis values and the corresponding derivatives
#if _USE_SSE
val.f[0]=yBasis[0];
val.f[1]=yBasis[1];
val.f[2]=yBasis[2];
val.f[3]=yBasis[3];
_yBasis=val.m;
val.f[0]=yFirst[0];
val.f[1]=yFirst[1];
val.f[2]=yFirst[2];
val.f[3]=yFirst[3];
_yFirst=val.m;
for(incr0=0; incr0<4; ++incr0)
{
val.m=_mm_set_ps1(zBasis[incr0]);
tempX.m[incr0]=_mm_mul_ps(_yBasis,val.m);
tempY.m[incr0]=_mm_mul_ps(_yFirst,val.m);
val.m=_mm_set_ps1(zFirst[incr0]);
tempZ.m[incr0]=_mm_mul_ps(_yBasis,val.m);
}
val.f[0]=xBasis[0];
val.f[1]=xBasis[1];
val.f[2]=xBasis[2];
val.f[3]=xBasis[3];
_xBasis=val.m;
val.f[0]=xFirst[0];
val.f[1]=xFirst[1];
val.f[2]=xFirst[2];
val.f[3]=xFirst[3];
_xFirst=val.m;
for(incr0=0; incr0<16; ++incr0)
{
val.m=_mm_set_ps1(tempX.f[incr0]);
basisX.m[incr0]=_mm_mul_ps(_xFirst,val.m);
val.m=_mm_set_ps1(tempY.f[incr0]);
basisY.m[incr0]=_mm_mul_ps(_xBasis,val.m);
val.m=_mm_set_ps1(tempZ.f[incr0]);
basisZ.m[incr0]=_mm_mul_ps(_xBasis,val.m);
}
#else
coord=0;
for(incr0=0; incr0<4; incr0++)
{
for(incr1=0; incr1<4; incr1++)
{
for(incr2=0; incr2<4; incr2++)
{
basisX[coord]=zBasis[incr0]*yBasis[incr1]*xFirst[incr2]; // z * y * x'
basisY[coord]=zBasis[incr0]*yFirst[incr1]*xBasis[incr2]; // z * y' * x
basisZ[coord]=zFirst[incr0]*yBasis[incr1]*xBasis[incr2]; // z' * y * x
++coord;
}
}
}
#endif
// Fetch the required coefficients
if(oldPre[0]!=pre[0] || oldPre[1]!=pre[1] || oldPre[2]!=pre[2])
{
#ifdef _USE_SSE
get_GridValues<DTYPE>(pre[0]-1,
pre[1]-1,
pre[2]-1,
splineControlPoint,
coeffPtrX,
coeffPtrY,
coeffPtrZ,
coeffX.f,
coeffY.f,
coeffZ.f,
false, // no approx
false // not disp
);
#else // _USE_SSE
get_GridValues<DTYPE>(pre[0]-1,
pre[1]-1,
pre[2]-1,
splineControlPoint,
coeffPtrX,
coeffPtrY,
coeffPtrZ,
coeffX,
coeffY,
coeffZ,
false, // no approx
false // not disp
);
#endif // _USE_SSE
oldPre[0]=pre[0];
oldPre[1]=pre[1];
oldPre[2]=pre[2];
}
// Compute the Jacobian matrix
#if _USE_SSE
tempX_x = _mm_set_ps1(0.0);
tempX_y = _mm_set_ps1(0.0);
tempX_z = _mm_set_ps1(0.0);
tempY_x = _mm_set_ps1(0.0);
tempY_y = _mm_set_ps1(0.0);
tempY_z = _mm_set_ps1(0.0);
tempZ_x = _mm_set_ps1(0.0);
tempZ_y = _mm_set_ps1(0.0);
tempZ_z = _mm_set_ps1(0.0);
//addition and multiplication of the 16 basis value and CP position for each axis
for(incr0=0; incr0<16; ++incr0)
{
tempX_x = _mm_add_ps(_mm_mul_ps(basisX.m[incr0], coeffX.m[incr0]), tempX_x );
tempX_y = _mm_add_ps(_mm_mul_ps(basisY.m[incr0], coeffX.m[incr0]), tempX_y );
tempX_z = _mm_add_ps(_mm_mul_ps(basisZ.m[incr0], coeffX.m[incr0]), tempX_z );
tempY_x = _mm_add_ps(_mm_mul_ps(basisX.m[incr0], coeffY.m[incr0]), tempY_x );
tempY_y = _mm_add_ps(_mm_mul_ps(basisY.m[incr0], coeffY.m[incr0]), tempY_y );
tempY_z = _mm_add_ps(_mm_mul_ps(basisZ.m[incr0], coeffY.m[incr0]), tempY_z );
tempZ_x = _mm_add_ps(_mm_mul_ps(basisX.m[incr0], coeffZ.m[incr0]), tempZ_x );
tempZ_y = _mm_add_ps(_mm_mul_ps(basisY.m[incr0], coeffZ.m[incr0]), tempZ_y );
tempZ_z = _mm_add_ps(_mm_mul_ps(basisZ.m[incr0], coeffZ.m[incr0]), tempZ_z );
}
//the values stored in SSE variables are transfered to normal float
val.m = tempX_x;
jacobianMatrix.m[0][0] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempX_y;
jacobianMatrix.m[0][1] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempX_z;
jacobianMatrix.m[0][2] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempY_x;
jacobianMatrix.m[1][0] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempY_y;
jacobianMatrix.m[1][1] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempY_z;
jacobianMatrix.m[1][2] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempZ_x;
jacobianMatrix.m[2][0] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempZ_y;
jacobianMatrix.m[2][1] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempZ_z;
jacobianMatrix.m[2][2] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
#else
memset(&jacobianMatrix, 0, sizeof(mat33));
for(incr0=0; incr0<64; ++incr0)
{
jacobianMatrix.m[0][0] += basisX[incr0]*coeffX[incr0];
jacobianMatrix.m[0][1] += basisY[incr0]*coeffX[incr0];
jacobianMatrix.m[0][2] += basisZ[incr0]*coeffX[incr0];
jacobianMatrix.m[1][0] += basisX[incr0]*coeffY[incr0];
jacobianMatrix.m[1][1] += basisY[incr0]*coeffY[incr0];
jacobianMatrix.m[1][2] += basisZ[incr0]*coeffY[incr0];
jacobianMatrix.m[2][0] += basisX[incr0]*coeffZ[incr0];
jacobianMatrix.m[2][1] += basisY[incr0]*coeffZ[incr0];
jacobianMatrix.m[2][2] += basisZ[incr0]*coeffZ[incr0];
}
#endif
// reorient the matrix
jacobianMatrix=nifti_mat33_mul(reorientation,
jacobianMatrix);
if(JacobianMatrices!=NULL)
JacobianMatrices[voxelIndex]=jacobianMatrix;
if(JacobianDeterminants!=NULL)
JacobianDeterminants[voxelIndex] =
static_cast<DTYPE>(nifti_mat33_determ(jacobianMatrix));
++voxelIndex;
} // x
} // y
} // z
}
else
{
// The grid is assumed to be aligned with the reference image
#ifdef _OPENMP
#ifdef _USE_SSE
#pragma omp parallel for default(none) \
shared(referenceImage, gridVoxelSpacing, splineControlPoint, \
coeffPtrX, coeffPtrY, coeffPtrZ,reorientation, JacobianMatrices, \
JacobianDeterminants) \
private(x, y, z, pre, oldPre, basis, val, \
_xBasis, _xFirst, _yBasis, _yFirst, \
tempX, tempY, tempZ, basisX, basisY, basisZ, \
xBasis, xFirst, yBasis, yFirst, zBasis, zFirst, \
coeffX, coeffY, coeffZ, incr0, \
jacobianMatrix, voxelIndex, \
tempX_x, tempX_y, tempX_z, tempY_x, tempY_y, tempY_z, tempZ_x, tempZ_y, tempZ_z)
#else // _USE_SEE
#pragma omp parallel for default(none) \
shared(referenceImage, gridVoxelSpacing, splineControlPoint, \
coeffPtrX, coeffPtrY, coeffPtrZ, reorientation, JacobianMatrices, \
JacobianDeterminants) \
private(x, y, z, pre, oldPre, basis, \
basisX, basisY, basisZ, coord, tempX, tempY, tempZ, \
xBasis, xFirst, yBasis, yFirst, zBasis, zFirst, \
coeffX, coeffY, coeffZ, incr0, incr1, incr2, \
jacobianMatrix, voxelIndex)
#endif // _USE_SEE
#endif // _USE_OPENMP
for(z=0; z<referenceImage->nz; z++)
{
voxelIndex=z*referenceImage->nx*referenceImage->ny;
oldPre[0]=oldPre[1]=oldPre[2]=999999;
pre[2]=(int)((DTYPE)z/gridVoxelSpacing[2]);
basis=(DTYPE)z/gridVoxelSpacing[2]-(DTYPE)pre[2];
if(basis<0.0) basis=0.0; //rounding error
get_BSplineBasisValues<DTYPE>(basis, zBasis, zFirst);
for(y=0; y<referenceImage->ny; y++)
{
pre[1]=(int)((DTYPE)y/gridVoxelSpacing[1]);
basis=(DTYPE)y/gridVoxelSpacing[1]-(DTYPE)pre[1];
if(basis<0.0) basis=0.0; //rounding error
get_BSplineBasisValues<DTYPE>(basis, yBasis, yFirst);
#if _USE_SSE
val.f[0]=yBasis[0];
val.f[1]=yBasis[1];
val.f[2]=yBasis[2];
val.f[3]=yBasis[3];
_yBasis=val.m;
val.f[0]=yFirst[0];
val.f[1]=yFirst[1];
val.f[2]=yFirst[2];
val.f[3]=yFirst[3];
_yFirst=val.m;
for(incr0=0; incr0<4; ++incr0)
{
val.m=_mm_set_ps1(zBasis[incr0]);
tempX.m[incr0]=_mm_mul_ps(_yBasis,val.m);
tempY.m[incr0]=_mm_mul_ps(_yFirst,val.m);
val.m=_mm_set_ps1(zFirst[incr0]);
tempZ.m[incr0]=_mm_mul_ps(_yBasis,val.m);
}
#else
coord=0;
for(incr0=0; incr0<4; incr0++)
{
for(incr1=0; incr1<4; incr1++)
{
tempX[coord]=zBasis[incr0]*yBasis[incr1]; // z * y
tempY[coord]=zBasis[incr0]*yFirst[incr1];// z * y'
tempZ[coord]=zFirst[incr0]*yBasis[incr1]; // z'* y
coord++;
}
}
#endif
for(x=0; x<referenceImage->nx; x++)
{
pre[0]=(int)((DTYPE)x/gridVoxelSpacing[0]);
basis=(DTYPE)x/gridVoxelSpacing[0]-(DTYPE)pre[0];
if(basis<0.0) basis=0.0; //rounding error
get_BSplineBasisValues<DTYPE>(basis, xBasis, xFirst);
#if _USE_SSE
val.f[0]=xBasis[0];
val.f[1]=xBasis[1];
val.f[2]=xBasis[2];
val.f[3]=xBasis[3];
_xBasis=val.m;
val.f[0]=xFirst[0];
val.f[1]=xFirst[1];
val.f[2]=xFirst[2];
val.f[3]=xFirst[3];
_xFirst=val.m;
for(incr0=0; incr0<16; ++incr0)
{
val.m=_mm_set_ps1(tempX.f[incr0]);
basisX.m[incr0]=_mm_mul_ps(_xFirst,val.m);
val.m=_mm_set_ps1(tempY.f[incr0]);
basisY.m[incr0]=_mm_mul_ps(_xBasis,val.m);
val.m=_mm_set_ps1(tempZ.f[incr0]);
basisZ.m[incr0]=_mm_mul_ps(_xBasis,val.m);
}
#else
coord=0;
for(incr0=0; incr0<16; ++incr0)
{
for(incr1=0; incr1<4; ++incr1)
{
basisX[coord]=tempX[incr0]*xFirst[incr1]; // z * y * x'
basisY[coord]=tempY[incr0]*xBasis[incr1]; // z * y'* x
basisZ[coord]=tempZ[incr0]*xBasis[incr1]; // z'* y * x
coord++;
}
}
#endif
if(oldPre[0]!=pre[0] || oldPre[1]!=pre[1] || oldPre[2]!=pre[2])
{
#ifdef _USE_SSE
get_GridValues<DTYPE>(pre[0],
pre[1],
pre[2],
splineControlPoint,
coeffPtrX,
coeffPtrY,
coeffPtrZ,
coeffX.f,
coeffY.f,
coeffZ.f,
false, // no approx
false // not disp
);
#else // _USE_SSE
get_GridValues<DTYPE>(pre[0],
pre[1],
pre[2],
splineControlPoint,
coeffPtrX,
coeffPtrY,
coeffPtrZ,
coeffX,
coeffY,
coeffZ,
false, // no approx
false // not disp
);
#endif // _USE_SSE
oldPre[0]=pre[0];
oldPre[1]=pre[1];
oldPre[2]=pre[2];
}
#if _USE_SSE
tempX_x = _mm_set_ps1(0.0);
tempX_y = _mm_set_ps1(0.0);
tempX_z = _mm_set_ps1(0.0);
tempY_x = _mm_set_ps1(0.0);
tempY_y = _mm_set_ps1(0.0);
tempY_z = _mm_set_ps1(0.0);
tempZ_x = _mm_set_ps1(0.0);
tempZ_y = _mm_set_ps1(0.0);
tempZ_z = _mm_set_ps1(0.0);
//addition and multiplication of the 16 basis value and CP position for each axis
for(incr0=0; incr0<16; ++incr0)
{
tempX_x = _mm_add_ps(_mm_mul_ps(basisX.m[incr0], coeffX.m[incr0]), tempX_x );
tempX_y = _mm_add_ps(_mm_mul_ps(basisY.m[incr0], coeffX.m[incr0]), tempX_y );
tempX_z = _mm_add_ps(_mm_mul_ps(basisZ.m[incr0], coeffX.m[incr0]), tempX_z );
tempY_x = _mm_add_ps(_mm_mul_ps(basisX.m[incr0], coeffY.m[incr0]), tempY_x );
tempY_y = _mm_add_ps(_mm_mul_ps(basisY.m[incr0], coeffY.m[incr0]), tempY_y );
tempY_z = _mm_add_ps(_mm_mul_ps(basisZ.m[incr0], coeffY.m[incr0]), tempY_z );
tempZ_x = _mm_add_ps(_mm_mul_ps(basisX.m[incr0], coeffZ.m[incr0]), tempZ_x );
tempZ_y = _mm_add_ps(_mm_mul_ps(basisY.m[incr0], coeffZ.m[incr0]), tempZ_y );
tempZ_z = _mm_add_ps(_mm_mul_ps(basisZ.m[incr0], coeffZ.m[incr0]), tempZ_z );
}
//the values stored in SSE variables are transfered to normal float
val.m = tempX_x;
jacobianMatrix.m[0][0] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempX_y;
jacobianMatrix.m[0][1] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempX_z;
jacobianMatrix.m[0][2] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempY_x;
jacobianMatrix.m[1][0] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempY_y;
jacobianMatrix.m[1][1] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempY_z;
jacobianMatrix.m[1][2] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempZ_x;
jacobianMatrix.m[2][0] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempZ_y;
jacobianMatrix.m[2][1] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
val.m = tempZ_z;
jacobianMatrix.m[2][2] = val.f[0]+val.f[1]+val.f[2]+val.f[3];
#else
memset(&jacobianMatrix, 0, sizeof(mat33));
for(incr0=0; incr0<64; ++incr0)
{
jacobianMatrix.m[0][0] += basisX[incr0]*coeffX[incr0];
jacobianMatrix.m[0][1] += basisY[incr0]*coeffX[incr0];
jacobianMatrix.m[0][2] += basisZ[incr0]*coeffX[incr0];
jacobianMatrix.m[1][0] += basisX[incr0]*coeffY[incr0];
jacobianMatrix.m[1][1] += basisY[incr0]*coeffY[incr0];
jacobianMatrix.m[1][2] += basisZ[incr0]*coeffY[incr0];
jacobianMatrix.m[2][0] += basisX[incr0]*coeffZ[incr0];
jacobianMatrix.m[2][1] += basisY[incr0]*coeffZ[incr0];
jacobianMatrix.m[2][2] += basisZ[incr0]*coeffZ[incr0];
}
#endif
jacobianMatrix=nifti_mat33_mul(reorientation,
jacobianMatrix);
if(JacobianMatrices!=NULL)
JacobianMatrices[voxelIndex]=jacobianMatrix;
if(JacobianDeterminants!=NULL)
JacobianDeterminants[voxelIndex] =
static_cast<DTYPE>(nifti_mat33_determ(jacobianMatrix));
++voxelIndex;
} // loop over x
} // loop over y
} // loop over z
} // end if the grid is aligned with the reference image
} // end if no approximation
return;
}
/* *************************************************************** */
extern "C++"
double reg_spline_getJacobianPenaltyTerm(nifti_image *splineControlPoint,
nifti_image *referenceImage,
bool approximation,
bool useHeaderInformation
)
{
// An array to store the Jacobian determinant is created
size_t detNumber=0;
if(approximation)
{
detNumber = (size_t)(splineControlPoint->nx-2) *
(splineControlPoint->ny-2);
if(splineControlPoint->nz>1)
detNumber *= (size_t)(splineControlPoint->nz-2);
}
else detNumber = (size_t)referenceImage->nx *
referenceImage->ny * referenceImage->nz;
void *JacobianDetermiantArray=(void *)malloc(detNumber*splineControlPoint->nbyper);
// The jacobian determinants are computed
if(splineControlPoint->nz==1)
{
switch(splineControlPoint->datatype)
{
case NIFTI_TYPE_FLOAT32:
reg_cubic_spline_jacobian2D<float>(splineControlPoint,
referenceImage,
NULL,
static_cast<float *>(JacobianDetermiantArray),
approximation,
useHeaderInformation);
break;
case NIFTI_TYPE_FLOAT64:
reg_cubic_spline_jacobian2D<double>(splineControlPoint,
referenceImage,
NULL,
static_cast<double *>(JacobianDetermiantArray),
approximation,
useHeaderInformation);
break;
default:
reg_print_fct_error("reg_spline_getJacobianPenaltyTerm");
reg_print_fct_error("Only single or double precision has been implemented");
exit(1);
}
}
else
{
switch(splineControlPoint->datatype)
{
case NIFTI_TYPE_FLOAT32:
reg_cubic_spline_jacobian3D<float>(splineControlPoint,
referenceImage,
NULL,
static_cast<float *>(JacobianDetermiantArray),
approximation,
useHeaderInformation);
break;
case NIFTI_TYPE_FLOAT64:
reg_cubic_spline_jacobian3D<double>(splineControlPoint,
referenceImage,
NULL,
static_cast<double *>(JacobianDetermiantArray),
approximation,
useHeaderInformation);
break;
default:
reg_print_fct_error("reg_spline_getJacobianPenaltyTerm");
reg_print_fct_error("Only single or double precision has been implemented");
exit(1);
}
}
// The jacobian determinant are averaged
double penaltySum=0.;
switch(splineControlPoint->datatype)
{
case NIFTI_TYPE_FLOAT32:
{
float *jacDetPtr = static_cast<float *>(JacobianDetermiantArray);
for(size_t i=0; i<detNumber; ++i)
{
double logDet = log(jacDetPtr[i]);
#ifdef _USE_SQUARE_LOG_JAC
penaltySum += logDet * logDet;
#else
penaltySum += fasb(logDet);
#endif
}
}
break;
case NIFTI_TYPE_FLOAT64:
{
double *jacDetPtr = static_cast<double *>(JacobianDetermiantArray);
for(size_t i=0; i<detNumber; ++i)
{
double logDet = log(jacDetPtr[i]);
#ifdef _USE_SQUARE_LOG_JAC
penaltySum += logDet * logDet;
#else
penaltySum += fasb(logDet);
#endif
}
}
break;
}
// The allocated array is free'ed
if(JacobianDetermiantArray)
free(JacobianDetermiantArray);
JacobianDetermiantArray=NULL;
// The penalty term value is normalised and returned
return penaltySum/(double)detNumber;
}
/* *************************************************************** */
/* *************************************************************** */
template<class DTYPE>
void reg_spline_jacobianDetGradient2D(nifti_image *splineControlPoint,
nifti_image *referenceImage,
nifti_image *gradientImage,
float weight,
bool approximation,
bool useHeaderInformation)
{
size_t arraySize = 0;
if(approximation)
arraySize = (size_t)(splineControlPoint->nx-2) *
(splineControlPoint->ny-2);
else arraySize = (size_t)referenceImage->nx *
referenceImage->ny;
// Allocate arrays to store determinants and matrices
mat33 *jacobianMatrices=(mat33 *)malloc(arraySize * sizeof(mat33));
DTYPE *jacobianDeterminant=(DTYPE *)malloc(arraySize * sizeof(DTYPE));
// Compute all the required Jacobian determinants and matrices
reg_cubic_spline_jacobian2D<DTYPE>(splineControlPoint,
referenceImage,
jacobianMatrices,
jacobianDeterminant,
approximation,
useHeaderInformation);
// The gradient are now computed for every control point
DTYPE *gradientImagePtrX = static_cast<DTYPE *>(gradientImage->data);
DTYPE *gradientImagePtrY = &gradientImagePtrX[gradientImage->nx*gradientImage->ny];
// Matrices to be used to convert the gradient from voxel to mm
mat33 jacobianMatrix, reorientation;
if(splineControlPoint->sform_code>0)
reorientation = reg_mat44_to_mat33(&splineControlPoint->sto_xyz);
else reorientation = reg_mat44_to_mat33(&splineControlPoint->qto_xyz);
// Ratio to be used for normalisation
size_t jacobianNumber;
if(approximation)
jacobianNumber = splineControlPoint->nx * splineControlPoint->ny;
else jacobianNumber = arraySize;
DTYPE ratio[2] =
{
referenceImage->dx*weight / ((DTYPE)jacobianNumber*splineControlPoint->dx),
referenceImage->dy*weight / ((DTYPE)jacobianNumber*splineControlPoint->dy)
};
// Only information at the control point position is considered
if(approximation)
{
DTYPE basisX[9], basisY[9];
DTYPE normal[3] = { 1.f / 6.f, 2.f / 3.f, 1.f / 6.f };
DTYPE first[3] = { -0.5f, 0.f, 0.5f };
DTYPE jacobianConstraint[2], detJac;
size_t coord=0, jacIndex, index;
int x, y, pixelX, pixelY;
// INVERTED ON PURPOSE
for(int b=2; b>-1; --b)
{
for(int a=2; a>-1; --a)
{
basisX[coord]=normal[b]*first[a];
basisY[coord]=first[b]*normal[a];
coord++;
}
}
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(splineControlPoint, jacobianMatrices, jacobianDeterminant, basisX, basisY, \
ratio, gradientImagePtrX, gradientImagePtrY, reorientation) \
private(x, y, index, jacobianConstraint, pixelX, pixelY, jacIndex, coord, \
detJac, jacobianMatrix)
#endif
for(y=0; y<splineControlPoint->ny; y++)
{
index=y*splineControlPoint->nx;
for(x=0; x<splineControlPoint->nx; x++)
{
jacobianConstraint[0]=jacobianConstraint[1]=0;
// Loop over all the control points in the surrounding area
coord=0;
for(pixelY=(int)(y-1); pixelY<(int)(y+2); ++pixelY)
{
if(pixelY>0 && pixelY<splineControlPoint->ny-1)
{
for(pixelX=(int)(x-1); pixelX<(int)(x+2); ++pixelX)
{
if(pixelX>0 && pixelX<splineControlPoint->nx-1)
{
jacIndex = (pixelY-1) *
(splineControlPoint->nx-2)+pixelX-1;
detJac = (double)jacobianDeterminant[jacIndex];
if(detJac>0.0)
{
jacobianMatrix = jacobianMatrices[jacIndex];
#ifdef _USE_SQUARE_LOG_JAC
detJac = 2.0*log(detJac) / detJac;
#else
detJac = (log(detJac)>0?1.0:-1.0) / detJac;
#endif
addJacobianGradientValues<DTYPE>(jacobianMatrix,
detJac,
basisX[coord],
basisY[coord],
jacobianConstraint);
}
} // if x
coord++;
}// x
}// if y
else coord+=3;
}// y
// (Marc) I removed the normalisation by the voxel number as each gradient has to be normalised in the same way (NMI, BE, JAC)
gradientImagePtrX[index] += ratio[0] *
( reorientation.m[0][0]*jacobianConstraint[0]
+ reorientation.m[0][1]*jacobianConstraint[1]);
gradientImagePtrY[index] += ratio[1] *
( reorientation.m[1][0]*jacobianConstraint[0]
+ reorientation.m[1][1]*jacobianConstraint[1]);
++index;
}
}
} // end if approximation
else
{
// All voxels are considered
// Force to use the header information if the grid contains an affine ext
if(splineControlPoint->num_ext>0)
useHeaderInformation=true;
if(useHeaderInformation)
{
// The header information is considered
reg_exit();
} // end if use header information
else
{
// assumes that the reference and grid image are aligned
DTYPE gridVoxelSpacing[2];
gridVoxelSpacing[0] = splineControlPoint->dx / referenceImage->dx;
gridVoxelSpacing[1] = splineControlPoint->dy / referenceImage->dy;
DTYPE xBasis, yBasis, basis;
DTYPE xFirst, yFirst;
DTYPE basisValues[2];
unsigned int jacIndex;
int x, y, xPre, yPre, pixelX, pixelY, index;
DTYPE jacobianConstraint[2];
double detJac;
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(splineControlPoint, gridVoxelSpacing, referenceImage, jacobianDeterminant, ratio, \
jacobianMatrices, gradientImagePtrX, gradientImagePtrY, reorientation) \
private(x, y, xPre, yPre, pixelX, pixelY, jacobianConstraint, \
basis, xBasis, yBasis, xFirst, yFirst, jacIndex, index, detJac, \
jacobianMatrix, basisValues)
#endif
for(y=0; y<splineControlPoint->ny; y++)
{
index=y*splineControlPoint->nx;
for(x=0; x<splineControlPoint->nx; x++)
{
jacobianConstraint[0]=jacobianConstraint[1]=0.;
// Loop over all the control points in the surrounding area
for(pixelY=(int)reg_ceil((y-3)*gridVoxelSpacing[1]); pixelY<=(int)reg_ceil((y+1)*gridVoxelSpacing[1]); pixelY++)
{
if(pixelY>-1 && pixelY<referenceImage->ny)
{
yPre=(int)((DTYPE)pixelY/gridVoxelSpacing[1]);
basis=(DTYPE)pixelY/gridVoxelSpacing[1]-(DTYPE)yPre;
get_BSplineBasisValue<DTYPE>(basis,y-yPre,yBasis,yFirst);
jacIndex = pixelY*referenceImage->nx+(int)reg_ceil((x-3)*gridVoxelSpacing[0]);
for(pixelX=(int)reg_ceil((x-3)*gridVoxelSpacing[0]); pixelX<=(int)reg_ceil((x+1)*gridVoxelSpacing[0]); pixelX++)
{
if(pixelX>-1 && pixelX<referenceImage->nx && (yFirst!=0 || yBasis!=0))
{
detJac = jacobianDeterminant[jacIndex];
xPre=(int)((DTYPE)pixelX/gridVoxelSpacing[0]);
basis=(DTYPE)pixelX/gridVoxelSpacing[0]-(DTYPE)xPre;
get_BSplineBasisValue<DTYPE>(basis,x-xPre,xBasis,xFirst);
if(detJac>0.0 && (xBasis!=0 ||xFirst!=0))
{
jacobianMatrix = jacobianMatrices[jacIndex];
basisValues[0] = xFirst * yBasis ;
basisValues[1] = xBasis * yFirst ;
jacobianMatrix = jacobianMatrices[jacIndex];
#ifdef _USE_SQUARE_LOG_JAC
detJac= 2.0*log(detJac) / detJac;
#else
detJac = (log(detJac)>0?1.0:-1.0) / detJac;
#endif
addJacobianGradientValues<DTYPE>(jacobianMatrix,
detJac,
basisValues[0],
basisValues[1],
jacobianConstraint);
}
} // if x
jacIndex++;
}// x
}// if y
}// y
// (Marc) I removed the normalisation by the voxel number as each gradient has to be normalised in the same way (NMI, BE, JAC)
gradientImagePtrX[index] += ratio[0] *
( reorientation.m[0][0]*jacobianConstraint[0]
+ reorientation.m[0][1]*jacobianConstraint[1]);
gradientImagePtrY[index] += ratio[1] *
( reorientation.m[1][0]*jacobianConstraint[0]
+ reorientation.m[1][1]*jacobianConstraint[1]);
index++;
}
}
}
}
// Allocated arrays are free'ed
free(jacobianMatrices);
free(jacobianDeterminant);
}
/* *************************************************************** */
template<class DTYPE>
void reg_spline_jacobianDetGradient3D(nifti_image *splineControlPoint,
nifti_image *referenceImage,
nifti_image *gradientImage,
float weight,
bool approximation,
bool useHeaderInformation)
{
size_t arraySize = 0;
if(approximation)
arraySize = (size_t)(splineControlPoint->nx-2) *
(splineControlPoint->ny-2) * (splineControlPoint->nz-2);
else arraySize = (size_t)referenceImage->nx *
referenceImage->ny*referenceImage->nz;
// Allocate arrays to store determinants and matrices
mat33 *jacobianMatrices=(mat33 *)malloc(arraySize * sizeof(mat33));
DTYPE *jacobianDeterminant=(DTYPE *)malloc(arraySize * sizeof(DTYPE));
// Compute all the required Jacobian determinants and matrices
reg_cubic_spline_jacobian3D<DTYPE>(splineControlPoint,
referenceImage,
jacobianMatrices,
jacobianDeterminant,
approximation,
useHeaderInformation);
// The gradient are now computed for every control point
DTYPE *gradientImagePtrX = static_cast<DTYPE *>(gradientImage->data);
DTYPE *gradientImagePtrY = &gradientImagePtrX[gradientImage->nx*gradientImage->ny*gradientImage->nz];
DTYPE *gradientImagePtrZ = &gradientImagePtrY[gradientImage->nx*gradientImage->ny*gradientImage->nz];
// Matrices to be used to convert the gradient from voxel to mm
mat33 jacobianMatrix, reorientation;
if(splineControlPoint->sform_code>0)
reorientation = reg_mat44_to_mat33(&splineControlPoint->sto_xyz);
else reorientation = reg_mat44_to_mat33(&splineControlPoint->qto_xyz);
// Ratio to be used for normalisation
size_t jacobianNumber;
if(approximation)
jacobianNumber = splineControlPoint->nx * splineControlPoint->ny * splineControlPoint->nz;
else jacobianNumber = arraySize;
DTYPE ratio[3] =
{
referenceImage->dx*weight / ((DTYPE)jacobianNumber*splineControlPoint->dx),
referenceImage->dy*weight / ((DTYPE)jacobianNumber*splineControlPoint->dy),
referenceImage->dz*weight / ((DTYPE)jacobianNumber*splineControlPoint->dz)
};
// Only information at the control point position is considered
if(approximation)
{
DTYPE basisX[27], basisY[27], basisZ[27];
DTYPE normal[3]= {1.f/6.f, 2.f/3.f, 1.f/6.f};
DTYPE first[3]= {-0.5f, 0.f, 0.5f};
DTYPE jacobianConstraint[3], detJac;
size_t coord=0, jacIndex, index;
int x, y, z, pixelX, pixelY, pixelZ;
// INVERTED ON PURPOSE
for(int c=2; c>-1; --c)
{
for(int b=2; b>-1; --b)
{
for(int a=2; a>-1; --a)
{
basisX[coord]=normal[c]*normal[b]*first[a];
basisY[coord]=normal[c]*first[b]*normal[a];
basisZ[coord]=first[c]*normal[b]*normal[a];
coord++;
}
}
}
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(splineControlPoint, jacobianMatrices, jacobianDeterminant, basisX, basisY, basisZ, \
ratio, gradientImagePtrX, gradientImagePtrY, gradientImagePtrZ, reorientation) \
private(x, y, z, index, jacobianConstraint, pixelX, pixelY, pixelZ, jacIndex, coord, \
detJac, jacobianMatrix)
#endif
for(z=0; z<splineControlPoint->nz; z++)
{
index=z*splineControlPoint->nx*splineControlPoint->ny;
for(y=0; y<splineControlPoint->ny; y++)
{
for(x=0; x<splineControlPoint->nx; x++)
{
jacobianConstraint[0]=jacobianConstraint[1]=jacobianConstraint[2]=0;
// Loop over all the control points in the surrounding area
coord=0;
for(pixelZ=(int)(z-1); pixelZ<(int)(z+2); ++pixelZ)
{
if(pixelZ>0 && pixelZ<splineControlPoint->nz-1)
{
for(pixelY=(int)(y-1); pixelY<(int)(y+2); ++pixelY)
{
if(pixelY>0 && pixelY<splineControlPoint->ny-1)
{
for(pixelX=(int)(x-1); pixelX<(int)(x+2); ++pixelX)
{
if(pixelX>0 && pixelX<splineControlPoint->nx-1)
{
jacIndex = ((pixelZ-1)*(splineControlPoint->ny-2)+pixelY-1) *
(splineControlPoint->nx-2)+pixelX-1;
detJac = (double)jacobianDeterminant[jacIndex];
if(detJac>0.0)
{
jacobianMatrix = jacobianMatrices[jacIndex];
#ifdef _USE_SQUARE_LOG_JAC
detJac = 2.0*log(detJac) / detJac;
#else
detJac = (log(detJac)>0?1.0:-1.0) / detJac;
#endif
addJacobianGradientValues<DTYPE>(jacobianMatrix,
detJac,
basisX[coord],
basisY[coord],
basisZ[coord],
jacobianConstraint);
}
} // if x
coord++;
}// x
}// if y
else coord+=3;
}// y
}// if z
else coord+=9;
} // z
// (Marc) I removed the normalisation by the voxel number as each gradient has to be normalised in the same way (NMI, BE, JAC)
gradientImagePtrX[index] += ratio[0] *
( reorientation.m[0][0]*jacobianConstraint[0]
+ reorientation.m[0][1]*jacobianConstraint[1]
+ reorientation.m[0][2]*jacobianConstraint[2]);
gradientImagePtrY[index] += ratio[1] *
( reorientation.m[1][0]*jacobianConstraint[0]
+ reorientation.m[1][1]*jacobianConstraint[1]
+ reorientation.m[1][2]*jacobianConstraint[2]);
gradientImagePtrZ[index] += ratio[2] *
( reorientation.m[2][0]*jacobianConstraint[0]
+ reorientation.m[2][1]*jacobianConstraint[1]
+ reorientation.m[2][2]*jacobianConstraint[2]);
++index;
}
}
}
} // end if approximation
else
{
// All voxels are considered
// Force to use the header information if the grid contains an affine ext
if(splineControlPoint->num_ext>0)
useHeaderInformation=true;
if(useHeaderInformation)
{
// The header information is considered
reg_exit();
} // end if use header information
else
{
// assumes that the reference and grid image are aligned
DTYPE gridVoxelSpacing[3];
gridVoxelSpacing[0] = splineControlPoint->dx / referenceImage->dx;
gridVoxelSpacing[1] = splineControlPoint->dy / referenceImage->dy;
gridVoxelSpacing[2] = splineControlPoint->dz / referenceImage->dz;
DTYPE xBasis, yBasis, zBasis, basis;
DTYPE xFirst, yFirst, zFirst;
DTYPE basisValues[3];
unsigned int jacIndex;
int x, y, z, xPre, yPre, zPre, pixelX, pixelY, pixelZ, index;
DTYPE jacobianConstraint[3];
double detJac;
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(splineControlPoint, gridVoxelSpacing, referenceImage, jacobianDeterminant, ratio, \
jacobianMatrices, gradientImagePtrX, gradientImagePtrY, gradientImagePtrZ, reorientation) \
private(x, y, z, xPre, yPre, zPre, pixelX, pixelY, pixelZ, jacobianConstraint, \
basis, xBasis, yBasis, zBasis, xFirst, yFirst, zFirst, jacIndex, index, detJac, \
jacobianMatrix, basisValues)
#endif
for(z=0; z<splineControlPoint->nz; z++)
{
index=z*splineControlPoint->nx*splineControlPoint->ny;
for(y=0; y<splineControlPoint->ny; y++)
{
for(x=0; x<splineControlPoint->nx; x++)
{
jacobianConstraint[0]=jacobianConstraint[1]=jacobianConstraint[2]=0.;
// Loop over all the control points in the surrounding area
for(pixelZ=(int)reg_ceil((z-3)*gridVoxelSpacing[2]); pixelZ<=(int)reg_ceil((z+1)*gridVoxelSpacing[2]); pixelZ++)
{
if(pixelZ>-1 && pixelZ<referenceImage->nz)
{
zPre=(int)((DTYPE)pixelZ/gridVoxelSpacing[2]);
basis=(DTYPE)pixelZ/gridVoxelSpacing[2]-(DTYPE)zPre;
get_BSplineBasisValue<DTYPE>(basis,z-zPre,zBasis,zFirst);
for(pixelY=(int)reg_ceil((y-3)*gridVoxelSpacing[1]); pixelY<=(int)reg_ceil((y+1)*gridVoxelSpacing[1]); pixelY++)
{
if(pixelY>-1 && pixelY<referenceImage->ny && (zFirst!=0 || zBasis!=0))
{
yPre=(int)((DTYPE)pixelY/gridVoxelSpacing[1]);
basis=(DTYPE)pixelY/gridVoxelSpacing[1]-(DTYPE)yPre;
get_BSplineBasisValue<DTYPE>(basis,y-yPre,yBasis,yFirst);
jacIndex = (pixelZ*referenceImage->ny+pixelY)*referenceImage->nx+(int)reg_ceil((x-3)*gridVoxelSpacing[0]);
for(pixelX=(int)reg_ceil((x-3)*gridVoxelSpacing[0]); pixelX<=(int)reg_ceil((x+1)*gridVoxelSpacing[0]); pixelX++)
{
if(pixelX>-1 && pixelX<referenceImage->nx && (yFirst!=0 || yBasis!=0))
{
detJac = jacobianDeterminant[jacIndex];
xPre=(int)((DTYPE)pixelX/gridVoxelSpacing[0]);
basis=(DTYPE)pixelX/gridVoxelSpacing[0]-(DTYPE)xPre;
get_BSplineBasisValue<DTYPE>(basis,x-xPre,xBasis,xFirst);
if(detJac>0.0 && (xBasis!=0 ||xFirst!=0))
{
jacobianMatrix = jacobianMatrices[jacIndex];
basisValues[0] = xFirst * yBasis * zBasis ;
basisValues[1] = xBasis * yFirst * zBasis ;
basisValues[2] = xBasis * yBasis * zFirst ;
jacobianMatrix = jacobianMatrices[jacIndex];
#ifdef _USE_SQUARE_LOG_JAC
detJac= 2.0*log(detJac) / detJac;
#else
detJac = (log(detJac)>0?1.0:-1.0) / detJac;
#endif
addJacobianGradientValues<DTYPE>(jacobianMatrix,
detJac,
basisValues[0],
basisValues[1],
basisValues[2],
jacobianConstraint);
}
} // if x
jacIndex++;
}// x
}// if y
}// y
}// if z
} // z
// (Marc) I removed the normalisation by the voxel number as each gradient has to be normalised in the same way (NMI, BE, JAC)
gradientImagePtrX[index] += ratio[0] *
( reorientation.m[0][0]*jacobianConstraint[0]
+ reorientation.m[0][1]*jacobianConstraint[1]
+ reorientation.m[0][2]*jacobianConstraint[2]);
gradientImagePtrY[index] += ratio[1] *
( reorientation.m[1][0]*jacobianConstraint[0]
+ reorientation.m[1][1]*jacobianConstraint[1]
+ reorientation.m[1][2]*jacobianConstraint[2]);
gradientImagePtrZ[index] += ratio[2] *
( reorientation.m[2][0]*jacobianConstraint[0]
+ reorientation.m[2][1]*jacobianConstraint[1]
+ reorientation.m[2][2]*jacobianConstraint[2]);
index++;
}
}
}
}
}
// Allocated arrays are free'ed
free(jacobianMatrices);
free(jacobianDeterminant);
}
/* *************************************************************** */
extern "C++"
void reg_spline_getJacobianPenaltyTermGradient(nifti_image *splineControlPoint,
nifti_image *referenceImage,
nifti_image *gradientImage,
float weight,
bool approximation,
bool useHeaderInformation)
{
if(splineControlPoint->datatype != gradientImage->datatype)
{
reg_print_fct_error("reg_spline_getJacobianPenaltyTermGradient");
reg_print_msg_error("The input images are expected to be of the same type");
reg_exit();
}
if(splineControlPoint->nz==1)
{
switch(splineControlPoint->datatype)
{
case NIFTI_TYPE_FLOAT32:
reg_spline_jacobianDetGradient2D<float>(splineControlPoint,
referenceImage,
gradientImage,
weight,
approximation,
useHeaderInformation);
break;
case NIFTI_TYPE_FLOAT64:
reg_spline_jacobianDetGradient2D<double>(splineControlPoint,
referenceImage,
gradientImage,
weight,
approximation,
useHeaderInformation);
break;
default:
reg_print_fct_error("reg_spline_getJacobianPenaltyTermGradient");
reg_print_msg_error("Function only usable with single or double floating precision");
reg_exit();
}
}
else
{
switch(splineControlPoint->datatype)
{
case NIFTI_TYPE_FLOAT32:
reg_spline_jacobianDetGradient3D<float>(splineControlPoint,
referenceImage,
gradientImage,
weight,
approximation,
useHeaderInformation);
break;
case NIFTI_TYPE_FLOAT64:
reg_spline_jacobianDetGradient3D<double>(splineControlPoint,
referenceImage,
gradientImage,
weight,
approximation,
useHeaderInformation);
break;
default:
reg_print_fct_error("reg_spline_getJacobianPenaltyTermGradient");
reg_print_msg_error("Function only usable with single or double floating precision");
reg_exit();
}
}
}
/* *************************************************************** */
/* *************************************************************** */
template<class DTYPE>
double reg_spline_correctFolding2D(nifti_image *splineControlPoint,
nifti_image *referenceImage,
bool approximation,
bool useHeaderInformation)
{
#ifdef WIN32
long i;
long jacobianNumber;
if(approximation)
jacobianNumber = (long)(splineControlPoint->nx-2)*(splineControlPoint->ny-2);
else jacobianNumber = (long)referenceImage->nx*referenceImage->ny;
#else
size_t i;
size_t jacobianNumber;
if(approximation)
jacobianNumber = (size_t)(splineControlPoint->nx-2)*(splineControlPoint->ny-2);
else jacobianNumber = (size_t)referenceImage->nx*referenceImage->ny;
#endif
mat33 *jacobianMatrices=(mat33 *)malloc(jacobianNumber*sizeof(mat33));
DTYPE *jacobianDeterminant=(DTYPE *)malloc(jacobianNumber*sizeof(DTYPE));
reg_cubic_spline_jacobian2D(splineControlPoint,
referenceImage,
jacobianMatrices,
jacobianDeterminant,
approximation,
useHeaderInformation);
/* The current Penalty term value is computed */
double penaltyTerm =0., logDet;
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(jacobianNumber, jacobianDeterminant) \
private(i,logDet) \
reduction(+:penaltyTerm)
#endif
for(i=0; i< jacobianNumber; i++)
{
logDet = log(jacobianDeterminant[i]);
#ifdef _USE_SQUARE_LOG_JAC
penaltyTerm += logDet*logDet;
#else
penaltyTerm += fabs(log(logDet));
#endif
}
if(penaltyTerm==penaltyTerm)
{
free(jacobianDeterminant);
free(jacobianMatrices);
return penaltyTerm/(double)(jacobianNumber);
}
mat33 jacobianMatrix, reorientation;
if(splineControlPoint->sform_code>0)
reorientation = reg_mat44_to_mat33(&splineControlPoint->sto_xyz);
else reorientation = reg_mat44_to_mat33(&splineControlPoint->qto_xyz);
size_t nodeNumber = (size_t)splineControlPoint->nx *
splineControlPoint->ny * splineControlPoint->nz;
DTYPE *controlPointPtrX = static_cast<DTYPE *>(splineControlPoint->data);
DTYPE *controlPointPtrY = &controlPointPtrX[nodeNumber];
DTYPE basisValues[2], foldingCorrection[2], gradient[2], norm;
DTYPE xBasis=0, yBasis=0, xFirst=0, yFirst=0;
int x, y, id, pixelX, pixelY, jacIndex;
bool correctFolding;
double detJac;
if(approximation)
{
// The function discretise the Jacobian only at the control point positions
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(splineControlPoint, jacobianDeterminant, jacobianMatrices, \
controlPointPtrX, controlPointPtrY, reorientation) \
private(x, y, pixelX, pixelY, foldingCorrection, \
xBasis, yBasis, xFirst, yFirst, jacIndex, detJac, \
jacobianMatrix, basisValues, norm, correctFolding, id, gradient)
#endif
for(y=0; y<splineControlPoint->ny; y++)
{
for(x=0; x<splineControlPoint->nx; x++)
{
foldingCorrection[0]=foldingCorrection[1]=0;
correctFolding=false;
// Loop over all the control points in the surrounding area
for(pixelY=(int)((y-1)); pixelY<(int)((y+2)); pixelY++)
{
if(pixelY>0 && pixelY<splineControlPoint->ny-1)
{
for(pixelX=(int)((x-1)); pixelX<(int)((x+2)); pixelX++)
{
if(pixelX>0 && pixelX<splineControlPoint->nx-1)
{
jacIndex = (pixelY-1)*
(splineControlPoint->nx-2)+pixelX-1;
detJac = jacobianDeterminant[jacIndex];
if(detJac<=0.0)
{
get_BSplineBasisValue<DTYPE>(0, y-pixelY+1, yBasis, yFirst);
get_BSplineBasisValue<DTYPE>(0, x-pixelX+1, xBasis, xFirst);
basisValues[0] = xFirst * yBasis ;
basisValues[1] = xBasis * yFirst ;
jacobianMatrix = jacobianMatrices[jacIndex];
correctFolding=true;
addJacobianGradientValues<DTYPE>(jacobianMatrix,
1.0,
basisValues[0],
basisValues[1],
foldingCorrection);
} // detJac<0.0
} // if x
}// x
}// if y
}// y
if(correctFolding)
{
gradient[0] = reorientation.m[0][0]*foldingCorrection[0]
+ reorientation.m[0][1]*foldingCorrection[1];
gradient[1] = reorientation.m[1][0]*foldingCorrection[0]
+ reorientation.m[1][1]*foldingCorrection[1];
norm = (DTYPE)(5.0 * sqrt(gradient[0]*gradient[0]
+ gradient[1]*gradient[1]));
if(norm>(DTYPE)0.0)
{
id = y*splineControlPoint->nx+x;
controlPointPtrX[id] += (DTYPE)(gradient[0]/norm);
controlPointPtrY[id] += (DTYPE)(gradient[1]/norm);
}
}
}
}
}
else
{
// The function aims to correct the folding at every voxel positions
if(splineControlPoint->num_ext>0)
useHeaderInformation=true;
int xPre, yPre;
DTYPE basis;
if(useHeaderInformation)
{
// The grid and reference image are not aligned
reg_exit();
}
else
{
// The grid and reference image are expected to be aligned
DTYPE gridVoxelSpacing[2];
gridVoxelSpacing[0] = splineControlPoint->dx / referenceImage->dx;
gridVoxelSpacing[1] = splineControlPoint->dy / referenceImage->dy;
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(splineControlPoint, gridVoxelSpacing, referenceImage, jacobianDeterminant, \
jacobianMatrices, controlPointPtrX, controlPointPtrY, reorientation) \
private(x, y, xPre, yPre, pixelX, pixelY, foldingCorrection, \
basis, xBasis, yBasis, xFirst, yFirst, jacIndex, detJac, \
jacobianMatrix, basisValues, norm, correctFolding, id, gradient)
#endif
for(y=0; y<splineControlPoint->ny; y++)
{
for(x=0; x<splineControlPoint->nx; x++)
{
foldingCorrection[0]=foldingCorrection[1]=0;
correctFolding=false;
// Loop over all the control points in the surrounding area
for(pixelY=(int)reg_ceil((y-3)*gridVoxelSpacing[1]); pixelY<(int)reg_floor((y+1)*gridVoxelSpacing[1]); pixelY++)
{
if(pixelY>-1 && pixelY<referenceImage->ny)
{
for(pixelX=(int)reg_ceil((x-3)*gridVoxelSpacing[0]); pixelX<(int)reg_floor((x+1)*gridVoxelSpacing[0]); pixelX++)
{
if(pixelX>-1 && pixelX<referenceImage->nx)
{
jacIndex = pixelY*referenceImage->nx+pixelX;
detJac = jacobianDeterminant[jacIndex];
if(detJac<=0.0)
{
jacobianMatrix = jacobianMatrices[jacIndex];
yPre=(int)((DTYPE)pixelY/gridVoxelSpacing[1]);
basis=(DTYPE)pixelY/gridVoxelSpacing[1]-(DTYPE)yPre;
get_BSplineBasisValue<DTYPE>(basis, y-yPre,yBasis,yFirst);
xPre=(int)((DTYPE)pixelX/gridVoxelSpacing[0]);
basis=(DTYPE)pixelX/gridVoxelSpacing[0]-(DTYPE)xPre;
get_BSplineBasisValue<DTYPE>(basis, x-xPre,xBasis,xFirst);
basisValues[0]= xFirst * yBasis ;
basisValues[1]= xBasis * yFirst ;
correctFolding=true;
addJacobianGradientValues<DTYPE>(jacobianMatrix,
1.0,
basisValues[0],
basisValues[1],
foldingCorrection);
} // detJac<0.0
} // if x
}// x
}// if y
}// y
// (Marc) I removed the normalisation by the voxel number as each gradient has to be normalised in the same way (NMI, BE, JAC)
if(correctFolding)
{
gradient[0] = reorientation.m[0][0]*foldingCorrection[0]
+ reorientation.m[0][1]*foldingCorrection[1];
gradient[1] = reorientation.m[1][0]*foldingCorrection[0]
+ reorientation.m[1][1]*foldingCorrection[1];
norm = (DTYPE)(5.0 * sqrt(gradient[0]*gradient[0] +
gradient[1]*gradient[1]));
if(norm>0.0)
{
id = y*splineControlPoint->nx+x;
controlPointPtrX[id] += (DTYPE)(gradient[0]/norm);
controlPointPtrY[id] += (DTYPE)(gradient[1]/norm);
}
}
}
}
}
}
free(jacobianDeterminant);
free(jacobianMatrices);
return std::numeric_limits<double>::quiet_NaN();
}
/* *************************************************************** */
template<class DTYPE>
double reg_spline_correctFolding3D(nifti_image *splineControlPoint,
nifti_image *referenceImage,
bool approximation,
bool useHeaderInformation)
{
#ifdef WIN32
long i;
long jacobianNumber;
if(approximation)
jacobianNumber = (long)(splineControlPoint->nx-2)*(splineControlPoint->ny-2)*(splineControlPoint->nz-2);
else jacobianNumber = (long)referenceImage->nx*referenceImage->ny*referenceImage->nz;
#else
size_t i;
size_t jacobianNumber;
if(approximation)
jacobianNumber = (size_t)(splineControlPoint->nx-2)*(splineControlPoint->ny-2)*(splineControlPoint->nz-2);
else jacobianNumber = (size_t)referenceImage->nx*referenceImage->ny*referenceImage->nz;
#endif
mat33 *jacobianMatrices=(mat33 *)malloc(jacobianNumber*sizeof(mat33));
DTYPE *jacobianDeterminant=(DTYPE *)malloc(jacobianNumber*sizeof(DTYPE));
reg_cubic_spline_jacobian3D(splineControlPoint,
referenceImage,
jacobianMatrices,
jacobianDeterminant,
approximation,
useHeaderInformation);
/* The current Penalty term value is computed */
double penaltyTerm =0., logDet;
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(jacobianNumber, jacobianDeterminant) \
private(i,logDet) \
reduction(+:penaltyTerm)
#endif
for(i=0; i< jacobianNumber; i++)
{
logDet = log(jacobianDeterminant[i]);
#ifdef _USE_SQUARE_LOG_JAC
penaltyTerm += logDet*logDet;
#else
penaltyTerm += fabs(log(logDet));
#endif
}
if(penaltyTerm==penaltyTerm)
{
free(jacobianDeterminant);
free(jacobianMatrices);
return penaltyTerm/(double)(jacobianNumber);
}
mat33 jacobianMatrix, reorientation;
if(splineControlPoint->sform_code>0)
reorientation = reg_mat44_to_mat33(&splineControlPoint->sto_xyz);
else reorientation = reg_mat44_to_mat33(&splineControlPoint->qto_xyz);
size_t nodeNumber = (size_t)splineControlPoint->nx *
splineControlPoint->ny * splineControlPoint->nz;
DTYPE *controlPointPtrX = static_cast<DTYPE *>(splineControlPoint->data);
DTYPE *controlPointPtrY = &controlPointPtrX[nodeNumber];
DTYPE *controlPointPtrZ = &controlPointPtrY[nodeNumber];
DTYPE basisValues[3], foldingCorrection[3], gradient[3], norm;
DTYPE xBasis=0, yBasis=0, zBasis=0, xFirst=0, yFirst=0, zFirst=0;
int x, y, z, id, pixelX, pixelY, pixelZ, jacIndex;
bool correctFolding;
double detJac;
if(approximation)
{
// The function discretise the Jacobian only at the control point positions
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(splineControlPoint, jacobianDeterminant, jacobianMatrices, \
controlPointPtrX, controlPointPtrY, controlPointPtrZ, reorientation) \
private(x, y, z, pixelX, pixelY, pixelZ, foldingCorrection, \
xBasis, yBasis, zBasis, xFirst, yFirst, zFirst, jacIndex, detJac, \
jacobianMatrix, basisValues, norm, correctFolding, id, gradient)
#endif
for(z=0; z<splineControlPoint->nz; z++)
{
for(y=0; y<splineControlPoint->ny; y++)
{
for(x=0; x<splineControlPoint->nx; x++)
{
foldingCorrection[0]=foldingCorrection[1]=foldingCorrection[2]=0;
correctFolding=false;
// Loop over all the control points in the surrounding area
for(pixelZ=(int)((z-1)); pixelZ<(int)((z+2)); pixelZ++)
{
if(pixelZ>0 && pixelZ<splineControlPoint->nz-1)
{
for(pixelY=(int)((y-1)); pixelY<(int)((y+2)); pixelY++)
{
if(pixelY>0 && pixelY<splineControlPoint->ny-1)
{
for(pixelX=(int)((x-1)); pixelX<(int)((x+2)); pixelX++)
{
if(pixelX>0 && pixelX<splineControlPoint->nx-1)
{
jacIndex = ((pixelZ-1)*(splineControlPoint->ny-2)+pixelY-1)*
(splineControlPoint->nx-2)+pixelX-1;
detJac = jacobianDeterminant[jacIndex];
if(detJac<=0.0)
{
get_BSplineBasisValue<DTYPE>(0, z-pixelZ+1, zBasis, zFirst);
get_BSplineBasisValue<DTYPE>(0, y-pixelY+1, yBasis, yFirst);
get_BSplineBasisValue<DTYPE>(0, x-pixelX+1, xBasis, xFirst);
basisValues[0] = xFirst * yBasis * zBasis ;
basisValues[1] = xBasis * yFirst * zBasis ;
basisValues[2] = xBasis * yBasis * zFirst ;
jacobianMatrix = jacobianMatrices[jacIndex];
correctFolding=true;
addJacobianGradientValues<DTYPE>(jacobianMatrix,
1.0,
basisValues[0],
basisValues[1],
basisValues[2],
foldingCorrection);
} // detJac<0.0
} // if x
}// x
}// if y
}// y
}// if z
} // z
if(correctFolding)
{
gradient[0] = reorientation.m[0][0]*foldingCorrection[0]
+ reorientation.m[0][1]*foldingCorrection[1]
+ reorientation.m[0][2]*foldingCorrection[2];
gradient[1] = reorientation.m[1][0]*foldingCorrection[0]
+ reorientation.m[1][1]*foldingCorrection[1]
+ reorientation.m[1][2]*foldingCorrection[2];
gradient[2] = reorientation.m[2][0]*foldingCorrection[0]
+ reorientation.m[2][1]*foldingCorrection[1]
+ reorientation.m[2][2]*foldingCorrection[2];
norm = (DTYPE)(5.0 * sqrt(gradient[0]*gradient[0]
+ gradient[1]*gradient[1]
+ gradient[2]*gradient[2]));
if(norm>(DTYPE)0.0)
{
id = (z*splineControlPoint->ny+y)*splineControlPoint->nx+x;
controlPointPtrX[id] += (DTYPE)(gradient[0]/norm);
controlPointPtrY[id] += (DTYPE)(gradient[1]/norm);
controlPointPtrZ[id] += (DTYPE)(gradient[2]/norm);
}
}
}
}
}
}
else
{
// The function aims to correct the folding at every voxel positions
if(splineControlPoint->num_ext>0)
useHeaderInformation=true;
int xPre, yPre, zPre;
DTYPE basis;
if(useHeaderInformation)
{
// The grid and reference image are not aligned
reg_exit();
}
else
{
// The grid and reference image are expected to be aligned
DTYPE gridVoxelSpacing[3];
gridVoxelSpacing[0] = splineControlPoint->dx / referenceImage->dx;
gridVoxelSpacing[1] = splineControlPoint->dy / referenceImage->dy;
gridVoxelSpacing[2] = splineControlPoint->dz / referenceImage->dz;
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(splineControlPoint, gridVoxelSpacing, referenceImage, jacobianDeterminant, \
jacobianMatrices, controlPointPtrX, controlPointPtrY, controlPointPtrZ, reorientation) \
private(x, y, z, xPre, yPre, zPre, pixelX, pixelY, pixelZ, foldingCorrection, \
basis, xBasis, yBasis, zBasis, xFirst, yFirst, zFirst, jacIndex, detJac, \
jacobianMatrix, basisValues, norm, correctFolding, id, gradient)
#endif
for(z=0; z<splineControlPoint->nz; z++)
{
for(y=0; y<splineControlPoint->ny; y++)
{
for(x=0; x<splineControlPoint->nx; x++)
{
foldingCorrection[0]=foldingCorrection[1]=foldingCorrection[2]=0;
correctFolding=false;
// Loop over all the control points in the surrounding area
for(pixelZ=(int)reg_ceil((z-3)*gridVoxelSpacing[2]); pixelZ<(int)reg_floor((z+1)*gridVoxelSpacing[2]); pixelZ++)
{
if(pixelZ>-1 && pixelZ<referenceImage->nz)
{
for(pixelY=(int)reg_ceil((y-3)*gridVoxelSpacing[1]); pixelY<(int)reg_floor((y+1)*gridVoxelSpacing[1]); pixelY++)
{
if(pixelY>-1 && pixelY<referenceImage->ny)
{
for(pixelX=(int)reg_ceil((x-3)*gridVoxelSpacing[0]); pixelX<(int)reg_floor((x+1)*gridVoxelSpacing[0]); pixelX++)
{
if(pixelX>-1 && pixelX<referenceImage->nx)
{
jacIndex = (pixelZ*referenceImage->ny+pixelY)*referenceImage->nx+pixelX;
detJac = jacobianDeterminant[jacIndex];
if(detJac<=0.0)
{
jacobianMatrix = jacobianMatrices[jacIndex];
zPre=(int)((DTYPE)pixelZ/gridVoxelSpacing[2]);
basis=(DTYPE)pixelZ/gridVoxelSpacing[2]-(DTYPE)zPre;
get_BSplineBasisValue<DTYPE>(basis, z-zPre,zBasis,zFirst);
yPre=(int)((DTYPE)pixelY/gridVoxelSpacing[1]);
basis=(DTYPE)pixelY/gridVoxelSpacing[1]-(DTYPE)yPre;
get_BSplineBasisValue<DTYPE>(basis, y-yPre,yBasis,yFirst);
xPre=(int)((DTYPE)pixelX/gridVoxelSpacing[0]);
basis=(DTYPE)pixelX/gridVoxelSpacing[0]-(DTYPE)xPre;
get_BSplineBasisValue<DTYPE>(basis, x-xPre,xBasis,xFirst);
basisValues[0]= xFirst * yBasis * zBasis ;
basisValues[1]= xBasis * yFirst * zBasis ;
basisValues[2]= xBasis * yBasis * zFirst ;
correctFolding=true;
addJacobianGradientValues<DTYPE>(jacobianMatrix,
1.0,
basisValues[0],
basisValues[1],
basisValues[2],
foldingCorrection);
} // detJac<0.0
} // if x
}// x
}// if y
}// y
}// if z
} // z
// (Marc) I removed the normalisation by the voxel number as each gradient has to be normalised in the same way (NMI, BE, JAC)
if(correctFolding)
{
gradient[0] = reorientation.m[0][0]*foldingCorrection[0]
+ reorientation.m[0][1]*foldingCorrection[1]
+ reorientation.m[0][2]*foldingCorrection[2];
gradient[1] = reorientation.m[1][0]*foldingCorrection[0]
+ reorientation.m[1][1]*foldingCorrection[1]
+ reorientation.m[1][2]*foldingCorrection[2];
gradient[2] = reorientation.m[2][0]*foldingCorrection[0]
+ reorientation.m[2][1]*foldingCorrection[1]
+ reorientation.m[2][2]*foldingCorrection[2];
norm = (DTYPE)(5.0 * sqrt(gradient[0]*gradient[0] +
gradient[1]*gradient[1] +
gradient[2]*gradient[2]));
if(norm>0.0)
{
id = (z*splineControlPoint->ny+y)*splineControlPoint->nx+x;
controlPointPtrX[id] += (DTYPE)(gradient[0]/norm);
controlPointPtrY[id] += (DTYPE)(gradient[1]/norm);
controlPointPtrZ[id] += (DTYPE)(gradient[2]/norm);
}
}
}
}
}
}
}
free(jacobianDeterminant);
free(jacobianMatrices);
return std::numeric_limits<double>::quiet_NaN();
}
/* *************************************************************** */
extern "C++"
double reg_spline_correctFolding(nifti_image *splineControlPoint,
nifti_image *referenceImage,
bool approx)
{
if(splineControlPoint->nz==1)
{
switch(splineControlPoint->datatype)
{
case NIFTI_TYPE_FLOAT32:
return reg_spline_correctFolding2D<float>
(splineControlPoint, referenceImage, approx, false);
break;
case NIFTI_TYPE_FLOAT64:
return reg_spline_correctFolding2D<double>
(splineControlPoint, referenceImage, approx, false);
break;
default:
reg_print_fct_error("reg_spline_correctFolding");
reg_print_msg_error("Only implemented for single or double precision images");
reg_exit();
}
}
else
{
switch(splineControlPoint->datatype)
{
case NIFTI_TYPE_FLOAT32:
return reg_spline_correctFolding3D<float>
(splineControlPoint, referenceImage, approx, false);
break;
case NIFTI_TYPE_FLOAT64:
return reg_spline_correctFolding3D<double>
(splineControlPoint, referenceImage, approx, false);
break;
default:
reg_print_fct_error("reg_spline_correctFolding");
reg_print_msg_error("Only implemented for single or double precision images");
reg_exit();
}
}
}
/* *************************************************************** */
/* *************************************************************** */
void reg_spline_GetJacobianMap(nifti_image *splineControlPoint,
nifti_image *jacobianImage)
{
if(splineControlPoint->intent_p1==LIN_SPLINE_GRID){
if(splineControlPoint->nz==1)
{
reg_print_fct_error("reg_spline_GetJacobianMap");
reg_print_msg_error("No 2D implementation for the linear spline yet");
reg_exit();
}
else
{
switch(jacobianImage->datatype)
{
case NIFTI_TYPE_FLOAT32:
reg_linear_spline_jacobian3D<float>(splineControlPoint,
jacobianImage,
NULL,
static_cast<float *>(jacobianImage->data),
false,
true);
break;
case NIFTI_TYPE_FLOAT64:
reg_linear_spline_jacobian3D<double>(splineControlPoint,
jacobianImage,
NULL,
static_cast<double *>(jacobianImage->data),
false,
true);
break;
default:
reg_print_fct_error("reg_spline_GetJacobianMap");
reg_print_msg_error("Only implemented for single or double precision images");
reg_exit();
}
}
}
else{
if(splineControlPoint->nz==1)
{
switch(jacobianImage->datatype)
{
case NIFTI_TYPE_FLOAT32:
reg_cubic_spline_jacobian2D<float>(splineControlPoint,
jacobianImage,
NULL,
static_cast<float *>(jacobianImage->data),
false,
true);
break;
case NIFTI_TYPE_FLOAT64:
reg_cubic_spline_jacobian2D<double>(splineControlPoint,
jacobianImage,
NULL,
static_cast<double *>(jacobianImage->data),
false,
true);
break;
default:
reg_print_fct_error("reg_spline_GetJacobianMap");
reg_print_msg_error("Only implemented for single or double precision images");
reg_exit();
}
}
else
{
switch(jacobianImage->datatype)
{
case NIFTI_TYPE_FLOAT32:
reg_cubic_spline_jacobian3D<float>(splineControlPoint,
jacobianImage,
NULL,
static_cast<float *>(jacobianImage->data),
false,
true);
break;
case NIFTI_TYPE_FLOAT64:
reg_cubic_spline_jacobian3D<double>(splineControlPoint,
jacobianImage,
NULL,
static_cast<double *>(jacobianImage->data),
false,
true);
break;
default:
reg_print_fct_error("reg_spline_GetJacobianMap");
reg_print_msg_error("Only implemented for single or double precision images");
reg_exit();
}
}
}
}
/* *************************************************************** */
/* *************************************************************** */
void reg_spline_GetJacobianMatrix(nifti_image *referenceImage,
nifti_image *splineControlPoint,
mat33 *jacobianMatrices)
{
if(splineControlPoint->nz==1)
{
switch(splineControlPoint->datatype)
{
case NIFTI_TYPE_FLOAT32:
reg_cubic_spline_jacobian2D<float>(splineControlPoint,
referenceImage,
jacobianMatrices,
NULL,
false,
true);
break;
case NIFTI_TYPE_FLOAT64:
reg_cubic_spline_jacobian2D<double>(splineControlPoint,
referenceImage,
jacobianMatrices,
NULL,
false,
true);
break;
default:
reg_print_fct_error("reg_spline_GetJacobianMatrix");
reg_print_msg_error("Only implemented for single or double precision images");
reg_exit();
}
}
else
{
switch(splineControlPoint->datatype)
{
case NIFTI_TYPE_FLOAT32:
reg_cubic_spline_jacobian3D<float>(splineControlPoint,
referenceImage,
jacobianMatrices,
NULL,
false,
true);
break;
case NIFTI_TYPE_FLOAT64:
reg_cubic_spline_jacobian3D<double>(splineControlPoint,
referenceImage,
jacobianMatrices,
NULL,
false,
true);
break;
default:
reg_print_fct_error("reg_spline_GetJacobianMatrix");
reg_print_msg_error("Only implemented for single or double precision images");
reg_exit();
}
}
}
/* *************************************************************** */
/* *************************************************************** */
template <class DTYPE>
void reg_defField_getJacobianMap2D(nifti_image *deformationField,
nifti_image *jacobianDeterminant,
mat33 *jacobianMatrices)
{
size_t voxelNumber=deformationField->nx*deformationField->ny;
DTYPE *jacDetPtr=NULL;
if(jacobianDeterminant!=NULL)
jacDetPtr=static_cast<DTYPE *>(jacobianDeterminant->data);
float spacing[3];
mat33 reorientation, jacobianMatrix;
if(deformationField->sform_code>0)
{
reg_getRealImageSpacing(deformationField,spacing);
reorientation=nifti_mat33_inverse(nifti_mat33_polar(reg_mat44_to_mat33(&deformationField->sto_xyz)));
}
else
{
spacing[0]=deformationField->dx;
spacing[1]=deformationField->dy;
reorientation=nifti_mat33_inverse(nifti_mat33_polar(reg_mat44_to_mat33(&deformationField->qto_xyz)));
}
DTYPE *deformationPtrX = static_cast<DTYPE *>(deformationField->data);
DTYPE *deformationPtrY = &deformationPtrX[voxelNumber];
DTYPE basis[2]= {1.0,0.0};
DTYPE first[2]= {-1.0,1.0};
DTYPE firstX, firstY, defX, defY;
int currentIndex, x, y, a, b, index;
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(deformationField, jacobianDeterminant, jacobianMatrices, reorientation, \
basis, first, jacDetPtr, deformationPtrX, deformationPtrY, spacing) \
private(currentIndex, x, y, a, b, index, \
jacobianMatrix, defX, defY, firstX, firstY)
#endif
for(y=0; y<deformationField->ny-1; ++y)
{
currentIndex=y*deformationField->nx;
for(x=0; x<deformationField->nx-1; ++x)
{
memset(&jacobianMatrix,0,sizeof(mat33));
for(b=0; b<2; ++b)
{
index=(y+b)*deformationField->nx+x;
for(a=0; a<2; ++a)
{
// Compute the basis function values
firstX=first[a]*basis[b];
firstY=basis[a]*first[b];
// Get the deformation field values
defX = deformationPtrX[index];
defY = deformationPtrY[index];
// Symmetric difference to compute the derivatives
jacobianMatrix.m[0][0] += firstX*defX;
jacobianMatrix.m[0][1] += firstY*defX;
jacobianMatrix.m[1][0] += firstX*defY;
jacobianMatrix.m[1][1] += firstY*defY;
++index;
}//a
}//b
// reorient and scale the Jacobian matrix
jacobianMatrix=nifti_mat33_mul(reorientation,jacobianMatrix);
jacobianMatrix.m[0][0] /= spacing[0];
jacobianMatrix.m[0][1] /= spacing[1];
jacobianMatrix.m[1][0] /= spacing[0];
jacobianMatrix.m[1][1] /= spacing[1];
// Update the output arrays if required
if(jacobianDeterminant!=NULL)
jacDetPtr[currentIndex] = nifti_mat33_determ(jacobianMatrix);
if(jacobianMatrices!=NULL)
jacobianMatrices[currentIndex]=jacobianMatrix;
// Increment the pointer
currentIndex++;
}// x jacImage
}//y jacImage
// Sliding is assumed. The Jacobian at the boundary are then replicated
for(y=0; y<deformationField->ny; ++y)
{
currentIndex=y*deformationField->nx;
for(x=0; x<deformationField->nx; ++x)
{
index=currentIndex;
if(x==deformationField->nx-1) index -= 1;
if(y==deformationField->ny-1) index -= deformationField->nx;
if(currentIndex!=index)
{
if(jacobianDeterminant!=NULL)
jacDetPtr[currentIndex] = jacDetPtr[index];
if(jacobianMatrices!=NULL)
jacobianMatrices[currentIndex] = jacobianMatrices[index];
}
++currentIndex;
} // x
} // y
}
/* *************************************************************** */
template <class DTYPE>
void reg_defField_getJacobianMap3D(nifti_image *deformationField,
nifti_image *jacobianDeterminant,
mat33 *jacobianMatrices)
{
size_t voxelNumber=deformationField->nx*deformationField->ny*deformationField->nz;
DTYPE *jacDetPtr=NULL;
if(jacobianDeterminant!=NULL)
jacDetPtr=static_cast<DTYPE *>(jacobianDeterminant->data);
float spacing[3];
mat33 reorientation, jacobianMatrix;
if(deformationField->sform_code>0)
{
reg_getRealImageSpacing(deformationField,spacing);
reorientation=nifti_mat33_inverse(nifti_mat33_polar(reg_mat44_to_mat33(&deformationField->sto_xyz)));
}
else
{
spacing[0]=deformationField->dx;
spacing[1]=deformationField->dy;
spacing[2]=deformationField->dz;
reorientation=nifti_mat33_inverse(nifti_mat33_polar(reg_mat44_to_mat33(&deformationField->qto_xyz)));
}
DTYPE *deformationPtrX = static_cast<DTYPE *>(deformationField->data);
DTYPE *deformationPtrY = &deformationPtrX[voxelNumber];
DTYPE *deformationPtrZ = &deformationPtrY[voxelNumber];
DTYPE basis[2]= {1.0,0.0};
DTYPE first[2]= {-1.0,1.0};
DTYPE firstX, firstY, firstZ, defX, defY, defZ;
int currentIndex, x, y, z, a, b, c, currentZ, index;
#ifdef _OPENMP
#pragma omp parallel for default(none) \
shared(deformationField, jacobianDeterminant, jacobianMatrices, reorientation, \
basis, first, jacDetPtr, deformationPtrX, deformationPtrY, deformationPtrZ, spacing) \
private(currentIndex, x, y, z, a, b, c, currentZ, index, \
jacobianMatrix, defX, defY, defZ, firstX, firstY, firstZ)
#endif
for(z=0; z<deformationField->nz-1; ++z)
{
for(y=0; y<deformationField->ny-1; ++y)
{
currentIndex=(z*deformationField->ny+y)*deformationField->nx;
for(x=0; x<deformationField->nx-1; ++x)
{
memset(&jacobianMatrix,0,sizeof(mat33));
for(c=0; c<2; ++c)
{
currentZ=z+c;
for(b=0; b<2; ++b)
{
index=(currentZ*deformationField->ny+y+b)*deformationField->nx+x;
for(a=0; a<2; ++a)
{
// Compute the basis function values
firstX=first[a]*basis[b]*basis[c];
firstY=basis[a]*first[b]*basis[c];
firstZ=basis[a]*basis[b]*first[c];
// Get the deformation field values
defX = deformationPtrX[index];
defY = deformationPtrY[index];
defZ = deformationPtrZ[index];
// Symmetric difference to compute the derivatives
jacobianMatrix.m[0][0] += firstX*defX;
jacobianMatrix.m[0][1] += firstY*defX;
jacobianMatrix.m[0][2] += firstZ*defX;
jacobianMatrix.m[1][0] += firstX*defY;
jacobianMatrix.m[1][1] += firstY*defY;
jacobianMatrix.m[1][2] += firstZ*defY;
jacobianMatrix.m[2][0] += firstX*defZ;
jacobianMatrix.m[2][1] += firstY*defZ;
jacobianMatrix.m[2][2] += firstZ*defZ;
++index;
}//a
}//b
}//c
// reorient and scale the Jacobian matrix
jacobianMatrix=nifti_mat33_mul(reorientation,jacobianMatrix);
jacobianMatrix.m[0][0] /= spacing[0];
jacobianMatrix.m[0][1] /= spacing[1];
jacobianMatrix.m[0][2] /= spacing[2];
jacobianMatrix.m[1][0] /= spacing[0];
jacobianMatrix.m[1][1] /= spacing[1];
jacobianMatrix.m[1][2] /= spacing[2];
jacobianMatrix.m[2][0] /= spacing[0];
jacobianMatrix.m[2][1] /= spacing[1];
jacobianMatrix.m[2][2] /= spacing[2];
// Update the output arrays if required
if(jacobianDeterminant!=NULL)
jacDetPtr[currentIndex] = nifti_mat33_determ(jacobianMatrix);
if(jacobianMatrices!=NULL)
jacobianMatrices[currentIndex]=jacobianMatrix;
// Increment the pointer
currentIndex++;
}// x jacImage
}//y jacImage
}//z jacImage
// Sliding is assumed. The Jacobian at the boundary are then replicated
for(z=0; z<deformationField->nz; ++z)
{
currentIndex=z*deformationField->nx*deformationField->ny;
for(y=0; y<deformationField->ny; ++y)
{
for(x=0; x<deformationField->nx; ++x)
{
index=currentIndex;
if(x==deformationField->nx-1) index -= 1;
if(y==deformationField->ny-1) index -= deformationField->nx;
if(z==deformationField->nz-1) index -= deformationField->nx*deformationField->ny;
if(currentIndex!=index)
{
if(jacobianDeterminant!=NULL)
jacDetPtr[currentIndex] = jacDetPtr[index];
if(jacobianMatrices!=NULL)
jacobianMatrices[currentIndex] = jacobianMatrices[index];
}
++currentIndex;
} // x
} // y
} // z
}
/* *************************************************************** */
void reg_defField_getJacobianMap(nifti_image *deformationField,
nifti_image *jacobianImage)
{
if(deformationField->datatype!=jacobianImage->datatype)
{
reg_print_fct_error("reg_defField_getJacobianMap");
reg_print_msg_error("Both input images have different datatype");
reg_exit();
}
switch(deformationField->datatype)
{
case NIFTI_TYPE_FLOAT32:
if(deformationField->nz>1)
reg_defField_getJacobianMap3D<float>(deformationField,jacobianImage,NULL);
else reg_defField_getJacobianMap2D<float>(deformationField,jacobianImage,NULL);
break;
case NIFTI_TYPE_FLOAT64:
if(deformationField->nz>1)
reg_defField_getJacobianMap3D<double>(deformationField,jacobianImage,NULL);
else reg_defField_getJacobianMap2D<double>(deformationField,jacobianImage,NULL);
break;
default:
reg_print_fct_error("reg_defField_getJacobianMap");
reg_print_msg_error("Only implemented for single or double precision images");
reg_exit();
}
}
/* *************************************************************** */
/* *************************************************************** */
void reg_defField_getJacobianMatrix(nifti_image *deformationField,
mat33 *jacobianMatrices)
{
switch(deformationField->datatype)
{
case NIFTI_TYPE_FLOAT32:
if(deformationField->nz>1)
reg_defField_getJacobianMap3D<float>(deformationField,NULL,jacobianMatrices);
else reg_defField_getJacobianMap2D<float>(deformationField,NULL,jacobianMatrices);
break;
case NIFTI_TYPE_FLOAT64:
if(deformationField->nz>1)
reg_defField_getJacobianMap3D<double>(deformationField,NULL,jacobianMatrices);
else reg_defField_getJacobianMap2D<double>(deformationField,NULL,jacobianMatrices);
break;
default:
reg_print_fct_error("reg_defField_getJacobianMatrix");
reg_print_msg_error("Only implemented for single or double precision images");
reg_exit();
}
}
/* *************************************************************** */
template <class DTYPE>
void reg_defField_GetJacobianMatFromFlowField_core(mat33* jacobianMatrices,
nifti_image* flowFieldImage
)
{
// A second field is allocated to store the deformation
nifti_image *defFieldImage = nifti_copy_nim_info(flowFieldImage);
defFieldImage->data = (void *)malloc(defFieldImage->nvox *
defFieldImage->nbyper);
// Remove the affine component from the flow field
if(flowFieldImage->num_ext>0)
{
if(flowFieldImage->ext_list[0].edata!=NULL)
{
// Create a field that contains the affine component only
reg_affine_getDeformationField(reinterpret_cast<mat44 *>(flowFieldImage->ext_list[0].edata),
defFieldImage,
false);
reg_tools_substractImageToImage(flowFieldImage,defFieldImage,flowFieldImage);
}
}
else reg_getDisplacementFromDeformation(flowFieldImage);
// The displacement field is scaled
float scalingValue = pow(2.0f,fabs(flowFieldImage->intent_p2));
if(flowFieldImage->intent_p2<0)
// backward deformation field is scaled down
reg_tools_divideValueToImage(flowFieldImage,
flowFieldImage,
-scalingValue); // (/-scalingValue)
else
// forward deformation field is scaled down
reg_tools_divideValueToImage(flowFieldImage,
flowFieldImage,
scalingValue); // (/scalingValue)
// Conversion from displacement to deformation
reg_getDeformationFromDisplacement(flowFieldImage);
// The computed scaled flow field is copied over
memcpy(defFieldImage->data, flowFieldImage->data,
defFieldImage->nvox*defFieldImage->nbyper);
// The Jacobian matrices are initialised with identity or the initial affine
mat33 affineMatrix;
reg_mat33_eye(&affineMatrix);
if(flowFieldImage->num_ext>0)
{
if(flowFieldImage->ext_list[0].edata!=NULL)
{
affineMatrix = reg_mat44_to_mat33(reinterpret_cast<mat44 *>(flowFieldImage->ext_list[0].edata));
}
else reg_exit();
}
size_t voxelNumber = (size_t)flowFieldImage->nx *
flowFieldImage->ny * flowFieldImage->nz ;
for(size_t i=0; i<voxelNumber; ++i)
jacobianMatrices[i]=affineMatrix;
// Create a temporary Jacobian matrix array
mat33 *tempJacMatrix=(mat33 *)malloc(voxelNumber*sizeof(mat33));
// The deformation field is squared and the Jacobian computed
for(int step=0; step<fabs(flowFieldImage->intent_p2); ++step)
{
// The matrices are computed at every voxel for the current field
reg_defField_getJacobianMatrix(defFieldImage,
tempJacMatrix);
// The computed matrices are composed with the previous one
for(size_t i=0; i<voxelNumber; ++i)
jacobianMatrices[i]=nifti_mat33_mul(tempJacMatrix[i],jacobianMatrices[i]);
// The deformation field is applied to itself
reg_defField_compose(defFieldImage,
flowFieldImage,
NULL);
// The computed scaled deformation field is copied over
memcpy(defFieldImage->data, flowFieldImage->data,
defFieldImage->nvox*defFieldImage->nbyper);
#ifndef NDEBUG
reg_print_fct_debug("reg_defField_GetJacobianMatFromFlowField_core");
printf("[NiftyReg DEBUG] Squaring (composition) step %i/%i\n", (int)step+1, (int)fabs(flowFieldImage->intent_p2));
#endif
}
// Allocated arrays and images are free'ed
nifti_image_free(defFieldImage);
free(tempJacMatrix);
// The second half of the affine is added if required
if(flowFieldImage->num_ext>1)
{
if(flowFieldImage->ext_list[1].edata!=NULL)
{
affineMatrix = reg_mat44_to_mat33(reinterpret_cast<mat44 *>(flowFieldImage->ext_list[1].edata));
}
else reg_exit();
for(size_t i=0; i<voxelNumber; ++i)
jacobianMatrices[i]=nifti_mat33_mul(affineMatrix,jacobianMatrices[i]);
}
}
/* *************************************************************** */
/* *************************************************************** */
template<class DTYPE>
void reg_getDetArrayFromMatArray(nifti_image *jacobianDetImage,
mat33 *jacobianMatrices
)
{
size_t voxelNumber=jacobianDetImage->nx*jacobianDetImage->ny*jacobianDetImage->nz;
DTYPE *jacDetPtr=static_cast<DTYPE *>(jacobianDetImage->data);
if(jacobianDetImage->nz>1){
for(size_t voxel=0; voxel<voxelNumber; ++voxel)
jacDetPtr[voxel]=nifti_mat33_determ(jacobianMatrices[voxel]);
}
else{
for(size_t voxel=0; voxel<voxelNumber; ++voxel)
jacDetPtr[voxel]=
jacobianMatrices[voxel].m[0][0] * jacobianMatrices[voxel].m[1][1] -
jacobianMatrices[voxel].m[1][0] * jacobianMatrices[voxel].m[0][1];
}
}
/* *************************************************************** */
/* *************************************************************** */
int reg_defField_GetJacobianMatFromFlowField(mat33* jacobianMatrices,
nifti_image* flowFieldImage
)
{
switch(flowFieldImage->datatype)
{
case NIFTI_TYPE_FLOAT32:
reg_defField_GetJacobianMatFromFlowField_core<float>
(jacobianMatrices,flowFieldImage);
break;
case NIFTI_TYPE_FLOAT64:
reg_defField_GetJacobianMatFromFlowField_core<double>
(jacobianMatrices,flowFieldImage);
break;
default:
reg_print_fct_error("reg_defField_GetJacobianMatFromFlowField");
reg_print_msg_error("Unsupported data type");
reg_exit();
break;
}
return 0;
}
/* *************************************************************** */
int reg_spline_GetJacobianMatFromVelocityGrid(mat33* jacobianMatrices,
nifti_image* velocityGridImage,
nifti_image* referenceImage)
{
// A new image is created to store the flow field
nifti_image *flowFieldImage=nifti_copy_nim_info(referenceImage);
flowFieldImage->datatype=velocityGridImage->datatype;
flowFieldImage->nbyper=velocityGridImage->nbyper;
flowFieldImage->ndim=flowFieldImage->dim[0]=5;
flowFieldImage->nt=flowFieldImage->dim[4]=1;
flowFieldImage->nu=flowFieldImage->dim[5]=referenceImage->nz>1?3:2;
flowFieldImage->nvox=(size_t)flowFieldImage->nx*flowFieldImage->ny*
flowFieldImage->nz*flowFieldImage->nt*flowFieldImage->nu;
flowFieldImage->data=(void *)malloc(flowFieldImage->nvox*flowFieldImage->nbyper);
// The velocity grid image is first converted into a flow field
reg_spline_getFlowFieldFromVelocityGrid(velocityGridImage,
flowFieldImage);
reg_defField_GetJacobianMatFromFlowField(jacobianMatrices,
flowFieldImage);
nifti_image_free(flowFieldImage);
return 0;
}
/* *************************************************************** */
int reg_defField_GetJacobianDetFromFlowField(nifti_image* jacobianDetImage,
nifti_image* flowFieldImage
)
{
// create an array of mat33
size_t voxelNumber=jacobianDetImage->nx*jacobianDetImage->ny*jacobianDetImage->nz;
mat33 *jacobianMatrices=(mat33 *)malloc(voxelNumber*sizeof(mat33));
// Compute the Jacobian matrice array
reg_defField_GetJacobianMatFromFlowField(jacobianMatrices,
flowFieldImage);
// Compute and store all determinant
switch(jacobianDetImage->datatype)
{
case NIFTI_TYPE_FLOAT32:
reg_getDetArrayFromMatArray<float>
(jacobianDetImage,jacobianMatrices);
break;
case NIFTI_TYPE_FLOAT64:
reg_getDetArrayFromMatArray<double>
(jacobianDetImage,jacobianMatrices);
break;
default:
reg_print_fct_error("reg_defField_GetJacobianDetFromFlowField");
reg_print_msg_error("Unsupported data type");
break;
}
free(jacobianMatrices);
return 0;
}
/* *************************************************************** */
int reg_spline_GetJacobianDetFromVelocityGrid(nifti_image* jacobianDetImage,
nifti_image* velocityGridImage)
{
// A new image is created to store the flow field
nifti_image *flowFieldImage=nifti_copy_nim_info(jacobianDetImage);
flowFieldImage->datatype=velocityGridImage->datatype;
flowFieldImage->nbyper=velocityGridImage->nbyper;
flowFieldImage->ndim=flowFieldImage->dim[0]=5;
flowFieldImage->nt=flowFieldImage->dim[4]=1;
flowFieldImage->nu=flowFieldImage->dim[5]=jacobianDetImage->nz>1?3:2;
flowFieldImage->nvox=(size_t)flowFieldImage->nx*flowFieldImage->ny*
flowFieldImage->nz*flowFieldImage->nt*flowFieldImage->nu;
flowFieldImage->data=(void *)malloc(flowFieldImage->nvox*flowFieldImage->nbyper);
// The velocity grid image is first converted into a flow field
reg_spline_getFlowFieldFromVelocityGrid(velocityGridImage,
flowFieldImage);
reg_defField_GetJacobianDetFromFlowField(jacobianDetImage,
flowFieldImage);
nifti_image_free(flowFieldImage);
return 0;
}
/* *************************************************************** */
/* *************************************************************** */
| [
"orco@kyshtym"
] | orco@kyshtym |
f893ad669e01c758d81290991aaac1d1ca6ca30e | f01194e047dd38a8568cddf9565e54411fd17596 | /Practice Codes/vpl2+bc.cpp | 6594e1c831dfa17302a71fff9461e8833e44cb2d | [] | no_license | 2012ankitkmr/My-works | 118df8cf651785d19b962ee9afc2278d12d5a69a | 910e5425e2ded2fb59a3613d33d3468dc1be1158 | refs/heads/master | 2020-04-05T23:08:29.182573 | 2017-02-24T12:19:03 | 2017-02-24T12:19:03 | 52,659,326 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,422 | cpp | #include<bits/stdc++.h>
using namespace std;
char ank[6145][6145];
char update(char s)
{
if(s=='*')
return s;
char p;
p='1';
if(s=='-')
return p;
p='2';
if(s=='1')
return p;
p='3';
if(s=='2')
return p;
p='4';
if(s=='3')
return p;
p='5';
if(s=='4')
return p;
p='6';
if(s=='5')
return p;
p='7';
if(s=='6')
return p;
p='8';
if(s=='7')
return p;
return s;
}
int main()
{
int t;
long int n,m,k,x,y;
for(scanf("%d",&t);t--;)
{
memset(ank,'-',sizeof(ank));
scanf("%ld%ld%ld",&n,&m,&k);
while(k--)
{
scanf("%ld%ld",&x,&y);
ank[x][y]='*';
if(x-1>=0&&y-1>=0)
{
// printf("here1\n");
ank[x-1][y-1]=update(ank[x-1][y-1]);
}
if(x-1>=0)
{// printf("here2\n");
ank[x-1][y]=update(ank[x-1][y]);
}
if(y-1>=0)
{
//printf("here3\n");
ank[x][y-1]=update(ank[x][y-1]);
}
if(y+1<=m-1)
{
ank[x][y+1]=update(ank[x][y+1]);
// printf("here4\n");
}
if(y+1<=m-1&&x+1<=n-1)
{ //printf("here5\n");
ank[x+1][y+1]=update(ank[x+1][y+1]);
}
if(x+1<=n-1)
{ //printf("here6\n");
ank[x+1][y]=update(ank[x+1][y]);
}
if(x-1>=0&&y+1<=m-1)
{ //printf("here7\n");
ank[x-1][y+1]=update(ank[x-1][y+1]);
}
if(y-1>=0&&x+1<=n-1)
{ //printf("here8\n");
ank[x+1][y-1]=update(ank[x+1][y-1]);
}
}
long int i,j;
for(i=0;i<n;i++)
{
for(j=0;j<m;j++)
printf("%c",ank[i][j]);
printf("\n");
}
}
return 0;
}
| [
"[email protected]"
] | |
6b493076fe57bd2d56768702db5b17f95d8e8811 | 2b09bb1f59f9617eeee40a5e147c341d101dc60b | /VehicleRootingProblem/SolverGreedy.h | 0a89f77621bfd49a27263d3936de86c18ec98101 | [] | no_license | Alexandr-TS/DynamicCVRPTW | bdc43ee2bdc03e834d98fdec880f808c3fab89d6 | 632aca123867166013a3c1b83421547720464ce7 | refs/heads/master | 2021-03-03T01:36:11.017353 | 2020-06-13T09:18:09 | 2020-06-13T09:18:09 | 245,922,396 | 0 | 2 | null | 2020-06-13T09:18:10 | 2020-03-09T02:01:02 | C++ | UTF-8 | C++ | false | false | 179 | h | #pragma once
#include "Utils.h"
class SolverGreedy: public Solver {
public:
static ProblemSolution Run(InputData input, ProblemMode problemMode, std::vector<double> args);
};
| [
"[email protected]"
] | |
3f43e4bb58a777d52601791f92b2d1015aada334 | 72af01f2c925394dc94a713297ee5987057f8d42 | /Theory/weuq-beam-coupling/Example/circularCylinder/constant/polyMesh/owner | 8d2d1a07d7f0ca9a51bce49d0bb4ab7584b260ba | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | NHERI-SimCenter/WE-UQ | cc6613984b8dd2e7edcef32c5a997044ea2da321 | fbeeef4500a774943b408960cb753acf02c2566d | refs/heads/master | 2023-08-24T00:13:00.727665 | 2023-08-23T16:09:33 | 2023-08-23T16:09:33 | 158,442,519 | 8 | 18 | NOASSERTION | 2023-08-23T16:09:35 | 2018-11-20T19:43:35 | C++ | UTF-8 | C++ | false | false | 1,160,454 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class labelList;
note "nPoints:71280 nCells:64000 nFaces:199200 nInternalFaces:184800";
location "constant/polyMesh";
object owner;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
199200
(
0
0
0
0
1
1
1
2
2
2
3
3
3
4
4
4
5
5
5
6
6
6
7
7
7
8
8
8
9
9
9
10
10
10
11
11
11
12
12
12
13
13
13
14
14
14
15
15
15
16
16
16
17
17
17
18
18
18
19
19
19
20
20
20
21
21
21
22
22
22
22
23
23
23
24
24
24
25
25
25
26
26
26
27
27
27
28
28
28
29
29
29
30
30
30
31
31
31
32
32
32
33
33
33
34
34
34
35
35
35
36
36
36
37
37
37
38
38
38
39
39
39
40
40
40
41
41
41
42
42
42
43
43
43
44
44
44
44
45
45
45
46
46
46
47
47
47
48
48
48
49
49
49
50
50
50
51
51
51
52
52
52
53
53
53
54
54
54
55
55
55
56
56
56
57
57
57
58
58
58
59
59
59
60
60
60
61
61
61
62
62
62
63
63
63
64
64
64
65
65
65
66
66
66
66
67
67
67
68
68
68
69
69
69
70
70
70
71
71
71
72
72
72
73
73
73
74
74
74
75
75
75
76
76
76
77
77
77
78
78
78
79
79
79
80
80
80
81
81
81
82
82
82
83
83
83
84
84
84
85
85
85
86
86
86
87
87
87
88
88
88
88
89
89
89
90
90
90
91
91
91
92
92
92
93
93
93
94
94
94
95
95
95
96
96
96
97
97
97
98
98
98
99
99
99
100
100
100
101
101
101
102
102
102
103
103
103
104
104
104
105
105
105
106
106
106
107
107
107
108
108
108
109
109
109
110
110
110
110
111
111
111
112
112
112
113
113
113
114
114
114
115
115
115
116
116
116
117
117
117
118
118
118
119
119
119
120
120
120
121
121
121
122
122
122
123
123
123
124
124
124
125
125
125
126
126
126
127
127
127
128
128
128
129
129
129
130
130
130
131
131
131
132
132
132
132
133
133
133
134
134
134
135
135
135
136
136
136
137
137
137
138
138
138
139
139
139
140
140
140
141
141
141
142
142
142
143
143
143
144
144
144
145
145
145
146
146
146
147
147
147
148
148
148
149
149
149
150
150
150
151
151
151
152
152
152
153
153
153
154
154
154
154
155
155
155
156
156
156
157
157
157
158
158
158
159
159
159
160
160
160
161
161
161
162
162
162
163
163
163
164
164
164
165
165
165
166
166
166
167
167
167
168
168
168
169
169
169
170
170
170
171
171
171
172
172
172
173
173
173
174
174
174
175
175
175
176
176
176
176
177
177
177
178
178
178
179
179
179
180
180
180
181
181
181
182
182
182
183
183
183
184
184
184
185
185
185
186
186
186
187
187
187
188
188
188
189
189
189
190
190
190
191
191
191
192
192
192
193
193
193
194
194
194
195
195
195
196
196
196
197
197
197
198
198
198
199
199
200
200
201
201
202
202
203
203
204
204
205
205
206
206
207
207
208
208
209
209
210
210
211
211
212
212
213
213
214
214
215
215
216
216
217
217
218
218
219
219
220
220
220
220
221
221
221
222
222
222
223
223
223
224
224
224
225
225
225
226
226
226
227
227
227
228
228
228
229
229
229
230
230
230
231
231
231
232
232
232
233
233
233
234
234
234
235
235
235
236
236
236
237
237
237
238
238
238
239
239
239
240
240
240
241
241
241
242
242
242
242
243
243
243
244
244
244
245
245
245
246
246
246
247
247
247
248
248
248
249
249
249
250
250
250
251
251
251
252
252
252
253
253
253
254
254
254
255
255
255
256
256
256
257
257
257
258
258
258
259
259
259
260
260
260
261
261
261
262
262
262
263
263
263
264
264
264
264
265
265
265
266
266
266
267
267
267
268
268
268
269
269
269
270
270
270
271
271
271
272
272
272
273
273
273
274
274
274
275
275
275
276
276
276
277
277
277
278
278
278
279
279
279
280
280
280
281
281
281
282
282
282
283
283
283
284
284
284
285
285
285
286
286
286
286
287
287
287
288
288
288
289
289
289
290
290
290
291
291
291
292
292
292
293
293
293
294
294
294
295
295
295
296
296
296
297
297
297
298
298
298
299
299
299
300
300
300
301
301
301
302
302
302
303
303
303
304
304
304
305
305
305
306
306
306
307
307
307
308
308
308
308
309
309
309
310
310
310
311
311
311
312
312
312
313
313
313
314
314
314
315
315
315
316
316
316
317
317
317
318
318
318
319
319
319
320
320
320
321
321
321
322
322
322
323
323
323
324
324
324
325
325
325
326
326
326
327
327
327
328
328
328
329
329
329
330
330
330
330
331
331
331
332
332
332
333
333
333
334
334
334
335
335
335
336
336
336
337
337
337
338
338
338
339
339
339
340
340
340
341
341
341
342
342
342
343
343
343
344
344
344
345
345
345
346
346
346
347
347
347
348
348
348
349
349
349
350
350
350
351
351
351
352
352
352
352
353
353
353
354
354
354
355
355
355
356
356
356
357
357
357
358
358
358
359
359
359
360
360
360
361
361
361
362
362
362
363
363
363
364
364
364
365
365
365
366
366
366
367
367
367
368
368
368
369
369
369
370
370
370
371
371
371
372
372
372
373
373
373
374
374
374
374
375
375
375
376
376
376
377
377
377
378
378
378
379
379
379
380
380
380
381
381
381
382
382
382
383
383
383
384
384
384
385
385
385
386
386
386
387
387
387
388
388
388
389
389
389
390
390
390
391
391
391
392
392
392
393
393
393
394
394
394
395
395
395
396
396
396
396
397
397
397
398
398
398
399
399
399
400
400
400
401
401
401
402
402
402
403
403
403
404
404
404
405
405
405
406
406
406
407
407
407
408
408
408
409
409
409
410
410
410
411
411
411
412
412
412
413
413
413
414
414
414
415
415
415
416
416
416
417
417
417
418
418
418
419
419
420
420
421
421
422
422
423
423
424
424
425
425
426
426
427
427
428
428
429
429
430
430
431
431
432
432
433
433
434
434
435
435
436
436
437
437
438
438
439
439
440
440
440
440
441
441
441
442
442
442
443
443
443
444
444
444
445
445
445
446
446
446
447
447
447
448
448
448
449
449
449
450
450
450
451
451
451
452
452
452
453
453
453
454
454
454
455
455
455
456
456
456
457
457
457
458
458
458
459
459
459
460
460
460
461
461
461
462
462
462
462
463
463
463
464
464
464
465
465
465
466
466
466
467
467
467
468
468
468
469
469
469
470
470
470
471
471
471
472
472
472
473
473
473
474
474
474
475
475
475
476
476
476
477
477
477
478
478
478
479
479
479
480
480
480
481
481
481
482
482
482
483
483
483
484
484
484
484
485
485
485
486
486
486
487
487
487
488
488
488
489
489
489
490
490
490
491
491
491
492
492
492
493
493
493
494
494
494
495
495
495
496
496
496
497
497
497
498
498
498
499
499
499
500
500
500
501
501
501
502
502
502
503
503
503
504
504
504
505
505
505
506
506
506
506
507
507
507
508
508
508
509
509
509
510
510
510
511
511
511
512
512
512
513
513
513
514
514
514
515
515
515
516
516
516
517
517
517
518
518
518
519
519
519
520
520
520
521
521
521
522
522
522
523
523
523
524
524
524
525
525
525
526
526
526
527
527
527
528
528
528
528
529
529
529
530
530
530
531
531
531
532
532
532
533
533
533
534
534
534
535
535
535
536
536
536
537
537
537
538
538
538
539
539
539
540
540
540
541
541
541
542
542
542
543
543
543
544
544
544
545
545
545
546
546
546
547
547
547
548
548
548
549
549
549
550
550
550
550
551
551
551
552
552
552
553
553
553
554
554
554
555
555
555
556
556
556
557
557
557
558
558
558
559
559
559
560
560
560
561
561
561
562
562
562
563
563
563
564
564
564
565
565
565
566
566
566
567
567
567
568
568
568
569
569
569
570
570
570
571
571
571
572
572
572
572
573
573
573
574
574
574
575
575
575
576
576
576
577
577
577
578
578
578
579
579
579
580
580
580
581
581
581
582
582
582
583
583
583
584
584
584
585
585
585
586
586
586
587
587
587
588
588
588
589
589
589
590
590
590
591
591
591
592
592
592
593
593
593
594
594
594
594
595
595
595
596
596
596
597
597
597
598
598
598
599
599
599
600
600
600
601
601
601
602
602
602
603
603
603
604
604
604
605
605
605
606
606
606
607
607
607
608
608
608
609
609
609
610
610
610
611
611
611
612
612
612
613
613
613
614
614
614
615
615
615
616
616
616
616
617
617
617
618
618
618
619
619
619
620
620
620
621
621
621
622
622
622
623
623
623
624
624
624
625
625
625
626
626
626
627
627
627
628
628
628
629
629
629
630
630
630
631
631
631
632
632
632
633
633
633
634
634
634
635
635
635
636
636
636
637
637
637
638
638
638
639
639
640
640
641
641
642
642
643
643
644
644
645
645
646
646
647
647
648
648
649
649
650
650
651
651
652
652
653
653
654
654
655
655
656
656
657
657
658
658
659
659
660
660
660
660
661
661
661
662
662
662
663
663
663
664
664
664
665
665
665
666
666
666
667
667
667
668
668
668
669
669
669
670
670
670
671
671
671
672
672
672
673
673
673
674
674
674
675
675
675
676
676
676
677
677
677
678
678
678
679
679
679
680
680
680
681
681
681
682
682
682
682
683
683
683
684
684
684
685
685
685
686
686
686
687
687
687
688
688
688
689
689
689
690
690
690
691
691
691
692
692
692
693
693
693
694
694
694
695
695
695
696
696
696
697
697
697
698
698
698
699
699
699
700
700
700
701
701
701
702
702
702
703
703
703
704
704
704
704
705
705
705
706
706
706
707
707
707
708
708
708
709
709
709
710
710
710
711
711
711
712
712
712
713
713
713
714
714
714
715
715
715
716
716
716
717
717
717
718
718
718
719
719
719
720
720
720
721
721
721
722
722
722
723
723
723
724
724
724
725
725
725
726
726
726
726
727
727
727
728
728
728
729
729
729
730
730
730
731
731
731
732
732
732
733
733
733
734
734
734
735
735
735
736
736
736
737
737
737
738
738
738
739
739
739
740
740
740
741
741
741
742
742
742
743
743
743
744
744
744
745
745
745
746
746
746
747
747
747
748
748
748
748
749
749
749
750
750
750
751
751
751
752
752
752
753
753
753
754
754
754
755
755
755
756
756
756
757
757
757
758
758
758
759
759
759
760
760
760
761
761
761
762
762
762
763
763
763
764
764
764
765
765
765
766
766
766
767
767
767
768
768
768
769
769
769
770
770
770
770
771
771
771
772
772
772
773
773
773
774
774
774
775
775
775
776
776
776
777
777
777
778
778
778
779
779
779
780
780
780
781
781
781
782
782
782
783
783
783
784
784
784
785
785
785
786
786
786
787
787
787
788
788
788
789
789
789
790
790
790
791
791
791
792
792
792
792
793
793
793
794
794
794
795
795
795
796
796
796
797
797
797
798
798
798
799
799
799
800
800
800
801
801
801
802
802
802
803
803
803
804
804
804
805
805
805
806
806
806
807
807
807
808
808
808
809
809
809
810
810
810
811
811
811
812
812
812
813
813
813
814
814
814
814
815
815
815
816
816
816
817
817
817
818
818
818
819
819
819
820
820
820
821
821
821
822
822
822
823
823
823
824
824
824
825
825
825
826
826
826
827
827
827
828
828
828
829
829
829
830
830
830
831
831
831
832
832
832
833
833
833
834
834
834
835
835
835
836
836
836
836
837
837
837
838
838
838
839
839
839
840
840
840
841
841
841
842
842
842
843
843
843
844
844
844
845
845
845
846
846
846
847
847
847
848
848
848
849
849
849
850
850
850
851
851
851
852
852
852
853
853
853
854
854
854
855
855
855
856
856
856
857
857
857
858
858
858
859
859
860
860
861
861
862
862
863
863
864
864
865
865
866
866
867
867
868
868
869
869
870
870
871
871
872
872
873
873
874
874
875
875
876
876
877
877
878
878
879
879
880
880
880
880
881
881
881
882
882
882
883
883
883
884
884
884
885
885
885
886
886
886
887
887
887
888
888
888
889
889
889
890
890
890
891
891
891
892
892
892
893
893
893
894
894
894
895
895
895
896
896
896
897
897
897
898
898
898
899
899
899
900
900
900
901
901
901
902
902
902
902
903
903
903
904
904
904
905
905
905
906
906
906
907
907
907
908
908
908
909
909
909
910
910
910
911
911
911
912
912
912
913
913
913
914
914
914
915
915
915
916
916
916
917
917
917
918
918
918
919
919
919
920
920
920
921
921
921
922
922
922
923
923
923
924
924
924
924
925
925
925
926
926
926
927
927
927
928
928
928
929
929
929
930
930
930
931
931
931
932
932
932
933
933
933
934
934
934
935
935
935
936
936
936
937
937
937
938
938
938
939
939
939
940
940
940
941
941
941
942
942
942
943
943
943
944
944
944
945
945
945
946
946
946
946
947
947
947
948
948
948
949
949
949
950
950
950
951
951
951
952
952
952
953
953
953
954
954
954
955
955
955
956
956
956
957
957
957
958
958
958
959
959
959
960
960
960
961
961
961
962
962
962
963
963
963
964
964
964
965
965
965
966
966
966
967
967
967
968
968
968
968
969
969
969
970
970
970
971
971
971
972
972
972
973
973
973
974
974
974
975
975
975
976
976
976
977
977
977
978
978
978
979
979
979
980
980
980
981
981
981
982
982
982
983
983
983
984
984
984
985
985
985
986
986
986
987
987
987
988
988
988
989
989
989
990
990
990
990
991
991
991
992
992
992
993
993
993
994
994
994
995
995
995
996
996
996
997
997
997
998
998
998
999
999
999
1000
1000
1000
1001
1001
1001
1002
1002
1002
1003
1003
1003
1004
1004
1004
1005
1005
1005
1006
1006
1006
1007
1007
1007
1008
1008
1008
1009
1009
1009
1010
1010
1010
1011
1011
1011
1012
1012
1012
1012
1013
1013
1013
1014
1014
1014
1015
1015
1015
1016
1016
1016
1017
1017
1017
1018
1018
1018
1019
1019
1019
1020
1020
1020
1021
1021
1021
1022
1022
1022
1023
1023
1023
1024
1024
1024
1025
1025
1025
1026
1026
1026
1027
1027
1027
1028
1028
1028
1029
1029
1029
1030
1030
1030
1031
1031
1031
1032
1032
1032
1033
1033
1033
1034
1034
1034
1034
1035
1035
1035
1036
1036
1036
1037
1037
1037
1038
1038
1038
1039
1039
1039
1040
1040
1040
1041
1041
1041
1042
1042
1042
1043
1043
1043
1044
1044
1044
1045
1045
1045
1046
1046
1046
1047
1047
1047
1048
1048
1048
1049
1049
1049
1050
1050
1050
1051
1051
1051
1052
1052
1052
1053
1053
1053
1054
1054
1054
1055
1055
1055
1056
1056
1056
1056
1057
1057
1057
1058
1058
1058
1059
1059
1059
1060
1060
1060
1061
1061
1061
1062
1062
1062
1063
1063
1063
1064
1064
1064
1065
1065
1065
1066
1066
1066
1067
1067
1067
1068
1068
1068
1069
1069
1069
1070
1070
1070
1071
1071
1071
1072
1072
1072
1073
1073
1073
1074
1074
1074
1075
1075
1075
1076
1076
1076
1077
1077
1077
1078
1078
1078
1079
1079
1080
1080
1081
1081
1082
1082
1083
1083
1084
1084
1085
1085
1086
1086
1087
1087
1088
1088
1089
1089
1090
1090
1091
1091
1092
1092
1093
1093
1094
1094
1095
1095
1096
1096
1097
1097
1098
1098
1099
1099
1100
1100
1100
1100
1101
1101
1101
1102
1102
1102
1103
1103
1103
1104
1104
1104
1105
1105
1105
1106
1106
1106
1107
1107
1107
1108
1108
1108
1109
1109
1109
1110
1110
1110
1111
1111
1111
1112
1112
1112
1113
1113
1113
1114
1114
1114
1115
1115
1115
1116
1116
1116
1117
1117
1117
1118
1118
1118
1119
1119
1119
1120
1120
1120
1121
1121
1121
1122
1122
1122
1122
1123
1123
1123
1124
1124
1124
1125
1125
1125
1126
1126
1126
1127
1127
1127
1128
1128
1128
1129
1129
1129
1130
1130
1130
1131
1131
1131
1132
1132
1132
1133
1133
1133
1134
1134
1134
1135
1135
1135
1136
1136
1136
1137
1137
1137
1138
1138
1138
1139
1139
1139
1140
1140
1140
1141
1141
1141
1142
1142
1142
1143
1143
1143
1144
1144
1144
1144
1145
1145
1145
1146
1146
1146
1147
1147
1147
1148
1148
1148
1149
1149
1149
1150
1150
1150
1151
1151
1151
1152
1152
1152
1153
1153
1153
1154
1154
1154
1155
1155
1155
1156
1156
1156
1157
1157
1157
1158
1158
1158
1159
1159
1159
1160
1160
1160
1161
1161
1161
1162
1162
1162
1163
1163
1163
1164
1164
1164
1165
1165
1165
1166
1166
1166
1166
1167
1167
1167
1168
1168
1168
1169
1169
1169
1170
1170
1170
1171
1171
1171
1172
1172
1172
1173
1173
1173
1174
1174
1174
1175
1175
1175
1176
1176
1176
1177
1177
1177
1178
1178
1178
1179
1179
1179
1180
1180
1180
1181
1181
1181
1182
1182
1182
1183
1183
1183
1184
1184
1184
1185
1185
1185
1186
1186
1186
1187
1187
1187
1188
1188
1188
1188
1189
1189
1189
1190
1190
1190
1191
1191
1191
1192
1192
1192
1193
1193
1193
1194
1194
1194
1195
1195
1195
1196
1196
1196
1197
1197
1197
1198
1198
1198
1199
1199
1199
1200
1200
1200
1201
1201
1201
1202
1202
1202
1203
1203
1203
1204
1204
1204
1205
1205
1205
1206
1206
1206
1207
1207
1207
1208
1208
1208
1209
1209
1209
1210
1210
1210
1210
1211
1211
1211
1212
1212
1212
1213
1213
1213
1214
1214
1214
1215
1215
1215
1216
1216
1216
1217
1217
1217
1218
1218
1218
1219
1219
1219
1220
1220
1220
1221
1221
1221
1222
1222
1222
1223
1223
1223
1224
1224
1224
1225
1225
1225
1226
1226
1226
1227
1227
1227
1228
1228
1228
1229
1229
1229
1230
1230
1230
1231
1231
1231
1232
1232
1232
1232
1233
1233
1233
1234
1234
1234
1235
1235
1235
1236
1236
1236
1237
1237
1237
1238
1238
1238
1239
1239
1239
1240
1240
1240
1241
1241
1241
1242
1242
1242
1243
1243
1243
1244
1244
1244
1245
1245
1245
1246
1246
1246
1247
1247
1247
1248
1248
1248
1249
1249
1249
1250
1250
1250
1251
1251
1251
1252
1252
1252
1253
1253
1253
1254
1254
1254
1254
1255
1255
1255
1256
1256
1256
1257
1257
1257
1258
1258
1258
1259
1259
1259
1260
1260
1260
1261
1261
1261
1262
1262
1262
1263
1263
1263
1264
1264
1264
1265
1265
1265
1266
1266
1266
1267
1267
1267
1268
1268
1268
1269
1269
1269
1270
1270
1270
1271
1271
1271
1272
1272
1272
1273
1273
1273
1274
1274
1274
1275
1275
1275
1276
1276
1276
1276
1277
1277
1277
1278
1278
1278
1279
1279
1279
1280
1280
1280
1281
1281
1281
1282
1282
1282
1283
1283
1283
1284
1284
1284
1285
1285
1285
1286
1286
1286
1287
1287
1287
1288
1288
1288
1289
1289
1289
1290
1290
1290
1291
1291
1291
1292
1292
1292
1293
1293
1293
1294
1294
1294
1295
1295
1295
1296
1296
1296
1297
1297
1297
1298
1298
1298
1299
1299
1300
1300
1301
1301
1302
1302
1303
1303
1304
1304
1305
1305
1306
1306
1307
1307
1308
1308
1309
1309
1310
1310
1311
1311
1312
1312
1313
1313
1314
1314
1315
1315
1316
1316
1317
1317
1318
1318
1319
1319
1320
1320
1320
1320
1321
1321
1321
1322
1322
1322
1323
1323
1323
1324
1324
1324
1325
1325
1325
1326
1326
1326
1327
1327
1327
1328
1328
1328
1329
1329
1329
1330
1330
1330
1331
1331
1331
1332
1332
1332
1333
1333
1333
1334
1334
1334
1335
1335
1335
1336
1336
1336
1337
1337
1337
1338
1338
1338
1339
1339
1339
1340
1340
1340
1341
1341
1341
1342
1342
1342
1342
1343
1343
1343
1344
1344
1344
1345
1345
1345
1346
1346
1346
1347
1347
1347
1348
1348
1348
1349
1349
1349
1350
1350
1350
1351
1351
1351
1352
1352
1352
1353
1353
1353
1354
1354
1354
1355
1355
1355
1356
1356
1356
1357
1357
1357
1358
1358
1358
1359
1359
1359
1360
1360
1360
1361
1361
1361
1362
1362
1362
1363
1363
1363
1364
1364
1364
1364
1365
1365
1365
1366
1366
1366
1367
1367
1367
1368
1368
1368
1369
1369
1369
1370
1370
1370
1371
1371
1371
1372
1372
1372
1373
1373
1373
1374
1374
1374
1375
1375
1375
1376
1376
1376
1377
1377
1377
1378
1378
1378
1379
1379
1379
1380
1380
1380
1381
1381
1381
1382
1382
1382
1383
1383
1383
1384
1384
1384
1385
1385
1385
1386
1386
1386
1386
1387
1387
1387
1388
1388
1388
1389
1389
1389
1390
1390
1390
1391
1391
1391
1392
1392
1392
1393
1393
1393
1394
1394
1394
1395
1395
1395
1396
1396
1396
1397
1397
1397
1398
1398
1398
1399
1399
1399
1400
1400
1400
1401
1401
1401
1402
1402
1402
1403
1403
1403
1404
1404
1404
1405
1405
1405
1406
1406
1406
1407
1407
1407
1408
1408
1408
1408
1409
1409
1409
1410
1410
1410
1411
1411
1411
1412
1412
1412
1413
1413
1413
1414
1414
1414
1415
1415
1415
1416
1416
1416
1417
1417
1417
1418
1418
1418
1419
1419
1419
1420
1420
1420
1421
1421
1421
1422
1422
1422
1423
1423
1423
1424
1424
1424
1425
1425
1425
1426
1426
1426
1427
1427
1427
1428
1428
1428
1429
1429
1429
1430
1430
1430
1430
1431
1431
1431
1432
1432
1432
1433
1433
1433
1434
1434
1434
1435
1435
1435
1436
1436
1436
1437
1437
1437
1438
1438
1438
1439
1439
1439
1440
1440
1440
1441
1441
1441
1442
1442
1442
1443
1443
1443
1444
1444
1444
1445
1445
1445
1446
1446
1446
1447
1447
1447
1448
1448
1448
1449
1449
1449
1450
1450
1450
1451
1451
1451
1452
1452
1452
1452
1453
1453
1453
1454
1454
1454
1455
1455
1455
1456
1456
1456
1457
1457
1457
1458
1458
1458
1459
1459
1459
1460
1460
1460
1461
1461
1461
1462
1462
1462
1463
1463
1463
1464
1464
1464
1465
1465
1465
1466
1466
1466
1467
1467
1467
1468
1468
1468
1469
1469
1469
1470
1470
1470
1471
1471
1471
1472
1472
1472
1473
1473
1473
1474
1474
1474
1474
1475
1475
1475
1476
1476
1476
1477
1477
1477
1478
1478
1478
1479
1479
1479
1480
1480
1480
1481
1481
1481
1482
1482
1482
1483
1483
1483
1484
1484
1484
1485
1485
1485
1486
1486
1486
1487
1487
1487
1488
1488
1488
1489
1489
1489
1490
1490
1490
1491
1491
1491
1492
1492
1492
1493
1493
1493
1494
1494
1494
1495
1495
1495
1496
1496
1496
1496
1497
1497
1497
1498
1498
1498
1499
1499
1499
1500
1500
1500
1501
1501
1501
1502
1502
1502
1503
1503
1503
1504
1504
1504
1505
1505
1505
1506
1506
1506
1507
1507
1507
1508
1508
1508
1509
1509
1509
1510
1510
1510
1511
1511
1511
1512
1512
1512
1513
1513
1513
1514
1514
1514
1515
1515
1515
1516
1516
1516
1517
1517
1517
1518
1518
1518
1519
1519
1520
1520
1521
1521
1522
1522
1523
1523
1524
1524
1525
1525
1526
1526
1527
1527
1528
1528
1529
1529
1530
1530
1531
1531
1532
1532
1533
1533
1534
1534
1535
1535
1536
1536
1537
1537
1538
1538
1539
1539
1540
1540
1540
1540
1541
1541
1541
1542
1542
1542
1543
1543
1543
1544
1544
1544
1545
1545
1545
1546
1546
1546
1547
1547
1547
1548
1548
1548
1549
1549
1549
1550
1550
1550
1551
1551
1551
1552
1552
1552
1553
1553
1553
1554
1554
1554
1555
1555
1555
1556
1556
1556
1557
1557
1557
1558
1558
1558
1559
1559
1559
1560
1560
1560
1561
1561
1561
1562
1562
1562
1562
1563
1563
1563
1564
1564
1564
1565
1565
1565
1566
1566
1566
1567
1567
1567
1568
1568
1568
1569
1569
1569
1570
1570
1570
1571
1571
1571
1572
1572
1572
1573
1573
1573
1574
1574
1574
1575
1575
1575
1576
1576
1576
1577
1577
1577
1578
1578
1578
1579
1579
1579
1580
1580
1580
1581
1581
1581
1582
1582
1582
1583
1583
1583
1584
1584
1584
1584
1585
1585
1585
1586
1586
1586
1587
1587
1587
1588
1588
1588
1589
1589
1589
1590
1590
1590
1591
1591
1591
1592
1592
1592
1593
1593
1593
1594
1594
1594
1595
1595
1595
1596
1596
1596
1597
1597
1597
1598
1598
1598
1599
1599
1599
1600
1600
1600
1601
1601
1601
1602
1602
1602
1603
1603
1603
1604
1604
1604
1605
1605
1605
1606
1606
1606
1606
1607
1607
1607
1608
1608
1608
1609
1609
1609
1610
1610
1610
1611
1611
1611
1612
1612
1612
1613
1613
1613
1614
1614
1614
1615
1615
1615
1616
1616
1616
1617
1617
1617
1618
1618
1618
1619
1619
1619
1620
1620
1620
1621
1621
1621
1622
1622
1622
1623
1623
1623
1624
1624
1624
1625
1625
1625
1626
1626
1626
1627
1627
1627
1628
1628
1628
1628
1629
1629
1629
1630
1630
1630
1631
1631
1631
1632
1632
1632
1633
1633
1633
1634
1634
1634
1635
1635
1635
1636
1636
1636
1637
1637
1637
1638
1638
1638
1639
1639
1639
1640
1640
1640
1641
1641
1641
1642
1642
1642
1643
1643
1643
1644
1644
1644
1645
1645
1645
1646
1646
1646
1647
1647
1647
1648
1648
1648
1649
1649
1649
1650
1650
1650
1650
1651
1651
1651
1652
1652
1652
1653
1653
1653
1654
1654
1654
1655
1655
1655
1656
1656
1656
1657
1657
1657
1658
1658
1658
1659
1659
1659
1660
1660
1660
1661
1661
1661
1662
1662
1662
1663
1663
1663
1664
1664
1664
1665
1665
1665
1666
1666
1666
1667
1667
1667
1668
1668
1668
1669
1669
1669
1670
1670
1670
1671
1671
1671
1672
1672
1672
1672
1673
1673
1673
1674
1674
1674
1675
1675
1675
1676
1676
1676
1677
1677
1677
1678
1678
1678
1679
1679
1679
1680
1680
1680
1681
1681
1681
1682
1682
1682
1683
1683
1683
1684
1684
1684
1685
1685
1685
1686
1686
1686
1687
1687
1687
1688
1688
1688
1689
1689
1689
1690
1690
1690
1691
1691
1691
1692
1692
1692
1693
1693
1693
1694
1694
1694
1694
1695
1695
1695
1696
1696
1696
1697
1697
1697
1698
1698
1698
1699
1699
1699
1700
1700
1700
1701
1701
1701
1702
1702
1702
1703
1703
1703
1704
1704
1704
1705
1705
1705
1706
1706
1706
1707
1707
1707
1708
1708
1708
1709
1709
1709
1710
1710
1710
1711
1711
1711
1712
1712
1712
1713
1713
1713
1714
1714
1714
1715
1715
1715
1716
1716
1716
1716
1717
1717
1717
1718
1718
1718
1719
1719
1719
1720
1720
1720
1721
1721
1721
1722
1722
1722
1723
1723
1723
1724
1724
1724
1725
1725
1725
1726
1726
1726
1727
1727
1727
1728
1728
1728
1729
1729
1729
1730
1730
1730
1731
1731
1731
1732
1732
1732
1733
1733
1733
1734
1734
1734
1735
1735
1735
1736
1736
1736
1737
1737
1737
1738
1738
1738
1739
1739
1740
1740
1741
1741
1742
1742
1743
1743
1744
1744
1745
1745
1746
1746
1747
1747
1748
1748
1749
1749
1750
1750
1751
1751
1752
1752
1753
1753
1754
1754
1755
1755
1756
1756
1757
1757
1758
1758
1759
1759
1760
1760
1760
1760
1761
1761
1761
1762
1762
1762
1763
1763
1763
1764
1764
1764
1765
1765
1765
1766
1766
1766
1767
1767
1767
1768
1768
1768
1769
1769
1769
1770
1770
1770
1771
1771
1771
1772
1772
1772
1773
1773
1773
1774
1774
1774
1775
1775
1775
1776
1776
1776
1777
1777
1777
1778
1778
1778
1779
1779
1779
1780
1780
1780
1781
1781
1781
1782
1782
1782
1782
1783
1783
1783
1784
1784
1784
1785
1785
1785
1786
1786
1786
1787
1787
1787
1788
1788
1788
1789
1789
1789
1790
1790
1790
1791
1791
1791
1792
1792
1792
1793
1793
1793
1794
1794
1794
1795
1795
1795
1796
1796
1796
1797
1797
1797
1798
1798
1798
1799
1799
1799
1800
1800
1800
1801
1801
1801
1802
1802
1802
1803
1803
1803
1804
1804
1804
1804
1805
1805
1805
1806
1806
1806
1807
1807
1807
1808
1808
1808
1809
1809
1809
1810
1810
1810
1811
1811
1811
1812
1812
1812
1813
1813
1813
1814
1814
1814
1815
1815
1815
1816
1816
1816
1817
1817
1817
1818
1818
1818
1819
1819
1819
1820
1820
1820
1821
1821
1821
1822
1822
1822
1823
1823
1823
1824
1824
1824
1825
1825
1825
1826
1826
1826
1826
1827
1827
1827
1828
1828
1828
1829
1829
1829
1830
1830
1830
1831
1831
1831
1832
1832
1832
1833
1833
1833
1834
1834
1834
1835
1835
1835
1836
1836
1836
1837
1837
1837
1838
1838
1838
1839
1839
1839
1840
1840
1840
1841
1841
1841
1842
1842
1842
1843
1843
1843
1844
1844
1844
1845
1845
1845
1846
1846
1846
1847
1847
1847
1848
1848
1848
1848
1849
1849
1849
1850
1850
1850
1851
1851
1851
1852
1852
1852
1853
1853
1853
1854
1854
1854
1855
1855
1855
1856
1856
1856
1857
1857
1857
1858
1858
1858
1859
1859
1859
1860
1860
1860
1861
1861
1861
1862
1862
1862
1863
1863
1863
1864
1864
1864
1865
1865
1865
1866
1866
1866
1867
1867
1867
1868
1868
1868
1869
1869
1869
1870
1870
1870
1870
1871
1871
1871
1872
1872
1872
1873
1873
1873
1874
1874
1874
1875
1875
1875
1876
1876
1876
1877
1877
1877
1878
1878
1878
1879
1879
1879
1880
1880
1880
1881
1881
1881
1882
1882
1882
1883
1883
1883
1884
1884
1884
1885
1885
1885
1886
1886
1886
1887
1887
1887
1888
1888
1888
1889
1889
1889
1890
1890
1890
1891
1891
1891
1892
1892
1892
1892
1893
1893
1893
1894
1894
1894
1895
1895
1895
1896
1896
1896
1897
1897
1897
1898
1898
1898
1899
1899
1899
1900
1900
1900
1901
1901
1901
1902
1902
1902
1903
1903
1903
1904
1904
1904
1905
1905
1905
1906
1906
1906
1907
1907
1907
1908
1908
1908
1909
1909
1909
1910
1910
1910
1911
1911
1911
1912
1912
1912
1913
1913
1913
1914
1914
1914
1914
1915
1915
1915
1916
1916
1916
1917
1917
1917
1918
1918
1918
1919
1919
1919
1920
1920
1920
1921
1921
1921
1922
1922
1922
1923
1923
1923
1924
1924
1924
1925
1925
1925
1926
1926
1926
1927
1927
1927
1928
1928
1928
1929
1929
1929
1930
1930
1930
1931
1931
1931
1932
1932
1932
1933
1933
1933
1934
1934
1934
1935
1935
1935
1936
1936
1936
1936
1937
1937
1937
1938
1938
1938
1939
1939
1939
1940
1940
1940
1941
1941
1941
1942
1942
1942
1943
1943
1943
1944
1944
1944
1945
1945
1945
1946
1946
1946
1947
1947
1947
1948
1948
1948
1949
1949
1949
1950
1950
1950
1951
1951
1951
1952
1952
1952
1953
1953
1953
1954
1954
1954
1955
1955
1955
1956
1956
1956
1957
1957
1957
1958
1958
1958
1959
1959
1960
1960
1961
1961
1962
1962
1963
1963
1964
1964
1965
1965
1966
1966
1967
1967
1968
1968
1969
1969
1970
1970
1971
1971
1972
1972
1973
1973
1974
1974
1975
1975
1976
1976
1977
1977
1978
1978
1979
1979
1980
1980
1980
1980
1981
1981
1981
1982
1982
1982
1983
1983
1983
1984
1984
1984
1985
1985
1985
1986
1986
1986
1987
1987
1987
1988
1988
1988
1989
1989
1989
1990
1990
1990
1991
1991
1991
1992
1992
1992
1993
1993
1993
1994
1994
1994
1995
1995
1995
1996
1996
1996
1997
1997
1997
1998
1998
1998
1999
1999
1999
2000
2000
2000
2001
2001
2001
2002
2002
2002
2002
2003
2003
2003
2004
2004
2004
2005
2005
2005
2006
2006
2006
2007
2007
2007
2008
2008
2008
2009
2009
2009
2010
2010
2010
2011
2011
2011
2012
2012
2012
2013
2013
2013
2014
2014
2014
2015
2015
2015
2016
2016
2016
2017
2017
2017
2018
2018
2018
2019
2019
2019
2020
2020
2020
2021
2021
2021
2022
2022
2022
2023
2023
2023
2024
2024
2024
2024
2025
2025
2025
2026
2026
2026
2027
2027
2027
2028
2028
2028
2029
2029
2029
2030
2030
2030
2031
2031
2031
2032
2032
2032
2033
2033
2033
2034
2034
2034
2035
2035
2035
2036
2036
2036
2037
2037
2037
2038
2038
2038
2039
2039
2039
2040
2040
2040
2041
2041
2041
2042
2042
2042
2043
2043
2043
2044
2044
2044
2045
2045
2045
2046
2046
2046
2046
2047
2047
2047
2048
2048
2048
2049
2049
2049
2050
2050
2050
2051
2051
2051
2052
2052
2052
2053
2053
2053
2054
2054
2054
2055
2055
2055
2056
2056
2056
2057
2057
2057
2058
2058
2058
2059
2059
2059
2060
2060
2060
2061
2061
2061
2062
2062
2062
2063
2063
2063
2064
2064
2064
2065
2065
2065
2066
2066
2066
2067
2067
2067
2068
2068
2068
2068
2069
2069
2069
2070
2070
2070
2071
2071
2071
2072
2072
2072
2073
2073
2073
2074
2074
2074
2075
2075
2075
2076
2076
2076
2077
2077
2077
2078
2078
2078
2079
2079
2079
2080
2080
2080
2081
2081
2081
2082
2082
2082
2083
2083
2083
2084
2084
2084
2085
2085
2085
2086
2086
2086
2087
2087
2087
2088
2088
2088
2089
2089
2089
2090
2090
2090
2090
2091
2091
2091
2092
2092
2092
2093
2093
2093
2094
2094
2094
2095
2095
2095
2096
2096
2096
2097
2097
2097
2098
2098
2098
2099
2099
2099
2100
2100
2100
2101
2101
2101
2102
2102
2102
2103
2103
2103
2104
2104
2104
2105
2105
2105
2106
2106
2106
2107
2107
2107
2108
2108
2108
2109
2109
2109
2110
2110
2110
2111
2111
2111
2112
2112
2112
2112
2113
2113
2113
2114
2114
2114
2115
2115
2115
2116
2116
2116
2117
2117
2117
2118
2118
2118
2119
2119
2119
2120
2120
2120
2121
2121
2121
2122
2122
2122
2123
2123
2123
2124
2124
2124
2125
2125
2125
2126
2126
2126
2127
2127
2127
2128
2128
2128
2129
2129
2129
2130
2130
2130
2131
2131
2131
2132
2132
2132
2133
2133
2133
2134
2134
2134
2134
2135
2135
2135
2136
2136
2136
2137
2137
2137
2138
2138
2138
2139
2139
2139
2140
2140
2140
2141
2141
2141
2142
2142
2142
2143
2143
2143
2144
2144
2144
2145
2145
2145
2146
2146
2146
2147
2147
2147
2148
2148
2148
2149
2149
2149
2150
2150
2150
2151
2151
2151
2152
2152
2152
2153
2153
2153
2154
2154
2154
2155
2155
2155
2156
2156
2156
2156
2157
2157
2157
2158
2158
2158
2159
2159
2159
2160
2160
2160
2161
2161
2161
2162
2162
2162
2163
2163
2163
2164
2164
2164
2165
2165
2165
2166
2166
2166
2167
2167
2167
2168
2168
2168
2169
2169
2169
2170
2170
2170
2171
2171
2171
2172
2172
2172
2173
2173
2173
2174
2174
2174
2175
2175
2175
2176
2176
2176
2177
2177
2177
2178
2178
2178
2179
2179
2180
2180
2181
2181
2182
2182
2183
2183
2184
2184
2185
2185
2186
2186
2187
2187
2188
2188
2189
2189
2190
2190
2191
2191
2192
2192
2193
2193
2194
2194
2195
2195
2196
2196
2197
2197
2198
2198
2199
2199
2200
2200
2200
2200
2201
2201
2201
2202
2202
2202
2203
2203
2203
2204
2204
2204
2205
2205
2205
2206
2206
2206
2207
2207
2207
2208
2208
2208
2209
2209
2209
2210
2210
2210
2211
2211
2211
2212
2212
2212
2213
2213
2213
2214
2214
2214
2215
2215
2215
2216
2216
2216
2217
2217
2217
2218
2218
2218
2219
2219
2219
2220
2220
2220
2221
2221
2221
2222
2222
2222
2222
2223
2223
2223
2224
2224
2224
2225
2225
2225
2226
2226
2226
2227
2227
2227
2228
2228
2228
2229
2229
2229
2230
2230
2230
2231
2231
2231
2232
2232
2232
2233
2233
2233
2234
2234
2234
2235
2235
2235
2236
2236
2236
2237
2237
2237
2238
2238
2238
2239
2239
2239
2240
2240
2240
2241
2241
2241
2242
2242
2242
2243
2243
2243
2244
2244
2244
2244
2245
2245
2245
2246
2246
2246
2247
2247
2247
2248
2248
2248
2249
2249
2249
2250
2250
2250
2251
2251
2251
2252
2252
2252
2253
2253
2253
2254
2254
2254
2255
2255
2255
2256
2256
2256
2257
2257
2257
2258
2258
2258
2259
2259
2259
2260
2260
2260
2261
2261
2261
2262
2262
2262
2263
2263
2263
2264
2264
2264
2265
2265
2265
2266
2266
2266
2266
2267
2267
2267
2268
2268
2268
2269
2269
2269
2270
2270
2270
2271
2271
2271
2272
2272
2272
2273
2273
2273
2274
2274
2274
2275
2275
2275
2276
2276
2276
2277
2277
2277
2278
2278
2278
2279
2279
2279
2280
2280
2280
2281
2281
2281
2282
2282
2282
2283
2283
2283
2284
2284
2284
2285
2285
2285
2286
2286
2286
2287
2287
2287
2288
2288
2288
2288
2289
2289
2289
2290
2290
2290
2291
2291
2291
2292
2292
2292
2293
2293
2293
2294
2294
2294
2295
2295
2295
2296
2296
2296
2297
2297
2297
2298
2298
2298
2299
2299
2299
2300
2300
2300
2301
2301
2301
2302
2302
2302
2303
2303
2303
2304
2304
2304
2305
2305
2305
2306
2306
2306
2307
2307
2307
2308
2308
2308
2309
2309
2309
2310
2310
2310
2310
2311
2311
2311
2312
2312
2312
2313
2313
2313
2314
2314
2314
2315
2315
2315
2316
2316
2316
2317
2317
2317
2318
2318
2318
2319
2319
2319
2320
2320
2320
2321
2321
2321
2322
2322
2322
2323
2323
2323
2324
2324
2324
2325
2325
2325
2326
2326
2326
2327
2327
2327
2328
2328
2328
2329
2329
2329
2330
2330
2330
2331
2331
2331
2332
2332
2332
2332
2333
2333
2333
2334
2334
2334
2335
2335
2335
2336
2336
2336
2337
2337
2337
2338
2338
2338
2339
2339
2339
2340
2340
2340
2341
2341
2341
2342
2342
2342
2343
2343
2343
2344
2344
2344
2345
2345
2345
2346
2346
2346
2347
2347
2347
2348
2348
2348
2349
2349
2349
2350
2350
2350
2351
2351
2351
2352
2352
2352
2353
2353
2353
2354
2354
2354
2354
2355
2355
2355
2356
2356
2356
2357
2357
2357
2358
2358
2358
2359
2359
2359
2360
2360
2360
2361
2361
2361
2362
2362
2362
2363
2363
2363
2364
2364
2364
2365
2365
2365
2366
2366
2366
2367
2367
2367
2368
2368
2368
2369
2369
2369
2370
2370
2370
2371
2371
2371
2372
2372
2372
2373
2373
2373
2374
2374
2374
2375
2375
2375
2376
2376
2376
2376
2377
2377
2377
2378
2378
2378
2379
2379
2379
2380
2380
2380
2381
2381
2381
2382
2382
2382
2383
2383
2383
2384
2384
2384
2385
2385
2385
2386
2386
2386
2387
2387
2387
2388
2388
2388
2389
2389
2389
2390
2390
2390
2391
2391
2391
2392
2392
2392
2393
2393
2393
2394
2394
2394
2395
2395
2395
2396
2396
2396
2397
2397
2397
2398
2398
2398
2399
2399
2400
2400
2401
2401
2402
2402
2403
2403
2404
2404
2405
2405
2406
2406
2407
2407
2408
2408
2409
2409
2410
2410
2411
2411
2412
2412
2413
2413
2414
2414
2415
2415
2416
2416
2417
2417
2418
2418
2419
2419
2420
2420
2420
2420
2421
2421
2421
2422
2422
2422
2423
2423
2423
2424
2424
2424
2425
2425
2425
2426
2426
2426
2427
2427
2427
2428
2428
2428
2429
2429
2429
2430
2430
2430
2431
2431
2431
2432
2432
2432
2433
2433
2433
2434
2434
2434
2435
2435
2435
2436
2436
2436
2437
2437
2437
2438
2438
2438
2439
2439
2439
2440
2440
2440
2441
2441
2441
2442
2442
2442
2442
2443
2443
2443
2444
2444
2444
2445
2445
2445
2446
2446
2446
2447
2447
2447
2448
2448
2448
2449
2449
2449
2450
2450
2450
2451
2451
2451
2452
2452
2452
2453
2453
2453
2454
2454
2454
2455
2455
2455
2456
2456
2456
2457
2457
2457
2458
2458
2458
2459
2459
2459
2460
2460
2460
2461
2461
2461
2462
2462
2462
2463
2463
2463
2464
2464
2464
2464
2465
2465
2465
2466
2466
2466
2467
2467
2467
2468
2468
2468
2469
2469
2469
2470
2470
2470
2471
2471
2471
2472
2472
2472
2473
2473
2473
2474
2474
2474
2475
2475
2475
2476
2476
2476
2477
2477
2477
2478
2478
2478
2479
2479
2479
2480
2480
2480
2481
2481
2481
2482
2482
2482
2483
2483
2483
2484
2484
2484
2485
2485
2485
2486
2486
2486
2486
2487
2487
2487
2488
2488
2488
2489
2489
2489
2490
2490
2490
2491
2491
2491
2492
2492
2492
2493
2493
2493
2494
2494
2494
2495
2495
2495
2496
2496
2496
2497
2497
2497
2498
2498
2498
2499
2499
2499
2500
2500
2500
2501
2501
2501
2502
2502
2502
2503
2503
2503
2504
2504
2504
2505
2505
2505
2506
2506
2506
2507
2507
2507
2508
2508
2508
2508
2509
2509
2509
2510
2510
2510
2511
2511
2511
2512
2512
2512
2513
2513
2513
2514
2514
2514
2515
2515
2515
2516
2516
2516
2517
2517
2517
2518
2518
2518
2519
2519
2519
2520
2520
2520
2521
2521
2521
2522
2522
2522
2523
2523
2523
2524
2524
2524
2525
2525
2525
2526
2526
2526
2527
2527
2527
2528
2528
2528
2529
2529
2529
2530
2530
2530
2530
2531
2531
2531
2532
2532
2532
2533
2533
2533
2534
2534
2534
2535
2535
2535
2536
2536
2536
2537
2537
2537
2538
2538
2538
2539
2539
2539
2540
2540
2540
2541
2541
2541
2542
2542
2542
2543
2543
2543
2544
2544
2544
2545
2545
2545
2546
2546
2546
2547
2547
2547
2548
2548
2548
2549
2549
2549
2550
2550
2550
2551
2551
2551
2552
2552
2552
2552
2553
2553
2553
2554
2554
2554
2555
2555
2555
2556
2556
2556
2557
2557
2557
2558
2558
2558
2559
2559
2559
2560
2560
2560
2561
2561
2561
2562
2562
2562
2563
2563
2563
2564
2564
2564
2565
2565
2565
2566
2566
2566
2567
2567
2567
2568
2568
2568
2569
2569
2569
2570
2570
2570
2571
2571
2571
2572
2572
2572
2573
2573
2573
2574
2574
2574
2574
2575
2575
2575
2576
2576
2576
2577
2577
2577
2578
2578
2578
2579
2579
2579
2580
2580
2580
2581
2581
2581
2582
2582
2582
2583
2583
2583
2584
2584
2584
2585
2585
2585
2586
2586
2586
2587
2587
2587
2588
2588
2588
2589
2589
2589
2590
2590
2590
2591
2591
2591
2592
2592
2592
2593
2593
2593
2594
2594
2594
2595
2595
2595
2596
2596
2596
2596
2597
2597
2597
2598
2598
2598
2599
2599
2599
2600
2600
2600
2601
2601
2601
2602
2602
2602
2603
2603
2603
2604
2604
2604
2605
2605
2605
2606
2606
2606
2607
2607
2607
2608
2608
2608
2609
2609
2609
2610
2610
2610
2611
2611
2611
2612
2612
2612
2613
2613
2613
2614
2614
2614
2615
2615
2615
2616
2616
2616
2617
2617
2617
2618
2618
2618
2619
2619
2620
2620
2621
2621
2622
2622
2623
2623
2624
2624
2625
2625
2626
2626
2627
2627
2628
2628
2629
2629
2630
2630
2631
2631
2632
2632
2633
2633
2634
2634
2635
2635
2636
2636
2637
2637
2638
2638
2639
2639
2640
2640
2640
2640
2641
2641
2641
2642
2642
2642
2643
2643
2643
2644
2644
2644
2645
2645
2645
2646
2646
2646
2647
2647
2647
2648
2648
2648
2649
2649
2649
2650
2650
2650
2651
2651
2651
2652
2652
2652
2653
2653
2653
2654
2654
2654
2655
2655
2655
2656
2656
2656
2657
2657
2657
2658
2658
2658
2659
2659
2659
2660
2660
2660
2661
2661
2661
2662
2662
2662
2662
2663
2663
2663
2664
2664
2664
2665
2665
2665
2666
2666
2666
2667
2667
2667
2668
2668
2668
2669
2669
2669
2670
2670
2670
2671
2671
2671
2672
2672
2672
2673
2673
2673
2674
2674
2674
2675
2675
2675
2676
2676
2676
2677
2677
2677
2678
2678
2678
2679
2679
2679
2680
2680
2680
2681
2681
2681
2682
2682
2682
2683
2683
2683
2684
2684
2684
2684
2685
2685
2685
2686
2686
2686
2687
2687
2687
2688
2688
2688
2689
2689
2689
2690
2690
2690
2691
2691
2691
2692
2692
2692
2693
2693
2693
2694
2694
2694
2695
2695
2695
2696
2696
2696
2697
2697
2697
2698
2698
2698
2699
2699
2699
2700
2700
2700
2701
2701
2701
2702
2702
2702
2703
2703
2703
2704
2704
2704
2705
2705
2705
2706
2706
2706
2706
2707
2707
2707
2708
2708
2708
2709
2709
2709
2710
2710
2710
2711
2711
2711
2712
2712
2712
2713
2713
2713
2714
2714
2714
2715
2715
2715
2716
2716
2716
2717
2717
2717
2718
2718
2718
2719
2719
2719
2720
2720
2720
2721
2721
2721
2722
2722
2722
2723
2723
2723
2724
2724
2724
2725
2725
2725
2726
2726
2726
2727
2727
2727
2728
2728
2728
2728
2729
2729
2729
2730
2730
2730
2731
2731
2731
2732
2732
2732
2733
2733
2733
2734
2734
2734
2735
2735
2735
2736
2736
2736
2737
2737
2737
2738
2738
2738
2739
2739
2739
2740
2740
2740
2741
2741
2741
2742
2742
2742
2743
2743
2743
2744
2744
2744
2745
2745
2745
2746
2746
2746
2747
2747
2747
2748
2748
2748
2749
2749
2749
2750
2750
2750
2750
2751
2751
2751
2752
2752
2752
2753
2753
2753
2754
2754
2754
2755
2755
2755
2756
2756
2756
2757
2757
2757
2758
2758
2758
2759
2759
2759
2760
2760
2760
2761
2761
2761
2762
2762
2762
2763
2763
2763
2764
2764
2764
2765
2765
2765
2766
2766
2766
2767
2767
2767
2768
2768
2768
2769
2769
2769
2770
2770
2770
2771
2771
2771
2772
2772
2772
2772
2773
2773
2773
2774
2774
2774
2775
2775
2775
2776
2776
2776
2777
2777
2777
2778
2778
2778
2779
2779
2779
2780
2780
2780
2781
2781
2781
2782
2782
2782
2783
2783
2783
2784
2784
2784
2785
2785
2785
2786
2786
2786
2787
2787
2787
2788
2788
2788
2789
2789
2789
2790
2790
2790
2791
2791
2791
2792
2792
2792
2793
2793
2793
2794
2794
2794
2794
2795
2795
2795
2796
2796
2796
2797
2797
2797
2798
2798
2798
2799
2799
2799
2800
2800
2800
2801
2801
2801
2802
2802
2802
2803
2803
2803
2804
2804
2804
2805
2805
2805
2806
2806
2806
2807
2807
2807
2808
2808
2808
2809
2809
2809
2810
2810
2810
2811
2811
2811
2812
2812
2812
2813
2813
2813
2814
2814
2814
2815
2815
2815
2816
2816
2816
2816
2817
2817
2817
2818
2818
2818
2819
2819
2819
2820
2820
2820
2821
2821
2821
2822
2822
2822
2823
2823
2823
2824
2824
2824
2825
2825
2825
2826
2826
2826
2827
2827
2827
2828
2828
2828
2829
2829
2829
2830
2830
2830
2831
2831
2831
2832
2832
2832
2833
2833
2833
2834
2834
2834
2835
2835
2835
2836
2836
2836
2837
2837
2837
2838
2838
2838
2839
2839
2840
2840
2841
2841
2842
2842
2843
2843
2844
2844
2845
2845
2846
2846
2847
2847
2848
2848
2849
2849
2850
2850
2851
2851
2852
2852
2853
2853
2854
2854
2855
2855
2856
2856
2857
2857
2858
2858
2859
2859
2860
2860
2860
2860
2861
2861
2861
2862
2862
2862
2863
2863
2863
2864
2864
2864
2865
2865
2865
2866
2866
2866
2867
2867
2867
2868
2868
2868
2869
2869
2869
2870
2870
2870
2871
2871
2871
2872
2872
2872
2873
2873
2873
2874
2874
2874
2875
2875
2875
2876
2876
2876
2877
2877
2877
2878
2878
2878
2879
2879
2879
2880
2880
2880
2881
2881
2881
2882
2882
2882
2882
2883
2883
2883
2884
2884
2884
2885
2885
2885
2886
2886
2886
2887
2887
2887
2888
2888
2888
2889
2889
2889
2890
2890
2890
2891
2891
2891
2892
2892
2892
2893
2893
2893
2894
2894
2894
2895
2895
2895
2896
2896
2896
2897
2897
2897
2898
2898
2898
2899
2899
2899
2900
2900
2900
2901
2901
2901
2902
2902
2902
2903
2903
2903
2904
2904
2904
2904
2905
2905
2905
2906
2906
2906
2907
2907
2907
2908
2908
2908
2909
2909
2909
2910
2910
2910
2911
2911
2911
2912
2912
2912
2913
2913
2913
2914
2914
2914
2915
2915
2915
2916
2916
2916
2917
2917
2917
2918
2918
2918
2919
2919
2919
2920
2920
2920
2921
2921
2921
2922
2922
2922
2923
2923
2923
2924
2924
2924
2925
2925
2925
2926
2926
2926
2926
2927
2927
2927
2928
2928
2928
2929
2929
2929
2930
2930
2930
2931
2931
2931
2932
2932
2932
2933
2933
2933
2934
2934
2934
2935
2935
2935
2936
2936
2936
2937
2937
2937
2938
2938
2938
2939
2939
2939
2940
2940
2940
2941
2941
2941
2942
2942
2942
2943
2943
2943
2944
2944
2944
2945
2945
2945
2946
2946
2946
2947
2947
2947
2948
2948
2948
2948
2949
2949
2949
2950
2950
2950
2951
2951
2951
2952
2952
2952
2953
2953
2953
2954
2954
2954
2955
2955
2955
2956
2956
2956
2957
2957
2957
2958
2958
2958
2959
2959
2959
2960
2960
2960
2961
2961
2961
2962
2962
2962
2963
2963
2963
2964
2964
2964
2965
2965
2965
2966
2966
2966
2967
2967
2967
2968
2968
2968
2969
2969
2969
2970
2970
2970
2970
2971
2971
2971
2972
2972
2972
2973
2973
2973
2974
2974
2974
2975
2975
2975
2976
2976
2976
2977
2977
2977
2978
2978
2978
2979
2979
2979
2980
2980
2980
2981
2981
2981
2982
2982
2982
2983
2983
2983
2984
2984
2984
2985
2985
2985
2986
2986
2986
2987
2987
2987
2988
2988
2988
2989
2989
2989
2990
2990
2990
2991
2991
2991
2992
2992
2992
2992
2993
2993
2993
2994
2994
2994
2995
2995
2995
2996
2996
2996
2997
2997
2997
2998
2998
2998
2999
2999
2999
3000
3000
3000
3001
3001
3001
3002
3002
3002
3003
3003
3003
3004
3004
3004
3005
3005
3005
3006
3006
3006
3007
3007
3007
3008
3008
3008
3009
3009
3009
3010
3010
3010
3011
3011
3011
3012
3012
3012
3013
3013
3013
3014
3014
3014
3014
3015
3015
3015
3016
3016
3016
3017
3017
3017
3018
3018
3018
3019
3019
3019
3020
3020
3020
3021
3021
3021
3022
3022
3022
3023
3023
3023
3024
3024
3024
3025
3025
3025
3026
3026
3026
3027
3027
3027
3028
3028
3028
3029
3029
3029
3030
3030
3030
3031
3031
3031
3032
3032
3032
3033
3033
3033
3034
3034
3034
3035
3035
3035
3036
3036
3036
3036
3037
3037
3037
3038
3038
3038
3039
3039
3039
3040
3040
3040
3041
3041
3041
3042
3042
3042
3043
3043
3043
3044
3044
3044
3045
3045
3045
3046
3046
3046
3047
3047
3047
3048
3048
3048
3049
3049
3049
3050
3050
3050
3051
3051
3051
3052
3052
3052
3053
3053
3053
3054
3054
3054
3055
3055
3055
3056
3056
3056
3057
3057
3057
3058
3058
3058
3059
3059
3060
3060
3061
3061
3062
3062
3063
3063
3064
3064
3065
3065
3066
3066
3067
3067
3068
3068
3069
3069
3070
3070
3071
3071
3072
3072
3073
3073
3074
3074
3075
3075
3076
3076
3077
3077
3078
3078
3079
3079
3080
3080
3080
3080
3081
3081
3081
3082
3082
3082
3083
3083
3083
3084
3084
3084
3085
3085
3085
3086
3086
3086
3087
3087
3087
3088
3088
3088
3089
3089
3089
3090
3090
3090
3091
3091
3091
3092
3092
3092
3093
3093
3093
3094
3094
3094
3095
3095
3095
3096
3096
3096
3097
3097
3097
3098
3098
3098
3099
3099
3099
3100
3100
3100
3101
3101
3101
3102
3102
3102
3102
3103
3103
3103
3104
3104
3104
3105
3105
3105
3106
3106
3106
3107
3107
3107
3108
3108
3108
3109
3109
3109
3110
3110
3110
3111
3111
3111
3112
3112
3112
3113
3113
3113
3114
3114
3114
3115
3115
3115
3116
3116
3116
3117
3117
3117
3118
3118
3118
3119
3119
3119
3120
3120
3120
3121
3121
3121
3122
3122
3122
3123
3123
3123
3124
3124
3124
3124
3125
3125
3125
3126
3126
3126
3127
3127
3127
3128
3128
3128
3129
3129
3129
3130
3130
3130
3131
3131
3131
3132
3132
3132
3133
3133
3133
3134
3134
3134
3135
3135
3135
3136
3136
3136
3137
3137
3137
3138
3138
3138
3139
3139
3139
3140
3140
3140
3141
3141
3141
3142
3142
3142
3143
3143
3143
3144
3144
3144
3145
3145
3145
3146
3146
3146
3146
3147
3147
3147
3148
3148
3148
3149
3149
3149
3150
3150
3150
3151
3151
3151
3152
3152
3152
3153
3153
3153
3154
3154
3154
3155
3155
3155
3156
3156
3156
3157
3157
3157
3158
3158
3158
3159
3159
3159
3160
3160
3160
3161
3161
3161
3162
3162
3162
3163
3163
3163
3164
3164
3164
3165
3165
3165
3166
3166
3166
3167
3167
3167
3168
3168
3168
3168
3169
3169
3169
3170
3170
3170
3171
3171
3171
3172
3172
3172
3173
3173
3173
3174
3174
3174
3175
3175
3175
3176
3176
3176
3177
3177
3177
3178
3178
3178
3179
3179
3179
3180
3180
3180
3181
3181
3181
3182
3182
3182
3183
3183
3183
3184
3184
3184
3185
3185
3185
3186
3186
3186
3187
3187
3187
3188
3188
3188
3189
3189
3189
3190
3190
3190
3190
3191
3191
3191
3192
3192
3192
3193
3193
3193
3194
3194
3194
3195
3195
3195
3196
3196
3196
3197
3197
3197
3198
3198
3198
3199
3199
3199
3200
3200
3200
3201
3201
3201
3202
3202
3202
3203
3203
3203
3204
3204
3204
3205
3205
3205
3206
3206
3206
3207
3207
3207
3208
3208
3208
3209
3209
3209
3210
3210
3210
3211
3211
3211
3212
3212
3212
3212
3213
3213
3213
3214
3214
3214
3215
3215
3215
3216
3216
3216
3217
3217
3217
3218
3218
3218
3219
3219
3219
3220
3220
3220
3221
3221
3221
3222
3222
3222
3223
3223
3223
3224
3224
3224
3225
3225
3225
3226
3226
3226
3227
3227
3227
3228
3228
3228
3229
3229
3229
3230
3230
3230
3231
3231
3231
3232
3232
3232
3233
3233
3233
3234
3234
3234
3234
3235
3235
3235
3236
3236
3236
3237
3237
3237
3238
3238
3238
3239
3239
3239
3240
3240
3240
3241
3241
3241
3242
3242
3242
3243
3243
3243
3244
3244
3244
3245
3245
3245
3246
3246
3246
3247
3247
3247
3248
3248
3248
3249
3249
3249
3250
3250
3250
3251
3251
3251
3252
3252
3252
3253
3253
3253
3254
3254
3254
3255
3255
3255
3256
3256
3256
3256
3257
3257
3257
3258
3258
3258
3259
3259
3259
3260
3260
3260
3261
3261
3261
3262
3262
3262
3263
3263
3263
3264
3264
3264
3265
3265
3265
3266
3266
3266
3267
3267
3267
3268
3268
3268
3269
3269
3269
3270
3270
3270
3271
3271
3271
3272
3272
3272
3273
3273
3273
3274
3274
3274
3275
3275
3275
3276
3276
3276
3277
3277
3277
3278
3278
3278
3279
3279
3280
3280
3281
3281
3282
3282
3283
3283
3284
3284
3285
3285
3286
3286
3287
3287
3288
3288
3289
3289
3290
3290
3291
3291
3292
3292
3293
3293
3294
3294
3295
3295
3296
3296
3297
3297
3298
3298
3299
3299
3300
3300
3300
3300
3301
3301
3301
3302
3302
3302
3303
3303
3303
3304
3304
3304
3305
3305
3305
3306
3306
3306
3307
3307
3307
3308
3308
3308
3309
3309
3309
3310
3310
3310
3311
3311
3311
3312
3312
3312
3313
3313
3313
3314
3314
3314
3315
3315
3315
3316
3316
3316
3317
3317
3317
3318
3318
3318
3319
3319
3319
3320
3320
3320
3321
3321
3321
3322
3322
3322
3322
3323
3323
3323
3324
3324
3324
3325
3325
3325
3326
3326
3326
3327
3327
3327
3328
3328
3328
3329
3329
3329
3330
3330
3330
3331
3331
3331
3332
3332
3332
3333
3333
3333
3334
3334
3334
3335
3335
3335
3336
3336
3336
3337
3337
3337
3338
3338
3338
3339
3339
3339
3340
3340
3340
3341
3341
3341
3342
3342
3342
3343
3343
3343
3344
3344
3344
3344
3345
3345
3345
3346
3346
3346
3347
3347
3347
3348
3348
3348
3349
3349
3349
3350
3350
3350
3351
3351
3351
3352
3352
3352
3353
3353
3353
3354
3354
3354
3355
3355
3355
3356
3356
3356
3357
3357
3357
3358
3358
3358
3359
3359
3359
3360
3360
3360
3361
3361
3361
3362
3362
3362
3363
3363
3363
3364
3364
3364
3365
3365
3365
3366
3366
3366
3366
3367
3367
3367
3368
3368
3368
3369
3369
3369
3370
3370
3370
3371
3371
3371
3372
3372
3372
3373
3373
3373
3374
3374
3374
3375
3375
3375
3376
3376
3376
3377
3377
3377
3378
3378
3378
3379
3379
3379
3380
3380
3380
3381
3381
3381
3382
3382
3382
3383
3383
3383
3384
3384
3384
3385
3385
3385
3386
3386
3386
3387
3387
3387
3388
3388
3388
3388
3389
3389
3389
3390
3390
3390
3391
3391
3391
3392
3392
3392
3393
3393
3393
3394
3394
3394
3395
3395
3395
3396
3396
3396
3397
3397
3397
3398
3398
3398
3399
3399
3399
3400
3400
3400
3401
3401
3401
3402
3402
3402
3403
3403
3403
3404
3404
3404
3405
3405
3405
3406
3406
3406
3407
3407
3407
3408
3408
3408
3409
3409
3409
3410
3410
3410
3410
3411
3411
3411
3412
3412
3412
3413
3413
3413
3414
3414
3414
3415
3415
3415
3416
3416
3416
3417
3417
3417
3418
3418
3418
3419
3419
3419
3420
3420
3420
3421
3421
3421
3422
3422
3422
3423
3423
3423
3424
3424
3424
3425
3425
3425
3426
3426
3426
3427
3427
3427
3428
3428
3428
3429
3429
3429
3430
3430
3430
3431
3431
3431
3432
3432
3432
3432
3433
3433
3433
3434
3434
3434
3435
3435
3435
3436
3436
3436
3437
3437
3437
3438
3438
3438
3439
3439
3439
3440
3440
3440
3441
3441
3441
3442
3442
3442
3443
3443
3443
3444
3444
3444
3445
3445
3445
3446
3446
3446
3447
3447
3447
3448
3448
3448
3449
3449
3449
3450
3450
3450
3451
3451
3451
3452
3452
3452
3453
3453
3453
3454
3454
3454
3454
3455
3455
3455
3456
3456
3456
3457
3457
3457
3458
3458
3458
3459
3459
3459
3460
3460
3460
3461
3461
3461
3462
3462
3462
3463
3463
3463
3464
3464
3464
3465
3465
3465
3466
3466
3466
3467
3467
3467
3468
3468
3468
3469
3469
3469
3470
3470
3470
3471
3471
3471
3472
3472
3472
3473
3473
3473
3474
3474
3474
3475
3475
3475
3476
3476
3476
3476
3477
3477
3477
3478
3478
3478
3479
3479
3479
3480
3480
3480
3481
3481
3481
3482
3482
3482
3483
3483
3483
3484
3484
3484
3485
3485
3485
3486
3486
3486
3487
3487
3487
3488
3488
3488
3489
3489
3489
3490
3490
3490
3491
3491
3491
3492
3492
3492
3493
3493
3493
3494
3494
3494
3495
3495
3495
3496
3496
3496
3497
3497
3497
3498
3498
3498
3499
3499
3500
3500
3501
3501
3502
3502
3503
3503
3504
3504
3505
3505
3506
3506
3507
3507
3508
3508
3509
3509
3510
3510
3511
3511
3512
3512
3513
3513
3514
3514
3515
3515
3516
3516
3517
3517
3518
3518
3519
3519
3520
3520
3520
3520
3521
3521
3521
3522
3522
3522
3523
3523
3523
3524
3524
3524
3525
3525
3525
3526
3526
3526
3527
3527
3527
3528
3528
3528
3529
3529
3529
3530
3530
3530
3531
3531
3531
3532
3532
3532
3533
3533
3533
3534
3534
3534
3535
3535
3535
3536
3536
3536
3537
3537
3537
3538
3538
3538
3539
3539
3539
3540
3540
3540
3541
3541
3541
3542
3542
3542
3542
3543
3543
3543
3544
3544
3544
3545
3545
3545
3546
3546
3546
3547
3547
3547
3548
3548
3548
3549
3549
3549
3550
3550
3550
3551
3551
3551
3552
3552
3552
3553
3553
3553
3554
3554
3554
3555
3555
3555
3556
3556
3556
3557
3557
3557
3558
3558
3558
3559
3559
3559
3560
3560
3560
3561
3561
3561
3562
3562
3562
3563
3563
3563
3564
3564
3564
3564
3565
3565
3565
3566
3566
3566
3567
3567
3567
3568
3568
3568
3569
3569
3569
3570
3570
3570
3571
3571
3571
3572
3572
3572
3573
3573
3573
3574
3574
3574
3575
3575
3575
3576
3576
3576
3577
3577
3577
3578
3578
3578
3579
3579
3579
3580
3580
3580
3581
3581
3581
3582
3582
3582
3583
3583
3583
3584
3584
3584
3585
3585
3585
3586
3586
3586
3586
3587
3587
3587
3588
3588
3588
3589
3589
3589
3590
3590
3590
3591
3591
3591
3592
3592
3592
3593
3593
3593
3594
3594
3594
3595
3595
3595
3596
3596
3596
3597
3597
3597
3598
3598
3598
3599
3599
3599
3600
3600
3600
3601
3601
3601
3602
3602
3602
3603
3603
3603
3604
3604
3604
3605
3605
3605
3606
3606
3606
3607
3607
3607
3608
3608
3608
3608
3609
3609
3609
3610
3610
3610
3611
3611
3611
3612
3612
3612
3613
3613
3613
3614
3614
3614
3615
3615
3615
3616
3616
3616
3617
3617
3617
3618
3618
3618
3619
3619
3619
3620
3620
3620
3621
3621
3621
3622
3622
3622
3623
3623
3623
3624
3624
3624
3625
3625
3625
3626
3626
3626
3627
3627
3627
3628
3628
3628
3629
3629
3629
3630
3630
3630
3630
3631
3631
3631
3632
3632
3632
3633
3633
3633
3634
3634
3634
3635
3635
3635
3636
3636
3636
3637
3637
3637
3638
3638
3638
3639
3639
3639
3640
3640
3640
3641
3641
3641
3642
3642
3642
3643
3643
3643
3644
3644
3644
3645
3645
3645
3646
3646
3646
3647
3647
3647
3648
3648
3648
3649
3649
3649
3650
3650
3650
3651
3651
3651
3652
3652
3652
3652
3653
3653
3653
3654
3654
3654
3655
3655
3655
3656
3656
3656
3657
3657
3657
3658
3658
3658
3659
3659
3659
3660
3660
3660
3661
3661
3661
3662
3662
3662
3663
3663
3663
3664
3664
3664
3665
3665
3665
3666
3666
3666
3667
3667
3667
3668
3668
3668
3669
3669
3669
3670
3670
3670
3671
3671
3671
3672
3672
3672
3673
3673
3673
3674
3674
3674
3674
3675
3675
3675
3676
3676
3676
3677
3677
3677
3678
3678
3678
3679
3679
3679
3680
3680
3680
3681
3681
3681
3682
3682
3682
3683
3683
3683
3684
3684
3684
3685
3685
3685
3686
3686
3686
3687
3687
3687
3688
3688
3688
3689
3689
3689
3690
3690
3690
3691
3691
3691
3692
3692
3692
3693
3693
3693
3694
3694
3694
3695
3695
3695
3696
3696
3696
3696
3697
3697
3697
3698
3698
3698
3699
3699
3699
3700
3700
3700
3701
3701
3701
3702
3702
3702
3703
3703
3703
3704
3704
3704
3705
3705
3705
3706
3706
3706
3707
3707
3707
3708
3708
3708
3709
3709
3709
3710
3710
3710
3711
3711
3711
3712
3712
3712
3713
3713
3713
3714
3714
3714
3715
3715
3715
3716
3716
3716
3717
3717
3717
3718
3718
3718
3719
3719
3720
3720
3721
3721
3722
3722
3723
3723
3724
3724
3725
3725
3726
3726
3727
3727
3728
3728
3729
3729
3730
3730
3731
3731
3732
3732
3733
3733
3734
3734
3735
3735
3736
3736
3737
3737
3738
3738
3739
3739
3740
3740
3740
3740
3741
3741
3741
3742
3742
3742
3743
3743
3743
3744
3744
3744
3745
3745
3745
3746
3746
3746
3747
3747
3747
3748
3748
3748
3749
3749
3749
3750
3750
3750
3751
3751
3751
3752
3752
3752
3753
3753
3753
3754
3754
3754
3755
3755
3755
3756
3756
3756
3757
3757
3757
3758
3758
3758
3759
3759
3759
3760
3760
3760
3761
3761
3761
3762
3762
3762
3762
3763
3763
3763
3764
3764
3764
3765
3765
3765
3766
3766
3766
3767
3767
3767
3768
3768
3768
3769
3769
3769
3770
3770
3770
3771
3771
3771
3772
3772
3772
3773
3773
3773
3774
3774
3774
3775
3775
3775
3776
3776
3776
3777
3777
3777
3778
3778
3778
3779
3779
3779
3780
3780
3780
3781
3781
3781
3782
3782
3782
3783
3783
3783
3784
3784
3784
3784
3785
3785
3785
3786
3786
3786
3787
3787
3787
3788
3788
3788
3789
3789
3789
3790
3790
3790
3791
3791
3791
3792
3792
3792
3793
3793
3793
3794
3794
3794
3795
3795
3795
3796
3796
3796
3797
3797
3797
3798
3798
3798
3799
3799
3799
3800
3800
3800
3801
3801
3801
3802
3802
3802
3803
3803
3803
3804
3804
3804
3805
3805
3805
3806
3806
3806
3806
3807
3807
3807
3808
3808
3808
3809
3809
3809
3810
3810
3810
3811
3811
3811
3812
3812
3812
3813
3813
3813
3814
3814
3814
3815
3815
3815
3816
3816
3816
3817
3817
3817
3818
3818
3818
3819
3819
3819
3820
3820
3820
3821
3821
3821
3822
3822
3822
3823
3823
3823
3824
3824
3824
3825
3825
3825
3826
3826
3826
3827
3827
3827
3828
3828
3828
3828
3829
3829
3829
3830
3830
3830
3831
3831
3831
3832
3832
3832
3833
3833
3833
3834
3834
3834
3835
3835
3835
3836
3836
3836
3837
3837
3837
3838
3838
3838
3839
3839
3839
3840
3840
3840
3841
3841
3841
3842
3842
3842
3843
3843
3843
3844
3844
3844
3845
3845
3845
3846
3846
3846
3847
3847
3847
3848
3848
3848
3849
3849
3849
3850
3850
3850
3850
3851
3851
3851
3852
3852
3852
3853
3853
3853
3854
3854
3854
3855
3855
3855
3856
3856
3856
3857
3857
3857
3858
3858
3858
3859
3859
3859
3860
3860
3860
3861
3861
3861
3862
3862
3862
3863
3863
3863
3864
3864
3864
3865
3865
3865
3866
3866
3866
3867
3867
3867
3868
3868
3868
3869
3869
3869
3870
3870
3870
3871
3871
3871
3872
3872
3872
3872
3873
3873
3873
3874
3874
3874
3875
3875
3875
3876
3876
3876
3877
3877
3877
3878
3878
3878
3879
3879
3879
3880
3880
3880
3881
3881
3881
3882
3882
3882
3883
3883
3883
3884
3884
3884
3885
3885
3885
3886
3886
3886
3887
3887
3887
3888
3888
3888
3889
3889
3889
3890
3890
3890
3891
3891
3891
3892
3892
3892
3893
3893
3893
3894
3894
3894
3894
3895
3895
3895
3896
3896
3896
3897
3897
3897
3898
3898
3898
3899
3899
3899
3900
3900
3900
3901
3901
3901
3902
3902
3902
3903
3903
3903
3904
3904
3904
3905
3905
3905
3906
3906
3906
3907
3907
3907
3908
3908
3908
3909
3909
3909
3910
3910
3910
3911
3911
3911
3912
3912
3912
3913
3913
3913
3914
3914
3914
3915
3915
3915
3916
3916
3916
3916
3917
3917
3917
3918
3918
3918
3919
3919
3919
3920
3920
3920
3921
3921
3921
3922
3922
3922
3923
3923
3923
3924
3924
3924
3925
3925
3925
3926
3926
3926
3927
3927
3927
3928
3928
3928
3929
3929
3929
3930
3930
3930
3931
3931
3931
3932
3932
3932
3933
3933
3933
3934
3934
3934
3935
3935
3935
3936
3936
3936
3937
3937
3937
3938
3938
3938
3939
3939
3940
3940
3941
3941
3942
3942
3943
3943
3944
3944
3945
3945
3946
3946
3947
3947
3948
3948
3949
3949
3950
3950
3951
3951
3952
3952
3953
3953
3954
3954
3955
3955
3956
3956
3957
3957
3958
3958
3959
3959
3960
3960
3960
3960
3961
3961
3961
3962
3962
3962
3963
3963
3963
3964
3964
3964
3965
3965
3965
3966
3966
3966
3967
3967
3967
3968
3968
3968
3969
3969
3969
3970
3970
3970
3971
3971
3971
3972
3972
3972
3973
3973
3973
3974
3974
3974
3975
3975
3975
3976
3976
3976
3977
3977
3977
3978
3978
3978
3979
3979
3979
3980
3980
3980
3981
3981
3981
3982
3982
3982
3982
3983
3983
3983
3984
3984
3984
3985
3985
3985
3986
3986
3986
3987
3987
3987
3988
3988
3988
3989
3989
3989
3990
3990
3990
3991
3991
3991
3992
3992
3992
3993
3993
3993
3994
3994
3994
3995
3995
3995
3996
3996
3996
3997
3997
3997
3998
3998
3998
3999
3999
3999
4000
4000
4000
4001
4001
4001
4002
4002
4002
4003
4003
4003
4004
4004
4004
4004
4005
4005
4005
4006
4006
4006
4007
4007
4007
4008
4008
4008
4009
4009
4009
4010
4010
4010
4011
4011
4011
4012
4012
4012
4013
4013
4013
4014
4014
4014
4015
4015
4015
4016
4016
4016
4017
4017
4017
4018
4018
4018
4019
4019
4019
4020
4020
4020
4021
4021
4021
4022
4022
4022
4023
4023
4023
4024
4024
4024
4025
4025
4025
4026
4026
4026
4026
4027
4027
4027
4028
4028
4028
4029
4029
4029
4030
4030
4030
4031
4031
4031
4032
4032
4032
4033
4033
4033
4034
4034
4034
4035
4035
4035
4036
4036
4036
4037
4037
4037
4038
4038
4038
4039
4039
4039
4040
4040
4040
4041
4041
4041
4042
4042
4042
4043
4043
4043
4044
4044
4044
4045
4045
4045
4046
4046
4046
4047
4047
4047
4048
4048
4048
4048
4049
4049
4049
4050
4050
4050
4051
4051
4051
4052
4052
4052
4053
4053
4053
4054
4054
4054
4055
4055
4055
4056
4056
4056
4057
4057
4057
4058
4058
4058
4059
4059
4059
4060
4060
4060
4061
4061
4061
4062
4062
4062
4063
4063
4063
4064
4064
4064
4065
4065
4065
4066
4066
4066
4067
4067
4067
4068
4068
4068
4069
4069
4069
4070
4070
4070
4070
4071
4071
4071
4072
4072
4072
4073
4073
4073
4074
4074
4074
4075
4075
4075
4076
4076
4076
4077
4077
4077
4078
4078
4078
4079
4079
4079
4080
4080
4080
4081
4081
4081
4082
4082
4082
4083
4083
4083
4084
4084
4084
4085
4085
4085
4086
4086
4086
4087
4087
4087
4088
4088
4088
4089
4089
4089
4090
4090
4090
4091
4091
4091
4092
4092
4092
4092
4093
4093
4093
4094
4094
4094
4095
4095
4095
4096
4096
4096
4097
4097
4097
4098
4098
4098
4099
4099
4099
4100
4100
4100
4101
4101
4101
4102
4102
4102
4103
4103
4103
4104
4104
4104
4105
4105
4105
4106
4106
4106
4107
4107
4107
4108
4108
4108
4109
4109
4109
4110
4110
4110
4111
4111
4111
4112
4112
4112
4113
4113
4113
4114
4114
4114
4114
4115
4115
4115
4116
4116
4116
4117
4117
4117
4118
4118
4118
4119
4119
4119
4120
4120
4120
4121
4121
4121
4122
4122
4122
4123
4123
4123
4124
4124
4124
4125
4125
4125
4126
4126
4126
4127
4127
4127
4128
4128
4128
4129
4129
4129
4130
4130
4130
4131
4131
4131
4132
4132
4132
4133
4133
4133
4134
4134
4134
4135
4135
4135
4136
4136
4136
4136
4137
4137
4137
4138
4138
4138
4139
4139
4139
4140
4140
4140
4141
4141
4141
4142
4142
4142
4143
4143
4143
4144
4144
4144
4145
4145
4145
4146
4146
4146
4147
4147
4147
4148
4148
4148
4149
4149
4149
4150
4150
4150
4151
4151
4151
4152
4152
4152
4153
4153
4153
4154
4154
4154
4155
4155
4155
4156
4156
4156
4157
4157
4157
4158
4158
4158
4159
4159
4160
4160
4161
4161
4162
4162
4163
4163
4164
4164
4165
4165
4166
4166
4167
4167
4168
4168
4169
4169
4170
4170
4171
4171
4172
4172
4173
4173
4174
4174
4175
4175
4176
4176
4177
4177
4178
4178
4179
4179
4180
4180
4180
4180
4181
4181
4181
4182
4182
4182
4183
4183
4183
4184
4184
4184
4185
4185
4185
4186
4186
4186
4187
4187
4187
4188
4188
4188
4189
4189
4189
4190
4190
4190
4191
4191
4191
4192
4192
4192
4193
4193
4193
4194
4194
4194
4195
4195
4195
4196
4196
4196
4197
4197
4197
4198
4198
4198
4199
4199
4199
4200
4200
4200
4201
4201
4201
4202
4202
4202
4202
4203
4203
4203
4204
4204
4204
4205
4205
4205
4206
4206
4206
4207
4207
4207
4208
4208
4208
4209
4209
4209
4210
4210
4210
4211
4211
4211
4212
4212
4212
4213
4213
4213
4214
4214
4214
4215
4215
4215
4216
4216
4216
4217
4217
4217
4218
4218
4218
4219
4219
4219
4220
4220
4220
4221
4221
4221
4222
4222
4222
4223
4223
4223
4224
4224
4224
4224
4225
4225
4225
4226
4226
4226
4227
4227
4227
4228
4228
4228
4229
4229
4229
4230
4230
4230
4231
4231
4231
4232
4232
4232
4233
4233
4233
4234
4234
4234
4235
4235
4235
4236
4236
4236
4237
4237
4237
4238
4238
4238
4239
4239
4239
4240
4240
4240
4241
4241
4241
4242
4242
4242
4243
4243
4243
4244
4244
4244
4245
4245
4245
4246
4246
4246
4246
4247
4247
4247
4248
4248
4248
4249
4249
4249
4250
4250
4250
4251
4251
4251
4252
4252
4252
4253
4253
4253
4254
4254
4254
4255
4255
4255
4256
4256
4256
4257
4257
4257
4258
4258
4258
4259
4259
4259
4260
4260
4260
4261
4261
4261
4262
4262
4262
4263
4263
4263
4264
4264
4264
4265
4265
4265
4266
4266
4266
4267
4267
4267
4268
4268
4268
4268
4269
4269
4269
4270
4270
4270
4271
4271
4271
4272
4272
4272
4273
4273
4273
4274
4274
4274
4275
4275
4275
4276
4276
4276
4277
4277
4277
4278
4278
4278
4279
4279
4279
4280
4280
4280
4281
4281
4281
4282
4282
4282
4283
4283
4283
4284
4284
4284
4285
4285
4285
4286
4286
4286
4287
4287
4287
4288
4288
4288
4289
4289
4289
4290
4290
4290
4290
4291
4291
4291
4292
4292
4292
4293
4293
4293
4294
4294
4294
4295
4295
4295
4296
4296
4296
4297
4297
4297
4298
4298
4298
4299
4299
4299
4300
4300
4300
4301
4301
4301
4302
4302
4302
4303
4303
4303
4304
4304
4304
4305
4305
4305
4306
4306
4306
4307
4307
4307
4308
4308
4308
4309
4309
4309
4310
4310
4310
4311
4311
4311
4312
4312
4312
4312
4313
4313
4313
4314
4314
4314
4315
4315
4315
4316
4316
4316
4317
4317
4317
4318
4318
4318
4319
4319
4319
4320
4320
4320
4321
4321
4321
4322
4322
4322
4323
4323
4323
4324
4324
4324
4325
4325
4325
4326
4326
4326
4327
4327
4327
4328
4328
4328
4329
4329
4329
4330
4330
4330
4331
4331
4331
4332
4332
4332
4333
4333
4333
4334
4334
4334
4334
4335
4335
4335
4336
4336
4336
4337
4337
4337
4338
4338
4338
4339
4339
4339
4340
4340
4340
4341
4341
4341
4342
4342
4342
4343
4343
4343
4344
4344
4344
4345
4345
4345
4346
4346
4346
4347
4347
4347
4348
4348
4348
4349
4349
4349
4350
4350
4350
4351
4351
4351
4352
4352
4352
4353
4353
4353
4354
4354
4354
4355
4355
4355
4356
4356
4356
4356
4357
4357
4357
4358
4358
4358
4359
4359
4359
4360
4360
4360
4361
4361
4361
4362
4362
4362
4363
4363
4363
4364
4364
4364
4365
4365
4365
4366
4366
4366
4367
4367
4367
4368
4368
4368
4369
4369
4369
4370
4370
4370
4371
4371
4371
4372
4372
4372
4373
4373
4373
4374
4374
4374
4375
4375
4375
4376
4376
4376
4377
4377
4377
4378
4378
4378
4379
4379
4380
4380
4381
4381
4382
4382
4383
4383
4384
4384
4385
4385
4386
4386
4387
4387
4388
4388
4389
4389
4390
4390
4391
4391
4392
4392
4393
4393
4394
4394
4395
4395
4396
4396
4397
4397
4398
4398
4399
4399
4400
4400
4400
4400
4401
4401
4401
4402
4402
4402
4403
4403
4403
4404
4404
4404
4405
4405
4405
4406
4406
4406
4407
4407
4407
4408
4408
4408
4409
4409
4409
4410
4410
4410
4411
4411
4411
4412
4412
4412
4413
4413
4413
4414
4414
4414
4415
4415
4415
4416
4416
4416
4417
4417
4417
4418
4418
4418
4419
4419
4419
4420
4420
4420
4421
4421
4421
4422
4422
4422
4422
4423
4423
4423
4424
4424
4424
4425
4425
4425
4426
4426
4426
4427
4427
4427
4428
4428
4428
4429
4429
4429
4430
4430
4430
4431
4431
4431
4432
4432
4432
4433
4433
4433
4434
4434
4434
4435
4435
4435
4436
4436
4436
4437
4437
4437
4438
4438
4438
4439
4439
4439
4440
4440
4440
4441
4441
4441
4442
4442
4442
4443
4443
4443
4444
4444
4444
4444
4445
4445
4445
4446
4446
4446
4447
4447
4447
4448
4448
4448
4449
4449
4449
4450
4450
4450
4451
4451
4451
4452
4452
4452
4453
4453
4453
4454
4454
4454
4455
4455
4455
4456
4456
4456
4457
4457
4457
4458
4458
4458
4459
4459
4459
4460
4460
4460
4461
4461
4461
4462
4462
4462
4463
4463
4463
4464
4464
4464
4465
4465
4465
4466
4466
4466
4466
4467
4467
4467
4468
4468
4468
4469
4469
4469
4470
4470
4470
4471
4471
4471
4472
4472
4472
4473
4473
4473
4474
4474
4474
4475
4475
4475
4476
4476
4476
4477
4477
4477
4478
4478
4478
4479
4479
4479
4480
4480
4480
4481
4481
4481
4482
4482
4482
4483
4483
4483
4484
4484
4484
4485
4485
4485
4486
4486
4486
4487
4487
4487
4488
4488
4488
4488
4489
4489
4489
4490
4490
4490
4491
4491
4491
4492
4492
4492
4493
4493
4493
4494
4494
4494
4495
4495
4495
4496
4496
4496
4497
4497
4497
4498
4498
4498
4499
4499
4499
4500
4500
4500
4501
4501
4501
4502
4502
4502
4503
4503
4503
4504
4504
4504
4505
4505
4505
4506
4506
4506
4507
4507
4507
4508
4508
4508
4509
4509
4509
4510
4510
4510
4510
4511
4511
4511
4512
4512
4512
4513
4513
4513
4514
4514
4514
4515
4515
4515
4516
4516
4516
4517
4517
4517
4518
4518
4518
4519
4519
4519
4520
4520
4520
4521
4521
4521
4522
4522
4522
4523
4523
4523
4524
4524
4524
4525
4525
4525
4526
4526
4526
4527
4527
4527
4528
4528
4528
4529
4529
4529
4530
4530
4530
4531
4531
4531
4532
4532
4532
4532
4533
4533
4533
4534
4534
4534
4535
4535
4535
4536
4536
4536
4537
4537
4537
4538
4538
4538
4539
4539
4539
4540
4540
4540
4541
4541
4541
4542
4542
4542
4543
4543
4543
4544
4544
4544
4545
4545
4545
4546
4546
4546
4547
4547
4547
4548
4548
4548
4549
4549
4549
4550
4550
4550
4551
4551
4551
4552
4552
4552
4553
4553
4553
4554
4554
4554
4554
4555
4555
4555
4556
4556
4556
4557
4557
4557
4558
4558
4558
4559
4559
4559
4560
4560
4560
4561
4561
4561
4562
4562
4562
4563
4563
4563
4564
4564
4564
4565
4565
4565
4566
4566
4566
4567
4567
4567
4568
4568
4568
4569
4569
4569
4570
4570
4570
4571
4571
4571
4572
4572
4572
4573
4573
4573
4574
4574
4574
4575
4575
4575
4576
4576
4576
4576
4577
4577
4577
4578
4578
4578
4579
4579
4579
4580
4580
4580
4581
4581
4581
4582
4582
4582
4583
4583
4583
4584
4584
4584
4585
4585
4585
4586
4586
4586
4587
4587
4587
4588
4588
4588
4589
4589
4589
4590
4590
4590
4591
4591
4591
4592
4592
4592
4593
4593
4593
4594
4594
4594
4595
4595
4595
4596
4596
4596
4597
4597
4597
4598
4598
4598
4599
4599
4600
4600
4601
4601
4602
4602
4603
4603
4604
4604
4605
4605
4606
4606
4607
4607
4608
4608
4609
4609
4610
4610
4611
4611
4612
4612
4613
4613
4614
4614
4615
4615
4616
4616
4617
4617
4618
4618
4619
4619
4620
4620
4620
4620
4621
4621
4621
4622
4622
4622
4623
4623
4623
4624
4624
4624
4625
4625
4625
4626
4626
4626
4627
4627
4627
4628
4628
4628
4629
4629
4629
4630
4630
4630
4631
4631
4631
4632
4632
4632
4633
4633
4633
4634
4634
4634
4635
4635
4635
4636
4636
4636
4637
4637
4637
4638
4638
4638
4639
4639
4639
4640
4640
4640
4641
4641
4641
4642
4642
4642
4642
4643
4643
4643
4644
4644
4644
4645
4645
4645
4646
4646
4646
4647
4647
4647
4648
4648
4648
4649
4649
4649
4650
4650
4650
4651
4651
4651
4652
4652
4652
4653
4653
4653
4654
4654
4654
4655
4655
4655
4656
4656
4656
4657
4657
4657
4658
4658
4658
4659
4659
4659
4660
4660
4660
4661
4661
4661
4662
4662
4662
4663
4663
4663
4664
4664
4664
4664
4665
4665
4665
4666
4666
4666
4667
4667
4667
4668
4668
4668
4669
4669
4669
4670
4670
4670
4671
4671
4671
4672
4672
4672
4673
4673
4673
4674
4674
4674
4675
4675
4675
4676
4676
4676
4677
4677
4677
4678
4678
4678
4679
4679
4679
4680
4680
4680
4681
4681
4681
4682
4682
4682
4683
4683
4683
4684
4684
4684
4685
4685
4685
4686
4686
4686
4686
4687
4687
4687
4688
4688
4688
4689
4689
4689
4690
4690
4690
4691
4691
4691
4692
4692
4692
4693
4693
4693
4694
4694
4694
4695
4695
4695
4696
4696
4696
4697
4697
4697
4698
4698
4698
4699
4699
4699
4700
4700
4700
4701
4701
4701
4702
4702
4702
4703
4703
4703
4704
4704
4704
4705
4705
4705
4706
4706
4706
4707
4707
4707
4708
4708
4708
4708
4709
4709
4709
4710
4710
4710
4711
4711
4711
4712
4712
4712
4713
4713
4713
4714
4714
4714
4715
4715
4715
4716
4716
4716
4717
4717
4717
4718
4718
4718
4719
4719
4719
4720
4720
4720
4721
4721
4721
4722
4722
4722
4723
4723
4723
4724
4724
4724
4725
4725
4725
4726
4726
4726
4727
4727
4727
4728
4728
4728
4729
4729
4729
4730
4730
4730
4730
4731
4731
4731
4732
4732
4732
4733
4733
4733
4734
4734
4734
4735
4735
4735
4736
4736
4736
4737
4737
4737
4738
4738
4738
4739
4739
4739
4740
4740
4740
4741
4741
4741
4742
4742
4742
4743
4743
4743
4744
4744
4744
4745
4745
4745
4746
4746
4746
4747
4747
4747
4748
4748
4748
4749
4749
4749
4750
4750
4750
4751
4751
4751
4752
4752
4752
4752
4753
4753
4753
4754
4754
4754
4755
4755
4755
4756
4756
4756
4757
4757
4757
4758
4758
4758
4759
4759
4759
4760
4760
4760
4761
4761
4761
4762
4762
4762
4763
4763
4763
4764
4764
4764
4765
4765
4765
4766
4766
4766
4767
4767
4767
4768
4768
4768
4769
4769
4769
4770
4770
4770
4771
4771
4771
4772
4772
4772
4773
4773
4773
4774
4774
4774
4774
4775
4775
4775
4776
4776
4776
4777
4777
4777
4778
4778
4778
4779
4779
4779
4780
4780
4780
4781
4781
4781
4782
4782
4782
4783
4783
4783
4784
4784
4784
4785
4785
4785
4786
4786
4786
4787
4787
4787
4788
4788
4788
4789
4789
4789
4790
4790
4790
4791
4791
4791
4792
4792
4792
4793
4793
4793
4794
4794
4794
4795
4795
4795
4796
4796
4796
4796
4797
4797
4797
4798
4798
4798
4799
4799
4799
4800
4800
4800
4801
4801
4801
4802
4802
4802
4803
4803
4803
4804
4804
4804
4805
4805
4805
4806
4806
4806
4807
4807
4807
4808
4808
4808
4809
4809
4809
4810
4810
4810
4811
4811
4811
4812
4812
4812
4813
4813
4813
4814
4814
4814
4815
4815
4815
4816
4816
4816
4817
4817
4817
4818
4818
4818
4819
4819
4820
4820
4821
4821
4822
4822
4823
4823
4824
4824
4825
4825
4826
4826
4827
4827
4828
4828
4829
4829
4830
4830
4831
4831
4832
4832
4833
4833
4834
4834
4835
4835
4836
4836
4837
4837
4838
4838
4839
4839
4840
4840
4840
4840
4841
4841
4841
4842
4842
4842
4843
4843
4843
4844
4844
4844
4845
4845
4845
4846
4846
4846
4847
4847
4847
4848
4848
4848
4849
4849
4849
4850
4850
4850
4851
4851
4851
4852
4852
4852
4853
4853
4853
4854
4854
4854
4855
4855
4855
4856
4856
4856
4857
4857
4857
4858
4858
4858
4859
4859
4859
4860
4860
4860
4861
4861
4861
4862
4862
4862
4862
4863
4863
4863
4864
4864
4864
4865
4865
4865
4866
4866
4866
4867
4867
4867
4868
4868
4868
4869
4869
4869
4870
4870
4870
4871
4871
4871
4872
4872
4872
4873
4873
4873
4874
4874
4874
4875
4875
4875
4876
4876
4876
4877
4877
4877
4878
4878
4878
4879
4879
4879
4880
4880
4880
4881
4881
4881
4882
4882
4882
4883
4883
4883
4884
4884
4884
4884
4885
4885
4885
4886
4886
4886
4887
4887
4887
4888
4888
4888
4889
4889
4889
4890
4890
4890
4891
4891
4891
4892
4892
4892
4893
4893
4893
4894
4894
4894
4895
4895
4895
4896
4896
4896
4897
4897
4897
4898
4898
4898
4899
4899
4899
4900
4900
4900
4901
4901
4901
4902
4902
4902
4903
4903
4903
4904
4904
4904
4905
4905
4905
4906
4906
4906
4906
4907
4907
4907
4908
4908
4908
4909
4909
4909
4910
4910
4910
4911
4911
4911
4912
4912
4912
4913
4913
4913
4914
4914
4914
4915
4915
4915
4916
4916
4916
4917
4917
4917
4918
4918
4918
4919
4919
4919
4920
4920
4920
4921
4921
4921
4922
4922
4922
4923
4923
4923
4924
4924
4924
4925
4925
4925
4926
4926
4926
4927
4927
4927
4928
4928
4928
4928
4929
4929
4929
4930
4930
4930
4931
4931
4931
4932
4932
4932
4933
4933
4933
4934
4934
4934
4935
4935
4935
4936
4936
4936
4937
4937
4937
4938
4938
4938
4939
4939
4939
4940
4940
4940
4941
4941
4941
4942
4942
4942
4943
4943
4943
4944
4944
4944
4945
4945
4945
4946
4946
4946
4947
4947
4947
4948
4948
4948
4949
4949
4949
4950
4950
4950
4950
4951
4951
4951
4952
4952
4952
4953
4953
4953
4954
4954
4954
4955
4955
4955
4956
4956
4956
4957
4957
4957
4958
4958
4958
4959
4959
4959
4960
4960
4960
4961
4961
4961
4962
4962
4962
4963
4963
4963
4964
4964
4964
4965
4965
4965
4966
4966
4966
4967
4967
4967
4968
4968
4968
4969
4969
4969
4970
4970
4970
4971
4971
4971
4972
4972
4972
4972
4973
4973
4973
4974
4974
4974
4975
4975
4975
4976
4976
4976
4977
4977
4977
4978
4978
4978
4979
4979
4979
4980
4980
4980
4981
4981
4981
4982
4982
4982
4983
4983
4983
4984
4984
4984
4985
4985
4985
4986
4986
4986
4987
4987
4987
4988
4988
4988
4989
4989
4989
4990
4990
4990
4991
4991
4991
4992
4992
4992
4993
4993
4993
4994
4994
4994
4994
4995
4995
4995
4996
4996
4996
4997
4997
4997
4998
4998
4998
4999
4999
4999
5000
5000
5000
5001
5001
5001
5002
5002
5002
5003
5003
5003
5004
5004
5004
5005
5005
5005
5006
5006
5006
5007
5007
5007
5008
5008
5008
5009
5009
5009
5010
5010
5010
5011
5011
5011
5012
5012
5012
5013
5013
5013
5014
5014
5014
5015
5015
5015
5016
5016
5016
5016
5017
5017
5017
5018
5018
5018
5019
5019
5019
5020
5020
5020
5021
5021
5021
5022
5022
5022
5023
5023
5023
5024
5024
5024
5025
5025
5025
5026
5026
5026
5027
5027
5027
5028
5028
5028
5029
5029
5029
5030
5030
5030
5031
5031
5031
5032
5032
5032
5033
5033
5033
5034
5034
5034
5035
5035
5035
5036
5036
5036
5037
5037
5037
5038
5038
5038
5039
5039
5040
5040
5041
5041
5042
5042
5043
5043
5044
5044
5045
5045
5046
5046
5047
5047
5048
5048
5049
5049
5050
5050
5051
5051
5052
5052
5053
5053
5054
5054
5055
5055
5056
5056
5057
5057
5058
5058
5059
5059
5060
5060
5060
5060
5061
5061
5061
5062
5062
5062
5063
5063
5063
5064
5064
5064
5065
5065
5065
5066
5066
5066
5067
5067
5067
5068
5068
5068
5069
5069
5069
5070
5070
5070
5071
5071
5071
5072
5072
5072
5073
5073
5073
5074
5074
5074
5075
5075
5075
5076
5076
5076
5077
5077
5077
5078
5078
5078
5079
5079
5079
5080
5080
5080
5081
5081
5081
5082
5082
5082
5082
5083
5083
5083
5084
5084
5084
5085
5085
5085
5086
5086
5086
5087
5087
5087
5088
5088
5088
5089
5089
5089
5090
5090
5090
5091
5091
5091
5092
5092
5092
5093
5093
5093
5094
5094
5094
5095
5095
5095
5096
5096
5096
5097
5097
5097
5098
5098
5098
5099
5099
5099
5100
5100
5100
5101
5101
5101
5102
5102
5102
5103
5103
5103
5104
5104
5104
5104
5105
5105
5105
5106
5106
5106
5107
5107
5107
5108
5108
5108
5109
5109
5109
5110
5110
5110
5111
5111
5111
5112
5112
5112
5113
5113
5113
5114
5114
5114
5115
5115
5115
5116
5116
5116
5117
5117
5117
5118
5118
5118
5119
5119
5119
5120
5120
5120
5121
5121
5121
5122
5122
5122
5123
5123
5123
5124
5124
5124
5125
5125
5125
5126
5126
5126
5126
5127
5127
5127
5128
5128
5128
5129
5129
5129
5130
5130
5130
5131
5131
5131
5132
5132
5132
5133
5133
5133
5134
5134
5134
5135
5135
5135
5136
5136
5136
5137
5137
5137
5138
5138
5138
5139
5139
5139
5140
5140
5140
5141
5141
5141
5142
5142
5142
5143
5143
5143
5144
5144
5144
5145
5145
5145
5146
5146
5146
5147
5147
5147
5148
5148
5148
5148
5149
5149
5149
5150
5150
5150
5151
5151
5151
5152
5152
5152
5153
5153
5153
5154
5154
5154
5155
5155
5155
5156
5156
5156
5157
5157
5157
5158
5158
5158
5159
5159
5159
5160
5160
5160
5161
5161
5161
5162
5162
5162
5163
5163
5163
5164
5164
5164
5165
5165
5165
5166
5166
5166
5167
5167
5167
5168
5168
5168
5169
5169
5169
5170
5170
5170
5170
5171
5171
5171
5172
5172
5172
5173
5173
5173
5174
5174
5174
5175
5175
5175
5176
5176
5176
5177
5177
5177
5178
5178
5178
5179
5179
5179
5180
5180
5180
5181
5181
5181
5182
5182
5182
5183
5183
5183
5184
5184
5184
5185
5185
5185
5186
5186
5186
5187
5187
5187
5188
5188
5188
5189
5189
5189
5190
5190
5190
5191
5191
5191
5192
5192
5192
5192
5193
5193
5193
5194
5194
5194
5195
5195
5195
5196
5196
5196
5197
5197
5197
5198
5198
5198
5199
5199
5199
5200
5200
5200
5201
5201
5201
5202
5202
5202
5203
5203
5203
5204
5204
5204
5205
5205
5205
5206
5206
5206
5207
5207
5207
5208
5208
5208
5209
5209
5209
5210
5210
5210
5211
5211
5211
5212
5212
5212
5213
5213
5213
5214
5214
5214
5214
5215
5215
5215
5216
5216
5216
5217
5217
5217
5218
5218
5218
5219
5219
5219
5220
5220
5220
5221
5221
5221
5222
5222
5222
5223
5223
5223
5224
5224
5224
5225
5225
5225
5226
5226
5226
5227
5227
5227
5228
5228
5228
5229
5229
5229
5230
5230
5230
5231
5231
5231
5232
5232
5232
5233
5233
5233
5234
5234
5234
5235
5235
5235
5236
5236
5236
5236
5237
5237
5237
5238
5238
5238
5239
5239
5239
5240
5240
5240
5241
5241
5241
5242
5242
5242
5243
5243
5243
5244
5244
5244
5245
5245
5245
5246
5246
5246
5247
5247
5247
5248
5248
5248
5249
5249
5249
5250
5250
5250
5251
5251
5251
5252
5252
5252
5253
5253
5253
5254
5254
5254
5255
5255
5255
5256
5256
5256
5257
5257
5257
5258
5258
5258
5259
5259
5260
5260
5261
5261
5262
5262
5263
5263
5264
5264
5265
5265
5266
5266
5267
5267
5268
5268
5269
5269
5270
5270
5271
5271
5272
5272
5273
5273
5274
5274
5275
5275
5276
5276
5277
5277
5278
5278
5279
5279
5280
5280
5280
5280
5281
5281
5281
5282
5282
5282
5283
5283
5283
5284
5284
5284
5285
5285
5285
5286
5286
5286
5287
5287
5287
5288
5288
5288
5289
5289
5289
5290
5290
5290
5291
5291
5291
5292
5292
5292
5293
5293
5293
5294
5294
5294
5295
5295
5295
5296
5296
5296
5297
5297
5297
5298
5298
5298
5299
5299
5299
5300
5300
5300
5301
5301
5301
5302
5302
5302
5302
5303
5303
5303
5304
5304
5304
5305
5305
5305
5306
5306
5306
5307
5307
5307
5308
5308
5308
5309
5309
5309
5310
5310
5310
5311
5311
5311
5312
5312
5312
5313
5313
5313
5314
5314
5314
5315
5315
5315
5316
5316
5316
5317
5317
5317
5318
5318
5318
5319
5319
5319
5320
5320
5320
5321
5321
5321
5322
5322
5322
5323
5323
5323
5324
5324
5324
5324
5325
5325
5325
5326
5326
5326
5327
5327
5327
5328
5328
5328
5329
5329
5329
5330
5330
5330
5331
5331
5331
5332
5332
5332
5333
5333
5333
5334
5334
5334
5335
5335
5335
5336
5336
5336
5337
5337
5337
5338
5338
5338
5339
5339
5339
5340
5340
5340
5341
5341
5341
5342
5342
5342
5343
5343
5343
5344
5344
5344
5345
5345
5345
5346
5346
5346
5346
5347
5347
5347
5348
5348
5348
5349
5349
5349
5350
5350
5350
5351
5351
5351
5352
5352
5352
5353
5353
5353
5354
5354
5354
5355
5355
5355
5356
5356
5356
5357
5357
5357
5358
5358
5358
5359
5359
5359
5360
5360
5360
5361
5361
5361
5362
5362
5362
5363
5363
5363
5364
5364
5364
5365
5365
5365
5366
5366
5366
5367
5367
5367
5368
5368
5368
5368
5369
5369
5369
5370
5370
5370
5371
5371
5371
5372
5372
5372
5373
5373
5373
5374
5374
5374
5375
5375
5375
5376
5376
5376
5377
5377
5377
5378
5378
5378
5379
5379
5379
5380
5380
5380
5381
5381
5381
5382
5382
5382
5383
5383
5383
5384
5384
5384
5385
5385
5385
5386
5386
5386
5387
5387
5387
5388
5388
5388
5389
5389
5389
5390
5390
5390
5390
5391
5391
5391
5392
5392
5392
5393
5393
5393
5394
5394
5394
5395
5395
5395
5396
5396
5396
5397
5397
5397
5398
5398
5398
5399
5399
5399
5400
5400
5400
5401
5401
5401
5402
5402
5402
5403
5403
5403
5404
5404
5404
5405
5405
5405
5406
5406
5406
5407
5407
5407
5408
5408
5408
5409
5409
5409
5410
5410
5410
5411
5411
5411
5412
5412
5412
5412
5413
5413
5413
5414
5414
5414
5415
5415
5415
5416
5416
5416
5417
5417
5417
5418
5418
5418
5419
5419
5419
5420
5420
5420
5421
5421
5421
5422
5422
5422
5423
5423
5423
5424
5424
5424
5425
5425
5425
5426
5426
5426
5427
5427
5427
5428
5428
5428
5429
5429
5429
5430
5430
5430
5431
5431
5431
5432
5432
5432
5433
5433
5433
5434
5434
5434
5434
5435
5435
5435
5436
5436
5436
5437
5437
5437
5438
5438
5438
5439
5439
5439
5440
5440
5440
5441
5441
5441
5442
5442
5442
5443
5443
5443
5444
5444
5444
5445
5445
5445
5446
5446
5446
5447
5447
5447
5448
5448
5448
5449
5449
5449
5450
5450
5450
5451
5451
5451
5452
5452
5452
5453
5453
5453
5454
5454
5454
5455
5455
5455
5456
5456
5456
5456
5457
5457
5457
5458
5458
5458
5459
5459
5459
5460
5460
5460
5461
5461
5461
5462
5462
5462
5463
5463
5463
5464
5464
5464
5465
5465
5465
5466
5466
5466
5467
5467
5467
5468
5468
5468
5469
5469
5469
5470
5470
5470
5471
5471
5471
5472
5472
5472
5473
5473
5473
5474
5474
5474
5475
5475
5475
5476
5476
5476
5477
5477
5477
5478
5478
5478
5479
5479
5480
5480
5481
5481
5482
5482
5483
5483
5484
5484
5485
5485
5486
5486
5487
5487
5488
5488
5489
5489
5490
5490
5491
5491
5492
5492
5493
5493
5494
5494
5495
5495
5496
5496
5497
5497
5498
5498
5499
5499
5500
5500
5500
5500
5501
5501
5501
5502
5502
5502
5503
5503
5503
5504
5504
5504
5505
5505
5505
5506
5506
5506
5507
5507
5507
5508
5508
5508
5509
5509
5509
5510
5510
5510
5511
5511
5511
5512
5512
5512
5513
5513
5513
5514
5514
5514
5515
5515
5515
5516
5516
5516
5517
5517
5517
5518
5518
5518
5519
5519
5519
5520
5520
5520
5521
5521
5521
5522
5522
5522
5522
5523
5523
5523
5524
5524
5524
5525
5525
5525
5526
5526
5526
5527
5527
5527
5528
5528
5528
5529
5529
5529
5530
5530
5530
5531
5531
5531
5532
5532
5532
5533
5533
5533
5534
5534
5534
5535
5535
5535
5536
5536
5536
5537
5537
5537
5538
5538
5538
5539
5539
5539
5540
5540
5540
5541
5541
5541
5542
5542
5542
5543
5543
5543
5544
5544
5544
5544
5545
5545
5545
5546
5546
5546
5547
5547
5547
5548
5548
5548
5549
5549
5549
5550
5550
5550
5551
5551
5551
5552
5552
5552
5553
5553
5553
5554
5554
5554
5555
5555
5555
5556
5556
5556
5557
5557
5557
5558
5558
5558
5559
5559
5559
5560
5560
5560
5561
5561
5561
5562
5562
5562
5563
5563
5563
5564
5564
5564
5565
5565
5565
5566
5566
5566
5566
5567
5567
5567
5568
5568
5568
5569
5569
5569
5570
5570
5570
5571
5571
5571
5572
5572
5572
5573
5573
5573
5574
5574
5574
5575
5575
5575
5576
5576
5576
5577
5577
5577
5578
5578
5578
5579
5579
5579
5580
5580
5580
5581
5581
5581
5582
5582
5582
5583
5583
5583
5584
5584
5584
5585
5585
5585
5586
5586
5586
5587
5587
5587
5588
5588
5588
5588
5589
5589
5589
5590
5590
5590
5591
5591
5591
5592
5592
5592
5593
5593
5593
5594
5594
5594
5595
5595
5595
5596
5596
5596
5597
5597
5597
5598
5598
5598
5599
5599
5599
5600
5600
5600
5601
5601
5601
5602
5602
5602
5603
5603
5603
5604
5604
5604
5605
5605
5605
5606
5606
5606
5607
5607
5607
5608
5608
5608
5609
5609
5609
5610
5610
5610
5610
5611
5611
5611
5612
5612
5612
5613
5613
5613
5614
5614
5614
5615
5615
5615
5616
5616
5616
5617
5617
5617
5618
5618
5618
5619
5619
5619
5620
5620
5620
5621
5621
5621
5622
5622
5622
5623
5623
5623
5624
5624
5624
5625
5625
5625
5626
5626
5626
5627
5627
5627
5628
5628
5628
5629
5629
5629
5630
5630
5630
5631
5631
5631
5632
5632
5632
5632
5633
5633
5633
5634
5634
5634
5635
5635
5635
5636
5636
5636
5637
5637
5637
5638
5638
5638
5639
5639
5639
5640
5640
5640
5641
5641
5641
5642
5642
5642
5643
5643
5643
5644
5644
5644
5645
5645
5645
5646
5646
5646
5647
5647
5647
5648
5648
5648
5649
5649
5649
5650
5650
5650
5651
5651
5651
5652
5652
5652
5653
5653
5653
5654
5654
5654
5654
5655
5655
5655
5656
5656
5656
5657
5657
5657
5658
5658
5658
5659
5659
5659
5660
5660
5660
5661
5661
5661
5662
5662
5662
5663
5663
5663
5664
5664
5664
5665
5665
5665
5666
5666
5666
5667
5667
5667
5668
5668
5668
5669
5669
5669
5670
5670
5670
5671
5671
5671
5672
5672
5672
5673
5673
5673
5674
5674
5674
5675
5675
5675
5676
5676
5676
5676
5677
5677
5677
5678
5678
5678
5679
5679
5679
5680
5680
5680
5681
5681
5681
5682
5682
5682
5683
5683
5683
5684
5684
5684
5685
5685
5685
5686
5686
5686
5687
5687
5687
5688
5688
5688
5689
5689
5689
5690
5690
5690
5691
5691
5691
5692
5692
5692
5693
5693
5693
5694
5694
5694
5695
5695
5695
5696
5696
5696
5697
5697
5697
5698
5698
5698
5699
5699
5700
5700
5701
5701
5702
5702
5703
5703
5704
5704
5705
5705
5706
5706
5707
5707
5708
5708
5709
5709
5710
5710
5711
5711
5712
5712
5713
5713
5714
5714
5715
5715
5716
5716
5717
5717
5718
5718
5719
5719
5720
5720
5720
5720
5721
5721
5721
5722
5722
5722
5723
5723
5723
5724
5724
5724
5725
5725
5725
5726
5726
5726
5727
5727
5727
5728
5728
5728
5729
5729
5729
5730
5730
5730
5731
5731
5731
5732
5732
5732
5733
5733
5733
5734
5734
5734
5735
5735
5735
5736
5736
5736
5737
5737
5737
5738
5738
5738
5739
5739
5739
5740
5740
5740
5741
5741
5741
5742
5742
5742
5742
5743
5743
5743
5744
5744
5744
5745
5745
5745
5746
5746
5746
5747
5747
5747
5748
5748
5748
5749
5749
5749
5750
5750
5750
5751
5751
5751
5752
5752
5752
5753
5753
5753
5754
5754
5754
5755
5755
5755
5756
5756
5756
5757
5757
5757
5758
5758
5758
5759
5759
5759
5760
5760
5760
5761
5761
5761
5762
5762
5762
5763
5763
5763
5764
5764
5764
5764
5765
5765
5765
5766
5766
5766
5767
5767
5767
5768
5768
5768
5769
5769
5769
5770
5770
5770
5771
5771
5771
5772
5772
5772
5773
5773
5773
5774
5774
5774
5775
5775
5775
5776
5776
5776
5777
5777
5777
5778
5778
5778
5779
5779
5779
5780
5780
5780
5781
5781
5781
5782
5782
5782
5783
5783
5783
5784
5784
5784
5785
5785
5785
5786
5786
5786
5786
5787
5787
5787
5788
5788
5788
5789
5789
5789
5790
5790
5790
5791
5791
5791
5792
5792
5792
5793
5793
5793
5794
5794
5794
5795
5795
5795
5796
5796
5796
5797
5797
5797
5798
5798
5798
5799
5799
5799
5800
5800
5800
5801
5801
5801
5802
5802
5802
5803
5803
5803
5804
5804
5804
5805
5805
5805
5806
5806
5806
5807
5807
5807
5808
5808
5808
5808
5809
5809
5809
5810
5810
5810
5811
5811
5811
5812
5812
5812
5813
5813
5813
5814
5814
5814
5815
5815
5815
5816
5816
5816
5817
5817
5817
5818
5818
5818
5819
5819
5819
5820
5820
5820
5821
5821
5821
5822
5822
5822
5823
5823
5823
5824
5824
5824
5825
5825
5825
5826
5826
5826
5827
5827
5827
5828
5828
5828
5829
5829
5829
5830
5830
5830
5830
5831
5831
5831
5832
5832
5832
5833
5833
5833
5834
5834
5834
5835
5835
5835
5836
5836
5836
5837
5837
5837
5838
5838
5838
5839
5839
5839
5840
5840
5840
5841
5841
5841
5842
5842
5842
5843
5843
5843
5844
5844
5844
5845
5845
5845
5846
5846
5846
5847
5847
5847
5848
5848
5848
5849
5849
5849
5850
5850
5850
5851
5851
5851
5852
5852
5852
5852
5853
5853
5853
5854
5854
5854
5855
5855
5855
5856
5856
5856
5857
5857
5857
5858
5858
5858
5859
5859
5859
5860
5860
5860
5861
5861
5861
5862
5862
5862
5863
5863
5863
5864
5864
5864
5865
5865
5865
5866
5866
5866
5867
5867
5867
5868
5868
5868
5869
5869
5869
5870
5870
5870
5871
5871
5871
5872
5872
5872
5873
5873
5873
5874
5874
5874
5874
5875
5875
5875
5876
5876
5876
5877
5877
5877
5878
5878
5878
5879
5879
5879
5880
5880
5880
5881
5881
5881
5882
5882
5882
5883
5883
5883
5884
5884
5884
5885
5885
5885
5886
5886
5886
5887
5887
5887
5888
5888
5888
5889
5889
5889
5890
5890
5890
5891
5891
5891
5892
5892
5892
5893
5893
5893
5894
5894
5894
5895
5895
5895
5896
5896
5896
5896
5897
5897
5897
5898
5898
5898
5899
5899
5899
5900
5900
5900
5901
5901
5901
5902
5902
5902
5903
5903
5903
5904
5904
5904
5905
5905
5905
5906
5906
5906
5907
5907
5907
5908
5908
5908
5909
5909
5909
5910
5910
5910
5911
5911
5911
5912
5912
5912
5913
5913
5913
5914
5914
5914
5915
5915
5915
5916
5916
5916
5917
5917
5917
5918
5918
5918
5919
5919
5920
5920
5921
5921
5922
5922
5923
5923
5924
5924
5925
5925
5926
5926
5927
5927
5928
5928
5929
5929
5930
5930
5931
5931
5932
5932
5933
5933
5934
5934
5935
5935
5936
5936
5937
5937
5938
5938
5939
5939
5940
5940
5940
5940
5941
5941
5941
5942
5942
5942
5943
5943
5943
5944
5944
5944
5945
5945
5945
5946
5946
5946
5947
5947
5947
5948
5948
5948
5949
5949
5949
5950
5950
5950
5951
5951
5951
5952
5952
5952
5953
5953
5953
5954
5954
5954
5955
5955
5955
5956
5956
5956
5957
5957
5957
5958
5958
5958
5959
5959
5959
5960
5960
5960
5961
5961
5961
5962
5962
5962
5962
5963
5963
5963
5964
5964
5964
5965
5965
5965
5966
5966
5966
5967
5967
5967
5968
5968
5968
5969
5969
5969
5970
5970
5970
5971
5971
5971
5972
5972
5972
5973
5973
5973
5974
5974
5974
5975
5975
5975
5976
5976
5976
5977
5977
5977
5978
5978
5978
5979
5979
5979
5980
5980
5980
5981
5981
5981
5982
5982
5982
5983
5983
5983
5984
5984
5984
5984
5985
5985
5985
5986
5986
5986
5987
5987
5987
5988
5988
5988
5989
5989
5989
5990
5990
5990
5991
5991
5991
5992
5992
5992
5993
5993
5993
5994
5994
5994
5995
5995
5995
5996
5996
5996
5997
5997
5997
5998
5998
5998
5999
5999
5999
6000
6000
6000
6001
6001
6001
6002
6002
6002
6003
6003
6003
6004
6004
6004
6005
6005
6005
6006
6006
6006
6006
6007
6007
6007
6008
6008
6008
6009
6009
6009
6010
6010
6010
6011
6011
6011
6012
6012
6012
6013
6013
6013
6014
6014
6014
6015
6015
6015
6016
6016
6016
6017
6017
6017
6018
6018
6018
6019
6019
6019
6020
6020
6020
6021
6021
6021
6022
6022
6022
6023
6023
6023
6024
6024
6024
6025
6025
6025
6026
6026
6026
6027
6027
6027
6028
6028
6028
6028
6029
6029
6029
6030
6030
6030
6031
6031
6031
6032
6032
6032
6033
6033
6033
6034
6034
6034
6035
6035
6035
6036
6036
6036
6037
6037
6037
6038
6038
6038
6039
6039
6039
6040
6040
6040
6041
6041
6041
6042
6042
6042
6043
6043
6043
6044
6044
6044
6045
6045
6045
6046
6046
6046
6047
6047
6047
6048
6048
6048
6049
6049
6049
6050
6050
6050
6050
6051
6051
6051
6052
6052
6052
6053
6053
6053
6054
6054
6054
6055
6055
6055
6056
6056
6056
6057
6057
6057
6058
6058
6058
6059
6059
6059
6060
6060
6060
6061
6061
6061
6062
6062
6062
6063
6063
6063
6064
6064
6064
6065
6065
6065
6066
6066
6066
6067
6067
6067
6068
6068
6068
6069
6069
6069
6070
6070
6070
6071
6071
6071
6072
6072
6072
6072
6073
6073
6073
6074
6074
6074
6075
6075
6075
6076
6076
6076
6077
6077
6077
6078
6078
6078
6079
6079
6079
6080
6080
6080
6081
6081
6081
6082
6082
6082
6083
6083
6083
6084
6084
6084
6085
6085
6085
6086
6086
6086
6087
6087
6087
6088
6088
6088
6089
6089
6089
6090
6090
6090
6091
6091
6091
6092
6092
6092
6093
6093
6093
6094
6094
6094
6094
6095
6095
6095
6096
6096
6096
6097
6097
6097
6098
6098
6098
6099
6099
6099
6100
6100
6100
6101
6101
6101
6102
6102
6102
6103
6103
6103
6104
6104
6104
6105
6105
6105
6106
6106
6106
6107
6107
6107
6108
6108
6108
6109
6109
6109
6110
6110
6110
6111
6111
6111
6112
6112
6112
6113
6113
6113
6114
6114
6114
6115
6115
6115
6116
6116
6116
6116
6117
6117
6117
6118
6118
6118
6119
6119
6119
6120
6120
6120
6121
6121
6121
6122
6122
6122
6123
6123
6123
6124
6124
6124
6125
6125
6125
6126
6126
6126
6127
6127
6127
6128
6128
6128
6129
6129
6129
6130
6130
6130
6131
6131
6131
6132
6132
6132
6133
6133
6133
6134
6134
6134
6135
6135
6135
6136
6136
6136
6137
6137
6137
6138
6138
6138
6139
6139
6140
6140
6141
6141
6142
6142
6143
6143
6144
6144
6145
6145
6146
6146
6147
6147
6148
6148
6149
6149
6150
6150
6151
6151
6152
6152
6153
6153
6154
6154
6155
6155
6156
6156
6157
6157
6158
6158
6159
6159
6160
6160
6160
6160
6161
6161
6161
6162
6162
6162
6163
6163
6163
6164
6164
6164
6165
6165
6165
6166
6166
6166
6167
6167
6167
6168
6168
6168
6169
6169
6169
6170
6170
6170
6171
6171
6171
6172
6172
6172
6173
6173
6173
6174
6174
6174
6175
6175
6175
6176
6176
6176
6177
6177
6177
6178
6178
6178
6179
6179
6179
6180
6180
6180
6181
6181
6181
6182
6182
6182
6182
6183
6183
6183
6184
6184
6184
6185
6185
6185
6186
6186
6186
6187
6187
6187
6188
6188
6188
6189
6189
6189
6190
6190
6190
6191
6191
6191
6192
6192
6192
6193
6193
6193
6194
6194
6194
6195
6195
6195
6196
6196
6196
6197
6197
6197
6198
6198
6198
6199
6199
6199
6200
6200
6200
6201
6201
6201
6202
6202
6202
6203
6203
6203
6204
6204
6204
6204
6205
6205
6205
6206
6206
6206
6207
6207
6207
6208
6208
6208
6209
6209
6209
6210
6210
6210
6211
6211
6211
6212
6212
6212
6213
6213
6213
6214
6214
6214
6215
6215
6215
6216
6216
6216
6217
6217
6217
6218
6218
6218
6219
6219
6219
6220
6220
6220
6221
6221
6221
6222
6222
6222
6223
6223
6223
6224
6224
6224
6225
6225
6225
6226
6226
6226
6226
6227
6227
6227
6228
6228
6228
6229
6229
6229
6230
6230
6230
6231
6231
6231
6232
6232
6232
6233
6233
6233
6234
6234
6234
6235
6235
6235
6236
6236
6236
6237
6237
6237
6238
6238
6238
6239
6239
6239
6240
6240
6240
6241
6241
6241
6242
6242
6242
6243
6243
6243
6244
6244
6244
6245
6245
6245
6246
6246
6246
6247
6247
6247
6248
6248
6248
6248
6249
6249
6249
6250
6250
6250
6251
6251
6251
6252
6252
6252
6253
6253
6253
6254
6254
6254
6255
6255
6255
6256
6256
6256
6257
6257
6257
6258
6258
6258
6259
6259
6259
6260
6260
6260
6261
6261
6261
6262
6262
6262
6263
6263
6263
6264
6264
6264
6265
6265
6265
6266
6266
6266
6267
6267
6267
6268
6268
6268
6269
6269
6269
6270
6270
6270
6270
6271
6271
6271
6272
6272
6272
6273
6273
6273
6274
6274
6274
6275
6275
6275
6276
6276
6276
6277
6277
6277
6278
6278
6278
6279
6279
6279
6280
6280
6280
6281
6281
6281
6282
6282
6282
6283
6283
6283
6284
6284
6284
6285
6285
6285
6286
6286
6286
6287
6287
6287
6288
6288
6288
6289
6289
6289
6290
6290
6290
6291
6291
6291
6292
6292
6292
6292
6293
6293
6293
6294
6294
6294
6295
6295
6295
6296
6296
6296
6297
6297
6297
6298
6298
6298
6299
6299
6299
6300
6300
6300
6301
6301
6301
6302
6302
6302
6303
6303
6303
6304
6304
6304
6305
6305
6305
6306
6306
6306
6307
6307
6307
6308
6308
6308
6309
6309
6309
6310
6310
6310
6311
6311
6311
6312
6312
6312
6313
6313
6313
6314
6314
6314
6314
6315
6315
6315
6316
6316
6316
6317
6317
6317
6318
6318
6318
6319
6319
6319
6320
6320
6320
6321
6321
6321
6322
6322
6322
6323
6323
6323
6324
6324
6324
6325
6325
6325
6326
6326
6326
6327
6327
6327
6328
6328
6328
6329
6329
6329
6330
6330
6330
6331
6331
6331
6332
6332
6332
6333
6333
6333
6334
6334
6334
6335
6335
6335
6336
6336
6336
6336
6337
6337
6337
6338
6338
6338
6339
6339
6339
6340
6340
6340
6341
6341
6341
6342
6342
6342
6343
6343
6343
6344
6344
6344
6345
6345
6345
6346
6346
6346
6347
6347
6347
6348
6348
6348
6349
6349
6349
6350
6350
6350
6351
6351
6351
6352
6352
6352
6353
6353
6353
6354
6354
6354
6355
6355
6355
6356
6356
6356
6357
6357
6357
6358
6358
6358
6359
6359
6360
6360
6361
6361
6362
6362
6363
6363
6364
6364
6365
6365
6366
6366
6367
6367
6368
6368
6369
6369
6370
6370
6371
6371
6372
6372
6373
6373
6374
6374
6375
6375
6376
6376
6377
6377
6378
6378
6379
6379
6380
6380
6380
6380
6381
6381
6381
6382
6382
6382
6383
6383
6383
6384
6384
6384
6385
6385
6385
6386
6386
6386
6387
6387
6387
6388
6388
6388
6389
6389
6389
6390
6390
6390
6391
6391
6391
6392
6392
6392
6393
6393
6393
6394
6394
6394
6395
6395
6395
6396
6396
6396
6397
6397
6397
6398
6398
6398
6399
6399
6399
6400
6400
6400
6401
6401
6401
6402
6402
6402
6402
6403
6403
6403
6404
6404
6404
6405
6405
6405
6406
6406
6406
6407
6407
6407
6408
6408
6408
6409
6409
6409
6410
6410
6410
6411
6411
6411
6412
6412
6412
6413
6413
6413
6414
6414
6414
6415
6415
6415
6416
6416
6416
6417
6417
6417
6418
6418
6418
6419
6419
6419
6420
6420
6420
6421
6421
6421
6422
6422
6422
6423
6423
6423
6424
6424
6424
6424
6425
6425
6425
6426
6426
6426
6427
6427
6427
6428
6428
6428
6429
6429
6429
6430
6430
6430
6431
6431
6431
6432
6432
6432
6433
6433
6433
6434
6434
6434
6435
6435
6435
6436
6436
6436
6437
6437
6437
6438
6438
6438
6439
6439
6439
6440
6440
6440
6441
6441
6441
6442
6442
6442
6443
6443
6443
6444
6444
6444
6445
6445
6445
6446
6446
6446
6446
6447
6447
6447
6448
6448
6448
6449
6449
6449
6450
6450
6450
6451
6451
6451
6452
6452
6452
6453
6453
6453
6454
6454
6454
6455
6455
6455
6456
6456
6456
6457
6457
6457
6458
6458
6458
6459
6459
6459
6460
6460
6460
6461
6461
6461
6462
6462
6462
6463
6463
6463
6464
6464
6464
6465
6465
6465
6466
6466
6466
6467
6467
6467
6468
6468
6468
6468
6469
6469
6469
6470
6470
6470
6471
6471
6471
6472
6472
6472
6473
6473
6473
6474
6474
6474
6475
6475
6475
6476
6476
6476
6477
6477
6477
6478
6478
6478
6479
6479
6479
6480
6480
6480
6481
6481
6481
6482
6482
6482
6483
6483
6483
6484
6484
6484
6485
6485
6485
6486
6486
6486
6487
6487
6487
6488
6488
6488
6489
6489
6489
6490
6490
6490
6490
6491
6491
6491
6492
6492
6492
6493
6493
6493
6494
6494
6494
6495
6495
6495
6496
6496
6496
6497
6497
6497
6498
6498
6498
6499
6499
6499
6500
6500
6500
6501
6501
6501
6502
6502
6502
6503
6503
6503
6504
6504
6504
6505
6505
6505
6506
6506
6506
6507
6507
6507
6508
6508
6508
6509
6509
6509
6510
6510
6510
6511
6511
6511
6512
6512
6512
6512
6513
6513
6513
6514
6514
6514
6515
6515
6515
6516
6516
6516
6517
6517
6517
6518
6518
6518
6519
6519
6519
6520
6520
6520
6521
6521
6521
6522
6522
6522
6523
6523
6523
6524
6524
6524
6525
6525
6525
6526
6526
6526
6527
6527
6527
6528
6528
6528
6529
6529
6529
6530
6530
6530
6531
6531
6531
6532
6532
6532
6533
6533
6533
6534
6534
6534
6534
6535
6535
6535
6536
6536
6536
6537
6537
6537
6538
6538
6538
6539
6539
6539
6540
6540
6540
6541
6541
6541
6542
6542
6542
6543
6543
6543
6544
6544
6544
6545
6545
6545
6546
6546
6546
6547
6547
6547
6548
6548
6548
6549
6549
6549
6550
6550
6550
6551
6551
6551
6552
6552
6552
6553
6553
6553
6554
6554
6554
6555
6555
6555
6556
6556
6556
6556
6557
6557
6557
6558
6558
6558
6559
6559
6559
6560
6560
6560
6561
6561
6561
6562
6562
6562
6563
6563
6563
6564
6564
6564
6565
6565
6565
6566
6566
6566
6567
6567
6567
6568
6568
6568
6569
6569
6569
6570
6570
6570
6571
6571
6571
6572
6572
6572
6573
6573
6573
6574
6574
6574
6575
6575
6575
6576
6576
6576
6577
6577
6577
6578
6578
6578
6579
6579
6580
6580
6581
6581
6582
6582
6583
6583
6584
6584
6585
6585
6586
6586
6587
6587
6588
6588
6589
6589
6590
6590
6591
6591
6592
6592
6593
6593
6594
6594
6595
6595
6596
6596
6597
6597
6598
6598
6599
6599
6600
6600
6600
6600
6601
6601
6601
6602
6602
6602
6603
6603
6603
6604
6604
6604
6605
6605
6605
6606
6606
6606
6607
6607
6607
6608
6608
6608
6609
6609
6609
6610
6610
6610
6611
6611
6611
6612
6612
6612
6613
6613
6613
6614
6614
6614
6615
6615
6615
6616
6616
6616
6617
6617
6617
6618
6618
6618
6619
6619
6619
6620
6620
6620
6621
6621
6621
6622
6622
6622
6622
6623
6623
6623
6624
6624
6624
6625
6625
6625
6626
6626
6626
6627
6627
6627
6628
6628
6628
6629
6629
6629
6630
6630
6630
6631
6631
6631
6632
6632
6632
6633
6633
6633
6634
6634
6634
6635
6635
6635
6636
6636
6636
6637
6637
6637
6638
6638
6638
6639
6639
6639
6640
6640
6640
6641
6641
6641
6642
6642
6642
6643
6643
6643
6644
6644
6644
6644
6645
6645
6645
6646
6646
6646
6647
6647
6647
6648
6648
6648
6649
6649
6649
6650
6650
6650
6651
6651
6651
6652
6652
6652
6653
6653
6653
6654
6654
6654
6655
6655
6655
6656
6656
6656
6657
6657
6657
6658
6658
6658
6659
6659
6659
6660
6660
6660
6661
6661
6661
6662
6662
6662
6663
6663
6663
6664
6664
6664
6665
6665
6665
6666
6666
6666
6666
6667
6667
6667
6668
6668
6668
6669
6669
6669
6670
6670
6670
6671
6671
6671
6672
6672
6672
6673
6673
6673
6674
6674
6674
6675
6675
6675
6676
6676
6676
6677
6677
6677
6678
6678
6678
6679
6679
6679
6680
6680
6680
6681
6681
6681
6682
6682
6682
6683
6683
6683
6684
6684
6684
6685
6685
6685
6686
6686
6686
6687
6687
6687
6688
6688
6688
6688
6689
6689
6689
6690
6690
6690
6691
6691
6691
6692
6692
6692
6693
6693
6693
6694
6694
6694
6695
6695
6695
6696
6696
6696
6697
6697
6697
6698
6698
6698
6699
6699
6699
6700
6700
6700
6701
6701
6701
6702
6702
6702
6703
6703
6703
6704
6704
6704
6705
6705
6705
6706
6706
6706
6707
6707
6707
6708
6708
6708
6709
6709
6709
6710
6710
6710
6710
6711
6711
6711
6712
6712
6712
6713
6713
6713
6714
6714
6714
6715
6715
6715
6716
6716
6716
6717
6717
6717
6718
6718
6718
6719
6719
6719
6720
6720
6720
6721
6721
6721
6722
6722
6722
6723
6723
6723
6724
6724
6724
6725
6725
6725
6726
6726
6726
6727
6727
6727
6728
6728
6728
6729
6729
6729
6730
6730
6730
6731
6731
6731
6732
6732
6732
6732
6733
6733
6733
6734
6734
6734
6735
6735
6735
6736
6736
6736
6737
6737
6737
6738
6738
6738
6739
6739
6739
6740
6740
6740
6741
6741
6741
6742
6742
6742
6743
6743
6743
6744
6744
6744
6745
6745
6745
6746
6746
6746
6747
6747
6747
6748
6748
6748
6749
6749
6749
6750
6750
6750
6751
6751
6751
6752
6752
6752
6753
6753
6753
6754
6754
6754
6754
6755
6755
6755
6756
6756
6756
6757
6757
6757
6758
6758
6758
6759
6759
6759
6760
6760
6760
6761
6761
6761
6762
6762
6762
6763
6763
6763
6764
6764
6764
6765
6765
6765
6766
6766
6766
6767
6767
6767
6768
6768
6768
6769
6769
6769
6770
6770
6770
6771
6771
6771
6772
6772
6772
6773
6773
6773
6774
6774
6774
6775
6775
6775
6776
6776
6776
6776
6777
6777
6777
6778
6778
6778
6779
6779
6779
6780
6780
6780
6781
6781
6781
6782
6782
6782
6783
6783
6783
6784
6784
6784
6785
6785
6785
6786
6786
6786
6787
6787
6787
6788
6788
6788
6789
6789
6789
6790
6790
6790
6791
6791
6791
6792
6792
6792
6793
6793
6793
6794
6794
6794
6795
6795
6795
6796
6796
6796
6797
6797
6797
6798
6798
6798
6799
6799
6800
6800
6801
6801
6802
6802
6803
6803
6804
6804
6805
6805
6806
6806
6807
6807
6808
6808
6809
6809
6810
6810
6811
6811
6812
6812
6813
6813
6814
6814
6815
6815
6816
6816
6817
6817
6818
6818
6819
6819
6820
6820
6820
6820
6821
6821
6821
6822
6822
6822
6823
6823
6823
6824
6824
6824
6825
6825
6825
6826
6826
6826
6827
6827
6827
6828
6828
6828
6829
6829
6829
6830
6830
6830
6831
6831
6831
6832
6832
6832
6833
6833
6833
6834
6834
6834
6835
6835
6835
6836
6836
6836
6837
6837
6837
6838
6838
6838
6839
6839
6839
6840
6840
6840
6841
6841
6841
6842
6842
6842
6842
6843
6843
6843
6844
6844
6844
6845
6845
6845
6846
6846
6846
6847
6847
6847
6848
6848
6848
6849
6849
6849
6850
6850
6850
6851
6851
6851
6852
6852
6852
6853
6853
6853
6854
6854
6854
6855
6855
6855
6856
6856
6856
6857
6857
6857
6858
6858
6858
6859
6859
6859
6860
6860
6860
6861
6861
6861
6862
6862
6862
6863
6863
6863
6864
6864
6864
6864
6865
6865
6865
6866
6866
6866
6867
6867
6867
6868
6868
6868
6869
6869
6869
6870
6870
6870
6871
6871
6871
6872
6872
6872
6873
6873
6873
6874
6874
6874
6875
6875
6875
6876
6876
6876
6877
6877
6877
6878
6878
6878
6879
6879
6879
6880
6880
6880
6881
6881
6881
6882
6882
6882
6883
6883
6883
6884
6884
6884
6885
6885
6885
6886
6886
6886
6886
6887
6887
6887
6888
6888
6888
6889
6889
6889
6890
6890
6890
6891
6891
6891
6892
6892
6892
6893
6893
6893
6894
6894
6894
6895
6895
6895
6896
6896
6896
6897
6897
6897
6898
6898
6898
6899
6899
6899
6900
6900
6900
6901
6901
6901
6902
6902
6902
6903
6903
6903
6904
6904
6904
6905
6905
6905
6906
6906
6906
6907
6907
6907
6908
6908
6908
6908
6909
6909
6909
6910
6910
6910
6911
6911
6911
6912
6912
6912
6913
6913
6913
6914
6914
6914
6915
6915
6915
6916
6916
6916
6917
6917
6917
6918
6918
6918
6919
6919
6919
6920
6920
6920
6921
6921
6921
6922
6922
6922
6923
6923
6923
6924
6924
6924
6925
6925
6925
6926
6926
6926
6927
6927
6927
6928
6928
6928
6929
6929
6929
6930
6930
6930
6930
6931
6931
6931
6932
6932
6932
6933
6933
6933
6934
6934
6934
6935
6935
6935
6936
6936
6936
6937
6937
6937
6938
6938
6938
6939
6939
6939
6940
6940
6940
6941
6941
6941
6942
6942
6942
6943
6943
6943
6944
6944
6944
6945
6945
6945
6946
6946
6946
6947
6947
6947
6948
6948
6948
6949
6949
6949
6950
6950
6950
6951
6951
6951
6952
6952
6952
6952
6953
6953
6953
6954
6954
6954
6955
6955
6955
6956
6956
6956
6957
6957
6957
6958
6958
6958
6959
6959
6959
6960
6960
6960
6961
6961
6961
6962
6962
6962
6963
6963
6963
6964
6964
6964
6965
6965
6965
6966
6966
6966
6967
6967
6967
6968
6968
6968
6969
6969
6969
6970
6970
6970
6971
6971
6971
6972
6972
6972
6973
6973
6973
6974
6974
6974
6974
6975
6975
6975
6976
6976
6976
6977
6977
6977
6978
6978
6978
6979
6979
6979
6980
6980
6980
6981
6981
6981
6982
6982
6982
6983
6983
6983
6984
6984
6984
6985
6985
6985
6986
6986
6986
6987
6987
6987
6988
6988
6988
6989
6989
6989
6990
6990
6990
6991
6991
6991
6992
6992
6992
6993
6993
6993
6994
6994
6994
6995
6995
6995
6996
6996
6996
6996
6997
6997
6997
6998
6998
6998
6999
6999
6999
7000
7000
7000
7001
7001
7001
7002
7002
7002
7003
7003
7003
7004
7004
7004
7005
7005
7005
7006
7006
7006
7007
7007
7007
7008
7008
7008
7009
7009
7009
7010
7010
7010
7011
7011
7011
7012
7012
7012
7013
7013
7013
7014
7014
7014
7015
7015
7015
7016
7016
7016
7017
7017
7017
7018
7018
7018
7019
7019
7020
7020
7021
7021
7022
7022
7023
7023
7024
7024
7025
7025
7026
7026
7027
7027
7028
7028
7029
7029
7030
7030
7031
7031
7032
7032
7033
7033
7034
7034
7035
7035
7036
7036
7037
7037
7038
7038
7039
7039
7040
7040
7040
7040
7041
7041
7041
7042
7042
7042
7043
7043
7043
7044
7044
7044
7045
7045
7045
7046
7046
7046
7047
7047
7047
7048
7048
7048
7049
7049
7049
7050
7050
7050
7051
7051
7051
7052
7052
7052
7053
7053
7053
7054
7054
7054
7055
7055
7055
7056
7056
7056
7057
7057
7057
7058
7058
7058
7059
7059
7059
7060
7060
7060
7061
7061
7061
7062
7062
7062
7062
7063
7063
7063
7064
7064
7064
7065
7065
7065
7066
7066
7066
7067
7067
7067
7068
7068
7068
7069
7069
7069
7070
7070
7070
7071
7071
7071
7072
7072
7072
7073
7073
7073
7074
7074
7074
7075
7075
7075
7076
7076
7076
7077
7077
7077
7078
7078
7078
7079
7079
7079
7080
7080
7080
7081
7081
7081
7082
7082
7082
7083
7083
7083
7084
7084
7084
7084
7085
7085
7085
7086
7086
7086
7087
7087
7087
7088
7088
7088
7089
7089
7089
7090
7090
7090
7091
7091
7091
7092
7092
7092
7093
7093
7093
7094
7094
7094
7095
7095
7095
7096
7096
7096
7097
7097
7097
7098
7098
7098
7099
7099
7099
7100
7100
7100
7101
7101
7101
7102
7102
7102
7103
7103
7103
7104
7104
7104
7105
7105
7105
7106
7106
7106
7106
7107
7107
7107
7108
7108
7108
7109
7109
7109
7110
7110
7110
7111
7111
7111
7112
7112
7112
7113
7113
7113
7114
7114
7114
7115
7115
7115
7116
7116
7116
7117
7117
7117
7118
7118
7118
7119
7119
7119
7120
7120
7120
7121
7121
7121
7122
7122
7122
7123
7123
7123
7124
7124
7124
7125
7125
7125
7126
7126
7126
7127
7127
7127
7128
7128
7128
7128
7129
7129
7129
7130
7130
7130
7131
7131
7131
7132
7132
7132
7133
7133
7133
7134
7134
7134
7135
7135
7135
7136
7136
7136
7137
7137
7137
7138
7138
7138
7139
7139
7139
7140
7140
7140
7141
7141
7141
7142
7142
7142
7143
7143
7143
7144
7144
7144
7145
7145
7145
7146
7146
7146
7147
7147
7147
7148
7148
7148
7149
7149
7149
7150
7150
7150
7150
7151
7151
7151
7152
7152
7152
7153
7153
7153
7154
7154
7154
7155
7155
7155
7156
7156
7156
7157
7157
7157
7158
7158
7158
7159
7159
7159
7160
7160
7160
7161
7161
7161
7162
7162
7162
7163
7163
7163
7164
7164
7164
7165
7165
7165
7166
7166
7166
7167
7167
7167
7168
7168
7168
7169
7169
7169
7170
7170
7170
7171
7171
7171
7172
7172
7172
7172
7173
7173
7173
7174
7174
7174
7175
7175
7175
7176
7176
7176
7177
7177
7177
7178
7178
7178
7179
7179
7179
7180
7180
7180
7181
7181
7181
7182
7182
7182
7183
7183
7183
7184
7184
7184
7185
7185
7185
7186
7186
7186
7187
7187
7187
7188
7188
7188
7189
7189
7189
7190
7190
7190
7191
7191
7191
7192
7192
7192
7193
7193
7193
7194
7194
7194
7194
7195
7195
7195
7196
7196
7196
7197
7197
7197
7198
7198
7198
7199
7199
7199
7200
7200
7200
7201
7201
7201
7202
7202
7202
7203
7203
7203
7204
7204
7204
7205
7205
7205
7206
7206
7206
7207
7207
7207
7208
7208
7208
7209
7209
7209
7210
7210
7210
7211
7211
7211
7212
7212
7212
7213
7213
7213
7214
7214
7214
7215
7215
7215
7216
7216
7216
7216
7217
7217
7217
7218
7218
7218
7219
7219
7219
7220
7220
7220
7221
7221
7221
7222
7222
7222
7223
7223
7223
7224
7224
7224
7225
7225
7225
7226
7226
7226
7227
7227
7227
7228
7228
7228
7229
7229
7229
7230
7230
7230
7231
7231
7231
7232
7232
7232
7233
7233
7233
7234
7234
7234
7235
7235
7235
7236
7236
7236
7237
7237
7237
7238
7238
7238
7239
7239
7240
7240
7241
7241
7242
7242
7243
7243
7244
7244
7245
7245
7246
7246
7247
7247
7248
7248
7249
7249
7250
7250
7251
7251
7252
7252
7253
7253
7254
7254
7255
7255
7256
7256
7257
7257
7258
7258
7259
7259
7260
7260
7260
7260
7261
7261
7261
7262
7262
7262
7263
7263
7263
7264
7264
7264
7265
7265
7265
7266
7266
7266
7267
7267
7267
7268
7268
7268
7269
7269
7269
7270
7270
7270
7271
7271
7271
7272
7272
7272
7273
7273
7273
7274
7274
7274
7275
7275
7275
7276
7276
7276
7277
7277
7277
7278
7278
7278
7279
7279
7279
7280
7280
7280
7281
7281
7281
7282
7282
7282
7282
7283
7283
7283
7284
7284
7284
7285
7285
7285
7286
7286
7286
7287
7287
7287
7288
7288
7288
7289
7289
7289
7290
7290
7290
7291
7291
7291
7292
7292
7292
7293
7293
7293
7294
7294
7294
7295
7295
7295
7296
7296
7296
7297
7297
7297
7298
7298
7298
7299
7299
7299
7300
7300
7300
7301
7301
7301
7302
7302
7302
7303
7303
7303
7304
7304
7304
7304
7305
7305
7305
7306
7306
7306
7307
7307
7307
7308
7308
7308
7309
7309
7309
7310
7310
7310
7311
7311
7311
7312
7312
7312
7313
7313
7313
7314
7314
7314
7315
7315
7315
7316
7316
7316
7317
7317
7317
7318
7318
7318
7319
7319
7319
7320
7320
7320
7321
7321
7321
7322
7322
7322
7323
7323
7323
7324
7324
7324
7325
7325
7325
7326
7326
7326
7326
7327
7327
7327
7328
7328
7328
7329
7329
7329
7330
7330
7330
7331
7331
7331
7332
7332
7332
7333
7333
7333
7334
7334
7334
7335
7335
7335
7336
7336
7336
7337
7337
7337
7338
7338
7338
7339
7339
7339
7340
7340
7340
7341
7341
7341
7342
7342
7342
7343
7343
7343
7344
7344
7344
7345
7345
7345
7346
7346
7346
7347
7347
7347
7348
7348
7348
7348
7349
7349
7349
7350
7350
7350
7351
7351
7351
7352
7352
7352
7353
7353
7353
7354
7354
7354
7355
7355
7355
7356
7356
7356
7357
7357
7357
7358
7358
7358
7359
7359
7359
7360
7360
7360
7361
7361
7361
7362
7362
7362
7363
7363
7363
7364
7364
7364
7365
7365
7365
7366
7366
7366
7367
7367
7367
7368
7368
7368
7369
7369
7369
7370
7370
7370
7370
7371
7371
7371
7372
7372
7372
7373
7373
7373
7374
7374
7374
7375
7375
7375
7376
7376
7376
7377
7377
7377
7378
7378
7378
7379
7379
7379
7380
7380
7380
7381
7381
7381
7382
7382
7382
7383
7383
7383
7384
7384
7384
7385
7385
7385
7386
7386
7386
7387
7387
7387
7388
7388
7388
7389
7389
7389
7390
7390
7390
7391
7391
7391
7392
7392
7392
7392
7393
7393
7393
7394
7394
7394
7395
7395
7395
7396
7396
7396
7397
7397
7397
7398
7398
7398
7399
7399
7399
7400
7400
7400
7401
7401
7401
7402
7402
7402
7403
7403
7403
7404
7404
7404
7405
7405
7405
7406
7406
7406
7407
7407
7407
7408
7408
7408
7409
7409
7409
7410
7410
7410
7411
7411
7411
7412
7412
7412
7413
7413
7413
7414
7414
7414
7414
7415
7415
7415
7416
7416
7416
7417
7417
7417
7418
7418
7418
7419
7419
7419
7420
7420
7420
7421
7421
7421
7422
7422
7422
7423
7423
7423
7424
7424
7424
7425
7425
7425
7426
7426
7426
7427
7427
7427
7428
7428
7428
7429
7429
7429
7430
7430
7430
7431
7431
7431
7432
7432
7432
7433
7433
7433
7434
7434
7434
7435
7435
7435
7436
7436
7436
7436
7437
7437
7437
7438
7438
7438
7439
7439
7439
7440
7440
7440
7441
7441
7441
7442
7442
7442
7443
7443
7443
7444
7444
7444
7445
7445
7445
7446
7446
7446
7447
7447
7447
7448
7448
7448
7449
7449
7449
7450
7450
7450
7451
7451
7451
7452
7452
7452
7453
7453
7453
7454
7454
7454
7455
7455
7455
7456
7456
7456
7457
7457
7457
7458
7458
7458
7459
7459
7460
7460
7461
7461
7462
7462
7463
7463
7464
7464
7465
7465
7466
7466
7467
7467
7468
7468
7469
7469
7470
7470
7471
7471
7472
7472
7473
7473
7474
7474
7475
7475
7476
7476
7477
7477
7478
7478
7479
7479
7480
7480
7480
7480
7481
7481
7481
7482
7482
7482
7483
7483
7483
7484
7484
7484
7485
7485
7485
7486
7486
7486
7487
7487
7487
7488
7488
7488
7489
7489
7489
7490
7490
7490
7491
7491
7491
7492
7492
7492
7493
7493
7493
7494
7494
7494
7495
7495
7495
7496
7496
7496
7497
7497
7497
7498
7498
7498
7499
7499
7499
7500
7500
7500
7501
7501
7501
7502
7502
7502
7502
7503
7503
7503
7504
7504
7504
7505
7505
7505
7506
7506
7506
7507
7507
7507
7508
7508
7508
7509
7509
7509
7510
7510
7510
7511
7511
7511
7512
7512
7512
7513
7513
7513
7514
7514
7514
7515
7515
7515
7516
7516
7516
7517
7517
7517
7518
7518
7518
7519
7519
7519
7520
7520
7520
7521
7521
7521
7522
7522
7522
7523
7523
7523
7524
7524
7524
7524
7525
7525
7525
7526
7526
7526
7527
7527
7527
7528
7528
7528
7529
7529
7529
7530
7530
7530
7531
7531
7531
7532
7532
7532
7533
7533
7533
7534
7534
7534
7535
7535
7535
7536
7536
7536
7537
7537
7537
7538
7538
7538
7539
7539
7539
7540
7540
7540
7541
7541
7541
7542
7542
7542
7543
7543
7543
7544
7544
7544
7545
7545
7545
7546
7546
7546
7546
7547
7547
7547
7548
7548
7548
7549
7549
7549
7550
7550
7550
7551
7551
7551
7552
7552
7552
7553
7553
7553
7554
7554
7554
7555
7555
7555
7556
7556
7556
7557
7557
7557
7558
7558
7558
7559
7559
7559
7560
7560
7560
7561
7561
7561
7562
7562
7562
7563
7563
7563
7564
7564
7564
7565
7565
7565
7566
7566
7566
7567
7567
7567
7568
7568
7568
7568
7569
7569
7569
7570
7570
7570
7571
7571
7571
7572
7572
7572
7573
7573
7573
7574
7574
7574
7575
7575
7575
7576
7576
7576
7577
7577
7577
7578
7578
7578
7579
7579
7579
7580
7580
7580
7581
7581
7581
7582
7582
7582
7583
7583
7583
7584
7584
7584
7585
7585
7585
7586
7586
7586
7587
7587
7587
7588
7588
7588
7589
7589
7589
7590
7590
7590
7590
7591
7591
7591
7592
7592
7592
7593
7593
7593
7594
7594
7594
7595
7595
7595
7596
7596
7596
7597
7597
7597
7598
7598
7598
7599
7599
7599
7600
7600
7600
7601
7601
7601
7602
7602
7602
7603
7603
7603
7604
7604
7604
7605
7605
7605
7606
7606
7606
7607
7607
7607
7608
7608
7608
7609
7609
7609
7610
7610
7610
7611
7611
7611
7612
7612
7612
7612
7613
7613
7613
7614
7614
7614
7615
7615
7615
7616
7616
7616
7617
7617
7617
7618
7618
7618
7619
7619
7619
7620
7620
7620
7621
7621
7621
7622
7622
7622
7623
7623
7623
7624
7624
7624
7625
7625
7625
7626
7626
7626
7627
7627
7627
7628
7628
7628
7629
7629
7629
7630
7630
7630
7631
7631
7631
7632
7632
7632
7633
7633
7633
7634
7634
7634
7634
7635
7635
7635
7636
7636
7636
7637
7637
7637
7638
7638
7638
7639
7639
7639
7640
7640
7640
7641
7641
7641
7642
7642
7642
7643
7643
7643
7644
7644
7644
7645
7645
7645
7646
7646
7646
7647
7647
7647
7648
7648
7648
7649
7649
7649
7650
7650
7650
7651
7651
7651
7652
7652
7652
7653
7653
7653
7654
7654
7654
7655
7655
7655
7656
7656
7656
7656
7657
7657
7657
7658
7658
7658
7659
7659
7659
7660
7660
7660
7661
7661
7661
7662
7662
7662
7663
7663
7663
7664
7664
7664
7665
7665
7665
7666
7666
7666
7667
7667
7667
7668
7668
7668
7669
7669
7669
7670
7670
7670
7671
7671
7671
7672
7672
7672
7673
7673
7673
7674
7674
7674
7675
7675
7675
7676
7676
7676
7677
7677
7677
7678
7678
7678
7679
7679
7680
7680
7681
7681
7682
7682
7683
7683
7684
7684
7685
7685
7686
7686
7687
7687
7688
7688
7689
7689
7690
7690
7691
7691
7692
7692
7693
7693
7694
7694
7695
7695
7696
7696
7697
7697
7698
7698
7699
7699
7700
7700
7700
7700
7701
7701
7701
7702
7702
7702
7703
7703
7703
7704
7704
7704
7705
7705
7705
7706
7706
7706
7707
7707
7707
7708
7708
7708
7709
7709
7709
7710
7710
7710
7711
7711
7711
7712
7712
7712
7713
7713
7713
7714
7714
7714
7715
7715
7715
7716
7716
7716
7717
7717
7717
7718
7718
7718
7719
7719
7719
7720
7720
7720
7721
7721
7721
7722
7722
7722
7722
7723
7723
7723
7724
7724
7724
7725
7725
7725
7726
7726
7726
7727
7727
7727
7728
7728
7728
7729
7729
7729
7730
7730
7730
7731
7731
7731
7732
7732
7732
7733
7733
7733
7734
7734
7734
7735
7735
7735
7736
7736
7736
7737
7737
7737
7738
7738
7738
7739
7739
7739
7740
7740
7740
7741
7741
7741
7742
7742
7742
7743
7743
7743
7744
7744
7744
7744
7745
7745
7745
7746
7746
7746
7747
7747
7747
7748
7748
7748
7749
7749
7749
7750
7750
7750
7751
7751
7751
7752
7752
7752
7753
7753
7753
7754
7754
7754
7755
7755
7755
7756
7756
7756
7757
7757
7757
7758
7758
7758
7759
7759
7759
7760
7760
7760
7761
7761
7761
7762
7762
7762
7763
7763
7763
7764
7764
7764
7765
7765
7765
7766
7766
7766
7766
7767
7767
7767
7768
7768
7768
7769
7769
7769
7770
7770
7770
7771
7771
7771
7772
7772
7772
7773
7773
7773
7774
7774
7774
7775
7775
7775
7776
7776
7776
7777
7777
7777
7778
7778
7778
7779
7779
7779
7780
7780
7780
7781
7781
7781
7782
7782
7782
7783
7783
7783
7784
7784
7784
7785
7785
7785
7786
7786
7786
7787
7787
7787
7788
7788
7788
7788
7789
7789
7789
7790
7790
7790
7791
7791
7791
7792
7792
7792
7793
7793
7793
7794
7794
7794
7795
7795
7795
7796
7796
7796
7797
7797
7797
7798
7798
7798
7799
7799
7799
7800
7800
7800
7801
7801
7801
7802
7802
7802
7803
7803
7803
7804
7804
7804
7805
7805
7805
7806
7806
7806
7807
7807
7807
7808
7808
7808
7809
7809
7809
7810
7810
7810
7810
7811
7811
7811
7812
7812
7812
7813
7813
7813
7814
7814
7814
7815
7815
7815
7816
7816
7816
7817
7817
7817
7818
7818
7818
7819
7819
7819
7820
7820
7820
7821
7821
7821
7822
7822
7822
7823
7823
7823
7824
7824
7824
7825
7825
7825
7826
7826
7826
7827
7827
7827
7828
7828
7828
7829
7829
7829
7830
7830
7830
7831
7831
7831
7832
7832
7832
7832
7833
7833
7833
7834
7834
7834
7835
7835
7835
7836
7836
7836
7837
7837
7837
7838
7838
7838
7839
7839
7839
7840
7840
7840
7841
7841
7841
7842
7842
7842
7843
7843
7843
7844
7844
7844
7845
7845
7845
7846
7846
7846
7847
7847
7847
7848
7848
7848
7849
7849
7849
7850
7850
7850
7851
7851
7851
7852
7852
7852
7853
7853
7853
7854
7854
7854
7854
7855
7855
7855
7856
7856
7856
7857
7857
7857
7858
7858
7858
7859
7859
7859
7860
7860
7860
7861
7861
7861
7862
7862
7862
7863
7863
7863
7864
7864
7864
7865
7865
7865
7866
7866
7866
7867
7867
7867
7868
7868
7868
7869
7869
7869
7870
7870
7870
7871
7871
7871
7872
7872
7872
7873
7873
7873
7874
7874
7874
7875
7875
7875
7876
7876
7876
7876
7877
7877
7877
7878
7878
7878
7879
7879
7879
7880
7880
7880
7881
7881
7881
7882
7882
7882
7883
7883
7883
7884
7884
7884
7885
7885
7885
7886
7886
7886
7887
7887
7887
7888
7888
7888
7889
7889
7889
7890
7890
7890
7891
7891
7891
7892
7892
7892
7893
7893
7893
7894
7894
7894
7895
7895
7895
7896
7896
7896
7897
7897
7897
7898
7898
7898
7899
7899
7900
7900
7901
7901
7902
7902
7903
7903
7904
7904
7905
7905
7906
7906
7907
7907
7908
7908
7909
7909
7910
7910
7911
7911
7912
7912
7913
7913
7914
7914
7915
7915
7916
7916
7917
7917
7918
7918
7919
7919
7920
7920
7920
7920
7921
7921
7921
7922
7922
7922
7923
7923
7923
7924
7924
7924
7925
7925
7925
7926
7926
7926
7927
7927
7927
7928
7928
7928
7929
7929
7929
7930
7930
7930
7931
7931
7931
7932
7932
7932
7933
7933
7933
7934
7934
7934
7935
7935
7935
7936
7936
7936
7937
7937
7937
7938
7938
7938
7939
7939
7939
7940
7940
7940
7941
7941
7941
7942
7942
7942
7942
7943
7943
7943
7944
7944
7944
7945
7945
7945
7946
7946
7946
7947
7947
7947
7948
7948
7948
7949
7949
7949
7950
7950
7950
7951
7951
7951
7952
7952
7952
7953
7953
7953
7954
7954
7954
7955
7955
7955
7956
7956
7956
7957
7957
7957
7958
7958
7958
7959
7959
7959
7960
7960
7960
7961
7961
7961
7962
7962
7962
7963
7963
7963
7964
7964
7964
7964
7965
7965
7965
7966
7966
7966
7967
7967
7967
7968
7968
7968
7969
7969
7969
7970
7970
7970
7971
7971
7971
7972
7972
7972
7973
7973
7973
7974
7974
7974
7975
7975
7975
7976
7976
7976
7977
7977
7977
7978
7978
7978
7979
7979
7979
7980
7980
7980
7981
7981
7981
7982
7982
7982
7983
7983
7983
7984
7984
7984
7985
7985
7985
7986
7986
7986
7986
7987
7987
7987
7988
7988
7988
7989
7989
7989
7990
7990
7990
7991
7991
7991
7992
7992
7992
7993
7993
7993
7994
7994
7994
7995
7995
7995
7996
7996
7996
7997
7997
7997
7998
7998
7998
7999
7999
7999
8000
8000
8000
8001
8001
8001
8002
8002
8002
8003
8003
8003
8004
8004
8004
8005
8005
8005
8006
8006
8006
8007
8007
8007
8008
8008
8008
8008
8009
8009
8009
8010
8010
8010
8011
8011
8011
8012
8012
8012
8013
8013
8013
8014
8014
8014
8015
8015
8015
8016
8016
8016
8017
8017
8017
8018
8018
8018
8019
8019
8019
8020
8020
8020
8021
8021
8021
8022
8022
8022
8023
8023
8023
8024
8024
8024
8025
8025
8025
8026
8026
8026
8027
8027
8027
8028
8028
8028
8029
8029
8029
8030
8030
8030
8030
8031
8031
8031
8032
8032
8032
8033
8033
8033
8034
8034
8034
8035
8035
8035
8036
8036
8036
8037
8037
8037
8038
8038
8038
8039
8039
8039
8040
8040
8040
8041
8041
8041
8042
8042
8042
8043
8043
8043
8044
8044
8044
8045
8045
8045
8046
8046
8046
8047
8047
8047
8048
8048
8048
8049
8049
8049
8050
8050
8050
8051
8051
8051
8052
8052
8052
8052
8053
8053
8053
8054
8054
8054
8055
8055
8055
8056
8056
8056
8057
8057
8057
8058
8058
8058
8059
8059
8059
8060
8060
8060
8061
8061
8061
8062
8062
8062
8063
8063
8063
8064
8064
8064
8065
8065
8065
8066
8066
8066
8067
8067
8067
8068
8068
8068
8069
8069
8069
8070
8070
8070
8071
8071
8071
8072
8072
8072
8073
8073
8073
8074
8074
8074
8074
8075
8075
8075
8076
8076
8076
8077
8077
8077
8078
8078
8078
8079
8079
8079
8080
8080
8080
8081
8081
8081
8082
8082
8082
8083
8083
8083
8084
8084
8084
8085
8085
8085
8086
8086
8086
8087
8087
8087
8088
8088
8088
8089
8089
8089
8090
8090
8090
8091
8091
8091
8092
8092
8092
8093
8093
8093
8094
8094
8094
8095
8095
8095
8096
8096
8096
8096
8097
8097
8097
8098
8098
8098
8099
8099
8099
8100
8100
8100
8101
8101
8101
8102
8102
8102
8103
8103
8103
8104
8104
8104
8105
8105
8105
8106
8106
8106
8107
8107
8107
8108
8108
8108
8109
8109
8109
8110
8110
8110
8111
8111
8111
8112
8112
8112
8113
8113
8113
8114
8114
8114
8115
8115
8115
8116
8116
8116
8117
8117
8117
8118
8118
8118
8119
8119
8120
8120
8121
8121
8122
8122
8123
8123
8124
8124
8125
8125
8126
8126
8127
8127
8128
8128
8129
8129
8130
8130
8131
8131
8132
8132
8133
8133
8134
8134
8135
8135
8136
8136
8137
8137
8138
8138
8139
8139
8140
8140
8140
8140
8141
8141
8141
8142
8142
8142
8143
8143
8143
8144
8144
8144
8145
8145
8145
8146
8146
8146
8147
8147
8147
8148
8148
8148
8149
8149
8149
8150
8150
8150
8151
8151
8151
8152
8152
8152
8153
8153
8153
8154
8154
8154
8155
8155
8155
8156
8156
8156
8157
8157
8157
8158
8158
8158
8159
8159
8159
8160
8160
8160
8161
8161
8161
8162
8162
8162
8162
8163
8163
8163
8164
8164
8164
8165
8165
8165
8166
8166
8166
8167
8167
8167
8168
8168
8168
8169
8169
8169
8170
8170
8170
8171
8171
8171
8172
8172
8172
8173
8173
8173
8174
8174
8174
8175
8175
8175
8176
8176
8176
8177
8177
8177
8178
8178
8178
8179
8179
8179
8180
8180
8180
8181
8181
8181
8182
8182
8182
8183
8183
8183
8184
8184
8184
8184
8185
8185
8185
8186
8186
8186
8187
8187
8187
8188
8188
8188
8189
8189
8189
8190
8190
8190
8191
8191
8191
8192
8192
8192
8193
8193
8193
8194
8194
8194
8195
8195
8195
8196
8196
8196
8197
8197
8197
8198
8198
8198
8199
8199
8199
8200
8200
8200
8201
8201
8201
8202
8202
8202
8203
8203
8203
8204
8204
8204
8205
8205
8205
8206
8206
8206
8206
8207
8207
8207
8208
8208
8208
8209
8209
8209
8210
8210
8210
8211
8211
8211
8212
8212
8212
8213
8213
8213
8214
8214
8214
8215
8215
8215
8216
8216
8216
8217
8217
8217
8218
8218
8218
8219
8219
8219
8220
8220
8220
8221
8221
8221
8222
8222
8222
8223
8223
8223
8224
8224
8224
8225
8225
8225
8226
8226
8226
8227
8227
8227
8228
8228
8228
8228
8229
8229
8229
8230
8230
8230
8231
8231
8231
8232
8232
8232
8233
8233
8233
8234
8234
8234
8235
8235
8235
8236
8236
8236
8237
8237
8237
8238
8238
8238
8239
8239
8239
8240
8240
8240
8241
8241
8241
8242
8242
8242
8243
8243
8243
8244
8244
8244
8245
8245
8245
8246
8246
8246
8247
8247
8247
8248
8248
8248
8249
8249
8249
8250
8250
8250
8250
8251
8251
8251
8252
8252
8252
8253
8253
8253
8254
8254
8254
8255
8255
8255
8256
8256
8256
8257
8257
8257
8258
8258
8258
8259
8259
8259
8260
8260
8260
8261
8261
8261
8262
8262
8262
8263
8263
8263
8264
8264
8264
8265
8265
8265
8266
8266
8266
8267
8267
8267
8268
8268
8268
8269
8269
8269
8270
8270
8270
8271
8271
8271
8272
8272
8272
8272
8273
8273
8273
8274
8274
8274
8275
8275
8275
8276
8276
8276
8277
8277
8277
8278
8278
8278
8279
8279
8279
8280
8280
8280
8281
8281
8281
8282
8282
8282
8283
8283
8283
8284
8284
8284
8285
8285
8285
8286
8286
8286
8287
8287
8287
8288
8288
8288
8289
8289
8289
8290
8290
8290
8291
8291
8291
8292
8292
8292
8293
8293
8293
8294
8294
8294
8294
8295
8295
8295
8296
8296
8296
8297
8297
8297
8298
8298
8298
8299
8299
8299
8300
8300
8300
8301
8301
8301
8302
8302
8302
8303
8303
8303
8304
8304
8304
8305
8305
8305
8306
8306
8306
8307
8307
8307
8308
8308
8308
8309
8309
8309
8310
8310
8310
8311
8311
8311
8312
8312
8312
8313
8313
8313
8314
8314
8314
8315
8315
8315
8316
8316
8316
8316
8317
8317
8317
8318
8318
8318
8319
8319
8319
8320
8320
8320
8321
8321
8321
8322
8322
8322
8323
8323
8323
8324
8324
8324
8325
8325
8325
8326
8326
8326
8327
8327
8327
8328
8328
8328
8329
8329
8329
8330
8330
8330
8331
8331
8331
8332
8332
8332
8333
8333
8333
8334
8334
8334
8335
8335
8335
8336
8336
8336
8337
8337
8337
8338
8338
8338
8339
8339
8340
8340
8341
8341
8342
8342
8343
8343
8344
8344
8345
8345
8346
8346
8347
8347
8348
8348
8349
8349
8350
8350
8351
8351
8352
8352
8353
8353
8354
8354
8355
8355
8356
8356
8357
8357
8358
8358
8359
8359
8360
8360
8360
8360
8361
8361
8361
8362
8362
8362
8363
8363
8363
8364
8364
8364
8365
8365
8365
8366
8366
8366
8367
8367
8367
8368
8368
8368
8369
8369
8369
8370
8370
8370
8371
8371
8371
8372
8372
8372
8373
8373
8373
8374
8374
8374
8375
8375
8375
8376
8376
8376
8377
8377
8377
8378
8378
8378
8379
8379
8379
8380
8380
8380
8381
8381
8381
8382
8382
8382
8382
8383
8383
8383
8384
8384
8384
8385
8385
8385
8386
8386
8386
8387
8387
8387
8388
8388
8388
8389
8389
8389
8390
8390
8390
8391
8391
8391
8392
8392
8392
8393
8393
8393
8394
8394
8394
8395
8395
8395
8396
8396
8396
8397
8397
8397
8398
8398
8398
8399
8399
8399
8400
8400
8400
8401
8401
8401
8402
8402
8402
8403
8403
8403
8404
8404
8404
8404
8405
8405
8405
8406
8406
8406
8407
8407
8407
8408
8408
8408
8409
8409
8409
8410
8410
8410
8411
8411
8411
8412
8412
8412
8413
8413
8413
8414
8414
8414
8415
8415
8415
8416
8416
8416
8417
8417
8417
8418
8418
8418
8419
8419
8419
8420
8420
8420
8421
8421
8421
8422
8422
8422
8423
8423
8423
8424
8424
8424
8425
8425
8425
8426
8426
8426
8426
8427
8427
8427
8428
8428
8428
8429
8429
8429
8430
8430
8430
8431
8431
8431
8432
8432
8432
8433
8433
8433
8434
8434
8434
8435
8435
8435
8436
8436
8436
8437
8437
8437
8438
8438
8438
8439
8439
8439
8440
8440
8440
8441
8441
8441
8442
8442
8442
8443
8443
8443
8444
8444
8444
8445
8445
8445
8446
8446
8446
8447
8447
8447
8448
8448
8448
8448
8449
8449
8449
8450
8450
8450
8451
8451
8451
8452
8452
8452
8453
8453
8453
8454
8454
8454
8455
8455
8455
8456
8456
8456
8457
8457
8457
8458
8458
8458
8459
8459
8459
8460
8460
8460
8461
8461
8461
8462
8462
8462
8463
8463
8463
8464
8464
8464
8465
8465
8465
8466
8466
8466
8467
8467
8467
8468
8468
8468
8469
8469
8469
8470
8470
8470
8470
8471
8471
8471
8472
8472
8472
8473
8473
8473
8474
8474
8474
8475
8475
8475
8476
8476
8476
8477
8477
8477
8478
8478
8478
8479
8479
8479
8480
8480
8480
8481
8481
8481
8482
8482
8482
8483
8483
8483
8484
8484
8484
8485
8485
8485
8486
8486
8486
8487
8487
8487
8488
8488
8488
8489
8489
8489
8490
8490
8490
8491
8491
8491
8492
8492
8492
8492
8493
8493
8493
8494
8494
8494
8495
8495
8495
8496
8496
8496
8497
8497
8497
8498
8498
8498
8499
8499
8499
8500
8500
8500
8501
8501
8501
8502
8502
8502
8503
8503
8503
8504
8504
8504
8505
8505
8505
8506
8506
8506
8507
8507
8507
8508
8508
8508
8509
8509
8509
8510
8510
8510
8511
8511
8511
8512
8512
8512
8513
8513
8513
8514
8514
8514
8514
8515
8515
8515
8516
8516
8516
8517
8517
8517
8518
8518
8518
8519
8519
8519
8520
8520
8520
8521
8521
8521
8522
8522
8522
8523
8523
8523
8524
8524
8524
8525
8525
8525
8526
8526
8526
8527
8527
8527
8528
8528
8528
8529
8529
8529
8530
8530
8530
8531
8531
8531
8532
8532
8532
8533
8533
8533
8534
8534
8534
8535
8535
8535
8536
8536
8536
8536
8537
8537
8537
8538
8538
8538
8539
8539
8539
8540
8540
8540
8541
8541
8541
8542
8542
8542
8543
8543
8543
8544
8544
8544
8545
8545
8545
8546
8546
8546
8547
8547
8547
8548
8548
8548
8549
8549
8549
8550
8550
8550
8551
8551
8551
8552
8552
8552
8553
8553
8553
8554
8554
8554
8555
8555
8555
8556
8556
8556
8557
8557
8557
8558
8558
8558
8559
8559
8560
8560
8561
8561
8562
8562
8563
8563
8564
8564
8565
8565
8566
8566
8567
8567
8568
8568
8569
8569
8570
8570
8571
8571
8572
8572
8573
8573
8574
8574
8575
8575
8576
8576
8577
8577
8578
8578
8579
8579
8580
8580
8580
8580
8581
8581
8581
8582
8582
8582
8583
8583
8583
8584
8584
8584
8585
8585
8585
8586
8586
8586
8587
8587
8587
8588
8588
8588
8589
8589
8589
8590
8590
8590
8591
8591
8591
8592
8592
8592
8593
8593
8593
8594
8594
8594
8595
8595
8595
8596
8596
8596
8597
8597
8597
8598
8598
8598
8599
8599
8599
8600
8600
8600
8601
8601
8601
8602
8602
8602
8602
8603
8603
8603
8604
8604
8604
8605
8605
8605
8606
8606
8606
8607
8607
8607
8608
8608
8608
8609
8609
8609
8610
8610
8610
8611
8611
8611
8612
8612
8612
8613
8613
8613
8614
8614
8614
8615
8615
8615
8616
8616
8616
8617
8617
8617
8618
8618
8618
8619
8619
8619
8620
8620
8620
8621
8621
8621
8622
8622
8622
8623
8623
8623
8624
8624
8624
8624
8625
8625
8625
8626
8626
8626
8627
8627
8627
8628
8628
8628
8629
8629
8629
8630
8630
8630
8631
8631
8631
8632
8632
8632
8633
8633
8633
8634
8634
8634
8635
8635
8635
8636
8636
8636
8637
8637
8637
8638
8638
8638
8639
8639
8639
8640
8640
8640
8641
8641
8641
8642
8642
8642
8643
8643
8643
8644
8644
8644
8645
8645
8645
8646
8646
8646
8646
8647
8647
8647
8648
8648
8648
8649
8649
8649
8650
8650
8650
8651
8651
8651
8652
8652
8652
8653
8653
8653
8654
8654
8654
8655
8655
8655
8656
8656
8656
8657
8657
8657
8658
8658
8658
8659
8659
8659
8660
8660
8660
8661
8661
8661
8662
8662
8662
8663
8663
8663
8664
8664
8664
8665
8665
8665
8666
8666
8666
8667
8667
8667
8668
8668
8668
8668
8669
8669
8669
8670
8670
8670
8671
8671
8671
8672
8672
8672
8673
8673
8673
8674
8674
8674
8675
8675
8675
8676
8676
8676
8677
8677
8677
8678
8678
8678
8679
8679
8679
8680
8680
8680
8681
8681
8681
8682
8682
8682
8683
8683
8683
8684
8684
8684
8685
8685
8685
8686
8686
8686
8687
8687
8687
8688
8688
8688
8689
8689
8689
8690
8690
8690
8690
8691
8691
8691
8692
8692
8692
8693
8693
8693
8694
8694
8694
8695
8695
8695
8696
8696
8696
8697
8697
8697
8698
8698
8698
8699
8699
8699
8700
8700
8700
8701
8701
8701
8702
8702
8702
8703
8703
8703
8704
8704
8704
8705
8705
8705
8706
8706
8706
8707
8707
8707
8708
8708
8708
8709
8709
8709
8710
8710
8710
8711
8711
8711
8712
8712
8712
8712
8713
8713
8713
8714
8714
8714
8715
8715
8715
8716
8716
8716
8717
8717
8717
8718
8718
8718
8719
8719
8719
8720
8720
8720
8721
8721
8721
8722
8722
8722
8723
8723
8723
8724
8724
8724
8725
8725
8725
8726
8726
8726
8727
8727
8727
8728
8728
8728
8729
8729
8729
8730
8730
8730
8731
8731
8731
8732
8732
8732
8733
8733
8733
8734
8734
8734
8734
8735
8735
8735
8736
8736
8736
8737
8737
8737
8738
8738
8738
8739
8739
8739
8740
8740
8740
8741
8741
8741
8742
8742
8742
8743
8743
8743
8744
8744
8744
8745
8745
8745
8746
8746
8746
8747
8747
8747
8748
8748
8748
8749
8749
8749
8750
8750
8750
8751
8751
8751
8752
8752
8752
8753
8753
8753
8754
8754
8754
8755
8755
8755
8756
8756
8756
8756
8757
8757
8757
8758
8758
8758
8759
8759
8759
8760
8760
8760
8761
8761
8761
8762
8762
8762
8763
8763
8763
8764
8764
8764
8765
8765
8765
8766
8766
8766
8767
8767
8767
8768
8768
8768
8769
8769
8769
8770
8770
8770
8771
8771
8771
8772
8772
8772
8773
8773
8773
8774
8774
8774
8775
8775
8775
8776
8776
8776
8777
8777
8777
8778
8778
8778
8779
8779
8780
8780
8781
8781
8782
8782
8783
8783
8784
8784
8785
8785
8786
8786
8787
8787
8788
8788
8789
8789
8790
8790
8791
8791
8792
8792
8793
8793
8794
8794
8795
8795
8796
8796
8797
8797
8798
8798
8799
8799
8800
8800
8800
8800
8801
8801
8801
8802
8802
8802
8803
8803
8803
8804
8804
8804
8805
8805
8805
8806
8806
8806
8807
8807
8807
8808
8808
8808
8809
8809
8809
8810
8810
8810
8811
8811
8811
8812
8812
8812
8813
8813
8813
8814
8814
8814
8815
8815
8815
8816
8816
8816
8817
8817
8817
8818
8818
8818
8819
8819
8819
8820
8820
8820
8821
8821
8821
8822
8822
8822
8822
8823
8823
8823
8824
8824
8824
8825
8825
8825
8826
8826
8826
8827
8827
8827
8828
8828
8828
8829
8829
8829
8830
8830
8830
8831
8831
8831
8832
8832
8832
8833
8833
8833
8834
8834
8834
8835
8835
8835
8836
8836
8836
8837
8837
8837
8838
8838
8838
8839
8839
8839
8840
8840
8840
8841
8841
8841
8842
8842
8842
8843
8843
8843
8844
8844
8844
8844
8845
8845
8845
8846
8846
8846
8847
8847
8847
8848
8848
8848
8849
8849
8849
8850
8850
8850
8851
8851
8851
8852
8852
8852
8853
8853
8853
8854
8854
8854
8855
8855
8855
8856
8856
8856
8857
8857
8857
8858
8858
8858
8859
8859
8859
8860
8860
8860
8861
8861
8861
8862
8862
8862
8863
8863
8863
8864
8864
8864
8865
8865
8865
8866
8866
8866
8866
8867
8867
8867
8868
8868
8868
8869
8869
8869
8870
8870
8870
8871
8871
8871
8872
8872
8872
8873
8873
8873
8874
8874
8874
8875
8875
8875
8876
8876
8876
8877
8877
8877
8878
8878
8878
8879
8879
8879
8880
8880
8880
8881
8881
8881
8882
8882
8882
8883
8883
8883
8884
8884
8884
8885
8885
8885
8886
8886
8886
8887
8887
8887
8888
8888
8888
8888
8889
8889
8889
8890
8890
8890
8891
8891
8891
8892
8892
8892
8893
8893
8893
8894
8894
8894
8895
8895
8895
8896
8896
8896
8897
8897
8897
8898
8898
8898
8899
8899
8899
8900
8900
8900
8901
8901
8901
8902
8902
8902
8903
8903
8903
8904
8904
8904
8905
8905
8905
8906
8906
8906
8907
8907
8907
8908
8908
8908
8909
8909
8909
8910
8910
8910
8910
8911
8911
8911
8912
8912
8912
8913
8913
8913
8914
8914
8914
8915
8915
8915
8916
8916
8916
8917
8917
8917
8918
8918
8918
8919
8919
8919
8920
8920
8920
8921
8921
8921
8922
8922
8922
8923
8923
8923
8924
8924
8924
8925
8925
8925
8926
8926
8926
8927
8927
8927
8928
8928
8928
8929
8929
8929
8930
8930
8930
8931
8931
8931
8932
8932
8932
8932
8933
8933
8933
8934
8934
8934
8935
8935
8935
8936
8936
8936
8937
8937
8937
8938
8938
8938
8939
8939
8939
8940
8940
8940
8941
8941
8941
8942
8942
8942
8943
8943
8943
8944
8944
8944
8945
8945
8945
8946
8946
8946
8947
8947
8947
8948
8948
8948
8949
8949
8949
8950
8950
8950
8951
8951
8951
8952
8952
8952
8953
8953
8953
8954
8954
8954
8954
8955
8955
8955
8956
8956
8956
8957
8957
8957
8958
8958
8958
8959
8959
8959
8960
8960
8960
8961
8961
8961
8962
8962
8962
8963
8963
8963
8964
8964
8964
8965
8965
8965
8966
8966
8966
8967
8967
8967
8968
8968
8968
8969
8969
8969
8970
8970
8970
8971
8971
8971
8972
8972
8972
8973
8973
8973
8974
8974
8974
8975
8975
8975
8976
8976
8976
8976
8977
8977
8977
8978
8978
8978
8979
8979
8979
8980
8980
8980
8981
8981
8981
8982
8982
8982
8983
8983
8983
8984
8984
8984
8985
8985
8985
8986
8986
8986
8987
8987
8987
8988
8988
8988
8989
8989
8989
8990
8990
8990
8991
8991
8991
8992
8992
8992
8993
8993
8993
8994
8994
8994
8995
8995
8995
8996
8996
8996
8997
8997
8997
8998
8998
8998
8999
8999
9000
9000
9001
9001
9002
9002
9003
9003
9004
9004
9005
9005
9006
9006
9007
9007
9008
9008
9009
9009
9010
9010
9011
9011
9012
9012
9013
9013
9014
9014
9015
9015
9016
9016
9017
9017
9018
9018
9019
9019
9020
9020
9020
9020
9021
9021
9021
9022
9022
9022
9023
9023
9023
9024
9024
9024
9025
9025
9025
9026
9026
9026
9027
9027
9027
9028
9028
9028
9029
9029
9029
9030
9030
9030
9031
9031
9031
9032
9032
9032
9033
9033
9033
9034
9034
9034
9035
9035
9035
9036
9036
9036
9037
9037
9037
9038
9038
9038
9039
9039
9039
9040
9040
9040
9041
9041
9041
9042
9042
9042
9042
9043
9043
9043
9044
9044
9044
9045
9045
9045
9046
9046
9046
9047
9047
9047
9048
9048
9048
9049
9049
9049
9050
9050
9050
9051
9051
9051
9052
9052
9052
9053
9053
9053
9054
9054
9054
9055
9055
9055
9056
9056
9056
9057
9057
9057
9058
9058
9058
9059
9059
9059
9060
9060
9060
9061
9061
9061
9062
9062
9062
9063
9063
9063
9064
9064
9064
9064
9065
9065
9065
9066
9066
9066
9067
9067
9067
9068
9068
9068
9069
9069
9069
9070
9070
9070
9071
9071
9071
9072
9072
9072
9073
9073
9073
9074
9074
9074
9075
9075
9075
9076
9076
9076
9077
9077
9077
9078
9078
9078
9079
9079
9079
9080
9080
9080
9081
9081
9081
9082
9082
9082
9083
9083
9083
9084
9084
9084
9085
9085
9085
9086
9086
9086
9086
9087
9087
9087
9088
9088
9088
9089
9089
9089
9090
9090
9090
9091
9091
9091
9092
9092
9092
9093
9093
9093
9094
9094
9094
9095
9095
9095
9096
9096
9096
9097
9097
9097
9098
9098
9098
9099
9099
9099
9100
9100
9100
9101
9101
9101
9102
9102
9102
9103
9103
9103
9104
9104
9104
9105
9105
9105
9106
9106
9106
9107
9107
9107
9108
9108
9108
9108
9109
9109
9109
9110
9110
9110
9111
9111
9111
9112
9112
9112
9113
9113
9113
9114
9114
9114
9115
9115
9115
9116
9116
9116
9117
9117
9117
9118
9118
9118
9119
9119
9119
9120
9120
9120
9121
9121
9121
9122
9122
9122
9123
9123
9123
9124
9124
9124
9125
9125
9125
9126
9126
9126
9127
9127
9127
9128
9128
9128
9129
9129
9129
9130
9130
9130
9130
9131
9131
9131
9132
9132
9132
9133
9133
9133
9134
9134
9134
9135
9135
9135
9136
9136
9136
9137
9137
9137
9138
9138
9138
9139
9139
9139
9140
9140
9140
9141
9141
9141
9142
9142
9142
9143
9143
9143
9144
9144
9144
9145
9145
9145
9146
9146
9146
9147
9147
9147
9148
9148
9148
9149
9149
9149
9150
9150
9150
9151
9151
9151
9152
9152
9152
9152
9153
9153
9153
9154
9154
9154
9155
9155
9155
9156
9156
9156
9157
9157
9157
9158
9158
9158
9159
9159
9159
9160
9160
9160
9161
9161
9161
9162
9162
9162
9163
9163
9163
9164
9164
9164
9165
9165
9165
9166
9166
9166
9167
9167
9167
9168
9168
9168
9169
9169
9169
9170
9170
9170
9171
9171
9171
9172
9172
9172
9173
9173
9173
9174
9174
9174
9174
9175
9175
9175
9176
9176
9176
9177
9177
9177
9178
9178
9178
9179
9179
9179
9180
9180
9180
9181
9181
9181
9182
9182
9182
9183
9183
9183
9184
9184
9184
9185
9185
9185
9186
9186
9186
9187
9187
9187
9188
9188
9188
9189
9189
9189
9190
9190
9190
9191
9191
9191
9192
9192
9192
9193
9193
9193
9194
9194
9194
9195
9195
9195
9196
9196
9196
9196
9197
9197
9197
9198
9198
9198
9199
9199
9199
9200
9200
9200
9201
9201
9201
9202
9202
9202
9203
9203
9203
9204
9204
9204
9205
9205
9205
9206
9206
9206
9207
9207
9207
9208
9208
9208
9209
9209
9209
9210
9210
9210
9211
9211
9211
9212
9212
9212
9213
9213
9213
9214
9214
9214
9215
9215
9215
9216
9216
9216
9217
9217
9217
9218
9218
9218
9219
9219
9220
9220
9221
9221
9222
9222
9223
9223
9224
9224
9225
9225
9226
9226
9227
9227
9228
9228
9229
9229
9230
9230
9231
9231
9232
9232
9233
9233
9234
9234
9235
9235
9236
9236
9237
9237
9238
9238
9239
9239
9240
9240
9240
9240
9241
9241
9241
9242
9242
9242
9243
9243
9243
9244
9244
9244
9245
9245
9245
9246
9246
9246
9247
9247
9247
9248
9248
9248
9249
9249
9249
9250
9250
9250
9251
9251
9251
9252
9252
9252
9253
9253
9253
9254
9254
9254
9255
9255
9255
9256
9256
9256
9257
9257
9257
9258
9258
9258
9259
9259
9259
9260
9260
9260
9261
9261
9261
9262
9262
9262
9262
9263
9263
9263
9264
9264
9264
9265
9265
9265
9266
9266
9266
9267
9267
9267
9268
9268
9268
9269
9269
9269
9270
9270
9270
9271
9271
9271
9272
9272
9272
9273
9273
9273
9274
9274
9274
9275
9275
9275
9276
9276
9276
9277
9277
9277
9278
9278
9278
9279
9279
9279
9280
9280
9280
9281
9281
9281
9282
9282
9282
9283
9283
9283
9284
9284
9284
9284
9285
9285
9285
9286
9286
9286
9287
9287
9287
9288
9288
9288
9289
9289
9289
9290
9290
9290
9291
9291
9291
9292
9292
9292
9293
9293
9293
9294
9294
9294
9295
9295
9295
9296
9296
9296
9297
9297
9297
9298
9298
9298
9299
9299
9299
9300
9300
9300
9301
9301
9301
9302
9302
9302
9303
9303
9303
9304
9304
9304
9305
9305
9305
9306
9306
9306
9306
9307
9307
9307
9308
9308
9308
9309
9309
9309
9310
9310
9310
9311
9311
9311
9312
9312
9312
9313
9313
9313
9314
9314
9314
9315
9315
9315
9316
9316
9316
9317
9317
9317
9318
9318
9318
9319
9319
9319
9320
9320
9320
9321
9321
9321
9322
9322
9322
9323
9323
9323
9324
9324
9324
9325
9325
9325
9326
9326
9326
9327
9327
9327
9328
9328
9328
9328
9329
9329
9329
9330
9330
9330
9331
9331
9331
9332
9332
9332
9333
9333
9333
9334
9334
9334
9335
9335
9335
9336
9336
9336
9337
9337
9337
9338
9338
9338
9339
9339
9339
9340
9340
9340
9341
9341
9341
9342
9342
9342
9343
9343
9343
9344
9344
9344
9345
9345
9345
9346
9346
9346
9347
9347
9347
9348
9348
9348
9349
9349
9349
9350
9350
9350
9350
9351
9351
9351
9352
9352
9352
9353
9353
9353
9354
9354
9354
9355
9355
9355
9356
9356
9356
9357
9357
9357
9358
9358
9358
9359
9359
9359
9360
9360
9360
9361
9361
9361
9362
9362
9362
9363
9363
9363
9364
9364
9364
9365
9365
9365
9366
9366
9366
9367
9367
9367
9368
9368
9368
9369
9369
9369
9370
9370
9370
9371
9371
9371
9372
9372
9372
9372
9373
9373
9373
9374
9374
9374
9375
9375
9375
9376
9376
9376
9377
9377
9377
9378
9378
9378
9379
9379
9379
9380
9380
9380
9381
9381
9381
9382
9382
9382
9383
9383
9383
9384
9384
9384
9385
9385
9385
9386
9386
9386
9387
9387
9387
9388
9388
9388
9389
9389
9389
9390
9390
9390
9391
9391
9391
9392
9392
9392
9393
9393
9393
9394
9394
9394
9394
9395
9395
9395
9396
9396
9396
9397
9397
9397
9398
9398
9398
9399
9399
9399
9400
9400
9400
9401
9401
9401
9402
9402
9402
9403
9403
9403
9404
9404
9404
9405
9405
9405
9406
9406
9406
9407
9407
9407
9408
9408
9408
9409
9409
9409
9410
9410
9410
9411
9411
9411
9412
9412
9412
9413
9413
9413
9414
9414
9414
9415
9415
9415
9416
9416
9416
9416
9417
9417
9417
9418
9418
9418
9419
9419
9419
9420
9420
9420
9421
9421
9421
9422
9422
9422
9423
9423
9423
9424
9424
9424
9425
9425
9425
9426
9426
9426
9427
9427
9427
9428
9428
9428
9429
9429
9429
9430
9430
9430
9431
9431
9431
9432
9432
9432
9433
9433
9433
9434
9434
9434
9435
9435
9435
9436
9436
9436
9437
9437
9437
9438
9438
9438
9439
9439
9440
9440
9441
9441
9442
9442
9443
9443
9444
9444
9445
9445
9446
9446
9447
9447
9448
9448
9449
9449
9450
9450
9451
9451
9452
9452
9453
9453
9454
9454
9455
9455
9456
9456
9457
9457
9458
9458
9459
9459
9460
9460
9460
9460
9461
9461
9461
9462
9462
9462
9463
9463
9463
9464
9464
9464
9465
9465
9465
9466
9466
9466
9467
9467
9467
9468
9468
9468
9469
9469
9469
9470
9470
9470
9471
9471
9471
9472
9472
9472
9473
9473
9473
9474
9474
9474
9475
9475
9475
9476
9476
9476
9477
9477
9477
9478
9478
9478
9479
9479
9479
9480
9480
9480
9481
9481
9481
9482
9482
9482
9482
9483
9483
9483
9484
9484
9484
9485
9485
9485
9486
9486
9486
9487
9487
9487
9488
9488
9488
9489
9489
9489
9490
9490
9490
9491
9491
9491
9492
9492
9492
9493
9493
9493
9494
9494
9494
9495
9495
9495
9496
9496
9496
9497
9497
9497
9498
9498
9498
9499
9499
9499
9500
9500
9500
9501
9501
9501
9502
9502
9502
9503
9503
9503
9504
9504
9504
9504
9505
9505
9505
9506
9506
9506
9507
9507
9507
9508
9508
9508
9509
9509
9509
9510
9510
9510
9511
9511
9511
9512
9512
9512
9513
9513
9513
9514
9514
9514
9515
9515
9515
9516
9516
9516
9517
9517
9517
9518
9518
9518
9519
9519
9519
9520
9520
9520
9521
9521
9521
9522
9522
9522
9523
9523
9523
9524
9524
9524
9525
9525
9525
9526
9526
9526
9526
9527
9527
9527
9528
9528
9528
9529
9529
9529
9530
9530
9530
9531
9531
9531
9532
9532
9532
9533
9533
9533
9534
9534
9534
9535
9535
9535
9536
9536
9536
9537
9537
9537
9538
9538
9538
9539
9539
9539
9540
9540
9540
9541
9541
9541
9542
9542
9542
9543
9543
9543
9544
9544
9544
9545
9545
9545
9546
9546
9546
9547
9547
9547
9548
9548
9548
9548
9549
9549
9549
9550
9550
9550
9551
9551
9551
9552
9552
9552
9553
9553
9553
9554
9554
9554
9555
9555
9555
9556
9556
9556
9557
9557
9557
9558
9558
9558
9559
9559
9559
9560
9560
9560
9561
9561
9561
9562
9562
9562
9563
9563
9563
9564
9564
9564
9565
9565
9565
9566
9566
9566
9567
9567
9567
9568
9568
9568
9569
9569
9569
9570
9570
9570
9570
9571
9571
9571
9572
9572
9572
9573
9573
9573
9574
9574
9574
9575
9575
9575
9576
9576
9576
9577
9577
9577
9578
9578
9578
9579
9579
9579
9580
9580
9580
9581
9581
9581
9582
9582
9582
9583
9583
9583
9584
9584
9584
9585
9585
9585
9586
9586
9586
9587
9587
9587
9588
9588
9588
9589
9589
9589
9590
9590
9590
9591
9591
9591
9592
9592
9592
9592
9593
9593
9593
9594
9594
9594
9595
9595
9595
9596
9596
9596
9597
9597
9597
9598
9598
9598
9599
9599
9599
9600
9600
9600
9601
9601
9601
9602
9602
9602
9603
9603
9603
9604
9604
9604
9605
9605
9605
9606
9606
9606
9607
9607
9607
9608
9608
9608
9609
9609
9609
9610
9610
9610
9611
9611
9611
9612
9612
9612
9613
9613
9613
9614
9614
9614
9614
9615
9615
9615
9616
9616
9616
9617
9617
9617
9618
9618
9618
9619
9619
9619
9620
9620
9620
9621
9621
9621
9622
9622
9622
9623
9623
9623
9624
9624
9624
9625
9625
9625
9626
9626
9626
9627
9627
9627
9628
9628
9628
9629
9629
9629
9630
9630
9630
9631
9631
9631
9632
9632
9632
9633
9633
9633
9634
9634
9634
9635
9635
9635
9636
9636
9636
9636
9637
9637
9637
9638
9638
9638
9639
9639
9639
9640
9640
9640
9641
9641
9641
9642
9642
9642
9643
9643
9643
9644
9644
9644
9645
9645
9645
9646
9646
9646
9647
9647
9647
9648
9648
9648
9649
9649
9649
9650
9650
9650
9651
9651
9651
9652
9652
9652
9653
9653
9653
9654
9654
9654
9655
9655
9655
9656
9656
9656
9657
9657
9657
9658
9658
9658
9659
9659
9660
9660
9661
9661
9662
9662
9663
9663
9664
9664
9665
9665
9666
9666
9667
9667
9668
9668
9669
9669
9670
9670
9671
9671
9672
9672
9673
9673
9674
9674
9675
9675
9676
9676
9677
9677
9678
9678
9679
9679
9680
9680
9680
9680
9681
9681
9681
9682
9682
9682
9683
9683
9683
9684
9684
9684
9685
9685
9685
9686
9686
9686
9687
9687
9687
9688
9688
9688
9689
9689
9689
9690
9690
9690
9691
9691
9691
9692
9692
9692
9693
9693
9693
9694
9694
9694
9695
9695
9695
9696
9696
9696
9697
9697
9697
9698
9698
9698
9699
9699
9699
9700
9700
9700
9701
9701
9701
9702
9702
9702
9702
9703
9703
9703
9704
9704
9704
9705
9705
9705
9706
9706
9706
9707
9707
9707
9708
9708
9708
9709
9709
9709
9710
9710
9710
9711
9711
9711
9712
9712
9712
9713
9713
9713
9714
9714
9714
9715
9715
9715
9716
9716
9716
9717
9717
9717
9718
9718
9718
9719
9719
9719
9720
9720
9720
9721
9721
9721
9722
9722
9722
9723
9723
9723
9724
9724
9724
9724
9725
9725
9725
9726
9726
9726
9727
9727
9727
9728
9728
9728
9729
9729
9729
9730
9730
9730
9731
9731
9731
9732
9732
9732
9733
9733
9733
9734
9734
9734
9735
9735
9735
9736
9736
9736
9737
9737
9737
9738
9738
9738
9739
9739
9739
9740
9740
9740
9741
9741
9741
9742
9742
9742
9743
9743
9743
9744
9744
9744
9745
9745
9745
9746
9746
9746
9746
9747
9747
9747
9748
9748
9748
9749
9749
9749
9750
9750
9750
9751
9751
9751
9752
9752
9752
9753
9753
9753
9754
9754
9754
9755
9755
9755
9756
9756
9756
9757
9757
9757
9758
9758
9758
9759
9759
9759
9760
9760
9760
9761
9761
9761
9762
9762
9762
9763
9763
9763
9764
9764
9764
9765
9765
9765
9766
9766
9766
9767
9767
9767
9768
9768
9768
9768
9769
9769
9769
9770
9770
9770
9771
9771
9771
9772
9772
9772
9773
9773
9773
9774
9774
9774
9775
9775
9775
9776
9776
9776
9777
9777
9777
9778
9778
9778
9779
9779
9779
9780
9780
9780
9781
9781
9781
9782
9782
9782
9783
9783
9783
9784
9784
9784
9785
9785
9785
9786
9786
9786
9787
9787
9787
9788
9788
9788
9789
9789
9789
9790
9790
9790
9790
9791
9791
9791
9792
9792
9792
9793
9793
9793
9794
9794
9794
9795
9795
9795
9796
9796
9796
9797
9797
9797
9798
9798
9798
9799
9799
9799
9800
9800
9800
9801
9801
9801
9802
9802
9802
9803
9803
9803
9804
9804
9804
9805
9805
9805
9806
9806
9806
9807
9807
9807
9808
9808
9808
9809
9809
9809
9810
9810
9810
9811
9811
9811
9812
9812
9812
9812
9813
9813
9813
9814
9814
9814
9815
9815
9815
9816
9816
9816
9817
9817
9817
9818
9818
9818
9819
9819
9819
9820
9820
9820
9821
9821
9821
9822
9822
9822
9823
9823
9823
9824
9824
9824
9825
9825
9825
9826
9826
9826
9827
9827
9827
9828
9828
9828
9829
9829
9829
9830
9830
9830
9831
9831
9831
9832
9832
9832
9833
9833
9833
9834
9834
9834
9834
9835
9835
9835
9836
9836
9836
9837
9837
9837
9838
9838
9838
9839
9839
9839
9840
9840
9840
9841
9841
9841
9842
9842
9842
9843
9843
9843
9844
9844
9844
9845
9845
9845
9846
9846
9846
9847
9847
9847
9848
9848
9848
9849
9849
9849
9850
9850
9850
9851
9851
9851
9852
9852
9852
9853
9853
9853
9854
9854
9854
9855
9855
9855
9856
9856
9856
9856
9857
9857
9857
9858
9858
9858
9859
9859
9859
9860
9860
9860
9861
9861
9861
9862
9862
9862
9863
9863
9863
9864
9864
9864
9865
9865
9865
9866
9866
9866
9867
9867
9867
9868
9868
9868
9869
9869
9869
9870
9870
9870
9871
9871
9871
9872
9872
9872
9873
9873
9873
9874
9874
9874
9875
9875
9875
9876
9876
9876
9877
9877
9877
9878
9878
9878
9879
9879
9880
9880
9881
9881
9882
9882
9883
9883
9884
9884
9885
9885
9886
9886
9887
9887
9888
9888
9889
9889
9890
9890
9891
9891
9892
9892
9893
9893
9894
9894
9895
9895
9896
9896
9897
9897
9898
9898
9899
9899
9900
9900
9900
9900
9901
9901
9901
9902
9902
9902
9903
9903
9903
9904
9904
9904
9905
9905
9905
9906
9906
9906
9907
9907
9907
9908
9908
9908
9909
9909
9909
9910
9910
9910
9911
9911
9911
9912
9912
9912
9913
9913
9913
9914
9914
9914
9915
9915
9915
9916
9916
9916
9917
9917
9917
9918
9918
9918
9919
9919
9919
9920
9920
9920
9921
9921
9921
9922
9922
9922
9922
9923
9923
9923
9924
9924
9924
9925
9925
9925
9926
9926
9926
9927
9927
9927
9928
9928
9928
9929
9929
9929
9930
9930
9930
9931
9931
9931
9932
9932
9932
9933
9933
9933
9934
9934
9934
9935
9935
9935
9936
9936
9936
9937
9937
9937
9938
9938
9938
9939
9939
9939
9940
9940
9940
9941
9941
9941
9942
9942
9942
9943
9943
9943
9944
9944
9944
9944
9945
9945
9945
9946
9946
9946
9947
9947
9947
9948
9948
9948
9949
9949
9949
9950
9950
9950
9951
9951
9951
9952
9952
9952
9953
9953
9953
9954
9954
9954
9955
9955
9955
9956
9956
9956
9957
9957
9957
9958
9958
9958
9959
9959
9959
9960
9960
9960
9961
9961
9961
9962
9962
9962
9963
9963
9963
9964
9964
9964
9965
9965
9965
9966
9966
9966
9966
9967
9967
9967
9968
9968
9968
9969
9969
9969
9970
9970
9970
9971
9971
9971
9972
9972
9972
9973
9973
9973
9974
9974
9974
9975
9975
9975
9976
9976
9976
9977
9977
9977
9978
9978
9978
9979
9979
9979
9980
9980
9980
9981
9981
9981
9982
9982
9982
9983
9983
9983
9984
9984
9984
9985
9985
9985
9986
9986
9986
9987
9987
9987
9988
9988
9988
9988
9989
9989
9989
9990
9990
9990
9991
9991
9991
9992
9992
9992
9993
9993
9993
9994
9994
9994
9995
9995
9995
9996
9996
9996
9997
9997
9997
9998
9998
9998
9999
9999
9999
10000
10000
10000
10001
10001
10001
10002
10002
10002
10003
10003
10003
10004
10004
10004
10005
10005
10005
10006
10006
10006
10007
10007
10007
10008
10008
10008
10009
10009
10009
10010
10010
10010
10010
10011
10011
10011
10012
10012
10012
10013
10013
10013
10014
10014
10014
10015
10015
10015
10016
10016
10016
10017
10017
10017
10018
10018
10018
10019
10019
10019
10020
10020
10020
10021
10021
10021
10022
10022
10022
10023
10023
10023
10024
10024
10024
10025
10025
10025
10026
10026
10026
10027
10027
10027
10028
10028
10028
10029
10029
10029
10030
10030
10030
10031
10031
10031
10032
10032
10032
10032
10033
10033
10033
10034
10034
10034
10035
10035
10035
10036
10036
10036
10037
10037
10037
10038
10038
10038
10039
10039
10039
10040
10040
10040
10041
10041
10041
10042
10042
10042
10043
10043
10043
10044
10044
10044
10045
10045
10045
10046
10046
10046
10047
10047
10047
10048
10048
10048
10049
10049
10049
10050
10050
10050
10051
10051
10051
10052
10052
10052
10053
10053
10053
10054
10054
10054
10054
10055
10055
10055
10056
10056
10056
10057
10057
10057
10058
10058
10058
10059
10059
10059
10060
10060
10060
10061
10061
10061
10062
10062
10062
10063
10063
10063
10064
10064
10064
10065
10065
10065
10066
10066
10066
10067
10067
10067
10068
10068
10068
10069
10069
10069
10070
10070
10070
10071
10071
10071
10072
10072
10072
10073
10073
10073
10074
10074
10074
10075
10075
10075
10076
10076
10076
10076
10077
10077
10077
10078
10078
10078
10079
10079
10079
10080
10080
10080
10081
10081
10081
10082
10082
10082
10083
10083
10083
10084
10084
10084
10085
10085
10085
10086
10086
10086
10087
10087
10087
10088
10088
10088
10089
10089
10089
10090
10090
10090
10091
10091
10091
10092
10092
10092
10093
10093
10093
10094
10094
10094
10095
10095
10095
10096
10096
10096
10097
10097
10097
10098
10098
10098
10099
10099
10100
10100
10101
10101
10102
10102
10103
10103
10104
10104
10105
10105
10106
10106
10107
10107
10108
10108
10109
10109
10110
10110
10111
10111
10112
10112
10113
10113
10114
10114
10115
10115
10116
10116
10117
10117
10118
10118
10119
10119
10120
10120
10120
10120
10121
10121
10121
10122
10122
10122
10123
10123
10123
10124
10124
10124
10125
10125
10125
10126
10126
10126
10127
10127
10127
10128
10128
10128
10129
10129
10129
10130
10130
10130
10131
10131
10131
10132
10132
10132
10133
10133
10133
10134
10134
10134
10135
10135
10135
10136
10136
10136
10137
10137
10137
10138
10138
10138
10139
10139
10139
10140
10140
10140
10141
10141
10141
10142
10142
10142
10142
10143
10143
10143
10144
10144
10144
10145
10145
10145
10146
10146
10146
10147
10147
10147
10148
10148
10148
10149
10149
10149
10150
10150
10150
10151
10151
10151
10152
10152
10152
10153
10153
10153
10154
10154
10154
10155
10155
10155
10156
10156
10156
10157
10157
10157
10158
10158
10158
10159
10159
10159
10160
10160
10160
10161
10161
10161
10162
10162
10162
10163
10163
10163
10164
10164
10164
10164
10165
10165
10165
10166
10166
10166
10167
10167
10167
10168
10168
10168
10169
10169
10169
10170
10170
10170
10171
10171
10171
10172
10172
10172
10173
10173
10173
10174
10174
10174
10175
10175
10175
10176
10176
10176
10177
10177
10177
10178
10178
10178
10179
10179
10179
10180
10180
10180
10181
10181
10181
10182
10182
10182
10183
10183
10183
10184
10184
10184
10185
10185
10185
10186
10186
10186
10186
10187
10187
10187
10188
10188
10188
10189
10189
10189
10190
10190
10190
10191
10191
10191
10192
10192
10192
10193
10193
10193
10194
10194
10194
10195
10195
10195
10196
10196
10196
10197
10197
10197
10198
10198
10198
10199
10199
10199
10200
10200
10200
10201
10201
10201
10202
10202
10202
10203
10203
10203
10204
10204
10204
10205
10205
10205
10206
10206
10206
10207
10207
10207
10208
10208
10208
10208
10209
10209
10209
10210
10210
10210
10211
10211
10211
10212
10212
10212
10213
10213
10213
10214
10214
10214
10215
10215
10215
10216
10216
10216
10217
10217
10217
10218
10218
10218
10219
10219
10219
10220
10220
10220
10221
10221
10221
10222
10222
10222
10223
10223
10223
10224
10224
10224
10225
10225
10225
10226
10226
10226
10227
10227
10227
10228
10228
10228
10229
10229
10229
10230
10230
10230
10230
10231
10231
10231
10232
10232
10232
10233
10233
10233
10234
10234
10234
10235
10235
10235
10236
10236
10236
10237
10237
10237
10238
10238
10238
10239
10239
10239
10240
10240
10240
10241
10241
10241
10242
10242
10242
10243
10243
10243
10244
10244
10244
10245
10245
10245
10246
10246
10246
10247
10247
10247
10248
10248
10248
10249
10249
10249
10250
10250
10250
10251
10251
10251
10252
10252
10252
10252
10253
10253
10253
10254
10254
10254
10255
10255
10255
10256
10256
10256
10257
10257
10257
10258
10258
10258
10259
10259
10259
10260
10260
10260
10261
10261
10261
10262
10262
10262
10263
10263
10263
10264
10264
10264
10265
10265
10265
10266
10266
10266
10267
10267
10267
10268
10268
10268
10269
10269
10269
10270
10270
10270
10271
10271
10271
10272
10272
10272
10273
10273
10273
10274
10274
10274
10274
10275
10275
10275
10276
10276
10276
10277
10277
10277
10278
10278
10278
10279
10279
10279
10280
10280
10280
10281
10281
10281
10282
10282
10282
10283
10283
10283
10284
10284
10284
10285
10285
10285
10286
10286
10286
10287
10287
10287
10288
10288
10288
10289
10289
10289
10290
10290
10290
10291
10291
10291
10292
10292
10292
10293
10293
10293
10294
10294
10294
10295
10295
10295
10296
10296
10296
10296
10297
10297
10297
10298
10298
10298
10299
10299
10299
10300
10300
10300
10301
10301
10301
10302
10302
10302
10303
10303
10303
10304
10304
10304
10305
10305
10305
10306
10306
10306
10307
10307
10307
10308
10308
10308
10309
10309
10309
10310
10310
10310
10311
10311
10311
10312
10312
10312
10313
10313
10313
10314
10314
10314
10315
10315
10315
10316
10316
10316
10317
10317
10317
10318
10318
10318
10319
10319
10320
10320
10321
10321
10322
10322
10323
10323
10324
10324
10325
10325
10326
10326
10327
10327
10328
10328
10329
10329
10330
10330
10331
10331
10332
10332
10333
10333
10334
10334
10335
10335
10336
10336
10337
10337
10338
10338
10339
10339
10340
10340
10340
10340
10341
10341
10341
10342
10342
10342
10343
10343
10343
10344
10344
10344
10345
10345
10345
10346
10346
10346
10347
10347
10347
10348
10348
10348
10349
10349
10349
10350
10350
10350
10351
10351
10351
10352
10352
10352
10353
10353
10353
10354
10354
10354
10355
10355
10355
10356
10356
10356
10357
10357
10357
10358
10358
10358
10359
10359
10359
10360
10360
10360
10361
10361
10361
10362
10362
10362
10362
10363
10363
10363
10364
10364
10364
10365
10365
10365
10366
10366
10366
10367
10367
10367
10368
10368
10368
10369
10369
10369
10370
10370
10370
10371
10371
10371
10372
10372
10372
10373
10373
10373
10374
10374
10374
10375
10375
10375
10376
10376
10376
10377
10377
10377
10378
10378
10378
10379
10379
10379
10380
10380
10380
10381
10381
10381
10382
10382
10382
10383
10383
10383
10384
10384
10384
10384
10385
10385
10385
10386
10386
10386
10387
10387
10387
10388
10388
10388
10389
10389
10389
10390
10390
10390
10391
10391
10391
10392
10392
10392
10393
10393
10393
10394
10394
10394
10395
10395
10395
10396
10396
10396
10397
10397
10397
10398
10398
10398
10399
10399
10399
10400
10400
10400
10401
10401
10401
10402
10402
10402
10403
10403
10403
10404
10404
10404
10405
10405
10405
10406
10406
10406
10406
10407
10407
10407
10408
10408
10408
10409
10409
10409
10410
10410
10410
10411
10411
10411
10412
10412
10412
10413
10413
10413
10414
10414
10414
10415
10415
10415
10416
10416
10416
10417
10417
10417
10418
10418
10418
10419
10419
10419
10420
10420
10420
10421
10421
10421
10422
10422
10422
10423
10423
10423
10424
10424
10424
10425
10425
10425
10426
10426
10426
10427
10427
10427
10428
10428
10428
10428
10429
10429
10429
10430
10430
10430
10431
10431
10431
10432
10432
10432
10433
10433
10433
10434
10434
10434
10435
10435
10435
10436
10436
10436
10437
10437
10437
10438
10438
10438
10439
10439
10439
10440
10440
10440
10441
10441
10441
10442
10442
10442
10443
10443
10443
10444
10444
10444
10445
10445
10445
10446
10446
10446
10447
10447
10447
10448
10448
10448
10449
10449
10449
10450
10450
10450
10450
10451
10451
10451
10452
10452
10452
10453
10453
10453
10454
10454
10454
10455
10455
10455
10456
10456
10456
10457
10457
10457
10458
10458
10458
10459
10459
10459
10460
10460
10460
10461
10461
10461
10462
10462
10462
10463
10463
10463
10464
10464
10464
10465
10465
10465
10466
10466
10466
10467
10467
10467
10468
10468
10468
10469
10469
10469
10470
10470
10470
10471
10471
10471
10472
10472
10472
10472
10473
10473
10473
10474
10474
10474
10475
10475
10475
10476
10476
10476
10477
10477
10477
10478
10478
10478
10479
10479
10479
10480
10480
10480
10481
10481
10481
10482
10482
10482
10483
10483
10483
10484
10484
10484
10485
10485
10485
10486
10486
10486
10487
10487
10487
10488
10488
10488
10489
10489
10489
10490
10490
10490
10491
10491
10491
10492
10492
10492
10493
10493
10493
10494
10494
10494
10494
10495
10495
10495
10496
10496
10496
10497
10497
10497
10498
10498
10498
10499
10499
10499
10500
10500
10500
10501
10501
10501
10502
10502
10502
10503
10503
10503
10504
10504
10504
10505
10505
10505
10506
10506
10506
10507
10507
10507
10508
10508
10508
10509
10509
10509
10510
10510
10510
10511
10511
10511
10512
10512
10512
10513
10513
10513
10514
10514
10514
10515
10515
10515
10516
10516
10516
10516
10517
10517
10517
10518
10518
10518
10519
10519
10519
10520
10520
10520
10521
10521
10521
10522
10522
10522
10523
10523
10523
10524
10524
10524
10525
10525
10525
10526
10526
10526
10527
10527
10527
10528
10528
10528
10529
10529
10529
10530
10530
10530
10531
10531
10531
10532
10532
10532
10533
10533
10533
10534
10534
10534
10535
10535
10535
10536
10536
10536
10537
10537
10537
10538
10538
10538
10539
10539
10540
10540
10541
10541
10542
10542
10543
10543
10544
10544
10545
10545
10546
10546
10547
10547
10548
10548
10549
10549
10550
10550
10551
10551
10552
10552
10553
10553
10554
10554
10555
10555
10556
10556
10557
10557
10558
10558
10559
10559
10560
10560
10560
10560
10561
10561
10561
10562
10562
10562
10563
10563
10563
10564
10564
10564
10565
10565
10565
10566
10566
10566
10567
10567
10567
10568
10568
10568
10569
10569
10569
10570
10570
10570
10571
10571
10571
10572
10572
10572
10573
10573
10573
10574
10574
10574
10575
10575
10575
10576
10576
10576
10577
10577
10577
10578
10578
10578
10579
10579
10579
10580
10580
10580
10581
10581
10581
10582
10582
10582
10582
10583
10583
10583
10584
10584
10584
10585
10585
10585
10586
10586
10586
10587
10587
10587
10588
10588
10588
10589
10589
10589
10590
10590
10590
10591
10591
10591
10592
10592
10592
10593
10593
10593
10594
10594
10594
10595
10595
10595
10596
10596
10596
10597
10597
10597
10598
10598
10598
10599
10599
10599
10600
10600
10600
10601
10601
10601
10602
10602
10602
10603
10603
10603
10604
10604
10604
10604
10605
10605
10605
10606
10606
10606
10607
10607
10607
10608
10608
10608
10609
10609
10609
10610
10610
10610
10611
10611
10611
10612
10612
10612
10613
10613
10613
10614
10614
10614
10615
10615
10615
10616
10616
10616
10617
10617
10617
10618
10618
10618
10619
10619
10619
10620
10620
10620
10621
10621
10621
10622
10622
10622
10623
10623
10623
10624
10624
10624
10625
10625
10625
10626
10626
10626
10626
10627
10627
10627
10628
10628
10628
10629
10629
10629
10630
10630
10630
10631
10631
10631
10632
10632
10632
10633
10633
10633
10634
10634
10634
10635
10635
10635
10636
10636
10636
10637
10637
10637
10638
10638
10638
10639
10639
10639
10640
10640
10640
10641
10641
10641
10642
10642
10642
10643
10643
10643
10644
10644
10644
10645
10645
10645
10646
10646
10646
10647
10647
10647
10648
10648
10648
10648
10649
10649
10649
10650
10650
10650
10651
10651
10651
10652
10652
10652
10653
10653
10653
10654
10654
10654
10655
10655
10655
10656
10656
10656
10657
10657
10657
10658
10658
10658
10659
10659
10659
10660
10660
10660
10661
10661
10661
10662
10662
10662
10663
10663
10663
10664
10664
10664
10665
10665
10665
10666
10666
10666
10667
10667
10667
10668
10668
10668
10669
10669
10669
10670
10670
10670
10670
10671
10671
10671
10672
10672
10672
10673
10673
10673
10674
10674
10674
10675
10675
10675
10676
10676
10676
10677
10677
10677
10678
10678
10678
10679
10679
10679
10680
10680
10680
10681
10681
10681
10682
10682
10682
10683
10683
10683
10684
10684
10684
10685
10685
10685
10686
10686
10686
10687
10687
10687
10688
10688
10688
10689
10689
10689
10690
10690
10690
10691
10691
10691
10692
10692
10692
10692
10693
10693
10693
10694
10694
10694
10695
10695
10695
10696
10696
10696
10697
10697
10697
10698
10698
10698
10699
10699
10699
10700
10700
10700
10701
10701
10701
10702
10702
10702
10703
10703
10703
10704
10704
10704
10705
10705
10705
10706
10706
10706
10707
10707
10707
10708
10708
10708
10709
10709
10709
10710
10710
10710
10711
10711
10711
10712
10712
10712
10713
10713
10713
10714
10714
10714
10714
10715
10715
10715
10716
10716
10716
10717
10717
10717
10718
10718
10718
10719
10719
10719
10720
10720
10720
10721
10721
10721
10722
10722
10722
10723
10723
10723
10724
10724
10724
10725
10725
10725
10726
10726
10726
10727
10727
10727
10728
10728
10728
10729
10729
10729
10730
10730
10730
10731
10731
10731
10732
10732
10732
10733
10733
10733
10734
10734
10734
10735
10735
10735
10736
10736
10736
10736
10737
10737
10737
10738
10738
10738
10739
10739
10739
10740
10740
10740
10741
10741
10741
10742
10742
10742
10743
10743
10743
10744
10744
10744
10745
10745
10745
10746
10746
10746
10747
10747
10747
10748
10748
10748
10749
10749
10749
10750
10750
10750
10751
10751
10751
10752
10752
10752
10753
10753
10753
10754
10754
10754
10755
10755
10755
10756
10756
10756
10757
10757
10757
10758
10758
10758
10759
10759
10760
10760
10761
10761
10762
10762
10763
10763
10764
10764
10765
10765
10766
10766
10767
10767
10768
10768
10769
10769
10770
10770
10771
10771
10772
10772
10773
10773
10774
10774
10775
10775
10776
10776
10777
10777
10778
10778
10779
10779
10780
10780
10780
10780
10781
10781
10781
10782
10782
10782
10783
10783
10783
10784
10784
10784
10785
10785
10785
10786
10786
10786
10787
10787
10787
10788
10788
10788
10789
10789
10789
10790
10790
10790
10791
10791
10791
10792
10792
10792
10793
10793
10793
10794
10794
10794
10795
10795
10795
10796
10796
10796
10797
10797
10797
10798
10798
10798
10799
10799
10799
10800
10800
10800
10801
10801
10801
10802
10802
10802
10802
10803
10803
10803
10804
10804
10804
10805
10805
10805
10806
10806
10806
10807
10807
10807
10808
10808
10808
10809
10809
10809
10810
10810
10810
10811
10811
10811
10812
10812
10812
10813
10813
10813
10814
10814
10814
10815
10815
10815
10816
10816
10816
10817
10817
10817
10818
10818
10818
10819
10819
10819
10820
10820
10820
10821
10821
10821
10822
10822
10822
10823
10823
10823
10824
10824
10824
10824
10825
10825
10825
10826
10826
10826
10827
10827
10827
10828
10828
10828
10829
10829
10829
10830
10830
10830
10831
10831
10831
10832
10832
10832
10833
10833
10833
10834
10834
10834
10835
10835
10835
10836
10836
10836
10837
10837
10837
10838
10838
10838
10839
10839
10839
10840
10840
10840
10841
10841
10841
10842
10842
10842
10843
10843
10843
10844
10844
10844
10845
10845
10845
10846
10846
10846
10846
10847
10847
10847
10848
10848
10848
10849
10849
10849
10850
10850
10850
10851
10851
10851
10852
10852
10852
10853
10853
10853
10854
10854
10854
10855
10855
10855
10856
10856
10856
10857
10857
10857
10858
10858
10858
10859
10859
10859
10860
10860
10860
10861
10861
10861
10862
10862
10862
10863
10863
10863
10864
10864
10864
10865
10865
10865
10866
10866
10866
10867
10867
10867
10868
10868
10868
10868
10869
10869
10869
10870
10870
10870
10871
10871
10871
10872
10872
10872
10873
10873
10873
10874
10874
10874
10875
10875
10875
10876
10876
10876
10877
10877
10877
10878
10878
10878
10879
10879
10879
10880
10880
10880
10881
10881
10881
10882
10882
10882
10883
10883
10883
10884
10884
10884
10885
10885
10885
10886
10886
10886
10887
10887
10887
10888
10888
10888
10889
10889
10889
10890
10890
10890
10890
10891
10891
10891
10892
10892
10892
10893
10893
10893
10894
10894
10894
10895
10895
10895
10896
10896
10896
10897
10897
10897
10898
10898
10898
10899
10899
10899
10900
10900
10900
10901
10901
10901
10902
10902
10902
10903
10903
10903
10904
10904
10904
10905
10905
10905
10906
10906
10906
10907
10907
10907
10908
10908
10908
10909
10909
10909
10910
10910
10910
10911
10911
10911
10912
10912
10912
10912
10913
10913
10913
10914
10914
10914
10915
10915
10915
10916
10916
10916
10917
10917
10917
10918
10918
10918
10919
10919
10919
10920
10920
10920
10921
10921
10921
10922
10922
10922
10923
10923
10923
10924
10924
10924
10925
10925
10925
10926
10926
10926
10927
10927
10927
10928
10928
10928
10929
10929
10929
10930
10930
10930
10931
10931
10931
10932
10932
10932
10933
10933
10933
10934
10934
10934
10934
10935
10935
10935
10936
10936
10936
10937
10937
10937
10938
10938
10938
10939
10939
10939
10940
10940
10940
10941
10941
10941
10942
10942
10942
10943
10943
10943
10944
10944
10944
10945
10945
10945
10946
10946
10946
10947
10947
10947
10948
10948
10948
10949
10949
10949
10950
10950
10950
10951
10951
10951
10952
10952
10952
10953
10953
10953
10954
10954
10954
10955
10955
10955
10956
10956
10956
10956
10957
10957
10957
10958
10958
10958
10959
10959
10959
10960
10960
10960
10961
10961
10961
10962
10962
10962
10963
10963
10963
10964
10964
10964
10965
10965
10965
10966
10966
10966
10967
10967
10967
10968
10968
10968
10969
10969
10969
10970
10970
10970
10971
10971
10971
10972
10972
10972
10973
10973
10973
10974
10974
10974
10975
10975
10975
10976
10976
10976
10977
10977
10977
10978
10978
10978
10979
10979
10980
10980
10981
10981
10982
10982
10983
10983
10984
10984
10985
10985
10986
10986
10987
10987
10988
10988
10989
10989
10990
10990
10991
10991
10992
10992
10993
10993
10994
10994
10995
10995
10996
10996
10997
10997
10998
10998
10999
10999
11000
11000
11000
11000
11001
11001
11001
11002
11002
11002
11003
11003
11003
11004
11004
11004
11005
11005
11005
11006
11006
11006
11007
11007
11007
11008
11008
11008
11009
11009
11009
11010
11010
11010
11011
11011
11011
11012
11012
11012
11013
11013
11013
11014
11014
11014
11015
11015
11015
11016
11016
11016
11017
11017
11017
11018
11018
11018
11019
11019
11019
11020
11020
11020
11021
11021
11021
11022
11022
11022
11022
11023
11023
11023
11024
11024
11024
11025
11025
11025
11026
11026
11026
11027
11027
11027
11028
11028
11028
11029
11029
11029
11030
11030
11030
11031
11031
11031
11032
11032
11032
11033
11033
11033
11034
11034
11034
11035
11035
11035
11036
11036
11036
11037
11037
11037
11038
11038
11038
11039
11039
11039
11040
11040
11040
11041
11041
11041
11042
11042
11042
11043
11043
11043
11044
11044
11044
11044
11045
11045
11045
11046
11046
11046
11047
11047
11047
11048
11048
11048
11049
11049
11049
11050
11050
11050
11051
11051
11051
11052
11052
11052
11053
11053
11053
11054
11054
11054
11055
11055
11055
11056
11056
11056
11057
11057
11057
11058
11058
11058
11059
11059
11059
11060
11060
11060
11061
11061
11061
11062
11062
11062
11063
11063
11063
11064
11064
11064
11065
11065
11065
11066
11066
11066
11066
11067
11067
11067
11068
11068
11068
11069
11069
11069
11070
11070
11070
11071
11071
11071
11072
11072
11072
11073
11073
11073
11074
11074
11074
11075
11075
11075
11076
11076
11076
11077
11077
11077
11078
11078
11078
11079
11079
11079
11080
11080
11080
11081
11081
11081
11082
11082
11082
11083
11083
11083
11084
11084
11084
11085
11085
11085
11086
11086
11086
11087
11087
11087
11088
11088
11088
11088
11089
11089
11089
11090
11090
11090
11091
11091
11091
11092
11092
11092
11093
11093
11093
11094
11094
11094
11095
11095
11095
11096
11096
11096
11097
11097
11097
11098
11098
11098
11099
11099
11099
11100
11100
11100
11101
11101
11101
11102
11102
11102
11103
11103
11103
11104
11104
11104
11105
11105
11105
11106
11106
11106
11107
11107
11107
11108
11108
11108
11109
11109
11109
11110
11110
11110
11110
11111
11111
11111
11112
11112
11112
11113
11113
11113
11114
11114
11114
11115
11115
11115
11116
11116
11116
11117
11117
11117
11118
11118
11118
11119
11119
11119
11120
11120
11120
11121
11121
11121
11122
11122
11122
11123
11123
11123
11124
11124
11124
11125
11125
11125
11126
11126
11126
11127
11127
11127
11128
11128
11128
11129
11129
11129
11130
11130
11130
11131
11131
11131
11132
11132
11132
11132
11133
11133
11133
11134
11134
11134
11135
11135
11135
11136
11136
11136
11137
11137
11137
11138
11138
11138
11139
11139
11139
11140
11140
11140
11141
11141
11141
11142
11142
11142
11143
11143
11143
11144
11144
11144
11145
11145
11145
11146
11146
11146
11147
11147
11147
11148
11148
11148
11149
11149
11149
11150
11150
11150
11151
11151
11151
11152
11152
11152
11153
11153
11153
11154
11154
11154
11154
11155
11155
11155
11156
11156
11156
11157
11157
11157
11158
11158
11158
11159
11159
11159
11160
11160
11160
11161
11161
11161
11162
11162
11162
11163
11163
11163
11164
11164
11164
11165
11165
11165
11166
11166
11166
11167
11167
11167
11168
11168
11168
11169
11169
11169
11170
11170
11170
11171
11171
11171
11172
11172
11172
11173
11173
11173
11174
11174
11174
11175
11175
11175
11176
11176
11176
11176
11177
11177
11177
11178
11178
11178
11179
11179
11179
11180
11180
11180
11181
11181
11181
11182
11182
11182
11183
11183
11183
11184
11184
11184
11185
11185
11185
11186
11186
11186
11187
11187
11187
11188
11188
11188
11189
11189
11189
11190
11190
11190
11191
11191
11191
11192
11192
11192
11193
11193
11193
11194
11194
11194
11195
11195
11195
11196
11196
11196
11197
11197
11197
11198
11198
11198
11199
11199
11200
11200
11201
11201
11202
11202
11203
11203
11204
11204
11205
11205
11206
11206
11207
11207
11208
11208
11209
11209
11210
11210
11211
11211
11212
11212
11213
11213
11214
11214
11215
11215
11216
11216
11217
11217
11218
11218
11219
11219
11220
11220
11220
11220
11221
11221
11221
11222
11222
11222
11223
11223
11223
11224
11224
11224
11225
11225
11225
11226
11226
11226
11227
11227
11227
11228
11228
11228
11229
11229
11229
11230
11230
11230
11231
11231
11231
11232
11232
11232
11233
11233
11233
11234
11234
11234
11235
11235
11235
11236
11236
11236
11237
11237
11237
11238
11238
11238
11239
11239
11239
11240
11240
11240
11241
11241
11241
11242
11242
11242
11242
11243
11243
11243
11244
11244
11244
11245
11245
11245
11246
11246
11246
11247
11247
11247
11248
11248
11248
11249
11249
11249
11250
11250
11250
11251
11251
11251
11252
11252
11252
11253
11253
11253
11254
11254
11254
11255
11255
11255
11256
11256
11256
11257
11257
11257
11258
11258
11258
11259
11259
11259
11260
11260
11260
11261
11261
11261
11262
11262
11262
11263
11263
11263
11264
11264
11264
11264
11265
11265
11265
11266
11266
11266
11267
11267
11267
11268
11268
11268
11269
11269
11269
11270
11270
11270
11271
11271
11271
11272
11272
11272
11273
11273
11273
11274
11274
11274
11275
11275
11275
11276
11276
11276
11277
11277
11277
11278
11278
11278
11279
11279
11279
11280
11280
11280
11281
11281
11281
11282
11282
11282
11283
11283
11283
11284
11284
11284
11285
11285
11285
11286
11286
11286
11286
11287
11287
11287
11288
11288
11288
11289
11289
11289
11290
11290
11290
11291
11291
11291
11292
11292
11292
11293
11293
11293
11294
11294
11294
11295
11295
11295
11296
11296
11296
11297
11297
11297
11298
11298
11298
11299
11299
11299
11300
11300
11300
11301
11301
11301
11302
11302
11302
11303
11303
11303
11304
11304
11304
11305
11305
11305
11306
11306
11306
11307
11307
11307
11308
11308
11308
11308
11309
11309
11309
11310
11310
11310
11311
11311
11311
11312
11312
11312
11313
11313
11313
11314
11314
11314
11315
11315
11315
11316
11316
11316
11317
11317
11317
11318
11318
11318
11319
11319
11319
11320
11320
11320
11321
11321
11321
11322
11322
11322
11323
11323
11323
11324
11324
11324
11325
11325
11325
11326
11326
11326
11327
11327
11327
11328
11328
11328
11329
11329
11329
11330
11330
11330
11330
11331
11331
11331
11332
11332
11332
11333
11333
11333
11334
11334
11334
11335
11335
11335
11336
11336
11336
11337
11337
11337
11338
11338
11338
11339
11339
11339
11340
11340
11340
11341
11341
11341
11342
11342
11342
11343
11343
11343
11344
11344
11344
11345
11345
11345
11346
11346
11346
11347
11347
11347
11348
11348
11348
11349
11349
11349
11350
11350
11350
11351
11351
11351
11352
11352
11352
11352
11353
11353
11353
11354
11354
11354
11355
11355
11355
11356
11356
11356
11357
11357
11357
11358
11358
11358
11359
11359
11359
11360
11360
11360
11361
11361
11361
11362
11362
11362
11363
11363
11363
11364
11364
11364
11365
11365
11365
11366
11366
11366
11367
11367
11367
11368
11368
11368
11369
11369
11369
11370
11370
11370
11371
11371
11371
11372
11372
11372
11373
11373
11373
11374
11374
11374
11374
11375
11375
11375
11376
11376
11376
11377
11377
11377
11378
11378
11378
11379
11379
11379
11380
11380
11380
11381
11381
11381
11382
11382
11382
11383
11383
11383
11384
11384
11384
11385
11385
11385
11386
11386
11386
11387
11387
11387
11388
11388
11388
11389
11389
11389
11390
11390
11390
11391
11391
11391
11392
11392
11392
11393
11393
11393
11394
11394
11394
11395
11395
11395
11396
11396
11396
11396
11397
11397
11397
11398
11398
11398
11399
11399
11399
11400
11400
11400
11401
11401
11401
11402
11402
11402
11403
11403
11403
11404
11404
11404
11405
11405
11405
11406
11406
11406
11407
11407
11407
11408
11408
11408
11409
11409
11409
11410
11410
11410
11411
11411
11411
11412
11412
11412
11413
11413
11413
11414
11414
11414
11415
11415
11415
11416
11416
11416
11417
11417
11417
11418
11418
11418
11419
11419
11420
11420
11421
11421
11422
11422
11423
11423
11424
11424
11425
11425
11426
11426
11427
11427
11428
11428
11429
11429
11430
11430
11431
11431
11432
11432
11433
11433
11434
11434
11435
11435
11436
11436
11437
11437
11438
11438
11439
11439
11440
11440
11440
11440
11441
11441
11441
11442
11442
11442
11443
11443
11443
11444
11444
11444
11445
11445
11445
11446
11446
11446
11447
11447
11447
11448
11448
11448
11449
11449
11449
11450
11450
11450
11451
11451
11451
11452
11452
11452
11453
11453
11453
11454
11454
11454
11455
11455
11455
11456
11456
11456
11457
11457
11457
11458
11458
11458
11459
11459
11459
11460
11460
11460
11461
11461
11461
11462
11462
11462
11462
11463
11463
11463
11464
11464
11464
11465
11465
11465
11466
11466
11466
11467
11467
11467
11468
11468
11468
11469
11469
11469
11470
11470
11470
11471
11471
11471
11472
11472
11472
11473
11473
11473
11474
11474
11474
11475
11475
11475
11476
11476
11476
11477
11477
11477
11478
11478
11478
11479
11479
11479
11480
11480
11480
11481
11481
11481
11482
11482
11482
11483
11483
11483
11484
11484
11484
11484
11485
11485
11485
11486
11486
11486
11487
11487
11487
11488
11488
11488
11489
11489
11489
11490
11490
11490
11491
11491
11491
11492
11492
11492
11493
11493
11493
11494
11494
11494
11495
11495
11495
11496
11496
11496
11497
11497
11497
11498
11498
11498
11499
11499
11499
11500
11500
11500
11501
11501
11501
11502
11502
11502
11503
11503
11503
11504
11504
11504
11505
11505
11505
11506
11506
11506
11506
11507
11507
11507
11508
11508
11508
11509
11509
11509
11510
11510
11510
11511
11511
11511
11512
11512
11512
11513
11513
11513
11514
11514
11514
11515
11515
11515
11516
11516
11516
11517
11517
11517
11518
11518
11518
11519
11519
11519
11520
11520
11520
11521
11521
11521
11522
11522
11522
11523
11523
11523
11524
11524
11524
11525
11525
11525
11526
11526
11526
11527
11527
11527
11528
11528
11528
11528
11529
11529
11529
11530
11530
11530
11531
11531
11531
11532
11532
11532
11533
11533
11533
11534
11534
11534
11535
11535
11535
11536
11536
11536
11537
11537
11537
11538
11538
11538
11539
11539
11539
11540
11540
11540
11541
11541
11541
11542
11542
11542
11543
11543
11543
11544
11544
11544
11545
11545
11545
11546
11546
11546
11547
11547
11547
11548
11548
11548
11549
11549
11549
11550
11550
11550
11550
11551
11551
11551
11552
11552
11552
11553
11553
11553
11554
11554
11554
11555
11555
11555
11556
11556
11556
11557
11557
11557
11558
11558
11558
11559
11559
11559
11560
11560
11560
11561
11561
11561
11562
11562
11562
11563
11563
11563
11564
11564
11564
11565
11565
11565
11566
11566
11566
11567
11567
11567
11568
11568
11568
11569
11569
11569
11570
11570
11570
11571
11571
11571
11572
11572
11572
11572
11573
11573
11573
11574
11574
11574
11575
11575
11575
11576
11576
11576
11577
11577
11577
11578
11578
11578
11579
11579
11579
11580
11580
11580
11581
11581
11581
11582
11582
11582
11583
11583
11583
11584
11584
11584
11585
11585
11585
11586
11586
11586
11587
11587
11587
11588
11588
11588
11589
11589
11589
11590
11590
11590
11591
11591
11591
11592
11592
11592
11593
11593
11593
11594
11594
11594
11594
11595
11595
11595
11596
11596
11596
11597
11597
11597
11598
11598
11598
11599
11599
11599
11600
11600
11600
11601
11601
11601
11602
11602
11602
11603
11603
11603
11604
11604
11604
11605
11605
11605
11606
11606
11606
11607
11607
11607
11608
11608
11608
11609
11609
11609
11610
11610
11610
11611
11611
11611
11612
11612
11612
11613
11613
11613
11614
11614
11614
11615
11615
11615
11616
11616
11616
11616
11617
11617
11617
11618
11618
11618
11619
11619
11619
11620
11620
11620
11621
11621
11621
11622
11622
11622
11623
11623
11623
11624
11624
11624
11625
11625
11625
11626
11626
11626
11627
11627
11627
11628
11628
11628
11629
11629
11629
11630
11630
11630
11631
11631
11631
11632
11632
11632
11633
11633
11633
11634
11634
11634
11635
11635
11635
11636
11636
11636
11637
11637
11637
11638
11638
11638
11639
11639
11640
11640
11641
11641
11642
11642
11643
11643
11644
11644
11645
11645
11646
11646
11647
11647
11648
11648
11649
11649
11650
11650
11651
11651
11652
11652
11653
11653
11654
11654
11655
11655
11656
11656
11657
11657
11658
11658
11659
11659
11660
11660
11660
11660
11661
11661
11661
11662
11662
11662
11663
11663
11663
11664
11664
11664
11665
11665
11665
11666
11666
11666
11667
11667
11667
11668
11668
11668
11669
11669
11669
11670
11670
11670
11671
11671
11671
11672
11672
11672
11673
11673
11673
11674
11674
11674
11675
11675
11675
11676
11676
11676
11677
11677
11677
11678
11678
11678
11679
11679
11679
11680
11680
11680
11681
11681
11681
11682
11682
11682
11682
11683
11683
11683
11684
11684
11684
11685
11685
11685
11686
11686
11686
11687
11687
11687
11688
11688
11688
11689
11689
11689
11690
11690
11690
11691
11691
11691
11692
11692
11692
11693
11693
11693
11694
11694
11694
11695
11695
11695
11696
11696
11696
11697
11697
11697
11698
11698
11698
11699
11699
11699
11700
11700
11700
11701
11701
11701
11702
11702
11702
11703
11703
11703
11704
11704
11704
11704
11705
11705
11705
11706
11706
11706
11707
11707
11707
11708
11708
11708
11709
11709
11709
11710
11710
11710
11711
11711
11711
11712
11712
11712
11713
11713
11713
11714
11714
11714
11715
11715
11715
11716
11716
11716
11717
11717
11717
11718
11718
11718
11719
11719
11719
11720
11720
11720
11721
11721
11721
11722
11722
11722
11723
11723
11723
11724
11724
11724
11725
11725
11725
11726
11726
11726
11726
11727
11727
11727
11728
11728
11728
11729
11729
11729
11730
11730
11730
11731
11731
11731
11732
11732
11732
11733
11733
11733
11734
11734
11734
11735
11735
11735
11736
11736
11736
11737
11737
11737
11738
11738
11738
11739
11739
11739
11740
11740
11740
11741
11741
11741
11742
11742
11742
11743
11743
11743
11744
11744
11744
11745
11745
11745
11746
11746
11746
11747
11747
11747
11748
11748
11748
11748
11749
11749
11749
11750
11750
11750
11751
11751
11751
11752
11752
11752
11753
11753
11753
11754
11754
11754
11755
11755
11755
11756
11756
11756
11757
11757
11757
11758
11758
11758
11759
11759
11759
11760
11760
11760
11761
11761
11761
11762
11762
11762
11763
11763
11763
11764
11764
11764
11765
11765
11765
11766
11766
11766
11767
11767
11767
11768
11768
11768
11769
11769
11769
11770
11770
11770
11770
11771
11771
11771
11772
11772
11772
11773
11773
11773
11774
11774
11774
11775
11775
11775
11776
11776
11776
11777
11777
11777
11778
11778
11778
11779
11779
11779
11780
11780
11780
11781
11781
11781
11782
11782
11782
11783
11783
11783
11784
11784
11784
11785
11785
11785
11786
11786
11786
11787
11787
11787
11788
11788
11788
11789
11789
11789
11790
11790
11790
11791
11791
11791
11792
11792
11792
11792
11793
11793
11793
11794
11794
11794
11795
11795
11795
11796
11796
11796
11797
11797
11797
11798
11798
11798
11799
11799
11799
11800
11800
11800
11801
11801
11801
11802
11802
11802
11803
11803
11803
11804
11804
11804
11805
11805
11805
11806
11806
11806
11807
11807
11807
11808
11808
11808
11809
11809
11809
11810
11810
11810
11811
11811
11811
11812
11812
11812
11813
11813
11813
11814
11814
11814
11814
11815
11815
11815
11816
11816
11816
11817
11817
11817
11818
11818
11818
11819
11819
11819
11820
11820
11820
11821
11821
11821
11822
11822
11822
11823
11823
11823
11824
11824
11824
11825
11825
11825
11826
11826
11826
11827
11827
11827
11828
11828
11828
11829
11829
11829
11830
11830
11830
11831
11831
11831
11832
11832
11832
11833
11833
11833
11834
11834
11834
11835
11835
11835
11836
11836
11836
11836
11837
11837
11837
11838
11838
11838
11839
11839
11839
11840
11840
11840
11841
11841
11841
11842
11842
11842
11843
11843
11843
11844
11844
11844
11845
11845
11845
11846
11846
11846
11847
11847
11847
11848
11848
11848
11849
11849
11849
11850
11850
11850
11851
11851
11851
11852
11852
11852
11853
11853
11853
11854
11854
11854
11855
11855
11855
11856
11856
11856
11857
11857
11857
11858
11858
11858
11859
11859
11860
11860
11861
11861
11862
11862
11863
11863
11864
11864
11865
11865
11866
11866
11867
11867
11868
11868
11869
11869
11870
11870
11871
11871
11872
11872
11873
11873
11874
11874
11875
11875
11876
11876
11877
11877
11878
11878
11879
11879
11880
11880
11880
11880
11881
11881
11881
11882
11882
11882
11883
11883
11883
11884
11884
11884
11885
11885
11885
11886
11886
11886
11887
11887
11887
11888
11888
11888
11889
11889
11889
11890
11890
11890
11891
11891
11891
11892
11892
11892
11893
11893
11893
11894
11894
11894
11895
11895
11895
11896
11896
11896
11897
11897
11897
11898
11898
11898
11899
11899
11899
11900
11900
11900
11901
11901
11901
11902
11902
11902
11902
11903
11903
11903
11904
11904
11904
11905
11905
11905
11906
11906
11906
11907
11907
11907
11908
11908
11908
11909
11909
11909
11910
11910
11910
11911
11911
11911
11912
11912
11912
11913
11913
11913
11914
11914
11914
11915
11915
11915
11916
11916
11916
11917
11917
11917
11918
11918
11918
11919
11919
11919
11920
11920
11920
11921
11921
11921
11922
11922
11922
11923
11923
11923
11924
11924
11924
11924
11925
11925
11925
11926
11926
11926
11927
11927
11927
11928
11928
11928
11929
11929
11929
11930
11930
11930
11931
11931
11931
11932
11932
11932
11933
11933
11933
11934
11934
11934
11935
11935
11935
11936
11936
11936
11937
11937
11937
11938
11938
11938
11939
11939
11939
11940
11940
11940
11941
11941
11941
11942
11942
11942
11943
11943
11943
11944
11944
11944
11945
11945
11945
11946
11946
11946
11946
11947
11947
11947
11948
11948
11948
11949
11949
11949
11950
11950
11950
11951
11951
11951
11952
11952
11952
11953
11953
11953
11954
11954
11954
11955
11955
11955
11956
11956
11956
11957
11957
11957
11958
11958
11958
11959
11959
11959
11960
11960
11960
11961
11961
11961
11962
11962
11962
11963
11963
11963
11964
11964
11964
11965
11965
11965
11966
11966
11966
11967
11967
11967
11968
11968
11968
11968
11969
11969
11969
11970
11970
11970
11971
11971
11971
11972
11972
11972
11973
11973
11973
11974
11974
11974
11975
11975
11975
11976
11976
11976
11977
11977
11977
11978
11978
11978
11979
11979
11979
11980
11980
11980
11981
11981
11981
11982
11982
11982
11983
11983
11983
11984
11984
11984
11985
11985
11985
11986
11986
11986
11987
11987
11987
11988
11988
11988
11989
11989
11989
11990
11990
11990
11990
11991
11991
11991
11992
11992
11992
11993
11993
11993
11994
11994
11994
11995
11995
11995
11996
11996
11996
11997
11997
11997
11998
11998
11998
11999
11999
11999
12000
12000
12000
12001
12001
12001
12002
12002
12002
12003
12003
12003
12004
12004
12004
12005
12005
12005
12006
12006
12006
12007
12007
12007
12008
12008
12008
12009
12009
12009
12010
12010
12010
12011
12011
12011
12012
12012
12012
12012
12013
12013
12013
12014
12014
12014
12015
12015
12015
12016
12016
12016
12017
12017
12017
12018
12018
12018
12019
12019
12019
12020
12020
12020
12021
12021
12021
12022
12022
12022
12023
12023
12023
12024
12024
12024
12025
12025
12025
12026
12026
12026
12027
12027
12027
12028
12028
12028
12029
12029
12029
12030
12030
12030
12031
12031
12031
12032
12032
12032
12033
12033
12033
12034
12034
12034
12034
12035
12035
12035
12036
12036
12036
12037
12037
12037
12038
12038
12038
12039
12039
12039
12040
12040
12040
12041
12041
12041
12042
12042
12042
12043
12043
12043
12044
12044
12044
12045
12045
12045
12046
12046
12046
12047
12047
12047
12048
12048
12048
12049
12049
12049
12050
12050
12050
12051
12051
12051
12052
12052
12052
12053
12053
12053
12054
12054
12054
12055
12055
12055
12056
12056
12056
12056
12057
12057
12057
12058
12058
12058
12059
12059
12059
12060
12060
12060
12061
12061
12061
12062
12062
12062
12063
12063
12063
12064
12064
12064
12065
12065
12065
12066
12066
12066
12067
12067
12067
12068
12068
12068
12069
12069
12069
12070
12070
12070
12071
12071
12071
12072
12072
12072
12073
12073
12073
12074
12074
12074
12075
12075
12075
12076
12076
12076
12077
12077
12077
12078
12078
12078
12079
12079
12080
12080
12081
12081
12082
12082
12083
12083
12084
12084
12085
12085
12086
12086
12087
12087
12088
12088
12089
12089
12090
12090
12091
12091
12092
12092
12093
12093
12094
12094
12095
12095
12096
12096
12097
12097
12098
12098
12099
12099
12100
12100
12100
12100
12101
12101
12101
12102
12102
12102
12103
12103
12103
12104
12104
12104
12105
12105
12105
12106
12106
12106
12107
12107
12107
12108
12108
12108
12109
12109
12109
12110
12110
12110
12111
12111
12111
12112
12112
12112
12113
12113
12113
12114
12114
12114
12115
12115
12115
12116
12116
12116
12117
12117
12117
12118
12118
12118
12119
12119
12119
12120
12120
12120
12121
12121
12121
12122
12122
12122
12122
12123
12123
12123
12124
12124
12124
12125
12125
12125
12126
12126
12126
12127
12127
12127
12128
12128
12128
12129
12129
12129
12130
12130
12130
12131
12131
12131
12132
12132
12132
12133
12133
12133
12134
12134
12134
12135
12135
12135
12136
12136
12136
12137
12137
12137
12138
12138
12138
12139
12139
12139
12140
12140
12140
12141
12141
12141
12142
12142
12142
12143
12143
12143
12144
12144
12144
12144
12145
12145
12145
12146
12146
12146
12147
12147
12147
12148
12148
12148
12149
12149
12149
12150
12150
12150
12151
12151
12151
12152
12152
12152
12153
12153
12153
12154
12154
12154
12155
12155
12155
12156
12156
12156
12157
12157
12157
12158
12158
12158
12159
12159
12159
12160
12160
12160
12161
12161
12161
12162
12162
12162
12163
12163
12163
12164
12164
12164
12165
12165
12165
12166
12166
12166
12166
12167
12167
12167
12168
12168
12168
12169
12169
12169
12170
12170
12170
12171
12171
12171
12172
12172
12172
12173
12173
12173
12174
12174
12174
12175
12175
12175
12176
12176
12176
12177
12177
12177
12178
12178
12178
12179
12179
12179
12180
12180
12180
12181
12181
12181
12182
12182
12182
12183
12183
12183
12184
12184
12184
12185
12185
12185
12186
12186
12186
12187
12187
12187
12188
12188
12188
12188
12189
12189
12189
12190
12190
12190
12191
12191
12191
12192
12192
12192
12193
12193
12193
12194
12194
12194
12195
12195
12195
12196
12196
12196
12197
12197
12197
12198
12198
12198
12199
12199
12199
12200
12200
12200
12201
12201
12201
12202
12202
12202
12203
12203
12203
12204
12204
12204
12205
12205
12205
12206
12206
12206
12207
12207
12207
12208
12208
12208
12209
12209
12209
12210
12210
12210
12210
12211
12211
12211
12212
12212
12212
12213
12213
12213
12214
12214
12214
12215
12215
12215
12216
12216
12216
12217
12217
12217
12218
12218
12218
12219
12219
12219
12220
12220
12220
12221
12221
12221
12222
12222
12222
12223
12223
12223
12224
12224
12224
12225
12225
12225
12226
12226
12226
12227
12227
12227
12228
12228
12228
12229
12229
12229
12230
12230
12230
12231
12231
12231
12232
12232
12232
12232
12233
12233
12233
12234
12234
12234
12235
12235
12235
12236
12236
12236
12237
12237
12237
12238
12238
12238
12239
12239
12239
12240
12240
12240
12241
12241
12241
12242
12242
12242
12243
12243
12243
12244
12244
12244
12245
12245
12245
12246
12246
12246
12247
12247
12247
12248
12248
12248
12249
12249
12249
12250
12250
12250
12251
12251
12251
12252
12252
12252
12253
12253
12253
12254
12254
12254
12254
12255
12255
12255
12256
12256
12256
12257
12257
12257
12258
12258
12258
12259
12259
12259
12260
12260
12260
12261
12261
12261
12262
12262
12262
12263
12263
12263
12264
12264
12264
12265
12265
12265
12266
12266
12266
12267
12267
12267
12268
12268
12268
12269
12269
12269
12270
12270
12270
12271
12271
12271
12272
12272
12272
12273
12273
12273
12274
12274
12274
12275
12275
12275
12276
12276
12276
12276
12277
12277
12277
12278
12278
12278
12279
12279
12279
12280
12280
12280
12281
12281
12281
12282
12282
12282
12283
12283
12283
12284
12284
12284
12285
12285
12285
12286
12286
12286
12287
12287
12287
12288
12288
12288
12289
12289
12289
12290
12290
12290
12291
12291
12291
12292
12292
12292
12293
12293
12293
12294
12294
12294
12295
12295
12295
12296
12296
12296
12297
12297
12297
12298
12298
12298
12299
12299
12300
12300
12301
12301
12302
12302
12303
12303
12304
12304
12305
12305
12306
12306
12307
12307
12308
12308
12309
12309
12310
12310
12311
12311
12312
12312
12313
12313
12314
12314
12315
12315
12316
12316
12317
12317
12318
12318
12319
12319
12320
12320
12320
12320
12321
12321
12321
12322
12322
12322
12323
12323
12323
12324
12324
12324
12325
12325
12325
12326
12326
12326
12327
12327
12327
12328
12328
12328
12329
12329
12329
12330
12330
12330
12331
12331
12331
12332
12332
12332
12333
12333
12333
12334
12334
12334
12335
12335
12335
12336
12336
12336
12337
12337
12337
12338
12338
12338
12339
12339
12339
12340
12340
12340
12341
12341
12341
12342
12342
12342
12342
12343
12343
12343
12344
12344
12344
12345
12345
12345
12346
12346
12346
12347
12347
12347
12348
12348
12348
12349
12349
12349
12350
12350
12350
12351
12351
12351
12352
12352
12352
12353
12353
12353
12354
12354
12354
12355
12355
12355
12356
12356
12356
12357
12357
12357
12358
12358
12358
12359
12359
12359
12360
12360
12360
12361
12361
12361
12362
12362
12362
12363
12363
12363
12364
12364
12364
12364
12365
12365
12365
12366
12366
12366
12367
12367
12367
12368
12368
12368
12369
12369
12369
12370
12370
12370
12371
12371
12371
12372
12372
12372
12373
12373
12373
12374
12374
12374
12375
12375
12375
12376
12376
12376
12377
12377
12377
12378
12378
12378
12379
12379
12379
12380
12380
12380
12381
12381
12381
12382
12382
12382
12383
12383
12383
12384
12384
12384
12385
12385
12385
12386
12386
12386
12386
12387
12387
12387
12388
12388
12388
12389
12389
12389
12390
12390
12390
12391
12391
12391
12392
12392
12392
12393
12393
12393
12394
12394
12394
12395
12395
12395
12396
12396
12396
12397
12397
12397
12398
12398
12398
12399
12399
12399
12400
12400
12400
12401
12401
12401
12402
12402
12402
12403
12403
12403
12404
12404
12404
12405
12405
12405
12406
12406
12406
12407
12407
12407
12408
12408
12408
12408
12409
12409
12409
12410
12410
12410
12411
12411
12411
12412
12412
12412
12413
12413
12413
12414
12414
12414
12415
12415
12415
12416
12416
12416
12417
12417
12417
12418
12418
12418
12419
12419
12419
12420
12420
12420
12421
12421
12421
12422
12422
12422
12423
12423
12423
12424
12424
12424
12425
12425
12425
12426
12426
12426
12427
12427
12427
12428
12428
12428
12429
12429
12429
12430
12430
12430
12430
12431
12431
12431
12432
12432
12432
12433
12433
12433
12434
12434
12434
12435
12435
12435
12436
12436
12436
12437
12437
12437
12438
12438
12438
12439
12439
12439
12440
12440
12440
12441
12441
12441
12442
12442
12442
12443
12443
12443
12444
12444
12444
12445
12445
12445
12446
12446
12446
12447
12447
12447
12448
12448
12448
12449
12449
12449
12450
12450
12450
12451
12451
12451
12452
12452
12452
12452
12453
12453
12453
12454
12454
12454
12455
12455
12455
12456
12456
12456
12457
12457
12457
12458
12458
12458
12459
12459
12459
12460
12460
12460
12461
12461
12461
12462
12462
12462
12463
12463
12463
12464
12464
12464
12465
12465
12465
12466
12466
12466
12467
12467
12467
12468
12468
12468
12469
12469
12469
12470
12470
12470
12471
12471
12471
12472
12472
12472
12473
12473
12473
12474
12474
12474
12474
12475
12475
12475
12476
12476
12476
12477
12477
12477
12478
12478
12478
12479
12479
12479
12480
12480
12480
12481
12481
12481
12482
12482
12482
12483
12483
12483
12484
12484
12484
12485
12485
12485
12486
12486
12486
12487
12487
12487
12488
12488
12488
12489
12489
12489
12490
12490
12490
12491
12491
12491
12492
12492
12492
12493
12493
12493
12494
12494
12494
12495
12495
12495
12496
12496
12496
12496
12497
12497
12497
12498
12498
12498
12499
12499
12499
12500
12500
12500
12501
12501
12501
12502
12502
12502
12503
12503
12503
12504
12504
12504
12505
12505
12505
12506
12506
12506
12507
12507
12507
12508
12508
12508
12509
12509
12509
12510
12510
12510
12511
12511
12511
12512
12512
12512
12513
12513
12513
12514
12514
12514
12515
12515
12515
12516
12516
12516
12517
12517
12517
12518
12518
12518
12519
12519
12520
12520
12521
12521
12522
12522
12523
12523
12524
12524
12525
12525
12526
12526
12527
12527
12528
12528
12529
12529
12530
12530
12531
12531
12532
12532
12533
12533
12534
12534
12535
12535
12536
12536
12537
12537
12538
12538
12539
12539
12540
12540
12540
12540
12541
12541
12541
12542
12542
12542
12543
12543
12543
12544
12544
12544
12545
12545
12545
12546
12546
12546
12547
12547
12547
12548
12548
12548
12549
12549
12549
12550
12550
12550
12551
12551
12551
12552
12552
12552
12553
12553
12553
12554
12554
12554
12555
12555
12555
12556
12556
12556
12557
12557
12557
12558
12558
12558
12559
12559
12559
12560
12560
12560
12561
12561
12561
12562
12562
12562
12562
12563
12563
12563
12564
12564
12564
12565
12565
12565
12566
12566
12566
12567
12567
12567
12568
12568
12568
12569
12569
12569
12570
12570
12570
12571
12571
12571
12572
12572
12572
12573
12573
12573
12574
12574
12574
12575
12575
12575
12576
12576
12576
12577
12577
12577
12578
12578
12578
12579
12579
12579
12580
12580
12580
12581
12581
12581
12582
12582
12582
12583
12583
12583
12584
12584
12584
12584
12585
12585
12585
12586
12586
12586
12587
12587
12587
12588
12588
12588
12589
12589
12589
12590
12590
12590
12591
12591
12591
12592
12592
12592
12593
12593
12593
12594
12594
12594
12595
12595
12595
12596
12596
12596
12597
12597
12597
12598
12598
12598
12599
12599
12599
12600
12600
12600
12601
12601
12601
12602
12602
12602
12603
12603
12603
12604
12604
12604
12605
12605
12605
12606
12606
12606
12606
12607
12607
12607
12608
12608
12608
12609
12609
12609
12610
12610
12610
12611
12611
12611
12612
12612
12612
12613
12613
12613
12614
12614
12614
12615
12615
12615
12616
12616
12616
12617
12617
12617
12618
12618
12618
12619
12619
12619
12620
12620
12620
12621
12621
12621
12622
12622
12622
12623
12623
12623
12624
12624
12624
12625
12625
12625
12626
12626
12626
12627
12627
12627
12628
12628
12628
12628
12629
12629
12629
12630
12630
12630
12631
12631
12631
12632
12632
12632
12633
12633
12633
12634
12634
12634
12635
12635
12635
12636
12636
12636
12637
12637
12637
12638
12638
12638
12639
12639
12639
12640
12640
12640
12641
12641
12641
12642
12642
12642
12643
12643
12643
12644
12644
12644
12645
12645
12645
12646
12646
12646
12647
12647
12647
12648
12648
12648
12649
12649
12649
12650
12650
12650
12650
12651
12651
12651
12652
12652
12652
12653
12653
12653
12654
12654
12654
12655
12655
12655
12656
12656
12656
12657
12657
12657
12658
12658
12658
12659
12659
12659
12660
12660
12660
12661
12661
12661
12662
12662
12662
12663
12663
12663
12664
12664
12664
12665
12665
12665
12666
12666
12666
12667
12667
12667
12668
12668
12668
12669
12669
12669
12670
12670
12670
12671
12671
12671
12672
12672
12672
12672
12673
12673
12673
12674
12674
12674
12675
12675
12675
12676
12676
12676
12677
12677
12677
12678
12678
12678
12679
12679
12679
12680
12680
12680
12681
12681
12681
12682
12682
12682
12683
12683
12683
12684
12684
12684
12685
12685
12685
12686
12686
12686
12687
12687
12687
12688
12688
12688
12689
12689
12689
12690
12690
12690
12691
12691
12691
12692
12692
12692
12693
12693
12693
12694
12694
12694
12694
12695
12695
12695
12696
12696
12696
12697
12697
12697
12698
12698
12698
12699
12699
12699
12700
12700
12700
12701
12701
12701
12702
12702
12702
12703
12703
12703
12704
12704
12704
12705
12705
12705
12706
12706
12706
12707
12707
12707
12708
12708
12708
12709
12709
12709
12710
12710
12710
12711
12711
12711
12712
12712
12712
12713
12713
12713
12714
12714
12714
12715
12715
12715
12716
12716
12716
12716
12717
12717
12717
12718
12718
12718
12719
12719
12719
12720
12720
12720
12721
12721
12721
12722
12722
12722
12723
12723
12723
12724
12724
12724
12725
12725
12725
12726
12726
12726
12727
12727
12727
12728
12728
12728
12729
12729
12729
12730
12730
12730
12731
12731
12731
12732
12732
12732
12733
12733
12733
12734
12734
12734
12735
12735
12735
12736
12736
12736
12737
12737
12737
12738
12738
12738
12739
12739
12740
12740
12741
12741
12742
12742
12743
12743
12744
12744
12745
12745
12746
12746
12747
12747
12748
12748
12749
12749
12750
12750
12751
12751
12752
12752
12753
12753
12754
12754
12755
12755
12756
12756
12757
12757
12758
12758
12759
12759
12760
12760
12760
12760
12761
12761
12761
12762
12762
12762
12763
12763
12763
12764
12764
12764
12765
12765
12765
12766
12766
12766
12767
12767
12767
12768
12768
12768
12769
12769
12769
12770
12770
12770
12771
12771
12771
12772
12772
12772
12773
12773
12773
12774
12774
12774
12775
12775
12775
12776
12776
12776
12777
12777
12777
12778
12778
12778
12779
12779
12779
12780
12780
12780
12781
12781
12781
12782
12782
12782
12782
12783
12783
12783
12784
12784
12784
12785
12785
12785
12786
12786
12786
12787
12787
12787
12788
12788
12788
12789
12789
12789
12790
12790
12790
12791
12791
12791
12792
12792
12792
12793
12793
12793
12794
12794
12794
12795
12795
12795
12796
12796
12796
12797
12797
12797
12798
12798
12798
12799
12799
12799
12800
12800
12800
12801
12801
12801
12802
12802
12802
12803
12803
12803
12804
12804
12804
12804
12805
12805
12805
12806
12806
12806
12807
12807
12807
12808
12808
12808
12809
12809
12809
12810
12810
12810
12811
12811
12811
12812
12812
12812
12813
12813
12813
12814
12814
12814
12815
12815
12815
12816
12816
12816
12817
12817
12817
12818
12818
12818
12819
12819
12819
12820
12820
12820
12821
12821
12821
12822
12822
12822
12823
12823
12823
12824
12824
12824
12825
12825
12825
12826
12826
12826
12826
12827
12827
12827
12828
12828
12828
12829
12829
12829
12830
12830
12830
12831
12831
12831
12832
12832
12832
12833
12833
12833
12834
12834
12834
12835
12835
12835
12836
12836
12836
12837
12837
12837
12838
12838
12838
12839
12839
12839
12840
12840
12840
12841
12841
12841
12842
12842
12842
12843
12843
12843
12844
12844
12844
12845
12845
12845
12846
12846
12846
12847
12847
12847
12848
12848
12848
12848
12849
12849
12849
12850
12850
12850
12851
12851
12851
12852
12852
12852
12853
12853
12853
12854
12854
12854
12855
12855
12855
12856
12856
12856
12857
12857
12857
12858
12858
12858
12859
12859
12859
12860
12860
12860
12861
12861
12861
12862
12862
12862
12863
12863
12863
12864
12864
12864
12865
12865
12865
12866
12866
12866
12867
12867
12867
12868
12868
12868
12869
12869
12869
12870
12870
12870
12870
12871
12871
12871
12872
12872
12872
12873
12873
12873
12874
12874
12874
12875
12875
12875
12876
12876
12876
12877
12877
12877
12878
12878
12878
12879
12879
12879
12880
12880
12880
12881
12881
12881
12882
12882
12882
12883
12883
12883
12884
12884
12884
12885
12885
12885
12886
12886
12886
12887
12887
12887
12888
12888
12888
12889
12889
12889
12890
12890
12890
12891
12891
12891
12892
12892
12892
12892
12893
12893
12893
12894
12894
12894
12895
12895
12895
12896
12896
12896
12897
12897
12897
12898
12898
12898
12899
12899
12899
12900
12900
12900
12901
12901
12901
12902
12902
12902
12903
12903
12903
12904
12904
12904
12905
12905
12905
12906
12906
12906
12907
12907
12907
12908
12908
12908
12909
12909
12909
12910
12910
12910
12911
12911
12911
12912
12912
12912
12913
12913
12913
12914
12914
12914
12914
12915
12915
12915
12916
12916
12916
12917
12917
12917
12918
12918
12918
12919
12919
12919
12920
12920
12920
12921
12921
12921
12922
12922
12922
12923
12923
12923
12924
12924
12924
12925
12925
12925
12926
12926
12926
12927
12927
12927
12928
12928
12928
12929
12929
12929
12930
12930
12930
12931
12931
12931
12932
12932
12932
12933
12933
12933
12934
12934
12934
12935
12935
12935
12936
12936
12936
12936
12937
12937
12937
12938
12938
12938
12939
12939
12939
12940
12940
12940
12941
12941
12941
12942
12942
12942
12943
12943
12943
12944
12944
12944
12945
12945
12945
12946
12946
12946
12947
12947
12947
12948
12948
12948
12949
12949
12949
12950
12950
12950
12951
12951
12951
12952
12952
12952
12953
12953
12953
12954
12954
12954
12955
12955
12955
12956
12956
12956
12957
12957
12957
12958
12958
12958
12959
12959
12960
12960
12961
12961
12962
12962
12963
12963
12964
12964
12965
12965
12966
12966
12967
12967
12968
12968
12969
12969
12970
12970
12971
12971
12972
12972
12973
12973
12974
12974
12975
12975
12976
12976
12977
12977
12978
12978
12979
12979
12980
12980
12980
12980
12981
12981
12981
12982
12982
12982
12983
12983
12983
12984
12984
12984
12985
12985
12985
12986
12986
12986
12987
12987
12987
12988
12988
12988
12989
12989
12989
12990
12990
12990
12991
12991
12991
12992
12992
12992
12993
12993
12993
12994
12994
12994
12995
12995
12995
12996
12996
12996
12997
12997
12997
12998
12998
12998
12999
12999
12999
13000
13000
13000
13001
13001
13001
13002
13002
13002
13002
13003
13003
13003
13004
13004
13004
13005
13005
13005
13006
13006
13006
13007
13007
13007
13008
13008
13008
13009
13009
13009
13010
13010
13010
13011
13011
13011
13012
13012
13012
13013
13013
13013
13014
13014
13014
13015
13015
13015
13016
13016
13016
13017
13017
13017
13018
13018
13018
13019
13019
13019
13020
13020
13020
13021
13021
13021
13022
13022
13022
13023
13023
13023
13024
13024
13024
13024
13025
13025
13025
13026
13026
13026
13027
13027
13027
13028
13028
13028
13029
13029
13029
13030
13030
13030
13031
13031
13031
13032
13032
13032
13033
13033
13033
13034
13034
13034
13035
13035
13035
13036
13036
13036
13037
13037
13037
13038
13038
13038
13039
13039
13039
13040
13040
13040
13041
13041
13041
13042
13042
13042
13043
13043
13043
13044
13044
13044
13045
13045
13045
13046
13046
13046
13046
13047
13047
13047
13048
13048
13048
13049
13049
13049
13050
13050
13050
13051
13051
13051
13052
13052
13052
13053
13053
13053
13054
13054
13054
13055
13055
13055
13056
13056
13056
13057
13057
13057
13058
13058
13058
13059
13059
13059
13060
13060
13060
13061
13061
13061
13062
13062
13062
13063
13063
13063
13064
13064
13064
13065
13065
13065
13066
13066
13066
13067
13067
13067
13068
13068
13068
13068
13069
13069
13069
13070
13070
13070
13071
13071
13071
13072
13072
13072
13073
13073
13073
13074
13074
13074
13075
13075
13075
13076
13076
13076
13077
13077
13077
13078
13078
13078
13079
13079
13079
13080
13080
13080
13081
13081
13081
13082
13082
13082
13083
13083
13083
13084
13084
13084
13085
13085
13085
13086
13086
13086
13087
13087
13087
13088
13088
13088
13089
13089
13089
13090
13090
13090
13090
13091
13091
13091
13092
13092
13092
13093
13093
13093
13094
13094
13094
13095
13095
13095
13096
13096
13096
13097
13097
13097
13098
13098
13098
13099
13099
13099
13100
13100
13100
13101
13101
13101
13102
13102
13102
13103
13103
13103
13104
13104
13104
13105
13105
13105
13106
13106
13106
13107
13107
13107
13108
13108
13108
13109
13109
13109
13110
13110
13110
13111
13111
13111
13112
13112
13112
13112
13113
13113
13113
13114
13114
13114
13115
13115
13115
13116
13116
13116
13117
13117
13117
13118
13118
13118
13119
13119
13119
13120
13120
13120
13121
13121
13121
13122
13122
13122
13123
13123
13123
13124
13124
13124
13125
13125
13125
13126
13126
13126
13127
13127
13127
13128
13128
13128
13129
13129
13129
13130
13130
13130
13131
13131
13131
13132
13132
13132
13133
13133
13133
13134
13134
13134
13134
13135
13135
13135
13136
13136
13136
13137
13137
13137
13138
13138
13138
13139
13139
13139
13140
13140
13140
13141
13141
13141
13142
13142
13142
13143
13143
13143
13144
13144
13144
13145
13145
13145
13146
13146
13146
13147
13147
13147
13148
13148
13148
13149
13149
13149
13150
13150
13150
13151
13151
13151
13152
13152
13152
13153
13153
13153
13154
13154
13154
13155
13155
13155
13156
13156
13156
13156
13157
13157
13157
13158
13158
13158
13159
13159
13159
13160
13160
13160
13161
13161
13161
13162
13162
13162
13163
13163
13163
13164
13164
13164
13165
13165
13165
13166
13166
13166
13167
13167
13167
13168
13168
13168
13169
13169
13169
13170
13170
13170
13171
13171
13171
13172
13172
13172
13173
13173
13173
13174
13174
13174
13175
13175
13175
13176
13176
13176
13177
13177
13177
13178
13178
13178
13179
13179
13180
13180
13181
13181
13182
13182
13183
13183
13184
13184
13185
13185
13186
13186
13187
13187
13188
13188
13189
13189
13190
13190
13191
13191
13192
13192
13193
13193
13194
13194
13195
13195
13196
13196
13197
13197
13198
13198
13199
13199
13200
13200
13200
13200
13201
13201
13201
13202
13202
13202
13203
13203
13203
13204
13204
13204
13205
13205
13205
13206
13206
13206
13207
13207
13207
13208
13208
13208
13209
13209
13209
13210
13210
13210
13211
13211
13211
13212
13212
13212
13213
13213
13213
13214
13214
13214
13215
13215
13215
13216
13216
13216
13217
13217
13217
13218
13218
13218
13219
13219
13219
13220
13220
13220
13221
13221
13221
13222
13222
13222
13222
13223
13223
13223
13224
13224
13224
13225
13225
13225
13226
13226
13226
13227
13227
13227
13228
13228
13228
13229
13229
13229
13230
13230
13230
13231
13231
13231
13232
13232
13232
13233
13233
13233
13234
13234
13234
13235
13235
13235
13236
13236
13236
13237
13237
13237
13238
13238
13238
13239
13239
13239
13240
13240
13240
13241
13241
13241
13242
13242
13242
13243
13243
13243
13244
13244
13244
13244
13245
13245
13245
13246
13246
13246
13247
13247
13247
13248
13248
13248
13249
13249
13249
13250
13250
13250
13251
13251
13251
13252
13252
13252
13253
13253
13253
13254
13254
13254
13255
13255
13255
13256
13256
13256
13257
13257
13257
13258
13258
13258
13259
13259
13259
13260
13260
13260
13261
13261
13261
13262
13262
13262
13263
13263
13263
13264
13264
13264
13265
13265
13265
13266
13266
13266
13266
13267
13267
13267
13268
13268
13268
13269
13269
13269
13270
13270
13270
13271
13271
13271
13272
13272
13272
13273
13273
13273
13274
13274
13274
13275
13275
13275
13276
13276
13276
13277
13277
13277
13278
13278
13278
13279
13279
13279
13280
13280
13280
13281
13281
13281
13282
13282
13282
13283
13283
13283
13284
13284
13284
13285
13285
13285
13286
13286
13286
13287
13287
13287
13288
13288
13288
13288
13289
13289
13289
13290
13290
13290
13291
13291
13291
13292
13292
13292
13293
13293
13293
13294
13294
13294
13295
13295
13295
13296
13296
13296
13297
13297
13297
13298
13298
13298
13299
13299
13299
13300
13300
13300
13301
13301
13301
13302
13302
13302
13303
13303
13303
13304
13304
13304
13305
13305
13305
13306
13306
13306
13307
13307
13307
13308
13308
13308
13309
13309
13309
13310
13310
13310
13310
13311
13311
13311
13312
13312
13312
13313
13313
13313
13314
13314
13314
13315
13315
13315
13316
13316
13316
13317
13317
13317
13318
13318
13318
13319
13319
13319
13320
13320
13320
13321
13321
13321
13322
13322
13322
13323
13323
13323
13324
13324
13324
13325
13325
13325
13326
13326
13326
13327
13327
13327
13328
13328
13328
13329
13329
13329
13330
13330
13330
13331
13331
13331
13332
13332
13332
13332
13333
13333
13333
13334
13334
13334
13335
13335
13335
13336
13336
13336
13337
13337
13337
13338
13338
13338
13339
13339
13339
13340
13340
13340
13341
13341
13341
13342
13342
13342
13343
13343
13343
13344
13344
13344
13345
13345
13345
13346
13346
13346
13347
13347
13347
13348
13348
13348
13349
13349
13349
13350
13350
13350
13351
13351
13351
13352
13352
13352
13353
13353
13353
13354
13354
13354
13354
13355
13355
13355
13356
13356
13356
13357
13357
13357
13358
13358
13358
13359
13359
13359
13360
13360
13360
13361
13361
13361
13362
13362
13362
13363
13363
13363
13364
13364
13364
13365
13365
13365
13366
13366
13366
13367
13367
13367
13368
13368
13368
13369
13369
13369
13370
13370
13370
13371
13371
13371
13372
13372
13372
13373
13373
13373
13374
13374
13374
13375
13375
13375
13376
13376
13376
13376
13377
13377
13377
13378
13378
13378
13379
13379
13379
13380
13380
13380
13381
13381
13381
13382
13382
13382
13383
13383
13383
13384
13384
13384
13385
13385
13385
13386
13386
13386
13387
13387
13387
13388
13388
13388
13389
13389
13389
13390
13390
13390
13391
13391
13391
13392
13392
13392
13393
13393
13393
13394
13394
13394
13395
13395
13395
13396
13396
13396
13397
13397
13397
13398
13398
13398
13399
13399
13400
13400
13401
13401
13402
13402
13403
13403
13404
13404
13405
13405
13406
13406
13407
13407
13408
13408
13409
13409
13410
13410
13411
13411
13412
13412
13413
13413
13414
13414
13415
13415
13416
13416
13417
13417
13418
13418
13419
13419
13420
13420
13420
13420
13421
13421
13421
13422
13422
13422
13423
13423
13423
13424
13424
13424
13425
13425
13425
13426
13426
13426
13427
13427
13427
13428
13428
13428
13429
13429
13429
13430
13430
13430
13431
13431
13431
13432
13432
13432
13433
13433
13433
13434
13434
13434
13435
13435
13435
13436
13436
13436
13437
13437
13437
13438
13438
13438
13439
13439
13439
13440
13440
13440
13441
13441
13441
13442
13442
13442
13442
13443
13443
13443
13444
13444
13444
13445
13445
13445
13446
13446
13446
13447
13447
13447
13448
13448
13448
13449
13449
13449
13450
13450
13450
13451
13451
13451
13452
13452
13452
13453
13453
13453
13454
13454
13454
13455
13455
13455
13456
13456
13456
13457
13457
13457
13458
13458
13458
13459
13459
13459
13460
13460
13460
13461
13461
13461
13462
13462
13462
13463
13463
13463
13464
13464
13464
13464
13465
13465
13465
13466
13466
13466
13467
13467
13467
13468
13468
13468
13469
13469
13469
13470
13470
13470
13471
13471
13471
13472
13472
13472
13473
13473
13473
13474
13474
13474
13475
13475
13475
13476
13476
13476
13477
13477
13477
13478
13478
13478
13479
13479
13479
13480
13480
13480
13481
13481
13481
13482
13482
13482
13483
13483
13483
13484
13484
13484
13485
13485
13485
13486
13486
13486
13486
13487
13487
13487
13488
13488
13488
13489
13489
13489
13490
13490
13490
13491
13491
13491
13492
13492
13492
13493
13493
13493
13494
13494
13494
13495
13495
13495
13496
13496
13496
13497
13497
13497
13498
13498
13498
13499
13499
13499
13500
13500
13500
13501
13501
13501
13502
13502
13502
13503
13503
13503
13504
13504
13504
13505
13505
13505
13506
13506
13506
13507
13507
13507
13508
13508
13508
13508
13509
13509
13509
13510
13510
13510
13511
13511
13511
13512
13512
13512
13513
13513
13513
13514
13514
13514
13515
13515
13515
13516
13516
13516
13517
13517
13517
13518
13518
13518
13519
13519
13519
13520
13520
13520
13521
13521
13521
13522
13522
13522
13523
13523
13523
13524
13524
13524
13525
13525
13525
13526
13526
13526
13527
13527
13527
13528
13528
13528
13529
13529
13529
13530
13530
13530
13530
13531
13531
13531
13532
13532
13532
13533
13533
13533
13534
13534
13534
13535
13535
13535
13536
13536
13536
13537
13537
13537
13538
13538
13538
13539
13539
13539
13540
13540
13540
13541
13541
13541
13542
13542
13542
13543
13543
13543
13544
13544
13544
13545
13545
13545
13546
13546
13546
13547
13547
13547
13548
13548
13548
13549
13549
13549
13550
13550
13550
13551
13551
13551
13552
13552
13552
13552
13553
13553
13553
13554
13554
13554
13555
13555
13555
13556
13556
13556
13557
13557
13557
13558
13558
13558
13559
13559
13559
13560
13560
13560
13561
13561
13561
13562
13562
13562
13563
13563
13563
13564
13564
13564
13565
13565
13565
13566
13566
13566
13567
13567
13567
13568
13568
13568
13569
13569
13569
13570
13570
13570
13571
13571
13571
13572
13572
13572
13573
13573
13573
13574
13574
13574
13574
13575
13575
13575
13576
13576
13576
13577
13577
13577
13578
13578
13578
13579
13579
13579
13580
13580
13580
13581
13581
13581
13582
13582
13582
13583
13583
13583
13584
13584
13584
13585
13585
13585
13586
13586
13586
13587
13587
13587
13588
13588
13588
13589
13589
13589
13590
13590
13590
13591
13591
13591
13592
13592
13592
13593
13593
13593
13594
13594
13594
13595
13595
13595
13596
13596
13596
13596
13597
13597
13597
13598
13598
13598
13599
13599
13599
13600
13600
13600
13601
13601
13601
13602
13602
13602
13603
13603
13603
13604
13604
13604
13605
13605
13605
13606
13606
13606
13607
13607
13607
13608
13608
13608
13609
13609
13609
13610
13610
13610
13611
13611
13611
13612
13612
13612
13613
13613
13613
13614
13614
13614
13615
13615
13615
13616
13616
13616
13617
13617
13617
13618
13618
13618
13619
13619
13620
13620
13621
13621
13622
13622
13623
13623
13624
13624
13625
13625
13626
13626
13627
13627
13628
13628
13629
13629
13630
13630
13631
13631
13632
13632
13633
13633
13634
13634
13635
13635
13636
13636
13637
13637
13638
13638
13639
13639
13640
13640
13640
13640
13641
13641
13641
13642
13642
13642
13643
13643
13643
13644
13644
13644
13645
13645
13645
13646
13646
13646
13647
13647
13647
13648
13648
13648
13649
13649
13649
13650
13650
13650
13651
13651
13651
13652
13652
13652
13653
13653
13653
13654
13654
13654
13655
13655
13655
13656
13656
13656
13657
13657
13657
13658
13658
13658
13659
13659
13659
13660
13660
13660
13661
13661
13661
13662
13662
13662
13662
13663
13663
13663
13664
13664
13664
13665
13665
13665
13666
13666
13666
13667
13667
13667
13668
13668
13668
13669
13669
13669
13670
13670
13670
13671
13671
13671
13672
13672
13672
13673
13673
13673
13674
13674
13674
13675
13675
13675
13676
13676
13676
13677
13677
13677
13678
13678
13678
13679
13679
13679
13680
13680
13680
13681
13681
13681
13682
13682
13682
13683
13683
13683
13684
13684
13684
13684
13685
13685
13685
13686
13686
13686
13687
13687
13687
13688
13688
13688
13689
13689
13689
13690
13690
13690
13691
13691
13691
13692
13692
13692
13693
13693
13693
13694
13694
13694
13695
13695
13695
13696
13696
13696
13697
13697
13697
13698
13698
13698
13699
13699
13699
13700
13700
13700
13701
13701
13701
13702
13702
13702
13703
13703
13703
13704
13704
13704
13705
13705
13705
13706
13706
13706
13706
13707
13707
13707
13708
13708
13708
13709
13709
13709
13710
13710
13710
13711
13711
13711
13712
13712
13712
13713
13713
13713
13714
13714
13714
13715
13715
13715
13716
13716
13716
13717
13717
13717
13718
13718
13718
13719
13719
13719
13720
13720
13720
13721
13721
13721
13722
13722
13722
13723
13723
13723
13724
13724
13724
13725
13725
13725
13726
13726
13726
13727
13727
13727
13728
13728
13728
13728
13729
13729
13729
13730
13730
13730
13731
13731
13731
13732
13732
13732
13733
13733
13733
13734
13734
13734
13735
13735
13735
13736
13736
13736
13737
13737
13737
13738
13738
13738
13739
13739
13739
13740
13740
13740
13741
13741
13741
13742
13742
13742
13743
13743
13743
13744
13744
13744
13745
13745
13745
13746
13746
13746
13747
13747
13747
13748
13748
13748
13749
13749
13749
13750
13750
13750
13750
13751
13751
13751
13752
13752
13752
13753
13753
13753
13754
13754
13754
13755
13755
13755
13756
13756
13756
13757
13757
13757
13758
13758
13758
13759
13759
13759
13760
13760
13760
13761
13761
13761
13762
13762
13762
13763
13763
13763
13764
13764
13764
13765
13765
13765
13766
13766
13766
13767
13767
13767
13768
13768
13768
13769
13769
13769
13770
13770
13770
13771
13771
13771
13772
13772
13772
13772
13773
13773
13773
13774
13774
13774
13775
13775
13775
13776
13776
13776
13777
13777
13777
13778
13778
13778
13779
13779
13779
13780
13780
13780
13781
13781
13781
13782
13782
13782
13783
13783
13783
13784
13784
13784
13785
13785
13785
13786
13786
13786
13787
13787
13787
13788
13788
13788
13789
13789
13789
13790
13790
13790
13791
13791
13791
13792
13792
13792
13793
13793
13793
13794
13794
13794
13794
13795
13795
13795
13796
13796
13796
13797
13797
13797
13798
13798
13798
13799
13799
13799
13800
13800
13800
13801
13801
13801
13802
13802
13802
13803
13803
13803
13804
13804
13804
13805
13805
13805
13806
13806
13806
13807
13807
13807
13808
13808
13808
13809
13809
13809
13810
13810
13810
13811
13811
13811
13812
13812
13812
13813
13813
13813
13814
13814
13814
13815
13815
13815
13816
13816
13816
13816
13817
13817
13817
13818
13818
13818
13819
13819
13819
13820
13820
13820
13821
13821
13821
13822
13822
13822
13823
13823
13823
13824
13824
13824
13825
13825
13825
13826
13826
13826
13827
13827
13827
13828
13828
13828
13829
13829
13829
13830
13830
13830
13831
13831
13831
13832
13832
13832
13833
13833
13833
13834
13834
13834
13835
13835
13835
13836
13836
13836
13837
13837
13837
13838
13838
13838
13839
13839
13840
13840
13841
13841
13842
13842
13843
13843
13844
13844
13845
13845
13846
13846
13847
13847
13848
13848
13849
13849
13850
13850
13851
13851
13852
13852
13853
13853
13854
13854
13855
13855
13856
13856
13857
13857
13858
13858
13859
13859
13860
13860
13860
13860
13861
13861
13861
13862
13862
13862
13863
13863
13863
13864
13864
13864
13865
13865
13865
13866
13866
13866
13867
13867
13867
13868
13868
13868
13869
13869
13869
13870
13870
13870
13871
13871
13871
13872
13872
13872
13873
13873
13873
13874
13874
13874
13875
13875
13875
13876
13876
13876
13877
13877
13877
13878
13878
13878
13879
13879
13879
13880
13880
13880
13881
13881
13881
13882
13882
13882
13882
13883
13883
13883
13884
13884
13884
13885
13885
13885
13886
13886
13886
13887
13887
13887
13888
13888
13888
13889
13889
13889
13890
13890
13890
13891
13891
13891
13892
13892
13892
13893
13893
13893
13894
13894
13894
13895
13895
13895
13896
13896
13896
13897
13897
13897
13898
13898
13898
13899
13899
13899
13900
13900
13900
13901
13901
13901
13902
13902
13902
13903
13903
13903
13904
13904
13904
13904
13905
13905
13905
13906
13906
13906
13907
13907
13907
13908
13908
13908
13909
13909
13909
13910
13910
13910
13911
13911
13911
13912
13912
13912
13913
13913
13913
13914
13914
13914
13915
13915
13915
13916
13916
13916
13917
13917
13917
13918
13918
13918
13919
13919
13919
13920
13920
13920
13921
13921
13921
13922
13922
13922
13923
13923
13923
13924
13924
13924
13925
13925
13925
13926
13926
13926
13926
13927
13927
13927
13928
13928
13928
13929
13929
13929
13930
13930
13930
13931
13931
13931
13932
13932
13932
13933
13933
13933
13934
13934
13934
13935
13935
13935
13936
13936
13936
13937
13937
13937
13938
13938
13938
13939
13939
13939
13940
13940
13940
13941
13941
13941
13942
13942
13942
13943
13943
13943
13944
13944
13944
13945
13945
13945
13946
13946
13946
13947
13947
13947
13948
13948
13948
13948
13949
13949
13949
13950
13950
13950
13951
13951
13951
13952
13952
13952
13953
13953
13953
13954
13954
13954
13955
13955
13955
13956
13956
13956
13957
13957
13957
13958
13958
13958
13959
13959
13959
13960
13960
13960
13961
13961
13961
13962
13962
13962
13963
13963
13963
13964
13964
13964
13965
13965
13965
13966
13966
13966
13967
13967
13967
13968
13968
13968
13969
13969
13969
13970
13970
13970
13970
13971
13971
13971
13972
13972
13972
13973
13973
13973
13974
13974
13974
13975
13975
13975
13976
13976
13976
13977
13977
13977
13978
13978
13978
13979
13979
13979
13980
13980
13980
13981
13981
13981
13982
13982
13982
13983
13983
13983
13984
13984
13984
13985
13985
13985
13986
13986
13986
13987
13987
13987
13988
13988
13988
13989
13989
13989
13990
13990
13990
13991
13991
13991
13992
13992
13992
13992
13993
13993
13993
13994
13994
13994
13995
13995
13995
13996
13996
13996
13997
13997
13997
13998
13998
13998
13999
13999
13999
14000
14000
14000
14001
14001
14001
14002
14002
14002
14003
14003
14003
14004
14004
14004
14005
14005
14005
14006
14006
14006
14007
14007
14007
14008
14008
14008
14009
14009
14009
14010
14010
14010
14011
14011
14011
14012
14012
14012
14013
14013
14013
14014
14014
14014
14014
14015
14015
14015
14016
14016
14016
14017
14017
14017
14018
14018
14018
14019
14019
14019
14020
14020
14020
14021
14021
14021
14022
14022
14022
14023
14023
14023
14024
14024
14024
14025
14025
14025
14026
14026
14026
14027
14027
14027
14028
14028
14028
14029
14029
14029
14030
14030
14030
14031
14031
14031
14032
14032
14032
14033
14033
14033
14034
14034
14034
14035
14035
14035
14036
14036
14036
14036
14037
14037
14037
14038
14038
14038
14039
14039
14039
14040
14040
14040
14041
14041
14041
14042
14042
14042
14043
14043
14043
14044
14044
14044
14045
14045
14045
14046
14046
14046
14047
14047
14047
14048
14048
14048
14049
14049
14049
14050
14050
14050
14051
14051
14051
14052
14052
14052
14053
14053
14053
14054
14054
14054
14055
14055
14055
14056
14056
14056
14057
14057
14057
14058
14058
14058
14059
14059
14060
14060
14061
14061
14062
14062
14063
14063
14064
14064
14065
14065
14066
14066
14067
14067
14068
14068
14069
14069
14070
14070
14071
14071
14072
14072
14073
14073
14074
14074
14075
14075
14076
14076
14077
14077
14078
14078
14079
14079
14080
14080
14080
14080
14081
14081
14081
14082
14082
14082
14083
14083
14083
14084
14084
14084
14085
14085
14085
14086
14086
14086
14087
14087
14087
14088
14088
14088
14089
14089
14089
14090
14090
14090
14091
14091
14091
14092
14092
14092
14093
14093
14093
14094
14094
14094
14095
14095
14095
14096
14096
14096
14097
14097
14097
14098
14098
14098
14099
14099
14099
14100
14100
14100
14101
14101
14101
14102
14102
14102
14102
14103
14103
14103
14104
14104
14104
14105
14105
14105
14106
14106
14106
14107
14107
14107
14108
14108
14108
14109
14109
14109
14110
14110
14110
14111
14111
14111
14112
14112
14112
14113
14113
14113
14114
14114
14114
14115
14115
14115
14116
14116
14116
14117
14117
14117
14118
14118
14118
14119
14119
14119
14120
14120
14120
14121
14121
14121
14122
14122
14122
14123
14123
14123
14124
14124
14124
14124
14125
14125
14125
14126
14126
14126
14127
14127
14127
14128
14128
14128
14129
14129
14129
14130
14130
14130
14131
14131
14131
14132
14132
14132
14133
14133
14133
14134
14134
14134
14135
14135
14135
14136
14136
14136
14137
14137
14137
14138
14138
14138
14139
14139
14139
14140
14140
14140
14141
14141
14141
14142
14142
14142
14143
14143
14143
14144
14144
14144
14145
14145
14145
14146
14146
14146
14146
14147
14147
14147
14148
14148
14148
14149
14149
14149
14150
14150
14150
14151
14151
14151
14152
14152
14152
14153
14153
14153
14154
14154
14154
14155
14155
14155
14156
14156
14156
14157
14157
14157
14158
14158
14158
14159
14159
14159
14160
14160
14160
14161
14161
14161
14162
14162
14162
14163
14163
14163
14164
14164
14164
14165
14165
14165
14166
14166
14166
14167
14167
14167
14168
14168
14168
14168
14169
14169
14169
14170
14170
14170
14171
14171
14171
14172
14172
14172
14173
14173
14173
14174
14174
14174
14175
14175
14175
14176
14176
14176
14177
14177
14177
14178
14178
14178
14179
14179
14179
14180
14180
14180
14181
14181
14181
14182
14182
14182
14183
14183
14183
14184
14184
14184
14185
14185
14185
14186
14186
14186
14187
14187
14187
14188
14188
14188
14189
14189
14189
14190
14190
14190
14190
14191
14191
14191
14192
14192
14192
14193
14193
14193
14194
14194
14194
14195
14195
14195
14196
14196
14196
14197
14197
14197
14198
14198
14198
14199
14199
14199
14200
14200
14200
14201
14201
14201
14202
14202
14202
14203
14203
14203
14204
14204
14204
14205
14205
14205
14206
14206
14206
14207
14207
14207
14208
14208
14208
14209
14209
14209
14210
14210
14210
14211
14211
14211
14212
14212
14212
14212
14213
14213
14213
14214
14214
14214
14215
14215
14215
14216
14216
14216
14217
14217
14217
14218
14218
14218
14219
14219
14219
14220
14220
14220
14221
14221
14221
14222
14222
14222
14223
14223
14223
14224
14224
14224
14225
14225
14225
14226
14226
14226
14227
14227
14227
14228
14228
14228
14229
14229
14229
14230
14230
14230
14231
14231
14231
14232
14232
14232
14233
14233
14233
14234
14234
14234
14234
14235
14235
14235
14236
14236
14236
14237
14237
14237
14238
14238
14238
14239
14239
14239
14240
14240
14240
14241
14241
14241
14242
14242
14242
14243
14243
14243
14244
14244
14244
14245
14245
14245
14246
14246
14246
14247
14247
14247
14248
14248
14248
14249
14249
14249
14250
14250
14250
14251
14251
14251
14252
14252
14252
14253
14253
14253
14254
14254
14254
14255
14255
14255
14256
14256
14256
14256
14257
14257
14257
14258
14258
14258
14259
14259
14259
14260
14260
14260
14261
14261
14261
14262
14262
14262
14263
14263
14263
14264
14264
14264
14265
14265
14265
14266
14266
14266
14267
14267
14267
14268
14268
14268
14269
14269
14269
14270
14270
14270
14271
14271
14271
14272
14272
14272
14273
14273
14273
14274
14274
14274
14275
14275
14275
14276
14276
14276
14277
14277
14277
14278
14278
14278
14279
14279
14280
14280
14281
14281
14282
14282
14283
14283
14284
14284
14285
14285
14286
14286
14287
14287
14288
14288
14289
14289
14290
14290
14291
14291
14292
14292
14293
14293
14294
14294
14295
14295
14296
14296
14297
14297
14298
14298
14299
14299
14300
14300
14300
14300
14301
14301
14301
14302
14302
14302
14303
14303
14303
14304
14304
14304
14305
14305
14305
14306
14306
14306
14307
14307
14307
14308
14308
14308
14309
14309
14309
14310
14310
14310
14311
14311
14311
14312
14312
14312
14313
14313
14313
14314
14314
14314
14315
14315
14315
14316
14316
14316
14317
14317
14317
14318
14318
14318
14319
14319
14319
14320
14320
14320
14321
14321
14321
14322
14322
14322
14322
14323
14323
14323
14324
14324
14324
14325
14325
14325
14326
14326
14326
14327
14327
14327
14328
14328
14328
14329
14329
14329
14330
14330
14330
14331
14331
14331
14332
14332
14332
14333
14333
14333
14334
14334
14334
14335
14335
14335
14336
14336
14336
14337
14337
14337
14338
14338
14338
14339
14339
14339
14340
14340
14340
14341
14341
14341
14342
14342
14342
14343
14343
14343
14344
14344
14344
14344
14345
14345
14345
14346
14346
14346
14347
14347
14347
14348
14348
14348
14349
14349
14349
14350
14350
14350
14351
14351
14351
14352
14352
14352
14353
14353
14353
14354
14354
14354
14355
14355
14355
14356
14356
14356
14357
14357
14357
14358
14358
14358
14359
14359
14359
14360
14360
14360
14361
14361
14361
14362
14362
14362
14363
14363
14363
14364
14364
14364
14365
14365
14365
14366
14366
14366
14366
14367
14367
14367
14368
14368
14368
14369
14369
14369
14370
14370
14370
14371
14371
14371
14372
14372
14372
14373
14373
14373
14374
14374
14374
14375
14375
14375
14376
14376
14376
14377
14377
14377
14378
14378
14378
14379
14379
14379
14380
14380
14380
14381
14381
14381
14382
14382
14382
14383
14383
14383
14384
14384
14384
14385
14385
14385
14386
14386
14386
14387
14387
14387
14388
14388
14388
14388
14389
14389
14389
14390
14390
14390
14391
14391
14391
14392
14392
14392
14393
14393
14393
14394
14394
14394
14395
14395
14395
14396
14396
14396
14397
14397
14397
14398
14398
14398
14399
14399
14399
14400
14400
14400
14401
14401
14401
14402
14402
14402
14403
14403
14403
14404
14404
14404
14405
14405
14405
14406
14406
14406
14407
14407
14407
14408
14408
14408
14409
14409
14409
14410
14410
14410
14410
14411
14411
14411
14412
14412
14412
14413
14413
14413
14414
14414
14414
14415
14415
14415
14416
14416
14416
14417
14417
14417
14418
14418
14418
14419
14419
14419
14420
14420
14420
14421
14421
14421
14422
14422
14422
14423
14423
14423
14424
14424
14424
14425
14425
14425
14426
14426
14426
14427
14427
14427
14428
14428
14428
14429
14429
14429
14430
14430
14430
14431
14431
14431
14432
14432
14432
14432
14433
14433
14433
14434
14434
14434
14435
14435
14435
14436
14436
14436
14437
14437
14437
14438
14438
14438
14439
14439
14439
14440
14440
14440
14441
14441
14441
14442
14442
14442
14443
14443
14443
14444
14444
14444
14445
14445
14445
14446
14446
14446
14447
14447
14447
14448
14448
14448
14449
14449
14449
14450
14450
14450
14451
14451
14451
14452
14452
14452
14453
14453
14453
14454
14454
14454
14454
14455
14455
14455
14456
14456
14456
14457
14457
14457
14458
14458
14458
14459
14459
14459
14460
14460
14460
14461
14461
14461
14462
14462
14462
14463
14463
14463
14464
14464
14464
14465
14465
14465
14466
14466
14466
14467
14467
14467
14468
14468
14468
14469
14469
14469
14470
14470
14470
14471
14471
14471
14472
14472
14472
14473
14473
14473
14474
14474
14474
14475
14475
14475
14476
14476
14476
14476
14477
14477
14477
14478
14478
14478
14479
14479
14479
14480
14480
14480
14481
14481
14481
14482
14482
14482
14483
14483
14483
14484
14484
14484
14485
14485
14485
14486
14486
14486
14487
14487
14487
14488
14488
14488
14489
14489
14489
14490
14490
14490
14491
14491
14491
14492
14492
14492
14493
14493
14493
14494
14494
14494
14495
14495
14495
14496
14496
14496
14497
14497
14497
14498
14498
14498
14499
14499
14500
14500
14501
14501
14502
14502
14503
14503
14504
14504
14505
14505
14506
14506
14507
14507
14508
14508
14509
14509
14510
14510
14511
14511
14512
14512
14513
14513
14514
14514
14515
14515
14516
14516
14517
14517
14518
14518
14519
14519
14520
14520
14520
14520
14521
14521
14521
14522
14522
14522
14523
14523
14523
14524
14524
14524
14525
14525
14525
14526
14526
14526
14527
14527
14527
14528
14528
14528
14529
14529
14529
14530
14530
14530
14531
14531
14531
14532
14532
14532
14533
14533
14533
14534
14534
14534
14535
14535
14535
14536
14536
14536
14537
14537
14537
14538
14538
14538
14539
14539
14539
14540
14540
14540
14541
14541
14541
14542
14542
14542
14542
14543
14543
14543
14544
14544
14544
14545
14545
14545
14546
14546
14546
14547
14547
14547
14548
14548
14548
14549
14549
14549
14550
14550
14550
14551
14551
14551
14552
14552
14552
14553
14553
14553
14554
14554
14554
14555
14555
14555
14556
14556
14556
14557
14557
14557
14558
14558
14558
14559
14559
14559
14560
14560
14560
14561
14561
14561
14562
14562
14562
14563
14563
14563
14564
14564
14564
14564
14565
14565
14565
14566
14566
14566
14567
14567
14567
14568
14568
14568
14569
14569
14569
14570
14570
14570
14571
14571
14571
14572
14572
14572
14573
14573
14573
14574
14574
14574
14575
14575
14575
14576
14576
14576
14577
14577
14577
14578
14578
14578
14579
14579
14579
14580
14580
14580
14581
14581
14581
14582
14582
14582
14583
14583
14583
14584
14584
14584
14585
14585
14585
14586
14586
14586
14586
14587
14587
14587
14588
14588
14588
14589
14589
14589
14590
14590
14590
14591
14591
14591
14592
14592
14592
14593
14593
14593
14594
14594
14594
14595
14595
14595
14596
14596
14596
14597
14597
14597
14598
14598
14598
14599
14599
14599
14600
14600
14600
14601
14601
14601
14602
14602
14602
14603
14603
14603
14604
14604
14604
14605
14605
14605
14606
14606
14606
14607
14607
14607
14608
14608
14608
14608
14609
14609
14609
14610
14610
14610
14611
14611
14611
14612
14612
14612
14613
14613
14613
14614
14614
14614
14615
14615
14615
14616
14616
14616
14617
14617
14617
14618
14618
14618
14619
14619
14619
14620
14620
14620
14621
14621
14621
14622
14622
14622
14623
14623
14623
14624
14624
14624
14625
14625
14625
14626
14626
14626
14627
14627
14627
14628
14628
14628
14629
14629
14629
14630
14630
14630
14630
14631
14631
14631
14632
14632
14632
14633
14633
14633
14634
14634
14634
14635
14635
14635
14636
14636
14636
14637
14637
14637
14638
14638
14638
14639
14639
14639
14640
14640
14640
14641
14641
14641
14642
14642
14642
14643
14643
14643
14644
14644
14644
14645
14645
14645
14646
14646
14646
14647
14647
14647
14648
14648
14648
14649
14649
14649
14650
14650
14650
14651
14651
14651
14652
14652
14652
14652
14653
14653
14653
14654
14654
14654
14655
14655
14655
14656
14656
14656
14657
14657
14657
14658
14658
14658
14659
14659
14659
14660
14660
14660
14661
14661
14661
14662
14662
14662
14663
14663
14663
14664
14664
14664
14665
14665
14665
14666
14666
14666
14667
14667
14667
14668
14668
14668
14669
14669
14669
14670
14670
14670
14671
14671
14671
14672
14672
14672
14673
14673
14673
14674
14674
14674
14674
14675
14675
14675
14676
14676
14676
14677
14677
14677
14678
14678
14678
14679
14679
14679
14680
14680
14680
14681
14681
14681
14682
14682
14682
14683
14683
14683
14684
14684
14684
14685
14685
14685
14686
14686
14686
14687
14687
14687
14688
14688
14688
14689
14689
14689
14690
14690
14690
14691
14691
14691
14692
14692
14692
14693
14693
14693
14694
14694
14694
14695
14695
14695
14696
14696
14696
14696
14697
14697
14697
14698
14698
14698
14699
14699
14699
14700
14700
14700
14701
14701
14701
14702
14702
14702
14703
14703
14703
14704
14704
14704
14705
14705
14705
14706
14706
14706
14707
14707
14707
14708
14708
14708
14709
14709
14709
14710
14710
14710
14711
14711
14711
14712
14712
14712
14713
14713
14713
14714
14714
14714
14715
14715
14715
14716
14716
14716
14717
14717
14717
14718
14718
14718
14719
14719
14720
14720
14721
14721
14722
14722
14723
14723
14724
14724
14725
14725
14726
14726
14727
14727
14728
14728
14729
14729
14730
14730
14731
14731
14732
14732
14733
14733
14734
14734
14735
14735
14736
14736
14737
14737
14738
14738
14739
14739
14740
14740
14740
14740
14741
14741
14741
14742
14742
14742
14743
14743
14743
14744
14744
14744
14745
14745
14745
14746
14746
14746
14747
14747
14747
14748
14748
14748
14749
14749
14749
14750
14750
14750
14751
14751
14751
14752
14752
14752
14753
14753
14753
14754
14754
14754
14755
14755
14755
14756
14756
14756
14757
14757
14757
14758
14758
14758
14759
14759
14759
14760
14760
14760
14761
14761
14761
14762
14762
14762
14762
14763
14763
14763
14764
14764
14764
14765
14765
14765
14766
14766
14766
14767
14767
14767
14768
14768
14768
14769
14769
14769
14770
14770
14770
14771
14771
14771
14772
14772
14772
14773
14773
14773
14774
14774
14774
14775
14775
14775
14776
14776
14776
14777
14777
14777
14778
14778
14778
14779
14779
14779
14780
14780
14780
14781
14781
14781
14782
14782
14782
14783
14783
14783
14784
14784
14784
14784
14785
14785
14785
14786
14786
14786
14787
14787
14787
14788
14788
14788
14789
14789
14789
14790
14790
14790
14791
14791
14791
14792
14792
14792
14793
14793
14793
14794
14794
14794
14795
14795
14795
14796
14796
14796
14797
14797
14797
14798
14798
14798
14799
14799
14799
14800
14800
14800
14801
14801
14801
14802
14802
14802
14803
14803
14803
14804
14804
14804
14805
14805
14805
14806
14806
14806
14806
14807
14807
14807
14808
14808
14808
14809
14809
14809
14810
14810
14810
14811
14811
14811
14812
14812
14812
14813
14813
14813
14814
14814
14814
14815
14815
14815
14816
14816
14816
14817
14817
14817
14818
14818
14818
14819
14819
14819
14820
14820
14820
14821
14821
14821
14822
14822
14822
14823
14823
14823
14824
14824
14824
14825
14825
14825
14826
14826
14826
14827
14827
14827
14828
14828
14828
14828
14829
14829
14829
14830
14830
14830
14831
14831
14831
14832
14832
14832
14833
14833
14833
14834
14834
14834
14835
14835
14835
14836
14836
14836
14837
14837
14837
14838
14838
14838
14839
14839
14839
14840
14840
14840
14841
14841
14841
14842
14842
14842
14843
14843
14843
14844
14844
14844
14845
14845
14845
14846
14846
14846
14847
14847
14847
14848
14848
14848
14849
14849
14849
14850
14850
14850
14850
14851
14851
14851
14852
14852
14852
14853
14853
14853
14854
14854
14854
14855
14855
14855
14856
14856
14856
14857
14857
14857
14858
14858
14858
14859
14859
14859
14860
14860
14860
14861
14861
14861
14862
14862
14862
14863
14863
14863
14864
14864
14864
14865
14865
14865
14866
14866
14866
14867
14867
14867
14868
14868
14868
14869
14869
14869
14870
14870
14870
14871
14871
14871
14872
14872
14872
14872
14873
14873
14873
14874
14874
14874
14875
14875
14875
14876
14876
14876
14877
14877
14877
14878
14878
14878
14879
14879
14879
14880
14880
14880
14881
14881
14881
14882
14882
14882
14883
14883
14883
14884
14884
14884
14885
14885
14885
14886
14886
14886
14887
14887
14887
14888
14888
14888
14889
14889
14889
14890
14890
14890
14891
14891
14891
14892
14892
14892
14893
14893
14893
14894
14894
14894
14894
14895
14895
14895
14896
14896
14896
14897
14897
14897
14898
14898
14898
14899
14899
14899
14900
14900
14900
14901
14901
14901
14902
14902
14902
14903
14903
14903
14904
14904
14904
14905
14905
14905
14906
14906
14906
14907
14907
14907
14908
14908
14908
14909
14909
14909
14910
14910
14910
14911
14911
14911
14912
14912
14912
14913
14913
14913
14914
14914
14914
14915
14915
14915
14916
14916
14916
14916
14917
14917
14917
14918
14918
14918
14919
14919
14919
14920
14920
14920
14921
14921
14921
14922
14922
14922
14923
14923
14923
14924
14924
14924
14925
14925
14925
14926
14926
14926
14927
14927
14927
14928
14928
14928
14929
14929
14929
14930
14930
14930
14931
14931
14931
14932
14932
14932
14933
14933
14933
14934
14934
14934
14935
14935
14935
14936
14936
14936
14937
14937
14937
14938
14938
14938
14939
14939
14940
14940
14941
14941
14942
14942
14943
14943
14944
14944
14945
14945
14946
14946
14947
14947
14948
14948
14949
14949
14950
14950
14951
14951
14952
14952
14953
14953
14954
14954
14955
14955
14956
14956
14957
14957
14958
14958
14959
14959
14960
14960
14960
14960
14961
14961
14961
14962
14962
14962
14963
14963
14963
14964
14964
14964
14965
14965
14965
14966
14966
14966
14967
14967
14967
14968
14968
14968
14969
14969
14969
14970
14970
14970
14971
14971
14971
14972
14972
14972
14973
14973
14973
14974
14974
14974
14975
14975
14975
14976
14976
14976
14977
14977
14977
14978
14978
14978
14979
14979
14979
14980
14980
14980
14981
14981
14981
14982
14982
14982
14982
14983
14983
14983
14984
14984
14984
14985
14985
14985
14986
14986
14986
14987
14987
14987
14988
14988
14988
14989
14989
14989
14990
14990
14990
14991
14991
14991
14992
14992
14992
14993
14993
14993
14994
14994
14994
14995
14995
14995
14996
14996
14996
14997
14997
14997
14998
14998
14998
14999
14999
14999
15000
15000
15000
15001
15001
15001
15002
15002
15002
15003
15003
15003
15004
15004
15004
15004
15005
15005
15005
15006
15006
15006
15007
15007
15007
15008
15008
15008
15009
15009
15009
15010
15010
15010
15011
15011
15011
15012
15012
15012
15013
15013
15013
15014
15014
15014
15015
15015
15015
15016
15016
15016
15017
15017
15017
15018
15018
15018
15019
15019
15019
15020
15020
15020
15021
15021
15021
15022
15022
15022
15023
15023
15023
15024
15024
15024
15025
15025
15025
15026
15026
15026
15026
15027
15027
15027
15028
15028
15028
15029
15029
15029
15030
15030
15030
15031
15031
15031
15032
15032
15032
15033
15033
15033
15034
15034
15034
15035
15035
15035
15036
15036
15036
15037
15037
15037
15038
15038
15038
15039
15039
15039
15040
15040
15040
15041
15041
15041
15042
15042
15042
15043
15043
15043
15044
15044
15044
15045
15045
15045
15046
15046
15046
15047
15047
15047
15048
15048
15048
15048
15049
15049
15049
15050
15050
15050
15051
15051
15051
15052
15052
15052
15053
15053
15053
15054
15054
15054
15055
15055
15055
15056
15056
15056
15057
15057
15057
15058
15058
15058
15059
15059
15059
15060
15060
15060
15061
15061
15061
15062
15062
15062
15063
15063
15063
15064
15064
15064
15065
15065
15065
15066
15066
15066
15067
15067
15067
15068
15068
15068
15069
15069
15069
15070
15070
15070
15070
15071
15071
15071
15072
15072
15072
15073
15073
15073
15074
15074
15074
15075
15075
15075
15076
15076
15076
15077
15077
15077
15078
15078
15078
15079
15079
15079
15080
15080
15080
15081
15081
15081
15082
15082
15082
15083
15083
15083
15084
15084
15084
15085
15085
15085
15086
15086
15086
15087
15087
15087
15088
15088
15088
15089
15089
15089
15090
15090
15090
15091
15091
15091
15092
15092
15092
15092
15093
15093
15093
15094
15094
15094
15095
15095
15095
15096
15096
15096
15097
15097
15097
15098
15098
15098
15099
15099
15099
15100
15100
15100
15101
15101
15101
15102
15102
15102
15103
15103
15103
15104
15104
15104
15105
15105
15105
15106
15106
15106
15107
15107
15107
15108
15108
15108
15109
15109
15109
15110
15110
15110
15111
15111
15111
15112
15112
15112
15113
15113
15113
15114
15114
15114
15114
15115
15115
15115
15116
15116
15116
15117
15117
15117
15118
15118
15118
15119
15119
15119
15120
15120
15120
15121
15121
15121
15122
15122
15122
15123
15123
15123
15124
15124
15124
15125
15125
15125
15126
15126
15126
15127
15127
15127
15128
15128
15128
15129
15129
15129
15130
15130
15130
15131
15131
15131
15132
15132
15132
15133
15133
15133
15134
15134
15134
15135
15135
15135
15136
15136
15136
15136
15137
15137
15137
15138
15138
15138
15139
15139
15139
15140
15140
15140
15141
15141
15141
15142
15142
15142
15143
15143
15143
15144
15144
15144
15145
15145
15145
15146
15146
15146
15147
15147
15147
15148
15148
15148
15149
15149
15149
15150
15150
15150
15151
15151
15151
15152
15152
15152
15153
15153
15153
15154
15154
15154
15155
15155
15155
15156
15156
15156
15157
15157
15157
15158
15158
15158
15159
15159
15160
15160
15161
15161
15162
15162
15163
15163
15164
15164
15165
15165
15166
15166
15167
15167
15168
15168
15169
15169
15170
15170
15171
15171
15172
15172
15173
15173
15174
15174
15175
15175
15176
15176
15177
15177
15178
15178
15179
15179
15180
15180
15180
15180
15181
15181
15181
15182
15182
15182
15183
15183
15183
15184
15184
15184
15185
15185
15185
15186
15186
15186
15187
15187
15187
15188
15188
15188
15189
15189
15189
15190
15190
15190
15191
15191
15191
15192
15192
15192
15193
15193
15193
15194
15194
15194
15195
15195
15195
15196
15196
15196
15197
15197
15197
15198
15198
15198
15199
15199
15199
15200
15200
15200
15201
15201
15201
15202
15202
15202
15202
15203
15203
15203
15204
15204
15204
15205
15205
15205
15206
15206
15206
15207
15207
15207
15208
15208
15208
15209
15209
15209
15210
15210
15210
15211
15211
15211
15212
15212
15212
15213
15213
15213
15214
15214
15214
15215
15215
15215
15216
15216
15216
15217
15217
15217
15218
15218
15218
15219
15219
15219
15220
15220
15220
15221
15221
15221
15222
15222
15222
15223
15223
15223
15224
15224
15224
15224
15225
15225
15225
15226
15226
15226
15227
15227
15227
15228
15228
15228
15229
15229
15229
15230
15230
15230
15231
15231
15231
15232
15232
15232
15233
15233
15233
15234
15234
15234
15235
15235
15235
15236
15236
15236
15237
15237
15237
15238
15238
15238
15239
15239
15239
15240
15240
15240
15241
15241
15241
15242
15242
15242
15243
15243
15243
15244
15244
15244
15245
15245
15245
15246
15246
15246
15246
15247
15247
15247
15248
15248
15248
15249
15249
15249
15250
15250
15250
15251
15251
15251
15252
15252
15252
15253
15253
15253
15254
15254
15254
15255
15255
15255
15256
15256
15256
15257
15257
15257
15258
15258
15258
15259
15259
15259
15260
15260
15260
15261
15261
15261
15262
15262
15262
15263
15263
15263
15264
15264
15264
15265
15265
15265
15266
15266
15266
15267
15267
15267
15268
15268
15268
15268
15269
15269
15269
15270
15270
15270
15271
15271
15271
15272
15272
15272
15273
15273
15273
15274
15274
15274
15275
15275
15275
15276
15276
15276
15277
15277
15277
15278
15278
15278
15279
15279
15279
15280
15280
15280
15281
15281
15281
15282
15282
15282
15283
15283
15283
15284
15284
15284
15285
15285
15285
15286
15286
15286
15287
15287
15287
15288
15288
15288
15289
15289
15289
15290
15290
15290
15290
15291
15291
15291
15292
15292
15292
15293
15293
15293
15294
15294
15294
15295
15295
15295
15296
15296
15296
15297
15297
15297
15298
15298
15298
15299
15299
15299
15300
15300
15300
15301
15301
15301
15302
15302
15302
15303
15303
15303
15304
15304
15304
15305
15305
15305
15306
15306
15306
15307
15307
15307
15308
15308
15308
15309
15309
15309
15310
15310
15310
15311
15311
15311
15312
15312
15312
15312
15313
15313
15313
15314
15314
15314
15315
15315
15315
15316
15316
15316
15317
15317
15317
15318
15318
15318
15319
15319
15319
15320
15320
15320
15321
15321
15321
15322
15322
15322
15323
15323
15323
15324
15324
15324
15325
15325
15325
15326
15326
15326
15327
15327
15327
15328
15328
15328
15329
15329
15329
15330
15330
15330
15331
15331
15331
15332
15332
15332
15333
15333
15333
15334
15334
15334
15334
15335
15335
15335
15336
15336
15336
15337
15337
15337
15338
15338
15338
15339
15339
15339
15340
15340
15340
15341
15341
15341
15342
15342
15342
15343
15343
15343
15344
15344
15344
15345
15345
15345
15346
15346
15346
15347
15347
15347
15348
15348
15348
15349
15349
15349
15350
15350
15350
15351
15351
15351
15352
15352
15352
15353
15353
15353
15354
15354
15354
15355
15355
15355
15356
15356
15356
15356
15357
15357
15357
15358
15358
15358
15359
15359
15359
15360
15360
15360
15361
15361
15361
15362
15362
15362
15363
15363
15363
15364
15364
15364
15365
15365
15365
15366
15366
15366
15367
15367
15367
15368
15368
15368
15369
15369
15369
15370
15370
15370
15371
15371
15371
15372
15372
15372
15373
15373
15373
15374
15374
15374
15375
15375
15375
15376
15376
15376
15377
15377
15377
15378
15378
15378
15379
15379
15380
15380
15381
15381
15382
15382
15383
15383
15384
15384
15385
15385
15386
15386
15387
15387
15388
15388
15389
15389
15390
15390
15391
15391
15392
15392
15393
15393
15394
15394
15395
15395
15396
15396
15397
15397
15398
15398
15399
15399
15400
15400
15400
15400
15401
15401
15401
15402
15402
15402
15403
15403
15403
15404
15404
15404
15405
15405
15405
15406
15406
15406
15407
15407
15407
15408
15408
15408
15409
15409
15409
15410
15410
15410
15411
15411
15411
15412
15412
15412
15413
15413
15413
15414
15414
15414
15415
15415
15415
15416
15416
15416
15417
15417
15417
15418
15418
15418
15419
15419
15419
15420
15420
15420
15421
15421
15421
15422
15422
15422
15422
15423
15423
15423
15424
15424
15424
15425
15425
15425
15426
15426
15426
15427
15427
15427
15428
15428
15428
15429
15429
15429
15430
15430
15430
15431
15431
15431
15432
15432
15432
15433
15433
15433
15434
15434
15434
15435
15435
15435
15436
15436
15436
15437
15437
15437
15438
15438
15438
15439
15439
15439
15440
15440
15440
15441
15441
15441
15442
15442
15442
15443
15443
15443
15444
15444
15444
15444
15445
15445
15445
15446
15446
15446
15447
15447
15447
15448
15448
15448
15449
15449
15449
15450
15450
15450
15451
15451
15451
15452
15452
15452
15453
15453
15453
15454
15454
15454
15455
15455
15455
15456
15456
15456
15457
15457
15457
15458
15458
15458
15459
15459
15459
15460
15460
15460
15461
15461
15461
15462
15462
15462
15463
15463
15463
15464
15464
15464
15465
15465
15465
15466
15466
15466
15466
15467
15467
15467
15468
15468
15468
15469
15469
15469
15470
15470
15470
15471
15471
15471
15472
15472
15472
15473
15473
15473
15474
15474
15474
15475
15475
15475
15476
15476
15476
15477
15477
15477
15478
15478
15478
15479
15479
15479
15480
15480
15480
15481
15481
15481
15482
15482
15482
15483
15483
15483
15484
15484
15484
15485
15485
15485
15486
15486
15486
15487
15487
15487
15488
15488
15488
15488
15489
15489
15489
15490
15490
15490
15491
15491
15491
15492
15492
15492
15493
15493
15493
15494
15494
15494
15495
15495
15495
15496
15496
15496
15497
15497
15497
15498
15498
15498
15499
15499
15499
15500
15500
15500
15501
15501
15501
15502
15502
15502
15503
15503
15503
15504
15504
15504
15505
15505
15505
15506
15506
15506
15507
15507
15507
15508
15508
15508
15509
15509
15509
15510
15510
15510
15510
15511
15511
15511
15512
15512
15512
15513
15513
15513
15514
15514
15514
15515
15515
15515
15516
15516
15516
15517
15517
15517
15518
15518
15518
15519
15519
15519
15520
15520
15520
15521
15521
15521
15522
15522
15522
15523
15523
15523
15524
15524
15524
15525
15525
15525
15526
15526
15526
15527
15527
15527
15528
15528
15528
15529
15529
15529
15530
15530
15530
15531
15531
15531
15532
15532
15532
15532
15533
15533
15533
15534
15534
15534
15535
15535
15535
15536
15536
15536
15537
15537
15537
15538
15538
15538
15539
15539
15539
15540
15540
15540
15541
15541
15541
15542
15542
15542
15543
15543
15543
15544
15544
15544
15545
15545
15545
15546
15546
15546
15547
15547
15547
15548
15548
15548
15549
15549
15549
15550
15550
15550
15551
15551
15551
15552
15552
15552
15553
15553
15553
15554
15554
15554
15554
15555
15555
15555
15556
15556
15556
15557
15557
15557
15558
15558
15558
15559
15559
15559
15560
15560
15560
15561
15561
15561
15562
15562
15562
15563
15563
15563
15564
15564
15564
15565
15565
15565
15566
15566
15566
15567
15567
15567
15568
15568
15568
15569
15569
15569
15570
15570
15570
15571
15571
15571
15572
15572
15572
15573
15573
15573
15574
15574
15574
15575
15575
15575
15576
15576
15576
15576
15577
15577
15577
15578
15578
15578
15579
15579
15579
15580
15580
15580
15581
15581
15581
15582
15582
15582
15583
15583
15583
15584
15584
15584
15585
15585
15585
15586
15586
15586
15587
15587
15587
15588
15588
15588
15589
15589
15589
15590
15590
15590
15591
15591
15591
15592
15592
15592
15593
15593
15593
15594
15594
15594
15595
15595
15595
15596
15596
15596
15597
15597
15597
15598
15598
15598
15599
15599
15600
15600
15601
15601
15602
15602
15603
15603
15604
15604
15605
15605
15606
15606
15607
15607
15608
15608
15609
15609
15610
15610
15611
15611
15612
15612
15613
15613
15614
15614
15615
15615
15616
15616
15617
15617
15618
15618
15619
15619
15620
15620
15620
15620
15621
15621
15621
15622
15622
15622
15623
15623
15623
15624
15624
15624
15625
15625
15625
15626
15626
15626
15627
15627
15627
15628
15628
15628
15629
15629
15629
15630
15630
15630
15631
15631
15631
15632
15632
15632
15633
15633
15633
15634
15634
15634
15635
15635
15635
15636
15636
15636
15637
15637
15637
15638
15638
15638
15639
15639
15639
15640
15640
15640
15641
15641
15641
15642
15642
15642
15642
15643
15643
15643
15644
15644
15644
15645
15645
15645
15646
15646
15646
15647
15647
15647
15648
15648
15648
15649
15649
15649
15650
15650
15650
15651
15651
15651
15652
15652
15652
15653
15653
15653
15654
15654
15654
15655
15655
15655
15656
15656
15656
15657
15657
15657
15658
15658
15658
15659
15659
15659
15660
15660
15660
15661
15661
15661
15662
15662
15662
15663
15663
15663
15664
15664
15664
15664
15665
15665
15665
15666
15666
15666
15667
15667
15667
15668
15668
15668
15669
15669
15669
15670
15670
15670
15671
15671
15671
15672
15672
15672
15673
15673
15673
15674
15674
15674
15675
15675
15675
15676
15676
15676
15677
15677
15677
15678
15678
15678
15679
15679
15679
15680
15680
15680
15681
15681
15681
15682
15682
15682
15683
15683
15683
15684
15684
15684
15685
15685
15685
15686
15686
15686
15686
15687
15687
15687
15688
15688
15688
15689
15689
15689
15690
15690
15690
15691
15691
15691
15692
15692
15692
15693
15693
15693
15694
15694
15694
15695
15695
15695
15696
15696
15696
15697
15697
15697
15698
15698
15698
15699
15699
15699
15700
15700
15700
15701
15701
15701
15702
15702
15702
15703
15703
15703
15704
15704
15704
15705
15705
15705
15706
15706
15706
15707
15707
15707
15708
15708
15708
15708
15709
15709
15709
15710
15710
15710
15711
15711
15711
15712
15712
15712
15713
15713
15713
15714
15714
15714
15715
15715
15715
15716
15716
15716
15717
15717
15717
15718
15718
15718
15719
15719
15719
15720
15720
15720
15721
15721
15721
15722
15722
15722
15723
15723
15723
15724
15724
15724
15725
15725
15725
15726
15726
15726
15727
15727
15727
15728
15728
15728
15729
15729
15729
15730
15730
15730
15730
15731
15731
15731
15732
15732
15732
15733
15733
15733
15734
15734
15734
15735
15735
15735
15736
15736
15736
15737
15737
15737
15738
15738
15738
15739
15739
15739
15740
15740
15740
15741
15741
15741
15742
15742
15742
15743
15743
15743
15744
15744
15744
15745
15745
15745
15746
15746
15746
15747
15747
15747
15748
15748
15748
15749
15749
15749
15750
15750
15750
15751
15751
15751
15752
15752
15752
15752
15753
15753
15753
15754
15754
15754
15755
15755
15755
15756
15756
15756
15757
15757
15757
15758
15758
15758
15759
15759
15759
15760
15760
15760
15761
15761
15761
15762
15762
15762
15763
15763
15763
15764
15764
15764
15765
15765
15765
15766
15766
15766
15767
15767
15767
15768
15768
15768
15769
15769
15769
15770
15770
15770
15771
15771
15771
15772
15772
15772
15773
15773
15773
15774
15774
15774
15774
15775
15775
15775
15776
15776
15776
15777
15777
15777
15778
15778
15778
15779
15779
15779
15780
15780
15780
15781
15781
15781
15782
15782
15782
15783
15783
15783
15784
15784
15784
15785
15785
15785
15786
15786
15786
15787
15787
15787
15788
15788
15788
15789
15789
15789
15790
15790
15790
15791
15791
15791
15792
15792
15792
15793
15793
15793
15794
15794
15794
15795
15795
15795
15796
15796
15796
15796
15797
15797
15797
15798
15798
15798
15799
15799
15799
15800
15800
15800
15801
15801
15801
15802
15802
15802
15803
15803
15803
15804
15804
15804
15805
15805
15805
15806
15806
15806
15807
15807
15807
15808
15808
15808
15809
15809
15809
15810
15810
15810
15811
15811
15811
15812
15812
15812
15813
15813
15813
15814
15814
15814
15815
15815
15815
15816
15816
15816
15817
15817
15817
15818
15818
15818
15819
15819
15820
15820
15821
15821
15822
15822
15823
15823
15824
15824
15825
15825
15826
15826
15827
15827
15828
15828
15829
15829
15830
15830
15831
15831
15832
15832
15833
15833
15834
15834
15835
15835
15836
15836
15837
15837
15838
15838
15839
15839
15840
15840
15840
15840
15841
15841
15841
15842
15842
15842
15843
15843
15843
15844
15844
15844
15845
15845
15845
15846
15846
15846
15847
15847
15847
15848
15848
15848
15849
15849
15849
15850
15850
15850
15851
15851
15851
15852
15852
15852
15853
15853
15853
15854
15854
15854
15855
15855
15855
15856
15856
15856
15857
15857
15857
15858
15858
15858
15859
15859
15859
15860
15860
15860
15861
15861
15861
15862
15862
15862
15862
15863
15863
15863
15864
15864
15864
15865
15865
15865
15866
15866
15866
15867
15867
15867
15868
15868
15868
15869
15869
15869
15870
15870
15870
15871
15871
15871
15872
15872
15872
15873
15873
15873
15874
15874
15874
15875
15875
15875
15876
15876
15876
15877
15877
15877
15878
15878
15878
15879
15879
15879
15880
15880
15880
15881
15881
15881
15882
15882
15882
15883
15883
15883
15884
15884
15884
15884
15885
15885
15885
15886
15886
15886
15887
15887
15887
15888
15888
15888
15889
15889
15889
15890
15890
15890
15891
15891
15891
15892
15892
15892
15893
15893
15893
15894
15894
15894
15895
15895
15895
15896
15896
15896
15897
15897
15897
15898
15898
15898
15899
15899
15899
15900
15900
15900
15901
15901
15901
15902
15902
15902
15903
15903
15903
15904
15904
15904
15905
15905
15905
15906
15906
15906
15906
15907
15907
15907
15908
15908
15908
15909
15909
15909
15910
15910
15910
15911
15911
15911
15912
15912
15912
15913
15913
15913
15914
15914
15914
15915
15915
15915
15916
15916
15916
15917
15917
15917
15918
15918
15918
15919
15919
15919
15920
15920
15920
15921
15921
15921
15922
15922
15922
15923
15923
15923
15924
15924
15924
15925
15925
15925
15926
15926
15926
15927
15927
15927
15928
15928
15928
15928
15929
15929
15929
15930
15930
15930
15931
15931
15931
15932
15932
15932
15933
15933
15933
15934
15934
15934
15935
15935
15935
15936
15936
15936
15937
15937
15937
15938
15938
15938
15939
15939
15939
15940
15940
15940
15941
15941
15941
15942
15942
15942
15943
15943
15943
15944
15944
15944
15945
15945
15945
15946
15946
15946
15947
15947
15947
15948
15948
15948
15949
15949
15949
15950
15950
15950
15950
15951
15951
15951
15952
15952
15952
15953
15953
15953
15954
15954
15954
15955
15955
15955
15956
15956
15956
15957
15957
15957
15958
15958
15958
15959
15959
15959
15960
15960
15960
15961
15961
15961
15962
15962
15962
15963
15963
15963
15964
15964
15964
15965
15965
15965
15966
15966
15966
15967
15967
15967
15968
15968
15968
15969
15969
15969
15970
15970
15970
15971
15971
15971
15972
15972
15972
15972
15973
15973
15973
15974
15974
15974
15975
15975
15975
15976
15976
15976
15977
15977
15977
15978
15978
15978
15979
15979
15979
15980
15980
15980
15981
15981
15981
15982
15982
15982
15983
15983
15983
15984
15984
15984
15985
15985
15985
15986
15986
15986
15987
15987
15987
15988
15988
15988
15989
15989
15989
15990
15990
15990
15991
15991
15991
15992
15992
15992
15993
15993
15993
15994
15994
15994
15994
15995
15995
15995
15996
15996
15996
15997
15997
15997
15998
15998
15998
15999
15999
15999
16000
16000
16000
16001
16001
16001
16002
16002
16002
16003
16003
16003
16004
16004
16004
16005
16005
16005
16006
16006
16006
16007
16007
16007
16008
16008
16008
16009
16009
16009
16010
16010
16010
16011
16011
16011
16012
16012
16012
16013
16013
16013
16014
16014
16014
16015
16015
16015
16016
16016
16016
16016
16017
16017
16017
16018
16018
16018
16019
16019
16019
16020
16020
16020
16021
16021
16021
16022
16022
16022
16023
16023
16023
16024
16024
16024
16025
16025
16025
16026
16026
16026
16027
16027
16027
16028
16028
16028
16029
16029
16029
16030
16030
16030
16031
16031
16031
16032
16032
16032
16033
16033
16033
16034
16034
16034
16035
16035
16035
16036
16036
16036
16037
16037
16037
16038
16038
16038
16039
16039
16040
16040
16041
16041
16042
16042
16043
16043
16044
16044
16045
16045
16046
16046
16047
16047
16048
16048
16049
16049
16050
16050
16051
16051
16052
16052
16053
16053
16054
16054
16055
16055
16056
16056
16057
16057
16058
16058
16059
16059
16060
16060
16060
16060
16061
16061
16061
16062
16062
16062
16063
16063
16063
16064
16064
16064
16065
16065
16065
16066
16066
16066
16067
16067
16067
16068
16068
16068
16069
16069
16069
16070
16070
16070
16071
16071
16071
16072
16072
16072
16073
16073
16073
16074
16074
16074
16075
16075
16075
16076
16076
16076
16077
16077
16077
16078
16078
16078
16079
16079
16079
16080
16080
16080
16081
16081
16081
16082
16082
16082
16082
16083
16083
16083
16084
16084
16084
16085
16085
16085
16086
16086
16086
16087
16087
16087
16088
16088
16088
16089
16089
16089
16090
16090
16090
16091
16091
16091
16092
16092
16092
16093
16093
16093
16094
16094
16094
16095
16095
16095
16096
16096
16096
16097
16097
16097
16098
16098
16098
16099
16099
16099
16100
16100
16100
16101
16101
16101
16102
16102
16102
16103
16103
16103
16104
16104
16104
16104
16105
16105
16105
16106
16106
16106
16107
16107
16107
16108
16108
16108
16109
16109
16109
16110
16110
16110
16111
16111
16111
16112
16112
16112
16113
16113
16113
16114
16114
16114
16115
16115
16115
16116
16116
16116
16117
16117
16117
16118
16118
16118
16119
16119
16119
16120
16120
16120
16121
16121
16121
16122
16122
16122
16123
16123
16123
16124
16124
16124
16125
16125
16125
16126
16126
16126
16126
16127
16127
16127
16128
16128
16128
16129
16129
16129
16130
16130
16130
16131
16131
16131
16132
16132
16132
16133
16133
16133
16134
16134
16134
16135
16135
16135
16136
16136
16136
16137
16137
16137
16138
16138
16138
16139
16139
16139
16140
16140
16140
16141
16141
16141
16142
16142
16142
16143
16143
16143
16144
16144
16144
16145
16145
16145
16146
16146
16146
16147
16147
16147
16148
16148
16148
16148
16149
16149
16149
16150
16150
16150
16151
16151
16151
16152
16152
16152
16153
16153
16153
16154
16154
16154
16155
16155
16155
16156
16156
16156
16157
16157
16157
16158
16158
16158
16159
16159
16159
16160
16160
16160
16161
16161
16161
16162
16162
16162
16163
16163
16163
16164
16164
16164
16165
16165
16165
16166
16166
16166
16167
16167
16167
16168
16168
16168
16169
16169
16169
16170
16170
16170
16170
16171
16171
16171
16172
16172
16172
16173
16173
16173
16174
16174
16174
16175
16175
16175
16176
16176
16176
16177
16177
16177
16178
16178
16178
16179
16179
16179
16180
16180
16180
16181
16181
16181
16182
16182
16182
16183
16183
16183
16184
16184
16184
16185
16185
16185
16186
16186
16186
16187
16187
16187
16188
16188
16188
16189
16189
16189
16190
16190
16190
16191
16191
16191
16192
16192
16192
16192
16193
16193
16193
16194
16194
16194
16195
16195
16195
16196
16196
16196
16197
16197
16197
16198
16198
16198
16199
16199
16199
16200
16200
16200
16201
16201
16201
16202
16202
16202
16203
16203
16203
16204
16204
16204
16205
16205
16205
16206
16206
16206
16207
16207
16207
16208
16208
16208
16209
16209
16209
16210
16210
16210
16211
16211
16211
16212
16212
16212
16213
16213
16213
16214
16214
16214
16214
16215
16215
16215
16216
16216
16216
16217
16217
16217
16218
16218
16218
16219
16219
16219
16220
16220
16220
16221
16221
16221
16222
16222
16222
16223
16223
16223
16224
16224
16224
16225
16225
16225
16226
16226
16226
16227
16227
16227
16228
16228
16228
16229
16229
16229
16230
16230
16230
16231
16231
16231
16232
16232
16232
16233
16233
16233
16234
16234
16234
16235
16235
16235
16236
16236
16236
16236
16237
16237
16237
16238
16238
16238
16239
16239
16239
16240
16240
16240
16241
16241
16241
16242
16242
16242
16243
16243
16243
16244
16244
16244
16245
16245
16245
16246
16246
16246
16247
16247
16247
16248
16248
16248
16249
16249
16249
16250
16250
16250
16251
16251
16251
16252
16252
16252
16253
16253
16253
16254
16254
16254
16255
16255
16255
16256
16256
16256
16257
16257
16257
16258
16258
16258
16259
16259
16260
16260
16261
16261
16262
16262
16263
16263
16264
16264
16265
16265
16266
16266
16267
16267
16268
16268
16269
16269
16270
16270
16271
16271
16272
16272
16273
16273
16274
16274
16275
16275
16276
16276
16277
16277
16278
16278
16279
16279
16280
16280
16280
16280
16281
16281
16281
16282
16282
16282
16283
16283
16283
16284
16284
16284
16285
16285
16285
16286
16286
16286
16287
16287
16287
16288
16288
16288
16289
16289
16289
16290
16290
16290
16291
16291
16291
16292
16292
16292
16293
16293
16293
16294
16294
16294
16295
16295
16295
16296
16296
16296
16297
16297
16297
16298
16298
16298
16299
16299
16299
16300
16300
16300
16301
16301
16301
16302
16302
16302
16302
16303
16303
16303
16304
16304
16304
16305
16305
16305
16306
16306
16306
16307
16307
16307
16308
16308
16308
16309
16309
16309
16310
16310
16310
16311
16311
16311
16312
16312
16312
16313
16313
16313
16314
16314
16314
16315
16315
16315
16316
16316
16316
16317
16317
16317
16318
16318
16318
16319
16319
16319
16320
16320
16320
16321
16321
16321
16322
16322
16322
16323
16323
16323
16324
16324
16324
16324
16325
16325
16325
16326
16326
16326
16327
16327
16327
16328
16328
16328
16329
16329
16329
16330
16330
16330
16331
16331
16331
16332
16332
16332
16333
16333
16333
16334
16334
16334
16335
16335
16335
16336
16336
16336
16337
16337
16337
16338
16338
16338
16339
16339
16339
16340
16340
16340
16341
16341
16341
16342
16342
16342
16343
16343
16343
16344
16344
16344
16345
16345
16345
16346
16346
16346
16346
16347
16347
16347
16348
16348
16348
16349
16349
16349
16350
16350
16350
16351
16351
16351
16352
16352
16352
16353
16353
16353
16354
16354
16354
16355
16355
16355
16356
16356
16356
16357
16357
16357
16358
16358
16358
16359
16359
16359
16360
16360
16360
16361
16361
16361
16362
16362
16362
16363
16363
16363
16364
16364
16364
16365
16365
16365
16366
16366
16366
16367
16367
16367
16368
16368
16368
16368
16369
16369
16369
16370
16370
16370
16371
16371
16371
16372
16372
16372
16373
16373
16373
16374
16374
16374
16375
16375
16375
16376
16376
16376
16377
16377
16377
16378
16378
16378
16379
16379
16379
16380
16380
16380
16381
16381
16381
16382
16382
16382
16383
16383
16383
16384
16384
16384
16385
16385
16385
16386
16386
16386
16387
16387
16387
16388
16388
16388
16389
16389
16389
16390
16390
16390
16390
16391
16391
16391
16392
16392
16392
16393
16393
16393
16394
16394
16394
16395
16395
16395
16396
16396
16396
16397
16397
16397
16398
16398
16398
16399
16399
16399
16400
16400
16400
16401
16401
16401
16402
16402
16402
16403
16403
16403
16404
16404
16404
16405
16405
16405
16406
16406
16406
16407
16407
16407
16408
16408
16408
16409
16409
16409
16410
16410
16410
16411
16411
16411
16412
16412
16412
16412
16413
16413
16413
16414
16414
16414
16415
16415
16415
16416
16416
16416
16417
16417
16417
16418
16418
16418
16419
16419
16419
16420
16420
16420
16421
16421
16421
16422
16422
16422
16423
16423
16423
16424
16424
16424
16425
16425
16425
16426
16426
16426
16427
16427
16427
16428
16428
16428
16429
16429
16429
16430
16430
16430
16431
16431
16431
16432
16432
16432
16433
16433
16433
16434
16434
16434
16434
16435
16435
16435
16436
16436
16436
16437
16437
16437
16438
16438
16438
16439
16439
16439
16440
16440
16440
16441
16441
16441
16442
16442
16442
16443
16443
16443
16444
16444
16444
16445
16445
16445
16446
16446
16446
16447
16447
16447
16448
16448
16448
16449
16449
16449
16450
16450
16450
16451
16451
16451
16452
16452
16452
16453
16453
16453
16454
16454
16454
16455
16455
16455
16456
16456
16456
16456
16457
16457
16457
16458
16458
16458
16459
16459
16459
16460
16460
16460
16461
16461
16461
16462
16462
16462
16463
16463
16463
16464
16464
16464
16465
16465
16465
16466
16466
16466
16467
16467
16467
16468
16468
16468
16469
16469
16469
16470
16470
16470
16471
16471
16471
16472
16472
16472
16473
16473
16473
16474
16474
16474
16475
16475
16475
16476
16476
16476
16477
16477
16477
16478
16478
16478
16479
16479
16480
16480
16481
16481
16482
16482
16483
16483
16484
16484
16485
16485
16486
16486
16487
16487
16488
16488
16489
16489
16490
16490
16491
16491
16492
16492
16493
16493
16494
16494
16495
16495
16496
16496
16497
16497
16498
16498
16499
16499
16500
16500
16500
16500
16501
16501
16501
16502
16502
16502
16503
16503
16503
16504
16504
16504
16505
16505
16505
16506
16506
16506
16507
16507
16507
16508
16508
16508
16509
16509
16509
16510
16510
16510
16511
16511
16511
16512
16512
16512
16513
16513
16513
16514
16514
16514
16515
16515
16515
16516
16516
16516
16517
16517
16517
16518
16518
16518
16519
16519
16519
16520
16520
16520
16521
16521
16521
16522
16522
16522
16522
16523
16523
16523
16524
16524
16524
16525
16525
16525
16526
16526
16526
16527
16527
16527
16528
16528
16528
16529
16529
16529
16530
16530
16530
16531
16531
16531
16532
16532
16532
16533
16533
16533
16534
16534
16534
16535
16535
16535
16536
16536
16536
16537
16537
16537
16538
16538
16538
16539
16539
16539
16540
16540
16540
16541
16541
16541
16542
16542
16542
16543
16543
16543
16544
16544
16544
16544
16545
16545
16545
16546
16546
16546
16547
16547
16547
16548
16548
16548
16549
16549
16549
16550
16550
16550
16551
16551
16551
16552
16552
16552
16553
16553
16553
16554
16554
16554
16555
16555
16555
16556
16556
16556
16557
16557
16557
16558
16558
16558
16559
16559
16559
16560
16560
16560
16561
16561
16561
16562
16562
16562
16563
16563
16563
16564
16564
16564
16565
16565
16565
16566
16566
16566
16566
16567
16567
16567
16568
16568
16568
16569
16569
16569
16570
16570
16570
16571
16571
16571
16572
16572
16572
16573
16573
16573
16574
16574
16574
16575
16575
16575
16576
16576
16576
16577
16577
16577
16578
16578
16578
16579
16579
16579
16580
16580
16580
16581
16581
16581
16582
16582
16582
16583
16583
16583
16584
16584
16584
16585
16585
16585
16586
16586
16586
16587
16587
16587
16588
16588
16588
16588
16589
16589
16589
16590
16590
16590
16591
16591
16591
16592
16592
16592
16593
16593
16593
16594
16594
16594
16595
16595
16595
16596
16596
16596
16597
16597
16597
16598
16598
16598
16599
16599
16599
16600
16600
16600
16601
16601
16601
16602
16602
16602
16603
16603
16603
16604
16604
16604
16605
16605
16605
16606
16606
16606
16607
16607
16607
16608
16608
16608
16609
16609
16609
16610
16610
16610
16610
16611
16611
16611
16612
16612
16612
16613
16613
16613
16614
16614
16614
16615
16615
16615
16616
16616
16616
16617
16617
16617
16618
16618
16618
16619
16619
16619
16620
16620
16620
16621
16621
16621
16622
16622
16622
16623
16623
16623
16624
16624
16624
16625
16625
16625
16626
16626
16626
16627
16627
16627
16628
16628
16628
16629
16629
16629
16630
16630
16630
16631
16631
16631
16632
16632
16632
16632
16633
16633
16633
16634
16634
16634
16635
16635
16635
16636
16636
16636
16637
16637
16637
16638
16638
16638
16639
16639
16639
16640
16640
16640
16641
16641
16641
16642
16642
16642
16643
16643
16643
16644
16644
16644
16645
16645
16645
16646
16646
16646
16647
16647
16647
16648
16648
16648
16649
16649
16649
16650
16650
16650
16651
16651
16651
16652
16652
16652
16653
16653
16653
16654
16654
16654
16654
16655
16655
16655
16656
16656
16656
16657
16657
16657
16658
16658
16658
16659
16659
16659
16660
16660
16660
16661
16661
16661
16662
16662
16662
16663
16663
16663
16664
16664
16664
16665
16665
16665
16666
16666
16666
16667
16667
16667
16668
16668
16668
16669
16669
16669
16670
16670
16670
16671
16671
16671
16672
16672
16672
16673
16673
16673
16674
16674
16674
16675
16675
16675
16676
16676
16676
16676
16677
16677
16677
16678
16678
16678
16679
16679
16679
16680
16680
16680
16681
16681
16681
16682
16682
16682
16683
16683
16683
16684
16684
16684
16685
16685
16685
16686
16686
16686
16687
16687
16687
16688
16688
16688
16689
16689
16689
16690
16690
16690
16691
16691
16691
16692
16692
16692
16693
16693
16693
16694
16694
16694
16695
16695
16695
16696
16696
16696
16697
16697
16697
16698
16698
16698
16699
16699
16700
16700
16701
16701
16702
16702
16703
16703
16704
16704
16705
16705
16706
16706
16707
16707
16708
16708
16709
16709
16710
16710
16711
16711
16712
16712
16713
16713
16714
16714
16715
16715
16716
16716
16717
16717
16718
16718
16719
16719
16720
16720
16720
16720
16721
16721
16721
16722
16722
16722
16723
16723
16723
16724
16724
16724
16725
16725
16725
16726
16726
16726
16727
16727
16727
16728
16728
16728
16729
16729
16729
16730
16730
16730
16731
16731
16731
16732
16732
16732
16733
16733
16733
16734
16734
16734
16735
16735
16735
16736
16736
16736
16737
16737
16737
16738
16738
16738
16739
16739
16739
16740
16740
16740
16741
16741
16741
16742
16742
16742
16742
16743
16743
16743
16744
16744
16744
16745
16745
16745
16746
16746
16746
16747
16747
16747
16748
16748
16748
16749
16749
16749
16750
16750
16750
16751
16751
16751
16752
16752
16752
16753
16753
16753
16754
16754
16754
16755
16755
16755
16756
16756
16756
16757
16757
16757
16758
16758
16758
16759
16759
16759
16760
16760
16760
16761
16761
16761
16762
16762
16762
16763
16763
16763
16764
16764
16764
16764
16765
16765
16765
16766
16766
16766
16767
16767
16767
16768
16768
16768
16769
16769
16769
16770
16770
16770
16771
16771
16771
16772
16772
16772
16773
16773
16773
16774
16774
16774
16775
16775
16775
16776
16776
16776
16777
16777
16777
16778
16778
16778
16779
16779
16779
16780
16780
16780
16781
16781
16781
16782
16782
16782
16783
16783
16783
16784
16784
16784
16785
16785
16785
16786
16786
16786
16786
16787
16787
16787
16788
16788
16788
16789
16789
16789
16790
16790
16790
16791
16791
16791
16792
16792
16792
16793
16793
16793
16794
16794
16794
16795
16795
16795
16796
16796
16796
16797
16797
16797
16798
16798
16798
16799
16799
16799
16800
16800
16800
16801
16801
16801
16802
16802
16802
16803
16803
16803
16804
16804
16804
16805
16805
16805
16806
16806
16806
16807
16807
16807
16808
16808
16808
16808
16809
16809
16809
16810
16810
16810
16811
16811
16811
16812
16812
16812
16813
16813
16813
16814
16814
16814
16815
16815
16815
16816
16816
16816
16817
16817
16817
16818
16818
16818
16819
16819
16819
16820
16820
16820
16821
16821
16821
16822
16822
16822
16823
16823
16823
16824
16824
16824
16825
16825
16825
16826
16826
16826
16827
16827
16827
16828
16828
16828
16829
16829
16829
16830
16830
16830
16830
16831
16831
16831
16832
16832
16832
16833
16833
16833
16834
16834
16834
16835
16835
16835
16836
16836
16836
16837
16837
16837
16838
16838
16838
16839
16839
16839
16840
16840
16840
16841
16841
16841
16842
16842
16842
16843
16843
16843
16844
16844
16844
16845
16845
16845
16846
16846
16846
16847
16847
16847
16848
16848
16848
16849
16849
16849
16850
16850
16850
16851
16851
16851
16852
16852
16852
16852
16853
16853
16853
16854
16854
16854
16855
16855
16855
16856
16856
16856
16857
16857
16857
16858
16858
16858
16859
16859
16859
16860
16860
16860
16861
16861
16861
16862
16862
16862
16863
16863
16863
16864
16864
16864
16865
16865
16865
16866
16866
16866
16867
16867
16867
16868
16868
16868
16869
16869
16869
16870
16870
16870
16871
16871
16871
16872
16872
16872
16873
16873
16873
16874
16874
16874
16874
16875
16875
16875
16876
16876
16876
16877
16877
16877
16878
16878
16878
16879
16879
16879
16880
16880
16880
16881
16881
16881
16882
16882
16882
16883
16883
16883
16884
16884
16884
16885
16885
16885
16886
16886
16886
16887
16887
16887
16888
16888
16888
16889
16889
16889
16890
16890
16890
16891
16891
16891
16892
16892
16892
16893
16893
16893
16894
16894
16894
16895
16895
16895
16896
16896
16896
16896
16897
16897
16897
16898
16898
16898
16899
16899
16899
16900
16900
16900
16901
16901
16901
16902
16902
16902
16903
16903
16903
16904
16904
16904
16905
16905
16905
16906
16906
16906
16907
16907
16907
16908
16908
16908
16909
16909
16909
16910
16910
16910
16911
16911
16911
16912
16912
16912
16913
16913
16913
16914
16914
16914
16915
16915
16915
16916
16916
16916
16917
16917
16917
16918
16918
16918
16919
16919
16920
16920
16921
16921
16922
16922
16923
16923
16924
16924
16925
16925
16926
16926
16927
16927
16928
16928
16929
16929
16930
16930
16931
16931
16932
16932
16933
16933
16934
16934
16935
16935
16936
16936
16937
16937
16938
16938
16939
16939
16940
16940
16940
16940
16941
16941
16941
16942
16942
16942
16943
16943
16943
16944
16944
16944
16945
16945
16945
16946
16946
16946
16947
16947
16947
16948
16948
16948
16949
16949
16949
16950
16950
16950
16951
16951
16951
16952
16952
16952
16953
16953
16953
16954
16954
16954
16955
16955
16955
16956
16956
16956
16957
16957
16957
16958
16958
16958
16959
16959
16959
16960
16960
16960
16961
16961
16961
16962
16962
16962
16962
16963
16963
16963
16964
16964
16964
16965
16965
16965
16966
16966
16966
16967
16967
16967
16968
16968
16968
16969
16969
16969
16970
16970
16970
16971
16971
16971
16972
16972
16972
16973
16973
16973
16974
16974
16974
16975
16975
16975
16976
16976
16976
16977
16977
16977
16978
16978
16978
16979
16979
16979
16980
16980
16980
16981
16981
16981
16982
16982
16982
16983
16983
16983
16984
16984
16984
16984
16985
16985
16985
16986
16986
16986
16987
16987
16987
16988
16988
16988
16989
16989
16989
16990
16990
16990
16991
16991
16991
16992
16992
16992
16993
16993
16993
16994
16994
16994
16995
16995
16995
16996
16996
16996
16997
16997
16997
16998
16998
16998
16999
16999
16999
17000
17000
17000
17001
17001
17001
17002
17002
17002
17003
17003
17003
17004
17004
17004
17005
17005
17005
17006
17006
17006
17006
17007
17007
17007
17008
17008
17008
17009
17009
17009
17010
17010
17010
17011
17011
17011
17012
17012
17012
17013
17013
17013
17014
17014
17014
17015
17015
17015
17016
17016
17016
17017
17017
17017
17018
17018
17018
17019
17019
17019
17020
17020
17020
17021
17021
17021
17022
17022
17022
17023
17023
17023
17024
17024
17024
17025
17025
17025
17026
17026
17026
17027
17027
17027
17028
17028
17028
17028
17029
17029
17029
17030
17030
17030
17031
17031
17031
17032
17032
17032
17033
17033
17033
17034
17034
17034
17035
17035
17035
17036
17036
17036
17037
17037
17037
17038
17038
17038
17039
17039
17039
17040
17040
17040
17041
17041
17041
17042
17042
17042
17043
17043
17043
17044
17044
17044
17045
17045
17045
17046
17046
17046
17047
17047
17047
17048
17048
17048
17049
17049
17049
17050
17050
17050
17050
17051
17051
17051
17052
17052
17052
17053
17053
17053
17054
17054
17054
17055
17055
17055
17056
17056
17056
17057
17057
17057
17058
17058
17058
17059
17059
17059
17060
17060
17060
17061
17061
17061
17062
17062
17062
17063
17063
17063
17064
17064
17064
17065
17065
17065
17066
17066
17066
17067
17067
17067
17068
17068
17068
17069
17069
17069
17070
17070
17070
17071
17071
17071
17072
17072
17072
17072
17073
17073
17073
17074
17074
17074
17075
17075
17075
17076
17076
17076
17077
17077
17077
17078
17078
17078
17079
17079
17079
17080
17080
17080
17081
17081
17081
17082
17082
17082
17083
17083
17083
17084
17084
17084
17085
17085
17085
17086
17086
17086
17087
17087
17087
17088
17088
17088
17089
17089
17089
17090
17090
17090
17091
17091
17091
17092
17092
17092
17093
17093
17093
17094
17094
17094
17094
17095
17095
17095
17096
17096
17096
17097
17097
17097
17098
17098
17098
17099
17099
17099
17100
17100
17100
17101
17101
17101
17102
17102
17102
17103
17103
17103
17104
17104
17104
17105
17105
17105
17106
17106
17106
17107
17107
17107
17108
17108
17108
17109
17109
17109
17110
17110
17110
17111
17111
17111
17112
17112
17112
17113
17113
17113
17114
17114
17114
17115
17115
17115
17116
17116
17116
17116
17117
17117
17117
17118
17118
17118
17119
17119
17119
17120
17120
17120
17121
17121
17121
17122
17122
17122
17123
17123
17123
17124
17124
17124
17125
17125
17125
17126
17126
17126
17127
17127
17127
17128
17128
17128
17129
17129
17129
17130
17130
17130
17131
17131
17131
17132
17132
17132
17133
17133
17133
17134
17134
17134
17135
17135
17135
17136
17136
17136
17137
17137
17137
17138
17138
17138
17139
17139
17140
17140
17141
17141
17142
17142
17143
17143
17144
17144
17145
17145
17146
17146
17147
17147
17148
17148
17149
17149
17150
17150
17151
17151
17152
17152
17153
17153
17154
17154
17155
17155
17156
17156
17157
17157
17158
17158
17159
17159
17160
17160
17160
17160
17161
17161
17161
17162
17162
17162
17163
17163
17163
17164
17164
17164
17165
17165
17165
17166
17166
17166
17167
17167
17167
17168
17168
17168
17169
17169
17169
17170
17170
17170
17171
17171
17171
17172
17172
17172
17173
17173
17173
17174
17174
17174
17175
17175
17175
17176
17176
17176
17177
17177
17177
17178
17178
17178
17179
17179
17179
17180
17180
17180
17181
17181
17181
17182
17182
17182
17182
17183
17183
17183
17184
17184
17184
17185
17185
17185
17186
17186
17186
17187
17187
17187
17188
17188
17188
17189
17189
17189
17190
17190
17190
17191
17191
17191
17192
17192
17192
17193
17193
17193
17194
17194
17194
17195
17195
17195
17196
17196
17196
17197
17197
17197
17198
17198
17198
17199
17199
17199
17200
17200
17200
17201
17201
17201
17202
17202
17202
17203
17203
17203
17204
17204
17204
17204
17205
17205
17205
17206
17206
17206
17207
17207
17207
17208
17208
17208
17209
17209
17209
17210
17210
17210
17211
17211
17211
17212
17212
17212
17213
17213
17213
17214
17214
17214
17215
17215
17215
17216
17216
17216
17217
17217
17217
17218
17218
17218
17219
17219
17219
17220
17220
17220
17221
17221
17221
17222
17222
17222
17223
17223
17223
17224
17224
17224
17225
17225
17225
17226
17226
17226
17226
17227
17227
17227
17228
17228
17228
17229
17229
17229
17230
17230
17230
17231
17231
17231
17232
17232
17232
17233
17233
17233
17234
17234
17234
17235
17235
17235
17236
17236
17236
17237
17237
17237
17238
17238
17238
17239
17239
17239
17240
17240
17240
17241
17241
17241
17242
17242
17242
17243
17243
17243
17244
17244
17244
17245
17245
17245
17246
17246
17246
17247
17247
17247
17248
17248
17248
17248
17249
17249
17249
17250
17250
17250
17251
17251
17251
17252
17252
17252
17253
17253
17253
17254
17254
17254
17255
17255
17255
17256
17256
17256
17257
17257
17257
17258
17258
17258
17259
17259
17259
17260
17260
17260
17261
17261
17261
17262
17262
17262
17263
17263
17263
17264
17264
17264
17265
17265
17265
17266
17266
17266
17267
17267
17267
17268
17268
17268
17269
17269
17269
17270
17270
17270
17270
17271
17271
17271
17272
17272
17272
17273
17273
17273
17274
17274
17274
17275
17275
17275
17276
17276
17276
17277
17277
17277
17278
17278
17278
17279
17279
17279
17280
17280
17280
17281
17281
17281
17282
17282
17282
17283
17283
17283
17284
17284
17284
17285
17285
17285
17286
17286
17286
17287
17287
17287
17288
17288
17288
17289
17289
17289
17290
17290
17290
17291
17291
17291
17292
17292
17292
17292
17293
17293
17293
17294
17294
17294
17295
17295
17295
17296
17296
17296
17297
17297
17297
17298
17298
17298
17299
17299
17299
17300
17300
17300
17301
17301
17301
17302
17302
17302
17303
17303
17303
17304
17304
17304
17305
17305
17305
17306
17306
17306
17307
17307
17307
17308
17308
17308
17309
17309
17309
17310
17310
17310
17311
17311
17311
17312
17312
17312
17313
17313
17313
17314
17314
17314
17314
17315
17315
17315
17316
17316
17316
17317
17317
17317
17318
17318
17318
17319
17319
17319
17320
17320
17320
17321
17321
17321
17322
17322
17322
17323
17323
17323
17324
17324
17324
17325
17325
17325
17326
17326
17326
17327
17327
17327
17328
17328
17328
17329
17329
17329
17330
17330
17330
17331
17331
17331
17332
17332
17332
17333
17333
17333
17334
17334
17334
17335
17335
17335
17336
17336
17336
17336
17337
17337
17337
17338
17338
17338
17339
17339
17339
17340
17340
17340
17341
17341
17341
17342
17342
17342
17343
17343
17343
17344
17344
17344
17345
17345
17345
17346
17346
17346
17347
17347
17347
17348
17348
17348
17349
17349
17349
17350
17350
17350
17351
17351
17351
17352
17352
17352
17353
17353
17353
17354
17354
17354
17355
17355
17355
17356
17356
17356
17357
17357
17357
17358
17358
17358
17359
17359
17360
17360
17361
17361
17362
17362
17363
17363
17364
17364
17365
17365
17366
17366
17367
17367
17368
17368
17369
17369
17370
17370
17371
17371
17372
17372
17373
17373
17374
17374
17375
17375
17376
17376
17377
17377
17378
17378
17379
17379
17380
17380
17380
17381
17381
17382
17382
17383
17383
17384
17384
17385
17385
17386
17386
17387
17387
17388
17388
17389
17389
17390
17390
17391
17391
17392
17392
17393
17393
17394
17394
17395
17395
17396
17396
17397
17397
17398
17398
17399
17399
17400
17400
17401
17401
17402
17402
17402
17403
17403
17404
17404
17405
17405
17406
17406
17407
17407
17408
17408
17409
17409
17410
17410
17411
17411
17412
17412
17413
17413
17414
17414
17415
17415
17416
17416
17417
17417
17418
17418
17419
17419
17420
17420
17421
17421
17422
17422
17423
17423
17424
17424
17424
17425
17425
17426
17426
17427
17427
17428
17428
17429
17429
17430
17430
17431
17431
17432
17432
17433
17433
17434
17434
17435
17435
17436
17436
17437
17437
17438
17438
17439
17439
17440
17440
17441
17441
17442
17442
17443
17443
17444
17444
17445
17445
17446
17446
17446
17447
17447
17448
17448
17449
17449
17450
17450
17451
17451
17452
17452
17453
17453
17454
17454
17455
17455
17456
17456
17457
17457
17458
17458
17459
17459
17460
17460
17461
17461
17462
17462
17463
17463
17464
17464
17465
17465
17466
17466
17467
17467
17468
17468
17468
17469
17469
17470
17470
17471
17471
17472
17472
17473
17473
17474
17474
17475
17475
17476
17476
17477
17477
17478
17478
17479
17479
17480
17480
17481
17481
17482
17482
17483
17483
17484
17484
17485
17485
17486
17486
17487
17487
17488
17488
17489
17489
17490
17490
17490
17491
17491
17492
17492
17493
17493
17494
17494
17495
17495
17496
17496
17497
17497
17498
17498
17499
17499
17500
17500
17501
17501
17502
17502
17503
17503
17504
17504
17505
17505
17506
17506
17507
17507
17508
17508
17509
17509
17510
17510
17511
17511
17512
17512
17512
17513
17513
17514
17514
17515
17515
17516
17516
17517
17517
17518
17518
17519
17519
17520
17520
17521
17521
17522
17522
17523
17523
17524
17524
17525
17525
17526
17526
17527
17527
17528
17528
17529
17529
17530
17530
17531
17531
17532
17532
17533
17533
17534
17534
17534
17535
17535
17536
17536
17537
17537
17538
17538
17539
17539
17540
17540
17541
17541
17542
17542
17543
17543
17544
17544
17545
17545
17546
17546
17547
17547
17548
17548
17549
17549
17550
17550
17551
17551
17552
17552
17553
17553
17554
17554
17555
17555
17556
17556
17556
17557
17557
17558
17558
17559
17559
17560
17560
17561
17561
17562
17562
17563
17563
17564
17564
17565
17565
17566
17566
17567
17567
17568
17568
17569
17569
17570
17570
17571
17571
17572
17572
17573
17573
17574
17574
17575
17575
17576
17576
17577
17577
17578
17578
17579
17580
17581
17582
17583
17584
17585
17586
17587
17588
17589
17590
17591
17592
17593
17594
17595
17596
17597
17598
17599
17600
17600
17600
17600
17601
17601
17601
17602
17602
17602
17603
17603
17603
17604
17604
17604
17605
17605
17605
17606
17606
17606
17607
17607
17607
17608
17608
17608
17609
17609
17609
17610
17610
17610
17611
17611
17611
17612
17612
17612
17613
17613
17613
17614
17614
17614
17615
17615
17615
17616
17616
17616
17617
17617
17617
17618
17618
17618
17619
17619
17619
17620
17620
17620
17621
17621
17622
17622
17622
17622
17623
17623
17623
17624
17624
17624
17625
17625
17625
17626
17626
17626
17627
17627
17627
17628
17628
17628
17629
17629
17629
17630
17630
17630
17631
17631
17631
17632
17632
17632
17633
17633
17633
17634
17634
17634
17635
17635
17635
17636
17636
17636
17637
17637
17637
17638
17638
17638
17639
17639
17639
17640
17640
17640
17641
17641
17641
17642
17642
17642
17643
17643
17644
17644
17644
17644
17645
17645
17645
17646
17646
17646
17647
17647
17647
17648
17648
17648
17649
17649
17649
17650
17650
17650
17651
17651
17651
17652
17652
17652
17653
17653
17653
17654
17654
17654
17655
17655
17655
17656
17656
17656
17657
17657
17657
17658
17658
17658
17659
17659
17659
17660
17660
17660
17661
17661
17661
17662
17662
17662
17663
17663
17663
17664
17664
17664
17665
17665
17666
17666
17666
17666
17667
17667
17667
17668
17668
17668
17669
17669
17669
17670
17670
17670
17671
17671
17671
17672
17672
17672
17673
17673
17673
17674
17674
17674
17675
17675
17675
17676
17676
17676
17677
17677
17677
17678
17678
17678
17679
17679
17679
17680
17680
17680
17681
17681
17681
17682
17682
17682
17683
17683
17683
17684
17684
17684
17685
17685
17685
17686
17686
17686
17687
17687
17688
17688
17688
17688
17689
17689
17689
17690
17690
17690
17691
17691
17691
17692
17692
17692
17693
17693
17693
17694
17694
17694
17695
17695
17695
17696
17696
17696
17697
17697
17697
17698
17698
17698
17699
17699
17699
17700
17700
17700
17701
17701
17701
17702
17702
17702
17703
17703
17703
17704
17704
17704
17705
17705
17705
17706
17706
17706
17707
17707
17707
17708
17708
17708
17709
17709
17710
17710
17710
17710
17711
17711
17711
17712
17712
17712
17713
17713
17713
17714
17714
17714
17715
17715
17715
17716
17716
17716
17717
17717
17717
17718
17718
17718
17719
17719
17719
17720
17720
17720
17721
17721
17721
17722
17722
17722
17723
17723
17723
17724
17724
17724
17725
17725
17725
17726
17726
17726
17727
17727
17727
17728
17728
17728
17729
17729
17729
17730
17730
17730
17731
17731
17732
17732
17732
17732
17733
17733
17733
17734
17734
17734
17735
17735
17735
17736
17736
17736
17737
17737
17737
17738
17738
17738
17739
17739
17739
17740
17740
17740
17741
17741
17741
17742
17742
17742
17743
17743
17743
17744
17744
17744
17745
17745
17745
17746
17746
17746
17747
17747
17747
17748
17748
17748
17749
17749
17749
17750
17750
17750
17751
17751
17751
17752
17752
17752
17753
17753
17754
17754
17754
17754
17755
17755
17755
17756
17756
17756
17757
17757
17757
17758
17758
17758
17759
17759
17759
17760
17760
17760
17761
17761
17761
17762
17762
17762
17763
17763
17763
17764
17764
17764
17765
17765
17765
17766
17766
17766
17767
17767
17767
17768
17768
17768
17769
17769
17769
17770
17770
17770
17771
17771
17771
17772
17772
17772
17773
17773
17773
17774
17774
17774
17775
17775
17776
17776
17776
17776
17777
17777
17777
17778
17778
17778
17779
17779
17779
17780
17780
17780
17781
17781
17781
17782
17782
17782
17783
17783
17783
17784
17784
17784
17785
17785
17785
17786
17786
17786
17787
17787
17787
17788
17788
17788
17789
17789
17789
17790
17790
17790
17791
17791
17791
17792
17792
17792
17793
17793
17793
17794
17794
17794
17795
17795
17795
17796
17796
17796
17797
17797
17798
17798
17798
17799
17799
17800
17800
17801
17801
17802
17802
17803
17803
17804
17804
17805
17805
17806
17806
17807
17807
17808
17808
17809
17809
17810
17810
17811
17811
17812
17812
17813
17813
17814
17814
17815
17815
17816
17816
17817
17817
17818
17818
17819
17820
17820
17820
17820
17821
17821
17821
17822
17822
17822
17823
17823
17823
17824
17824
17824
17825
17825
17825
17826
17826
17826
17827
17827
17827
17828
17828
17828
17829
17829
17829
17830
17830
17830
17831
17831
17831
17832
17832
17832
17833
17833
17833
17834
17834
17834
17835
17835
17835
17836
17836
17836
17837
17837
17837
17838
17838
17838
17839
17839
17839
17840
17840
17840
17841
17841
17842
17842
17842
17842
17843
17843
17843
17844
17844
17844
17845
17845
17845
17846
17846
17846
17847
17847
17847
17848
17848
17848
17849
17849
17849
17850
17850
17850
17851
17851
17851
17852
17852
17852
17853
17853
17853
17854
17854
17854
17855
17855
17855
17856
17856
17856
17857
17857
17857
17858
17858
17858
17859
17859
17859
17860
17860
17860
17861
17861
17861
17862
17862
17862
17863
17863
17864
17864
17864
17864
17865
17865
17865
17866
17866
17866
17867
17867
17867
17868
17868
17868
17869
17869
17869
17870
17870
17870
17871
17871
17871
17872
17872
17872
17873
17873
17873
17874
17874
17874
17875
17875
17875
17876
17876
17876
17877
17877
17877
17878
17878
17878
17879
17879
17879
17880
17880
17880
17881
17881
17881
17882
17882
17882
17883
17883
17883
17884
17884
17884
17885
17885
17886
17886
17886
17886
17887
17887
17887
17888
17888
17888
17889
17889
17889
17890
17890
17890
17891
17891
17891
17892
17892
17892
17893
17893
17893
17894
17894
17894
17895
17895
17895
17896
17896
17896
17897
17897
17897
17898
17898
17898
17899
17899
17899
17900
17900
17900
17901
17901
17901
17902
17902
17902
17903
17903
17903
17904
17904
17904
17905
17905
17905
17906
17906
17906
17907
17907
17908
17908
17908
17908
17909
17909
17909
17910
17910
17910
17911
17911
17911
17912
17912
17912
17913
17913
17913
17914
17914
17914
17915
17915
17915
17916
17916
17916
17917
17917
17917
17918
17918
17918
17919
17919
17919
17920
17920
17920
17921
17921
17921
17922
17922
17922
17923
17923
17923
17924
17924
17924
17925
17925
17925
17926
17926
17926
17927
17927
17927
17928
17928
17928
17929
17929
17930
17930
17930
17930
17931
17931
17931
17932
17932
17932
17933
17933
17933
17934
17934
17934
17935
17935
17935
17936
17936
17936
17937
17937
17937
17938
17938
17938
17939
17939
17939
17940
17940
17940
17941
17941
17941
17942
17942
17942
17943
17943
17943
17944
17944
17944
17945
17945
17945
17946
17946
17946
17947
17947
17947
17948
17948
17948
17949
17949
17949
17950
17950
17950
17951
17951
17952
17952
17952
17952
17953
17953
17953
17954
17954
17954
17955
17955
17955
17956
17956
17956
17957
17957
17957
17958
17958
17958
17959
17959
17959
17960
17960
17960
17961
17961
17961
17962
17962
17962
17963
17963
17963
17964
17964
17964
17965
17965
17965
17966
17966
17966
17967
17967
17967
17968
17968
17968
17969
17969
17969
17970
17970
17970
17971
17971
17971
17972
17972
17972
17973
17973
17974
17974
17974
17974
17975
17975
17975
17976
17976
17976
17977
17977
17977
17978
17978
17978
17979
17979
17979
17980
17980
17980
17981
17981
17981
17982
17982
17982
17983
17983
17983
17984
17984
17984
17985
17985
17985
17986
17986
17986
17987
17987
17987
17988
17988
17988
17989
17989
17989
17990
17990
17990
17991
17991
17991
17992
17992
17992
17993
17993
17993
17994
17994
17994
17995
17995
17996
17996
17996
17996
17997
17997
17997
17998
17998
17998
17999
17999
17999
18000
18000
18000
18001
18001
18001
18002
18002
18002
18003
18003
18003
18004
18004
18004
18005
18005
18005
18006
18006
18006
18007
18007
18007
18008
18008
18008
18009
18009
18009
18010
18010
18010
18011
18011
18011
18012
18012
18012
18013
18013
18013
18014
18014
18014
18015
18015
18015
18016
18016
18016
18017
18017
18018
18018
18018
18019
18019
18020
18020
18021
18021
18022
18022
18023
18023
18024
18024
18025
18025
18026
18026
18027
18027
18028
18028
18029
18029
18030
18030
18031
18031
18032
18032
18033
18033
18034
18034
18035
18035
18036
18036
18037
18037
18038
18038
18039
18040
18040
18040
18040
18041
18041
18041
18042
18042
18042
18043
18043
18043
18044
18044
18044
18045
18045
18045
18046
18046
18046
18047
18047
18047
18048
18048
18048
18049
18049
18049
18050
18050
18050
18051
18051
18051
18052
18052
18052
18053
18053
18053
18054
18054
18054
18055
18055
18055
18056
18056
18056
18057
18057
18057
18058
18058
18058
18059
18059
18059
18060
18060
18060
18061
18061
18062
18062
18062
18062
18063
18063
18063
18064
18064
18064
18065
18065
18065
18066
18066
18066
18067
18067
18067
18068
18068
18068
18069
18069
18069
18070
18070
18070
18071
18071
18071
18072
18072
18072
18073
18073
18073
18074
18074
18074
18075
18075
18075
18076
18076
18076
18077
18077
18077
18078
18078
18078
18079
18079
18079
18080
18080
18080
18081
18081
18081
18082
18082
18082
18083
18083
18084
18084
18084
18084
18085
18085
18085
18086
18086
18086
18087
18087
18087
18088
18088
18088
18089
18089
18089
18090
18090
18090
18091
18091
18091
18092
18092
18092
18093
18093
18093
18094
18094
18094
18095
18095
18095
18096
18096
18096
18097
18097
18097
18098
18098
18098
18099
18099
18099
18100
18100
18100
18101
18101
18101
18102
18102
18102
18103
18103
18103
18104
18104
18104
18105
18105
18106
18106
18106
18106
18107
18107
18107
18108
18108
18108
18109
18109
18109
18110
18110
18110
18111
18111
18111
18112
18112
18112
18113
18113
18113
18114
18114
18114
18115
18115
18115
18116
18116
18116
18117
18117
18117
18118
18118
18118
18119
18119
18119
18120
18120
18120
18121
18121
18121
18122
18122
18122
18123
18123
18123
18124
18124
18124
18125
18125
18125
18126
18126
18126
18127
18127
18128
18128
18128
18128
18129
18129
18129
18130
18130
18130
18131
18131
18131
18132
18132
18132
18133
18133
18133
18134
18134
18134
18135
18135
18135
18136
18136
18136
18137
18137
18137
18138
18138
18138
18139
18139
18139
18140
18140
18140
18141
18141
18141
18142
18142
18142
18143
18143
18143
18144
18144
18144
18145
18145
18145
18146
18146
18146
18147
18147
18147
18148
18148
18148
18149
18149
18150
18150
18150
18150
18151
18151
18151
18152
18152
18152
18153
18153
18153
18154
18154
18154
18155
18155
18155
18156
18156
18156
18157
18157
18157
18158
18158
18158
18159
18159
18159
18160
18160
18160
18161
18161
18161
18162
18162
18162
18163
18163
18163
18164
18164
18164
18165
18165
18165
18166
18166
18166
18167
18167
18167
18168
18168
18168
18169
18169
18169
18170
18170
18170
18171
18171
18172
18172
18172
18172
18173
18173
18173
18174
18174
18174
18175
18175
18175
18176
18176
18176
18177
18177
18177
18178
18178
18178
18179
18179
18179
18180
18180
18180
18181
18181
18181
18182
18182
18182
18183
18183
18183
18184
18184
18184
18185
18185
18185
18186
18186
18186
18187
18187
18187
18188
18188
18188
18189
18189
18189
18190
18190
18190
18191
18191
18191
18192
18192
18192
18193
18193
18194
18194
18194
18194
18195
18195
18195
18196
18196
18196
18197
18197
18197
18198
18198
18198
18199
18199
18199
18200
18200
18200
18201
18201
18201
18202
18202
18202
18203
18203
18203
18204
18204
18204
18205
18205
18205
18206
18206
18206
18207
18207
18207
18208
18208
18208
18209
18209
18209
18210
18210
18210
18211
18211
18211
18212
18212
18212
18213
18213
18213
18214
18214
18214
18215
18215
18216
18216
18216
18216
18217
18217
18217
18218
18218
18218
18219
18219
18219
18220
18220
18220
18221
18221
18221
18222
18222
18222
18223
18223
18223
18224
18224
18224
18225
18225
18225
18226
18226
18226
18227
18227
18227
18228
18228
18228
18229
18229
18229
18230
18230
18230
18231
18231
18231
18232
18232
18232
18233
18233
18233
18234
18234
18234
18235
18235
18235
18236
18236
18236
18237
18237
18238
18238
18238
18239
18239
18240
18240
18241
18241
18242
18242
18243
18243
18244
18244
18245
18245
18246
18246
18247
18247
18248
18248
18249
18249
18250
18250
18251
18251
18252
18252
18253
18253
18254
18254
18255
18255
18256
18256
18257
18257
18258
18258
18259
18260
18260
18260
18260
18261
18261
18261
18262
18262
18262
18263
18263
18263
18264
18264
18264
18265
18265
18265
18266
18266
18266
18267
18267
18267
18268
18268
18268
18269
18269
18269
18270
18270
18270
18271
18271
18271
18272
18272
18272
18273
18273
18273
18274
18274
18274
18275
18275
18275
18276
18276
18276
18277
18277
18277
18278
18278
18278
18279
18279
18279
18280
18280
18280
18281
18281
18282
18282
18282
18282
18283
18283
18283
18284
18284
18284
18285
18285
18285
18286
18286
18286
18287
18287
18287
18288
18288
18288
18289
18289
18289
18290
18290
18290
18291
18291
18291
18292
18292
18292
18293
18293
18293
18294
18294
18294
18295
18295
18295
18296
18296
18296
18297
18297
18297
18298
18298
18298
18299
18299
18299
18300
18300
18300
18301
18301
18301
18302
18302
18302
18303
18303
18304
18304
18304
18304
18305
18305
18305
18306
18306
18306
18307
18307
18307
18308
18308
18308
18309
18309
18309
18310
18310
18310
18311
18311
18311
18312
18312
18312
18313
18313
18313
18314
18314
18314
18315
18315
18315
18316
18316
18316
18317
18317
18317
18318
18318
18318
18319
18319
18319
18320
18320
18320
18321
18321
18321
18322
18322
18322
18323
18323
18323
18324
18324
18324
18325
18325
18326
18326
18326
18326
18327
18327
18327
18328
18328
18328
18329
18329
18329
18330
18330
18330
18331
18331
18331
18332
18332
18332
18333
18333
18333
18334
18334
18334
18335
18335
18335
18336
18336
18336
18337
18337
18337
18338
18338
18338
18339
18339
18339
18340
18340
18340
18341
18341
18341
18342
18342
18342
18343
18343
18343
18344
18344
18344
18345
18345
18345
18346
18346
18346
18347
18347
18348
18348
18348
18348
18349
18349
18349
18350
18350
18350
18351
18351
18351
18352
18352
18352
18353
18353
18353
18354
18354
18354
18355
18355
18355
18356
18356
18356
18357
18357
18357
18358
18358
18358
18359
18359
18359
18360
18360
18360
18361
18361
18361
18362
18362
18362
18363
18363
18363
18364
18364
18364
18365
18365
18365
18366
18366
18366
18367
18367
18367
18368
18368
18368
18369
18369
18370
18370
18370
18370
18371
18371
18371
18372
18372
18372
18373
18373
18373
18374
18374
18374
18375
18375
18375
18376
18376
18376
18377
18377
18377
18378
18378
18378
18379
18379
18379
18380
18380
18380
18381
18381
18381
18382
18382
18382
18383
18383
18383
18384
18384
18384
18385
18385
18385
18386
18386
18386
18387
18387
18387
18388
18388
18388
18389
18389
18389
18390
18390
18390
18391
18391
18392
18392
18392
18392
18393
18393
18393
18394
18394
18394
18395
18395
18395
18396
18396
18396
18397
18397
18397
18398
18398
18398
18399
18399
18399
18400
18400
18400
18401
18401
18401
18402
18402
18402
18403
18403
18403
18404
18404
18404
18405
18405
18405
18406
18406
18406
18407
18407
18407
18408
18408
18408
18409
18409
18409
18410
18410
18410
18411
18411
18411
18412
18412
18412
18413
18413
18414
18414
18414
18414
18415
18415
18415
18416
18416
18416
18417
18417
18417
18418
18418
18418
18419
18419
18419
18420
18420
18420
18421
18421
18421
18422
18422
18422
18423
18423
18423
18424
18424
18424
18425
18425
18425
18426
18426
18426
18427
18427
18427
18428
18428
18428
18429
18429
18429
18430
18430
18430
18431
18431
18431
18432
18432
18432
18433
18433
18433
18434
18434
18434
18435
18435
18436
18436
18436
18436
18437
18437
18437
18438
18438
18438
18439
18439
18439
18440
18440
18440
18441
18441
18441
18442
18442
18442
18443
18443
18443
18444
18444
18444
18445
18445
18445
18446
18446
18446
18447
18447
18447
18448
18448
18448
18449
18449
18449
18450
18450
18450
18451
18451
18451
18452
18452
18452
18453
18453
18453
18454
18454
18454
18455
18455
18455
18456
18456
18456
18457
18457
18458
18458
18458
18459
18459
18460
18460
18461
18461
18462
18462
18463
18463
18464
18464
18465
18465
18466
18466
18467
18467
18468
18468
18469
18469
18470
18470
18471
18471
18472
18472
18473
18473
18474
18474
18475
18475
18476
18476
18477
18477
18478
18478
18479
18480
18480
18480
18480
18481
18481
18481
18482
18482
18482
18483
18483
18483
18484
18484
18484
18485
18485
18485
18486
18486
18486
18487
18487
18487
18488
18488
18488
18489
18489
18489
18490
18490
18490
18491
18491
18491
18492
18492
18492
18493
18493
18493
18494
18494
18494
18495
18495
18495
18496
18496
18496
18497
18497
18497
18498
18498
18498
18499
18499
18499
18500
18500
18500
18501
18501
18502
18502
18502
18502
18503
18503
18503
18504
18504
18504
18505
18505
18505
18506
18506
18506
18507
18507
18507
18508
18508
18508
18509
18509
18509
18510
18510
18510
18511
18511
18511
18512
18512
18512
18513
18513
18513
18514
18514
18514
18515
18515
18515
18516
18516
18516
18517
18517
18517
18518
18518
18518
18519
18519
18519
18520
18520
18520
18521
18521
18521
18522
18522
18522
18523
18523
18524
18524
18524
18524
18525
18525
18525
18526
18526
18526
18527
18527
18527
18528
18528
18528
18529
18529
18529
18530
18530
18530
18531
18531
18531
18532
18532
18532
18533
18533
18533
18534
18534
18534
18535
18535
18535
18536
18536
18536
18537
18537
18537
18538
18538
18538
18539
18539
18539
18540
18540
18540
18541
18541
18541
18542
18542
18542
18543
18543
18543
18544
18544
18544
18545
18545
18546
18546
18546
18546
18547
18547
18547
18548
18548
18548
18549
18549
18549
18550
18550
18550
18551
18551
18551
18552
18552
18552
18553
18553
18553
18554
18554
18554
18555
18555
18555
18556
18556
18556
18557
18557
18557
18558
18558
18558
18559
18559
18559
18560
18560
18560
18561
18561
18561
18562
18562
18562
18563
18563
18563
18564
18564
18564
18565
18565
18565
18566
18566
18566
18567
18567
18568
18568
18568
18568
18569
18569
18569
18570
18570
18570
18571
18571
18571
18572
18572
18572
18573
18573
18573
18574
18574
18574
18575
18575
18575
18576
18576
18576
18577
18577
18577
18578
18578
18578
18579
18579
18579
18580
18580
18580
18581
18581
18581
18582
18582
18582
18583
18583
18583
18584
18584
18584
18585
18585
18585
18586
18586
18586
18587
18587
18587
18588
18588
18588
18589
18589
18590
18590
18590
18590
18591
18591
18591
18592
18592
18592
18593
18593
18593
18594
18594
18594
18595
18595
18595
18596
18596
18596
18597
18597
18597
18598
18598
18598
18599
18599
18599
18600
18600
18600
18601
18601
18601
18602
18602
18602
18603
18603
18603
18604
18604
18604
18605
18605
18605
18606
18606
18606
18607
18607
18607
18608
18608
18608
18609
18609
18609
18610
18610
18610
18611
18611
18612
18612
18612
18612
18613
18613
18613
18614
18614
18614
18615
18615
18615
18616
18616
18616
18617
18617
18617
18618
18618
18618
18619
18619
18619
18620
18620
18620
18621
18621
18621
18622
18622
18622
18623
18623
18623
18624
18624
18624
18625
18625
18625
18626
18626
18626
18627
18627
18627
18628
18628
18628
18629
18629
18629
18630
18630
18630
18631
18631
18631
18632
18632
18632
18633
18633
18634
18634
18634
18634
18635
18635
18635
18636
18636
18636
18637
18637
18637
18638
18638
18638
18639
18639
18639
18640
18640
18640
18641
18641
18641
18642
18642
18642
18643
18643
18643
18644
18644
18644
18645
18645
18645
18646
18646
18646
18647
18647
18647
18648
18648
18648
18649
18649
18649
18650
18650
18650
18651
18651
18651
18652
18652
18652
18653
18653
18653
18654
18654
18654
18655
18655
18656
18656
18656
18656
18657
18657
18657
18658
18658
18658
18659
18659
18659
18660
18660
18660
18661
18661
18661
18662
18662
18662
18663
18663
18663
18664
18664
18664
18665
18665
18665
18666
18666
18666
18667
18667
18667
18668
18668
18668
18669
18669
18669
18670
18670
18670
18671
18671
18671
18672
18672
18672
18673
18673
18673
18674
18674
18674
18675
18675
18675
18676
18676
18676
18677
18677
18678
18678
18678
18679
18679
18680
18680
18681
18681
18682
18682
18683
18683
18684
18684
18685
18685
18686
18686
18687
18687
18688
18688
18689
18689
18690
18690
18691
18691
18692
18692
18693
18693
18694
18694
18695
18695
18696
18696
18697
18697
18698
18698
18699
18700
18700
18700
18700
18701
18701
18701
18702
18702
18702
18703
18703
18703
18704
18704
18704
18705
18705
18705
18706
18706
18706
18707
18707
18707
18708
18708
18708
18709
18709
18709
18710
18710
18710
18711
18711
18711
18712
18712
18712
18713
18713
18713
18714
18714
18714
18715
18715
18715
18716
18716
18716
18717
18717
18717
18718
18718
18718
18719
18719
18719
18720
18720
18720
18721
18721
18722
18722
18722
18722
18723
18723
18723
18724
18724
18724
18725
18725
18725
18726
18726
18726
18727
18727
18727
18728
18728
18728
18729
18729
18729
18730
18730
18730
18731
18731
18731
18732
18732
18732
18733
18733
18733
18734
18734
18734
18735
18735
18735
18736
18736
18736
18737
18737
18737
18738
18738
18738
18739
18739
18739
18740
18740
18740
18741
18741
18741
18742
18742
18742
18743
18743
18744
18744
18744
18744
18745
18745
18745
18746
18746
18746
18747
18747
18747
18748
18748
18748
18749
18749
18749
18750
18750
18750
18751
18751
18751
18752
18752
18752
18753
18753
18753
18754
18754
18754
18755
18755
18755
18756
18756
18756
18757
18757
18757
18758
18758
18758
18759
18759
18759
18760
18760
18760
18761
18761
18761
18762
18762
18762
18763
18763
18763
18764
18764
18764
18765
18765
18766
18766
18766
18766
18767
18767
18767
18768
18768
18768
18769
18769
18769
18770
18770
18770
18771
18771
18771
18772
18772
18772
18773
18773
18773
18774
18774
18774
18775
18775
18775
18776
18776
18776
18777
18777
18777
18778
18778
18778
18779
18779
18779
18780
18780
18780
18781
18781
18781
18782
18782
18782
18783
18783
18783
18784
18784
18784
18785
18785
18785
18786
18786
18786
18787
18787
18788
18788
18788
18788
18789
18789
18789
18790
18790
18790
18791
18791
18791
18792
18792
18792
18793
18793
18793
18794
18794
18794
18795
18795
18795
18796
18796
18796
18797
18797
18797
18798
18798
18798
18799
18799
18799
18800
18800
18800
18801
18801
18801
18802
18802
18802
18803
18803
18803
18804
18804
18804
18805
18805
18805
18806
18806
18806
18807
18807
18807
18808
18808
18808
18809
18809
18810
18810
18810
18810
18811
18811
18811
18812
18812
18812
18813
18813
18813
18814
18814
18814
18815
18815
18815
18816
18816
18816
18817
18817
18817
18818
18818
18818
18819
18819
18819
18820
18820
18820
18821
18821
18821
18822
18822
18822
18823
18823
18823
18824
18824
18824
18825
18825
18825
18826
18826
18826
18827
18827
18827
18828
18828
18828
18829
18829
18829
18830
18830
18830
18831
18831
18832
18832
18832
18832
18833
18833
18833
18834
18834
18834
18835
18835
18835
18836
18836
18836
18837
18837
18837
18838
18838
18838
18839
18839
18839
18840
18840
18840
18841
18841
18841
18842
18842
18842
18843
18843
18843
18844
18844
18844
18845
18845
18845
18846
18846
18846
18847
18847
18847
18848
18848
18848
18849
18849
18849
18850
18850
18850
18851
18851
18851
18852
18852
18852
18853
18853
18854
18854
18854
18854
18855
18855
18855
18856
18856
18856
18857
18857
18857
18858
18858
18858
18859
18859
18859
18860
18860
18860
18861
18861
18861
18862
18862
18862
18863
18863
18863
18864
18864
18864
18865
18865
18865
18866
18866
18866
18867
18867
18867
18868
18868
18868
18869
18869
18869
18870
18870
18870
18871
18871
18871
18872
18872
18872
18873
18873
18873
18874
18874
18874
18875
18875
18876
18876
18876
18876
18877
18877
18877
18878
18878
18878
18879
18879
18879
18880
18880
18880
18881
18881
18881
18882
18882
18882
18883
18883
18883
18884
18884
18884
18885
18885
18885
18886
18886
18886
18887
18887
18887
18888
18888
18888
18889
18889
18889
18890
18890
18890
18891
18891
18891
18892
18892
18892
18893
18893
18893
18894
18894
18894
18895
18895
18895
18896
18896
18896
18897
18897
18898
18898
18898
18899
18899
18900
18900
18901
18901
18902
18902
18903
18903
18904
18904
18905
18905
18906
18906
18907
18907
18908
18908
18909
18909
18910
18910
18911
18911
18912
18912
18913
18913
18914
18914
18915
18915
18916
18916
18917
18917
18918
18918
18919
18920
18920
18920
18920
18921
18921
18921
18922
18922
18922
18923
18923
18923
18924
18924
18924
18925
18925
18925
18926
18926
18926
18927
18927
18927
18928
18928
18928
18929
18929
18929
18930
18930
18930
18931
18931
18931
18932
18932
18932
18933
18933
18933
18934
18934
18934
18935
18935
18935
18936
18936
18936
18937
18937
18937
18938
18938
18938
18939
18939
18939
18940
18940
18940
18941
18941
18942
18942
18942
18942
18943
18943
18943
18944
18944
18944
18945
18945
18945
18946
18946
18946
18947
18947
18947
18948
18948
18948
18949
18949
18949
18950
18950
18950
18951
18951
18951
18952
18952
18952
18953
18953
18953
18954
18954
18954
18955
18955
18955
18956
18956
18956
18957
18957
18957
18958
18958
18958
18959
18959
18959
18960
18960
18960
18961
18961
18961
18962
18962
18962
18963
18963
18964
18964
18964
18964
18965
18965
18965
18966
18966
18966
18967
18967
18967
18968
18968
18968
18969
18969
18969
18970
18970
18970
18971
18971
18971
18972
18972
18972
18973
18973
18973
18974
18974
18974
18975
18975
18975
18976
18976
18976
18977
18977
18977
18978
18978
18978
18979
18979
18979
18980
18980
18980
18981
18981
18981
18982
18982
18982
18983
18983
18983
18984
18984
18984
18985
18985
18986
18986
18986
18986
18987
18987
18987
18988
18988
18988
18989
18989
18989
18990
18990
18990
18991
18991
18991
18992
18992
18992
18993
18993
18993
18994
18994
18994
18995
18995
18995
18996
18996
18996
18997
18997
18997
18998
18998
18998
18999
18999
18999
19000
19000
19000
19001
19001
19001
19002
19002
19002
19003
19003
19003
19004
19004
19004
19005
19005
19005
19006
19006
19006
19007
19007
19008
19008
19008
19008
19009
19009
19009
19010
19010
19010
19011
19011
19011
19012
19012
19012
19013
19013
19013
19014
19014
19014
19015
19015
19015
19016
19016
19016
19017
19017
19017
19018
19018
19018
19019
19019
19019
19020
19020
19020
19021
19021
19021
19022
19022
19022
19023
19023
19023
19024
19024
19024
19025
19025
19025
19026
19026
19026
19027
19027
19027
19028
19028
19028
19029
19029
19030
19030
19030
19030
19031
19031
19031
19032
19032
19032
19033
19033
19033
19034
19034
19034
19035
19035
19035
19036
19036
19036
19037
19037
19037
19038
19038
19038
19039
19039
19039
19040
19040
19040
19041
19041
19041
19042
19042
19042
19043
19043
19043
19044
19044
19044
19045
19045
19045
19046
19046
19046
19047
19047
19047
19048
19048
19048
19049
19049
19049
19050
19050
19050
19051
19051
19052
19052
19052
19052
19053
19053
19053
19054
19054
19054
19055
19055
19055
19056
19056
19056
19057
19057
19057
19058
19058
19058
19059
19059
19059
19060
19060
19060
19061
19061
19061
19062
19062
19062
19063
19063
19063
19064
19064
19064
19065
19065
19065
19066
19066
19066
19067
19067
19067
19068
19068
19068
19069
19069
19069
19070
19070
19070
19071
19071
19071
19072
19072
19072
19073
19073
19074
19074
19074
19074
19075
19075
19075
19076
19076
19076
19077
19077
19077
19078
19078
19078
19079
19079
19079
19080
19080
19080
19081
19081
19081
19082
19082
19082
19083
19083
19083
19084
19084
19084
19085
19085
19085
19086
19086
19086
19087
19087
19087
19088
19088
19088
19089
19089
19089
19090
19090
19090
19091
19091
19091
19092
19092
19092
19093
19093
19093
19094
19094
19094
19095
19095
19096
19096
19096
19096
19097
19097
19097
19098
19098
19098
19099
19099
19099
19100
19100
19100
19101
19101
19101
19102
19102
19102
19103
19103
19103
19104
19104
19104
19105
19105
19105
19106
19106
19106
19107
19107
19107
19108
19108
19108
19109
19109
19109
19110
19110
19110
19111
19111
19111
19112
19112
19112
19113
19113
19113
19114
19114
19114
19115
19115
19115
19116
19116
19116
19117
19117
19118
19118
19118
19119
19119
19120
19120
19121
19121
19122
19122
19123
19123
19124
19124
19125
19125
19126
19126
19127
19127
19128
19128
19129
19129
19130
19130
19131
19131
19132
19132
19133
19133
19134
19134
19135
19135
19136
19136
19137
19137
19138
19138
19139
19140
19140
19140
19140
19141
19141
19141
19142
19142
19142
19143
19143
19143
19144
19144
19144
19145
19145
19145
19146
19146
19146
19147
19147
19147
19148
19148
19148
19149
19149
19149
19150
19150
19150
19151
19151
19151
19152
19152
19152
19153
19153
19153
19154
19154
19154
19155
19155
19155
19156
19156
19156
19157
19157
19157
19158
19158
19158
19159
19159
19159
19160
19160
19160
19161
19161
19162
19162
19162
19162
19163
19163
19163
19164
19164
19164
19165
19165
19165
19166
19166
19166
19167
19167
19167
19168
19168
19168
19169
19169
19169
19170
19170
19170
19171
19171
19171
19172
19172
19172
19173
19173
19173
19174
19174
19174
19175
19175
19175
19176
19176
19176
19177
19177
19177
19178
19178
19178
19179
19179
19179
19180
19180
19180
19181
19181
19181
19182
19182
19182
19183
19183
19184
19184
19184
19184
19185
19185
19185
19186
19186
19186
19187
19187
19187
19188
19188
19188
19189
19189
19189
19190
19190
19190
19191
19191
19191
19192
19192
19192
19193
19193
19193
19194
19194
19194
19195
19195
19195
19196
19196
19196
19197
19197
19197
19198
19198
19198
19199
19199
19199
19200
19200
19200
19201
19201
19201
19202
19202
19202
19203
19203
19203
19204
19204
19204
19205
19205
19206
19206
19206
19206
19207
19207
19207
19208
19208
19208
19209
19209
19209
19210
19210
19210
19211
19211
19211
19212
19212
19212
19213
19213
19213
19214
19214
19214
19215
19215
19215
19216
19216
19216
19217
19217
19217
19218
19218
19218
19219
19219
19219
19220
19220
19220
19221
19221
19221
19222
19222
19222
19223
19223
19223
19224
19224
19224
19225
19225
19225
19226
19226
19226
19227
19227
19228
19228
19228
19228
19229
19229
19229
19230
19230
19230
19231
19231
19231
19232
19232
19232
19233
19233
19233
19234
19234
19234
19235
19235
19235
19236
19236
19236
19237
19237
19237
19238
19238
19238
19239
19239
19239
19240
19240
19240
19241
19241
19241
19242
19242
19242
19243
19243
19243
19244
19244
19244
19245
19245
19245
19246
19246
19246
19247
19247
19247
19248
19248
19248
19249
19249
19250
19250
19250
19250
19251
19251
19251
19252
19252
19252
19253
19253
19253
19254
19254
19254
19255
19255
19255
19256
19256
19256
19257
19257
19257
19258
19258
19258
19259
19259
19259
19260
19260
19260
19261
19261
19261
19262
19262
19262
19263
19263
19263
19264
19264
19264
19265
19265
19265
19266
19266
19266
19267
19267
19267
19268
19268
19268
19269
19269
19269
19270
19270
19270
19271
19271
19272
19272
19272
19272
19273
19273
19273
19274
19274
19274
19275
19275
19275
19276
19276
19276
19277
19277
19277
19278
19278
19278
19279
19279
19279
19280
19280
19280
19281
19281
19281
19282
19282
19282
19283
19283
19283
19284
19284
19284
19285
19285
19285
19286
19286
19286
19287
19287
19287
19288
19288
19288
19289
19289
19289
19290
19290
19290
19291
19291
19291
19292
19292
19292
19293
19293
19294
19294
19294
19294
19295
19295
19295
19296
19296
19296
19297
19297
19297
19298
19298
19298
19299
19299
19299
19300
19300
19300
19301
19301
19301
19302
19302
19302
19303
19303
19303
19304
19304
19304
19305
19305
19305
19306
19306
19306
19307
19307
19307
19308
19308
19308
19309
19309
19309
19310
19310
19310
19311
19311
19311
19312
19312
19312
19313
19313
19313
19314
19314
19314
19315
19315
19316
19316
19316
19316
19317
19317
19317
19318
19318
19318
19319
19319
19319
19320
19320
19320
19321
19321
19321
19322
19322
19322
19323
19323
19323
19324
19324
19324
19325
19325
19325
19326
19326
19326
19327
19327
19327
19328
19328
19328
19329
19329
19329
19330
19330
19330
19331
19331
19331
19332
19332
19332
19333
19333
19333
19334
19334
19334
19335
19335
19335
19336
19336
19336
19337
19337
19338
19338
19338
19339
19339
19340
19340
19341
19341
19342
19342
19343
19343
19344
19344
19345
19345
19346
19346
19347
19347
19348
19348
19349
19349
19350
19350
19351
19351
19352
19352
19353
19353
19354
19354
19355
19355
19356
19356
19357
19357
19358
19358
19359
19360
19360
19360
19360
19361
19361
19361
19362
19362
19362
19363
19363
19363
19364
19364
19364
19365
19365
19365
19366
19366
19366
19367
19367
19367
19368
19368
19368
19369
19369
19369
19370
19370
19370
19371
19371
19371
19372
19372
19372
19373
19373
19373
19374
19374
19374
19375
19375
19375
19376
19376
19376
19377
19377
19377
19378
19378
19378
19379
19379
19379
19380
19380
19380
19381
19381
19382
19382
19382
19382
19383
19383
19383
19384
19384
19384
19385
19385
19385
19386
19386
19386
19387
19387
19387
19388
19388
19388
19389
19389
19389
19390
19390
19390
19391
19391
19391
19392
19392
19392
19393
19393
19393
19394
19394
19394
19395
19395
19395
19396
19396
19396
19397
19397
19397
19398
19398
19398
19399
19399
19399
19400
19400
19400
19401
19401
19401
19402
19402
19402
19403
19403
19404
19404
19404
19404
19405
19405
19405
19406
19406
19406
19407
19407
19407
19408
19408
19408
19409
19409
19409
19410
19410
19410
19411
19411
19411
19412
19412
19412
19413
19413
19413
19414
19414
19414
19415
19415
19415
19416
19416
19416
19417
19417
19417
19418
19418
19418
19419
19419
19419
19420
19420
19420
19421
19421
19421
19422
19422
19422
19423
19423
19423
19424
19424
19424
19425
19425
19426
19426
19426
19426
19427
19427
19427
19428
19428
19428
19429
19429
19429
19430
19430
19430
19431
19431
19431
19432
19432
19432
19433
19433
19433
19434
19434
19434
19435
19435
19435
19436
19436
19436
19437
19437
19437
19438
19438
19438
19439
19439
19439
19440
19440
19440
19441
19441
19441
19442
19442
19442
19443
19443
19443
19444
19444
19444
19445
19445
19445
19446
19446
19446
19447
19447
19448
19448
19448
19448
19449
19449
19449
19450
19450
19450
19451
19451
19451
19452
19452
19452
19453
19453
19453
19454
19454
19454
19455
19455
19455
19456
19456
19456
19457
19457
19457
19458
19458
19458
19459
19459
19459
19460
19460
19460
19461
19461
19461
19462
19462
19462
19463
19463
19463
19464
19464
19464
19465
19465
19465
19466
19466
19466
19467
19467
19467
19468
19468
19468
19469
19469
19470
19470
19470
19470
19471
19471
19471
19472
19472
19472
19473
19473
19473
19474
19474
19474
19475
19475
19475
19476
19476
19476
19477
19477
19477
19478
19478
19478
19479
19479
19479
19480
19480
19480
19481
19481
19481
19482
19482
19482
19483
19483
19483
19484
19484
19484
19485
19485
19485
19486
19486
19486
19487
19487
19487
19488
19488
19488
19489
19489
19489
19490
19490
19490
19491
19491
19492
19492
19492
19492
19493
19493
19493
19494
19494
19494
19495
19495
19495
19496
19496
19496
19497
19497
19497
19498
19498
19498
19499
19499
19499
19500
19500
19500
19501
19501
19501
19502
19502
19502
19503
19503
19503
19504
19504
19504
19505
19505
19505
19506
19506
19506
19507
19507
19507
19508
19508
19508
19509
19509
19509
19510
19510
19510
19511
19511
19511
19512
19512
19512
19513
19513
19514
19514
19514
19514
19515
19515
19515
19516
19516
19516
19517
19517
19517
19518
19518
19518
19519
19519
19519
19520
19520
19520
19521
19521
19521
19522
19522
19522
19523
19523
19523
19524
19524
19524
19525
19525
19525
19526
19526
19526
19527
19527
19527
19528
19528
19528
19529
19529
19529
19530
19530
19530
19531
19531
19531
19532
19532
19532
19533
19533
19533
19534
19534
19534
19535
19535
19536
19536
19536
19536
19537
19537
19537
19538
19538
19538
19539
19539
19539
19540
19540
19540
19541
19541
19541
19542
19542
19542
19543
19543
19543
19544
19544
19544
19545
19545
19545
19546
19546
19546
19547
19547
19547
19548
19548
19548
19549
19549
19549
19550
19550
19550
19551
19551
19551
19552
19552
19552
19553
19553
19553
19554
19554
19554
19555
19555
19555
19556
19556
19556
19557
19557
19558
19558
19558
19559
19559
19560
19560
19561
19561
19562
19562
19563
19563
19564
19564
19565
19565
19566
19566
19567
19567
19568
19568
19569
19569
19570
19570
19571
19571
19572
19572
19573
19573
19574
19574
19575
19575
19576
19576
19577
19577
19578
19578
19579
19580
19580
19580
19580
19581
19581
19581
19582
19582
19582
19583
19583
19583
19584
19584
19584
19585
19585
19585
19586
19586
19586
19587
19587
19587
19588
19588
19588
19589
19589
19589
19590
19590
19590
19591
19591
19591
19592
19592
19592
19593
19593
19593
19594
19594
19594
19595
19595
19595
19596
19596
19596
19597
19597
19597
19598
19598
19598
19599
19599
19599
19600
19600
19600
19601
19601
19602
19602
19602
19602
19603
19603
19603
19604
19604
19604
19605
19605
19605
19606
19606
19606
19607
19607
19607
19608
19608
19608
19609
19609
19609
19610
19610
19610
19611
19611
19611
19612
19612
19612
19613
19613
19613
19614
19614
19614
19615
19615
19615
19616
19616
19616
19617
19617
19617
19618
19618
19618
19619
19619
19619
19620
19620
19620
19621
19621
19621
19622
19622
19622
19623
19623
19624
19624
19624
19624
19625
19625
19625
19626
19626
19626
19627
19627
19627
19628
19628
19628
19629
19629
19629
19630
19630
19630
19631
19631
19631
19632
19632
19632
19633
19633
19633
19634
19634
19634
19635
19635
19635
19636
19636
19636
19637
19637
19637
19638
19638
19638
19639
19639
19639
19640
19640
19640
19641
19641
19641
19642
19642
19642
19643
19643
19643
19644
19644
19644
19645
19645
19646
19646
19646
19646
19647
19647
19647
19648
19648
19648
19649
19649
19649
19650
19650
19650
19651
19651
19651
19652
19652
19652
19653
19653
19653
19654
19654
19654
19655
19655
19655
19656
19656
19656
19657
19657
19657
19658
19658
19658
19659
19659
19659
19660
19660
19660
19661
19661
19661
19662
19662
19662
19663
19663
19663
19664
19664
19664
19665
19665
19665
19666
19666
19666
19667
19667
19668
19668
19668
19668
19669
19669
19669
19670
19670
19670
19671
19671
19671
19672
19672
19672
19673
19673
19673
19674
19674
19674
19675
19675
19675
19676
19676
19676
19677
19677
19677
19678
19678
19678
19679
19679
19679
19680
19680
19680
19681
19681
19681
19682
19682
19682
19683
19683
19683
19684
19684
19684
19685
19685
19685
19686
19686
19686
19687
19687
19687
19688
19688
19688
19689
19689
19690
19690
19690
19690
19691
19691
19691
19692
19692
19692
19693
19693
19693
19694
19694
19694
19695
19695
19695
19696
19696
19696
19697
19697
19697
19698
19698
19698
19699
19699
19699
19700
19700
19700
19701
19701
19701
19702
19702
19702
19703
19703
19703
19704
19704
19704
19705
19705
19705
19706
19706
19706
19707
19707
19707
19708
19708
19708
19709
19709
19709
19710
19710
19710
19711
19711
19712
19712
19712
19712
19713
19713
19713
19714
19714
19714
19715
19715
19715
19716
19716
19716
19717
19717
19717
19718
19718
19718
19719
19719
19719
19720
19720
19720
19721
19721
19721
19722
19722
19722
19723
19723
19723
19724
19724
19724
19725
19725
19725
19726
19726
19726
19727
19727
19727
19728
19728
19728
19729
19729
19729
19730
19730
19730
19731
19731
19731
19732
19732
19732
19733
19733
19734
19734
19734
19734
19735
19735
19735
19736
19736
19736
19737
19737
19737
19738
19738
19738
19739
19739
19739
19740
19740
19740
19741
19741
19741
19742
19742
19742
19743
19743
19743
19744
19744
19744
19745
19745
19745
19746
19746
19746
19747
19747
19747
19748
19748
19748
19749
19749
19749
19750
19750
19750
19751
19751
19751
19752
19752
19752
19753
19753
19753
19754
19754
19754
19755
19755
19756
19756
19756
19756
19757
19757
19757
19758
19758
19758
19759
19759
19759
19760
19760
19760
19761
19761
19761
19762
19762
19762
19763
19763
19763
19764
19764
19764
19765
19765
19765
19766
19766
19766
19767
19767
19767
19768
19768
19768
19769
19769
19769
19770
19770
19770
19771
19771
19771
19772
19772
19772
19773
19773
19773
19774
19774
19774
19775
19775
19775
19776
19776
19776
19777
19777
19778
19778
19778
19779
19779
19780
19780
19781
19781
19782
19782
19783
19783
19784
19784
19785
19785
19786
19786
19787
19787
19788
19788
19789
19789
19790
19790
19791
19791
19792
19792
19793
19793
19794
19794
19795
19795
19796
19796
19797
19797
19798
19798
19799
19800
19800
19800
19800
19801
19801
19801
19802
19802
19802
19803
19803
19803
19804
19804
19804
19805
19805
19805
19806
19806
19806
19807
19807
19807
19808
19808
19808
19809
19809
19809
19810
19810
19810
19811
19811
19811
19812
19812
19812
19813
19813
19813
19814
19814
19814
19815
19815
19815
19816
19816
19816
19817
19817
19817
19818
19818
19818
19819
19819
19819
19820
19820
19820
19821
19821
19822
19822
19822
19822
19823
19823
19823
19824
19824
19824
19825
19825
19825
19826
19826
19826
19827
19827
19827
19828
19828
19828
19829
19829
19829
19830
19830
19830
19831
19831
19831
19832
19832
19832
19833
19833
19833
19834
19834
19834
19835
19835
19835
19836
19836
19836
19837
19837
19837
19838
19838
19838
19839
19839
19839
19840
19840
19840
19841
19841
19841
19842
19842
19842
19843
19843
19844
19844
19844
19844
19845
19845
19845
19846
19846
19846
19847
19847
19847
19848
19848
19848
19849
19849
19849
19850
19850
19850
19851
19851
19851
19852
19852
19852
19853
19853
19853
19854
19854
19854
19855
19855
19855
19856
19856
19856
19857
19857
19857
19858
19858
19858
19859
19859
19859
19860
19860
19860
19861
19861
19861
19862
19862
19862
19863
19863
19863
19864
19864
19864
19865
19865
19866
19866
19866
19866
19867
19867
19867
19868
19868
19868
19869
19869
19869
19870
19870
19870
19871
19871
19871
19872
19872
19872
19873
19873
19873
19874
19874
19874
19875
19875
19875
19876
19876
19876
19877
19877
19877
19878
19878
19878
19879
19879
19879
19880
19880
19880
19881
19881
19881
19882
19882
19882
19883
19883
19883
19884
19884
19884
19885
19885
19885
19886
19886
19886
19887
19887
19888
19888
19888
19888
19889
19889
19889
19890
19890
19890
19891
19891
19891
19892
19892
19892
19893
19893
19893
19894
19894
19894
19895
19895
19895
19896
19896
19896
19897
19897
19897
19898
19898
19898
19899
19899
19899
19900
19900
19900
19901
19901
19901
19902
19902
19902
19903
19903
19903
19904
19904
19904
19905
19905
19905
19906
19906
19906
19907
19907
19907
19908
19908
19908
19909
19909
19910
19910
19910
19910
19911
19911
19911
19912
19912
19912
19913
19913
19913
19914
19914
19914
19915
19915
19915
19916
19916
19916
19917
19917
19917
19918
19918
19918
19919
19919
19919
19920
19920
19920
19921
19921
19921
19922
19922
19922
19923
19923
19923
19924
19924
19924
19925
19925
19925
19926
19926
19926
19927
19927
19927
19928
19928
19928
19929
19929
19929
19930
19930
19930
19931
19931
19932
19932
19932
19932
19933
19933
19933
19934
19934
19934
19935
19935
19935
19936
19936
19936
19937
19937
19937
19938
19938
19938
19939
19939
19939
19940
19940
19940
19941
19941
19941
19942
19942
19942
19943
19943
19943
19944
19944
19944
19945
19945
19945
19946
19946
19946
19947
19947
19947
19948
19948
19948
19949
19949
19949
19950
19950
19950
19951
19951
19951
19952
19952
19952
19953
19953
19954
19954
19954
19954
19955
19955
19955
19956
19956
19956
19957
19957
19957
19958
19958
19958
19959
19959
19959
19960
19960
19960
19961
19961
19961
19962
19962
19962
19963
19963
19963
19964
19964
19964
19965
19965
19965
19966
19966
19966
19967
19967
19967
19968
19968
19968
19969
19969
19969
19970
19970
19970
19971
19971
19971
19972
19972
19972
19973
19973
19973
19974
19974
19974
19975
19975
19976
19976
19976
19976
19977
19977
19977
19978
19978
19978
19979
19979
19979
19980
19980
19980
19981
19981
19981
19982
19982
19982
19983
19983
19983
19984
19984
19984
19985
19985
19985
19986
19986
19986
19987
19987
19987
19988
19988
19988
19989
19989
19989
19990
19990
19990
19991
19991
19991
19992
19992
19992
19993
19993
19993
19994
19994
19994
19995
19995
19995
19996
19996
19996
19997
19997
19998
19998
19998
19999
19999
20000
20000
20001
20001
20002
20002
20003
20003
20004
20004
20005
20005
20006
20006
20007
20007
20008
20008
20009
20009
20010
20010
20011
20011
20012
20012
20013
20013
20014
20014
20015
20015
20016
20016
20017
20017
20018
20018
20019
20020
20020
20020
20020
20021
20021
20021
20022
20022
20022
20023
20023
20023
20024
20024
20024
20025
20025
20025
20026
20026
20026
20027
20027
20027
20028
20028
20028
20029
20029
20029
20030
20030
20030
20031
20031
20031
20032
20032
20032
20033
20033
20033
20034
20034
20034
20035
20035
20035
20036
20036
20036
20037
20037
20037
20038
20038
20038
20039
20039
20039
20040
20040
20040
20041
20041
20042
20042
20042
20042
20043
20043
20043
20044
20044
20044
20045
20045
20045
20046
20046
20046
20047
20047
20047
20048
20048
20048
20049
20049
20049
20050
20050
20050
20051
20051
20051
20052
20052
20052
20053
20053
20053
20054
20054
20054
20055
20055
20055
20056
20056
20056
20057
20057
20057
20058
20058
20058
20059
20059
20059
20060
20060
20060
20061
20061
20061
20062
20062
20062
20063
20063
20064
20064
20064
20064
20065
20065
20065
20066
20066
20066
20067
20067
20067
20068
20068
20068
20069
20069
20069
20070
20070
20070
20071
20071
20071
20072
20072
20072
20073
20073
20073
20074
20074
20074
20075
20075
20075
20076
20076
20076
20077
20077
20077
20078
20078
20078
20079
20079
20079
20080
20080
20080
20081
20081
20081
20082
20082
20082
20083
20083
20083
20084
20084
20084
20085
20085
20086
20086
20086
20086
20087
20087
20087
20088
20088
20088
20089
20089
20089
20090
20090
20090
20091
20091
20091
20092
20092
20092
20093
20093
20093
20094
20094
20094
20095
20095
20095
20096
20096
20096
20097
20097
20097
20098
20098
20098
20099
20099
20099
20100
20100
20100
20101
20101
20101
20102
20102
20102
20103
20103
20103
20104
20104
20104
20105
20105
20105
20106
20106
20106
20107
20107
20108
20108
20108
20108
20109
20109
20109
20110
20110
20110
20111
20111
20111
20112
20112
20112
20113
20113
20113
20114
20114
20114
20115
20115
20115
20116
20116
20116
20117
20117
20117
20118
20118
20118
20119
20119
20119
20120
20120
20120
20121
20121
20121
20122
20122
20122
20123
20123
20123
20124
20124
20124
20125
20125
20125
20126
20126
20126
20127
20127
20127
20128
20128
20128
20129
20129
20130
20130
20130
20130
20131
20131
20131
20132
20132
20132
20133
20133
20133
20134
20134
20134
20135
20135
20135
20136
20136
20136
20137
20137
20137
20138
20138
20138
20139
20139
20139
20140
20140
20140
20141
20141
20141
20142
20142
20142
20143
20143
20143
20144
20144
20144
20145
20145
20145
20146
20146
20146
20147
20147
20147
20148
20148
20148
20149
20149
20149
20150
20150
20150
20151
20151
20152
20152
20152
20152
20153
20153
20153
20154
20154
20154
20155
20155
20155
20156
20156
20156
20157
20157
20157
20158
20158
20158
20159
20159
20159
20160
20160
20160
20161
20161
20161
20162
20162
20162
20163
20163
20163
20164
20164
20164
20165
20165
20165
20166
20166
20166
20167
20167
20167
20168
20168
20168
20169
20169
20169
20170
20170
20170
20171
20171
20171
20172
20172
20172
20173
20173
20174
20174
20174
20174
20175
20175
20175
20176
20176
20176
20177
20177
20177
20178
20178
20178
20179
20179
20179
20180
20180
20180
20181
20181
20181
20182
20182
20182
20183
20183
20183
20184
20184
20184
20185
20185
20185
20186
20186
20186
20187
20187
20187
20188
20188
20188
20189
20189
20189
20190
20190
20190
20191
20191
20191
20192
20192
20192
20193
20193
20193
20194
20194
20194
20195
20195
20196
20196
20196
20196
20197
20197
20197
20198
20198
20198
20199
20199
20199
20200
20200
20200
20201
20201
20201
20202
20202
20202
20203
20203
20203
20204
20204
20204
20205
20205
20205
20206
20206
20206
20207
20207
20207
20208
20208
20208
20209
20209
20209
20210
20210
20210
20211
20211
20211
20212
20212
20212
20213
20213
20213
20214
20214
20214
20215
20215
20215
20216
20216
20216
20217
20217
20218
20218
20218
20219
20219
20220
20220
20221
20221
20222
20222
20223
20223
20224
20224
20225
20225
20226
20226
20227
20227
20228
20228
20229
20229
20230
20230
20231
20231
20232
20232
20233
20233
20234
20234
20235
20235
20236
20236
20237
20237
20238
20238
20239
20240
20240
20240
20240
20241
20241
20241
20242
20242
20242
20243
20243
20243
20244
20244
20244
20245
20245
20245
20246
20246
20246
20247
20247
20247
20248
20248
20248
20249
20249
20249
20250
20250
20250
20251
20251
20251
20252
20252
20252
20253
20253
20253
20254
20254
20254
20255
20255
20255
20256
20256
20256
20257
20257
20257
20258
20258
20258
20259
20259
20259
20260
20260
20260
20261
20261
20262
20262
20262
20262
20263
20263
20263
20264
20264
20264
20265
20265
20265
20266
20266
20266
20267
20267
20267
20268
20268
20268
20269
20269
20269
20270
20270
20270
20271
20271
20271
20272
20272
20272
20273
20273
20273
20274
20274
20274
20275
20275
20275
20276
20276
20276
20277
20277
20277
20278
20278
20278
20279
20279
20279
20280
20280
20280
20281
20281
20281
20282
20282
20282
20283
20283
20284
20284
20284
20284
20285
20285
20285
20286
20286
20286
20287
20287
20287
20288
20288
20288
20289
20289
20289
20290
20290
20290
20291
20291
20291
20292
20292
20292
20293
20293
20293
20294
20294
20294
20295
20295
20295
20296
20296
20296
20297
20297
20297
20298
20298
20298
20299
20299
20299
20300
20300
20300
20301
20301
20301
20302
20302
20302
20303
20303
20303
20304
20304
20304
20305
20305
20306
20306
20306
20306
20307
20307
20307
20308
20308
20308
20309
20309
20309
20310
20310
20310
20311
20311
20311
20312
20312
20312
20313
20313
20313
20314
20314
20314
20315
20315
20315
20316
20316
20316
20317
20317
20317
20318
20318
20318
20319
20319
20319
20320
20320
20320
20321
20321
20321
20322
20322
20322
20323
20323
20323
20324
20324
20324
20325
20325
20325
20326
20326
20326
20327
20327
20328
20328
20328
20328
20329
20329
20329
20330
20330
20330
20331
20331
20331
20332
20332
20332
20333
20333
20333
20334
20334
20334
20335
20335
20335
20336
20336
20336
20337
20337
20337
20338
20338
20338
20339
20339
20339
20340
20340
20340
20341
20341
20341
20342
20342
20342
20343
20343
20343
20344
20344
20344
20345
20345
20345
20346
20346
20346
20347
20347
20347
20348
20348
20348
20349
20349
20350
20350
20350
20350
20351
20351
20351
20352
20352
20352
20353
20353
20353
20354
20354
20354
20355
20355
20355
20356
20356
20356
20357
20357
20357
20358
20358
20358
20359
20359
20359
20360
20360
20360
20361
20361
20361
20362
20362
20362
20363
20363
20363
20364
20364
20364
20365
20365
20365
20366
20366
20366
20367
20367
20367
20368
20368
20368
20369
20369
20369
20370
20370
20370
20371
20371
20372
20372
20372
20372
20373
20373
20373
20374
20374
20374
20375
20375
20375
20376
20376
20376
20377
20377
20377
20378
20378
20378
20379
20379
20379
20380
20380
20380
20381
20381
20381
20382
20382
20382
20383
20383
20383
20384
20384
20384
20385
20385
20385
20386
20386
20386
20387
20387
20387
20388
20388
20388
20389
20389
20389
20390
20390
20390
20391
20391
20391
20392
20392
20392
20393
20393
20394
20394
20394
20394
20395
20395
20395
20396
20396
20396
20397
20397
20397
20398
20398
20398
20399
20399
20399
20400
20400
20400
20401
20401
20401
20402
20402
20402
20403
20403
20403
20404
20404
20404
20405
20405
20405
20406
20406
20406
20407
20407
20407
20408
20408
20408
20409
20409
20409
20410
20410
20410
20411
20411
20411
20412
20412
20412
20413
20413
20413
20414
20414
20414
20415
20415
20416
20416
20416
20416
20417
20417
20417
20418
20418
20418
20419
20419
20419
20420
20420
20420
20421
20421
20421
20422
20422
20422
20423
20423
20423
20424
20424
20424
20425
20425
20425
20426
20426
20426
20427
20427
20427
20428
20428
20428
20429
20429
20429
20430
20430
20430
20431
20431
20431
20432
20432
20432
20433
20433
20433
20434
20434
20434
20435
20435
20435
20436
20436
20436
20437
20437
20438
20438
20438
20439
20439
20440
20440
20441
20441
20442
20442
20443
20443
20444
20444
20445
20445
20446
20446
20447
20447
20448
20448
20449
20449
20450
20450
20451
20451
20452
20452
20453
20453
20454
20454
20455
20455
20456
20456
20457
20457
20458
20458
20459
20460
20460
20460
20460
20461
20461
20461
20462
20462
20462
20463
20463
20463
20464
20464
20464
20465
20465
20465
20466
20466
20466
20467
20467
20467
20468
20468
20468
20469
20469
20469
20470
20470
20470
20471
20471
20471
20472
20472
20472
20473
20473
20473
20474
20474
20474
20475
20475
20475
20476
20476
20476
20477
20477
20477
20478
20478
20478
20479
20479
20479
20480
20480
20480
20481
20481
20482
20482
20482
20482
20483
20483
20483
20484
20484
20484
20485
20485
20485
20486
20486
20486
20487
20487
20487
20488
20488
20488
20489
20489
20489
20490
20490
20490
20491
20491
20491
20492
20492
20492
20493
20493
20493
20494
20494
20494
20495
20495
20495
20496
20496
20496
20497
20497
20497
20498
20498
20498
20499
20499
20499
20500
20500
20500
20501
20501
20501
20502
20502
20502
20503
20503
20504
20504
20504
20504
20505
20505
20505
20506
20506
20506
20507
20507
20507
20508
20508
20508
20509
20509
20509
20510
20510
20510
20511
20511
20511
20512
20512
20512
20513
20513
20513
20514
20514
20514
20515
20515
20515
20516
20516
20516
20517
20517
20517
20518
20518
20518
20519
20519
20519
20520
20520
20520
20521
20521
20521
20522
20522
20522
20523
20523
20523
20524
20524
20524
20525
20525
20526
20526
20526
20526
20527
20527
20527
20528
20528
20528
20529
20529
20529
20530
20530
20530
20531
20531
20531
20532
20532
20532
20533
20533
20533
20534
20534
20534
20535
20535
20535
20536
20536
20536
20537
20537
20537
20538
20538
20538
20539
20539
20539
20540
20540
20540
20541
20541
20541
20542
20542
20542
20543
20543
20543
20544
20544
20544
20545
20545
20545
20546
20546
20546
20547
20547
20548
20548
20548
20548
20549
20549
20549
20550
20550
20550
20551
20551
20551
20552
20552
20552
20553
20553
20553
20554
20554
20554
20555
20555
20555
20556
20556
20556
20557
20557
20557
20558
20558
20558
20559
20559
20559
20560
20560
20560
20561
20561
20561
20562
20562
20562
20563
20563
20563
20564
20564
20564
20565
20565
20565
20566
20566
20566
20567
20567
20567
20568
20568
20568
20569
20569
20570
20570
20570
20570
20571
20571
20571
20572
20572
20572
20573
20573
20573
20574
20574
20574
20575
20575
20575
20576
20576
20576
20577
20577
20577
20578
20578
20578
20579
20579
20579
20580
20580
20580
20581
20581
20581
20582
20582
20582
20583
20583
20583
20584
20584
20584
20585
20585
20585
20586
20586
20586
20587
20587
20587
20588
20588
20588
20589
20589
20589
20590
20590
20590
20591
20591
20592
20592
20592
20592
20593
20593
20593
20594
20594
20594
20595
20595
20595
20596
20596
20596
20597
20597
20597
20598
20598
20598
20599
20599
20599
20600
20600
20600
20601
20601
20601
20602
20602
20602
20603
20603
20603
20604
20604
20604
20605
20605
20605
20606
20606
20606
20607
20607
20607
20608
20608
20608
20609
20609
20609
20610
20610
20610
20611
20611
20611
20612
20612
20612
20613
20613
20614
20614
20614
20614
20615
20615
20615
20616
20616
20616
20617
20617
20617
20618
20618
20618
20619
20619
20619
20620
20620
20620
20621
20621
20621
20622
20622
20622
20623
20623
20623
20624
20624
20624
20625
20625
20625
20626
20626
20626
20627
20627
20627
20628
20628
20628
20629
20629
20629
20630
20630
20630
20631
20631
20631
20632
20632
20632
20633
20633
20633
20634
20634
20634
20635
20635
20636
20636
20636
20636
20637
20637
20637
20638
20638
20638
20639
20639
20639
20640
20640
20640
20641
20641
20641
20642
20642
20642
20643
20643
20643
20644
20644
20644
20645
20645
20645
20646
20646
20646
20647
20647
20647
20648
20648
20648
20649
20649
20649
20650
20650
20650
20651
20651
20651
20652
20652
20652
20653
20653
20653
20654
20654
20654
20655
20655
20655
20656
20656
20656
20657
20657
20658
20658
20658
20659
20659
20660
20660
20661
20661
20662
20662
20663
20663
20664
20664
20665
20665
20666
20666
20667
20667
20668
20668
20669
20669
20670
20670
20671
20671
20672
20672
20673
20673
20674
20674
20675
20675
20676
20676
20677
20677
20678
20678
20679
20680
20680
20680
20680
20681
20681
20681
20682
20682
20682
20683
20683
20683
20684
20684
20684
20685
20685
20685
20686
20686
20686
20687
20687
20687
20688
20688
20688
20689
20689
20689
20690
20690
20690
20691
20691
20691
20692
20692
20692
20693
20693
20693
20694
20694
20694
20695
20695
20695
20696
20696
20696
20697
20697
20697
20698
20698
20698
20699
20699
20699
20700
20700
20700
20701
20701
20702
20702
20702
20702
20703
20703
20703
20704
20704
20704
20705
20705
20705
20706
20706
20706
20707
20707
20707
20708
20708
20708
20709
20709
20709
20710
20710
20710
20711
20711
20711
20712
20712
20712
20713
20713
20713
20714
20714
20714
20715
20715
20715
20716
20716
20716
20717
20717
20717
20718
20718
20718
20719
20719
20719
20720
20720
20720
20721
20721
20721
20722
20722
20722
20723
20723
20724
20724
20724
20724
20725
20725
20725
20726
20726
20726
20727
20727
20727
20728
20728
20728
20729
20729
20729
20730
20730
20730
20731
20731
20731
20732
20732
20732
20733
20733
20733
20734
20734
20734
20735
20735
20735
20736
20736
20736
20737
20737
20737
20738
20738
20738
20739
20739
20739
20740
20740
20740
20741
20741
20741
20742
20742
20742
20743
20743
20743
20744
20744
20744
20745
20745
20746
20746
20746
20746
20747
20747
20747
20748
20748
20748
20749
20749
20749
20750
20750
20750
20751
20751
20751
20752
20752
20752
20753
20753
20753
20754
20754
20754
20755
20755
20755
20756
20756
20756
20757
20757
20757
20758
20758
20758
20759
20759
20759
20760
20760
20760
20761
20761
20761
20762
20762
20762
20763
20763
20763
20764
20764
20764
20765
20765
20765
20766
20766
20766
20767
20767
20768
20768
20768
20768
20769
20769
20769
20770
20770
20770
20771
20771
20771
20772
20772
20772
20773
20773
20773
20774
20774
20774
20775
20775
20775
20776
20776
20776
20777
20777
20777
20778
20778
20778
20779
20779
20779
20780
20780
20780
20781
20781
20781
20782
20782
20782
20783
20783
20783
20784
20784
20784
20785
20785
20785
20786
20786
20786
20787
20787
20787
20788
20788
20788
20789
20789
20790
20790
20790
20790
20791
20791
20791
20792
20792
20792
20793
20793
20793
20794
20794
20794
20795
20795
20795
20796
20796
20796
20797
20797
20797
20798
20798
20798
20799
20799
20799
20800
20800
20800
20801
20801
20801
20802
20802
20802
20803
20803
20803
20804
20804
20804
20805
20805
20805
20806
20806
20806
20807
20807
20807
20808
20808
20808
20809
20809
20809
20810
20810
20810
20811
20811
20812
20812
20812
20812
20813
20813
20813
20814
20814
20814
20815
20815
20815
20816
20816
20816
20817
20817
20817
20818
20818
20818
20819
20819
20819
20820
20820
20820
20821
20821
20821
20822
20822
20822
20823
20823
20823
20824
20824
20824
20825
20825
20825
20826
20826
20826
20827
20827
20827
20828
20828
20828
20829
20829
20829
20830
20830
20830
20831
20831
20831
20832
20832
20832
20833
20833
20834
20834
20834
20834
20835
20835
20835
20836
20836
20836
20837
20837
20837
20838
20838
20838
20839
20839
20839
20840
20840
20840
20841
20841
20841
20842
20842
20842
20843
20843
20843
20844
20844
20844
20845
20845
20845
20846
20846
20846
20847
20847
20847
20848
20848
20848
20849
20849
20849
20850
20850
20850
20851
20851
20851
20852
20852
20852
20853
20853
20853
20854
20854
20854
20855
20855
20856
20856
20856
20856
20857
20857
20857
20858
20858
20858
20859
20859
20859
20860
20860
20860
20861
20861
20861
20862
20862
20862
20863
20863
20863
20864
20864
20864
20865
20865
20865
20866
20866
20866
20867
20867
20867
20868
20868
20868
20869
20869
20869
20870
20870
20870
20871
20871
20871
20872
20872
20872
20873
20873
20873
20874
20874
20874
20875
20875
20875
20876
20876
20876
20877
20877
20878
20878
20878
20879
20879
20880
20880
20881
20881
20882
20882
20883
20883
20884
20884
20885
20885
20886
20886
20887
20887
20888
20888
20889
20889
20890
20890
20891
20891
20892
20892
20893
20893
20894
20894
20895
20895
20896
20896
20897
20897
20898
20898
20899
20900
20900
20900
20900
20901
20901
20901
20902
20902
20902
20903
20903
20903
20904
20904
20904
20905
20905
20905
20906
20906
20906
20907
20907
20907
20908
20908
20908
20909
20909
20909
20910
20910
20910
20911
20911
20911
20912
20912
20912
20913
20913
20913
20914
20914
20914
20915
20915
20915
20916
20916
20916
20917
20917
20917
20918
20918
20918
20919
20919
20919
20920
20920
20920
20921
20921
20922
20922
20922
20922
20923
20923
20923
20924
20924
20924
20925
20925
20925
20926
20926
20926
20927
20927
20927
20928
20928
20928
20929
20929
20929
20930
20930
20930
20931
20931
20931
20932
20932
20932
20933
20933
20933
20934
20934
20934
20935
20935
20935
20936
20936
20936
20937
20937
20937
20938
20938
20938
20939
20939
20939
20940
20940
20940
20941
20941
20941
20942
20942
20942
20943
20943
20944
20944
20944
20944
20945
20945
20945
20946
20946
20946
20947
20947
20947
20948
20948
20948
20949
20949
20949
20950
20950
20950
20951
20951
20951
20952
20952
20952
20953
20953
20953
20954
20954
20954
20955
20955
20955
20956
20956
20956
20957
20957
20957
20958
20958
20958
20959
20959
20959
20960
20960
20960
20961
20961
20961
20962
20962
20962
20963
20963
20963
20964
20964
20964
20965
20965
20966
20966
20966
20966
20967
20967
20967
20968
20968
20968
20969
20969
20969
20970
20970
20970
20971
20971
20971
20972
20972
20972
20973
20973
20973
20974
20974
20974
20975
20975
20975
20976
20976
20976
20977
20977
20977
20978
20978
20978
20979
20979
20979
20980
20980
20980
20981
20981
20981
20982
20982
20982
20983
20983
20983
20984
20984
20984
20985
20985
20985
20986
20986
20986
20987
20987
20988
20988
20988
20988
20989
20989
20989
20990
20990
20990
20991
20991
20991
20992
20992
20992
20993
20993
20993
20994
20994
20994
20995
20995
20995
20996
20996
20996
20997
20997
20997
20998
20998
20998
20999
20999
20999
21000
21000
21000
21001
21001
21001
21002
21002
21002
21003
21003
21003
21004
21004
21004
21005
21005
21005
21006
21006
21006
21007
21007
21007
21008
21008
21008
21009
21009
21010
21010
21010
21010
21011
21011
21011
21012
21012
21012
21013
21013
21013
21014
21014
21014
21015
21015
21015
21016
21016
21016
21017
21017
21017
21018
21018
21018
21019
21019
21019
21020
21020
21020
21021
21021
21021
21022
21022
21022
21023
21023
21023
21024
21024
21024
21025
21025
21025
21026
21026
21026
21027
21027
21027
21028
21028
21028
21029
21029
21029
21030
21030
21030
21031
21031
21032
21032
21032
21032
21033
21033
21033
21034
21034
21034
21035
21035
21035
21036
21036
21036
21037
21037
21037
21038
21038
21038
21039
21039
21039
21040
21040
21040
21041
21041
21041
21042
21042
21042
21043
21043
21043
21044
21044
21044
21045
21045
21045
21046
21046
21046
21047
21047
21047
21048
21048
21048
21049
21049
21049
21050
21050
21050
21051
21051
21051
21052
21052
21052
21053
21053
21054
21054
21054
21054
21055
21055
21055
21056
21056
21056
21057
21057
21057
21058
21058
21058
21059
21059
21059
21060
21060
21060
21061
21061
21061
21062
21062
21062
21063
21063
21063
21064
21064
21064
21065
21065
21065
21066
21066
21066
21067
21067
21067
21068
21068
21068
21069
21069
21069
21070
21070
21070
21071
21071
21071
21072
21072
21072
21073
21073
21073
21074
21074
21074
21075
21075
21076
21076
21076
21076
21077
21077
21077
21078
21078
21078
21079
21079
21079
21080
21080
21080
21081
21081
21081
21082
21082
21082
21083
21083
21083
21084
21084
21084
21085
21085
21085
21086
21086
21086
21087
21087
21087
21088
21088
21088
21089
21089
21089
21090
21090
21090
21091
21091
21091
21092
21092
21092
21093
21093
21093
21094
21094
21094
21095
21095
21095
21096
21096
21096
21097
21097
21098
21098
21098
21099
21099
21100
21100
21101
21101
21102
21102
21103
21103
21104
21104
21105
21105
21106
21106
21107
21107
21108
21108
21109
21109
21110
21110
21111
21111
21112
21112
21113
21113
21114
21114
21115
21115
21116
21116
21117
21117
21118
21118
21119
21120
21120
21120
21120
21121
21121
21121
21122
21122
21122
21123
21123
21123
21124
21124
21124
21125
21125
21125
21126
21126
21126
21127
21127
21127
21128
21128
21128
21129
21129
21129
21130
21130
21130
21131
21131
21131
21132
21132
21132
21133
21133
21133
21134
21134
21134
21135
21135
21135
21136
21136
21136
21137
21137
21137
21138
21138
21138
21139
21139
21139
21140
21140
21140
21141
21141
21142
21142
21142
21142
21143
21143
21143
21144
21144
21144
21145
21145
21145
21146
21146
21146
21147
21147
21147
21148
21148
21148
21149
21149
21149
21150
21150
21150
21151
21151
21151
21152
21152
21152
21153
21153
21153
21154
21154
21154
21155
21155
21155
21156
21156
21156
21157
21157
21157
21158
21158
21158
21159
21159
21159
21160
21160
21160
21161
21161
21161
21162
21162
21162
21163
21163
21164
21164
21164
21164
21165
21165
21165
21166
21166
21166
21167
21167
21167
21168
21168
21168
21169
21169
21169
21170
21170
21170
21171
21171
21171
21172
21172
21172
21173
21173
21173
21174
21174
21174
21175
21175
21175
21176
21176
21176
21177
21177
21177
21178
21178
21178
21179
21179
21179
21180
21180
21180
21181
21181
21181
21182
21182
21182
21183
21183
21183
21184
21184
21184
21185
21185
21186
21186
21186
21186
21187
21187
21187
21188
21188
21188
21189
21189
21189
21190
21190
21190
21191
21191
21191
21192
21192
21192
21193
21193
21193
21194
21194
21194
21195
21195
21195
21196
21196
21196
21197
21197
21197
21198
21198
21198
21199
21199
21199
21200
21200
21200
21201
21201
21201
21202
21202
21202
21203
21203
21203
21204
21204
21204
21205
21205
21205
21206
21206
21206
21207
21207
21208
21208
21208
21208
21209
21209
21209
21210
21210
21210
21211
21211
21211
21212
21212
21212
21213
21213
21213
21214
21214
21214
21215
21215
21215
21216
21216
21216
21217
21217
21217
21218
21218
21218
21219
21219
21219
21220
21220
21220
21221
21221
21221
21222
21222
21222
21223
21223
21223
21224
21224
21224
21225
21225
21225
21226
21226
21226
21227
21227
21227
21228
21228
21228
21229
21229
21230
21230
21230
21230
21231
21231
21231
21232
21232
21232
21233
21233
21233
21234
21234
21234
21235
21235
21235
21236
21236
21236
21237
21237
21237
21238
21238
21238
21239
21239
21239
21240
21240
21240
21241
21241
21241
21242
21242
21242
21243
21243
21243
21244
21244
21244
21245
21245
21245
21246
21246
21246
21247
21247
21247
21248
21248
21248
21249
21249
21249
21250
21250
21250
21251
21251
21252
21252
21252
21252
21253
21253
21253
21254
21254
21254
21255
21255
21255
21256
21256
21256
21257
21257
21257
21258
21258
21258
21259
21259
21259
21260
21260
21260
21261
21261
21261
21262
21262
21262
21263
21263
21263
21264
21264
21264
21265
21265
21265
21266
21266
21266
21267
21267
21267
21268
21268
21268
21269
21269
21269
21270
21270
21270
21271
21271
21271
21272
21272
21272
21273
21273
21274
21274
21274
21274
21275
21275
21275
21276
21276
21276
21277
21277
21277
21278
21278
21278
21279
21279
21279
21280
21280
21280
21281
21281
21281
21282
21282
21282
21283
21283
21283
21284
21284
21284
21285
21285
21285
21286
21286
21286
21287
21287
21287
21288
21288
21288
21289
21289
21289
21290
21290
21290
21291
21291
21291
21292
21292
21292
21293
21293
21293
21294
21294
21294
21295
21295
21296
21296
21296
21296
21297
21297
21297
21298
21298
21298
21299
21299
21299
21300
21300
21300
21301
21301
21301
21302
21302
21302
21303
21303
21303
21304
21304
21304
21305
21305
21305
21306
21306
21306
21307
21307
21307
21308
21308
21308
21309
21309
21309
21310
21310
21310
21311
21311
21311
21312
21312
21312
21313
21313
21313
21314
21314
21314
21315
21315
21315
21316
21316
21316
21317
21317
21318
21318
21318
21319
21319
21320
21320
21321
21321
21322
21322
21323
21323
21324
21324
21325
21325
21326
21326
21327
21327
21328
21328
21329
21329
21330
21330
21331
21331
21332
21332
21333
21333
21334
21334
21335
21335
21336
21336
21337
21337
21338
21338
21339
21340
21340
21340
21340
21341
21341
21341
21342
21342
21342
21343
21343
21343
21344
21344
21344
21345
21345
21345
21346
21346
21346
21347
21347
21347
21348
21348
21348
21349
21349
21349
21350
21350
21350
21351
21351
21351
21352
21352
21352
21353
21353
21353
21354
21354
21354
21355
21355
21355
21356
21356
21356
21357
21357
21357
21358
21358
21358
21359
21359
21359
21360
21360
21360
21361
21361
21362
21362
21362
21362
21363
21363
21363
21364
21364
21364
21365
21365
21365
21366
21366
21366
21367
21367
21367
21368
21368
21368
21369
21369
21369
21370
21370
21370
21371
21371
21371
21372
21372
21372
21373
21373
21373
21374
21374
21374
21375
21375
21375
21376
21376
21376
21377
21377
21377
21378
21378
21378
21379
21379
21379
21380
21380
21380
21381
21381
21381
21382
21382
21382
21383
21383
21384
21384
21384
21384
21385
21385
21385
21386
21386
21386
21387
21387
21387
21388
21388
21388
21389
21389
21389
21390
21390
21390
21391
21391
21391
21392
21392
21392
21393
21393
21393
21394
21394
21394
21395
21395
21395
21396
21396
21396
21397
21397
21397
21398
21398
21398
21399
21399
21399
21400
21400
21400
21401
21401
21401
21402
21402
21402
21403
21403
21403
21404
21404
21404
21405
21405
21406
21406
21406
21406
21407
21407
21407
21408
21408
21408
21409
21409
21409
21410
21410
21410
21411
21411
21411
21412
21412
21412
21413
21413
21413
21414
21414
21414
21415
21415
21415
21416
21416
21416
21417
21417
21417
21418
21418
21418
21419
21419
21419
21420
21420
21420
21421
21421
21421
21422
21422
21422
21423
21423
21423
21424
21424
21424
21425
21425
21425
21426
21426
21426
21427
21427
21428
21428
21428
21428
21429
21429
21429
21430
21430
21430
21431
21431
21431
21432
21432
21432
21433
21433
21433
21434
21434
21434
21435
21435
21435
21436
21436
21436
21437
21437
21437
21438
21438
21438
21439
21439
21439
21440
21440
21440
21441
21441
21441
21442
21442
21442
21443
21443
21443
21444
21444
21444
21445
21445
21445
21446
21446
21446
21447
21447
21447
21448
21448
21448
21449
21449
21450
21450
21450
21450
21451
21451
21451
21452
21452
21452
21453
21453
21453
21454
21454
21454
21455
21455
21455
21456
21456
21456
21457
21457
21457
21458
21458
21458
21459
21459
21459
21460
21460
21460
21461
21461
21461
21462
21462
21462
21463
21463
21463
21464
21464
21464
21465
21465
21465
21466
21466
21466
21467
21467
21467
21468
21468
21468
21469
21469
21469
21470
21470
21470
21471
21471
21472
21472
21472
21472
21473
21473
21473
21474
21474
21474
21475
21475
21475
21476
21476
21476
21477
21477
21477
21478
21478
21478
21479
21479
21479
21480
21480
21480
21481
21481
21481
21482
21482
21482
21483
21483
21483
21484
21484
21484
21485
21485
21485
21486
21486
21486
21487
21487
21487
21488
21488
21488
21489
21489
21489
21490
21490
21490
21491
21491
21491
21492
21492
21492
21493
21493
21494
21494
21494
21494
21495
21495
21495
21496
21496
21496
21497
21497
21497
21498
21498
21498
21499
21499
21499
21500
21500
21500
21501
21501
21501
21502
21502
21502
21503
21503
21503
21504
21504
21504
21505
21505
21505
21506
21506
21506
21507
21507
21507
21508
21508
21508
21509
21509
21509
21510
21510
21510
21511
21511
21511
21512
21512
21512
21513
21513
21513
21514
21514
21514
21515
21515
21516
21516
21516
21516
21517
21517
21517
21518
21518
21518
21519
21519
21519
21520
21520
21520
21521
21521
21521
21522
21522
21522
21523
21523
21523
21524
21524
21524
21525
21525
21525
21526
21526
21526
21527
21527
21527
21528
21528
21528
21529
21529
21529
21530
21530
21530
21531
21531
21531
21532
21532
21532
21533
21533
21533
21534
21534
21534
21535
21535
21535
21536
21536
21536
21537
21537
21538
21538
21538
21539
21539
21540
21540
21541
21541
21542
21542
21543
21543
21544
21544
21545
21545
21546
21546
21547
21547
21548
21548
21549
21549
21550
21550
21551
21551
21552
21552
21553
21553
21554
21554
21555
21555
21556
21556
21557
21557
21558
21558
21559
21560
21560
21560
21560
21561
21561
21561
21562
21562
21562
21563
21563
21563
21564
21564
21564
21565
21565
21565
21566
21566
21566
21567
21567
21567
21568
21568
21568
21569
21569
21569
21570
21570
21570
21571
21571
21571
21572
21572
21572
21573
21573
21573
21574
21574
21574
21575
21575
21575
21576
21576
21576
21577
21577
21577
21578
21578
21578
21579
21579
21579
21580
21580
21580
21581
21581
21582
21582
21582
21582
21583
21583
21583
21584
21584
21584
21585
21585
21585
21586
21586
21586
21587
21587
21587
21588
21588
21588
21589
21589
21589
21590
21590
21590
21591
21591
21591
21592
21592
21592
21593
21593
21593
21594
21594
21594
21595
21595
21595
21596
21596
21596
21597
21597
21597
21598
21598
21598
21599
21599
21599
21600
21600
21600
21601
21601
21601
21602
21602
21602
21603
21603
21604
21604
21604
21604
21605
21605
21605
21606
21606
21606
21607
21607
21607
21608
21608
21608
21609
21609
21609
21610
21610
21610
21611
21611
21611
21612
21612
21612
21613
21613
21613
21614
21614
21614
21615
21615
21615
21616
21616
21616
21617
21617
21617
21618
21618
21618
21619
21619
21619
21620
21620
21620
21621
21621
21621
21622
21622
21622
21623
21623
21623
21624
21624
21624
21625
21625
21626
21626
21626
21626
21627
21627
21627
21628
21628
21628
21629
21629
21629
21630
21630
21630
21631
21631
21631
21632
21632
21632
21633
21633
21633
21634
21634
21634
21635
21635
21635
21636
21636
21636
21637
21637
21637
21638
21638
21638
21639
21639
21639
21640
21640
21640
21641
21641
21641
21642
21642
21642
21643
21643
21643
21644
21644
21644
21645
21645
21645
21646
21646
21646
21647
21647
21648
21648
21648
21648
21649
21649
21649
21650
21650
21650
21651
21651
21651
21652
21652
21652
21653
21653
21653
21654
21654
21654
21655
21655
21655
21656
21656
21656
21657
21657
21657
21658
21658
21658
21659
21659
21659
21660
21660
21660
21661
21661
21661
21662
21662
21662
21663
21663
21663
21664
21664
21664
21665
21665
21665
21666
21666
21666
21667
21667
21667
21668
21668
21668
21669
21669
21670
21670
21670
21670
21671
21671
21671
21672
21672
21672
21673
21673
21673
21674
21674
21674
21675
21675
21675
21676
21676
21676
21677
21677
21677
21678
21678
21678
21679
21679
21679
21680
21680
21680
21681
21681
21681
21682
21682
21682
21683
21683
21683
21684
21684
21684
21685
21685
21685
21686
21686
21686
21687
21687
21687
21688
21688
21688
21689
21689
21689
21690
21690
21690
21691
21691
21692
21692
21692
21692
21693
21693
21693
21694
21694
21694
21695
21695
21695
21696
21696
21696
21697
21697
21697
21698
21698
21698
21699
21699
21699
21700
21700
21700
21701
21701
21701
21702
21702
21702
21703
21703
21703
21704
21704
21704
21705
21705
21705
21706
21706
21706
21707
21707
21707
21708
21708
21708
21709
21709
21709
21710
21710
21710
21711
21711
21711
21712
21712
21712
21713
21713
21714
21714
21714
21714
21715
21715
21715
21716
21716
21716
21717
21717
21717
21718
21718
21718
21719
21719
21719
21720
21720
21720
21721
21721
21721
21722
21722
21722
21723
21723
21723
21724
21724
21724
21725
21725
21725
21726
21726
21726
21727
21727
21727
21728
21728
21728
21729
21729
21729
21730
21730
21730
21731
21731
21731
21732
21732
21732
21733
21733
21733
21734
21734
21734
21735
21735
21736
21736
21736
21736
21737
21737
21737
21738
21738
21738
21739
21739
21739
21740
21740
21740
21741
21741
21741
21742
21742
21742
21743
21743
21743
21744
21744
21744
21745
21745
21745
21746
21746
21746
21747
21747
21747
21748
21748
21748
21749
21749
21749
21750
21750
21750
21751
21751
21751
21752
21752
21752
21753
21753
21753
21754
21754
21754
21755
21755
21755
21756
21756
21756
21757
21757
21758
21758
21758
21759
21759
21760
21760
21761
21761
21762
21762
21763
21763
21764
21764
21765
21765
21766
21766
21767
21767
21768
21768
21769
21769
21770
21770
21771
21771
21772
21772
21773
21773
21774
21774
21775
21775
21776
21776
21777
21777
21778
21778
21779
21780
21780
21780
21780
21781
21781
21781
21782
21782
21782
21783
21783
21783
21784
21784
21784
21785
21785
21785
21786
21786
21786
21787
21787
21787
21788
21788
21788
21789
21789
21789
21790
21790
21790
21791
21791
21791
21792
21792
21792
21793
21793
21793
21794
21794
21794
21795
21795
21795
21796
21796
21796
21797
21797
21797
21798
21798
21798
21799
21799
21799
21800
21800
21800
21801
21801
21802
21802
21802
21802
21803
21803
21803
21804
21804
21804
21805
21805
21805
21806
21806
21806
21807
21807
21807
21808
21808
21808
21809
21809
21809
21810
21810
21810
21811
21811
21811
21812
21812
21812
21813
21813
21813
21814
21814
21814
21815
21815
21815
21816
21816
21816
21817
21817
21817
21818
21818
21818
21819
21819
21819
21820
21820
21820
21821
21821
21821
21822
21822
21822
21823
21823
21824
21824
21824
21824
21825
21825
21825
21826
21826
21826
21827
21827
21827
21828
21828
21828
21829
21829
21829
21830
21830
21830
21831
21831
21831
21832
21832
21832
21833
21833
21833
21834
21834
21834
21835
21835
21835
21836
21836
21836
21837
21837
21837
21838
21838
21838
21839
21839
21839
21840
21840
21840
21841
21841
21841
21842
21842
21842
21843
21843
21843
21844
21844
21844
21845
21845
21846
21846
21846
21846
21847
21847
21847
21848
21848
21848
21849
21849
21849
21850
21850
21850
21851
21851
21851
21852
21852
21852
21853
21853
21853
21854
21854
21854
21855
21855
21855
21856
21856
21856
21857
21857
21857
21858
21858
21858
21859
21859
21859
21860
21860
21860
21861
21861
21861
21862
21862
21862
21863
21863
21863
21864
21864
21864
21865
21865
21865
21866
21866
21866
21867
21867
21868
21868
21868
21868
21869
21869
21869
21870
21870
21870
21871
21871
21871
21872
21872
21872
21873
21873
21873
21874
21874
21874
21875
21875
21875
21876
21876
21876
21877
21877
21877
21878
21878
21878
21879
21879
21879
21880
21880
21880
21881
21881
21881
21882
21882
21882
21883
21883
21883
21884
21884
21884
21885
21885
21885
21886
21886
21886
21887
21887
21887
21888
21888
21888
21889
21889
21890
21890
21890
21890
21891
21891
21891
21892
21892
21892
21893
21893
21893
21894
21894
21894
21895
21895
21895
21896
21896
21896
21897
21897
21897
21898
21898
21898
21899
21899
21899
21900
21900
21900
21901
21901
21901
21902
21902
21902
21903
21903
21903
21904
21904
21904
21905
21905
21905
21906
21906
21906
21907
21907
21907
21908
21908
21908
21909
21909
21909
21910
21910
21910
21911
21911
21912
21912
21912
21912
21913
21913
21913
21914
21914
21914
21915
21915
21915
21916
21916
21916
21917
21917
21917
21918
21918
21918
21919
21919
21919
21920
21920
21920
21921
21921
21921
21922
21922
21922
21923
21923
21923
21924
21924
21924
21925
21925
21925
21926
21926
21926
21927
21927
21927
21928
21928
21928
21929
21929
21929
21930
21930
21930
21931
21931
21931
21932
21932
21932
21933
21933
21934
21934
21934
21934
21935
21935
21935
21936
21936
21936
21937
21937
21937
21938
21938
21938
21939
21939
21939
21940
21940
21940
21941
21941
21941
21942
21942
21942
21943
21943
21943
21944
21944
21944
21945
21945
21945
21946
21946
21946
21947
21947
21947
21948
21948
21948
21949
21949
21949
21950
21950
21950
21951
21951
21951
21952
21952
21952
21953
21953
21953
21954
21954
21954
21955
21955
21956
21956
21956
21956
21957
21957
21957
21958
21958
21958
21959
21959
21959
21960
21960
21960
21961
21961
21961
21962
21962
21962
21963
21963
21963
21964
21964
21964
21965
21965
21965
21966
21966
21966
21967
21967
21967
21968
21968
21968
21969
21969
21969
21970
21970
21970
21971
21971
21971
21972
21972
21972
21973
21973
21973
21974
21974
21974
21975
21975
21975
21976
21976
21976
21977
21977
21978
21978
21978
21979
21979
21980
21980
21981
21981
21982
21982
21983
21983
21984
21984
21985
21985
21986
21986
21987
21987
21988
21988
21989
21989
21990
21990
21991
21991
21992
21992
21993
21993
21994
21994
21995
21995
21996
21996
21997
21997
21998
21998
21999
22000
22000
22000
22000
22001
22001
22001
22002
22002
22002
22003
22003
22003
22004
22004
22004
22005
22005
22005
22006
22006
22006
22007
22007
22007
22008
22008
22008
22009
22009
22009
22010
22010
22010
22011
22011
22011
22012
22012
22012
22013
22013
22013
22014
22014
22014
22015
22015
22015
22016
22016
22016
22017
22017
22017
22018
22018
22018
22019
22019
22019
22020
22020
22020
22021
22021
22022
22022
22022
22022
22023
22023
22023
22024
22024
22024
22025
22025
22025
22026
22026
22026
22027
22027
22027
22028
22028
22028
22029
22029
22029
22030
22030
22030
22031
22031
22031
22032
22032
22032
22033
22033
22033
22034
22034
22034
22035
22035
22035
22036
22036
22036
22037
22037
22037
22038
22038
22038
22039
22039
22039
22040
22040
22040
22041
22041
22041
22042
22042
22042
22043
22043
22044
22044
22044
22044
22045
22045
22045
22046
22046
22046
22047
22047
22047
22048
22048
22048
22049
22049
22049
22050
22050
22050
22051
22051
22051
22052
22052
22052
22053
22053
22053
22054
22054
22054
22055
22055
22055
22056
22056
22056
22057
22057
22057
22058
22058
22058
22059
22059
22059
22060
22060
22060
22061
22061
22061
22062
22062
22062
22063
22063
22063
22064
22064
22064
22065
22065
22066
22066
22066
22066
22067
22067
22067
22068
22068
22068
22069
22069
22069
22070
22070
22070
22071
22071
22071
22072
22072
22072
22073
22073
22073
22074
22074
22074
22075
22075
22075
22076
22076
22076
22077
22077
22077
22078
22078
22078
22079
22079
22079
22080
22080
22080
22081
22081
22081
22082
22082
22082
22083
22083
22083
22084
22084
22084
22085
22085
22085
22086
22086
22086
22087
22087
22088
22088
22088
22088
22089
22089
22089
22090
22090
22090
22091
22091
22091
22092
22092
22092
22093
22093
22093
22094
22094
22094
22095
22095
22095
22096
22096
22096
22097
22097
22097
22098
22098
22098
22099
22099
22099
22100
22100
22100
22101
22101
22101
22102
22102
22102
22103
22103
22103
22104
22104
22104
22105
22105
22105
22106
22106
22106
22107
22107
22107
22108
22108
22108
22109
22109
22110
22110
22110
22110
22111
22111
22111
22112
22112
22112
22113
22113
22113
22114
22114
22114
22115
22115
22115
22116
22116
22116
22117
22117
22117
22118
22118
22118
22119
22119
22119
22120
22120
22120
22121
22121
22121
22122
22122
22122
22123
22123
22123
22124
22124
22124
22125
22125
22125
22126
22126
22126
22127
22127
22127
22128
22128
22128
22129
22129
22129
22130
22130
22130
22131
22131
22132
22132
22132
22132
22133
22133
22133
22134
22134
22134
22135
22135
22135
22136
22136
22136
22137
22137
22137
22138
22138
22138
22139
22139
22139
22140
22140
22140
22141
22141
22141
22142
22142
22142
22143
22143
22143
22144
22144
22144
22145
22145
22145
22146
22146
22146
22147
22147
22147
22148
22148
22148
22149
22149
22149
22150
22150
22150
22151
22151
22151
22152
22152
22152
22153
22153
22154
22154
22154
22154
22155
22155
22155
22156
22156
22156
22157
22157
22157
22158
22158
22158
22159
22159
22159
22160
22160
22160
22161
22161
22161
22162
22162
22162
22163
22163
22163
22164
22164
22164
22165
22165
22165
22166
22166
22166
22167
22167
22167
22168
22168
22168
22169
22169
22169
22170
22170
22170
22171
22171
22171
22172
22172
22172
22173
22173
22173
22174
22174
22174
22175
22175
22176
22176
22176
22176
22177
22177
22177
22178
22178
22178
22179
22179
22179
22180
22180
22180
22181
22181
22181
22182
22182
22182
22183
22183
22183
22184
22184
22184
22185
22185
22185
22186
22186
22186
22187
22187
22187
22188
22188
22188
22189
22189
22189
22190
22190
22190
22191
22191
22191
22192
22192
22192
22193
22193
22193
22194
22194
22194
22195
22195
22195
22196
22196
22196
22197
22197
22198
22198
22198
22199
22199
22200
22200
22201
22201
22202
22202
22203
22203
22204
22204
22205
22205
22206
22206
22207
22207
22208
22208
22209
22209
22210
22210
22211
22211
22212
22212
22213
22213
22214
22214
22215
22215
22216
22216
22217
22217
22218
22218
22219
22220
22220
22220
22220
22221
22221
22221
22222
22222
22222
22223
22223
22223
22224
22224
22224
22225
22225
22225
22226
22226
22226
22227
22227
22227
22228
22228
22228
22229
22229
22229
22230
22230
22230
22231
22231
22231
22232
22232
22232
22233
22233
22233
22234
22234
22234
22235
22235
22235
22236
22236
22236
22237
22237
22237
22238
22238
22238
22239
22239
22239
22240
22240
22240
22241
22241
22242
22242
22242
22242
22243
22243
22243
22244
22244
22244
22245
22245
22245
22246
22246
22246
22247
22247
22247
22248
22248
22248
22249
22249
22249
22250
22250
22250
22251
22251
22251
22252
22252
22252
22253
22253
22253
22254
22254
22254
22255
22255
22255
22256
22256
22256
22257
22257
22257
22258
22258
22258
22259
22259
22259
22260
22260
22260
22261
22261
22261
22262
22262
22262
22263
22263
22264
22264
22264
22264
22265
22265
22265
22266
22266
22266
22267
22267
22267
22268
22268
22268
22269
22269
22269
22270
22270
22270
22271
22271
22271
22272
22272
22272
22273
22273
22273
22274
22274
22274
22275
22275
22275
22276
22276
22276
22277
22277
22277
22278
22278
22278
22279
22279
22279
22280
22280
22280
22281
22281
22281
22282
22282
22282
22283
22283
22283
22284
22284
22284
22285
22285
22286
22286
22286
22286
22287
22287
22287
22288
22288
22288
22289
22289
22289
22290
22290
22290
22291
22291
22291
22292
22292
22292
22293
22293
22293
22294
22294
22294
22295
22295
22295
22296
22296
22296
22297
22297
22297
22298
22298
22298
22299
22299
22299
22300
22300
22300
22301
22301
22301
22302
22302
22302
22303
22303
22303
22304
22304
22304
22305
22305
22305
22306
22306
22306
22307
22307
22308
22308
22308
22308
22309
22309
22309
22310
22310
22310
22311
22311
22311
22312
22312
22312
22313
22313
22313
22314
22314
22314
22315
22315
22315
22316
22316
22316
22317
22317
22317
22318
22318
22318
22319
22319
22319
22320
22320
22320
22321
22321
22321
22322
22322
22322
22323
22323
22323
22324
22324
22324
22325
22325
22325
22326
22326
22326
22327
22327
22327
22328
22328
22328
22329
22329
22330
22330
22330
22330
22331
22331
22331
22332
22332
22332
22333
22333
22333
22334
22334
22334
22335
22335
22335
22336
22336
22336
22337
22337
22337
22338
22338
22338
22339
22339
22339
22340
22340
22340
22341
22341
22341
22342
22342
22342
22343
22343
22343
22344
22344
22344
22345
22345
22345
22346
22346
22346
22347
22347
22347
22348
22348
22348
22349
22349
22349
22350
22350
22350
22351
22351
22352
22352
22352
22352
22353
22353
22353
22354
22354
22354
22355
22355
22355
22356
22356
22356
22357
22357
22357
22358
22358
22358
22359
22359
22359
22360
22360
22360
22361
22361
22361
22362
22362
22362
22363
22363
22363
22364
22364
22364
22365
22365
22365
22366
22366
22366
22367
22367
22367
22368
22368
22368
22369
22369
22369
22370
22370
22370
22371
22371
22371
22372
22372
22372
22373
22373
22374
22374
22374
22374
22375
22375
22375
22376
22376
22376
22377
22377
22377
22378
22378
22378
22379
22379
22379
22380
22380
22380
22381
22381
22381
22382
22382
22382
22383
22383
22383
22384
22384
22384
22385
22385
22385
22386
22386
22386
22387
22387
22387
22388
22388
22388
22389
22389
22389
22390
22390
22390
22391
22391
22391
22392
22392
22392
22393
22393
22393
22394
22394
22394
22395
22395
22396
22396
22396
22396
22397
22397
22397
22398
22398
22398
22399
22399
22399
22400
22400
22400
22401
22401
22401
22402
22402
22402
22403
22403
22403
22404
22404
22404
22405
22405
22405
22406
22406
22406
22407
22407
22407
22408
22408
22408
22409
22409
22409
22410
22410
22410
22411
22411
22411
22412
22412
22412
22413
22413
22413
22414
22414
22414
22415
22415
22415
22416
22416
22416
22417
22417
22418
22418
22418
22419
22419
22420
22420
22421
22421
22422
22422
22423
22423
22424
22424
22425
22425
22426
22426
22427
22427
22428
22428
22429
22429
22430
22430
22431
22431
22432
22432
22433
22433
22434
22434
22435
22435
22436
22436
22437
22437
22438
22438
22439
22440
22440
22440
22440
22441
22441
22441
22442
22442
22442
22443
22443
22443
22444
22444
22444
22445
22445
22445
22446
22446
22446
22447
22447
22447
22448
22448
22448
22449
22449
22449
22450
22450
22450
22451
22451
22451
22452
22452
22452
22453
22453
22453
22454
22454
22454
22455
22455
22455
22456
22456
22456
22457
22457
22457
22458
22458
22458
22459
22459
22459
22460
22460
22460
22461
22461
22462
22462
22462
22462
22463
22463
22463
22464
22464
22464
22465
22465
22465
22466
22466
22466
22467
22467
22467
22468
22468
22468
22469
22469
22469
22470
22470
22470
22471
22471
22471
22472
22472
22472
22473
22473
22473
22474
22474
22474
22475
22475
22475
22476
22476
22476
22477
22477
22477
22478
22478
22478
22479
22479
22479
22480
22480
22480
22481
22481
22481
22482
22482
22482
22483
22483
22484
22484
22484
22484
22485
22485
22485
22486
22486
22486
22487
22487
22487
22488
22488
22488
22489
22489
22489
22490
22490
22490
22491
22491
22491
22492
22492
22492
22493
22493
22493
22494
22494
22494
22495
22495
22495
22496
22496
22496
22497
22497
22497
22498
22498
22498
22499
22499
22499
22500
22500
22500
22501
22501
22501
22502
22502
22502
22503
22503
22503
22504
22504
22504
22505
22505
22506
22506
22506
22506
22507
22507
22507
22508
22508
22508
22509
22509
22509
22510
22510
22510
22511
22511
22511
22512
22512
22512
22513
22513
22513
22514
22514
22514
22515
22515
22515
22516
22516
22516
22517
22517
22517
22518
22518
22518
22519
22519
22519
22520
22520
22520
22521
22521
22521
22522
22522
22522
22523
22523
22523
22524
22524
22524
22525
22525
22525
22526
22526
22526
22527
22527
22528
22528
22528
22528
22529
22529
22529
22530
22530
22530
22531
22531
22531
22532
22532
22532
22533
22533
22533
22534
22534
22534
22535
22535
22535
22536
22536
22536
22537
22537
22537
22538
22538
22538
22539
22539
22539
22540
22540
22540
22541
22541
22541
22542
22542
22542
22543
22543
22543
22544
22544
22544
22545
22545
22545
22546
22546
22546
22547
22547
22547
22548
22548
22548
22549
22549
22550
22550
22550
22550
22551
22551
22551
22552
22552
22552
22553
22553
22553
22554
22554
22554
22555
22555
22555
22556
22556
22556
22557
22557
22557
22558
22558
22558
22559
22559
22559
22560
22560
22560
22561
22561
22561
22562
22562
22562
22563
22563
22563
22564
22564
22564
22565
22565
22565
22566
22566
22566
22567
22567
22567
22568
22568
22568
22569
22569
22569
22570
22570
22570
22571
22571
22572
22572
22572
22572
22573
22573
22573
22574
22574
22574
22575
22575
22575
22576
22576
22576
22577
22577
22577
22578
22578
22578
22579
22579
22579
22580
22580
22580
22581
22581
22581
22582
22582
22582
22583
22583
22583
22584
22584
22584
22585
22585
22585
22586
22586
22586
22587
22587
22587
22588
22588
22588
22589
22589
22589
22590
22590
22590
22591
22591
22591
22592
22592
22592
22593
22593
22594
22594
22594
22594
22595
22595
22595
22596
22596
22596
22597
22597
22597
22598
22598
22598
22599
22599
22599
22600
22600
22600
22601
22601
22601
22602
22602
22602
22603
22603
22603
22604
22604
22604
22605
22605
22605
22606
22606
22606
22607
22607
22607
22608
22608
22608
22609
22609
22609
22610
22610
22610
22611
22611
22611
22612
22612
22612
22613
22613
22613
22614
22614
22614
22615
22615
22616
22616
22616
22616
22617
22617
22617
22618
22618
22618
22619
22619
22619
22620
22620
22620
22621
22621
22621
22622
22622
22622
22623
22623
22623
22624
22624
22624
22625
22625
22625
22626
22626
22626
22627
22627
22627
22628
22628
22628
22629
22629
22629
22630
22630
22630
22631
22631
22631
22632
22632
22632
22633
22633
22633
22634
22634
22634
22635
22635
22635
22636
22636
22636
22637
22637
22638
22638
22638
22639
22639
22640
22640
22641
22641
22642
22642
22643
22643
22644
22644
22645
22645
22646
22646
22647
22647
22648
22648
22649
22649
22650
22650
22651
22651
22652
22652
22653
22653
22654
22654
22655
22655
22656
22656
22657
22657
22658
22658
22659
22660
22660
22660
22660
22661
22661
22661
22662
22662
22662
22663
22663
22663
22664
22664
22664
22665
22665
22665
22666
22666
22666
22667
22667
22667
22668
22668
22668
22669
22669
22669
22670
22670
22670
22671
22671
22671
22672
22672
22672
22673
22673
22673
22674
22674
22674
22675
22675
22675
22676
22676
22676
22677
22677
22677
22678
22678
22678
22679
22679
22679
22680
22680
22680
22681
22681
22682
22682
22682
22682
22683
22683
22683
22684
22684
22684
22685
22685
22685
22686
22686
22686
22687
22687
22687
22688
22688
22688
22689
22689
22689
22690
22690
22690
22691
22691
22691
22692
22692
22692
22693
22693
22693
22694
22694
22694
22695
22695
22695
22696
22696
22696
22697
22697
22697
22698
22698
22698
22699
22699
22699
22700
22700
22700
22701
22701
22701
22702
22702
22702
22703
22703
22704
22704
22704
22704
22705
22705
22705
22706
22706
22706
22707
22707
22707
22708
22708
22708
22709
22709
22709
22710
22710
22710
22711
22711
22711
22712
22712
22712
22713
22713
22713
22714
22714
22714
22715
22715
22715
22716
22716
22716
22717
22717
22717
22718
22718
22718
22719
22719
22719
22720
22720
22720
22721
22721
22721
22722
22722
22722
22723
22723
22723
22724
22724
22724
22725
22725
22726
22726
22726
22726
22727
22727
22727
22728
22728
22728
22729
22729
22729
22730
22730
22730
22731
22731
22731
22732
22732
22732
22733
22733
22733
22734
22734
22734
22735
22735
22735
22736
22736
22736
22737
22737
22737
22738
22738
22738
22739
22739
22739
22740
22740
22740
22741
22741
22741
22742
22742
22742
22743
22743
22743
22744
22744
22744
22745
22745
22745
22746
22746
22746
22747
22747
22748
22748
22748
22748
22749
22749
22749
22750
22750
22750
22751
22751
22751
22752
22752
22752
22753
22753
22753
22754
22754
22754
22755
22755
22755
22756
22756
22756
22757
22757
22757
22758
22758
22758
22759
22759
22759
22760
22760
22760
22761
22761
22761
22762
22762
22762
22763
22763
22763
22764
22764
22764
22765
22765
22765
22766
22766
22766
22767
22767
22767
22768
22768
22768
22769
22769
22770
22770
22770
22770
22771
22771
22771
22772
22772
22772
22773
22773
22773
22774
22774
22774
22775
22775
22775
22776
22776
22776
22777
22777
22777
22778
22778
22778
22779
22779
22779
22780
22780
22780
22781
22781
22781
22782
22782
22782
22783
22783
22783
22784
22784
22784
22785
22785
22785
22786
22786
22786
22787
22787
22787
22788
22788
22788
22789
22789
22789
22790
22790
22790
22791
22791
22792
22792
22792
22792
22793
22793
22793
22794
22794
22794
22795
22795
22795
22796
22796
22796
22797
22797
22797
22798
22798
22798
22799
22799
22799
22800
22800
22800
22801
22801
22801
22802
22802
22802
22803
22803
22803
22804
22804
22804
22805
22805
22805
22806
22806
22806
22807
22807
22807
22808
22808
22808
22809
22809
22809
22810
22810
22810
22811
22811
22811
22812
22812
22812
22813
22813
22814
22814
22814
22814
22815
22815
22815
22816
22816
22816
22817
22817
22817
22818
22818
22818
22819
22819
22819
22820
22820
22820
22821
22821
22821
22822
22822
22822
22823
22823
22823
22824
22824
22824
22825
22825
22825
22826
22826
22826
22827
22827
22827
22828
22828
22828
22829
22829
22829
22830
22830
22830
22831
22831
22831
22832
22832
22832
22833
22833
22833
22834
22834
22834
22835
22835
22836
22836
22836
22836
22837
22837
22837
22838
22838
22838
22839
22839
22839
22840
22840
22840
22841
22841
22841
22842
22842
22842
22843
22843
22843
22844
22844
22844
22845
22845
22845
22846
22846
22846
22847
22847
22847
22848
22848
22848
22849
22849
22849
22850
22850
22850
22851
22851
22851
22852
22852
22852
22853
22853
22853
22854
22854
22854
22855
22855
22855
22856
22856
22856
22857
22857
22858
22858
22858
22859
22859
22860
22860
22861
22861
22862
22862
22863
22863
22864
22864
22865
22865
22866
22866
22867
22867
22868
22868
22869
22869
22870
22870
22871
22871
22872
22872
22873
22873
22874
22874
22875
22875
22876
22876
22877
22877
22878
22878
22879
22880
22880
22880
22880
22881
22881
22881
22882
22882
22882
22883
22883
22883
22884
22884
22884
22885
22885
22885
22886
22886
22886
22887
22887
22887
22888
22888
22888
22889
22889
22889
22890
22890
22890
22891
22891
22891
22892
22892
22892
22893
22893
22893
22894
22894
22894
22895
22895
22895
22896
22896
22896
22897
22897
22897
22898
22898
22898
22899
22899
22899
22900
22900
22900
22901
22901
22902
22902
22902
22902
22903
22903
22903
22904
22904
22904
22905
22905
22905
22906
22906
22906
22907
22907
22907
22908
22908
22908
22909
22909
22909
22910
22910
22910
22911
22911
22911
22912
22912
22912
22913
22913
22913
22914
22914
22914
22915
22915
22915
22916
22916
22916
22917
22917
22917
22918
22918
22918
22919
22919
22919
22920
22920
22920
22921
22921
22921
22922
22922
22922
22923
22923
22924
22924
22924
22924
22925
22925
22925
22926
22926
22926
22927
22927
22927
22928
22928
22928
22929
22929
22929
22930
22930
22930
22931
22931
22931
22932
22932
22932
22933
22933
22933
22934
22934
22934
22935
22935
22935
22936
22936
22936
22937
22937
22937
22938
22938
22938
22939
22939
22939
22940
22940
22940
22941
22941
22941
22942
22942
22942
22943
22943
22943
22944
22944
22944
22945
22945
22946
22946
22946
22946
22947
22947
22947
22948
22948
22948
22949
22949
22949
22950
22950
22950
22951
22951
22951
22952
22952
22952
22953
22953
22953
22954
22954
22954
22955
22955
22955
22956
22956
22956
22957
22957
22957
22958
22958
22958
22959
22959
22959
22960
22960
22960
22961
22961
22961
22962
22962
22962
22963
22963
22963
22964
22964
22964
22965
22965
22965
22966
22966
22966
22967
22967
22968
22968
22968
22968
22969
22969
22969
22970
22970
22970
22971
22971
22971
22972
22972
22972
22973
22973
22973
22974
22974
22974
22975
22975
22975
22976
22976
22976
22977
22977
22977
22978
22978
22978
22979
22979
22979
22980
22980
22980
22981
22981
22981
22982
22982
22982
22983
22983
22983
22984
22984
22984
22985
22985
22985
22986
22986
22986
22987
22987
22987
22988
22988
22988
22989
22989
22990
22990
22990
22990
22991
22991
22991
22992
22992
22992
22993
22993
22993
22994
22994
22994
22995
22995
22995
22996
22996
22996
22997
22997
22997
22998
22998
22998
22999
22999
22999
23000
23000
23000
23001
23001
23001
23002
23002
23002
23003
23003
23003
23004
23004
23004
23005
23005
23005
23006
23006
23006
23007
23007
23007
23008
23008
23008
23009
23009
23009
23010
23010
23010
23011
23011
23012
23012
23012
23012
23013
23013
23013
23014
23014
23014
23015
23015
23015
23016
23016
23016
23017
23017
23017
23018
23018
23018
23019
23019
23019
23020
23020
23020
23021
23021
23021
23022
23022
23022
23023
23023
23023
23024
23024
23024
23025
23025
23025
23026
23026
23026
23027
23027
23027
23028
23028
23028
23029
23029
23029
23030
23030
23030
23031
23031
23031
23032
23032
23032
23033
23033
23034
23034
23034
23034
23035
23035
23035
23036
23036
23036
23037
23037
23037
23038
23038
23038
23039
23039
23039
23040
23040
23040
23041
23041
23041
23042
23042
23042
23043
23043
23043
23044
23044
23044
23045
23045
23045
23046
23046
23046
23047
23047
23047
23048
23048
23048
23049
23049
23049
23050
23050
23050
23051
23051
23051
23052
23052
23052
23053
23053
23053
23054
23054
23054
23055
23055
23056
23056
23056
23056
23057
23057
23057
23058
23058
23058
23059
23059
23059
23060
23060
23060
23061
23061
23061
23062
23062
23062
23063
23063
23063
23064
23064
23064
23065
23065
23065
23066
23066
23066
23067
23067
23067
23068
23068
23068
23069
23069
23069
23070
23070
23070
23071
23071
23071
23072
23072
23072
23073
23073
23073
23074
23074
23074
23075
23075
23075
23076
23076
23076
23077
23077
23078
23078
23078
23079
23079
23080
23080
23081
23081
23082
23082
23083
23083
23084
23084
23085
23085
23086
23086
23087
23087
23088
23088
23089
23089
23090
23090
23091
23091
23092
23092
23093
23093
23094
23094
23095
23095
23096
23096
23097
23097
23098
23098
23099
23100
23100
23100
23100
23101
23101
23101
23102
23102
23102
23103
23103
23103
23104
23104
23104
23105
23105
23105
23106
23106
23106
23107
23107
23107
23108
23108
23108
23109
23109
23109
23110
23110
23110
23111
23111
23111
23112
23112
23112
23113
23113
23113
23114
23114
23114
23115
23115
23115
23116
23116
23116
23117
23117
23117
23118
23118
23118
23119
23119
23119
23120
23120
23120
23121
23121
23122
23122
23122
23122
23123
23123
23123
23124
23124
23124
23125
23125
23125
23126
23126
23126
23127
23127
23127
23128
23128
23128
23129
23129
23129
23130
23130
23130
23131
23131
23131
23132
23132
23132
23133
23133
23133
23134
23134
23134
23135
23135
23135
23136
23136
23136
23137
23137
23137
23138
23138
23138
23139
23139
23139
23140
23140
23140
23141
23141
23141
23142
23142
23142
23143
23143
23144
23144
23144
23144
23145
23145
23145
23146
23146
23146
23147
23147
23147
23148
23148
23148
23149
23149
23149
23150
23150
23150
23151
23151
23151
23152
23152
23152
23153
23153
23153
23154
23154
23154
23155
23155
23155
23156
23156
23156
23157
23157
23157
23158
23158
23158
23159
23159
23159
23160
23160
23160
23161
23161
23161
23162
23162
23162
23163
23163
23163
23164
23164
23164
23165
23165
23166
23166
23166
23166
23167
23167
23167
23168
23168
23168
23169
23169
23169
23170
23170
23170
23171
23171
23171
23172
23172
23172
23173
23173
23173
23174
23174
23174
23175
23175
23175
23176
23176
23176
23177
23177
23177
23178
23178
23178
23179
23179
23179
23180
23180
23180
23181
23181
23181
23182
23182
23182
23183
23183
23183
23184
23184
23184
23185
23185
23185
23186
23186
23186
23187
23187
23188
23188
23188
23188
23189
23189
23189
23190
23190
23190
23191
23191
23191
23192
23192
23192
23193
23193
23193
23194
23194
23194
23195
23195
23195
23196
23196
23196
23197
23197
23197
23198
23198
23198
23199
23199
23199
23200
23200
23200
23201
23201
23201
23202
23202
23202
23203
23203
23203
23204
23204
23204
23205
23205
23205
23206
23206
23206
23207
23207
23207
23208
23208
23208
23209
23209
23210
23210
23210
23210
23211
23211
23211
23212
23212
23212
23213
23213
23213
23214
23214
23214
23215
23215
23215
23216
23216
23216
23217
23217
23217
23218
23218
23218
23219
23219
23219
23220
23220
23220
23221
23221
23221
23222
23222
23222
23223
23223
23223
23224
23224
23224
23225
23225
23225
23226
23226
23226
23227
23227
23227
23228
23228
23228
23229
23229
23229
23230
23230
23230
23231
23231
23232
23232
23232
23232
23233
23233
23233
23234
23234
23234
23235
23235
23235
23236
23236
23236
23237
23237
23237
23238
23238
23238
23239
23239
23239
23240
23240
23240
23241
23241
23241
23242
23242
23242
23243
23243
23243
23244
23244
23244
23245
23245
23245
23246
23246
23246
23247
23247
23247
23248
23248
23248
23249
23249
23249
23250
23250
23250
23251
23251
23251
23252
23252
23252
23253
23253
23254
23254
23254
23254
23255
23255
23255
23256
23256
23256
23257
23257
23257
23258
23258
23258
23259
23259
23259
23260
23260
23260
23261
23261
23261
23262
23262
23262
23263
23263
23263
23264
23264
23264
23265
23265
23265
23266
23266
23266
23267
23267
23267
23268
23268
23268
23269
23269
23269
23270
23270
23270
23271
23271
23271
23272
23272
23272
23273
23273
23273
23274
23274
23274
23275
23275
23276
23276
23276
23276
23277
23277
23277
23278
23278
23278
23279
23279
23279
23280
23280
23280
23281
23281
23281
23282
23282
23282
23283
23283
23283
23284
23284
23284
23285
23285
23285
23286
23286
23286
23287
23287
23287
23288
23288
23288
23289
23289
23289
23290
23290
23290
23291
23291
23291
23292
23292
23292
23293
23293
23293
23294
23294
23294
23295
23295
23295
23296
23296
23296
23297
23297
23298
23298
23298
23299
23299
23300
23300
23301
23301
23302
23302
23303
23303
23304
23304
23305
23305
23306
23306
23307
23307
23308
23308
23309
23309
23310
23310
23311
23311
23312
23312
23313
23313
23314
23314
23315
23315
23316
23316
23317
23317
23318
23318
23319
23320
23320
23320
23320
23321
23321
23321
23322
23322
23322
23323
23323
23323
23324
23324
23324
23325
23325
23325
23326
23326
23326
23327
23327
23327
23328
23328
23328
23329
23329
23329
23330
23330
23330
23331
23331
23331
23332
23332
23332
23333
23333
23333
23334
23334
23334
23335
23335
23335
23336
23336
23336
23337
23337
23337
23338
23338
23338
23339
23339
23339
23340
23340
23340
23341
23341
23342
23342
23342
23342
23343
23343
23343
23344
23344
23344
23345
23345
23345
23346
23346
23346
23347
23347
23347
23348
23348
23348
23349
23349
23349
23350
23350
23350
23351
23351
23351
23352
23352
23352
23353
23353
23353
23354
23354
23354
23355
23355
23355
23356
23356
23356
23357
23357
23357
23358
23358
23358
23359
23359
23359
23360
23360
23360
23361
23361
23361
23362
23362
23362
23363
23363
23364
23364
23364
23364
23365
23365
23365
23366
23366
23366
23367
23367
23367
23368
23368
23368
23369
23369
23369
23370
23370
23370
23371
23371
23371
23372
23372
23372
23373
23373
23373
23374
23374
23374
23375
23375
23375
23376
23376
23376
23377
23377
23377
23378
23378
23378
23379
23379
23379
23380
23380
23380
23381
23381
23381
23382
23382
23382
23383
23383
23383
23384
23384
23384
23385
23385
23386
23386
23386
23386
23387
23387
23387
23388
23388
23388
23389
23389
23389
23390
23390
23390
23391
23391
23391
23392
23392
23392
23393
23393
23393
23394
23394
23394
23395
23395
23395
23396
23396
23396
23397
23397
23397
23398
23398
23398
23399
23399
23399
23400
23400
23400
23401
23401
23401
23402
23402
23402
23403
23403
23403
23404
23404
23404
23405
23405
23405
23406
23406
23406
23407
23407
23408
23408
23408
23408
23409
23409
23409
23410
23410
23410
23411
23411
23411
23412
23412
23412
23413
23413
23413
23414
23414
23414
23415
23415
23415
23416
23416
23416
23417
23417
23417
23418
23418
23418
23419
23419
23419
23420
23420
23420
23421
23421
23421
23422
23422
23422
23423
23423
23423
23424
23424
23424
23425
23425
23425
23426
23426
23426
23427
23427
23427
23428
23428
23428
23429
23429
23430
23430
23430
23430
23431
23431
23431
23432
23432
23432
23433
23433
23433
23434
23434
23434
23435
23435
23435
23436
23436
23436
23437
23437
23437
23438
23438
23438
23439
23439
23439
23440
23440
23440
23441
23441
23441
23442
23442
23442
23443
23443
23443
23444
23444
23444
23445
23445
23445
23446
23446
23446
23447
23447
23447
23448
23448
23448
23449
23449
23449
23450
23450
23450
23451
23451
23452
23452
23452
23452
23453
23453
23453
23454
23454
23454
23455
23455
23455
23456
23456
23456
23457
23457
23457
23458
23458
23458
23459
23459
23459
23460
23460
23460
23461
23461
23461
23462
23462
23462
23463
23463
23463
23464
23464
23464
23465
23465
23465
23466
23466
23466
23467
23467
23467
23468
23468
23468
23469
23469
23469
23470
23470
23470
23471
23471
23471
23472
23472
23472
23473
23473
23474
23474
23474
23474
23475
23475
23475
23476
23476
23476
23477
23477
23477
23478
23478
23478
23479
23479
23479
23480
23480
23480
23481
23481
23481
23482
23482
23482
23483
23483
23483
23484
23484
23484
23485
23485
23485
23486
23486
23486
23487
23487
23487
23488
23488
23488
23489
23489
23489
23490
23490
23490
23491
23491
23491
23492
23492
23492
23493
23493
23493
23494
23494
23494
23495
23495
23496
23496
23496
23496
23497
23497
23497
23498
23498
23498
23499
23499
23499
23500
23500
23500
23501
23501
23501
23502
23502
23502
23503
23503
23503
23504
23504
23504
23505
23505
23505
23506
23506
23506
23507
23507
23507
23508
23508
23508
23509
23509
23509
23510
23510
23510
23511
23511
23511
23512
23512
23512
23513
23513
23513
23514
23514
23514
23515
23515
23515
23516
23516
23516
23517
23517
23518
23518
23518
23519
23519
23520
23520
23521
23521
23522
23522
23523
23523
23524
23524
23525
23525
23526
23526
23527
23527
23528
23528
23529
23529
23530
23530
23531
23531
23532
23532
23533
23533
23534
23534
23535
23535
23536
23536
23537
23537
23538
23538
23539
23540
23540
23540
23540
23541
23541
23541
23542
23542
23542
23543
23543
23543
23544
23544
23544
23545
23545
23545
23546
23546
23546
23547
23547
23547
23548
23548
23548
23549
23549
23549
23550
23550
23550
23551
23551
23551
23552
23552
23552
23553
23553
23553
23554
23554
23554
23555
23555
23555
23556
23556
23556
23557
23557
23557
23558
23558
23558
23559
23559
23559
23560
23560
23560
23561
23561
23562
23562
23562
23562
23563
23563
23563
23564
23564
23564
23565
23565
23565
23566
23566
23566
23567
23567
23567
23568
23568
23568
23569
23569
23569
23570
23570
23570
23571
23571
23571
23572
23572
23572
23573
23573
23573
23574
23574
23574
23575
23575
23575
23576
23576
23576
23577
23577
23577
23578
23578
23578
23579
23579
23579
23580
23580
23580
23581
23581
23581
23582
23582
23582
23583
23583
23584
23584
23584
23584
23585
23585
23585
23586
23586
23586
23587
23587
23587
23588
23588
23588
23589
23589
23589
23590
23590
23590
23591
23591
23591
23592
23592
23592
23593
23593
23593
23594
23594
23594
23595
23595
23595
23596
23596
23596
23597
23597
23597
23598
23598
23598
23599
23599
23599
23600
23600
23600
23601
23601
23601
23602
23602
23602
23603
23603
23603
23604
23604
23604
23605
23605
23606
23606
23606
23606
23607
23607
23607
23608
23608
23608
23609
23609
23609
23610
23610
23610
23611
23611
23611
23612
23612
23612
23613
23613
23613
23614
23614
23614
23615
23615
23615
23616
23616
23616
23617
23617
23617
23618
23618
23618
23619
23619
23619
23620
23620
23620
23621
23621
23621
23622
23622
23622
23623
23623
23623
23624
23624
23624
23625
23625
23625
23626
23626
23626
23627
23627
23628
23628
23628
23628
23629
23629
23629
23630
23630
23630
23631
23631
23631
23632
23632
23632
23633
23633
23633
23634
23634
23634
23635
23635
23635
23636
23636
23636
23637
23637
23637
23638
23638
23638
23639
23639
23639
23640
23640
23640
23641
23641
23641
23642
23642
23642
23643
23643
23643
23644
23644
23644
23645
23645
23645
23646
23646
23646
23647
23647
23647
23648
23648
23648
23649
23649
23650
23650
23650
23650
23651
23651
23651
23652
23652
23652
23653
23653
23653
23654
23654
23654
23655
23655
23655
23656
23656
23656
23657
23657
23657
23658
23658
23658
23659
23659
23659
23660
23660
23660
23661
23661
23661
23662
23662
23662
23663
23663
23663
23664
23664
23664
23665
23665
23665
23666
23666
23666
23667
23667
23667
23668
23668
23668
23669
23669
23669
23670
23670
23670
23671
23671
23672
23672
23672
23672
23673
23673
23673
23674
23674
23674
23675
23675
23675
23676
23676
23676
23677
23677
23677
23678
23678
23678
23679
23679
23679
23680
23680
23680
23681
23681
23681
23682
23682
23682
23683
23683
23683
23684
23684
23684
23685
23685
23685
23686
23686
23686
23687
23687
23687
23688
23688
23688
23689
23689
23689
23690
23690
23690
23691
23691
23691
23692
23692
23692
23693
23693
23694
23694
23694
23694
23695
23695
23695
23696
23696
23696
23697
23697
23697
23698
23698
23698
23699
23699
23699
23700
23700
23700
23701
23701
23701
23702
23702
23702
23703
23703
23703
23704
23704
23704
23705
23705
23705
23706
23706
23706
23707
23707
23707
23708
23708
23708
23709
23709
23709
23710
23710
23710
23711
23711
23711
23712
23712
23712
23713
23713
23713
23714
23714
23714
23715
23715
23716
23716
23716
23716
23717
23717
23717
23718
23718
23718
23719
23719
23719
23720
23720
23720
23721
23721
23721
23722
23722
23722
23723
23723
23723
23724
23724
23724
23725
23725
23725
23726
23726
23726
23727
23727
23727
23728
23728
23728
23729
23729
23729
23730
23730
23730
23731
23731
23731
23732
23732
23732
23733
23733
23733
23734
23734
23734
23735
23735
23735
23736
23736
23736
23737
23737
23738
23738
23738
23739
23739
23740
23740
23741
23741
23742
23742
23743
23743
23744
23744
23745
23745
23746
23746
23747
23747
23748
23748
23749
23749
23750
23750
23751
23751
23752
23752
23753
23753
23754
23754
23755
23755
23756
23756
23757
23757
23758
23758
23759
23760
23760
23760
23760
23761
23761
23761
23762
23762
23762
23763
23763
23763
23764
23764
23764
23765
23765
23765
23766
23766
23766
23767
23767
23767
23768
23768
23768
23769
23769
23769
23770
23770
23770
23771
23771
23771
23772
23772
23772
23773
23773
23773
23774
23774
23774
23775
23775
23775
23776
23776
23776
23777
23777
23777
23778
23778
23778
23779
23779
23779
23780
23780
23780
23781
23781
23782
23782
23782
23782
23783
23783
23783
23784
23784
23784
23785
23785
23785
23786
23786
23786
23787
23787
23787
23788
23788
23788
23789
23789
23789
23790
23790
23790
23791
23791
23791
23792
23792
23792
23793
23793
23793
23794
23794
23794
23795
23795
23795
23796
23796
23796
23797
23797
23797
23798
23798
23798
23799
23799
23799
23800
23800
23800
23801
23801
23801
23802
23802
23802
23803
23803
23804
23804
23804
23804
23805
23805
23805
23806
23806
23806
23807
23807
23807
23808
23808
23808
23809
23809
23809
23810
23810
23810
23811
23811
23811
23812
23812
23812
23813
23813
23813
23814
23814
23814
23815
23815
23815
23816
23816
23816
23817
23817
23817
23818
23818
23818
23819
23819
23819
23820
23820
23820
23821
23821
23821
23822
23822
23822
23823
23823
23823
23824
23824
23824
23825
23825
23826
23826
23826
23826
23827
23827
23827
23828
23828
23828
23829
23829
23829
23830
23830
23830
23831
23831
23831
23832
23832
23832
23833
23833
23833
23834
23834
23834
23835
23835
23835
23836
23836
23836
23837
23837
23837
23838
23838
23838
23839
23839
23839
23840
23840
23840
23841
23841
23841
23842
23842
23842
23843
23843
23843
23844
23844
23844
23845
23845
23845
23846
23846
23846
23847
23847
23848
23848
23848
23848
23849
23849
23849
23850
23850
23850
23851
23851
23851
23852
23852
23852
23853
23853
23853
23854
23854
23854
23855
23855
23855
23856
23856
23856
23857
23857
23857
23858
23858
23858
23859
23859
23859
23860
23860
23860
23861
23861
23861
23862
23862
23862
23863
23863
23863
23864
23864
23864
23865
23865
23865
23866
23866
23866
23867
23867
23867
23868
23868
23868
23869
23869
23870
23870
23870
23870
23871
23871
23871
23872
23872
23872
23873
23873
23873
23874
23874
23874
23875
23875
23875
23876
23876
23876
23877
23877
23877
23878
23878
23878
23879
23879
23879
23880
23880
23880
23881
23881
23881
23882
23882
23882
23883
23883
23883
23884
23884
23884
23885
23885
23885
23886
23886
23886
23887
23887
23887
23888
23888
23888
23889
23889
23889
23890
23890
23890
23891
23891
23892
23892
23892
23892
23893
23893
23893
23894
23894
23894
23895
23895
23895
23896
23896
23896
23897
23897
23897
23898
23898
23898
23899
23899
23899
23900
23900
23900
23901
23901
23901
23902
23902
23902
23903
23903
23903
23904
23904
23904
23905
23905
23905
23906
23906
23906
23907
23907
23907
23908
23908
23908
23909
23909
23909
23910
23910
23910
23911
23911
23911
23912
23912
23912
23913
23913
23914
23914
23914
23914
23915
23915
23915
23916
23916
23916
23917
23917
23917
23918
23918
23918
23919
23919
23919
23920
23920
23920
23921
23921
23921
23922
23922
23922
23923
23923
23923
23924
23924
23924
23925
23925
23925
23926
23926
23926
23927
23927
23927
23928
23928
23928
23929
23929
23929
23930
23930
23930
23931
23931
23931
23932
23932
23932
23933
23933
23933
23934
23934
23934
23935
23935
23936
23936
23936
23936
23937
23937
23937
23938
23938
23938
23939
23939
23939
23940
23940
23940
23941
23941
23941
23942
23942
23942
23943
23943
23943
23944
23944
23944
23945
23945
23945
23946
23946
23946
23947
23947
23947
23948
23948
23948
23949
23949
23949
23950
23950
23950
23951
23951
23951
23952
23952
23952
23953
23953
23953
23954
23954
23954
23955
23955
23955
23956
23956
23956
23957
23957
23958
23958
23958
23959
23959
23960
23960
23961
23961
23962
23962
23963
23963
23964
23964
23965
23965
23966
23966
23967
23967
23968
23968
23969
23969
23970
23970
23971
23971
23972
23972
23973
23973
23974
23974
23975
23975
23976
23976
23977
23977
23978
23978
23979
23980
23980
23980
23980
23981
23981
23981
23982
23982
23982
23983
23983
23983
23984
23984
23984
23985
23985
23985
23986
23986
23986
23987
23987
23987
23988
23988
23988
23989
23989
23989
23990
23990
23990
23991
23991
23991
23992
23992
23992
23993
23993
23993
23994
23994
23994
23995
23995
23995
23996
23996
23996
23997
23997
23997
23998
23998
23998
23999
23999
23999
24000
24000
24000
24001
24001
24002
24002
24002
24002
24003
24003
24003
24004
24004
24004
24005
24005
24005
24006
24006
24006
24007
24007
24007
24008
24008
24008
24009
24009
24009
24010
24010
24010
24011
24011
24011
24012
24012
24012
24013
24013
24013
24014
24014
24014
24015
24015
24015
24016
24016
24016
24017
24017
24017
24018
24018
24018
24019
24019
24019
24020
24020
24020
24021
24021
24021
24022
24022
24022
24023
24023
24024
24024
24024
24024
24025
24025
24025
24026
24026
24026
24027
24027
24027
24028
24028
24028
24029
24029
24029
24030
24030
24030
24031
24031
24031
24032
24032
24032
24033
24033
24033
24034
24034
24034
24035
24035
24035
24036
24036
24036
24037
24037
24037
24038
24038
24038
24039
24039
24039
24040
24040
24040
24041
24041
24041
24042
24042
24042
24043
24043
24043
24044
24044
24044
24045
24045
24046
24046
24046
24046
24047
24047
24047
24048
24048
24048
24049
24049
24049
24050
24050
24050
24051
24051
24051
24052
24052
24052
24053
24053
24053
24054
24054
24054
24055
24055
24055
24056
24056
24056
24057
24057
24057
24058
24058
24058
24059
24059
24059
24060
24060
24060
24061
24061
24061
24062
24062
24062
24063
24063
24063
24064
24064
24064
24065
24065
24065
24066
24066
24066
24067
24067
24068
24068
24068
24068
24069
24069
24069
24070
24070
24070
24071
24071
24071
24072
24072
24072
24073
24073
24073
24074
24074
24074
24075
24075
24075
24076
24076
24076
24077
24077
24077
24078
24078
24078
24079
24079
24079
24080
24080
24080
24081
24081
24081
24082
24082
24082
24083
24083
24083
24084
24084
24084
24085
24085
24085
24086
24086
24086
24087
24087
24087
24088
24088
24088
24089
24089
24090
24090
24090
24090
24091
24091
24091
24092
24092
24092
24093
24093
24093
24094
24094
24094
24095
24095
24095
24096
24096
24096
24097
24097
24097
24098
24098
24098
24099
24099
24099
24100
24100
24100
24101
24101
24101
24102
24102
24102
24103
24103
24103
24104
24104
24104
24105
24105
24105
24106
24106
24106
24107
24107
24107
24108
24108
24108
24109
24109
24109
24110
24110
24110
24111
24111
24112
24112
24112
24112
24113
24113
24113
24114
24114
24114
24115
24115
24115
24116
24116
24116
24117
24117
24117
24118
24118
24118
24119
24119
24119
24120
24120
24120
24121
24121
24121
24122
24122
24122
24123
24123
24123
24124
24124
24124
24125
24125
24125
24126
24126
24126
24127
24127
24127
24128
24128
24128
24129
24129
24129
24130
24130
24130
24131
24131
24131
24132
24132
24132
24133
24133
24134
24134
24134
24134
24135
24135
24135
24136
24136
24136
24137
24137
24137
24138
24138
24138
24139
24139
24139
24140
24140
24140
24141
24141
24141
24142
24142
24142
24143
24143
24143
24144
24144
24144
24145
24145
24145
24146
24146
24146
24147
24147
24147
24148
24148
24148
24149
24149
24149
24150
24150
24150
24151
24151
24151
24152
24152
24152
24153
24153
24153
24154
24154
24154
24155
24155
24156
24156
24156
24156
24157
24157
24157
24158
24158
24158
24159
24159
24159
24160
24160
24160
24161
24161
24161
24162
24162
24162
24163
24163
24163
24164
24164
24164
24165
24165
24165
24166
24166
24166
24167
24167
24167
24168
24168
24168
24169
24169
24169
24170
24170
24170
24171
24171
24171
24172
24172
24172
24173
24173
24173
24174
24174
24174
24175
24175
24175
24176
24176
24176
24177
24177
24178
24178
24178
24179
24179
24180
24180
24181
24181
24182
24182
24183
24183
24184
24184
24185
24185
24186
24186
24187
24187
24188
24188
24189
24189
24190
24190
24191
24191
24192
24192
24193
24193
24194
24194
24195
24195
24196
24196
24197
24197
24198
24198
24199
24200
24200
24200
24200
24201
24201
24201
24202
24202
24202
24203
24203
24203
24204
24204
24204
24205
24205
24205
24206
24206
24206
24207
24207
24207
24208
24208
24208
24209
24209
24209
24210
24210
24210
24211
24211
24211
24212
24212
24212
24213
24213
24213
24214
24214
24214
24215
24215
24215
24216
24216
24216
24217
24217
24217
24218
24218
24218
24219
24219
24219
24220
24220
24220
24221
24221
24222
24222
24222
24222
24223
24223
24223
24224
24224
24224
24225
24225
24225
24226
24226
24226
24227
24227
24227
24228
24228
24228
24229
24229
24229
24230
24230
24230
24231
24231
24231
24232
24232
24232
24233
24233
24233
24234
24234
24234
24235
24235
24235
24236
24236
24236
24237
24237
24237
24238
24238
24238
24239
24239
24239
24240
24240
24240
24241
24241
24241
24242
24242
24242
24243
24243
24244
24244
24244
24244
24245
24245
24245
24246
24246
24246
24247
24247
24247
24248
24248
24248
24249
24249
24249
24250
24250
24250
24251
24251
24251
24252
24252
24252
24253
24253
24253
24254
24254
24254
24255
24255
24255
24256
24256
24256
24257
24257
24257
24258
24258
24258
24259
24259
24259
24260
24260
24260
24261
24261
24261
24262
24262
24262
24263
24263
24263
24264
24264
24264
24265
24265
24266
24266
24266
24266
24267
24267
24267
24268
24268
24268
24269
24269
24269
24270
24270
24270
24271
24271
24271
24272
24272
24272
24273
24273
24273
24274
24274
24274
24275
24275
24275
24276
24276
24276
24277
24277
24277
24278
24278
24278
24279
24279
24279
24280
24280
24280
24281
24281
24281
24282
24282
24282
24283
24283
24283
24284
24284
24284
24285
24285
24285
24286
24286
24286
24287
24287
24288
24288
24288
24288
24289
24289
24289
24290
24290
24290
24291
24291
24291
24292
24292
24292
24293
24293
24293
24294
24294
24294
24295
24295
24295
24296
24296
24296
24297
24297
24297
24298
24298
24298
24299
24299
24299
24300
24300
24300
24301
24301
24301
24302
24302
24302
24303
24303
24303
24304
24304
24304
24305
24305
24305
24306
24306
24306
24307
24307
24307
24308
24308
24308
24309
24309
24310
24310
24310
24310
24311
24311
24311
24312
24312
24312
24313
24313
24313
24314
24314
24314
24315
24315
24315
24316
24316
24316
24317
24317
24317
24318
24318
24318
24319
24319
24319
24320
24320
24320
24321
24321
24321
24322
24322
24322
24323
24323
24323
24324
24324
24324
24325
24325
24325
24326
24326
24326
24327
24327
24327
24328
24328
24328
24329
24329
24329
24330
24330
24330
24331
24331
24332
24332
24332
24332
24333
24333
24333
24334
24334
24334
24335
24335
24335
24336
24336
24336
24337
24337
24337
24338
24338
24338
24339
24339
24339
24340
24340
24340
24341
24341
24341
24342
24342
24342
24343
24343
24343
24344
24344
24344
24345
24345
24345
24346
24346
24346
24347
24347
24347
24348
24348
24348
24349
24349
24349
24350
24350
24350
24351
24351
24351
24352
24352
24352
24353
24353
24354
24354
24354
24354
24355
24355
24355
24356
24356
24356
24357
24357
24357
24358
24358
24358
24359
24359
24359
24360
24360
24360
24361
24361
24361
24362
24362
24362
24363
24363
24363
24364
24364
24364
24365
24365
24365
24366
24366
24366
24367
24367
24367
24368
24368
24368
24369
24369
24369
24370
24370
24370
24371
24371
24371
24372
24372
24372
24373
24373
24373
24374
24374
24374
24375
24375
24376
24376
24376
24376
24377
24377
24377
24378
24378
24378
24379
24379
24379
24380
24380
24380
24381
24381
24381
24382
24382
24382
24383
24383
24383
24384
24384
24384
24385
24385
24385
24386
24386
24386
24387
24387
24387
24388
24388
24388
24389
24389
24389
24390
24390
24390
24391
24391
24391
24392
24392
24392
24393
24393
24393
24394
24394
24394
24395
24395
24395
24396
24396
24396
24397
24397
24398
24398
24398
24399
24399
24400
24400
24401
24401
24402
24402
24403
24403
24404
24404
24405
24405
24406
24406
24407
24407
24408
24408
24409
24409
24410
24410
24411
24411
24412
24412
24413
24413
24414
24414
24415
24415
24416
24416
24417
24417
24418
24418
24419
24420
24420
24420
24420
24421
24421
24421
24422
24422
24422
24423
24423
24423
24424
24424
24424
24425
24425
24425
24426
24426
24426
24427
24427
24427
24428
24428
24428
24429
24429
24429
24430
24430
24430
24431
24431
24431
24432
24432
24432
24433
24433
24433
24434
24434
24434
24435
24435
24435
24436
24436
24436
24437
24437
24437
24438
24438
24438
24439
24439
24439
24440
24440
24440
24441
24441
24442
24442
24442
24442
24443
24443
24443
24444
24444
24444
24445
24445
24445
24446
24446
24446
24447
24447
24447
24448
24448
24448
24449
24449
24449
24450
24450
24450
24451
24451
24451
24452
24452
24452
24453
24453
24453
24454
24454
24454
24455
24455
24455
24456
24456
24456
24457
24457
24457
24458
24458
24458
24459
24459
24459
24460
24460
24460
24461
24461
24461
24462
24462
24462
24463
24463
24464
24464
24464
24464
24465
24465
24465
24466
24466
24466
24467
24467
24467
24468
24468
24468
24469
24469
24469
24470
24470
24470
24471
24471
24471
24472
24472
24472
24473
24473
24473
24474
24474
24474
24475
24475
24475
24476
24476
24476
24477
24477
24477
24478
24478
24478
24479
24479
24479
24480
24480
24480
24481
24481
24481
24482
24482
24482
24483
24483
24483
24484
24484
24484
24485
24485
24486
24486
24486
24486
24487
24487
24487
24488
24488
24488
24489
24489
24489
24490
24490
24490
24491
24491
24491
24492
24492
24492
24493
24493
24493
24494
24494
24494
24495
24495
24495
24496
24496
24496
24497
24497
24497
24498
24498
24498
24499
24499
24499
24500
24500
24500
24501
24501
24501
24502
24502
24502
24503
24503
24503
24504
24504
24504
24505
24505
24505
24506
24506
24506
24507
24507
24508
24508
24508
24508
24509
24509
24509
24510
24510
24510
24511
24511
24511
24512
24512
24512
24513
24513
24513
24514
24514
24514
24515
24515
24515
24516
24516
24516
24517
24517
24517
24518
24518
24518
24519
24519
24519
24520
24520
24520
24521
24521
24521
24522
24522
24522
24523
24523
24523
24524
24524
24524
24525
24525
24525
24526
24526
24526
24527
24527
24527
24528
24528
24528
24529
24529
24530
24530
24530
24530
24531
24531
24531
24532
24532
24532
24533
24533
24533
24534
24534
24534
24535
24535
24535
24536
24536
24536
24537
24537
24537
24538
24538
24538
24539
24539
24539
24540
24540
24540
24541
24541
24541
24542
24542
24542
24543
24543
24543
24544
24544
24544
24545
24545
24545
24546
24546
24546
24547
24547
24547
24548
24548
24548
24549
24549
24549
24550
24550
24550
24551
24551
24552
24552
24552
24552
24553
24553
24553
24554
24554
24554
24555
24555
24555
24556
24556
24556
24557
24557
24557
24558
24558
24558
24559
24559
24559
24560
24560
24560
24561
24561
24561
24562
24562
24562
24563
24563
24563
24564
24564
24564
24565
24565
24565
24566
24566
24566
24567
24567
24567
24568
24568
24568
24569
24569
24569
24570
24570
24570
24571
24571
24571
24572
24572
24572
24573
24573
24574
24574
24574
24574
24575
24575
24575
24576
24576
24576
24577
24577
24577
24578
24578
24578
24579
24579
24579
24580
24580
24580
24581
24581
24581
24582
24582
24582
24583
24583
24583
24584
24584
24584
24585
24585
24585
24586
24586
24586
24587
24587
24587
24588
24588
24588
24589
24589
24589
24590
24590
24590
24591
24591
24591
24592
24592
24592
24593
24593
24593
24594
24594
24594
24595
24595
24596
24596
24596
24596
24597
24597
24597
24598
24598
24598
24599
24599
24599
24600
24600
24600
24601
24601
24601
24602
24602
24602
24603
24603
24603
24604
24604
24604
24605
24605
24605
24606
24606
24606
24607
24607
24607
24608
24608
24608
24609
24609
24609
24610
24610
24610
24611
24611
24611
24612
24612
24612
24613
24613
24613
24614
24614
24614
24615
24615
24615
24616
24616
24616
24617
24617
24618
24618
24618
24619
24619
24620
24620
24621
24621
24622
24622
24623
24623
24624
24624
24625
24625
24626
24626
24627
24627
24628
24628
24629
24629
24630
24630
24631
24631
24632
24632
24633
24633
24634
24634
24635
24635
24636
24636
24637
24637
24638
24638
24639
24640
24640
24640
24640
24641
24641
24641
24642
24642
24642
24643
24643
24643
24644
24644
24644
24645
24645
24645
24646
24646
24646
24647
24647
24647
24648
24648
24648
24649
24649
24649
24650
24650
24650
24651
24651
24651
24652
24652
24652
24653
24653
24653
24654
24654
24654
24655
24655
24655
24656
24656
24656
24657
24657
24657
24658
24658
24658
24659
24659
24659
24660
24660
24660
24661
24661
24662
24662
24662
24662
24663
24663
24663
24664
24664
24664
24665
24665
24665
24666
24666
24666
24667
24667
24667
24668
24668
24668
24669
24669
24669
24670
24670
24670
24671
24671
24671
24672
24672
24672
24673
24673
24673
24674
24674
24674
24675
24675
24675
24676
24676
24676
24677
24677
24677
24678
24678
24678
24679
24679
24679
24680
24680
24680
24681
24681
24681
24682
24682
24682
24683
24683
24684
24684
24684
24684
24685
24685
24685
24686
24686
24686
24687
24687
24687
24688
24688
24688
24689
24689
24689
24690
24690
24690
24691
24691
24691
24692
24692
24692
24693
24693
24693
24694
24694
24694
24695
24695
24695
24696
24696
24696
24697
24697
24697
24698
24698
24698
24699
24699
24699
24700
24700
24700
24701
24701
24701
24702
24702
24702
24703
24703
24703
24704
24704
24704
24705
24705
24706
24706
24706
24706
24707
24707
24707
24708
24708
24708
24709
24709
24709
24710
24710
24710
24711
24711
24711
24712
24712
24712
24713
24713
24713
24714
24714
24714
24715
24715
24715
24716
24716
24716
24717
24717
24717
24718
24718
24718
24719
24719
24719
24720
24720
24720
24721
24721
24721
24722
24722
24722
24723
24723
24723
24724
24724
24724
24725
24725
24725
24726
24726
24726
24727
24727
24728
24728
24728
24728
24729
24729
24729
24730
24730
24730
24731
24731
24731
24732
24732
24732
24733
24733
24733
24734
24734
24734
24735
24735
24735
24736
24736
24736
24737
24737
24737
24738
24738
24738
24739
24739
24739
24740
24740
24740
24741
24741
24741
24742
24742
24742
24743
24743
24743
24744
24744
24744
24745
24745
24745
24746
24746
24746
24747
24747
24747
24748
24748
24748
24749
24749
24750
24750
24750
24750
24751
24751
24751
24752
24752
24752
24753
24753
24753
24754
24754
24754
24755
24755
24755
24756
24756
24756
24757
24757
24757
24758
24758
24758
24759
24759
24759
24760
24760
24760
24761
24761
24761
24762
24762
24762
24763
24763
24763
24764
24764
24764
24765
24765
24765
24766
24766
24766
24767
24767
24767
24768
24768
24768
24769
24769
24769
24770
24770
24770
24771
24771
24772
24772
24772
24772
24773
24773
24773
24774
24774
24774
24775
24775
24775
24776
24776
24776
24777
24777
24777
24778
24778
24778
24779
24779
24779
24780
24780
24780
24781
24781
24781
24782
24782
24782
24783
24783
24783
24784
24784
24784
24785
24785
24785
24786
24786
24786
24787
24787
24787
24788
24788
24788
24789
24789
24789
24790
24790
24790
24791
24791
24791
24792
24792
24792
24793
24793
24794
24794
24794
24794
24795
24795
24795
24796
24796
24796
24797
24797
24797
24798
24798
24798
24799
24799
24799
24800
24800
24800
24801
24801
24801
24802
24802
24802
24803
24803
24803
24804
24804
24804
24805
24805
24805
24806
24806
24806
24807
24807
24807
24808
24808
24808
24809
24809
24809
24810
24810
24810
24811
24811
24811
24812
24812
24812
24813
24813
24813
24814
24814
24814
24815
24815
24816
24816
24816
24816
24817
24817
24817
24818
24818
24818
24819
24819
24819
24820
24820
24820
24821
24821
24821
24822
24822
24822
24823
24823
24823
24824
24824
24824
24825
24825
24825
24826
24826
24826
24827
24827
24827
24828
24828
24828
24829
24829
24829
24830
24830
24830
24831
24831
24831
24832
24832
24832
24833
24833
24833
24834
24834
24834
24835
24835
24835
24836
24836
24836
24837
24837
24838
24838
24838
24839
24839
24840
24840
24841
24841
24842
24842
24843
24843
24844
24844
24845
24845
24846
24846
24847
24847
24848
24848
24849
24849
24850
24850
24851
24851
24852
24852
24853
24853
24854
24854
24855
24855
24856
24856
24857
24857
24858
24858
24859
24860
24860
24860
24860
24861
24861
24861
24862
24862
24862
24863
24863
24863
24864
24864
24864
24865
24865
24865
24866
24866
24866
24867
24867
24867
24868
24868
24868
24869
24869
24869
24870
24870
24870
24871
24871
24871
24872
24872
24872
24873
24873
24873
24874
24874
24874
24875
24875
24875
24876
24876
24876
24877
24877
24877
24878
24878
24878
24879
24879
24879
24880
24880
24880
24881
24881
24882
24882
24882
24882
24883
24883
24883
24884
24884
24884
24885
24885
24885
24886
24886
24886
24887
24887
24887
24888
24888
24888
24889
24889
24889
24890
24890
24890
24891
24891
24891
24892
24892
24892
24893
24893
24893
24894
24894
24894
24895
24895
24895
24896
24896
24896
24897
24897
24897
24898
24898
24898
24899
24899
24899
24900
24900
24900
24901
24901
24901
24902
24902
24902
24903
24903
24904
24904
24904
24904
24905
24905
24905
24906
24906
24906
24907
24907
24907
24908
24908
24908
24909
24909
24909
24910
24910
24910
24911
24911
24911
24912
24912
24912
24913
24913
24913
24914
24914
24914
24915
24915
24915
24916
24916
24916
24917
24917
24917
24918
24918
24918
24919
24919
24919
24920
24920
24920
24921
24921
24921
24922
24922
24922
24923
24923
24923
24924
24924
24924
24925
24925
24926
24926
24926
24926
24927
24927
24927
24928
24928
24928
24929
24929
24929
24930
24930
24930
24931
24931
24931
24932
24932
24932
24933
24933
24933
24934
24934
24934
24935
24935
24935
24936
24936
24936
24937
24937
24937
24938
24938
24938
24939
24939
24939
24940
24940
24940
24941
24941
24941
24942
24942
24942
24943
24943
24943
24944
24944
24944
24945
24945
24945
24946
24946
24946
24947
24947
24948
24948
24948
24948
24949
24949
24949
24950
24950
24950
24951
24951
24951
24952
24952
24952
24953
24953
24953
24954
24954
24954
24955
24955
24955
24956
24956
24956
24957
24957
24957
24958
24958
24958
24959
24959
24959
24960
24960
24960
24961
24961
24961
24962
24962
24962
24963
24963
24963
24964
24964
24964
24965
24965
24965
24966
24966
24966
24967
24967
24967
24968
24968
24968
24969
24969
24970
24970
24970
24970
24971
24971
24971
24972
24972
24972
24973
24973
24973
24974
24974
24974
24975
24975
24975
24976
24976
24976
24977
24977
24977
24978
24978
24978
24979
24979
24979
24980
24980
24980
24981
24981
24981
24982
24982
24982
24983
24983
24983
24984
24984
24984
24985
24985
24985
24986
24986
24986
24987
24987
24987
24988
24988
24988
24989
24989
24989
24990
24990
24990
24991
24991
24992
24992
24992
24992
24993
24993
24993
24994
24994
24994
24995
24995
24995
24996
24996
24996
24997
24997
24997
24998
24998
24998
24999
24999
24999
25000
25000
25000
25001
25001
25001
25002
25002
25002
25003
25003
25003
25004
25004
25004
25005
25005
25005
25006
25006
25006
25007
25007
25007
25008
25008
25008
25009
25009
25009
25010
25010
25010
25011
25011
25011
25012
25012
25012
25013
25013
25014
25014
25014
25014
25015
25015
25015
25016
25016
25016
25017
25017
25017
25018
25018
25018
25019
25019
25019
25020
25020
25020
25021
25021
25021
25022
25022
25022
25023
25023
25023
25024
25024
25024
25025
25025
25025
25026
25026
25026
25027
25027
25027
25028
25028
25028
25029
25029
25029
25030
25030
25030
25031
25031
25031
25032
25032
25032
25033
25033
25033
25034
25034
25034
25035
25035
25036
25036
25036
25036
25037
25037
25037
25038
25038
25038
25039
25039
25039
25040
25040
25040
25041
25041
25041
25042
25042
25042
25043
25043
25043
25044
25044
25044
25045
25045
25045
25046
25046
25046
25047
25047
25047
25048
25048
25048
25049
25049
25049
25050
25050
25050
25051
25051
25051
25052
25052
25052
25053
25053
25053
25054
25054
25054
25055
25055
25055
25056
25056
25056
25057
25057
25058
25058
25058
25059
25059
25060
25060
25061
25061
25062
25062
25063
25063
25064
25064
25065
25065
25066
25066
25067
25067
25068
25068
25069
25069
25070
25070
25071
25071
25072
25072
25073
25073
25074
25074
25075
25075
25076
25076
25077
25077
25078
25078
25079
25080
25080
25080
25080
25081
25081
25081
25082
25082
25082
25083
25083
25083
25084
25084
25084
25085
25085
25085
25086
25086
25086
25087
25087
25087
25088
25088
25088
25089
25089
25089
25090
25090
25090
25091
25091
25091
25092
25092
25092
25093
25093
25093
25094
25094
25094
25095
25095
25095
25096
25096
25096
25097
25097
25097
25098
25098
25098
25099
25099
25099
25100
25100
25100
25101
25101
25102
25102
25102
25102
25103
25103
25103
25104
25104
25104
25105
25105
25105
25106
25106
25106
25107
25107
25107
25108
25108
25108
25109
25109
25109
25110
25110
25110
25111
25111
25111
25112
25112
25112
25113
25113
25113
25114
25114
25114
25115
25115
25115
25116
25116
25116
25117
25117
25117
25118
25118
25118
25119
25119
25119
25120
25120
25120
25121
25121
25121
25122
25122
25122
25123
25123
25124
25124
25124
25124
25125
25125
25125
25126
25126
25126
25127
25127
25127
25128
25128
25128
25129
25129
25129
25130
25130
25130
25131
25131
25131
25132
25132
25132
25133
25133
25133
25134
25134
25134
25135
25135
25135
25136
25136
25136
25137
25137
25137
25138
25138
25138
25139
25139
25139
25140
25140
25140
25141
25141
25141
25142
25142
25142
25143
25143
25143
25144
25144
25144
25145
25145
25146
25146
25146
25146
25147
25147
25147
25148
25148
25148
25149
25149
25149
25150
25150
25150
25151
25151
25151
25152
25152
25152
25153
25153
25153
25154
25154
25154
25155
25155
25155
25156
25156
25156
25157
25157
25157
25158
25158
25158
25159
25159
25159
25160
25160
25160
25161
25161
25161
25162
25162
25162
25163
25163
25163
25164
25164
25164
25165
25165
25165
25166
25166
25166
25167
25167
25168
25168
25168
25168
25169
25169
25169
25170
25170
25170
25171
25171
25171
25172
25172
25172
25173
25173
25173
25174
25174
25174
25175
25175
25175
25176
25176
25176
25177
25177
25177
25178
25178
25178
25179
25179
25179
25180
25180
25180
25181
25181
25181
25182
25182
25182
25183
25183
25183
25184
25184
25184
25185
25185
25185
25186
25186
25186
25187
25187
25187
25188
25188
25188
25189
25189
25190
25190
25190
25190
25191
25191
25191
25192
25192
25192
25193
25193
25193
25194
25194
25194
25195
25195
25195
25196
25196
25196
25197
25197
25197
25198
25198
25198
25199
25199
25199
25200
25200
25200
25201
25201
25201
25202
25202
25202
25203
25203
25203
25204
25204
25204
25205
25205
25205
25206
25206
25206
25207
25207
25207
25208
25208
25208
25209
25209
25209
25210
25210
25210
25211
25211
25212
25212
25212
25212
25213
25213
25213
25214
25214
25214
25215
25215
25215
25216
25216
25216
25217
25217
25217
25218
25218
25218
25219
25219
25219
25220
25220
25220
25221
25221
25221
25222
25222
25222
25223
25223
25223
25224
25224
25224
25225
25225
25225
25226
25226
25226
25227
25227
25227
25228
25228
25228
25229
25229
25229
25230
25230
25230
25231
25231
25231
25232
25232
25232
25233
25233
25234
25234
25234
25234
25235
25235
25235
25236
25236
25236
25237
25237
25237
25238
25238
25238
25239
25239
25239
25240
25240
25240
25241
25241
25241
25242
25242
25242
25243
25243
25243
25244
25244
25244
25245
25245
25245
25246
25246
25246
25247
25247
25247
25248
25248
25248
25249
25249
25249
25250
25250
25250
25251
25251
25251
25252
25252
25252
25253
25253
25253
25254
25254
25254
25255
25255
25256
25256
25256
25256
25257
25257
25257
25258
25258
25258
25259
25259
25259
25260
25260
25260
25261
25261
25261
25262
25262
25262
25263
25263
25263
25264
25264
25264
25265
25265
25265
25266
25266
25266
25267
25267
25267
25268
25268
25268
25269
25269
25269
25270
25270
25270
25271
25271
25271
25272
25272
25272
25273
25273
25273
25274
25274
25274
25275
25275
25275
25276
25276
25276
25277
25277
25278
25278
25278
25279
25279
25280
25280
25281
25281
25282
25282
25283
25283
25284
25284
25285
25285
25286
25286
25287
25287
25288
25288
25289
25289
25290
25290
25291
25291
25292
25292
25293
25293
25294
25294
25295
25295
25296
25296
25297
25297
25298
25298
25299
25300
25300
25300
25300
25301
25301
25301
25302
25302
25302
25303
25303
25303
25304
25304
25304
25305
25305
25305
25306
25306
25306
25307
25307
25307
25308
25308
25308
25309
25309
25309
25310
25310
25310
25311
25311
25311
25312
25312
25312
25313
25313
25313
25314
25314
25314
25315
25315
25315
25316
25316
25316
25317
25317
25317
25318
25318
25318
25319
25319
25319
25320
25320
25320
25321
25321
25322
25322
25322
25322
25323
25323
25323
25324
25324
25324
25325
25325
25325
25326
25326
25326
25327
25327
25327
25328
25328
25328
25329
25329
25329
25330
25330
25330
25331
25331
25331
25332
25332
25332
25333
25333
25333
25334
25334
25334
25335
25335
25335
25336
25336
25336
25337
25337
25337
25338
25338
25338
25339
25339
25339
25340
25340
25340
25341
25341
25341
25342
25342
25342
25343
25343
25344
25344
25344
25344
25345
25345
25345
25346
25346
25346
25347
25347
25347
25348
25348
25348
25349
25349
25349
25350
25350
25350
25351
25351
25351
25352
25352
25352
25353
25353
25353
25354
25354
25354
25355
25355
25355
25356
25356
25356
25357
25357
25357
25358
25358
25358
25359
25359
25359
25360
25360
25360
25361
25361
25361
25362
25362
25362
25363
25363
25363
25364
25364
25364
25365
25365
25366
25366
25366
25366
25367
25367
25367
25368
25368
25368
25369
25369
25369
25370
25370
25370
25371
25371
25371
25372
25372
25372
25373
25373
25373
25374
25374
25374
25375
25375
25375
25376
25376
25376
25377
25377
25377
25378
25378
25378
25379
25379
25379
25380
25380
25380
25381
25381
25381
25382
25382
25382
25383
25383
25383
25384
25384
25384
25385
25385
25385
25386
25386
25386
25387
25387
25388
25388
25388
25388
25389
25389
25389
25390
25390
25390
25391
25391
25391
25392
25392
25392
25393
25393
25393
25394
25394
25394
25395
25395
25395
25396
25396
25396
25397
25397
25397
25398
25398
25398
25399
25399
25399
25400
25400
25400
25401
25401
25401
25402
25402
25402
25403
25403
25403
25404
25404
25404
25405
25405
25405
25406
25406
25406
25407
25407
25407
25408
25408
25408
25409
25409
25410
25410
25410
25410
25411
25411
25411
25412
25412
25412
25413
25413
25413
25414
25414
25414
25415
25415
25415
25416
25416
25416
25417
25417
25417
25418
25418
25418
25419
25419
25419
25420
25420
25420
25421
25421
25421
25422
25422
25422
25423
25423
25423
25424
25424
25424
25425
25425
25425
25426
25426
25426
25427
25427
25427
25428
25428
25428
25429
25429
25429
25430
25430
25430
25431
25431
25432
25432
25432
25432
25433
25433
25433
25434
25434
25434
25435
25435
25435
25436
25436
25436
25437
25437
25437
25438
25438
25438
25439
25439
25439
25440
25440
25440
25441
25441
25441
25442
25442
25442
25443
25443
25443
25444
25444
25444
25445
25445
25445
25446
25446
25446
25447
25447
25447
25448
25448
25448
25449
25449
25449
25450
25450
25450
25451
25451
25451
25452
25452
25452
25453
25453
25454
25454
25454
25454
25455
25455
25455
25456
25456
25456
25457
25457
25457
25458
25458
25458
25459
25459
25459
25460
25460
25460
25461
25461
25461
25462
25462
25462
25463
25463
25463
25464
25464
25464
25465
25465
25465
25466
25466
25466
25467
25467
25467
25468
25468
25468
25469
25469
25469
25470
25470
25470
25471
25471
25471
25472
25472
25472
25473
25473
25473
25474
25474
25474
25475
25475
25476
25476
25476
25476
25477
25477
25477
25478
25478
25478
25479
25479
25479
25480
25480
25480
25481
25481
25481
25482
25482
25482
25483
25483
25483
25484
25484
25484
25485
25485
25485
25486
25486
25486
25487
25487
25487
25488
25488
25488
25489
25489
25489
25490
25490
25490
25491
25491
25491
25492
25492
25492
25493
25493
25493
25494
25494
25494
25495
25495
25495
25496
25496
25496
25497
25497
25498
25498
25498
25499
25499
25500
25500
25501
25501
25502
25502
25503
25503
25504
25504
25505
25505
25506
25506
25507
25507
25508
25508
25509
25509
25510
25510
25511
25511
25512
25512
25513
25513
25514
25514
25515
25515
25516
25516
25517
25517
25518
25518
25519
25520
25520
25520
25520
25521
25521
25521
25522
25522
25522
25523
25523
25523
25524
25524
25524
25525
25525
25525
25526
25526
25526
25527
25527
25527
25528
25528
25528
25529
25529
25529
25530
25530
25530
25531
25531
25531
25532
25532
25532
25533
25533
25533
25534
25534
25534
25535
25535
25535
25536
25536
25536
25537
25537
25537
25538
25538
25538
25539
25539
25539
25540
25540
25540
25541
25541
25542
25542
25542
25542
25543
25543
25543
25544
25544
25544
25545
25545
25545
25546
25546
25546
25547
25547
25547
25548
25548
25548
25549
25549
25549
25550
25550
25550
25551
25551
25551
25552
25552
25552
25553
25553
25553
25554
25554
25554
25555
25555
25555
25556
25556
25556
25557
25557
25557
25558
25558
25558
25559
25559
25559
25560
25560
25560
25561
25561
25561
25562
25562
25562
25563
25563
25564
25564
25564
25564
25565
25565
25565
25566
25566
25566
25567
25567
25567
25568
25568
25568
25569
25569
25569
25570
25570
25570
25571
25571
25571
25572
25572
25572
25573
25573
25573
25574
25574
25574
25575
25575
25575
25576
25576
25576
25577
25577
25577
25578
25578
25578
25579
25579
25579
25580
25580
25580
25581
25581
25581
25582
25582
25582
25583
25583
25583
25584
25584
25584
25585
25585
25586
25586
25586
25586
25587
25587
25587
25588
25588
25588
25589
25589
25589
25590
25590
25590
25591
25591
25591
25592
25592
25592
25593
25593
25593
25594
25594
25594
25595
25595
25595
25596
25596
25596
25597
25597
25597
25598
25598
25598
25599
25599
25599
25600
25600
25600
25601
25601
25601
25602
25602
25602
25603
25603
25603
25604
25604
25604
25605
25605
25605
25606
25606
25606
25607
25607
25608
25608
25608
25608
25609
25609
25609
25610
25610
25610
25611
25611
25611
25612
25612
25612
25613
25613
25613
25614
25614
25614
25615
25615
25615
25616
25616
25616
25617
25617
25617
25618
25618
25618
25619
25619
25619
25620
25620
25620
25621
25621
25621
25622
25622
25622
25623
25623
25623
25624
25624
25624
25625
25625
25625
25626
25626
25626
25627
25627
25627
25628
25628
25628
25629
25629
25630
25630
25630
25630
25631
25631
25631
25632
25632
25632
25633
25633
25633
25634
25634
25634
25635
25635
25635
25636
25636
25636
25637
25637
25637
25638
25638
25638
25639
25639
25639
25640
25640
25640
25641
25641
25641
25642
25642
25642
25643
25643
25643
25644
25644
25644
25645
25645
25645
25646
25646
25646
25647
25647
25647
25648
25648
25648
25649
25649
25649
25650
25650
25650
25651
25651
25652
25652
25652
25652
25653
25653
25653
25654
25654
25654
25655
25655
25655
25656
25656
25656
25657
25657
25657
25658
25658
25658
25659
25659
25659
25660
25660
25660
25661
25661
25661
25662
25662
25662
25663
25663
25663
25664
25664
25664
25665
25665
25665
25666
25666
25666
25667
25667
25667
25668
25668
25668
25669
25669
25669
25670
25670
25670
25671
25671
25671
25672
25672
25672
25673
25673
25674
25674
25674
25674
25675
25675
25675
25676
25676
25676
25677
25677
25677
25678
25678
25678
25679
25679
25679
25680
25680
25680
25681
25681
25681
25682
25682
25682
25683
25683
25683
25684
25684
25684
25685
25685
25685
25686
25686
25686
25687
25687
25687
25688
25688
25688
25689
25689
25689
25690
25690
25690
25691
25691
25691
25692
25692
25692
25693
25693
25693
25694
25694
25694
25695
25695
25696
25696
25696
25696
25697
25697
25697
25698
25698
25698
25699
25699
25699
25700
25700
25700
25701
25701
25701
25702
25702
25702
25703
25703
25703
25704
25704
25704
25705
25705
25705
25706
25706
25706
25707
25707
25707
25708
25708
25708
25709
25709
25709
25710
25710
25710
25711
25711
25711
25712
25712
25712
25713
25713
25713
25714
25714
25714
25715
25715
25715
25716
25716
25716
25717
25717
25718
25718
25718
25719
25719
25720
25720
25721
25721
25722
25722
25723
25723
25724
25724
25725
25725
25726
25726
25727
25727
25728
25728
25729
25729
25730
25730
25731
25731
25732
25732
25733
25733
25734
25734
25735
25735
25736
25736
25737
25737
25738
25738
25739
25740
25740
25740
25740
25741
25741
25741
25742
25742
25742
25743
25743
25743
25744
25744
25744
25745
25745
25745
25746
25746
25746
25747
25747
25747
25748
25748
25748
25749
25749
25749
25750
25750
25750
25751
25751
25751
25752
25752
25752
25753
25753
25753
25754
25754
25754
25755
25755
25755
25756
25756
25756
25757
25757
25757
25758
25758
25758
25759
25759
25759
25760
25760
25760
25761
25761
25762
25762
25762
25762
25763
25763
25763
25764
25764
25764
25765
25765
25765
25766
25766
25766
25767
25767
25767
25768
25768
25768
25769
25769
25769
25770
25770
25770
25771
25771
25771
25772
25772
25772
25773
25773
25773
25774
25774
25774
25775
25775
25775
25776
25776
25776
25777
25777
25777
25778
25778
25778
25779
25779
25779
25780
25780
25780
25781
25781
25781
25782
25782
25782
25783
25783
25784
25784
25784
25784
25785
25785
25785
25786
25786
25786
25787
25787
25787
25788
25788
25788
25789
25789
25789
25790
25790
25790
25791
25791
25791
25792
25792
25792
25793
25793
25793
25794
25794
25794
25795
25795
25795
25796
25796
25796
25797
25797
25797
25798
25798
25798
25799
25799
25799
25800
25800
25800
25801
25801
25801
25802
25802
25802
25803
25803
25803
25804
25804
25804
25805
25805
25806
25806
25806
25806
25807
25807
25807
25808
25808
25808
25809
25809
25809
25810
25810
25810
25811
25811
25811
25812
25812
25812
25813
25813
25813
25814
25814
25814
25815
25815
25815
25816
25816
25816
25817
25817
25817
25818
25818
25818
25819
25819
25819
25820
25820
25820
25821
25821
25821
25822
25822
25822
25823
25823
25823
25824
25824
25824
25825
25825
25825
25826
25826
25826
25827
25827
25828
25828
25828
25828
25829
25829
25829
25830
25830
25830
25831
25831
25831
25832
25832
25832
25833
25833
25833
25834
25834
25834
25835
25835
25835
25836
25836
25836
25837
25837
25837
25838
25838
25838
25839
25839
25839
25840
25840
25840
25841
25841
25841
25842
25842
25842
25843
25843
25843
25844
25844
25844
25845
25845
25845
25846
25846
25846
25847
25847
25847
25848
25848
25848
25849
25849
25850
25850
25850
25850
25851
25851
25851
25852
25852
25852
25853
25853
25853
25854
25854
25854
25855
25855
25855
25856
25856
25856
25857
25857
25857
25858
25858
25858
25859
25859
25859
25860
25860
25860
25861
25861
25861
25862
25862
25862
25863
25863
25863
25864
25864
25864
25865
25865
25865
25866
25866
25866
25867
25867
25867
25868
25868
25868
25869
25869
25869
25870
25870
25870
25871
25871
25872
25872
25872
25872
25873
25873
25873
25874
25874
25874
25875
25875
25875
25876
25876
25876
25877
25877
25877
25878
25878
25878
25879
25879
25879
25880
25880
25880
25881
25881
25881
25882
25882
25882
25883
25883
25883
25884
25884
25884
25885
25885
25885
25886
25886
25886
25887
25887
25887
25888
25888
25888
25889
25889
25889
25890
25890
25890
25891
25891
25891
25892
25892
25892
25893
25893
25894
25894
25894
25894
25895
25895
25895
25896
25896
25896
25897
25897
25897
25898
25898
25898
25899
25899
25899
25900
25900
25900
25901
25901
25901
25902
25902
25902
25903
25903
25903
25904
25904
25904
25905
25905
25905
25906
25906
25906
25907
25907
25907
25908
25908
25908
25909
25909
25909
25910
25910
25910
25911
25911
25911
25912
25912
25912
25913
25913
25913
25914
25914
25914
25915
25915
25916
25916
25916
25916
25917
25917
25917
25918
25918
25918
25919
25919
25919
25920
25920
25920
25921
25921
25921
25922
25922
25922
25923
25923
25923
25924
25924
25924
25925
25925
25925
25926
25926
25926
25927
25927
25927
25928
25928
25928
25929
25929
25929
25930
25930
25930
25931
25931
25931
25932
25932
25932
25933
25933
25933
25934
25934
25934
25935
25935
25935
25936
25936
25936
25937
25937
25938
25938
25938
25939
25939
25940
25940
25941
25941
25942
25942
25943
25943
25944
25944
25945
25945
25946
25946
25947
25947
25948
25948
25949
25949
25950
25950
25951
25951
25952
25952
25953
25953
25954
25954
25955
25955
25956
25956
25957
25957
25958
25958
25959
25960
25960
25960
25960
25961
25961
25961
25962
25962
25962
25963
25963
25963
25964
25964
25964
25965
25965
25965
25966
25966
25966
25967
25967
25967
25968
25968
25968
25969
25969
25969
25970
25970
25970
25971
25971
25971
25972
25972
25972
25973
25973
25973
25974
25974
25974
25975
25975
25975
25976
25976
25976
25977
25977
25977
25978
25978
25978
25979
25979
25979
25980
25980
25980
25981
25981
25982
25982
25982
25982
25983
25983
25983
25984
25984
25984
25985
25985
25985
25986
25986
25986
25987
25987
25987
25988
25988
25988
25989
25989
25989
25990
25990
25990
25991
25991
25991
25992
25992
25992
25993
25993
25993
25994
25994
25994
25995
25995
25995
25996
25996
25996
25997
25997
25997
25998
25998
25998
25999
25999
25999
26000
26000
26000
26001
26001
26001
26002
26002
26002
26003
26003
26004
26004
26004
26004
26005
26005
26005
26006
26006
26006
26007
26007
26007
26008
26008
26008
26009
26009
26009
26010
26010
26010
26011
26011
26011
26012
26012
26012
26013
26013
26013
26014
26014
26014
26015
26015
26015
26016
26016
26016
26017
26017
26017
26018
26018
26018
26019
26019
26019
26020
26020
26020
26021
26021
26021
26022
26022
26022
26023
26023
26023
26024
26024
26024
26025
26025
26026
26026
26026
26026
26027
26027
26027
26028
26028
26028
26029
26029
26029
26030
26030
26030
26031
26031
26031
26032
26032
26032
26033
26033
26033
26034
26034
26034
26035
26035
26035
26036
26036
26036
26037
26037
26037
26038
26038
26038
26039
26039
26039
26040
26040
26040
26041
26041
26041
26042
26042
26042
26043
26043
26043
26044
26044
26044
26045
26045
26045
26046
26046
26046
26047
26047
26048
26048
26048
26048
26049
26049
26049
26050
26050
26050
26051
26051
26051
26052
26052
26052
26053
26053
26053
26054
26054
26054
26055
26055
26055
26056
26056
26056
26057
26057
26057
26058
26058
26058
26059
26059
26059
26060
26060
26060
26061
26061
26061
26062
26062
26062
26063
26063
26063
26064
26064
26064
26065
26065
26065
26066
26066
26066
26067
26067
26067
26068
26068
26068
26069
26069
26070
26070
26070
26070
26071
26071
26071
26072
26072
26072
26073
26073
26073
26074
26074
26074
26075
26075
26075
26076
26076
26076
26077
26077
26077
26078
26078
26078
26079
26079
26079
26080
26080
26080
26081
26081
26081
26082
26082
26082
26083
26083
26083
26084
26084
26084
26085
26085
26085
26086
26086
26086
26087
26087
26087
26088
26088
26088
26089
26089
26089
26090
26090
26090
26091
26091
26092
26092
26092
26092
26093
26093
26093
26094
26094
26094
26095
26095
26095
26096
26096
26096
26097
26097
26097
26098
26098
26098
26099
26099
26099
26100
26100
26100
26101
26101
26101
26102
26102
26102
26103
26103
26103
26104
26104
26104
26105
26105
26105
26106
26106
26106
26107
26107
26107
26108
26108
26108
26109
26109
26109
26110
26110
26110
26111
26111
26111
26112
26112
26112
26113
26113
26114
26114
26114
26114
26115
26115
26115
26116
26116
26116
26117
26117
26117
26118
26118
26118
26119
26119
26119
26120
26120
26120
26121
26121
26121
26122
26122
26122
26123
26123
26123
26124
26124
26124
26125
26125
26125
26126
26126
26126
26127
26127
26127
26128
26128
26128
26129
26129
26129
26130
26130
26130
26131
26131
26131
26132
26132
26132
26133
26133
26133
26134
26134
26134
26135
26135
26136
26136
26136
26136
26137
26137
26137
26138
26138
26138
26139
26139
26139
26140
26140
26140
26141
26141
26141
26142
26142
26142
26143
26143
26143
26144
26144
26144
26145
26145
26145
26146
26146
26146
26147
26147
26147
26148
26148
26148
26149
26149
26149
26150
26150
26150
26151
26151
26151
26152
26152
26152
26153
26153
26153
26154
26154
26154
26155
26155
26155
26156
26156
26156
26157
26157
26158
26158
26158
26159
26159
26160
26160
26161
26161
26162
26162
26163
26163
26164
26164
26165
26165
26166
26166
26167
26167
26168
26168
26169
26169
26170
26170
26171
26171
26172
26172
26173
26173
26174
26174
26175
26175
26176
26176
26177
26177
26178
26178
26179
26180
26180
26180
26180
26181
26181
26181
26182
26182
26182
26183
26183
26183
26184
26184
26184
26185
26185
26185
26186
26186
26186
26187
26187
26187
26188
26188
26188
26189
26189
26189
26190
26190
26190
26191
26191
26191
26192
26192
26192
26193
26193
26193
26194
26194
26194
26195
26195
26195
26196
26196
26196
26197
26197
26197
26198
26198
26198
26199
26199
26199
26200
26200
26200
26201
26201
26202
26202
26202
26202
26203
26203
26203
26204
26204
26204
26205
26205
26205
26206
26206
26206
26207
26207
26207
26208
26208
26208
26209
26209
26209
26210
26210
26210
26211
26211
26211
26212
26212
26212
26213
26213
26213
26214
26214
26214
26215
26215
26215
26216
26216
26216
26217
26217
26217
26218
26218
26218
26219
26219
26219
26220
26220
26220
26221
26221
26221
26222
26222
26222
26223
26223
26224
26224
26224
26224
26225
26225
26225
26226
26226
26226
26227
26227
26227
26228
26228
26228
26229
26229
26229
26230
26230
26230
26231
26231
26231
26232
26232
26232
26233
26233
26233
26234
26234
26234
26235
26235
26235
26236
26236
26236
26237
26237
26237
26238
26238
26238
26239
26239
26239
26240
26240
26240
26241
26241
26241
26242
26242
26242
26243
26243
26243
26244
26244
26244
26245
26245
26246
26246
26246
26246
26247
26247
26247
26248
26248
26248
26249
26249
26249
26250
26250
26250
26251
26251
26251
26252
26252
26252
26253
26253
26253
26254
26254
26254
26255
26255
26255
26256
26256
26256
26257
26257
26257
26258
26258
26258
26259
26259
26259
26260
26260
26260
26261
26261
26261
26262
26262
26262
26263
26263
26263
26264
26264
26264
26265
26265
26265
26266
26266
26266
26267
26267
26268
26268
26268
26268
26269
26269
26269
26270
26270
26270
26271
26271
26271
26272
26272
26272
26273
26273
26273
26274
26274
26274
26275
26275
26275
26276
26276
26276
26277
26277
26277
26278
26278
26278
26279
26279
26279
26280
26280
26280
26281
26281
26281
26282
26282
26282
26283
26283
26283
26284
26284
26284
26285
26285
26285
26286
26286
26286
26287
26287
26287
26288
26288
26288
26289
26289
26290
26290
26290
26290
26291
26291
26291
26292
26292
26292
26293
26293
26293
26294
26294
26294
26295
26295
26295
26296
26296
26296
26297
26297
26297
26298
26298
26298
26299
26299
26299
26300
26300
26300
26301
26301
26301
26302
26302
26302
26303
26303
26303
26304
26304
26304
26305
26305
26305
26306
26306
26306
26307
26307
26307
26308
26308
26308
26309
26309
26309
26310
26310
26310
26311
26311
26312
26312
26312
26312
26313
26313
26313
26314
26314
26314
26315
26315
26315
26316
26316
26316
26317
26317
26317
26318
26318
26318
26319
26319
26319
26320
26320
26320
26321
26321
26321
26322
26322
26322
26323
26323
26323
26324
26324
26324
26325
26325
26325
26326
26326
26326
26327
26327
26327
26328
26328
26328
26329
26329
26329
26330
26330
26330
26331
26331
26331
26332
26332
26332
26333
26333
26334
26334
26334
26334
26335
26335
26335
26336
26336
26336
26337
26337
26337
26338
26338
26338
26339
26339
26339
26340
26340
26340
26341
26341
26341
26342
26342
26342
26343
26343
26343
26344
26344
26344
26345
26345
26345
26346
26346
26346
26347
26347
26347
26348
26348
26348
26349
26349
26349
26350
26350
26350
26351
26351
26351
26352
26352
26352
26353
26353
26353
26354
26354
26354
26355
26355
26356
26356
26356
26356
26357
26357
26357
26358
26358
26358
26359
26359
26359
26360
26360
26360
26361
26361
26361
26362
26362
26362
26363
26363
26363
26364
26364
26364
26365
26365
26365
26366
26366
26366
26367
26367
26367
26368
26368
26368
26369
26369
26369
26370
26370
26370
26371
26371
26371
26372
26372
26372
26373
26373
26373
26374
26374
26374
26375
26375
26375
26376
26376
26376
26377
26377
26378
26378
26378
26379
26379
26380
26380
26381
26381
26382
26382
26383
26383
26384
26384
26385
26385
26386
26386
26387
26387
26388
26388
26389
26389
26390
26390
26391
26391
26392
26392
26393
26393
26394
26394
26395
26395
26396
26396
26397
26397
26398
26398
26399
26400
26400
26400
26400
26401
26401
26401
26402
26402
26402
26403
26403
26403
26404
26404
26404
26405
26405
26405
26406
26406
26406
26407
26407
26407
26408
26408
26408
26409
26409
26409
26410
26410
26410
26411
26411
26411
26412
26412
26412
26413
26413
26413
26414
26414
26414
26415
26415
26415
26416
26416
26416
26417
26417
26417
26418
26418
26418
26419
26419
26419
26420
26420
26420
26421
26421
26422
26422
26422
26422
26423
26423
26423
26424
26424
26424
26425
26425
26425
26426
26426
26426
26427
26427
26427
26428
26428
26428
26429
26429
26429
26430
26430
26430
26431
26431
26431
26432
26432
26432
26433
26433
26433
26434
26434
26434
26435
26435
26435
26436
26436
26436
26437
26437
26437
26438
26438
26438
26439
26439
26439
26440
26440
26440
26441
26441
26441
26442
26442
26442
26443
26443
26444
26444
26444
26444
26445
26445
26445
26446
26446
26446
26447
26447
26447
26448
26448
26448
26449
26449
26449
26450
26450
26450
26451
26451
26451
26452
26452
26452
26453
26453
26453
26454
26454
26454
26455
26455
26455
26456
26456
26456
26457
26457
26457
26458
26458
26458
26459
26459
26459
26460
26460
26460
26461
26461
26461
26462
26462
26462
26463
26463
26463
26464
26464
26464
26465
26465
26466
26466
26466
26466
26467
26467
26467
26468
26468
26468
26469
26469
26469
26470
26470
26470
26471
26471
26471
26472
26472
26472
26473
26473
26473
26474
26474
26474
26475
26475
26475
26476
26476
26476
26477
26477
26477
26478
26478
26478
26479
26479
26479
26480
26480
26480
26481
26481
26481
26482
26482
26482
26483
26483
26483
26484
26484
26484
26485
26485
26485
26486
26486
26486
26487
26487
26488
26488
26488
26488
26489
26489
26489
26490
26490
26490
26491
26491
26491
26492
26492
26492
26493
26493
26493
26494
26494
26494
26495
26495
26495
26496
26496
26496
26497
26497
26497
26498
26498
26498
26499
26499
26499
26500
26500
26500
26501
26501
26501
26502
26502
26502
26503
26503
26503
26504
26504
26504
26505
26505
26505
26506
26506
26506
26507
26507
26507
26508
26508
26508
26509
26509
26510
26510
26510
26510
26511
26511
26511
26512
26512
26512
26513
26513
26513
26514
26514
26514
26515
26515
26515
26516
26516
26516
26517
26517
26517
26518
26518
26518
26519
26519
26519
26520
26520
26520
26521
26521
26521
26522
26522
26522
26523
26523
26523
26524
26524
26524
26525
26525
26525
26526
26526
26526
26527
26527
26527
26528
26528
26528
26529
26529
26529
26530
26530
26530
26531
26531
26532
26532
26532
26532
26533
26533
26533
26534
26534
26534
26535
26535
26535
26536
26536
26536
26537
26537
26537
26538
26538
26538
26539
26539
26539
26540
26540
26540
26541
26541
26541
26542
26542
26542
26543
26543
26543
26544
26544
26544
26545
26545
26545
26546
26546
26546
26547
26547
26547
26548
26548
26548
26549
26549
26549
26550
26550
26550
26551
26551
26551
26552
26552
26552
26553
26553
26554
26554
26554
26554
26555
26555
26555
26556
26556
26556
26557
26557
26557
26558
26558
26558
26559
26559
26559
26560
26560
26560
26561
26561
26561
26562
26562
26562
26563
26563
26563
26564
26564
26564
26565
26565
26565
26566
26566
26566
26567
26567
26567
26568
26568
26568
26569
26569
26569
26570
26570
26570
26571
26571
26571
26572
26572
26572
26573
26573
26573
26574
26574
26574
26575
26575
26576
26576
26576
26576
26577
26577
26577
26578
26578
26578
26579
26579
26579
26580
26580
26580
26581
26581
26581
26582
26582
26582
26583
26583
26583
26584
26584
26584
26585
26585
26585
26586
26586
26586
26587
26587
26587
26588
26588
26588
26589
26589
26589
26590
26590
26590
26591
26591
26591
26592
26592
26592
26593
26593
26593
26594
26594
26594
26595
26595
26595
26596
26596
26596
26597
26597
26598
26598
26598
26599
26599
26600
26600
26601
26601
26602
26602
26603
26603
26604
26604
26605
26605
26606
26606
26607
26607
26608
26608
26609
26609
26610
26610
26611
26611
26612
26612
26613
26613
26614
26614
26615
26615
26616
26616
26617
26617
26618
26618
26619
26620
26620
26620
26620
26621
26621
26621
26622
26622
26622
26623
26623
26623
26624
26624
26624
26625
26625
26625
26626
26626
26626
26627
26627
26627
26628
26628
26628
26629
26629
26629
26630
26630
26630
26631
26631
26631
26632
26632
26632
26633
26633
26633
26634
26634
26634
26635
26635
26635
26636
26636
26636
26637
26637
26637
26638
26638
26638
26639
26639
26639
26640
26640
26640
26641
26641
26642
26642
26642
26642
26643
26643
26643
26644
26644
26644
26645
26645
26645
26646
26646
26646
26647
26647
26647
26648
26648
26648
26649
26649
26649
26650
26650
26650
26651
26651
26651
26652
26652
26652
26653
26653
26653
26654
26654
26654
26655
26655
26655
26656
26656
26656
26657
26657
26657
26658
26658
26658
26659
26659
26659
26660
26660
26660
26661
26661
26661
26662
26662
26662
26663
26663
26664
26664
26664
26664
26665
26665
26665
26666
26666
26666
26667
26667
26667
26668
26668
26668
26669
26669
26669
26670
26670
26670
26671
26671
26671
26672
26672
26672
26673
26673
26673
26674
26674
26674
26675
26675
26675
26676
26676
26676
26677
26677
26677
26678
26678
26678
26679
26679
26679
26680
26680
26680
26681
26681
26681
26682
26682
26682
26683
26683
26683
26684
26684
26684
26685
26685
26686
26686
26686
26686
26687
26687
26687
26688
26688
26688
26689
26689
26689
26690
26690
26690
26691
26691
26691
26692
26692
26692
26693
26693
26693
26694
26694
26694
26695
26695
26695
26696
26696
26696
26697
26697
26697
26698
26698
26698
26699
26699
26699
26700
26700
26700
26701
26701
26701
26702
26702
26702
26703
26703
26703
26704
26704
26704
26705
26705
26705
26706
26706
26706
26707
26707
26708
26708
26708
26708
26709
26709
26709
26710
26710
26710
26711
26711
26711
26712
26712
26712
26713
26713
26713
26714
26714
26714
26715
26715
26715
26716
26716
26716
26717
26717
26717
26718
26718
26718
26719
26719
26719
26720
26720
26720
26721
26721
26721
26722
26722
26722
26723
26723
26723
26724
26724
26724
26725
26725
26725
26726
26726
26726
26727
26727
26727
26728
26728
26728
26729
26729
26730
26730
26730
26730
26731
26731
26731
26732
26732
26732
26733
26733
26733
26734
26734
26734
26735
26735
26735
26736
26736
26736
26737
26737
26737
26738
26738
26738
26739
26739
26739
26740
26740
26740
26741
26741
26741
26742
26742
26742
26743
26743
26743
26744
26744
26744
26745
26745
26745
26746
26746
26746
26747
26747
26747
26748
26748
26748
26749
26749
26749
26750
26750
26750
26751
26751
26752
26752
26752
26752
26753
26753
26753
26754
26754
26754
26755
26755
26755
26756
26756
26756
26757
26757
26757
26758
26758
26758
26759
26759
26759
26760
26760
26760
26761
26761
26761
26762
26762
26762
26763
26763
26763
26764
26764
26764
26765
26765
26765
26766
26766
26766
26767
26767
26767
26768
26768
26768
26769
26769
26769
26770
26770
26770
26771
26771
26771
26772
26772
26772
26773
26773
26774
26774
26774
26774
26775
26775
26775
26776
26776
26776
26777
26777
26777
26778
26778
26778
26779
26779
26779
26780
26780
26780
26781
26781
26781
26782
26782
26782
26783
26783
26783
26784
26784
26784
26785
26785
26785
26786
26786
26786
26787
26787
26787
26788
26788
26788
26789
26789
26789
26790
26790
26790
26791
26791
26791
26792
26792
26792
26793
26793
26793
26794
26794
26794
26795
26795
26796
26796
26796
26796
26797
26797
26797
26798
26798
26798
26799
26799
26799
26800
26800
26800
26801
26801
26801
26802
26802
26802
26803
26803
26803
26804
26804
26804
26805
26805
26805
26806
26806
26806
26807
26807
26807
26808
26808
26808
26809
26809
26809
26810
26810
26810
26811
26811
26811
26812
26812
26812
26813
26813
26813
26814
26814
26814
26815
26815
26815
26816
26816
26816
26817
26817
26818
26818
26818
26819
26819
26820
26820
26821
26821
26822
26822
26823
26823
26824
26824
26825
26825
26826
26826
26827
26827
26828
26828
26829
26829
26830
26830
26831
26831
26832
26832
26833
26833
26834
26834
26835
26835
26836
26836
26837
26837
26838
26838
26839
26840
26840
26840
26840
26841
26841
26841
26842
26842
26842
26843
26843
26843
26844
26844
26844
26845
26845
26845
26846
26846
26846
26847
26847
26847
26848
26848
26848
26849
26849
26849
26850
26850
26850
26851
26851
26851
26852
26852
26852
26853
26853
26853
26854
26854
26854
26855
26855
26855
26856
26856
26856
26857
26857
26857
26858
26858
26858
26859
26859
26859
26860
26860
26860
26861
26861
26862
26862
26862
26862
26863
26863
26863
26864
26864
26864
26865
26865
26865
26866
26866
26866
26867
26867
26867
26868
26868
26868
26869
26869
26869
26870
26870
26870
26871
26871
26871
26872
26872
26872
26873
26873
26873
26874
26874
26874
26875
26875
26875
26876
26876
26876
26877
26877
26877
26878
26878
26878
26879
26879
26879
26880
26880
26880
26881
26881
26881
26882
26882
26882
26883
26883
26884
26884
26884
26884
26885
26885
26885
26886
26886
26886
26887
26887
26887
26888
26888
26888
26889
26889
26889
26890
26890
26890
26891
26891
26891
26892
26892
26892
26893
26893
26893
26894
26894
26894
26895
26895
26895
26896
26896
26896
26897
26897
26897
26898
26898
26898
26899
26899
26899
26900
26900
26900
26901
26901
26901
26902
26902
26902
26903
26903
26903
26904
26904
26904
26905
26905
26906
26906
26906
26906
26907
26907
26907
26908
26908
26908
26909
26909
26909
26910
26910
26910
26911
26911
26911
26912
26912
26912
26913
26913
26913
26914
26914
26914
26915
26915
26915
26916
26916
26916
26917
26917
26917
26918
26918
26918
26919
26919
26919
26920
26920
26920
26921
26921
26921
26922
26922
26922
26923
26923
26923
26924
26924
26924
26925
26925
26925
26926
26926
26926
26927
26927
26928
26928
26928
26928
26929
26929
26929
26930
26930
26930
26931
26931
26931
26932
26932
26932
26933
26933
26933
26934
26934
26934
26935
26935
26935
26936
26936
26936
26937
26937
26937
26938
26938
26938
26939
26939
26939
26940
26940
26940
26941
26941
26941
26942
26942
26942
26943
26943
26943
26944
26944
26944
26945
26945
26945
26946
26946
26946
26947
26947
26947
26948
26948
26948
26949
26949
26950
26950
26950
26950
26951
26951
26951
26952
26952
26952
26953
26953
26953
26954
26954
26954
26955
26955
26955
26956
26956
26956
26957
26957
26957
26958
26958
26958
26959
26959
26959
26960
26960
26960
26961
26961
26961
26962
26962
26962
26963
26963
26963
26964
26964
26964
26965
26965
26965
26966
26966
26966
26967
26967
26967
26968
26968
26968
26969
26969
26969
26970
26970
26970
26971
26971
26972
26972
26972
26972
26973
26973
26973
26974
26974
26974
26975
26975
26975
26976
26976
26976
26977
26977
26977
26978
26978
26978
26979
26979
26979
26980
26980
26980
26981
26981
26981
26982
26982
26982
26983
26983
26983
26984
26984
26984
26985
26985
26985
26986
26986
26986
26987
26987
26987
26988
26988
26988
26989
26989
26989
26990
26990
26990
26991
26991
26991
26992
26992
26992
26993
26993
26994
26994
26994
26994
26995
26995
26995
26996
26996
26996
26997
26997
26997
26998
26998
26998
26999
26999
26999
27000
27000
27000
27001
27001
27001
27002
27002
27002
27003
27003
27003
27004
27004
27004
27005
27005
27005
27006
27006
27006
27007
27007
27007
27008
27008
27008
27009
27009
27009
27010
27010
27010
27011
27011
27011
27012
27012
27012
27013
27013
27013
27014
27014
27014
27015
27015
27016
27016
27016
27016
27017
27017
27017
27018
27018
27018
27019
27019
27019
27020
27020
27020
27021
27021
27021
27022
27022
27022
27023
27023
27023
27024
27024
27024
27025
27025
27025
27026
27026
27026
27027
27027
27027
27028
27028
27028
27029
27029
27029
27030
27030
27030
27031
27031
27031
27032
27032
27032
27033
27033
27033
27034
27034
27034
27035
27035
27035
27036
27036
27036
27037
27037
27038
27038
27038
27039
27039
27040
27040
27041
27041
27042
27042
27043
27043
27044
27044
27045
27045
27046
27046
27047
27047
27048
27048
27049
27049
27050
27050
27051
27051
27052
27052
27053
27053
27054
27054
27055
27055
27056
27056
27057
27057
27058
27058
27059
27060
27060
27060
27060
27061
27061
27061
27062
27062
27062
27063
27063
27063
27064
27064
27064
27065
27065
27065
27066
27066
27066
27067
27067
27067
27068
27068
27068
27069
27069
27069
27070
27070
27070
27071
27071
27071
27072
27072
27072
27073
27073
27073
27074
27074
27074
27075
27075
27075
27076
27076
27076
27077
27077
27077
27078
27078
27078
27079
27079
27079
27080
27080
27080
27081
27081
27082
27082
27082
27082
27083
27083
27083
27084
27084
27084
27085
27085
27085
27086
27086
27086
27087
27087
27087
27088
27088
27088
27089
27089
27089
27090
27090
27090
27091
27091
27091
27092
27092
27092
27093
27093
27093
27094
27094
27094
27095
27095
27095
27096
27096
27096
27097
27097
27097
27098
27098
27098
27099
27099
27099
27100
27100
27100
27101
27101
27101
27102
27102
27102
27103
27103
27104
27104
27104
27104
27105
27105
27105
27106
27106
27106
27107
27107
27107
27108
27108
27108
27109
27109
27109
27110
27110
27110
27111
27111
27111
27112
27112
27112
27113
27113
27113
27114
27114
27114
27115
27115
27115
27116
27116
27116
27117
27117
27117
27118
27118
27118
27119
27119
27119
27120
27120
27120
27121
27121
27121
27122
27122
27122
27123
27123
27123
27124
27124
27124
27125
27125
27126
27126
27126
27126
27127
27127
27127
27128
27128
27128
27129
27129
27129
27130
27130
27130
27131
27131
27131
27132
27132
27132
27133
27133
27133
27134
27134
27134
27135
27135
27135
27136
27136
27136
27137
27137
27137
27138
27138
27138
27139
27139
27139
27140
27140
27140
27141
27141
27141
27142
27142
27142
27143
27143
27143
27144
27144
27144
27145
27145
27145
27146
27146
27146
27147
27147
27148
27148
27148
27148
27149
27149
27149
27150
27150
27150
27151
27151
27151
27152
27152
27152
27153
27153
27153
27154
27154
27154
27155
27155
27155
27156
27156
27156
27157
27157
27157
27158
27158
27158
27159
27159
27159
27160
27160
27160
27161
27161
27161
27162
27162
27162
27163
27163
27163
27164
27164
27164
27165
27165
27165
27166
27166
27166
27167
27167
27167
27168
27168
27168
27169
27169
27170
27170
27170
27170
27171
27171
27171
27172
27172
27172
27173
27173
27173
27174
27174
27174
27175
27175
27175
27176
27176
27176
27177
27177
27177
27178
27178
27178
27179
27179
27179
27180
27180
27180
27181
27181
27181
27182
27182
27182
27183
27183
27183
27184
27184
27184
27185
27185
27185
27186
27186
27186
27187
27187
27187
27188
27188
27188
27189
27189
27189
27190
27190
27190
27191
27191
27192
27192
27192
27192
27193
27193
27193
27194
27194
27194
27195
27195
27195
27196
27196
27196
27197
27197
27197
27198
27198
27198
27199
27199
27199
27200
27200
27200
27201
27201
27201
27202
27202
27202
27203
27203
27203
27204
27204
27204
27205
27205
27205
27206
27206
27206
27207
27207
27207
27208
27208
27208
27209
27209
27209
27210
27210
27210
27211
27211
27211
27212
27212
27212
27213
27213
27214
27214
27214
27214
27215
27215
27215
27216
27216
27216
27217
27217
27217
27218
27218
27218
27219
27219
27219
27220
27220
27220
27221
27221
27221
27222
27222
27222
27223
27223
27223
27224
27224
27224
27225
27225
27225
27226
27226
27226
27227
27227
27227
27228
27228
27228
27229
27229
27229
27230
27230
27230
27231
27231
27231
27232
27232
27232
27233
27233
27233
27234
27234
27234
27235
27235
27236
27236
27236
27236
27237
27237
27237
27238
27238
27238
27239
27239
27239
27240
27240
27240
27241
27241
27241
27242
27242
27242
27243
27243
27243
27244
27244
27244
27245
27245
27245
27246
27246
27246
27247
27247
27247
27248
27248
27248
27249
27249
27249
27250
27250
27250
27251
27251
27251
27252
27252
27252
27253
27253
27253
27254
27254
27254
27255
27255
27255
27256
27256
27256
27257
27257
27258
27258
27258
27259
27259
27260
27260
27261
27261
27262
27262
27263
27263
27264
27264
27265
27265
27266
27266
27267
27267
27268
27268
27269
27269
27270
27270
27271
27271
27272
27272
27273
27273
27274
27274
27275
27275
27276
27276
27277
27277
27278
27278
27279
27280
27280
27280
27280
27281
27281
27281
27282
27282
27282
27283
27283
27283
27284
27284
27284
27285
27285
27285
27286
27286
27286
27287
27287
27287
27288
27288
27288
27289
27289
27289
27290
27290
27290
27291
27291
27291
27292
27292
27292
27293
27293
27293
27294
27294
27294
27295
27295
27295
27296
27296
27296
27297
27297
27297
27298
27298
27298
27299
27299
27299
27300
27300
27300
27301
27301
27302
27302
27302
27302
27303
27303
27303
27304
27304
27304
27305
27305
27305
27306
27306
27306
27307
27307
27307
27308
27308
27308
27309
27309
27309
27310
27310
27310
27311
27311
27311
27312
27312
27312
27313
27313
27313
27314
27314
27314
27315
27315
27315
27316
27316
27316
27317
27317
27317
27318
27318
27318
27319
27319
27319
27320
27320
27320
27321
27321
27321
27322
27322
27322
27323
27323
27324
27324
27324
27324
27325
27325
27325
27326
27326
27326
27327
27327
27327
27328
27328
27328
27329
27329
27329
27330
27330
27330
27331
27331
27331
27332
27332
27332
27333
27333
27333
27334
27334
27334
27335
27335
27335
27336
27336
27336
27337
27337
27337
27338
27338
27338
27339
27339
27339
27340
27340
27340
27341
27341
27341
27342
27342
27342
27343
27343
27343
27344
27344
27344
27345
27345
27346
27346
27346
27346
27347
27347
27347
27348
27348
27348
27349
27349
27349
27350
27350
27350
27351
27351
27351
27352
27352
27352
27353
27353
27353
27354
27354
27354
27355
27355
27355
27356
27356
27356
27357
27357
27357
27358
27358
27358
27359
27359
27359
27360
27360
27360
27361
27361
27361
27362
27362
27362
27363
27363
27363
27364
27364
27364
27365
27365
27365
27366
27366
27366
27367
27367
27368
27368
27368
27368
27369
27369
27369
27370
27370
27370
27371
27371
27371
27372
27372
27372
27373
27373
27373
27374
27374
27374
27375
27375
27375
27376
27376
27376
27377
27377
27377
27378
27378
27378
27379
27379
27379
27380
27380
27380
27381
27381
27381
27382
27382
27382
27383
27383
27383
27384
27384
27384
27385
27385
27385
27386
27386
27386
27387
27387
27387
27388
27388
27388
27389
27389
27390
27390
27390
27390
27391
27391
27391
27392
27392
27392
27393
27393
27393
27394
27394
27394
27395
27395
27395
27396
27396
27396
27397
27397
27397
27398
27398
27398
27399
27399
27399
27400
27400
27400
27401
27401
27401
27402
27402
27402
27403
27403
27403
27404
27404
27404
27405
27405
27405
27406
27406
27406
27407
27407
27407
27408
27408
27408
27409
27409
27409
27410
27410
27410
27411
27411
27412
27412
27412
27412
27413
27413
27413
27414
27414
27414
27415
27415
27415
27416
27416
27416
27417
27417
27417
27418
27418
27418
27419
27419
27419
27420
27420
27420
27421
27421
27421
27422
27422
27422
27423
27423
27423
27424
27424
27424
27425
27425
27425
27426
27426
27426
27427
27427
27427
27428
27428
27428
27429
27429
27429
27430
27430
27430
27431
27431
27431
27432
27432
27432
27433
27433
27434
27434
27434
27434
27435
27435
27435
27436
27436
27436
27437
27437
27437
27438
27438
27438
27439
27439
27439
27440
27440
27440
27441
27441
27441
27442
27442
27442
27443
27443
27443
27444
27444
27444
27445
27445
27445
27446
27446
27446
27447
27447
27447
27448
27448
27448
27449
27449
27449
27450
27450
27450
27451
27451
27451
27452
27452
27452
27453
27453
27453
27454
27454
27454
27455
27455
27456
27456
27456
27456
27457
27457
27457
27458
27458
27458
27459
27459
27459
27460
27460
27460
27461
27461
27461
27462
27462
27462
27463
27463
27463
27464
27464
27464
27465
27465
27465
27466
27466
27466
27467
27467
27467
27468
27468
27468
27469
27469
27469
27470
27470
27470
27471
27471
27471
27472
27472
27472
27473
27473
27473
27474
27474
27474
27475
27475
27475
27476
27476
27476
27477
27477
27478
27478
27478
27479
27479
27480
27480
27481
27481
27482
27482
27483
27483
27484
27484
27485
27485
27486
27486
27487
27487
27488
27488
27489
27489
27490
27490
27491
27491
27492
27492
27493
27493
27494
27494
27495
27495
27496
27496
27497
27497
27498
27498
27499
27500
27500
27500
27500
27501
27501
27501
27502
27502
27502
27503
27503
27503
27504
27504
27504
27505
27505
27505
27506
27506
27506
27507
27507
27507
27508
27508
27508
27509
27509
27509
27510
27510
27510
27511
27511
27511
27512
27512
27512
27513
27513
27513
27514
27514
27514
27515
27515
27515
27516
27516
27516
27517
27517
27517
27518
27518
27518
27519
27519
27519
27520
27520
27520
27521
27521
27522
27522
27522
27522
27523
27523
27523
27524
27524
27524
27525
27525
27525
27526
27526
27526
27527
27527
27527
27528
27528
27528
27529
27529
27529
27530
27530
27530
27531
27531
27531
27532
27532
27532
27533
27533
27533
27534
27534
27534
27535
27535
27535
27536
27536
27536
27537
27537
27537
27538
27538
27538
27539
27539
27539
27540
27540
27540
27541
27541
27541
27542
27542
27542
27543
27543
27544
27544
27544
27544
27545
27545
27545
27546
27546
27546
27547
27547
27547
27548
27548
27548
27549
27549
27549
27550
27550
27550
27551
27551
27551
27552
27552
27552
27553
27553
27553
27554
27554
27554
27555
27555
27555
27556
27556
27556
27557
27557
27557
27558
27558
27558
27559
27559
27559
27560
27560
27560
27561
27561
27561
27562
27562
27562
27563
27563
27563
27564
27564
27564
27565
27565
27566
27566
27566
27566
27567
27567
27567
27568
27568
27568
27569
27569
27569
27570
27570
27570
27571
27571
27571
27572
27572
27572
27573
27573
27573
27574
27574
27574
27575
27575
27575
27576
27576
27576
27577
27577
27577
27578
27578
27578
27579
27579
27579
27580
27580
27580
27581
27581
27581
27582
27582
27582
27583
27583
27583
27584
27584
27584
27585
27585
27585
27586
27586
27586
27587
27587
27588
27588
27588
27588
27589
27589
27589
27590
27590
27590
27591
27591
27591
27592
27592
27592
27593
27593
27593
27594
27594
27594
27595
27595
27595
27596
27596
27596
27597
27597
27597
27598
27598
27598
27599
27599
27599
27600
27600
27600
27601
27601
27601
27602
27602
27602
27603
27603
27603
27604
27604
27604
27605
27605
27605
27606
27606
27606
27607
27607
27607
27608
27608
27608
27609
27609
27610
27610
27610
27610
27611
27611
27611
27612
27612
27612
27613
27613
27613
27614
27614
27614
27615
27615
27615
27616
27616
27616
27617
27617
27617
27618
27618
27618
27619
27619
27619
27620
27620
27620
27621
27621
27621
27622
27622
27622
27623
27623
27623
27624
27624
27624
27625
27625
27625
27626
27626
27626
27627
27627
27627
27628
27628
27628
27629
27629
27629
27630
27630
27630
27631
27631
27632
27632
27632
27632
27633
27633
27633
27634
27634
27634
27635
27635
27635
27636
27636
27636
27637
27637
27637
27638
27638
27638
27639
27639
27639
27640
27640
27640
27641
27641
27641
27642
27642
27642
27643
27643
27643
27644
27644
27644
27645
27645
27645
27646
27646
27646
27647
27647
27647
27648
27648
27648
27649
27649
27649
27650
27650
27650
27651
27651
27651
27652
27652
27652
27653
27653
27654
27654
27654
27654
27655
27655
27655
27656
27656
27656
27657
27657
27657
27658
27658
27658
27659
27659
27659
27660
27660
27660
27661
27661
27661
27662
27662
27662
27663
27663
27663
27664
27664
27664
27665
27665
27665
27666
27666
27666
27667
27667
27667
27668
27668
27668
27669
27669
27669
27670
27670
27670
27671
27671
27671
27672
27672
27672
27673
27673
27673
27674
27674
27674
27675
27675
27676
27676
27676
27676
27677
27677
27677
27678
27678
27678
27679
27679
27679
27680
27680
27680
27681
27681
27681
27682
27682
27682
27683
27683
27683
27684
27684
27684
27685
27685
27685
27686
27686
27686
27687
27687
27687
27688
27688
27688
27689
27689
27689
27690
27690
27690
27691
27691
27691
27692
27692
27692
27693
27693
27693
27694
27694
27694
27695
27695
27695
27696
27696
27696
27697
27697
27698
27698
27698
27699
27699
27700
27700
27701
27701
27702
27702
27703
27703
27704
27704
27705
27705
27706
27706
27707
27707
27708
27708
27709
27709
27710
27710
27711
27711
27712
27712
27713
27713
27714
27714
27715
27715
27716
27716
27717
27717
27718
27718
27719
27720
27720
27720
27720
27721
27721
27721
27722
27722
27722
27723
27723
27723
27724
27724
27724
27725
27725
27725
27726
27726
27726
27727
27727
27727
27728
27728
27728
27729
27729
27729
27730
27730
27730
27731
27731
27731
27732
27732
27732
27733
27733
27733
27734
27734
27734
27735
27735
27735
27736
27736
27736
27737
27737
27737
27738
27738
27738
27739
27739
27739
27740
27740
27740
27741
27741
27742
27742
27742
27742
27743
27743
27743
27744
27744
27744
27745
27745
27745
27746
27746
27746
27747
27747
27747
27748
27748
27748
27749
27749
27749
27750
27750
27750
27751
27751
27751
27752
27752
27752
27753
27753
27753
27754
27754
27754
27755
27755
27755
27756
27756
27756
27757
27757
27757
27758
27758
27758
27759
27759
27759
27760
27760
27760
27761
27761
27761
27762
27762
27762
27763
27763
27764
27764
27764
27764
27765
27765
27765
27766
27766
27766
27767
27767
27767
27768
27768
27768
27769
27769
27769
27770
27770
27770
27771
27771
27771
27772
27772
27772
27773
27773
27773
27774
27774
27774
27775
27775
27775
27776
27776
27776
27777
27777
27777
27778
27778
27778
27779
27779
27779
27780
27780
27780
27781
27781
27781
27782
27782
27782
27783
27783
27783
27784
27784
27784
27785
27785
27786
27786
27786
27786
27787
27787
27787
27788
27788
27788
27789
27789
27789
27790
27790
27790
27791
27791
27791
27792
27792
27792
27793
27793
27793
27794
27794
27794
27795
27795
27795
27796
27796
27796
27797
27797
27797
27798
27798
27798
27799
27799
27799
27800
27800
27800
27801
27801
27801
27802
27802
27802
27803
27803
27803
27804
27804
27804
27805
27805
27805
27806
27806
27806
27807
27807
27808
27808
27808
27808
27809
27809
27809
27810
27810
27810
27811
27811
27811
27812
27812
27812
27813
27813
27813
27814
27814
27814
27815
27815
27815
27816
27816
27816
27817
27817
27817
27818
27818
27818
27819
27819
27819
27820
27820
27820
27821
27821
27821
27822
27822
27822
27823
27823
27823
27824
27824
27824
27825
27825
27825
27826
27826
27826
27827
27827
27827
27828
27828
27828
27829
27829
27830
27830
27830
27830
27831
27831
27831
27832
27832
27832
27833
27833
27833
27834
27834
27834
27835
27835
27835
27836
27836
27836
27837
27837
27837
27838
27838
27838
27839
27839
27839
27840
27840
27840
27841
27841
27841
27842
27842
27842
27843
27843
27843
27844
27844
27844
27845
27845
27845
27846
27846
27846
27847
27847
27847
27848
27848
27848
27849
27849
27849
27850
27850
27850
27851
27851
27852
27852
27852
27852
27853
27853
27853
27854
27854
27854
27855
27855
27855
27856
27856
27856
27857
27857
27857
27858
27858
27858
27859
27859
27859
27860
27860
27860
27861
27861
27861
27862
27862
27862
27863
27863
27863
27864
27864
27864
27865
27865
27865
27866
27866
27866
27867
27867
27867
27868
27868
27868
27869
27869
27869
27870
27870
27870
27871
27871
27871
27872
27872
27872
27873
27873
27874
27874
27874
27874
27875
27875
27875
27876
27876
27876
27877
27877
27877
27878
27878
27878
27879
27879
27879
27880
27880
27880
27881
27881
27881
27882
27882
27882
27883
27883
27883
27884
27884
27884
27885
27885
27885
27886
27886
27886
27887
27887
27887
27888
27888
27888
27889
27889
27889
27890
27890
27890
27891
27891
27891
27892
27892
27892
27893
27893
27893
27894
27894
27894
27895
27895
27896
27896
27896
27896
27897
27897
27897
27898
27898
27898
27899
27899
27899
27900
27900
27900
27901
27901
27901
27902
27902
27902
27903
27903
27903
27904
27904
27904
27905
27905
27905
27906
27906
27906
27907
27907
27907
27908
27908
27908
27909
27909
27909
27910
27910
27910
27911
27911
27911
27912
27912
27912
27913
27913
27913
27914
27914
27914
27915
27915
27915
27916
27916
27916
27917
27917
27918
27918
27918
27919
27919
27920
27920
27921
27921
27922
27922
27923
27923
27924
27924
27925
27925
27926
27926
27927
27927
27928
27928
27929
27929
27930
27930
27931
27931
27932
27932
27933
27933
27934
27934
27935
27935
27936
27936
27937
27937
27938
27938
27939
27940
27940
27940
27940
27941
27941
27941
27942
27942
27942
27943
27943
27943
27944
27944
27944
27945
27945
27945
27946
27946
27946
27947
27947
27947
27948
27948
27948
27949
27949
27949
27950
27950
27950
27951
27951
27951
27952
27952
27952
27953
27953
27953
27954
27954
27954
27955
27955
27955
27956
27956
27956
27957
27957
27957
27958
27958
27958
27959
27959
27959
27960
27960
27960
27961
27961
27962
27962
27962
27962
27963
27963
27963
27964
27964
27964
27965
27965
27965
27966
27966
27966
27967
27967
27967
27968
27968
27968
27969
27969
27969
27970
27970
27970
27971
27971
27971
27972
27972
27972
27973
27973
27973
27974
27974
27974
27975
27975
27975
27976
27976
27976
27977
27977
27977
27978
27978
27978
27979
27979
27979
27980
27980
27980
27981
27981
27981
27982
27982
27982
27983
27983
27984
27984
27984
27984
27985
27985
27985
27986
27986
27986
27987
27987
27987
27988
27988
27988
27989
27989
27989
27990
27990
27990
27991
27991
27991
27992
27992
27992
27993
27993
27993
27994
27994
27994
27995
27995
27995
27996
27996
27996
27997
27997
27997
27998
27998
27998
27999
27999
27999
28000
28000
28000
28001
28001
28001
28002
28002
28002
28003
28003
28003
28004
28004
28004
28005
28005
28006
28006
28006
28006
28007
28007
28007
28008
28008
28008
28009
28009
28009
28010
28010
28010
28011
28011
28011
28012
28012
28012
28013
28013
28013
28014
28014
28014
28015
28015
28015
28016
28016
28016
28017
28017
28017
28018
28018
28018
28019
28019
28019
28020
28020
28020
28021
28021
28021
28022
28022
28022
28023
28023
28023
28024
28024
28024
28025
28025
28025
28026
28026
28026
28027
28027
28028
28028
28028
28028
28029
28029
28029
28030
28030
28030
28031
28031
28031
28032
28032
28032
28033
28033
28033
28034
28034
28034
28035
28035
28035
28036
28036
28036
28037
28037
28037
28038
28038
28038
28039
28039
28039
28040
28040
28040
28041
28041
28041
28042
28042
28042
28043
28043
28043
28044
28044
28044
28045
28045
28045
28046
28046
28046
28047
28047
28047
28048
28048
28048
28049
28049
28050
28050
28050
28050
28051
28051
28051
28052
28052
28052
28053
28053
28053
28054
28054
28054
28055
28055
28055
28056
28056
28056
28057
28057
28057
28058
28058
28058
28059
28059
28059
28060
28060
28060
28061
28061
28061
28062
28062
28062
28063
28063
28063
28064
28064
28064
28065
28065
28065
28066
28066
28066
28067
28067
28067
28068
28068
28068
28069
28069
28069
28070
28070
28070
28071
28071
28072
28072
28072
28072
28073
28073
28073
28074
28074
28074
28075
28075
28075
28076
28076
28076
28077
28077
28077
28078
28078
28078
28079
28079
28079
28080
28080
28080
28081
28081
28081
28082
28082
28082
28083
28083
28083
28084
28084
28084
28085
28085
28085
28086
28086
28086
28087
28087
28087
28088
28088
28088
28089
28089
28089
28090
28090
28090
28091
28091
28091
28092
28092
28092
28093
28093
28094
28094
28094
28094
28095
28095
28095
28096
28096
28096
28097
28097
28097
28098
28098
28098
28099
28099
28099
28100
28100
28100
28101
28101
28101
28102
28102
28102
28103
28103
28103
28104
28104
28104
28105
28105
28105
28106
28106
28106
28107
28107
28107
28108
28108
28108
28109
28109
28109
28110
28110
28110
28111
28111
28111
28112
28112
28112
28113
28113
28113
28114
28114
28114
28115
28115
28116
28116
28116
28116
28117
28117
28117
28118
28118
28118
28119
28119
28119
28120
28120
28120
28121
28121
28121
28122
28122
28122
28123
28123
28123
28124
28124
28124
28125
28125
28125
28126
28126
28126
28127
28127
28127
28128
28128
28128
28129
28129
28129
28130
28130
28130
28131
28131
28131
28132
28132
28132
28133
28133
28133
28134
28134
28134
28135
28135
28135
28136
28136
28136
28137
28137
28138
28138
28138
28139
28139
28140
28140
28141
28141
28142
28142
28143
28143
28144
28144
28145
28145
28146
28146
28147
28147
28148
28148
28149
28149
28150
28150
28151
28151
28152
28152
28153
28153
28154
28154
28155
28155
28156
28156
28157
28157
28158
28158
28159
28160
28160
28160
28160
28161
28161
28161
28162
28162
28162
28163
28163
28163
28164
28164
28164
28165
28165
28165
28166
28166
28166
28167
28167
28167
28168
28168
28168
28169
28169
28169
28170
28170
28170
28171
28171
28171
28172
28172
28172
28173
28173
28173
28174
28174
28174
28175
28175
28175
28176
28176
28176
28177
28177
28177
28178
28178
28178
28179
28179
28179
28180
28180
28180
28181
28181
28182
28182
28182
28182
28183
28183
28183
28184
28184
28184
28185
28185
28185
28186
28186
28186
28187
28187
28187
28188
28188
28188
28189
28189
28189
28190
28190
28190
28191
28191
28191
28192
28192
28192
28193
28193
28193
28194
28194
28194
28195
28195
28195
28196
28196
28196
28197
28197
28197
28198
28198
28198
28199
28199
28199
28200
28200
28200
28201
28201
28201
28202
28202
28202
28203
28203
28204
28204
28204
28204
28205
28205
28205
28206
28206
28206
28207
28207
28207
28208
28208
28208
28209
28209
28209
28210
28210
28210
28211
28211
28211
28212
28212
28212
28213
28213
28213
28214
28214
28214
28215
28215
28215
28216
28216
28216
28217
28217
28217
28218
28218
28218
28219
28219
28219
28220
28220
28220
28221
28221
28221
28222
28222
28222
28223
28223
28223
28224
28224
28224
28225
28225
28226
28226
28226
28226
28227
28227
28227
28228
28228
28228
28229
28229
28229
28230
28230
28230
28231
28231
28231
28232
28232
28232
28233
28233
28233
28234
28234
28234
28235
28235
28235
28236
28236
28236
28237
28237
28237
28238
28238
28238
28239
28239
28239
28240
28240
28240
28241
28241
28241
28242
28242
28242
28243
28243
28243
28244
28244
28244
28245
28245
28245
28246
28246
28246
28247
28247
28248
28248
28248
28248
28249
28249
28249
28250
28250
28250
28251
28251
28251
28252
28252
28252
28253
28253
28253
28254
28254
28254
28255
28255
28255
28256
28256
28256
28257
28257
28257
28258
28258
28258
28259
28259
28259
28260
28260
28260
28261
28261
28261
28262
28262
28262
28263
28263
28263
28264
28264
28264
28265
28265
28265
28266
28266
28266
28267
28267
28267
28268
28268
28268
28269
28269
28270
28270
28270
28270
28271
28271
28271
28272
28272
28272
28273
28273
28273
28274
28274
28274
28275
28275
28275
28276
28276
28276
28277
28277
28277
28278
28278
28278
28279
28279
28279
28280
28280
28280
28281
28281
28281
28282
28282
28282
28283
28283
28283
28284
28284
28284
28285
28285
28285
28286
28286
28286
28287
28287
28287
28288
28288
28288
28289
28289
28289
28290
28290
28290
28291
28291
28292
28292
28292
28292
28293
28293
28293
28294
28294
28294
28295
28295
28295
28296
28296
28296
28297
28297
28297
28298
28298
28298
28299
28299
28299
28300
28300
28300
28301
28301
28301
28302
28302
28302
28303
28303
28303
28304
28304
28304
28305
28305
28305
28306
28306
28306
28307
28307
28307
28308
28308
28308
28309
28309
28309
28310
28310
28310
28311
28311
28311
28312
28312
28312
28313
28313
28314
28314
28314
28314
28315
28315
28315
28316
28316
28316
28317
28317
28317
28318
28318
28318
28319
28319
28319
28320
28320
28320
28321
28321
28321
28322
28322
28322
28323
28323
28323
28324
28324
28324
28325
28325
28325
28326
28326
28326
28327
28327
28327
28328
28328
28328
28329
28329
28329
28330
28330
28330
28331
28331
28331
28332
28332
28332
28333
28333
28333
28334
28334
28334
28335
28335
28336
28336
28336
28336
28337
28337
28337
28338
28338
28338
28339
28339
28339
28340
28340
28340
28341
28341
28341
28342
28342
28342
28343
28343
28343
28344
28344
28344
28345
28345
28345
28346
28346
28346
28347
28347
28347
28348
28348
28348
28349
28349
28349
28350
28350
28350
28351
28351
28351
28352
28352
28352
28353
28353
28353
28354
28354
28354
28355
28355
28355
28356
28356
28356
28357
28357
28358
28358
28358
28359
28359
28360
28360
28361
28361
28362
28362
28363
28363
28364
28364
28365
28365
28366
28366
28367
28367
28368
28368
28369
28369
28370
28370
28371
28371
28372
28372
28373
28373
28374
28374
28375
28375
28376
28376
28377
28377
28378
28378
28379
28380
28380
28380
28380
28381
28381
28381
28382
28382
28382
28383
28383
28383
28384
28384
28384
28385
28385
28385
28386
28386
28386
28387
28387
28387
28388
28388
28388
28389
28389
28389
28390
28390
28390
28391
28391
28391
28392
28392
28392
28393
28393
28393
28394
28394
28394
28395
28395
28395
28396
28396
28396
28397
28397
28397
28398
28398
28398
28399
28399
28399
28400
28400
28400
28401
28401
28402
28402
28402
28402
28403
28403
28403
28404
28404
28404
28405
28405
28405
28406
28406
28406
28407
28407
28407
28408
28408
28408
28409
28409
28409
28410
28410
28410
28411
28411
28411
28412
28412
28412
28413
28413
28413
28414
28414
28414
28415
28415
28415
28416
28416
28416
28417
28417
28417
28418
28418
28418
28419
28419
28419
28420
28420
28420
28421
28421
28421
28422
28422
28422
28423
28423
28424
28424
28424
28424
28425
28425
28425
28426
28426
28426
28427
28427
28427
28428
28428
28428
28429
28429
28429
28430
28430
28430
28431
28431
28431
28432
28432
28432
28433
28433
28433
28434
28434
28434
28435
28435
28435
28436
28436
28436
28437
28437
28437
28438
28438
28438
28439
28439
28439
28440
28440
28440
28441
28441
28441
28442
28442
28442
28443
28443
28443
28444
28444
28444
28445
28445
28446
28446
28446
28446
28447
28447
28447
28448
28448
28448
28449
28449
28449
28450
28450
28450
28451
28451
28451
28452
28452
28452
28453
28453
28453
28454
28454
28454
28455
28455
28455
28456
28456
28456
28457
28457
28457
28458
28458
28458
28459
28459
28459
28460
28460
28460
28461
28461
28461
28462
28462
28462
28463
28463
28463
28464
28464
28464
28465
28465
28465
28466
28466
28466
28467
28467
28468
28468
28468
28468
28469
28469
28469
28470
28470
28470
28471
28471
28471
28472
28472
28472
28473
28473
28473
28474
28474
28474
28475
28475
28475
28476
28476
28476
28477
28477
28477
28478
28478
28478
28479
28479
28479
28480
28480
28480
28481
28481
28481
28482
28482
28482
28483
28483
28483
28484
28484
28484
28485
28485
28485
28486
28486
28486
28487
28487
28487
28488
28488
28488
28489
28489
28490
28490
28490
28490
28491
28491
28491
28492
28492
28492
28493
28493
28493
28494
28494
28494
28495
28495
28495
28496
28496
28496
28497
28497
28497
28498
28498
28498
28499
28499
28499
28500
28500
28500
28501
28501
28501
28502
28502
28502
28503
28503
28503
28504
28504
28504
28505
28505
28505
28506
28506
28506
28507
28507
28507
28508
28508
28508
28509
28509
28509
28510
28510
28510
28511
28511
28512
28512
28512
28512
28513
28513
28513
28514
28514
28514
28515
28515
28515
28516
28516
28516
28517
28517
28517
28518
28518
28518
28519
28519
28519
28520
28520
28520
28521
28521
28521
28522
28522
28522
28523
28523
28523
28524
28524
28524
28525
28525
28525
28526
28526
28526
28527
28527
28527
28528
28528
28528
28529
28529
28529
28530
28530
28530
28531
28531
28531
28532
28532
28532
28533
28533
28534
28534
28534
28534
28535
28535
28535
28536
28536
28536
28537
28537
28537
28538
28538
28538
28539
28539
28539
28540
28540
28540
28541
28541
28541
28542
28542
28542
28543
28543
28543
28544
28544
28544
28545
28545
28545
28546
28546
28546
28547
28547
28547
28548
28548
28548
28549
28549
28549
28550
28550
28550
28551
28551
28551
28552
28552
28552
28553
28553
28553
28554
28554
28554
28555
28555
28556
28556
28556
28556
28557
28557
28557
28558
28558
28558
28559
28559
28559
28560
28560
28560
28561
28561
28561
28562
28562
28562
28563
28563
28563
28564
28564
28564
28565
28565
28565
28566
28566
28566
28567
28567
28567
28568
28568
28568
28569
28569
28569
28570
28570
28570
28571
28571
28571
28572
28572
28572
28573
28573
28573
28574
28574
28574
28575
28575
28575
28576
28576
28576
28577
28577
28578
28578
28578
28579
28579
28580
28580
28581
28581
28582
28582
28583
28583
28584
28584
28585
28585
28586
28586
28587
28587
28588
28588
28589
28589
28590
28590
28591
28591
28592
28592
28593
28593
28594
28594
28595
28595
28596
28596
28597
28597
28598
28598
28599
28600
28600
28600
28600
28601
28601
28601
28602
28602
28602
28603
28603
28603
28604
28604
28604
28605
28605
28605
28606
28606
28606
28607
28607
28607
28608
28608
28608
28609
28609
28609
28610
28610
28610
28611
28611
28611
28612
28612
28612
28613
28613
28613
28614
28614
28614
28615
28615
28615
28616
28616
28616
28617
28617
28617
28618
28618
28618
28619
28619
28619
28620
28620
28620
28621
28621
28622
28622
28622
28622
28623
28623
28623
28624
28624
28624
28625
28625
28625
28626
28626
28626
28627
28627
28627
28628
28628
28628
28629
28629
28629
28630
28630
28630
28631
28631
28631
28632
28632
28632
28633
28633
28633
28634
28634
28634
28635
28635
28635
28636
28636
28636
28637
28637
28637
28638
28638
28638
28639
28639
28639
28640
28640
28640
28641
28641
28641
28642
28642
28642
28643
28643
28644
28644
28644
28644
28645
28645
28645
28646
28646
28646
28647
28647
28647
28648
28648
28648
28649
28649
28649
28650
28650
28650
28651
28651
28651
28652
28652
28652
28653
28653
28653
28654
28654
28654
28655
28655
28655
28656
28656
28656
28657
28657
28657
28658
28658
28658
28659
28659
28659
28660
28660
28660
28661
28661
28661
28662
28662
28662
28663
28663
28663
28664
28664
28664
28665
28665
28666
28666
28666
28666
28667
28667
28667
28668
28668
28668
28669
28669
28669
28670
28670
28670
28671
28671
28671
28672
28672
28672
28673
28673
28673
28674
28674
28674
28675
28675
28675
28676
28676
28676
28677
28677
28677
28678
28678
28678
28679
28679
28679
28680
28680
28680
28681
28681
28681
28682
28682
28682
28683
28683
28683
28684
28684
28684
28685
28685
28685
28686
28686
28686
28687
28687
28688
28688
28688
28688
28689
28689
28689
28690
28690
28690
28691
28691
28691
28692
28692
28692
28693
28693
28693
28694
28694
28694
28695
28695
28695
28696
28696
28696
28697
28697
28697
28698
28698
28698
28699
28699
28699
28700
28700
28700
28701
28701
28701
28702
28702
28702
28703
28703
28703
28704
28704
28704
28705
28705
28705
28706
28706
28706
28707
28707
28707
28708
28708
28708
28709
28709
28710
28710
28710
28710
28711
28711
28711
28712
28712
28712
28713
28713
28713
28714
28714
28714
28715
28715
28715
28716
28716
28716
28717
28717
28717
28718
28718
28718
28719
28719
28719
28720
28720
28720
28721
28721
28721
28722
28722
28722
28723
28723
28723
28724
28724
28724
28725
28725
28725
28726
28726
28726
28727
28727
28727
28728
28728
28728
28729
28729
28729
28730
28730
28730
28731
28731
28732
28732
28732
28732
28733
28733
28733
28734
28734
28734
28735
28735
28735
28736
28736
28736
28737
28737
28737
28738
28738
28738
28739
28739
28739
28740
28740
28740
28741
28741
28741
28742
28742
28742
28743
28743
28743
28744
28744
28744
28745
28745
28745
28746
28746
28746
28747
28747
28747
28748
28748
28748
28749
28749
28749
28750
28750
28750
28751
28751
28751
28752
28752
28752
28753
28753
28754
28754
28754
28754
28755
28755
28755
28756
28756
28756
28757
28757
28757
28758
28758
28758
28759
28759
28759
28760
28760
28760
28761
28761
28761
28762
28762
28762
28763
28763
28763
28764
28764
28764
28765
28765
28765
28766
28766
28766
28767
28767
28767
28768
28768
28768
28769
28769
28769
28770
28770
28770
28771
28771
28771
28772
28772
28772
28773
28773
28773
28774
28774
28774
28775
28775
28776
28776
28776
28776
28777
28777
28777
28778
28778
28778
28779
28779
28779
28780
28780
28780
28781
28781
28781
28782
28782
28782
28783
28783
28783
28784
28784
28784
28785
28785
28785
28786
28786
28786
28787
28787
28787
28788
28788
28788
28789
28789
28789
28790
28790
28790
28791
28791
28791
28792
28792
28792
28793
28793
28793
28794
28794
28794
28795
28795
28795
28796
28796
28796
28797
28797
28798
28798
28798
28799
28799
28800
28800
28801
28801
28802
28802
28803
28803
28804
28804
28805
28805
28806
28806
28807
28807
28808
28808
28809
28809
28810
28810
28811
28811
28812
28812
28813
28813
28814
28814
28815
28815
28816
28816
28817
28817
28818
28818
28819
28820
28820
28820
28820
28821
28821
28821
28822
28822
28822
28823
28823
28823
28824
28824
28824
28825
28825
28825
28826
28826
28826
28827
28827
28827
28828
28828
28828
28829
28829
28829
28830
28830
28830
28831
28831
28831
28832
28832
28832
28833
28833
28833
28834
28834
28834
28835
28835
28835
28836
28836
28836
28837
28837
28837
28838
28838
28838
28839
28839
28839
28840
28840
28840
28841
28841
28842
28842
28842
28842
28843
28843
28843
28844
28844
28844
28845
28845
28845
28846
28846
28846
28847
28847
28847
28848
28848
28848
28849
28849
28849
28850
28850
28850
28851
28851
28851
28852
28852
28852
28853
28853
28853
28854
28854
28854
28855
28855
28855
28856
28856
28856
28857
28857
28857
28858
28858
28858
28859
28859
28859
28860
28860
28860
28861
28861
28861
28862
28862
28862
28863
28863
28864
28864
28864
28864
28865
28865
28865
28866
28866
28866
28867
28867
28867
28868
28868
28868
28869
28869
28869
28870
28870
28870
28871
28871
28871
28872
28872
28872
28873
28873
28873
28874
28874
28874
28875
28875
28875
28876
28876
28876
28877
28877
28877
28878
28878
28878
28879
28879
28879
28880
28880
28880
28881
28881
28881
28882
28882
28882
28883
28883
28883
28884
28884
28884
28885
28885
28886
28886
28886
28886
28887
28887
28887
28888
28888
28888
28889
28889
28889
28890
28890
28890
28891
28891
28891
28892
28892
28892
28893
28893
28893
28894
28894
28894
28895
28895
28895
28896
28896
28896
28897
28897
28897
28898
28898
28898
28899
28899
28899
28900
28900
28900
28901
28901
28901
28902
28902
28902
28903
28903
28903
28904
28904
28904
28905
28905
28905
28906
28906
28906
28907
28907
28908
28908
28908
28908
28909
28909
28909
28910
28910
28910
28911
28911
28911
28912
28912
28912
28913
28913
28913
28914
28914
28914
28915
28915
28915
28916
28916
28916
28917
28917
28917
28918
28918
28918
28919
28919
28919
28920
28920
28920
28921
28921
28921
28922
28922
28922
28923
28923
28923
28924
28924
28924
28925
28925
28925
28926
28926
28926
28927
28927
28927
28928
28928
28928
28929
28929
28930
28930
28930
28930
28931
28931
28931
28932
28932
28932
28933
28933
28933
28934
28934
28934
28935
28935
28935
28936
28936
28936
28937
28937
28937
28938
28938
28938
28939
28939
28939
28940
28940
28940
28941
28941
28941
28942
28942
28942
28943
28943
28943
28944
28944
28944
28945
28945
28945
28946
28946
28946
28947
28947
28947
28948
28948
28948
28949
28949
28949
28950
28950
28950
28951
28951
28952
28952
28952
28952
28953
28953
28953
28954
28954
28954
28955
28955
28955
28956
28956
28956
28957
28957
28957
28958
28958
28958
28959
28959
28959
28960
28960
28960
28961
28961
28961
28962
28962
28962
28963
28963
28963
28964
28964
28964
28965
28965
28965
28966
28966
28966
28967
28967
28967
28968
28968
28968
28969
28969
28969
28970
28970
28970
28971
28971
28971
28972
28972
28972
28973
28973
28974
28974
28974
28974
28975
28975
28975
28976
28976
28976
28977
28977
28977
28978
28978
28978
28979
28979
28979
28980
28980
28980
28981
28981
28981
28982
28982
28982
28983
28983
28983
28984
28984
28984
28985
28985
28985
28986
28986
28986
28987
28987
28987
28988
28988
28988
28989
28989
28989
28990
28990
28990
28991
28991
28991
28992
28992
28992
28993
28993
28993
28994
28994
28994
28995
28995
28996
28996
28996
28996
28997
28997
28997
28998
28998
28998
28999
28999
28999
29000
29000
29000
29001
29001
29001
29002
29002
29002
29003
29003
29003
29004
29004
29004
29005
29005
29005
29006
29006
29006
29007
29007
29007
29008
29008
29008
29009
29009
29009
29010
29010
29010
29011
29011
29011
29012
29012
29012
29013
29013
29013
29014
29014
29014
29015
29015
29015
29016
29016
29016
29017
29017
29018
29018
29018
29019
29019
29020
29020
29021
29021
29022
29022
29023
29023
29024
29024
29025
29025
29026
29026
29027
29027
29028
29028
29029
29029
29030
29030
29031
29031
29032
29032
29033
29033
29034
29034
29035
29035
29036
29036
29037
29037
29038
29038
29039
29040
29040
29040
29040
29041
29041
29041
29042
29042
29042
29043
29043
29043
29044
29044
29044
29045
29045
29045
29046
29046
29046
29047
29047
29047
29048
29048
29048
29049
29049
29049
29050
29050
29050
29051
29051
29051
29052
29052
29052
29053
29053
29053
29054
29054
29054
29055
29055
29055
29056
29056
29056
29057
29057
29057
29058
29058
29058
29059
29059
29059
29060
29060
29060
29061
29061
29062
29062
29062
29062
29063
29063
29063
29064
29064
29064
29065
29065
29065
29066
29066
29066
29067
29067
29067
29068
29068
29068
29069
29069
29069
29070
29070
29070
29071
29071
29071
29072
29072
29072
29073
29073
29073
29074
29074
29074
29075
29075
29075
29076
29076
29076
29077
29077
29077
29078
29078
29078
29079
29079
29079
29080
29080
29080
29081
29081
29081
29082
29082
29082
29083
29083
29084
29084
29084
29084
29085
29085
29085
29086
29086
29086
29087
29087
29087
29088
29088
29088
29089
29089
29089
29090
29090
29090
29091
29091
29091
29092
29092
29092
29093
29093
29093
29094
29094
29094
29095
29095
29095
29096
29096
29096
29097
29097
29097
29098
29098
29098
29099
29099
29099
29100
29100
29100
29101
29101
29101
29102
29102
29102
29103
29103
29103
29104
29104
29104
29105
29105
29106
29106
29106
29106
29107
29107
29107
29108
29108
29108
29109
29109
29109
29110
29110
29110
29111
29111
29111
29112
29112
29112
29113
29113
29113
29114
29114
29114
29115
29115
29115
29116
29116
29116
29117
29117
29117
29118
29118
29118
29119
29119
29119
29120
29120
29120
29121
29121
29121
29122
29122
29122
29123
29123
29123
29124
29124
29124
29125
29125
29125
29126
29126
29126
29127
29127
29128
29128
29128
29128
29129
29129
29129
29130
29130
29130
29131
29131
29131
29132
29132
29132
29133
29133
29133
29134
29134
29134
29135
29135
29135
29136
29136
29136
29137
29137
29137
29138
29138
29138
29139
29139
29139
29140
29140
29140
29141
29141
29141
29142
29142
29142
29143
29143
29143
29144
29144
29144
29145
29145
29145
29146
29146
29146
29147
29147
29147
29148
29148
29148
29149
29149
29150
29150
29150
29150
29151
29151
29151
29152
29152
29152
29153
29153
29153
29154
29154
29154
29155
29155
29155
29156
29156
29156
29157
29157
29157
29158
29158
29158
29159
29159
29159
29160
29160
29160
29161
29161
29161
29162
29162
29162
29163
29163
29163
29164
29164
29164
29165
29165
29165
29166
29166
29166
29167
29167
29167
29168
29168
29168
29169
29169
29169
29170
29170
29170
29171
29171
29172
29172
29172
29172
29173
29173
29173
29174
29174
29174
29175
29175
29175
29176
29176
29176
29177
29177
29177
29178
29178
29178
29179
29179
29179
29180
29180
29180
29181
29181
29181
29182
29182
29182
29183
29183
29183
29184
29184
29184
29185
29185
29185
29186
29186
29186
29187
29187
29187
29188
29188
29188
29189
29189
29189
29190
29190
29190
29191
29191
29191
29192
29192
29192
29193
29193
29194
29194
29194
29194
29195
29195
29195
29196
29196
29196
29197
29197
29197
29198
29198
29198
29199
29199
29199
29200
29200
29200
29201
29201
29201
29202
29202
29202
29203
29203
29203
29204
29204
29204
29205
29205
29205
29206
29206
29206
29207
29207
29207
29208
29208
29208
29209
29209
29209
29210
29210
29210
29211
29211
29211
29212
29212
29212
29213
29213
29213
29214
29214
29214
29215
29215
29216
29216
29216
29216
29217
29217
29217
29218
29218
29218
29219
29219
29219
29220
29220
29220
29221
29221
29221
29222
29222
29222
29223
29223
29223
29224
29224
29224
29225
29225
29225
29226
29226
29226
29227
29227
29227
29228
29228
29228
29229
29229
29229
29230
29230
29230
29231
29231
29231
29232
29232
29232
29233
29233
29233
29234
29234
29234
29235
29235
29235
29236
29236
29236
29237
29237
29238
29238
29238
29239
29239
29240
29240
29241
29241
29242
29242
29243
29243
29244
29244
29245
29245
29246
29246
29247
29247
29248
29248
29249
29249
29250
29250
29251
29251
29252
29252
29253
29253
29254
29254
29255
29255
29256
29256
29257
29257
29258
29258
29259
29260
29260
29260
29260
29261
29261
29261
29262
29262
29262
29263
29263
29263
29264
29264
29264
29265
29265
29265
29266
29266
29266
29267
29267
29267
29268
29268
29268
29269
29269
29269
29270
29270
29270
29271
29271
29271
29272
29272
29272
29273
29273
29273
29274
29274
29274
29275
29275
29275
29276
29276
29276
29277
29277
29277
29278
29278
29278
29279
29279
29279
29280
29280
29280
29281
29281
29282
29282
29282
29282
29283
29283
29283
29284
29284
29284
29285
29285
29285
29286
29286
29286
29287
29287
29287
29288
29288
29288
29289
29289
29289
29290
29290
29290
29291
29291
29291
29292
29292
29292
29293
29293
29293
29294
29294
29294
29295
29295
29295
29296
29296
29296
29297
29297
29297
29298
29298
29298
29299
29299
29299
29300
29300
29300
29301
29301
29301
29302
29302
29302
29303
29303
29304
29304
29304
29304
29305
29305
29305
29306
29306
29306
29307
29307
29307
29308
29308
29308
29309
29309
29309
29310
29310
29310
29311
29311
29311
29312
29312
29312
29313
29313
29313
29314
29314
29314
29315
29315
29315
29316
29316
29316
29317
29317
29317
29318
29318
29318
29319
29319
29319
29320
29320
29320
29321
29321
29321
29322
29322
29322
29323
29323
29323
29324
29324
29324
29325
29325
29326
29326
29326
29326
29327
29327
29327
29328
29328
29328
29329
29329
29329
29330
29330
29330
29331
29331
29331
29332
29332
29332
29333
29333
29333
29334
29334
29334
29335
29335
29335
29336
29336
29336
29337
29337
29337
29338
29338
29338
29339
29339
29339
29340
29340
29340
29341
29341
29341
29342
29342
29342
29343
29343
29343
29344
29344
29344
29345
29345
29345
29346
29346
29346
29347
29347
29348
29348
29348
29348
29349
29349
29349
29350
29350
29350
29351
29351
29351
29352
29352
29352
29353
29353
29353
29354
29354
29354
29355
29355
29355
29356
29356
29356
29357
29357
29357
29358
29358
29358
29359
29359
29359
29360
29360
29360
29361
29361
29361
29362
29362
29362
29363
29363
29363
29364
29364
29364
29365
29365
29365
29366
29366
29366
29367
29367
29367
29368
29368
29368
29369
29369
29370
29370
29370
29370
29371
29371
29371
29372
29372
29372
29373
29373
29373
29374
29374
29374
29375
29375
29375
29376
29376
29376
29377
29377
29377
29378
29378
29378
29379
29379
29379
29380
29380
29380
29381
29381
29381
29382
29382
29382
29383
29383
29383
29384
29384
29384
29385
29385
29385
29386
29386
29386
29387
29387
29387
29388
29388
29388
29389
29389
29389
29390
29390
29390
29391
29391
29392
29392
29392
29392
29393
29393
29393
29394
29394
29394
29395
29395
29395
29396
29396
29396
29397
29397
29397
29398
29398
29398
29399
29399
29399
29400
29400
29400
29401
29401
29401
29402
29402
29402
29403
29403
29403
29404
29404
29404
29405
29405
29405
29406
29406
29406
29407
29407
29407
29408
29408
29408
29409
29409
29409
29410
29410
29410
29411
29411
29411
29412
29412
29412
29413
29413
29414
29414
29414
29414
29415
29415
29415
29416
29416
29416
29417
29417
29417
29418
29418
29418
29419
29419
29419
29420
29420
29420
29421
29421
29421
29422
29422
29422
29423
29423
29423
29424
29424
29424
29425
29425
29425
29426
29426
29426
29427
29427
29427
29428
29428
29428
29429
29429
29429
29430
29430
29430
29431
29431
29431
29432
29432
29432
29433
29433
29433
29434
29434
29434
29435
29435
29436
29436
29436
29436
29437
29437
29437
29438
29438
29438
29439
29439
29439
29440
29440
29440
29441
29441
29441
29442
29442
29442
29443
29443
29443
29444
29444
29444
29445
29445
29445
29446
29446
29446
29447
29447
29447
29448
29448
29448
29449
29449
29449
29450
29450
29450
29451
29451
29451
29452
29452
29452
29453
29453
29453
29454
29454
29454
29455
29455
29455
29456
29456
29456
29457
29457
29458
29458
29458
29459
29459
29460
29460
29461
29461
29462
29462
29463
29463
29464
29464
29465
29465
29466
29466
29467
29467
29468
29468
29469
29469
29470
29470
29471
29471
29472
29472
29473
29473
29474
29474
29475
29475
29476
29476
29477
29477
29478
29478
29479
29480
29480
29480
29480
29481
29481
29481
29482
29482
29482
29483
29483
29483
29484
29484
29484
29485
29485
29485
29486
29486
29486
29487
29487
29487
29488
29488
29488
29489
29489
29489
29490
29490
29490
29491
29491
29491
29492
29492
29492
29493
29493
29493
29494
29494
29494
29495
29495
29495
29496
29496
29496
29497
29497
29497
29498
29498
29498
29499
29499
29499
29500
29500
29500
29501
29501
29502
29502
29502
29502
29503
29503
29503
29504
29504
29504
29505
29505
29505
29506
29506
29506
29507
29507
29507
29508
29508
29508
29509
29509
29509
29510
29510
29510
29511
29511
29511
29512
29512
29512
29513
29513
29513
29514
29514
29514
29515
29515
29515
29516
29516
29516
29517
29517
29517
29518
29518
29518
29519
29519
29519
29520
29520
29520
29521
29521
29521
29522
29522
29522
29523
29523
29524
29524
29524
29524
29525
29525
29525
29526
29526
29526
29527
29527
29527
29528
29528
29528
29529
29529
29529
29530
29530
29530
29531
29531
29531
29532
29532
29532
29533
29533
29533
29534
29534
29534
29535
29535
29535
29536
29536
29536
29537
29537
29537
29538
29538
29538
29539
29539
29539
29540
29540
29540
29541
29541
29541
29542
29542
29542
29543
29543
29543
29544
29544
29544
29545
29545
29546
29546
29546
29546
29547
29547
29547
29548
29548
29548
29549
29549
29549
29550
29550
29550
29551
29551
29551
29552
29552
29552
29553
29553
29553
29554
29554
29554
29555
29555
29555
29556
29556
29556
29557
29557
29557
29558
29558
29558
29559
29559
29559
29560
29560
29560
29561
29561
29561
29562
29562
29562
29563
29563
29563
29564
29564
29564
29565
29565
29565
29566
29566
29566
29567
29567
29568
29568
29568
29568
29569
29569
29569
29570
29570
29570
29571
29571
29571
29572
29572
29572
29573
29573
29573
29574
29574
29574
29575
29575
29575
29576
29576
29576
29577
29577
29577
29578
29578
29578
29579
29579
29579
29580
29580
29580
29581
29581
29581
29582
29582
29582
29583
29583
29583
29584
29584
29584
29585
29585
29585
29586
29586
29586
29587
29587
29587
29588
29588
29588
29589
29589
29590
29590
29590
29590
29591
29591
29591
29592
29592
29592
29593
29593
29593
29594
29594
29594
29595
29595
29595
29596
29596
29596
29597
29597
29597
29598
29598
29598
29599
29599
29599
29600
29600
29600
29601
29601
29601
29602
29602
29602
29603
29603
29603
29604
29604
29604
29605
29605
29605
29606
29606
29606
29607
29607
29607
29608
29608
29608
29609
29609
29609
29610
29610
29610
29611
29611
29612
29612
29612
29612
29613
29613
29613
29614
29614
29614
29615
29615
29615
29616
29616
29616
29617
29617
29617
29618
29618
29618
29619
29619
29619
29620
29620
29620
29621
29621
29621
29622
29622
29622
29623
29623
29623
29624
29624
29624
29625
29625
29625
29626
29626
29626
29627
29627
29627
29628
29628
29628
29629
29629
29629
29630
29630
29630
29631
29631
29631
29632
29632
29632
29633
29633
29634
29634
29634
29634
29635
29635
29635
29636
29636
29636
29637
29637
29637
29638
29638
29638
29639
29639
29639
29640
29640
29640
29641
29641
29641
29642
29642
29642
29643
29643
29643
29644
29644
29644
29645
29645
29645
29646
29646
29646
29647
29647
29647
29648
29648
29648
29649
29649
29649
29650
29650
29650
29651
29651
29651
29652
29652
29652
29653
29653
29653
29654
29654
29654
29655
29655
29656
29656
29656
29656
29657
29657
29657
29658
29658
29658
29659
29659
29659
29660
29660
29660
29661
29661
29661
29662
29662
29662
29663
29663
29663
29664
29664
29664
29665
29665
29665
29666
29666
29666
29667
29667
29667
29668
29668
29668
29669
29669
29669
29670
29670
29670
29671
29671
29671
29672
29672
29672
29673
29673
29673
29674
29674
29674
29675
29675
29675
29676
29676
29676
29677
29677
29678
29678
29678
29679
29679
29680
29680
29681
29681
29682
29682
29683
29683
29684
29684
29685
29685
29686
29686
29687
29687
29688
29688
29689
29689
29690
29690
29691
29691
29692
29692
29693
29693
29694
29694
29695
29695
29696
29696
29697
29697
29698
29698
29699
29700
29700
29700
29700
29701
29701
29701
29702
29702
29702
29703
29703
29703
29704
29704
29704
29705
29705
29705
29706
29706
29706
29707
29707
29707
29708
29708
29708
29709
29709
29709
29710
29710
29710
29711
29711
29711
29712
29712
29712
29713
29713
29713
29714
29714
29714
29715
29715
29715
29716
29716
29716
29717
29717
29717
29718
29718
29718
29719
29719
29719
29720
29720
29720
29721
29721
29722
29722
29722
29722
29723
29723
29723
29724
29724
29724
29725
29725
29725
29726
29726
29726
29727
29727
29727
29728
29728
29728
29729
29729
29729
29730
29730
29730
29731
29731
29731
29732
29732
29732
29733
29733
29733
29734
29734
29734
29735
29735
29735
29736
29736
29736
29737
29737
29737
29738
29738
29738
29739
29739
29739
29740
29740
29740
29741
29741
29741
29742
29742
29742
29743
29743
29744
29744
29744
29744
29745
29745
29745
29746
29746
29746
29747
29747
29747
29748
29748
29748
29749
29749
29749
29750
29750
29750
29751
29751
29751
29752
29752
29752
29753
29753
29753
29754
29754
29754
29755
29755
29755
29756
29756
29756
29757
29757
29757
29758
29758
29758
29759
29759
29759
29760
29760
29760
29761
29761
29761
29762
29762
29762
29763
29763
29763
29764
29764
29764
29765
29765
29766
29766
29766
29766
29767
29767
29767
29768
29768
29768
29769
29769
29769
29770
29770
29770
29771
29771
29771
29772
29772
29772
29773
29773
29773
29774
29774
29774
29775
29775
29775
29776
29776
29776
29777
29777
29777
29778
29778
29778
29779
29779
29779
29780
29780
29780
29781
29781
29781
29782
29782
29782
29783
29783
29783
29784
29784
29784
29785
29785
29785
29786
29786
29786
29787
29787
29788
29788
29788
29788
29789
29789
29789
29790
29790
29790
29791
29791
29791
29792
29792
29792
29793
29793
29793
29794
29794
29794
29795
29795
29795
29796
29796
29796
29797
29797
29797
29798
29798
29798
29799
29799
29799
29800
29800
29800
29801
29801
29801
29802
29802
29802
29803
29803
29803
29804
29804
29804
29805
29805
29805
29806
29806
29806
29807
29807
29807
29808
29808
29808
29809
29809
29810
29810
29810
29810
29811
29811
29811
29812
29812
29812
29813
29813
29813
29814
29814
29814
29815
29815
29815
29816
29816
29816
29817
29817
29817
29818
29818
29818
29819
29819
29819
29820
29820
29820
29821
29821
29821
29822
29822
29822
29823
29823
29823
29824
29824
29824
29825
29825
29825
29826
29826
29826
29827
29827
29827
29828
29828
29828
29829
29829
29829
29830
29830
29830
29831
29831
29832
29832
29832
29832
29833
29833
29833
29834
29834
29834
29835
29835
29835
29836
29836
29836
29837
29837
29837
29838
29838
29838
29839
29839
29839
29840
29840
29840
29841
29841
29841
29842
29842
29842
29843
29843
29843
29844
29844
29844
29845
29845
29845
29846
29846
29846
29847
29847
29847
29848
29848
29848
29849
29849
29849
29850
29850
29850
29851
29851
29851
29852
29852
29852
29853
29853
29854
29854
29854
29854
29855
29855
29855
29856
29856
29856
29857
29857
29857
29858
29858
29858
29859
29859
29859
29860
29860
29860
29861
29861
29861
29862
29862
29862
29863
29863
29863
29864
29864
29864
29865
29865
29865
29866
29866
29866
29867
29867
29867
29868
29868
29868
29869
29869
29869
29870
29870
29870
29871
29871
29871
29872
29872
29872
29873
29873
29873
29874
29874
29874
29875
29875
29876
29876
29876
29876
29877
29877
29877
29878
29878
29878
29879
29879
29879
29880
29880
29880
29881
29881
29881
29882
29882
29882
29883
29883
29883
29884
29884
29884
29885
29885
29885
29886
29886
29886
29887
29887
29887
29888
29888
29888
29889
29889
29889
29890
29890
29890
29891
29891
29891
29892
29892
29892
29893
29893
29893
29894
29894
29894
29895
29895
29895
29896
29896
29896
29897
29897
29898
29898
29898
29899
29899
29900
29900
29901
29901
29902
29902
29903
29903
29904
29904
29905
29905
29906
29906
29907
29907
29908
29908
29909
29909
29910
29910
29911
29911
29912
29912
29913
29913
29914
29914
29915
29915
29916
29916
29917
29917
29918
29918
29919
29920
29920
29920
29920
29921
29921
29921
29922
29922
29922
29923
29923
29923
29924
29924
29924
29925
29925
29925
29926
29926
29926
29927
29927
29927
29928
29928
29928
29929
29929
29929
29930
29930
29930
29931
29931
29931
29932
29932
29932
29933
29933
29933
29934
29934
29934
29935
29935
29935
29936
29936
29936
29937
29937
29937
29938
29938
29938
29939
29939
29939
29940
29940
29940
29941
29941
29942
29942
29942
29942
29943
29943
29943
29944
29944
29944
29945
29945
29945
29946
29946
29946
29947
29947
29947
29948
29948
29948
29949
29949
29949
29950
29950
29950
29951
29951
29951
29952
29952
29952
29953
29953
29953
29954
29954
29954
29955
29955
29955
29956
29956
29956
29957
29957
29957
29958
29958
29958
29959
29959
29959
29960
29960
29960
29961
29961
29961
29962
29962
29962
29963
29963
29964
29964
29964
29964
29965
29965
29965
29966
29966
29966
29967
29967
29967
29968
29968
29968
29969
29969
29969
29970
29970
29970
29971
29971
29971
29972
29972
29972
29973
29973
29973
29974
29974
29974
29975
29975
29975
29976
29976
29976
29977
29977
29977
29978
29978
29978
29979
29979
29979
29980
29980
29980
29981
29981
29981
29982
29982
29982
29983
29983
29983
29984
29984
29984
29985
29985
29986
29986
29986
29986
29987
29987
29987
29988
29988
29988
29989
29989
29989
29990
29990
29990
29991
29991
29991
29992
29992
29992
29993
29993
29993
29994
29994
29994
29995
29995
29995
29996
29996
29996
29997
29997
29997
29998
29998
29998
29999
29999
29999
30000
30000
30000
30001
30001
30001
30002
30002
30002
30003
30003
30003
30004
30004
30004
30005
30005
30005
30006
30006
30006
30007
30007
30008
30008
30008
30008
30009
30009
30009
30010
30010
30010
30011
30011
30011
30012
30012
30012
30013
30013
30013
30014
30014
30014
30015
30015
30015
30016
30016
30016
30017
30017
30017
30018
30018
30018
30019
30019
30019
30020
30020
30020
30021
30021
30021
30022
30022
30022
30023
30023
30023
30024
30024
30024
30025
30025
30025
30026
30026
30026
30027
30027
30027
30028
30028
30028
30029
30029
30030
30030
30030
30030
30031
30031
30031
30032
30032
30032
30033
30033
30033
30034
30034
30034
30035
30035
30035
30036
30036
30036
30037
30037
30037
30038
30038
30038
30039
30039
30039
30040
30040
30040
30041
30041
30041
30042
30042
30042
30043
30043
30043
30044
30044
30044
30045
30045
30045
30046
30046
30046
30047
30047
30047
30048
30048
30048
30049
30049
30049
30050
30050
30050
30051
30051
30052
30052
30052
30052
30053
30053
30053
30054
30054
30054
30055
30055
30055
30056
30056
30056
30057
30057
30057
30058
30058
30058
30059
30059
30059
30060
30060
30060
30061
30061
30061
30062
30062
30062
30063
30063
30063
30064
30064
30064
30065
30065
30065
30066
30066
30066
30067
30067
30067
30068
30068
30068
30069
30069
30069
30070
30070
30070
30071
30071
30071
30072
30072
30072
30073
30073
30074
30074
30074
30074
30075
30075
30075
30076
30076
30076
30077
30077
30077
30078
30078
30078
30079
30079
30079
30080
30080
30080
30081
30081
30081
30082
30082
30082
30083
30083
30083
30084
30084
30084
30085
30085
30085
30086
30086
30086
30087
30087
30087
30088
30088
30088
30089
30089
30089
30090
30090
30090
30091
30091
30091
30092
30092
30092
30093
30093
30093
30094
30094
30094
30095
30095
30096
30096
30096
30096
30097
30097
30097
30098
30098
30098
30099
30099
30099
30100
30100
30100
30101
30101
30101
30102
30102
30102
30103
30103
30103
30104
30104
30104
30105
30105
30105
30106
30106
30106
30107
30107
30107
30108
30108
30108
30109
30109
30109
30110
30110
30110
30111
30111
30111
30112
30112
30112
30113
30113
30113
30114
30114
30114
30115
30115
30115
30116
30116
30116
30117
30117
30118
30118
30118
30119
30119
30120
30120
30121
30121
30122
30122
30123
30123
30124
30124
30125
30125
30126
30126
30127
30127
30128
30128
30129
30129
30130
30130
30131
30131
30132
30132
30133
30133
30134
30134
30135
30135
30136
30136
30137
30137
30138
30138
30139
30140
30140
30140
30140
30141
30141
30141
30142
30142
30142
30143
30143
30143
30144
30144
30144
30145
30145
30145
30146
30146
30146
30147
30147
30147
30148
30148
30148
30149
30149
30149
30150
30150
30150
30151
30151
30151
30152
30152
30152
30153
30153
30153
30154
30154
30154
30155
30155
30155
30156
30156
30156
30157
30157
30157
30158
30158
30158
30159
30159
30159
30160
30160
30160
30161
30161
30162
30162
30162
30162
30163
30163
30163
30164
30164
30164
30165
30165
30165
30166
30166
30166
30167
30167
30167
30168
30168
30168
30169
30169
30169
30170
30170
30170
30171
30171
30171
30172
30172
30172
30173
30173
30173
30174
30174
30174
30175
30175
30175
30176
30176
30176
30177
30177
30177
30178
30178
30178
30179
30179
30179
30180
30180
30180
30181
30181
30181
30182
30182
30182
30183
30183
30184
30184
30184
30184
30185
30185
30185
30186
30186
30186
30187
30187
30187
30188
30188
30188
30189
30189
30189
30190
30190
30190
30191
30191
30191
30192
30192
30192
30193
30193
30193
30194
30194
30194
30195
30195
30195
30196
30196
30196
30197
30197
30197
30198
30198
30198
30199
30199
30199
30200
30200
30200
30201
30201
30201
30202
30202
30202
30203
30203
30203
30204
30204
30204
30205
30205
30206
30206
30206
30206
30207
30207
30207
30208
30208
30208
30209
30209
30209
30210
30210
30210
30211
30211
30211
30212
30212
30212
30213
30213
30213
30214
30214
30214
30215
30215
30215
30216
30216
30216
30217
30217
30217
30218
30218
30218
30219
30219
30219
30220
30220
30220
30221
30221
30221
30222
30222
30222
30223
30223
30223
30224
30224
30224
30225
30225
30225
30226
30226
30226
30227
30227
30228
30228
30228
30228
30229
30229
30229
30230
30230
30230
30231
30231
30231
30232
30232
30232
30233
30233
30233
30234
30234
30234
30235
30235
30235
30236
30236
30236
30237
30237
30237
30238
30238
30238
30239
30239
30239
30240
30240
30240
30241
30241
30241
30242
30242
30242
30243
30243
30243
30244
30244
30244
30245
30245
30245
30246
30246
30246
30247
30247
30247
30248
30248
30248
30249
30249
30250
30250
30250
30250
30251
30251
30251
30252
30252
30252
30253
30253
30253
30254
30254
30254
30255
30255
30255
30256
30256
30256
30257
30257
30257
30258
30258
30258
30259
30259
30259
30260
30260
30260
30261
30261
30261
30262
30262
30262
30263
30263
30263
30264
30264
30264
30265
30265
30265
30266
30266
30266
30267
30267
30267
30268
30268
30268
30269
30269
30269
30270
30270
30270
30271
30271
30272
30272
30272
30272
30273
30273
30273
30274
30274
30274
30275
30275
30275
30276
30276
30276
30277
30277
30277
30278
30278
30278
30279
30279
30279
30280
30280
30280
30281
30281
30281
30282
30282
30282
30283
30283
30283
30284
30284
30284
30285
30285
30285
30286
30286
30286
30287
30287
30287
30288
30288
30288
30289
30289
30289
30290
30290
30290
30291
30291
30291
30292
30292
30292
30293
30293
30294
30294
30294
30294
30295
30295
30295
30296
30296
30296
30297
30297
30297
30298
30298
30298
30299
30299
30299
30300
30300
30300
30301
30301
30301
30302
30302
30302
30303
30303
30303
30304
30304
30304
30305
30305
30305
30306
30306
30306
30307
30307
30307
30308
30308
30308
30309
30309
30309
30310
30310
30310
30311
30311
30311
30312
30312
30312
30313
30313
30313
30314
30314
30314
30315
30315
30316
30316
30316
30316
30317
30317
30317
30318
30318
30318
30319
30319
30319
30320
30320
30320
30321
30321
30321
30322
30322
30322
30323
30323
30323
30324
30324
30324
30325
30325
30325
30326
30326
30326
30327
30327
30327
30328
30328
30328
30329
30329
30329
30330
30330
30330
30331
30331
30331
30332
30332
30332
30333
30333
30333
30334
30334
30334
30335
30335
30335
30336
30336
30336
30337
30337
30338
30338
30338
30339
30339
30340
30340
30341
30341
30342
30342
30343
30343
30344
30344
30345
30345
30346
30346
30347
30347
30348
30348
30349
30349
30350
30350
30351
30351
30352
30352
30353
30353
30354
30354
30355
30355
30356
30356
30357
30357
30358
30358
30359
30360
30360
30360
30360
30361
30361
30361
30362
30362
30362
30363
30363
30363
30364
30364
30364
30365
30365
30365
30366
30366
30366
30367
30367
30367
30368
30368
30368
30369
30369
30369
30370
30370
30370
30371
30371
30371
30372
30372
30372
30373
30373
30373
30374
30374
30374
30375
30375
30375
30376
30376
30376
30377
30377
30377
30378
30378
30378
30379
30379
30379
30380
30380
30380
30381
30381
30382
30382
30382
30382
30383
30383
30383
30384
30384
30384
30385
30385
30385
30386
30386
30386
30387
30387
30387
30388
30388
30388
30389
30389
30389
30390
30390
30390
30391
30391
30391
30392
30392
30392
30393
30393
30393
30394
30394
30394
30395
30395
30395
30396
30396
30396
30397
30397
30397
30398
30398
30398
30399
30399
30399
30400
30400
30400
30401
30401
30401
30402
30402
30402
30403
30403
30404
30404
30404
30404
30405
30405
30405
30406
30406
30406
30407
30407
30407
30408
30408
30408
30409
30409
30409
30410
30410
30410
30411
30411
30411
30412
30412
30412
30413
30413
30413
30414
30414
30414
30415
30415
30415
30416
30416
30416
30417
30417
30417
30418
30418
30418
30419
30419
30419
30420
30420
30420
30421
30421
30421
30422
30422
30422
30423
30423
30423
30424
30424
30424
30425
30425
30426
30426
30426
30426
30427
30427
30427
30428
30428
30428
30429
30429
30429
30430
30430
30430
30431
30431
30431
30432
30432
30432
30433
30433
30433
30434
30434
30434
30435
30435
30435
30436
30436
30436
30437
30437
30437
30438
30438
30438
30439
30439
30439
30440
30440
30440
30441
30441
30441
30442
30442
30442
30443
30443
30443
30444
30444
30444
30445
30445
30445
30446
30446
30446
30447
30447
30448
30448
30448
30448
30449
30449
30449
30450
30450
30450
30451
30451
30451
30452
30452
30452
30453
30453
30453
30454
30454
30454
30455
30455
30455
30456
30456
30456
30457
30457
30457
30458
30458
30458
30459
30459
30459
30460
30460
30460
30461
30461
30461
30462
30462
30462
30463
30463
30463
30464
30464
30464
30465
30465
30465
30466
30466
30466
30467
30467
30467
30468
30468
30468
30469
30469
30470
30470
30470
30470
30471
30471
30471
30472
30472
30472
30473
30473
30473
30474
30474
30474
30475
30475
30475
30476
30476
30476
30477
30477
30477
30478
30478
30478
30479
30479
30479
30480
30480
30480
30481
30481
30481
30482
30482
30482
30483
30483
30483
30484
30484
30484
30485
30485
30485
30486
30486
30486
30487
30487
30487
30488
30488
30488
30489
30489
30489
30490
30490
30490
30491
30491
30492
30492
30492
30492
30493
30493
30493
30494
30494
30494
30495
30495
30495
30496
30496
30496
30497
30497
30497
30498
30498
30498
30499
30499
30499
30500
30500
30500
30501
30501
30501
30502
30502
30502
30503
30503
30503
30504
30504
30504
30505
30505
30505
30506
30506
30506
30507
30507
30507
30508
30508
30508
30509
30509
30509
30510
30510
30510
30511
30511
30511
30512
30512
30512
30513
30513
30514
30514
30514
30514
30515
30515
30515
30516
30516
30516
30517
30517
30517
30518
30518
30518
30519
30519
30519
30520
30520
30520
30521
30521
30521
30522
30522
30522
30523
30523
30523
30524
30524
30524
30525
30525
30525
30526
30526
30526
30527
30527
30527
30528
30528
30528
30529
30529
30529
30530
30530
30530
30531
30531
30531
30532
30532
30532
30533
30533
30533
30534
30534
30534
30535
30535
30536
30536
30536
30536
30537
30537
30537
30538
30538
30538
30539
30539
30539
30540
30540
30540
30541
30541
30541
30542
30542
30542
30543
30543
30543
30544
30544
30544
30545
30545
30545
30546
30546
30546
30547
30547
30547
30548
30548
30548
30549
30549
30549
30550
30550
30550
30551
30551
30551
30552
30552
30552
30553
30553
30553
30554
30554
30554
30555
30555
30555
30556
30556
30556
30557
30557
30558
30558
30558
30559
30559
30560
30560
30561
30561
30562
30562
30563
30563
30564
30564
30565
30565
30566
30566
30567
30567
30568
30568
30569
30569
30570
30570
30571
30571
30572
30572
30573
30573
30574
30574
30575
30575
30576
30576
30577
30577
30578
30578
30579
30580
30580
30580
30580
30581
30581
30581
30582
30582
30582
30583
30583
30583
30584
30584
30584
30585
30585
30585
30586
30586
30586
30587
30587
30587
30588
30588
30588
30589
30589
30589
30590
30590
30590
30591
30591
30591
30592
30592
30592
30593
30593
30593
30594
30594
30594
30595
30595
30595
30596
30596
30596
30597
30597
30597
30598
30598
30598
30599
30599
30599
30600
30600
30600
30601
30601
30602
30602
30602
30602
30603
30603
30603
30604
30604
30604
30605
30605
30605
30606
30606
30606
30607
30607
30607
30608
30608
30608
30609
30609
30609
30610
30610
30610
30611
30611
30611
30612
30612
30612
30613
30613
30613
30614
30614
30614
30615
30615
30615
30616
30616
30616
30617
30617
30617
30618
30618
30618
30619
30619
30619
30620
30620
30620
30621
30621
30621
30622
30622
30622
30623
30623
30624
30624
30624
30624
30625
30625
30625
30626
30626
30626
30627
30627
30627
30628
30628
30628
30629
30629
30629
30630
30630
30630
30631
30631
30631
30632
30632
30632
30633
30633
30633
30634
30634
30634
30635
30635
30635
30636
30636
30636
30637
30637
30637
30638
30638
30638
30639
30639
30639
30640
30640
30640
30641
30641
30641
30642
30642
30642
30643
30643
30643
30644
30644
30644
30645
30645
30646
30646
30646
30646
30647
30647
30647
30648
30648
30648
30649
30649
30649
30650
30650
30650
30651
30651
30651
30652
30652
30652
30653
30653
30653
30654
30654
30654
30655
30655
30655
30656
30656
30656
30657
30657
30657
30658
30658
30658
30659
30659
30659
30660
30660
30660
30661
30661
30661
30662
30662
30662
30663
30663
30663
30664
30664
30664
30665
30665
30665
30666
30666
30666
30667
30667
30668
30668
30668
30668
30669
30669
30669
30670
30670
30670
30671
30671
30671
30672
30672
30672
30673
30673
30673
30674
30674
30674
30675
30675
30675
30676
30676
30676
30677
30677
30677
30678
30678
30678
30679
30679
30679
30680
30680
30680
30681
30681
30681
30682
30682
30682
30683
30683
30683
30684
30684
30684
30685
30685
30685
30686
30686
30686
30687
30687
30687
30688
30688
30688
30689
30689
30690
30690
30690
30690
30691
30691
30691
30692
30692
30692
30693
30693
30693
30694
30694
30694
30695
30695
30695
30696
30696
30696
30697
30697
30697
30698
30698
30698
30699
30699
30699
30700
30700
30700
30701
30701
30701
30702
30702
30702
30703
30703
30703
30704
30704
30704
30705
30705
30705
30706
30706
30706
30707
30707
30707
30708
30708
30708
30709
30709
30709
30710
30710
30710
30711
30711
30712
30712
30712
30712
30713
30713
30713
30714
30714
30714
30715
30715
30715
30716
30716
30716
30717
30717
30717
30718
30718
30718
30719
30719
30719
30720
30720
30720
30721
30721
30721
30722
30722
30722
30723
30723
30723
30724
30724
30724
30725
30725
30725
30726
30726
30726
30727
30727
30727
30728
30728
30728
30729
30729
30729
30730
30730
30730
30731
30731
30731
30732
30732
30732
30733
30733
30734
30734
30734
30734
30735
30735
30735
30736
30736
30736
30737
30737
30737
30738
30738
30738
30739
30739
30739
30740
30740
30740
30741
30741
30741
30742
30742
30742
30743
30743
30743
30744
30744
30744
30745
30745
30745
30746
30746
30746
30747
30747
30747
30748
30748
30748
30749
30749
30749
30750
30750
30750
30751
30751
30751
30752
30752
30752
30753
30753
30753
30754
30754
30754
30755
30755
30756
30756
30756
30756
30757
30757
30757
30758
30758
30758
30759
30759
30759
30760
30760
30760
30761
30761
30761
30762
30762
30762
30763
30763
30763
30764
30764
30764
30765
30765
30765
30766
30766
30766
30767
30767
30767
30768
30768
30768
30769
30769
30769
30770
30770
30770
30771
30771
30771
30772
30772
30772
30773
30773
30773
30774
30774
30774
30775
30775
30775
30776
30776
30776
30777
30777
30778
30778
30778
30779
30779
30780
30780
30781
30781
30782
30782
30783
30783
30784
30784
30785
30785
30786
30786
30787
30787
30788
30788
30789
30789
30790
30790
30791
30791
30792
30792
30793
30793
30794
30794
30795
30795
30796
30796
30797
30797
30798
30798
30799
30800
30800
30800
30800
30801
30801
30801
30802
30802
30802
30803
30803
30803
30804
30804
30804
30805
30805
30805
30806
30806
30806
30807
30807
30807
30808
30808
30808
30809
30809
30809
30810
30810
30810
30811
30811
30811
30812
30812
30812
30813
30813
30813
30814
30814
30814
30815
30815
30815
30816
30816
30816
30817
30817
30817
30818
30818
30818
30819
30819
30819
30820
30820
30820
30821
30821
30822
30822
30822
30822
30823
30823
30823
30824
30824
30824
30825
30825
30825
30826
30826
30826
30827
30827
30827
30828
30828
30828
30829
30829
30829
30830
30830
30830
30831
30831
30831
30832
30832
30832
30833
30833
30833
30834
30834
30834
30835
30835
30835
30836
30836
30836
30837
30837
30837
30838
30838
30838
30839
30839
30839
30840
30840
30840
30841
30841
30841
30842
30842
30842
30843
30843
30844
30844
30844
30844
30845
30845
30845
30846
30846
30846
30847
30847
30847
30848
30848
30848
30849
30849
30849
30850
30850
30850
30851
30851
30851
30852
30852
30852
30853
30853
30853
30854
30854
30854
30855
30855
30855
30856
30856
30856
30857
30857
30857
30858
30858
30858
30859
30859
30859
30860
30860
30860
30861
30861
30861
30862
30862
30862
30863
30863
30863
30864
30864
30864
30865
30865
30866
30866
30866
30866
30867
30867
30867
30868
30868
30868
30869
30869
30869
30870
30870
30870
30871
30871
30871
30872
30872
30872
30873
30873
30873
30874
30874
30874
30875
30875
30875
30876
30876
30876
30877
30877
30877
30878
30878
30878
30879
30879
30879
30880
30880
30880
30881
30881
30881
30882
30882
30882
30883
30883
30883
30884
30884
30884
30885
30885
30885
30886
30886
30886
30887
30887
30888
30888
30888
30888
30889
30889
30889
30890
30890
30890
30891
30891
30891
30892
30892
30892
30893
30893
30893
30894
30894
30894
30895
30895
30895
30896
30896
30896
30897
30897
30897
30898
30898
30898
30899
30899
30899
30900
30900
30900
30901
30901
30901
30902
30902
30902
30903
30903
30903
30904
30904
30904
30905
30905
30905
30906
30906
30906
30907
30907
30907
30908
30908
30908
30909
30909
30910
30910
30910
30910
30911
30911
30911
30912
30912
30912
30913
30913
30913
30914
30914
30914
30915
30915
30915
30916
30916
30916
30917
30917
30917
30918
30918
30918
30919
30919
30919
30920
30920
30920
30921
30921
30921
30922
30922
30922
30923
30923
30923
30924
30924
30924
30925
30925
30925
30926
30926
30926
30927
30927
30927
30928
30928
30928
30929
30929
30929
30930
30930
30930
30931
30931
30932
30932
30932
30932
30933
30933
30933
30934
30934
30934
30935
30935
30935
30936
30936
30936
30937
30937
30937
30938
30938
30938
30939
30939
30939
30940
30940
30940
30941
30941
30941
30942
30942
30942
30943
30943
30943
30944
30944
30944
30945
30945
30945
30946
30946
30946
30947
30947
30947
30948
30948
30948
30949
30949
30949
30950
30950
30950
30951
30951
30951
30952
30952
30952
30953
30953
30954
30954
30954
30954
30955
30955
30955
30956
30956
30956
30957
30957
30957
30958
30958
30958
30959
30959
30959
30960
30960
30960
30961
30961
30961
30962
30962
30962
30963
30963
30963
30964
30964
30964
30965
30965
30965
30966
30966
30966
30967
30967
30967
30968
30968
30968
30969
30969
30969
30970
30970
30970
30971
30971
30971
30972
30972
30972
30973
30973
30973
30974
30974
30974
30975
30975
30976
30976
30976
30976
30977
30977
30977
30978
30978
30978
30979
30979
30979
30980
30980
30980
30981
30981
30981
30982
30982
30982
30983
30983
30983
30984
30984
30984
30985
30985
30985
30986
30986
30986
30987
30987
30987
30988
30988
30988
30989
30989
30989
30990
30990
30990
30991
30991
30991
30992
30992
30992
30993
30993
30993
30994
30994
30994
30995
30995
30995
30996
30996
30996
30997
30997
30998
30998
30998
30999
30999
31000
31000
31001
31001
31002
31002
31003
31003
31004
31004
31005
31005
31006
31006
31007
31007
31008
31008
31009
31009
31010
31010
31011
31011
31012
31012
31013
31013
31014
31014
31015
31015
31016
31016
31017
31017
31018
31018
31019
31020
31020
31020
31020
31021
31021
31021
31022
31022
31022
31023
31023
31023
31024
31024
31024
31025
31025
31025
31026
31026
31026
31027
31027
31027
31028
31028
31028
31029
31029
31029
31030
31030
31030
31031
31031
31031
31032
31032
31032
31033
31033
31033
31034
31034
31034
31035
31035
31035
31036
31036
31036
31037
31037
31037
31038
31038
31038
31039
31039
31039
31040
31040
31040
31041
31041
31042
31042
31042
31042
31043
31043
31043
31044
31044
31044
31045
31045
31045
31046
31046
31046
31047
31047
31047
31048
31048
31048
31049
31049
31049
31050
31050
31050
31051
31051
31051
31052
31052
31052
31053
31053
31053
31054
31054
31054
31055
31055
31055
31056
31056
31056
31057
31057
31057
31058
31058
31058
31059
31059
31059
31060
31060
31060
31061
31061
31061
31062
31062
31062
31063
31063
31064
31064
31064
31064
31065
31065
31065
31066
31066
31066
31067
31067
31067
31068
31068
31068
31069
31069
31069
31070
31070
31070
31071
31071
31071
31072
31072
31072
31073
31073
31073
31074
31074
31074
31075
31075
31075
31076
31076
31076
31077
31077
31077
31078
31078
31078
31079
31079
31079
31080
31080
31080
31081
31081
31081
31082
31082
31082
31083
31083
31083
31084
31084
31084
31085
31085
31086
31086
31086
31086
31087
31087
31087
31088
31088
31088
31089
31089
31089
31090
31090
31090
31091
31091
31091
31092
31092
31092
31093
31093
31093
31094
31094
31094
31095
31095
31095
31096
31096
31096
31097
31097
31097
31098
31098
31098
31099
31099
31099
31100
31100
31100
31101
31101
31101
31102
31102
31102
31103
31103
31103
31104
31104
31104
31105
31105
31105
31106
31106
31106
31107
31107
31108
31108
31108
31108
31109
31109
31109
31110
31110
31110
31111
31111
31111
31112
31112
31112
31113
31113
31113
31114
31114
31114
31115
31115
31115
31116
31116
31116
31117
31117
31117
31118
31118
31118
31119
31119
31119
31120
31120
31120
31121
31121
31121
31122
31122
31122
31123
31123
31123
31124
31124
31124
31125
31125
31125
31126
31126
31126
31127
31127
31127
31128
31128
31128
31129
31129
31130
31130
31130
31130
31131
31131
31131
31132
31132
31132
31133
31133
31133
31134
31134
31134
31135
31135
31135
31136
31136
31136
31137
31137
31137
31138
31138
31138
31139
31139
31139
31140
31140
31140
31141
31141
31141
31142
31142
31142
31143
31143
31143
31144
31144
31144
31145
31145
31145
31146
31146
31146
31147
31147
31147
31148
31148
31148
31149
31149
31149
31150
31150
31150
31151
31151
31152
31152
31152
31152
31153
31153
31153
31154
31154
31154
31155
31155
31155
31156
31156
31156
31157
31157
31157
31158
31158
31158
31159
31159
31159
31160
31160
31160
31161
31161
31161
31162
31162
31162
31163
31163
31163
31164
31164
31164
31165
31165
31165
31166
31166
31166
31167
31167
31167
31168
31168
31168
31169
31169
31169
31170
31170
31170
31171
31171
31171
31172
31172
31172
31173
31173
31174
31174
31174
31174
31175
31175
31175
31176
31176
31176
31177
31177
31177
31178
31178
31178
31179
31179
31179
31180
31180
31180
31181
31181
31181
31182
31182
31182
31183
31183
31183
31184
31184
31184
31185
31185
31185
31186
31186
31186
31187
31187
31187
31188
31188
31188
31189
31189
31189
31190
31190
31190
31191
31191
31191
31192
31192
31192
31193
31193
31193
31194
31194
31194
31195
31195
31196
31196
31196
31196
31197
31197
31197
31198
31198
31198
31199
31199
31199
31200
31200
31200
31201
31201
31201
31202
31202
31202
31203
31203
31203
31204
31204
31204
31205
31205
31205
31206
31206
31206
31207
31207
31207
31208
31208
31208
31209
31209
31209
31210
31210
31210
31211
31211
31211
31212
31212
31212
31213
31213
31213
31214
31214
31214
31215
31215
31215
31216
31216
31216
31217
31217
31218
31218
31218
31219
31219
31220
31220
31221
31221
31222
31222
31223
31223
31224
31224
31225
31225
31226
31226
31227
31227
31228
31228
31229
31229
31230
31230
31231
31231
31232
31232
31233
31233
31234
31234
31235
31235
31236
31236
31237
31237
31238
31238
31239
31240
31240
31240
31240
31241
31241
31241
31242
31242
31242
31243
31243
31243
31244
31244
31244
31245
31245
31245
31246
31246
31246
31247
31247
31247
31248
31248
31248
31249
31249
31249
31250
31250
31250
31251
31251
31251
31252
31252
31252
31253
31253
31253
31254
31254
31254
31255
31255
31255
31256
31256
31256
31257
31257
31257
31258
31258
31258
31259
31259
31259
31260
31260
31260
31261
31261
31262
31262
31262
31262
31263
31263
31263
31264
31264
31264
31265
31265
31265
31266
31266
31266
31267
31267
31267
31268
31268
31268
31269
31269
31269
31270
31270
31270
31271
31271
31271
31272
31272
31272
31273
31273
31273
31274
31274
31274
31275
31275
31275
31276
31276
31276
31277
31277
31277
31278
31278
31278
31279
31279
31279
31280
31280
31280
31281
31281
31281
31282
31282
31282
31283
31283
31284
31284
31284
31284
31285
31285
31285
31286
31286
31286
31287
31287
31287
31288
31288
31288
31289
31289
31289
31290
31290
31290
31291
31291
31291
31292
31292
31292
31293
31293
31293
31294
31294
31294
31295
31295
31295
31296
31296
31296
31297
31297
31297
31298
31298
31298
31299
31299
31299
31300
31300
31300
31301
31301
31301
31302
31302
31302
31303
31303
31303
31304
31304
31304
31305
31305
31306
31306
31306
31306
31307
31307
31307
31308
31308
31308
31309
31309
31309
31310
31310
31310
31311
31311
31311
31312
31312
31312
31313
31313
31313
31314
31314
31314
31315
31315
31315
31316
31316
31316
31317
31317
31317
31318
31318
31318
31319
31319
31319
31320
31320
31320
31321
31321
31321
31322
31322
31322
31323
31323
31323
31324
31324
31324
31325
31325
31325
31326
31326
31326
31327
31327
31328
31328
31328
31328
31329
31329
31329
31330
31330
31330
31331
31331
31331
31332
31332
31332
31333
31333
31333
31334
31334
31334
31335
31335
31335
31336
31336
31336
31337
31337
31337
31338
31338
31338
31339
31339
31339
31340
31340
31340
31341
31341
31341
31342
31342
31342
31343
31343
31343
31344
31344
31344
31345
31345
31345
31346
31346
31346
31347
31347
31347
31348
31348
31348
31349
31349
31350
31350
31350
31350
31351
31351
31351
31352
31352
31352
31353
31353
31353
31354
31354
31354
31355
31355
31355
31356
31356
31356
31357
31357
31357
31358
31358
31358
31359
31359
31359
31360
31360
31360
31361
31361
31361
31362
31362
31362
31363
31363
31363
31364
31364
31364
31365
31365
31365
31366
31366
31366
31367
31367
31367
31368
31368
31368
31369
31369
31369
31370
31370
31370
31371
31371
31372
31372
31372
31372
31373
31373
31373
31374
31374
31374
31375
31375
31375
31376
31376
31376
31377
31377
31377
31378
31378
31378
31379
31379
31379
31380
31380
31380
31381
31381
31381
31382
31382
31382
31383
31383
31383
31384
31384
31384
31385
31385
31385
31386
31386
31386
31387
31387
31387
31388
31388
31388
31389
31389
31389
31390
31390
31390
31391
31391
31391
31392
31392
31392
31393
31393
31394
31394
31394
31394
31395
31395
31395
31396
31396
31396
31397
31397
31397
31398
31398
31398
31399
31399
31399
31400
31400
31400
31401
31401
31401
31402
31402
31402
31403
31403
31403
31404
31404
31404
31405
31405
31405
31406
31406
31406
31407
31407
31407
31408
31408
31408
31409
31409
31409
31410
31410
31410
31411
31411
31411
31412
31412
31412
31413
31413
31413
31414
31414
31414
31415
31415
31416
31416
31416
31416
31417
31417
31417
31418
31418
31418
31419
31419
31419
31420
31420
31420
31421
31421
31421
31422
31422
31422
31423
31423
31423
31424
31424
31424
31425
31425
31425
31426
31426
31426
31427
31427
31427
31428
31428
31428
31429
31429
31429
31430
31430
31430
31431
31431
31431
31432
31432
31432
31433
31433
31433
31434
31434
31434
31435
31435
31435
31436
31436
31436
31437
31437
31438
31438
31438
31439
31439
31440
31440
31441
31441
31442
31442
31443
31443
31444
31444
31445
31445
31446
31446
31447
31447
31448
31448
31449
31449
31450
31450
31451
31451
31452
31452
31453
31453
31454
31454
31455
31455
31456
31456
31457
31457
31458
31458
31459
31460
31460
31460
31460
31461
31461
31461
31462
31462
31462
31463
31463
31463
31464
31464
31464
31465
31465
31465
31466
31466
31466
31467
31467
31467
31468
31468
31468
31469
31469
31469
31470
31470
31470
31471
31471
31471
31472
31472
31472
31473
31473
31473
31474
31474
31474
31475
31475
31475
31476
31476
31476
31477
31477
31477
31478
31478
31478
31479
31479
31479
31480
31480
31480
31481
31481
31482
31482
31482
31482
31483
31483
31483
31484
31484
31484
31485
31485
31485
31486
31486
31486
31487
31487
31487
31488
31488
31488
31489
31489
31489
31490
31490
31490
31491
31491
31491
31492
31492
31492
31493
31493
31493
31494
31494
31494
31495
31495
31495
31496
31496
31496
31497
31497
31497
31498
31498
31498
31499
31499
31499
31500
31500
31500
31501
31501
31501
31502
31502
31502
31503
31503
31504
31504
31504
31504
31505
31505
31505
31506
31506
31506
31507
31507
31507
31508
31508
31508
31509
31509
31509
31510
31510
31510
31511
31511
31511
31512
31512
31512
31513
31513
31513
31514
31514
31514
31515
31515
31515
31516
31516
31516
31517
31517
31517
31518
31518
31518
31519
31519
31519
31520
31520
31520
31521
31521
31521
31522
31522
31522
31523
31523
31523
31524
31524
31524
31525
31525
31526
31526
31526
31526
31527
31527
31527
31528
31528
31528
31529
31529
31529
31530
31530
31530
31531
31531
31531
31532
31532
31532
31533
31533
31533
31534
31534
31534
31535
31535
31535
31536
31536
31536
31537
31537
31537
31538
31538
31538
31539
31539
31539
31540
31540
31540
31541
31541
31541
31542
31542
31542
31543
31543
31543
31544
31544
31544
31545
31545
31545
31546
31546
31546
31547
31547
31548
31548
31548
31548
31549
31549
31549
31550
31550
31550
31551
31551
31551
31552
31552
31552
31553
31553
31553
31554
31554
31554
31555
31555
31555
31556
31556
31556
31557
31557
31557
31558
31558
31558
31559
31559
31559
31560
31560
31560
31561
31561
31561
31562
31562
31562
31563
31563
31563
31564
31564
31564
31565
31565
31565
31566
31566
31566
31567
31567
31567
31568
31568
31568
31569
31569
31570
31570
31570
31570
31571
31571
31571
31572
31572
31572
31573
31573
31573
31574
31574
31574
31575
31575
31575
31576
31576
31576
31577
31577
31577
31578
31578
31578
31579
31579
31579
31580
31580
31580
31581
31581
31581
31582
31582
31582
31583
31583
31583
31584
31584
31584
31585
31585
31585
31586
31586
31586
31587
31587
31587
31588
31588
31588
31589
31589
31589
31590
31590
31590
31591
31591
31592
31592
31592
31592
31593
31593
31593
31594
31594
31594
31595
31595
31595
31596
31596
31596
31597
31597
31597
31598
31598
31598
31599
31599
31599
31600
31600
31600
31601
31601
31601
31602
31602
31602
31603
31603
31603
31604
31604
31604
31605
31605
31605
31606
31606
31606
31607
31607
31607
31608
31608
31608
31609
31609
31609
31610
31610
31610
31611
31611
31611
31612
31612
31612
31613
31613
31614
31614
31614
31614
31615
31615
31615
31616
31616
31616
31617
31617
31617
31618
31618
31618
31619
31619
31619
31620
31620
31620
31621
31621
31621
31622
31622
31622
31623
31623
31623
31624
31624
31624
31625
31625
31625
31626
31626
31626
31627
31627
31627
31628
31628
31628
31629
31629
31629
31630
31630
31630
31631
31631
31631
31632
31632
31632
31633
31633
31633
31634
31634
31634
31635
31635
31636
31636
31636
31636
31637
31637
31637
31638
31638
31638
31639
31639
31639
31640
31640
31640
31641
31641
31641
31642
31642
31642
31643
31643
31643
31644
31644
31644
31645
31645
31645
31646
31646
31646
31647
31647
31647
31648
31648
31648
31649
31649
31649
31650
31650
31650
31651
31651
31651
31652
31652
31652
31653
31653
31653
31654
31654
31654
31655
31655
31655
31656
31656
31656
31657
31657
31658
31658
31658
31659
31659
31660
31660
31661
31661
31662
31662
31663
31663
31664
31664
31665
31665
31666
31666
31667
31667
31668
31668
31669
31669
31670
31670
31671
31671
31672
31672
31673
31673
31674
31674
31675
31675
31676
31676
31677
31677
31678
31678
31679
31680
31680
31680
31680
31681
31681
31681
31682
31682
31682
31683
31683
31683
31684
31684
31684
31685
31685
31685
31686
31686
31686
31687
31687
31687
31688
31688
31688
31689
31689
31689
31690
31690
31690
31691
31691
31691
31692
31692
31692
31693
31693
31693
31694
31694
31694
31695
31695
31695
31696
31696
31696
31697
31697
31697
31698
31698
31698
31699
31699
31699
31700
31700
31700
31701
31701
31702
31702
31702
31702
31703
31703
31703
31704
31704
31704
31705
31705
31705
31706
31706
31706
31707
31707
31707
31708
31708
31708
31709
31709
31709
31710
31710
31710
31711
31711
31711
31712
31712
31712
31713
31713
31713
31714
31714
31714
31715
31715
31715
31716
31716
31716
31717
31717
31717
31718
31718
31718
31719
31719
31719
31720
31720
31720
31721
31721
31721
31722
31722
31722
31723
31723
31724
31724
31724
31724
31725
31725
31725
31726
31726
31726
31727
31727
31727
31728
31728
31728
31729
31729
31729
31730
31730
31730
31731
31731
31731
31732
31732
31732
31733
31733
31733
31734
31734
31734
31735
31735
31735
31736
31736
31736
31737
31737
31737
31738
31738
31738
31739
31739
31739
31740
31740
31740
31741
31741
31741
31742
31742
31742
31743
31743
31743
31744
31744
31744
31745
31745
31746
31746
31746
31746
31747
31747
31747
31748
31748
31748
31749
31749
31749
31750
31750
31750
31751
31751
31751
31752
31752
31752
31753
31753
31753
31754
31754
31754
31755
31755
31755
31756
31756
31756
31757
31757
31757
31758
31758
31758
31759
31759
31759
31760
31760
31760
31761
31761
31761
31762
31762
31762
31763
31763
31763
31764
31764
31764
31765
31765
31765
31766
31766
31766
31767
31767
31768
31768
31768
31768
31769
31769
31769
31770
31770
31770
31771
31771
31771
31772
31772
31772
31773
31773
31773
31774
31774
31774
31775
31775
31775
31776
31776
31776
31777
31777
31777
31778
31778
31778
31779
31779
31779
31780
31780
31780
31781
31781
31781
31782
31782
31782
31783
31783
31783
31784
31784
31784
31785
31785
31785
31786
31786
31786
31787
31787
31787
31788
31788
31788
31789
31789
31790
31790
31790
31790
31791
31791
31791
31792
31792
31792
31793
31793
31793
31794
31794
31794
31795
31795
31795
31796
31796
31796
31797
31797
31797
31798
31798
31798
31799
31799
31799
31800
31800
31800
31801
31801
31801
31802
31802
31802
31803
31803
31803
31804
31804
31804
31805
31805
31805
31806
31806
31806
31807
31807
31807
31808
31808
31808
31809
31809
31809
31810
31810
31810
31811
31811
31812
31812
31812
31812
31813
31813
31813
31814
31814
31814
31815
31815
31815
31816
31816
31816
31817
31817
31817
31818
31818
31818
31819
31819
31819
31820
31820
31820
31821
31821
31821
31822
31822
31822
31823
31823
31823
31824
31824
31824
31825
31825
31825
31826
31826
31826
31827
31827
31827
31828
31828
31828
31829
31829
31829
31830
31830
31830
31831
31831
31831
31832
31832
31832
31833
31833
31834
31834
31834
31834
31835
31835
31835
31836
31836
31836
31837
31837
31837
31838
31838
31838
31839
31839
31839
31840
31840
31840
31841
31841
31841
31842
31842
31842
31843
31843
31843
31844
31844
31844
31845
31845
31845
31846
31846
31846
31847
31847
31847
31848
31848
31848
31849
31849
31849
31850
31850
31850
31851
31851
31851
31852
31852
31852
31853
31853
31853
31854
31854
31854
31855
31855
31856
31856
31856
31856
31857
31857
31857
31858
31858
31858
31859
31859
31859
31860
31860
31860
31861
31861
31861
31862
31862
31862
31863
31863
31863
31864
31864
31864
31865
31865
31865
31866
31866
31866
31867
31867
31867
31868
31868
31868
31869
31869
31869
31870
31870
31870
31871
31871
31871
31872
31872
31872
31873
31873
31873
31874
31874
31874
31875
31875
31875
31876
31876
31876
31877
31877
31878
31878
31878
31879
31879
31880
31880
31881
31881
31882
31882
31883
31883
31884
31884
31885
31885
31886
31886
31887
31887
31888
31888
31889
31889
31890
31890
31891
31891
31892
31892
31893
31893
31894
31894
31895
31895
31896
31896
31897
31897
31898
31898
31899
31900
31900
31900
31900
31901
31901
31901
31902
31902
31902
31903
31903
31903
31904
31904
31904
31905
31905
31905
31906
31906
31906
31907
31907
31907
31908
31908
31908
31909
31909
31909
31910
31910
31910
31911
31911
31911
31912
31912
31912
31913
31913
31913
31914
31914
31914
31915
31915
31915
31916
31916
31916
31917
31917
31917
31918
31918
31918
31919
31919
31919
31920
31920
31920
31921
31921
31922
31922
31922
31922
31923
31923
31923
31924
31924
31924
31925
31925
31925
31926
31926
31926
31927
31927
31927
31928
31928
31928
31929
31929
31929
31930
31930
31930
31931
31931
31931
31932
31932
31932
31933
31933
31933
31934
31934
31934
31935
31935
31935
31936
31936
31936
31937
31937
31937
31938
31938
31938
31939
31939
31939
31940
31940
31940
31941
31941
31941
31942
31942
31942
31943
31943
31944
31944
31944
31944
31945
31945
31945
31946
31946
31946
31947
31947
31947
31948
31948
31948
31949
31949
31949
31950
31950
31950
31951
31951
31951
31952
31952
31952
31953
31953
31953
31954
31954
31954
31955
31955
31955
31956
31956
31956
31957
31957
31957
31958
31958
31958
31959
31959
31959
31960
31960
31960
31961
31961
31961
31962
31962
31962
31963
31963
31963
31964
31964
31964
31965
31965
31966
31966
31966
31966
31967
31967
31967
31968
31968
31968
31969
31969
31969
31970
31970
31970
31971
31971
31971
31972
31972
31972
31973
31973
31973
31974
31974
31974
31975
31975
31975
31976
31976
31976
31977
31977
31977
31978
31978
31978
31979
31979
31979
31980
31980
31980
31981
31981
31981
31982
31982
31982
31983
31983
31983
31984
31984
31984
31985
31985
31985
31986
31986
31986
31987
31987
31988
31988
31988
31988
31989
31989
31989
31990
31990
31990
31991
31991
31991
31992
31992
31992
31993
31993
31993
31994
31994
31994
31995
31995
31995
31996
31996
31996
31997
31997
31997
31998
31998
31998
31999
31999
31999
32000
32000
32000
32001
32001
32001
32002
32002
32002
32003
32003
32003
32004
32004
32004
32005
32005
32005
32006
32006
32006
32007
32007
32007
32008
32008
32008
32009
32009
32010
32010
32010
32010
32011
32011
32011
32012
32012
32012
32013
32013
32013
32014
32014
32014
32015
32015
32015
32016
32016
32016
32017
32017
32017
32018
32018
32018
32019
32019
32019
32020
32020
32020
32021
32021
32021
32022
32022
32022
32023
32023
32023
32024
32024
32024
32025
32025
32025
32026
32026
32026
32027
32027
32027
32028
32028
32028
32029
32029
32029
32030
32030
32030
32031
32031
32032
32032
32032
32032
32033
32033
32033
32034
32034
32034
32035
32035
32035
32036
32036
32036
32037
32037
32037
32038
32038
32038
32039
32039
32039
32040
32040
32040
32041
32041
32041
32042
32042
32042
32043
32043
32043
32044
32044
32044
32045
32045
32045
32046
32046
32046
32047
32047
32047
32048
32048
32048
32049
32049
32049
32050
32050
32050
32051
32051
32051
32052
32052
32052
32053
32053
32054
32054
32054
32054
32055
32055
32055
32056
32056
32056
32057
32057
32057
32058
32058
32058
32059
32059
32059
32060
32060
32060
32061
32061
32061
32062
32062
32062
32063
32063
32063
32064
32064
32064
32065
32065
32065
32066
32066
32066
32067
32067
32067
32068
32068
32068
32069
32069
32069
32070
32070
32070
32071
32071
32071
32072
32072
32072
32073
32073
32073
32074
32074
32074
32075
32075
32076
32076
32076
32076
32077
32077
32077
32078
32078
32078
32079
32079
32079
32080
32080
32080
32081
32081
32081
32082
32082
32082
32083
32083
32083
32084
32084
32084
32085
32085
32085
32086
32086
32086
32087
32087
32087
32088
32088
32088
32089
32089
32089
32090
32090
32090
32091
32091
32091
32092
32092
32092
32093
32093
32093
32094
32094
32094
32095
32095
32095
32096
32096
32096
32097
32097
32098
32098
32098
32099
32099
32100
32100
32101
32101
32102
32102
32103
32103
32104
32104
32105
32105
32106
32106
32107
32107
32108
32108
32109
32109
32110
32110
32111
32111
32112
32112
32113
32113
32114
32114
32115
32115
32116
32116
32117
32117
32118
32118
32119
32120
32120
32120
32120
32121
32121
32121
32122
32122
32122
32123
32123
32123
32124
32124
32124
32125
32125
32125
32126
32126
32126
32127
32127
32127
32128
32128
32128
32129
32129
32129
32130
32130
32130
32131
32131
32131
32132
32132
32132
32133
32133
32133
32134
32134
32134
32135
32135
32135
32136
32136
32136
32137
32137
32137
32138
32138
32138
32139
32139
32139
32140
32140
32140
32141
32141
32142
32142
32142
32142
32143
32143
32143
32144
32144
32144
32145
32145
32145
32146
32146
32146
32147
32147
32147
32148
32148
32148
32149
32149
32149
32150
32150
32150
32151
32151
32151
32152
32152
32152
32153
32153
32153
32154
32154
32154
32155
32155
32155
32156
32156
32156
32157
32157
32157
32158
32158
32158
32159
32159
32159
32160
32160
32160
32161
32161
32161
32162
32162
32162
32163
32163
32164
32164
32164
32164
32165
32165
32165
32166
32166
32166
32167
32167
32167
32168
32168
32168
32169
32169
32169
32170
32170
32170
32171
32171
32171
32172
32172
32172
32173
32173
32173
32174
32174
32174
32175
32175
32175
32176
32176
32176
32177
32177
32177
32178
32178
32178
32179
32179
32179
32180
32180
32180
32181
32181
32181
32182
32182
32182
32183
32183
32183
32184
32184
32184
32185
32185
32186
32186
32186
32186
32187
32187
32187
32188
32188
32188
32189
32189
32189
32190
32190
32190
32191
32191
32191
32192
32192
32192
32193
32193
32193
32194
32194
32194
32195
32195
32195
32196
32196
32196
32197
32197
32197
32198
32198
32198
32199
32199
32199
32200
32200
32200
32201
32201
32201
32202
32202
32202
32203
32203
32203
32204
32204
32204
32205
32205
32205
32206
32206
32206
32207
32207
32208
32208
32208
32208
32209
32209
32209
32210
32210
32210
32211
32211
32211
32212
32212
32212
32213
32213
32213
32214
32214
32214
32215
32215
32215
32216
32216
32216
32217
32217
32217
32218
32218
32218
32219
32219
32219
32220
32220
32220
32221
32221
32221
32222
32222
32222
32223
32223
32223
32224
32224
32224
32225
32225
32225
32226
32226
32226
32227
32227
32227
32228
32228
32228
32229
32229
32230
32230
32230
32230
32231
32231
32231
32232
32232
32232
32233
32233
32233
32234
32234
32234
32235
32235
32235
32236
32236
32236
32237
32237
32237
32238
32238
32238
32239
32239
32239
32240
32240
32240
32241
32241
32241
32242
32242
32242
32243
32243
32243
32244
32244
32244
32245
32245
32245
32246
32246
32246
32247
32247
32247
32248
32248
32248
32249
32249
32249
32250
32250
32250
32251
32251
32252
32252
32252
32252
32253
32253
32253
32254
32254
32254
32255
32255
32255
32256
32256
32256
32257
32257
32257
32258
32258
32258
32259
32259
32259
32260
32260
32260
32261
32261
32261
32262
32262
32262
32263
32263
32263
32264
32264
32264
32265
32265
32265
32266
32266
32266
32267
32267
32267
32268
32268
32268
32269
32269
32269
32270
32270
32270
32271
32271
32271
32272
32272
32272
32273
32273
32274
32274
32274
32274
32275
32275
32275
32276
32276
32276
32277
32277
32277
32278
32278
32278
32279
32279
32279
32280
32280
32280
32281
32281
32281
32282
32282
32282
32283
32283
32283
32284
32284
32284
32285
32285
32285
32286
32286
32286
32287
32287
32287
32288
32288
32288
32289
32289
32289
32290
32290
32290
32291
32291
32291
32292
32292
32292
32293
32293
32293
32294
32294
32294
32295
32295
32296
32296
32296
32296
32297
32297
32297
32298
32298
32298
32299
32299
32299
32300
32300
32300
32301
32301
32301
32302
32302
32302
32303
32303
32303
32304
32304
32304
32305
32305
32305
32306
32306
32306
32307
32307
32307
32308
32308
32308
32309
32309
32309
32310
32310
32310
32311
32311
32311
32312
32312
32312
32313
32313
32313
32314
32314
32314
32315
32315
32315
32316
32316
32316
32317
32317
32318
32318
32318
32319
32319
32320
32320
32321
32321
32322
32322
32323
32323
32324
32324
32325
32325
32326
32326
32327
32327
32328
32328
32329
32329
32330
32330
32331
32331
32332
32332
32333
32333
32334
32334
32335
32335
32336
32336
32337
32337
32338
32338
32339
32340
32340
32340
32340
32341
32341
32341
32342
32342
32342
32343
32343
32343
32344
32344
32344
32345
32345
32345
32346
32346
32346
32347
32347
32347
32348
32348
32348
32349
32349
32349
32350
32350
32350
32351
32351
32351
32352
32352
32352
32353
32353
32353
32354
32354
32354
32355
32355
32355
32356
32356
32356
32357
32357
32357
32358
32358
32358
32359
32359
32359
32360
32360
32360
32361
32361
32362
32362
32362
32362
32363
32363
32363
32364
32364
32364
32365
32365
32365
32366
32366
32366
32367
32367
32367
32368
32368
32368
32369
32369
32369
32370
32370
32370
32371
32371
32371
32372
32372
32372
32373
32373
32373
32374
32374
32374
32375
32375
32375
32376
32376
32376
32377
32377
32377
32378
32378
32378
32379
32379
32379
32380
32380
32380
32381
32381
32381
32382
32382
32382
32383
32383
32384
32384
32384
32384
32385
32385
32385
32386
32386
32386
32387
32387
32387
32388
32388
32388
32389
32389
32389
32390
32390
32390
32391
32391
32391
32392
32392
32392
32393
32393
32393
32394
32394
32394
32395
32395
32395
32396
32396
32396
32397
32397
32397
32398
32398
32398
32399
32399
32399
32400
32400
32400
32401
32401
32401
32402
32402
32402
32403
32403
32403
32404
32404
32404
32405
32405
32406
32406
32406
32406
32407
32407
32407
32408
32408
32408
32409
32409
32409
32410
32410
32410
32411
32411
32411
32412
32412
32412
32413
32413
32413
32414
32414
32414
32415
32415
32415
32416
32416
32416
32417
32417
32417
32418
32418
32418
32419
32419
32419
32420
32420
32420
32421
32421
32421
32422
32422
32422
32423
32423
32423
32424
32424
32424
32425
32425
32425
32426
32426
32426
32427
32427
32428
32428
32428
32428
32429
32429
32429
32430
32430
32430
32431
32431
32431
32432
32432
32432
32433
32433
32433
32434
32434
32434
32435
32435
32435
32436
32436
32436
32437
32437
32437
32438
32438
32438
32439
32439
32439
32440
32440
32440
32441
32441
32441
32442
32442
32442
32443
32443
32443
32444
32444
32444
32445
32445
32445
32446
32446
32446
32447
32447
32447
32448
32448
32448
32449
32449
32450
32450
32450
32450
32451
32451
32451
32452
32452
32452
32453
32453
32453
32454
32454
32454
32455
32455
32455
32456
32456
32456
32457
32457
32457
32458
32458
32458
32459
32459
32459
32460
32460
32460
32461
32461
32461
32462
32462
32462
32463
32463
32463
32464
32464
32464
32465
32465
32465
32466
32466
32466
32467
32467
32467
32468
32468
32468
32469
32469
32469
32470
32470
32470
32471
32471
32472
32472
32472
32472
32473
32473
32473
32474
32474
32474
32475
32475
32475
32476
32476
32476
32477
32477
32477
32478
32478
32478
32479
32479
32479
32480
32480
32480
32481
32481
32481
32482
32482
32482
32483
32483
32483
32484
32484
32484
32485
32485
32485
32486
32486
32486
32487
32487
32487
32488
32488
32488
32489
32489
32489
32490
32490
32490
32491
32491
32491
32492
32492
32492
32493
32493
32494
32494
32494
32494
32495
32495
32495
32496
32496
32496
32497
32497
32497
32498
32498
32498
32499
32499
32499
32500
32500
32500
32501
32501
32501
32502
32502
32502
32503
32503
32503
32504
32504
32504
32505
32505
32505
32506
32506
32506
32507
32507
32507
32508
32508
32508
32509
32509
32509
32510
32510
32510
32511
32511
32511
32512
32512
32512
32513
32513
32513
32514
32514
32514
32515
32515
32516
32516
32516
32516
32517
32517
32517
32518
32518
32518
32519
32519
32519
32520
32520
32520
32521
32521
32521
32522
32522
32522
32523
32523
32523
32524
32524
32524
32525
32525
32525
32526
32526
32526
32527
32527
32527
32528
32528
32528
32529
32529
32529
32530
32530
32530
32531
32531
32531
32532
32532
32532
32533
32533
32533
32534
32534
32534
32535
32535
32535
32536
32536
32536
32537
32537
32538
32538
32538
32539
32539
32540
32540
32541
32541
32542
32542
32543
32543
32544
32544
32545
32545
32546
32546
32547
32547
32548
32548
32549
32549
32550
32550
32551
32551
32552
32552
32553
32553
32554
32554
32555
32555
32556
32556
32557
32557
32558
32558
32559
32560
32560
32560
32560
32561
32561
32561
32562
32562
32562
32563
32563
32563
32564
32564
32564
32565
32565
32565
32566
32566
32566
32567
32567
32567
32568
32568
32568
32569
32569
32569
32570
32570
32570
32571
32571
32571
32572
32572
32572
32573
32573
32573
32574
32574
32574
32575
32575
32575
32576
32576
32576
32577
32577
32577
32578
32578
32578
32579
32579
32579
32580
32580
32580
32581
32581
32582
32582
32582
32582
32583
32583
32583
32584
32584
32584
32585
32585
32585
32586
32586
32586
32587
32587
32587
32588
32588
32588
32589
32589
32589
32590
32590
32590
32591
32591
32591
32592
32592
32592
32593
32593
32593
32594
32594
32594
32595
32595
32595
32596
32596
32596
32597
32597
32597
32598
32598
32598
32599
32599
32599
32600
32600
32600
32601
32601
32601
32602
32602
32602
32603
32603
32604
32604
32604
32604
32605
32605
32605
32606
32606
32606
32607
32607
32607
32608
32608
32608
32609
32609
32609
32610
32610
32610
32611
32611
32611
32612
32612
32612
32613
32613
32613
32614
32614
32614
32615
32615
32615
32616
32616
32616
32617
32617
32617
32618
32618
32618
32619
32619
32619
32620
32620
32620
32621
32621
32621
32622
32622
32622
32623
32623
32623
32624
32624
32624
32625
32625
32626
32626
32626
32626
32627
32627
32627
32628
32628
32628
32629
32629
32629
32630
32630
32630
32631
32631
32631
32632
32632
32632
32633
32633
32633
32634
32634
32634
32635
32635
32635
32636
32636
32636
32637
32637
32637
32638
32638
32638
32639
32639
32639
32640
32640
32640
32641
32641
32641
32642
32642
32642
32643
32643
32643
32644
32644
32644
32645
32645
32645
32646
32646
32646
32647
32647
32648
32648
32648
32648
32649
32649
32649
32650
32650
32650
32651
32651
32651
32652
32652
32652
32653
32653
32653
32654
32654
32654
32655
32655
32655
32656
32656
32656
32657
32657
32657
32658
32658
32658
32659
32659
32659
32660
32660
32660
32661
32661
32661
32662
32662
32662
32663
32663
32663
32664
32664
32664
32665
32665
32665
32666
32666
32666
32667
32667
32667
32668
32668
32668
32669
32669
32670
32670
32670
32670
32671
32671
32671
32672
32672
32672
32673
32673
32673
32674
32674
32674
32675
32675
32675
32676
32676
32676
32677
32677
32677
32678
32678
32678
32679
32679
32679
32680
32680
32680
32681
32681
32681
32682
32682
32682
32683
32683
32683
32684
32684
32684
32685
32685
32685
32686
32686
32686
32687
32687
32687
32688
32688
32688
32689
32689
32689
32690
32690
32690
32691
32691
32692
32692
32692
32692
32693
32693
32693
32694
32694
32694
32695
32695
32695
32696
32696
32696
32697
32697
32697
32698
32698
32698
32699
32699
32699
32700
32700
32700
32701
32701
32701
32702
32702
32702
32703
32703
32703
32704
32704
32704
32705
32705
32705
32706
32706
32706
32707
32707
32707
32708
32708
32708
32709
32709
32709
32710
32710
32710
32711
32711
32711
32712
32712
32712
32713
32713
32714
32714
32714
32714
32715
32715
32715
32716
32716
32716
32717
32717
32717
32718
32718
32718
32719
32719
32719
32720
32720
32720
32721
32721
32721
32722
32722
32722
32723
32723
32723
32724
32724
32724
32725
32725
32725
32726
32726
32726
32727
32727
32727
32728
32728
32728
32729
32729
32729
32730
32730
32730
32731
32731
32731
32732
32732
32732
32733
32733
32733
32734
32734
32734
32735
32735
32736
32736
32736
32736
32737
32737
32737
32738
32738
32738
32739
32739
32739
32740
32740
32740
32741
32741
32741
32742
32742
32742
32743
32743
32743
32744
32744
32744
32745
32745
32745
32746
32746
32746
32747
32747
32747
32748
32748
32748
32749
32749
32749
32750
32750
32750
32751
32751
32751
32752
32752
32752
32753
32753
32753
32754
32754
32754
32755
32755
32755
32756
32756
32756
32757
32757
32758
32758
32758
32759
32759
32760
32760
32761
32761
32762
32762
32763
32763
32764
32764
32765
32765
32766
32766
32767
32767
32768
32768
32769
32769
32770
32770
32771
32771
32772
32772
32773
32773
32774
32774
32775
32775
32776
32776
32777
32777
32778
32778
32779
32780
32780
32780
32780
32781
32781
32781
32782
32782
32782
32783
32783
32783
32784
32784
32784
32785
32785
32785
32786
32786
32786
32787
32787
32787
32788
32788
32788
32789
32789
32789
32790
32790
32790
32791
32791
32791
32792
32792
32792
32793
32793
32793
32794
32794
32794
32795
32795
32795
32796
32796
32796
32797
32797
32797
32798
32798
32798
32799
32799
32799
32800
32800
32800
32801
32801
32802
32802
32802
32802
32803
32803
32803
32804
32804
32804
32805
32805
32805
32806
32806
32806
32807
32807
32807
32808
32808
32808
32809
32809
32809
32810
32810
32810
32811
32811
32811
32812
32812
32812
32813
32813
32813
32814
32814
32814
32815
32815
32815
32816
32816
32816
32817
32817
32817
32818
32818
32818
32819
32819
32819
32820
32820
32820
32821
32821
32821
32822
32822
32822
32823
32823
32824
32824
32824
32824
32825
32825
32825
32826
32826
32826
32827
32827
32827
32828
32828
32828
32829
32829
32829
32830
32830
32830
32831
32831
32831
32832
32832
32832
32833
32833
32833
32834
32834
32834
32835
32835
32835
32836
32836
32836
32837
32837
32837
32838
32838
32838
32839
32839
32839
32840
32840
32840
32841
32841
32841
32842
32842
32842
32843
32843
32843
32844
32844
32844
32845
32845
32846
32846
32846
32846
32847
32847
32847
32848
32848
32848
32849
32849
32849
32850
32850
32850
32851
32851
32851
32852
32852
32852
32853
32853
32853
32854
32854
32854
32855
32855
32855
32856
32856
32856
32857
32857
32857
32858
32858
32858
32859
32859
32859
32860
32860
32860
32861
32861
32861
32862
32862
32862
32863
32863
32863
32864
32864
32864
32865
32865
32865
32866
32866
32866
32867
32867
32868
32868
32868
32868
32869
32869
32869
32870
32870
32870
32871
32871
32871
32872
32872
32872
32873
32873
32873
32874
32874
32874
32875
32875
32875
32876
32876
32876
32877
32877
32877
32878
32878
32878
32879
32879
32879
32880
32880
32880
32881
32881
32881
32882
32882
32882
32883
32883
32883
32884
32884
32884
32885
32885
32885
32886
32886
32886
32887
32887
32887
32888
32888
32888
32889
32889
32890
32890
32890
32890
32891
32891
32891
32892
32892
32892
32893
32893
32893
32894
32894
32894
32895
32895
32895
32896
32896
32896
32897
32897
32897
32898
32898
32898
32899
32899
32899
32900
32900
32900
32901
32901
32901
32902
32902
32902
32903
32903
32903
32904
32904
32904
32905
32905
32905
32906
32906
32906
32907
32907
32907
32908
32908
32908
32909
32909
32909
32910
32910
32910
32911
32911
32912
32912
32912
32912
32913
32913
32913
32914
32914
32914
32915
32915
32915
32916
32916
32916
32917
32917
32917
32918
32918
32918
32919
32919
32919
32920
32920
32920
32921
32921
32921
32922
32922
32922
32923
32923
32923
32924
32924
32924
32925
32925
32925
32926
32926
32926
32927
32927
32927
32928
32928
32928
32929
32929
32929
32930
32930
32930
32931
32931
32931
32932
32932
32932
32933
32933
32934
32934
32934
32934
32935
32935
32935
32936
32936
32936
32937
32937
32937
32938
32938
32938
32939
32939
32939
32940
32940
32940
32941
32941
32941
32942
32942
32942
32943
32943
32943
32944
32944
32944
32945
32945
32945
32946
32946
32946
32947
32947
32947
32948
32948
32948
32949
32949
32949
32950
32950
32950
32951
32951
32951
32952
32952
32952
32953
32953
32953
32954
32954
32954
32955
32955
32956
32956
32956
32956
32957
32957
32957
32958
32958
32958
32959
32959
32959
32960
32960
32960
32961
32961
32961
32962
32962
32962
32963
32963
32963
32964
32964
32964
32965
32965
32965
32966
32966
32966
32967
32967
32967
32968
32968
32968
32969
32969
32969
32970
32970
32970
32971
32971
32971
32972
32972
32972
32973
32973
32973
32974
32974
32974
32975
32975
32975
32976
32976
32976
32977
32977
32978
32978
32978
32979
32979
32980
32980
32981
32981
32982
32982
32983
32983
32984
32984
32985
32985
32986
32986
32987
32987
32988
32988
32989
32989
32990
32990
32991
32991
32992
32992
32993
32993
32994
32994
32995
32995
32996
32996
32997
32997
32998
32998
32999
33000
33000
33000
33000
33001
33001
33001
33002
33002
33002
33003
33003
33003
33004
33004
33004
33005
33005
33005
33006
33006
33006
33007
33007
33007
33008
33008
33008
33009
33009
33009
33010
33010
33010
33011
33011
33011
33012
33012
33012
33013
33013
33013
33014
33014
33014
33015
33015
33015
33016
33016
33016
33017
33017
33017
33018
33018
33018
33019
33019
33019
33020
33020
33020
33021
33021
33022
33022
33022
33022
33023
33023
33023
33024
33024
33024
33025
33025
33025
33026
33026
33026
33027
33027
33027
33028
33028
33028
33029
33029
33029
33030
33030
33030
33031
33031
33031
33032
33032
33032
33033
33033
33033
33034
33034
33034
33035
33035
33035
33036
33036
33036
33037
33037
33037
33038
33038
33038
33039
33039
33039
33040
33040
33040
33041
33041
33041
33042
33042
33042
33043
33043
33044
33044
33044
33044
33045
33045
33045
33046
33046
33046
33047
33047
33047
33048
33048
33048
33049
33049
33049
33050
33050
33050
33051
33051
33051
33052
33052
33052
33053
33053
33053
33054
33054
33054
33055
33055
33055
33056
33056
33056
33057
33057
33057
33058
33058
33058
33059
33059
33059
33060
33060
33060
33061
33061
33061
33062
33062
33062
33063
33063
33063
33064
33064
33064
33065
33065
33066
33066
33066
33066
33067
33067
33067
33068
33068
33068
33069
33069
33069
33070
33070
33070
33071
33071
33071
33072
33072
33072
33073
33073
33073
33074
33074
33074
33075
33075
33075
33076
33076
33076
33077
33077
33077
33078
33078
33078
33079
33079
33079
33080
33080
33080
33081
33081
33081
33082
33082
33082
33083
33083
33083
33084
33084
33084
33085
33085
33085
33086
33086
33086
33087
33087
33088
33088
33088
33088
33089
33089
33089
33090
33090
33090
33091
33091
33091
33092
33092
33092
33093
33093
33093
33094
33094
33094
33095
33095
33095
33096
33096
33096
33097
33097
33097
33098
33098
33098
33099
33099
33099
33100
33100
33100
33101
33101
33101
33102
33102
33102
33103
33103
33103
33104
33104
33104
33105
33105
33105
33106
33106
33106
33107
33107
33107
33108
33108
33108
33109
33109
33110
33110
33110
33110
33111
33111
33111
33112
33112
33112
33113
33113
33113
33114
33114
33114
33115
33115
33115
33116
33116
33116
33117
33117
33117
33118
33118
33118
33119
33119
33119
33120
33120
33120
33121
33121
33121
33122
33122
33122
33123
33123
33123
33124
33124
33124
33125
33125
33125
33126
33126
33126
33127
33127
33127
33128
33128
33128
33129
33129
33129
33130
33130
33130
33131
33131
33132
33132
33132
33132
33133
33133
33133
33134
33134
33134
33135
33135
33135
33136
33136
33136
33137
33137
33137
33138
33138
33138
33139
33139
33139
33140
33140
33140
33141
33141
33141
33142
33142
33142
33143
33143
33143
33144
33144
33144
33145
33145
33145
33146
33146
33146
33147
33147
33147
33148
33148
33148
33149
33149
33149
33150
33150
33150
33151
33151
33151
33152
33152
33152
33153
33153
33154
33154
33154
33154
33155
33155
33155
33156
33156
33156
33157
33157
33157
33158
33158
33158
33159
33159
33159
33160
33160
33160
33161
33161
33161
33162
33162
33162
33163
33163
33163
33164
33164
33164
33165
33165
33165
33166
33166
33166
33167
33167
33167
33168
33168
33168
33169
33169
33169
33170
33170
33170
33171
33171
33171
33172
33172
33172
33173
33173
33173
33174
33174
33174
33175
33175
33176
33176
33176
33176
33177
33177
33177
33178
33178
33178
33179
33179
33179
33180
33180
33180
33181
33181
33181
33182
33182
33182
33183
33183
33183
33184
33184
33184
33185
33185
33185
33186
33186
33186
33187
33187
33187
33188
33188
33188
33189
33189
33189
33190
33190
33190
33191
33191
33191
33192
33192
33192
33193
33193
33193
33194
33194
33194
33195
33195
33195
33196
33196
33196
33197
33197
33198
33198
33198
33199
33199
33200
33200
33201
33201
33202
33202
33203
33203
33204
33204
33205
33205
33206
33206
33207
33207
33208
33208
33209
33209
33210
33210
33211
33211
33212
33212
33213
33213
33214
33214
33215
33215
33216
33216
33217
33217
33218
33218
33219
33220
33220
33220
33220
33221
33221
33221
33222
33222
33222
33223
33223
33223
33224
33224
33224
33225
33225
33225
33226
33226
33226
33227
33227
33227
33228
33228
33228
33229
33229
33229
33230
33230
33230
33231
33231
33231
33232
33232
33232
33233
33233
33233
33234
33234
33234
33235
33235
33235
33236
33236
33236
33237
33237
33237
33238
33238
33238
33239
33239
33239
33240
33240
33240
33241
33241
33242
33242
33242
33242
33243
33243
33243
33244
33244
33244
33245
33245
33245
33246
33246
33246
33247
33247
33247
33248
33248
33248
33249
33249
33249
33250
33250
33250
33251
33251
33251
33252
33252
33252
33253
33253
33253
33254
33254
33254
33255
33255
33255
33256
33256
33256
33257
33257
33257
33258
33258
33258
33259
33259
33259
33260
33260
33260
33261
33261
33261
33262
33262
33262
33263
33263
33264
33264
33264
33264
33265
33265
33265
33266
33266
33266
33267
33267
33267
33268
33268
33268
33269
33269
33269
33270
33270
33270
33271
33271
33271
33272
33272
33272
33273
33273
33273
33274
33274
33274
33275
33275
33275
33276
33276
33276
33277
33277
33277
33278
33278
33278
33279
33279
33279
33280
33280
33280
33281
33281
33281
33282
33282
33282
33283
33283
33283
33284
33284
33284
33285
33285
33286
33286
33286
33286
33287
33287
33287
33288
33288
33288
33289
33289
33289
33290
33290
33290
33291
33291
33291
33292
33292
33292
33293
33293
33293
33294
33294
33294
33295
33295
33295
33296
33296
33296
33297
33297
33297
33298
33298
33298
33299
33299
33299
33300
33300
33300
33301
33301
33301
33302
33302
33302
33303
33303
33303
33304
33304
33304
33305
33305
33305
33306
33306
33306
33307
33307
33308
33308
33308
33308
33309
33309
33309
33310
33310
33310
33311
33311
33311
33312
33312
33312
33313
33313
33313
33314
33314
33314
33315
33315
33315
33316
33316
33316
33317
33317
33317
33318
33318
33318
33319
33319
33319
33320
33320
33320
33321
33321
33321
33322
33322
33322
33323
33323
33323
33324
33324
33324
33325
33325
33325
33326
33326
33326
33327
33327
33327
33328
33328
33328
33329
33329
33330
33330
33330
33330
33331
33331
33331
33332
33332
33332
33333
33333
33333
33334
33334
33334
33335
33335
33335
33336
33336
33336
33337
33337
33337
33338
33338
33338
33339
33339
33339
33340
33340
33340
33341
33341
33341
33342
33342
33342
33343
33343
33343
33344
33344
33344
33345
33345
33345
33346
33346
33346
33347
33347
33347
33348
33348
33348
33349
33349
33349
33350
33350
33350
33351
33351
33352
33352
33352
33352
33353
33353
33353
33354
33354
33354
33355
33355
33355
33356
33356
33356
33357
33357
33357
33358
33358
33358
33359
33359
33359
33360
33360
33360
33361
33361
33361
33362
33362
33362
33363
33363
33363
33364
33364
33364
33365
33365
33365
33366
33366
33366
33367
33367
33367
33368
33368
33368
33369
33369
33369
33370
33370
33370
33371
33371
33371
33372
33372
33372
33373
33373
33374
33374
33374
33374
33375
33375
33375
33376
33376
33376
33377
33377
33377
33378
33378
33378
33379
33379
33379
33380
33380
33380
33381
33381
33381
33382
33382
33382
33383
33383
33383
33384
33384
33384
33385
33385
33385
33386
33386
33386
33387
33387
33387
33388
33388
33388
33389
33389
33389
33390
33390
33390
33391
33391
33391
33392
33392
33392
33393
33393
33393
33394
33394
33394
33395
33395
33396
33396
33396
33396
33397
33397
33397
33398
33398
33398
33399
33399
33399
33400
33400
33400
33401
33401
33401
33402
33402
33402
33403
33403
33403
33404
33404
33404
33405
33405
33405
33406
33406
33406
33407
33407
33407
33408
33408
33408
33409
33409
33409
33410
33410
33410
33411
33411
33411
33412
33412
33412
33413
33413
33413
33414
33414
33414
33415
33415
33415
33416
33416
33416
33417
33417
33418
33418
33418
33419
33419
33420
33420
33421
33421
33422
33422
33423
33423
33424
33424
33425
33425
33426
33426
33427
33427
33428
33428
33429
33429
33430
33430
33431
33431
33432
33432
33433
33433
33434
33434
33435
33435
33436
33436
33437
33437
33438
33438
33439
33440
33440
33440
33440
33441
33441
33441
33442
33442
33442
33443
33443
33443
33444
33444
33444
33445
33445
33445
33446
33446
33446
33447
33447
33447
33448
33448
33448
33449
33449
33449
33450
33450
33450
33451
33451
33451
33452
33452
33452
33453
33453
33453
33454
33454
33454
33455
33455
33455
33456
33456
33456
33457
33457
33457
33458
33458
33458
33459
33459
33459
33460
33460
33460
33461
33461
33462
33462
33462
33462
33463
33463
33463
33464
33464
33464
33465
33465
33465
33466
33466
33466
33467
33467
33467
33468
33468
33468
33469
33469
33469
33470
33470
33470
33471
33471
33471
33472
33472
33472
33473
33473
33473
33474
33474
33474
33475
33475
33475
33476
33476
33476
33477
33477
33477
33478
33478
33478
33479
33479
33479
33480
33480
33480
33481
33481
33481
33482
33482
33482
33483
33483
33484
33484
33484
33484
33485
33485
33485
33486
33486
33486
33487
33487
33487
33488
33488
33488
33489
33489
33489
33490
33490
33490
33491
33491
33491
33492
33492
33492
33493
33493
33493
33494
33494
33494
33495
33495
33495
33496
33496
33496
33497
33497
33497
33498
33498
33498
33499
33499
33499
33500
33500
33500
33501
33501
33501
33502
33502
33502
33503
33503
33503
33504
33504
33504
33505
33505
33506
33506
33506
33506
33507
33507
33507
33508
33508
33508
33509
33509
33509
33510
33510
33510
33511
33511
33511
33512
33512
33512
33513
33513
33513
33514
33514
33514
33515
33515
33515
33516
33516
33516
33517
33517
33517
33518
33518
33518
33519
33519
33519
33520
33520
33520
33521
33521
33521
33522
33522
33522
33523
33523
33523
33524
33524
33524
33525
33525
33525
33526
33526
33526
33527
33527
33528
33528
33528
33528
33529
33529
33529
33530
33530
33530
33531
33531
33531
33532
33532
33532
33533
33533
33533
33534
33534
33534
33535
33535
33535
33536
33536
33536
33537
33537
33537
33538
33538
33538
33539
33539
33539
33540
33540
33540
33541
33541
33541
33542
33542
33542
33543
33543
33543
33544
33544
33544
33545
33545
33545
33546
33546
33546
33547
33547
33547
33548
33548
33548
33549
33549
33550
33550
33550
33550
33551
33551
33551
33552
33552
33552
33553
33553
33553
33554
33554
33554
33555
33555
33555
33556
33556
33556
33557
33557
33557
33558
33558
33558
33559
33559
33559
33560
33560
33560
33561
33561
33561
33562
33562
33562
33563
33563
33563
33564
33564
33564
33565
33565
33565
33566
33566
33566
33567
33567
33567
33568
33568
33568
33569
33569
33569
33570
33570
33570
33571
33571
33572
33572
33572
33572
33573
33573
33573
33574
33574
33574
33575
33575
33575
33576
33576
33576
33577
33577
33577
33578
33578
33578
33579
33579
33579
33580
33580
33580
33581
33581
33581
33582
33582
33582
33583
33583
33583
33584
33584
33584
33585
33585
33585
33586
33586
33586
33587
33587
33587
33588
33588
33588
33589
33589
33589
33590
33590
33590
33591
33591
33591
33592
33592
33592
33593
33593
33594
33594
33594
33594
33595
33595
33595
33596
33596
33596
33597
33597
33597
33598
33598
33598
33599
33599
33599
33600
33600
33600
33601
33601
33601
33602
33602
33602
33603
33603
33603
33604
33604
33604
33605
33605
33605
33606
33606
33606
33607
33607
33607
33608
33608
33608
33609
33609
33609
33610
33610
33610
33611
33611
33611
33612
33612
33612
33613
33613
33613
33614
33614
33614
33615
33615
33616
33616
33616
33616
33617
33617
33617
33618
33618
33618
33619
33619
33619
33620
33620
33620
33621
33621
33621
33622
33622
33622
33623
33623
33623
33624
33624
33624
33625
33625
33625
33626
33626
33626
33627
33627
33627
33628
33628
33628
33629
33629
33629
33630
33630
33630
33631
33631
33631
33632
33632
33632
33633
33633
33633
33634
33634
33634
33635
33635
33635
33636
33636
33636
33637
33637
33638
33638
33638
33639
33639
33640
33640
33641
33641
33642
33642
33643
33643
33644
33644
33645
33645
33646
33646
33647
33647
33648
33648
33649
33649
33650
33650
33651
33651
33652
33652
33653
33653
33654
33654
33655
33655
33656
33656
33657
33657
33658
33658
33659
33660
33660
33660
33660
33661
33661
33661
33662
33662
33662
33663
33663
33663
33664
33664
33664
33665
33665
33665
33666
33666
33666
33667
33667
33667
33668
33668
33668
33669
33669
33669
33670
33670
33670
33671
33671
33671
33672
33672
33672
33673
33673
33673
33674
33674
33674
33675
33675
33675
33676
33676
33676
33677
33677
33677
33678
33678
33678
33679
33679
33679
33680
33680
33680
33681
33681
33682
33682
33682
33682
33683
33683
33683
33684
33684
33684
33685
33685
33685
33686
33686
33686
33687
33687
33687
33688
33688
33688
33689
33689
33689
33690
33690
33690
33691
33691
33691
33692
33692
33692
33693
33693
33693
33694
33694
33694
33695
33695
33695
33696
33696
33696
33697
33697
33697
33698
33698
33698
33699
33699
33699
33700
33700
33700
33701
33701
33701
33702
33702
33702
33703
33703
33704
33704
33704
33704
33705
33705
33705
33706
33706
33706
33707
33707
33707
33708
33708
33708
33709
33709
33709
33710
33710
33710
33711
33711
33711
33712
33712
33712
33713
33713
33713
33714
33714
33714
33715
33715
33715
33716
33716
33716
33717
33717
33717
33718
33718
33718
33719
33719
33719
33720
33720
33720
33721
33721
33721
33722
33722
33722
33723
33723
33723
33724
33724
33724
33725
33725
33726
33726
33726
33726
33727
33727
33727
33728
33728
33728
33729
33729
33729
33730
33730
33730
33731
33731
33731
33732
33732
33732
33733
33733
33733
33734
33734
33734
33735
33735
33735
33736
33736
33736
33737
33737
33737
33738
33738
33738
33739
33739
33739
33740
33740
33740
33741
33741
33741
33742
33742
33742
33743
33743
33743
33744
33744
33744
33745
33745
33745
33746
33746
33746
33747
33747
33748
33748
33748
33748
33749
33749
33749
33750
33750
33750
33751
33751
33751
33752
33752
33752
33753
33753
33753
33754
33754
33754
33755
33755
33755
33756
33756
33756
33757
33757
33757
33758
33758
33758
33759
33759
33759
33760
33760
33760
33761
33761
33761
33762
33762
33762
33763
33763
33763
33764
33764
33764
33765
33765
33765
33766
33766
33766
33767
33767
33767
33768
33768
33768
33769
33769
33770
33770
33770
33770
33771
33771
33771
33772
33772
33772
33773
33773
33773
33774
33774
33774
33775
33775
33775
33776
33776
33776
33777
33777
33777
33778
33778
33778
33779
33779
33779
33780
33780
33780
33781
33781
33781
33782
33782
33782
33783
33783
33783
33784
33784
33784
33785
33785
33785
33786
33786
33786
33787
33787
33787
33788
33788
33788
33789
33789
33789
33790
33790
33790
33791
33791
33792
33792
33792
33792
33793
33793
33793
33794
33794
33794
33795
33795
33795
33796
33796
33796
33797
33797
33797
33798
33798
33798
33799
33799
33799
33800
33800
33800
33801
33801
33801
33802
33802
33802
33803
33803
33803
33804
33804
33804
33805
33805
33805
33806
33806
33806
33807
33807
33807
33808
33808
33808
33809
33809
33809
33810
33810
33810
33811
33811
33811
33812
33812
33812
33813
33813
33814
33814
33814
33814
33815
33815
33815
33816
33816
33816
33817
33817
33817
33818
33818
33818
33819
33819
33819
33820
33820
33820
33821
33821
33821
33822
33822
33822
33823
33823
33823
33824
33824
33824
33825
33825
33825
33826
33826
33826
33827
33827
33827
33828
33828
33828
33829
33829
33829
33830
33830
33830
33831
33831
33831
33832
33832
33832
33833
33833
33833
33834
33834
33834
33835
33835
33836
33836
33836
33836
33837
33837
33837
33838
33838
33838
33839
33839
33839
33840
33840
33840
33841
33841
33841
33842
33842
33842
33843
33843
33843
33844
33844
33844
33845
33845
33845
33846
33846
33846
33847
33847
33847
33848
33848
33848
33849
33849
33849
33850
33850
33850
33851
33851
33851
33852
33852
33852
33853
33853
33853
33854
33854
33854
33855
33855
33855
33856
33856
33856
33857
33857
33858
33858
33858
33859
33859
33860
33860
33861
33861
33862
33862
33863
33863
33864
33864
33865
33865
33866
33866
33867
33867
33868
33868
33869
33869
33870
33870
33871
33871
33872
33872
33873
33873
33874
33874
33875
33875
33876
33876
33877
33877
33878
33878
33879
33880
33880
33880
33880
33881
33881
33881
33882
33882
33882
33883
33883
33883
33884
33884
33884
33885
33885
33885
33886
33886
33886
33887
33887
33887
33888
33888
33888
33889
33889
33889
33890
33890
33890
33891
33891
33891
33892
33892
33892
33893
33893
33893
33894
33894
33894
33895
33895
33895
33896
33896
33896
33897
33897
33897
33898
33898
33898
33899
33899
33899
33900
33900
33900
33901
33901
33902
33902
33902
33902
33903
33903
33903
33904
33904
33904
33905
33905
33905
33906
33906
33906
33907
33907
33907
33908
33908
33908
33909
33909
33909
33910
33910
33910
33911
33911
33911
33912
33912
33912
33913
33913
33913
33914
33914
33914
33915
33915
33915
33916
33916
33916
33917
33917
33917
33918
33918
33918
33919
33919
33919
33920
33920
33920
33921
33921
33921
33922
33922
33922
33923
33923
33924
33924
33924
33924
33925
33925
33925
33926
33926
33926
33927
33927
33927
33928
33928
33928
33929
33929
33929
33930
33930
33930
33931
33931
33931
33932
33932
33932
33933
33933
33933
33934
33934
33934
33935
33935
33935
33936
33936
33936
33937
33937
33937
33938
33938
33938
33939
33939
33939
33940
33940
33940
33941
33941
33941
33942
33942
33942
33943
33943
33943
33944
33944
33944
33945
33945
33946
33946
33946
33946
33947
33947
33947
33948
33948
33948
33949
33949
33949
33950
33950
33950
33951
33951
33951
33952
33952
33952
33953
33953
33953
33954
33954
33954
33955
33955
33955
33956
33956
33956
33957
33957
33957
33958
33958
33958
33959
33959
33959
33960
33960
33960
33961
33961
33961
33962
33962
33962
33963
33963
33963
33964
33964
33964
33965
33965
33965
33966
33966
33966
33967
33967
33968
33968
33968
33968
33969
33969
33969
33970
33970
33970
33971
33971
33971
33972
33972
33972
33973
33973
33973
33974
33974
33974
33975
33975
33975
33976
33976
33976
33977
33977
33977
33978
33978
33978
33979
33979
33979
33980
33980
33980
33981
33981
33981
33982
33982
33982
33983
33983
33983
33984
33984
33984
33985
33985
33985
33986
33986
33986
33987
33987
33987
33988
33988
33988
33989
33989
33990
33990
33990
33990
33991
33991
33991
33992
33992
33992
33993
33993
33993
33994
33994
33994
33995
33995
33995
33996
33996
33996
33997
33997
33997
33998
33998
33998
33999
33999
33999
34000
34000
34000
34001
34001
34001
34002
34002
34002
34003
34003
34003
34004
34004
34004
34005
34005
34005
34006
34006
34006
34007
34007
34007
34008
34008
34008
34009
34009
34009
34010
34010
34010
34011
34011
34012
34012
34012
34012
34013
34013
34013
34014
34014
34014
34015
34015
34015
34016
34016
34016
34017
34017
34017
34018
34018
34018
34019
34019
34019
34020
34020
34020
34021
34021
34021
34022
34022
34022
34023
34023
34023
34024
34024
34024
34025
34025
34025
34026
34026
34026
34027
34027
34027
34028
34028
34028
34029
34029
34029
34030
34030
34030
34031
34031
34031
34032
34032
34032
34033
34033
34034
34034
34034
34034
34035
34035
34035
34036
34036
34036
34037
34037
34037
34038
34038
34038
34039
34039
34039
34040
34040
34040
34041
34041
34041
34042
34042
34042
34043
34043
34043
34044
34044
34044
34045
34045
34045
34046
34046
34046
34047
34047
34047
34048
34048
34048
34049
34049
34049
34050
34050
34050
34051
34051
34051
34052
34052
34052
34053
34053
34053
34054
34054
34054
34055
34055
34056
34056
34056
34056
34057
34057
34057
34058
34058
34058
34059
34059
34059
34060
34060
34060
34061
34061
34061
34062
34062
34062
34063
34063
34063
34064
34064
34064
34065
34065
34065
34066
34066
34066
34067
34067
34067
34068
34068
34068
34069
34069
34069
34070
34070
34070
34071
34071
34071
34072
34072
34072
34073
34073
34073
34074
34074
34074
34075
34075
34075
34076
34076
34076
34077
34077
34078
34078
34078
34079
34079
34080
34080
34081
34081
34082
34082
34083
34083
34084
34084
34085
34085
34086
34086
34087
34087
34088
34088
34089
34089
34090
34090
34091
34091
34092
34092
34093
34093
34094
34094
34095
34095
34096
34096
34097
34097
34098
34098
34099
34100
34100
34100
34100
34101
34101
34101
34102
34102
34102
34103
34103
34103
34104
34104
34104
34105
34105
34105
34106
34106
34106
34107
34107
34107
34108
34108
34108
34109
34109
34109
34110
34110
34110
34111
34111
34111
34112
34112
34112
34113
34113
34113
34114
34114
34114
34115
34115
34115
34116
34116
34116
34117
34117
34117
34118
34118
34118
34119
34119
34119
34120
34120
34120
34121
34121
34122
34122
34122
34122
34123
34123
34123
34124
34124
34124
34125
34125
34125
34126
34126
34126
34127
34127
34127
34128
34128
34128
34129
34129
34129
34130
34130
34130
34131
34131
34131
34132
34132
34132
34133
34133
34133
34134
34134
34134
34135
34135
34135
34136
34136
34136
34137
34137
34137
34138
34138
34138
34139
34139
34139
34140
34140
34140
34141
34141
34141
34142
34142
34142
34143
34143
34144
34144
34144
34144
34145
34145
34145
34146
34146
34146
34147
34147
34147
34148
34148
34148
34149
34149
34149
34150
34150
34150
34151
34151
34151
34152
34152
34152
34153
34153
34153
34154
34154
34154
34155
34155
34155
34156
34156
34156
34157
34157
34157
34158
34158
34158
34159
34159
34159
34160
34160
34160
34161
34161
34161
34162
34162
34162
34163
34163
34163
34164
34164
34164
34165
34165
34166
34166
34166
34166
34167
34167
34167
34168
34168
34168
34169
34169
34169
34170
34170
34170
34171
34171
34171
34172
34172
34172
34173
34173
34173
34174
34174
34174
34175
34175
34175
34176
34176
34176
34177
34177
34177
34178
34178
34178
34179
34179
34179
34180
34180
34180
34181
34181
34181
34182
34182
34182
34183
34183
34183
34184
34184
34184
34185
34185
34185
34186
34186
34186
34187
34187
34188
34188
34188
34188
34189
34189
34189
34190
34190
34190
34191
34191
34191
34192
34192
34192
34193
34193
34193
34194
34194
34194
34195
34195
34195
34196
34196
34196
34197
34197
34197
34198
34198
34198
34199
34199
34199
34200
34200
34200
34201
34201
34201
34202
34202
34202
34203
34203
34203
34204
34204
34204
34205
34205
34205
34206
34206
34206
34207
34207
34207
34208
34208
34208
34209
34209
34210
34210
34210
34210
34211
34211
34211
34212
34212
34212
34213
34213
34213
34214
34214
34214
34215
34215
34215
34216
34216
34216
34217
34217
34217
34218
34218
34218
34219
34219
34219
34220
34220
34220
34221
34221
34221
34222
34222
34222
34223
34223
34223
34224
34224
34224
34225
34225
34225
34226
34226
34226
34227
34227
34227
34228
34228
34228
34229
34229
34229
34230
34230
34230
34231
34231
34232
34232
34232
34232
34233
34233
34233
34234
34234
34234
34235
34235
34235
34236
34236
34236
34237
34237
34237
34238
34238
34238
34239
34239
34239
34240
34240
34240
34241
34241
34241
34242
34242
34242
34243
34243
34243
34244
34244
34244
34245
34245
34245
34246
34246
34246
34247
34247
34247
34248
34248
34248
34249
34249
34249
34250
34250
34250
34251
34251
34251
34252
34252
34252
34253
34253
34254
34254
34254
34254
34255
34255
34255
34256
34256
34256
34257
34257
34257
34258
34258
34258
34259
34259
34259
34260
34260
34260
34261
34261
34261
34262
34262
34262
34263
34263
34263
34264
34264
34264
34265
34265
34265
34266
34266
34266
34267
34267
34267
34268
34268
34268
34269
34269
34269
34270
34270
34270
34271
34271
34271
34272
34272
34272
34273
34273
34273
34274
34274
34274
34275
34275
34276
34276
34276
34276
34277
34277
34277
34278
34278
34278
34279
34279
34279
34280
34280
34280
34281
34281
34281
34282
34282
34282
34283
34283
34283
34284
34284
34284
34285
34285
34285
34286
34286
34286
34287
34287
34287
34288
34288
34288
34289
34289
34289
34290
34290
34290
34291
34291
34291
34292
34292
34292
34293
34293
34293
34294
34294
34294
34295
34295
34295
34296
34296
34296
34297
34297
34298
34298
34298
34299
34299
34300
34300
34301
34301
34302
34302
34303
34303
34304
34304
34305
34305
34306
34306
34307
34307
34308
34308
34309
34309
34310
34310
34311
34311
34312
34312
34313
34313
34314
34314
34315
34315
34316
34316
34317
34317
34318
34318
34319
34320
34320
34320
34320
34321
34321
34321
34322
34322
34322
34323
34323
34323
34324
34324
34324
34325
34325
34325
34326
34326
34326
34327
34327
34327
34328
34328
34328
34329
34329
34329
34330
34330
34330
34331
34331
34331
34332
34332
34332
34333
34333
34333
34334
34334
34334
34335
34335
34335
34336
34336
34336
34337
34337
34337
34338
34338
34338
34339
34339
34339
34340
34340
34340
34341
34341
34342
34342
34342
34342
34343
34343
34343
34344
34344
34344
34345
34345
34345
34346
34346
34346
34347
34347
34347
34348
34348
34348
34349
34349
34349
34350
34350
34350
34351
34351
34351
34352
34352
34352
34353
34353
34353
34354
34354
34354
34355
34355
34355
34356
34356
34356
34357
34357
34357
34358
34358
34358
34359
34359
34359
34360
34360
34360
34361
34361
34361
34362
34362
34362
34363
34363
34364
34364
34364
34364
34365
34365
34365
34366
34366
34366
34367
34367
34367
34368
34368
34368
34369
34369
34369
34370
34370
34370
34371
34371
34371
34372
34372
34372
34373
34373
34373
34374
34374
34374
34375
34375
34375
34376
34376
34376
34377
34377
34377
34378
34378
34378
34379
34379
34379
34380
34380
34380
34381
34381
34381
34382
34382
34382
34383
34383
34383
34384
34384
34384
34385
34385
34386
34386
34386
34386
34387
34387
34387
34388
34388
34388
34389
34389
34389
34390
34390
34390
34391
34391
34391
34392
34392
34392
34393
34393
34393
34394
34394
34394
34395
34395
34395
34396
34396
34396
34397
34397
34397
34398
34398
34398
34399
34399
34399
34400
34400
34400
34401
34401
34401
34402
34402
34402
34403
34403
34403
34404
34404
34404
34405
34405
34405
34406
34406
34406
34407
34407
34408
34408
34408
34408
34409
34409
34409
34410
34410
34410
34411
34411
34411
34412
34412
34412
34413
34413
34413
34414
34414
34414
34415
34415
34415
34416
34416
34416
34417
34417
34417
34418
34418
34418
34419
34419
34419
34420
34420
34420
34421
34421
34421
34422
34422
34422
34423
34423
34423
34424
34424
34424
34425
34425
34425
34426
34426
34426
34427
34427
34427
34428
34428
34428
34429
34429
34430
34430
34430
34430
34431
34431
34431
34432
34432
34432
34433
34433
34433
34434
34434
34434
34435
34435
34435
34436
34436
34436
34437
34437
34437
34438
34438
34438
34439
34439
34439
34440
34440
34440
34441
34441
34441
34442
34442
34442
34443
34443
34443
34444
34444
34444
34445
34445
34445
34446
34446
34446
34447
34447
34447
34448
34448
34448
34449
34449
34449
34450
34450
34450
34451
34451
34452
34452
34452
34452
34453
34453
34453
34454
34454
34454
34455
34455
34455
34456
34456
34456
34457
34457
34457
34458
34458
34458
34459
34459
34459
34460
34460
34460
34461
34461
34461
34462
34462
34462
34463
34463
34463
34464
34464
34464
34465
34465
34465
34466
34466
34466
34467
34467
34467
34468
34468
34468
34469
34469
34469
34470
34470
34470
34471
34471
34471
34472
34472
34472
34473
34473
34474
34474
34474
34474
34475
34475
34475
34476
34476
34476
34477
34477
34477
34478
34478
34478
34479
34479
34479
34480
34480
34480
34481
34481
34481
34482
34482
34482
34483
34483
34483
34484
34484
34484
34485
34485
34485
34486
34486
34486
34487
34487
34487
34488
34488
34488
34489
34489
34489
34490
34490
34490
34491
34491
34491
34492
34492
34492
34493
34493
34493
34494
34494
34494
34495
34495
34496
34496
34496
34496
34497
34497
34497
34498
34498
34498
34499
34499
34499
34500
34500
34500
34501
34501
34501
34502
34502
34502
34503
34503
34503
34504
34504
34504
34505
34505
34505
34506
34506
34506
34507
34507
34507
34508
34508
34508
34509
34509
34509
34510
34510
34510
34511
34511
34511
34512
34512
34512
34513
34513
34513
34514
34514
34514
34515
34515
34515
34516
34516
34516
34517
34517
34518
34518
34518
34519
34519
34520
34520
34521
34521
34522
34522
34523
34523
34524
34524
34525
34525
34526
34526
34527
34527
34528
34528
34529
34529
34530
34530
34531
34531
34532
34532
34533
34533
34534
34534
34535
34535
34536
34536
34537
34537
34538
34538
34539
34540
34540
34540
34540
34541
34541
34541
34542
34542
34542
34543
34543
34543
34544
34544
34544
34545
34545
34545
34546
34546
34546
34547
34547
34547
34548
34548
34548
34549
34549
34549
34550
34550
34550
34551
34551
34551
34552
34552
34552
34553
34553
34553
34554
34554
34554
34555
34555
34555
34556
34556
34556
34557
34557
34557
34558
34558
34558
34559
34559
34559
34560
34560
34560
34561
34561
34562
34562
34562
34562
34563
34563
34563
34564
34564
34564
34565
34565
34565
34566
34566
34566
34567
34567
34567
34568
34568
34568
34569
34569
34569
34570
34570
34570
34571
34571
34571
34572
34572
34572
34573
34573
34573
34574
34574
34574
34575
34575
34575
34576
34576
34576
34577
34577
34577
34578
34578
34578
34579
34579
34579
34580
34580
34580
34581
34581
34581
34582
34582
34582
34583
34583
34584
34584
34584
34584
34585
34585
34585
34586
34586
34586
34587
34587
34587
34588
34588
34588
34589
34589
34589
34590
34590
34590
34591
34591
34591
34592
34592
34592
34593
34593
34593
34594
34594
34594
34595
34595
34595
34596
34596
34596
34597
34597
34597
34598
34598
34598
34599
34599
34599
34600
34600
34600
34601
34601
34601
34602
34602
34602
34603
34603
34603
34604
34604
34604
34605
34605
34606
34606
34606
34606
34607
34607
34607
34608
34608
34608
34609
34609
34609
34610
34610
34610
34611
34611
34611
34612
34612
34612
34613
34613
34613
34614
34614
34614
34615
34615
34615
34616
34616
34616
34617
34617
34617
34618
34618
34618
34619
34619
34619
34620
34620
34620
34621
34621
34621
34622
34622
34622
34623
34623
34623
34624
34624
34624
34625
34625
34625
34626
34626
34626
34627
34627
34628
34628
34628
34628
34629
34629
34629
34630
34630
34630
34631
34631
34631
34632
34632
34632
34633
34633
34633
34634
34634
34634
34635
34635
34635
34636
34636
34636
34637
34637
34637
34638
34638
34638
34639
34639
34639
34640
34640
34640
34641
34641
34641
34642
34642
34642
34643
34643
34643
34644
34644
34644
34645
34645
34645
34646
34646
34646
34647
34647
34647
34648
34648
34648
34649
34649
34650
34650
34650
34650
34651
34651
34651
34652
34652
34652
34653
34653
34653
34654
34654
34654
34655
34655
34655
34656
34656
34656
34657
34657
34657
34658
34658
34658
34659
34659
34659
34660
34660
34660
34661
34661
34661
34662
34662
34662
34663
34663
34663
34664
34664
34664
34665
34665
34665
34666
34666
34666
34667
34667
34667
34668
34668
34668
34669
34669
34669
34670
34670
34670
34671
34671
34672
34672
34672
34672
34673
34673
34673
34674
34674
34674
34675
34675
34675
34676
34676
34676
34677
34677
34677
34678
34678
34678
34679
34679
34679
34680
34680
34680
34681
34681
34681
34682
34682
34682
34683
34683
34683
34684
34684
34684
34685
34685
34685
34686
34686
34686
34687
34687
34687
34688
34688
34688
34689
34689
34689
34690
34690
34690
34691
34691
34691
34692
34692
34692
34693
34693
34694
34694
34694
34694
34695
34695
34695
34696
34696
34696
34697
34697
34697
34698
34698
34698
34699
34699
34699
34700
34700
34700
34701
34701
34701
34702
34702
34702
34703
34703
34703
34704
34704
34704
34705
34705
34705
34706
34706
34706
34707
34707
34707
34708
34708
34708
34709
34709
34709
34710
34710
34710
34711
34711
34711
34712
34712
34712
34713
34713
34713
34714
34714
34714
34715
34715
34716
34716
34716
34716
34717
34717
34717
34718
34718
34718
34719
34719
34719
34720
34720
34720
34721
34721
34721
34722
34722
34722
34723
34723
34723
34724
34724
34724
34725
34725
34725
34726
34726
34726
34727
34727
34727
34728
34728
34728
34729
34729
34729
34730
34730
34730
34731
34731
34731
34732
34732
34732
34733
34733
34733
34734
34734
34734
34735
34735
34735
34736
34736
34736
34737
34737
34738
34738
34738
34739
34739
34740
34740
34741
34741
34742
34742
34743
34743
34744
34744
34745
34745
34746
34746
34747
34747
34748
34748
34749
34749
34750
34750
34751
34751
34752
34752
34753
34753
34754
34754
34755
34755
34756
34756
34757
34757
34758
34758
34759
34760
34760
34760
34760
34761
34761
34761
34762
34762
34762
34763
34763
34763
34764
34764
34764
34765
34765
34765
34766
34766
34766
34767
34767
34767
34768
34768
34768
34769
34769
34769
34770
34770
34770
34771
34771
34771
34772
34772
34772
34773
34773
34773
34774
34774
34774
34775
34775
34775
34776
34776
34776
34777
34777
34777
34778
34778
34778
34779
34779
34779
34780
34780
34780
34781
34781
34782
34782
34782
34782
34783
34783
34783
34784
34784
34784
34785
34785
34785
34786
34786
34786
34787
34787
34787
34788
34788
34788
34789
34789
34789
34790
34790
34790
34791
34791
34791
34792
34792
34792
34793
34793
34793
34794
34794
34794
34795
34795
34795
34796
34796
34796
34797
34797
34797
34798
34798
34798
34799
34799
34799
34800
34800
34800
34801
34801
34801
34802
34802
34802
34803
34803
34804
34804
34804
34804
34805
34805
34805
34806
34806
34806
34807
34807
34807
34808
34808
34808
34809
34809
34809
34810
34810
34810
34811
34811
34811
34812
34812
34812
34813
34813
34813
34814
34814
34814
34815
34815
34815
34816
34816
34816
34817
34817
34817
34818
34818
34818
34819
34819
34819
34820
34820
34820
34821
34821
34821
34822
34822
34822
34823
34823
34823
34824
34824
34824
34825
34825
34826
34826
34826
34826
34827
34827
34827
34828
34828
34828
34829
34829
34829
34830
34830
34830
34831
34831
34831
34832
34832
34832
34833
34833
34833
34834
34834
34834
34835
34835
34835
34836
34836
34836
34837
34837
34837
34838
34838
34838
34839
34839
34839
34840
34840
34840
34841
34841
34841
34842
34842
34842
34843
34843
34843
34844
34844
34844
34845
34845
34845
34846
34846
34846
34847
34847
34848
34848
34848
34848
34849
34849
34849
34850
34850
34850
34851
34851
34851
34852
34852
34852
34853
34853
34853
34854
34854
34854
34855
34855
34855
34856
34856
34856
34857
34857
34857
34858
34858
34858
34859
34859
34859
34860
34860
34860
34861
34861
34861
34862
34862
34862
34863
34863
34863
34864
34864
34864
34865
34865
34865
34866
34866
34866
34867
34867
34867
34868
34868
34868
34869
34869
34870
34870
34870
34870
34871
34871
34871
34872
34872
34872
34873
34873
34873
34874
34874
34874
34875
34875
34875
34876
34876
34876
34877
34877
34877
34878
34878
34878
34879
34879
34879
34880
34880
34880
34881
34881
34881
34882
34882
34882
34883
34883
34883
34884
34884
34884
34885
34885
34885
34886
34886
34886
34887
34887
34887
34888
34888
34888
34889
34889
34889
34890
34890
34890
34891
34891
34892
34892
34892
34892
34893
34893
34893
34894
34894
34894
34895
34895
34895
34896
34896
34896
34897
34897
34897
34898
34898
34898
34899
34899
34899
34900
34900
34900
34901
34901
34901
34902
34902
34902
34903
34903
34903
34904
34904
34904
34905
34905
34905
34906
34906
34906
34907
34907
34907
34908
34908
34908
34909
34909
34909
34910
34910
34910
34911
34911
34911
34912
34912
34912
34913
34913
34914
34914
34914
34914
34915
34915
34915
34916
34916
34916
34917
34917
34917
34918
34918
34918
34919
34919
34919
34920
34920
34920
34921
34921
34921
34922
34922
34922
34923
34923
34923
34924
34924
34924
34925
34925
34925
34926
34926
34926
34927
34927
34927
34928
34928
34928
34929
34929
34929
34930
34930
34930
34931
34931
34931
34932
34932
34932
34933
34933
34933
34934
34934
34934
34935
34935
34936
34936
34936
34936
34937
34937
34937
34938
34938
34938
34939
34939
34939
34940
34940
34940
34941
34941
34941
34942
34942
34942
34943
34943
34943
34944
34944
34944
34945
34945
34945
34946
34946
34946
34947
34947
34947
34948
34948
34948
34949
34949
34949
34950
34950
34950
34951
34951
34951
34952
34952
34952
34953
34953
34953
34954
34954
34954
34955
34955
34955
34956
34956
34956
34957
34957
34958
34958
34958
34959
34959
34960
34960
34961
34961
34962
34962
34963
34963
34964
34964
34965
34965
34966
34966
34967
34967
34968
34968
34969
34969
34970
34970
34971
34971
34972
34972
34973
34973
34974
34974
34975
34975
34976
34976
34977
34977
34978
34978
34979
34980
34980
34980
34981
34981
34982
34982
34983
34983
34984
34984
34985
34985
34986
34986
34987
34987
34988
34988
34989
34989
34990
34990
34991
34991
34992
34992
34993
34993
34994
34994
34995
34995
34996
34996
34997
34997
34998
34998
34999
34999
35000
35000
35001
35002
35002
35002
35003
35003
35004
35004
35005
35005
35006
35006
35007
35007
35008
35008
35009
35009
35010
35010
35011
35011
35012
35012
35013
35013
35014
35014
35015
35015
35016
35016
35017
35017
35018
35018
35019
35019
35020
35020
35021
35021
35022
35022
35023
35024
35024
35024
35025
35025
35026
35026
35027
35027
35028
35028
35029
35029
35030
35030
35031
35031
35032
35032
35033
35033
35034
35034
35035
35035
35036
35036
35037
35037
35038
35038
35039
35039
35040
35040
35041
35041
35042
35042
35043
35043
35044
35044
35045
35046
35046
35046
35047
35047
35048
35048
35049
35049
35050
35050
35051
35051
35052
35052
35053
35053
35054
35054
35055
35055
35056
35056
35057
35057
35058
35058
35059
35059
35060
35060
35061
35061
35062
35062
35063
35063
35064
35064
35065
35065
35066
35066
35067
35068
35068
35068
35069
35069
35070
35070
35071
35071
35072
35072
35073
35073
35074
35074
35075
35075
35076
35076
35077
35077
35078
35078
35079
35079
35080
35080
35081
35081
35082
35082
35083
35083
35084
35084
35085
35085
35086
35086
35087
35087
35088
35088
35089
35090
35090
35090
35091
35091
35092
35092
35093
35093
35094
35094
35095
35095
35096
35096
35097
35097
35098
35098
35099
35099
35100
35100
35101
35101
35102
35102
35103
35103
35104
35104
35105
35105
35106
35106
35107
35107
35108
35108
35109
35109
35110
35110
35111
35112
35112
35112
35113
35113
35114
35114
35115
35115
35116
35116
35117
35117
35118
35118
35119
35119
35120
35120
35121
35121
35122
35122
35123
35123
35124
35124
35125
35125
35126
35126
35127
35127
35128
35128
35129
35129
35130
35130
35131
35131
35132
35132
35133
35134
35134
35134
35135
35135
35136
35136
35137
35137
35138
35138
35139
35139
35140
35140
35141
35141
35142
35142
35143
35143
35144
35144
35145
35145
35146
35146
35147
35147
35148
35148
35149
35149
35150
35150
35151
35151
35152
35152
35153
35153
35154
35154
35155
35156
35156
35156
35157
35157
35158
35158
35159
35159
35160
35160
35161
35161
35162
35162
35163
35163
35164
35164
35165
35165
35166
35166
35167
35167
35168
35168
35169
35169
35170
35170
35171
35171
35172
35172
35173
35173
35174
35174
35175
35175
35176
35176
35177
35178
35178
35179
35180
35181
35182
35183
35184
35185
35186
35187
35188
35189
35190
35191
35192
35193
35194
35195
35196
35197
35198
35200
35200
35200
35201
35201
35201
35202
35202
35202
35203
35203
35203
35204
35204
35204
35205
35205
35205
35206
35206
35206
35207
35207
35207
35208
35208
35208
35209
35209
35209
35210
35210
35210
35211
35211
35211
35212
35212
35212
35213
35213
35213
35214
35214
35214
35215
35215
35215
35216
35216
35216
35217
35217
35217
35218
35218
35218
35219
35219
35219
35220
35220
35220
35221
35221
35221
35222
35222
35222
35223
35223
35223
35224
35224
35224
35225
35225
35225
35226
35226
35226
35227
35227
35227
35228
35228
35228
35229
35229
35229
35230
35230
35230
35231
35231
35231
35232
35232
35232
35233
35233
35233
35234
35234
35234
35235
35235
35236
35236
35236
35237
35237
35237
35238
35238
35238
35239
35239
35239
35240
35240
35240
35241
35241
35241
35242
35242
35242
35243
35243
35243
35244
35244
35244
35245
35245
35245
35246
35246
35246
35247
35247
35247
35248
35248
35248
35249
35249
35249
35250
35250
35250
35251
35251
35251
35252
35252
35252
35253
35253
35253
35254
35254
35254
35255
35255
35255
35256
35256
35256
35257
35257
35257
35258
35258
35258
35259
35259
35259
35260
35260
35260
35261
35261
35261
35262
35262
35262
35263
35263
35263
35264
35264
35264
35265
35265
35265
35266
35266
35266
35267
35267
35267
35268
35268
35268
35269
35269
35269
35270
35270
35270
35271
35271
35272
35272
35272
35273
35273
35273
35274
35274
35274
35275
35275
35275
35276
35276
35276
35277
35277
35277
35278
35278
35278
35279
35279
35279
35280
35280
35280
35281
35281
35281
35282
35282
35282
35283
35283
35283
35284
35284
35284
35285
35285
35285
35286
35286
35286
35287
35287
35287
35288
35288
35288
35289
35289
35289
35290
35290
35290
35291
35291
35291
35292
35292
35292
35293
35293
35293
35294
35294
35294
35295
35295
35295
35296
35296
35296
35297
35297
35297
35298
35298
35298
35299
35299
35299
35300
35300
35300
35301
35301
35301
35302
35302
35302
35303
35303
35303
35304
35304
35304
35305
35305
35305
35306
35306
35306
35307
35307
35308
35308
35308
35309
35309
35309
35310
35310
35310
35311
35311
35311
35312
35312
35312
35313
35313
35313
35314
35314
35314
35315
35315
35315
35316
35316
35316
35317
35317
35317
35318
35318
35318
35319
35319
35319
35320
35320
35320
35321
35321
35321
35322
35322
35322
35323
35323
35323
35324
35324
35324
35325
35325
35325
35326
35326
35326
35327
35327
35327
35328
35328
35328
35329
35329
35329
35330
35330
35330
35331
35331
35331
35332
35332
35332
35333
35333
35333
35334
35334
35334
35335
35335
35335
35336
35336
35336
35337
35337
35337
35338
35338
35338
35339
35339
35339
35340
35340
35340
35341
35341
35341
35342
35342
35342
35343
35343
35344
35344
35344
35345
35345
35345
35346
35346
35346
35347
35347
35347
35348
35348
35348
35349
35349
35349
35350
35350
35350
35351
35351
35351
35352
35352
35352
35353
35353
35353
35354
35354
35354
35355
35355
35355
35356
35356
35356
35357
35357
35357
35358
35358
35358
35359
35359
35359
35360
35360
35360
35361
35361
35361
35362
35362
35362
35363
35363
35363
35364
35364
35364
35365
35365
35365
35366
35366
35366
35367
35367
35367
35368
35368
35368
35369
35369
35369
35370
35370
35370
35371
35371
35371
35372
35372
35372
35373
35373
35373
35374
35374
35374
35375
35375
35375
35376
35376
35376
35377
35377
35377
35378
35378
35378
35379
35379
35380
35380
35380
35381
35381
35381
35382
35382
35382
35383
35383
35383
35384
35384
35384
35385
35385
35385
35386
35386
35386
35387
35387
35387
35388
35388
35388
35389
35389
35389
35390
35390
35390
35391
35391
35391
35392
35392
35392
35393
35393
35393
35394
35394
35394
35395
35395
35395
35396
35396
35396
35397
35397
35397
35398
35398
35398
35399
35399
35399
35400
35400
35400
35401
35401
35401
35402
35402
35402
35403
35403
35403
35404
35404
35404
35405
35405
35405
35406
35406
35406
35407
35407
35407
35408
35408
35408
35409
35409
35409
35410
35410
35410
35411
35411
35411
35412
35412
35412
35413
35413
35413
35414
35414
35414
35415
35415
35416
35416
35416
35417
35417
35417
35418
35418
35418
35419
35419
35419
35420
35420
35420
35421
35421
35421
35422
35422
35422
35423
35423
35423
35424
35424
35424
35425
35425
35425
35426
35426
35426
35427
35427
35427
35428
35428
35428
35429
35429
35429
35430
35430
35430
35431
35431
35431
35432
35432
35432
35433
35433
35433
35434
35434
35434
35435
35435
35435
35436
35436
35436
35437
35437
35437
35438
35438
35438
35439
35439
35439
35440
35440
35440
35441
35441
35441
35442
35442
35442
35443
35443
35443
35444
35444
35444
35445
35445
35445
35446
35446
35446
35447
35447
35447
35448
35448
35448
35449
35449
35449
35450
35450
35450
35451
35451
35452
35452
35452
35453
35453
35453
35454
35454
35454
35455
35455
35455
35456
35456
35456
35457
35457
35457
35458
35458
35458
35459
35459
35459
35460
35460
35460
35461
35461
35461
35462
35462
35462
35463
35463
35463
35464
35464
35464
35465
35465
35465
35466
35466
35466
35467
35467
35467
35468
35468
35468
35469
35469
35469
35470
35470
35470
35471
35471
35471
35472
35472
35472
35473
35473
35473
35474
35474
35474
35475
35475
35475
35476
35476
35476
35477
35477
35477
35478
35478
35478
35479
35479
35479
35480
35480
35480
35481
35481
35481
35482
35482
35482
35483
35483
35483
35484
35484
35484
35485
35485
35485
35486
35486
35486
35487
35487
35488
35488
35488
35489
35489
35489
35490
35490
35490
35491
35491
35491
35492
35492
35492
35493
35493
35493
35494
35494
35494
35495
35495
35495
35496
35496
35496
35497
35497
35497
35498
35498
35498
35499
35499
35499
35500
35500
35500
35501
35501
35501
35502
35502
35502
35503
35503
35503
35504
35504
35504
35505
35505
35505
35506
35506
35506
35507
35507
35507
35508
35508
35508
35509
35509
35509
35510
35510
35510
35511
35511
35511
35512
35512
35512
35513
35513
35513
35514
35514
35514
35515
35515
35515
35516
35516
35516
35517
35517
35517
35518
35518
35518
35519
35519
35519
35520
35520
35520
35521
35521
35521
35522
35522
35522
35523
35523
35524
35524
35525
35525
35526
35526
35527
35527
35528
35528
35529
35529
35530
35530
35531
35531
35532
35532
35533
35533
35534
35534
35535
35535
35536
35536
35537
35537
35538
35538
35539
35539
35540
35540
35541
35541
35542
35542
35543
35543
35544
35544
35545
35545
35546
35546
35547
35547
35548
35548
35549
35549
35550
35550
35551
35551
35552
35552
35553
35553
35554
35554
35555
35555
35556
35556
35557
35557
35558
35558
35559
35560
35560
35560
35561
35561
35561
35562
35562
35562
35563
35563
35563
35564
35564
35564
35565
35565
35565
35566
35566
35566
35567
35567
35567
35568
35568
35568
35569
35569
35569
35570
35570
35570
35571
35571
35571
35572
35572
35572
35573
35573
35573
35574
35574
35574
35575
35575
35575
35576
35576
35576
35577
35577
35577
35578
35578
35578
35579
35579
35579
35580
35580
35580
35581
35581
35581
35582
35582
35582
35583
35583
35583
35584
35584
35584
35585
35585
35585
35586
35586
35586
35587
35587
35587
35588
35588
35588
35589
35589
35589
35590
35590
35590
35591
35591
35591
35592
35592
35592
35593
35593
35593
35594
35594
35594
35595
35595
35596
35596
35596
35597
35597
35597
35598
35598
35598
35599
35599
35599
35600
35600
35600
35601
35601
35601
35602
35602
35602
35603
35603
35603
35604
35604
35604
35605
35605
35605
35606
35606
35606
35607
35607
35607
35608
35608
35608
35609
35609
35609
35610
35610
35610
35611
35611
35611
35612
35612
35612
35613
35613
35613
35614
35614
35614
35615
35615
35615
35616
35616
35616
35617
35617
35617
35618
35618
35618
35619
35619
35619
35620
35620
35620
35621
35621
35621
35622
35622
35622
35623
35623
35623
35624
35624
35624
35625
35625
35625
35626
35626
35626
35627
35627
35627
35628
35628
35628
35629
35629
35629
35630
35630
35630
35631
35631
35632
35632
35632
35633
35633
35633
35634
35634
35634
35635
35635
35635
35636
35636
35636
35637
35637
35637
35638
35638
35638
35639
35639
35639
35640
35640
35640
35641
35641
35641
35642
35642
35642
35643
35643
35643
35644
35644
35644
35645
35645
35645
35646
35646
35646
35647
35647
35647
35648
35648
35648
35649
35649
35649
35650
35650
35650
35651
35651
35651
35652
35652
35652
35653
35653
35653
35654
35654
35654
35655
35655
35655
35656
35656
35656
35657
35657
35657
35658
35658
35658
35659
35659
35659
35660
35660
35660
35661
35661
35661
35662
35662
35662
35663
35663
35663
35664
35664
35664
35665
35665
35665
35666
35666
35666
35667
35667
35668
35668
35668
35669
35669
35669
35670
35670
35670
35671
35671
35671
35672
35672
35672
35673
35673
35673
35674
35674
35674
35675
35675
35675
35676
35676
35676
35677
35677
35677
35678
35678
35678
35679
35679
35679
35680
35680
35680
35681
35681
35681
35682
35682
35682
35683
35683
35683
35684
35684
35684
35685
35685
35685
35686
35686
35686
35687
35687
35687
35688
35688
35688
35689
35689
35689
35690
35690
35690
35691
35691
35691
35692
35692
35692
35693
35693
35693
35694
35694
35694
35695
35695
35695
35696
35696
35696
35697
35697
35697
35698
35698
35698
35699
35699
35699
35700
35700
35700
35701
35701
35701
35702
35702
35702
35703
35703
35704
35704
35704
35705
35705
35705
35706
35706
35706
35707
35707
35707
35708
35708
35708
35709
35709
35709
35710
35710
35710
35711
35711
35711
35712
35712
35712
35713
35713
35713
35714
35714
35714
35715
35715
35715
35716
35716
35716
35717
35717
35717
35718
35718
35718
35719
35719
35719
35720
35720
35720
35721
35721
35721
35722
35722
35722
35723
35723
35723
35724
35724
35724
35725
35725
35725
35726
35726
35726
35727
35727
35727
35728
35728
35728
35729
35729
35729
35730
35730
35730
35731
35731
35731
35732
35732
35732
35733
35733
35733
35734
35734
35734
35735
35735
35735
35736
35736
35736
35737
35737
35737
35738
35738
35738
35739
35739
35740
35740
35740
35741
35741
35741
35742
35742
35742
35743
35743
35743
35744
35744
35744
35745
35745
35745
35746
35746
35746
35747
35747
35747
35748
35748
35748
35749
35749
35749
35750
35750
35750
35751
35751
35751
35752
35752
35752
35753
35753
35753
35754
35754
35754
35755
35755
35755
35756
35756
35756
35757
35757
35757
35758
35758
35758
35759
35759
35759
35760
35760
35760
35761
35761
35761
35762
35762
35762
35763
35763
35763
35764
35764
35764
35765
35765
35765
35766
35766
35766
35767
35767
35767
35768
35768
35768
35769
35769
35769
35770
35770
35770
35771
35771
35771
35772
35772
35772
35773
35773
35773
35774
35774
35774
35775
35775
35776
35776
35776
35777
35777
35777
35778
35778
35778
35779
35779
35779
35780
35780
35780
35781
35781
35781
35782
35782
35782
35783
35783
35783
35784
35784
35784
35785
35785
35785
35786
35786
35786
35787
35787
35787
35788
35788
35788
35789
35789
35789
35790
35790
35790
35791
35791
35791
35792
35792
35792
35793
35793
35793
35794
35794
35794
35795
35795
35795
35796
35796
35796
35797
35797
35797
35798
35798
35798
35799
35799
35799
35800
35800
35800
35801
35801
35801
35802
35802
35802
35803
35803
35803
35804
35804
35804
35805
35805
35805
35806
35806
35806
35807
35807
35807
35808
35808
35808
35809
35809
35809
35810
35810
35810
35811
35811
35812
35812
35812
35813
35813
35813
35814
35814
35814
35815
35815
35815
35816
35816
35816
35817
35817
35817
35818
35818
35818
35819
35819
35819
35820
35820
35820
35821
35821
35821
35822
35822
35822
35823
35823
35823
35824
35824
35824
35825
35825
35825
35826
35826
35826
35827
35827
35827
35828
35828
35828
35829
35829
35829
35830
35830
35830
35831
35831
35831
35832
35832
35832
35833
35833
35833
35834
35834
35834
35835
35835
35835
35836
35836
35836
35837
35837
35837
35838
35838
35838
35839
35839
35839
35840
35840
35840
35841
35841
35841
35842
35842
35842
35843
35843
35843
35844
35844
35844
35845
35845
35845
35846
35846
35846
35847
35847
35848
35848
35848
35849
35849
35849
35850
35850
35850
35851
35851
35851
35852
35852
35852
35853
35853
35853
35854
35854
35854
35855
35855
35855
35856
35856
35856
35857
35857
35857
35858
35858
35858
35859
35859
35859
35860
35860
35860
35861
35861
35861
35862
35862
35862
35863
35863
35863
35864
35864
35864
35865
35865
35865
35866
35866
35866
35867
35867
35867
35868
35868
35868
35869
35869
35869
35870
35870
35870
35871
35871
35871
35872
35872
35872
35873
35873
35873
35874
35874
35874
35875
35875
35875
35876
35876
35876
35877
35877
35877
35878
35878
35878
35879
35879
35879
35880
35880
35880
35881
35881
35881
35882
35882
35882
35883
35883
35884
35884
35885
35885
35886
35886
35887
35887
35888
35888
35889
35889
35890
35890
35891
35891
35892
35892
35893
35893
35894
35894
35895
35895
35896
35896
35897
35897
35898
35898
35899
35899
35900
35900
35901
35901
35902
35902
35903
35903
35904
35904
35905
35905
35906
35906
35907
35907
35908
35908
35909
35909
35910
35910
35911
35911
35912
35912
35913
35913
35914
35914
35915
35915
35916
35916
35917
35917
35918
35918
35919
35920
35920
35920
35921
35921
35921
35922
35922
35922
35923
35923
35923
35924
35924
35924
35925
35925
35925
35926
35926
35926
35927
35927
35927
35928
35928
35928
35929
35929
35929
35930
35930
35930
35931
35931
35931
35932
35932
35932
35933
35933
35933
35934
35934
35934
35935
35935
35935
35936
35936
35936
35937
35937
35937
35938
35938
35938
35939
35939
35939
35940
35940
35940
35941
35941
35941
35942
35942
35942
35943
35943
35943
35944
35944
35944
35945
35945
35945
35946
35946
35946
35947
35947
35947
35948
35948
35948
35949
35949
35949
35950
35950
35950
35951
35951
35951
35952
35952
35952
35953
35953
35953
35954
35954
35954
35955
35955
35956
35956
35956
35957
35957
35957
35958
35958
35958
35959
35959
35959
35960
35960
35960
35961
35961
35961
35962
35962
35962
35963
35963
35963
35964
35964
35964
35965
35965
35965
35966
35966
35966
35967
35967
35967
35968
35968
35968
35969
35969
35969
35970
35970
35970
35971
35971
35971
35972
35972
35972
35973
35973
35973
35974
35974
35974
35975
35975
35975
35976
35976
35976
35977
35977
35977
35978
35978
35978
35979
35979
35979
35980
35980
35980
35981
35981
35981
35982
35982
35982
35983
35983
35983
35984
35984
35984
35985
35985
35985
35986
35986
35986
35987
35987
35987
35988
35988
35988
35989
35989
35989
35990
35990
35990
35991
35991
35992
35992
35992
35993
35993
35993
35994
35994
35994
35995
35995
35995
35996
35996
35996
35997
35997
35997
35998
35998
35998
35999
35999
35999
36000
36000
36000
36001
36001
36001
36002
36002
36002
36003
36003
36003
36004
36004
36004
36005
36005
36005
36006
36006
36006
36007
36007
36007
36008
36008
36008
36009
36009
36009
36010
36010
36010
36011
36011
36011
36012
36012
36012
36013
36013
36013
36014
36014
36014
36015
36015
36015
36016
36016
36016
36017
36017
36017
36018
36018
36018
36019
36019
36019
36020
36020
36020
36021
36021
36021
36022
36022
36022
36023
36023
36023
36024
36024
36024
36025
36025
36025
36026
36026
36026
36027
36027
36028
36028
36028
36029
36029
36029
36030
36030
36030
36031
36031
36031
36032
36032
36032
36033
36033
36033
36034
36034
36034
36035
36035
36035
36036
36036
36036
36037
36037
36037
36038
36038
36038
36039
36039
36039
36040
36040
36040
36041
36041
36041
36042
36042
36042
36043
36043
36043
36044
36044
36044
36045
36045
36045
36046
36046
36046
36047
36047
36047
36048
36048
36048
36049
36049
36049
36050
36050
36050
36051
36051
36051
36052
36052
36052
36053
36053
36053
36054
36054
36054
36055
36055
36055
36056
36056
36056
36057
36057
36057
36058
36058
36058
36059
36059
36059
36060
36060
36060
36061
36061
36061
36062
36062
36062
36063
36063
36064
36064
36064
36065
36065
36065
36066
36066
36066
36067
36067
36067
36068
36068
36068
36069
36069
36069
36070
36070
36070
36071
36071
36071
36072
36072
36072
36073
36073
36073
36074
36074
36074
36075
36075
36075
36076
36076
36076
36077
36077
36077
36078
36078
36078
36079
36079
36079
36080
36080
36080
36081
36081
36081
36082
36082
36082
36083
36083
36083
36084
36084
36084
36085
36085
36085
36086
36086
36086
36087
36087
36087
36088
36088
36088
36089
36089
36089
36090
36090
36090
36091
36091
36091
36092
36092
36092
36093
36093
36093
36094
36094
36094
36095
36095
36095
36096
36096
36096
36097
36097
36097
36098
36098
36098
36099
36099
36100
36100
36100
36101
36101
36101
36102
36102
36102
36103
36103
36103
36104
36104
36104
36105
36105
36105
36106
36106
36106
36107
36107
36107
36108
36108
36108
36109
36109
36109
36110
36110
36110
36111
36111
36111
36112
36112
36112
36113
36113
36113
36114
36114
36114
36115
36115
36115
36116
36116
36116
36117
36117
36117
36118
36118
36118
36119
36119
36119
36120
36120
36120
36121
36121
36121
36122
36122
36122
36123
36123
36123
36124
36124
36124
36125
36125
36125
36126
36126
36126
36127
36127
36127
36128
36128
36128
36129
36129
36129
36130
36130
36130
36131
36131
36131
36132
36132
36132
36133
36133
36133
36134
36134
36134
36135
36135
36136
36136
36136
36137
36137
36137
36138
36138
36138
36139
36139
36139
36140
36140
36140
36141
36141
36141
36142
36142
36142
36143
36143
36143
36144
36144
36144
36145
36145
36145
36146
36146
36146
36147
36147
36147
36148
36148
36148
36149
36149
36149
36150
36150
36150
36151
36151
36151
36152
36152
36152
36153
36153
36153
36154
36154
36154
36155
36155
36155
36156
36156
36156
36157
36157
36157
36158
36158
36158
36159
36159
36159
36160
36160
36160
36161
36161
36161
36162
36162
36162
36163
36163
36163
36164
36164
36164
36165
36165
36165
36166
36166
36166
36167
36167
36167
36168
36168
36168
36169
36169
36169
36170
36170
36170
36171
36171
36172
36172
36172
36173
36173
36173
36174
36174
36174
36175
36175
36175
36176
36176
36176
36177
36177
36177
36178
36178
36178
36179
36179
36179
36180
36180
36180
36181
36181
36181
36182
36182
36182
36183
36183
36183
36184
36184
36184
36185
36185
36185
36186
36186
36186
36187
36187
36187
36188
36188
36188
36189
36189
36189
36190
36190
36190
36191
36191
36191
36192
36192
36192
36193
36193
36193
36194
36194
36194
36195
36195
36195
36196
36196
36196
36197
36197
36197
36198
36198
36198
36199
36199
36199
36200
36200
36200
36201
36201
36201
36202
36202
36202
36203
36203
36203
36204
36204
36204
36205
36205
36205
36206
36206
36206
36207
36207
36208
36208
36208
36209
36209
36209
36210
36210
36210
36211
36211
36211
36212
36212
36212
36213
36213
36213
36214
36214
36214
36215
36215
36215
36216
36216
36216
36217
36217
36217
36218
36218
36218
36219
36219
36219
36220
36220
36220
36221
36221
36221
36222
36222
36222
36223
36223
36223
36224
36224
36224
36225
36225
36225
36226
36226
36226
36227
36227
36227
36228
36228
36228
36229
36229
36229
36230
36230
36230
36231
36231
36231
36232
36232
36232
36233
36233
36233
36234
36234
36234
36235
36235
36235
36236
36236
36236
36237
36237
36237
36238
36238
36238
36239
36239
36239
36240
36240
36240
36241
36241
36241
36242
36242
36242
36243
36243
36244
36244
36245
36245
36246
36246
36247
36247
36248
36248
36249
36249
36250
36250
36251
36251
36252
36252
36253
36253
36254
36254
36255
36255
36256
36256
36257
36257
36258
36258
36259
36259
36260
36260
36261
36261
36262
36262
36263
36263
36264
36264
36265
36265
36266
36266
36267
36267
36268
36268
36269
36269
36270
36270
36271
36271
36272
36272
36273
36273
36274
36274
36275
36275
36276
36276
36277
36277
36278
36278
36279
36280
36280
36280
36281
36281
36281
36282
36282
36282
36283
36283
36283
36284
36284
36284
36285
36285
36285
36286
36286
36286
36287
36287
36287
36288
36288
36288
36289
36289
36289
36290
36290
36290
36291
36291
36291
36292
36292
36292
36293
36293
36293
36294
36294
36294
36295
36295
36295
36296
36296
36296
36297
36297
36297
36298
36298
36298
36299
36299
36299
36300
36300
36300
36301
36301
36301
36302
36302
36302
36303
36303
36303
36304
36304
36304
36305
36305
36305
36306
36306
36306
36307
36307
36307
36308
36308
36308
36309
36309
36309
36310
36310
36310
36311
36311
36311
36312
36312
36312
36313
36313
36313
36314
36314
36314
36315
36315
36316
36316
36316
36317
36317
36317
36318
36318
36318
36319
36319
36319
36320
36320
36320
36321
36321
36321
36322
36322
36322
36323
36323
36323
36324
36324
36324
36325
36325
36325
36326
36326
36326
36327
36327
36327
36328
36328
36328
36329
36329
36329
36330
36330
36330
36331
36331
36331
36332
36332
36332
36333
36333
36333
36334
36334
36334
36335
36335
36335
36336
36336
36336
36337
36337
36337
36338
36338
36338
36339
36339
36339
36340
36340
36340
36341
36341
36341
36342
36342
36342
36343
36343
36343
36344
36344
36344
36345
36345
36345
36346
36346
36346
36347
36347
36347
36348
36348
36348
36349
36349
36349
36350
36350
36350
36351
36351
36352
36352
36352
36353
36353
36353
36354
36354
36354
36355
36355
36355
36356
36356
36356
36357
36357
36357
36358
36358
36358
36359
36359
36359
36360
36360
36360
36361
36361
36361
36362
36362
36362
36363
36363
36363
36364
36364
36364
36365
36365
36365
36366
36366
36366
36367
36367
36367
36368
36368
36368
36369
36369
36369
36370
36370
36370
36371
36371
36371
36372
36372
36372
36373
36373
36373
36374
36374
36374
36375
36375
36375
36376
36376
36376
36377
36377
36377
36378
36378
36378
36379
36379
36379
36380
36380
36380
36381
36381
36381
36382
36382
36382
36383
36383
36383
36384
36384
36384
36385
36385
36385
36386
36386
36386
36387
36387
36388
36388
36388
36389
36389
36389
36390
36390
36390
36391
36391
36391
36392
36392
36392
36393
36393
36393
36394
36394
36394
36395
36395
36395
36396
36396
36396
36397
36397
36397
36398
36398
36398
36399
36399
36399
36400
36400
36400
36401
36401
36401
36402
36402
36402
36403
36403
36403
36404
36404
36404
36405
36405
36405
36406
36406
36406
36407
36407
36407
36408
36408
36408
36409
36409
36409
36410
36410
36410
36411
36411
36411
36412
36412
36412
36413
36413
36413
36414
36414
36414
36415
36415
36415
36416
36416
36416
36417
36417
36417
36418
36418
36418
36419
36419
36419
36420
36420
36420
36421
36421
36421
36422
36422
36422
36423
36423
36424
36424
36424
36425
36425
36425
36426
36426
36426
36427
36427
36427
36428
36428
36428
36429
36429
36429
36430
36430
36430
36431
36431
36431
36432
36432
36432
36433
36433
36433
36434
36434
36434
36435
36435
36435
36436
36436
36436
36437
36437
36437
36438
36438
36438
36439
36439
36439
36440
36440
36440
36441
36441
36441
36442
36442
36442
36443
36443
36443
36444
36444
36444
36445
36445
36445
36446
36446
36446
36447
36447
36447
36448
36448
36448
36449
36449
36449
36450
36450
36450
36451
36451
36451
36452
36452
36452
36453
36453
36453
36454
36454
36454
36455
36455
36455
36456
36456
36456
36457
36457
36457
36458
36458
36458
36459
36459
36460
36460
36460
36461
36461
36461
36462
36462
36462
36463
36463
36463
36464
36464
36464
36465
36465
36465
36466
36466
36466
36467
36467
36467
36468
36468
36468
36469
36469
36469
36470
36470
36470
36471
36471
36471
36472
36472
36472
36473
36473
36473
36474
36474
36474
36475
36475
36475
36476
36476
36476
36477
36477
36477
36478
36478
36478
36479
36479
36479
36480
36480
36480
36481
36481
36481
36482
36482
36482
36483
36483
36483
36484
36484
36484
36485
36485
36485
36486
36486
36486
36487
36487
36487
36488
36488
36488
36489
36489
36489
36490
36490
36490
36491
36491
36491
36492
36492
36492
36493
36493
36493
36494
36494
36494
36495
36495
36496
36496
36496
36497
36497
36497
36498
36498
36498
36499
36499
36499
36500
36500
36500
36501
36501
36501
36502
36502
36502
36503
36503
36503
36504
36504
36504
36505
36505
36505
36506
36506
36506
36507
36507
36507
36508
36508
36508
36509
36509
36509
36510
36510
36510
36511
36511
36511
36512
36512
36512
36513
36513
36513
36514
36514
36514
36515
36515
36515
36516
36516
36516
36517
36517
36517
36518
36518
36518
36519
36519
36519
36520
36520
36520
36521
36521
36521
36522
36522
36522
36523
36523
36523
36524
36524
36524
36525
36525
36525
36526
36526
36526
36527
36527
36527
36528
36528
36528
36529
36529
36529
36530
36530
36530
36531
36531
36532
36532
36532
36533
36533
36533
36534
36534
36534
36535
36535
36535
36536
36536
36536
36537
36537
36537
36538
36538
36538
36539
36539
36539
36540
36540
36540
36541
36541
36541
36542
36542
36542
36543
36543
36543
36544
36544
36544
36545
36545
36545
36546
36546
36546
36547
36547
36547
36548
36548
36548
36549
36549
36549
36550
36550
36550
36551
36551
36551
36552
36552
36552
36553
36553
36553
36554
36554
36554
36555
36555
36555
36556
36556
36556
36557
36557
36557
36558
36558
36558
36559
36559
36559
36560
36560
36560
36561
36561
36561
36562
36562
36562
36563
36563
36563
36564
36564
36564
36565
36565
36565
36566
36566
36566
36567
36567
36568
36568
36568
36569
36569
36569
36570
36570
36570
36571
36571
36571
36572
36572
36572
36573
36573
36573
36574
36574
36574
36575
36575
36575
36576
36576
36576
36577
36577
36577
36578
36578
36578
36579
36579
36579
36580
36580
36580
36581
36581
36581
36582
36582
36582
36583
36583
36583
36584
36584
36584
36585
36585
36585
36586
36586
36586
36587
36587
36587
36588
36588
36588
36589
36589
36589
36590
36590
36590
36591
36591
36591
36592
36592
36592
36593
36593
36593
36594
36594
36594
36595
36595
36595
36596
36596
36596
36597
36597
36597
36598
36598
36598
36599
36599
36599
36600
36600
36600
36601
36601
36601
36602
36602
36602
36603
36603
36604
36604
36605
36605
36606
36606
36607
36607
36608
36608
36609
36609
36610
36610
36611
36611
36612
36612
36613
36613
36614
36614
36615
36615
36616
36616
36617
36617
36618
36618
36619
36619
36620
36620
36621
36621
36622
36622
36623
36623
36624
36624
36625
36625
36626
36626
36627
36627
36628
36628
36629
36629
36630
36630
36631
36631
36632
36632
36633
36633
36634
36634
36635
36635
36636
36636
36637
36637
36638
36638
36639
36640
36640
36640
36641
36641
36641
36642
36642
36642
36643
36643
36643
36644
36644
36644
36645
36645
36645
36646
36646
36646
36647
36647
36647
36648
36648
36648
36649
36649
36649
36650
36650
36650
36651
36651
36651
36652
36652
36652
36653
36653
36653
36654
36654
36654
36655
36655
36655
36656
36656
36656
36657
36657
36657
36658
36658
36658
36659
36659
36659
36660
36660
36660
36661
36661
36661
36662
36662
36662
36663
36663
36663
36664
36664
36664
36665
36665
36665
36666
36666
36666
36667
36667
36667
36668
36668
36668
36669
36669
36669
36670
36670
36670
36671
36671
36671
36672
36672
36672
36673
36673
36673
36674
36674
36674
36675
36675
36676
36676
36676
36677
36677
36677
36678
36678
36678
36679
36679
36679
36680
36680
36680
36681
36681
36681
36682
36682
36682
36683
36683
36683
36684
36684
36684
36685
36685
36685
36686
36686
36686
36687
36687
36687
36688
36688
36688
36689
36689
36689
36690
36690
36690
36691
36691
36691
36692
36692
36692
36693
36693
36693
36694
36694
36694
36695
36695
36695
36696
36696
36696
36697
36697
36697
36698
36698
36698
36699
36699
36699
36700
36700
36700
36701
36701
36701
36702
36702
36702
36703
36703
36703
36704
36704
36704
36705
36705
36705
36706
36706
36706
36707
36707
36707
36708
36708
36708
36709
36709
36709
36710
36710
36710
36711
36711
36712
36712
36712
36713
36713
36713
36714
36714
36714
36715
36715
36715
36716
36716
36716
36717
36717
36717
36718
36718
36718
36719
36719
36719
36720
36720
36720
36721
36721
36721
36722
36722
36722
36723
36723
36723
36724
36724
36724
36725
36725
36725
36726
36726
36726
36727
36727
36727
36728
36728
36728
36729
36729
36729
36730
36730
36730
36731
36731
36731
36732
36732
36732
36733
36733
36733
36734
36734
36734
36735
36735
36735
36736
36736
36736
36737
36737
36737
36738
36738
36738
36739
36739
36739
36740
36740
36740
36741
36741
36741
36742
36742
36742
36743
36743
36743
36744
36744
36744
36745
36745
36745
36746
36746
36746
36747
36747
36748
36748
36748
36749
36749
36749
36750
36750
36750
36751
36751
36751
36752
36752
36752
36753
36753
36753
36754
36754
36754
36755
36755
36755
36756
36756
36756
36757
36757
36757
36758
36758
36758
36759
36759
36759
36760
36760
36760
36761
36761
36761
36762
36762
36762
36763
36763
36763
36764
36764
36764
36765
36765
36765
36766
36766
36766
36767
36767
36767
36768
36768
36768
36769
36769
36769
36770
36770
36770
36771
36771
36771
36772
36772
36772
36773
36773
36773
36774
36774
36774
36775
36775
36775
36776
36776
36776
36777
36777
36777
36778
36778
36778
36779
36779
36779
36780
36780
36780
36781
36781
36781
36782
36782
36782
36783
36783
36784
36784
36784
36785
36785
36785
36786
36786
36786
36787
36787
36787
36788
36788
36788
36789
36789
36789
36790
36790
36790
36791
36791
36791
36792
36792
36792
36793
36793
36793
36794
36794
36794
36795
36795
36795
36796
36796
36796
36797
36797
36797
36798
36798
36798
36799
36799
36799
36800
36800
36800
36801
36801
36801
36802
36802
36802
36803
36803
36803
36804
36804
36804
36805
36805
36805
36806
36806
36806
36807
36807
36807
36808
36808
36808
36809
36809
36809
36810
36810
36810
36811
36811
36811
36812
36812
36812
36813
36813
36813
36814
36814
36814
36815
36815
36815
36816
36816
36816
36817
36817
36817
36818
36818
36818
36819
36819
36820
36820
36820
36821
36821
36821
36822
36822
36822
36823
36823
36823
36824
36824
36824
36825
36825
36825
36826
36826
36826
36827
36827
36827
36828
36828
36828
36829
36829
36829
36830
36830
36830
36831
36831
36831
36832
36832
36832
36833
36833
36833
36834
36834
36834
36835
36835
36835
36836
36836
36836
36837
36837
36837
36838
36838
36838
36839
36839
36839
36840
36840
36840
36841
36841
36841
36842
36842
36842
36843
36843
36843
36844
36844
36844
36845
36845
36845
36846
36846
36846
36847
36847
36847
36848
36848
36848
36849
36849
36849
36850
36850
36850
36851
36851
36851
36852
36852
36852
36853
36853
36853
36854
36854
36854
36855
36855
36856
36856
36856
36857
36857
36857
36858
36858
36858
36859
36859
36859
36860
36860
36860
36861
36861
36861
36862
36862
36862
36863
36863
36863
36864
36864
36864
36865
36865
36865
36866
36866
36866
36867
36867
36867
36868
36868
36868
36869
36869
36869
36870
36870
36870
36871
36871
36871
36872
36872
36872
36873
36873
36873
36874
36874
36874
36875
36875
36875
36876
36876
36876
36877
36877
36877
36878
36878
36878
36879
36879
36879
36880
36880
36880
36881
36881
36881
36882
36882
36882
36883
36883
36883
36884
36884
36884
36885
36885
36885
36886
36886
36886
36887
36887
36887
36888
36888
36888
36889
36889
36889
36890
36890
36890
36891
36891
36892
36892
36892
36893
36893
36893
36894
36894
36894
36895
36895
36895
36896
36896
36896
36897
36897
36897
36898
36898
36898
36899
36899
36899
36900
36900
36900
36901
36901
36901
36902
36902
36902
36903
36903
36903
36904
36904
36904
36905
36905
36905
36906
36906
36906
36907
36907
36907
36908
36908
36908
36909
36909
36909
36910
36910
36910
36911
36911
36911
36912
36912
36912
36913
36913
36913
36914
36914
36914
36915
36915
36915
36916
36916
36916
36917
36917
36917
36918
36918
36918
36919
36919
36919
36920
36920
36920
36921
36921
36921
36922
36922
36922
36923
36923
36923
36924
36924
36924
36925
36925
36925
36926
36926
36926
36927
36927
36928
36928
36928
36929
36929
36929
36930
36930
36930
36931
36931
36931
36932
36932
36932
36933
36933
36933
36934
36934
36934
36935
36935
36935
36936
36936
36936
36937
36937
36937
36938
36938
36938
36939
36939
36939
36940
36940
36940
36941
36941
36941
36942
36942
36942
36943
36943
36943
36944
36944
36944
36945
36945
36945
36946
36946
36946
36947
36947
36947
36948
36948
36948
36949
36949
36949
36950
36950
36950
36951
36951
36951
36952
36952
36952
36953
36953
36953
36954
36954
36954
36955
36955
36955
36956
36956
36956
36957
36957
36957
36958
36958
36958
36959
36959
36959
36960
36960
36960
36961
36961
36961
36962
36962
36962
36963
36963
36964
36964
36965
36965
36966
36966
36967
36967
36968
36968
36969
36969
36970
36970
36971
36971
36972
36972
36973
36973
36974
36974
36975
36975
36976
36976
36977
36977
36978
36978
36979
36979
36980
36980
36981
36981
36982
36982
36983
36983
36984
36984
36985
36985
36986
36986
36987
36987
36988
36988
36989
36989
36990
36990
36991
36991
36992
36992
36993
36993
36994
36994
36995
36995
36996
36996
36997
36997
36998
36998
36999
37000
37000
37000
37001
37001
37001
37002
37002
37002
37003
37003
37003
37004
37004
37004
37005
37005
37005
37006
37006
37006
37007
37007
37007
37008
37008
37008
37009
37009
37009
37010
37010
37010
37011
37011
37011
37012
37012
37012
37013
37013
37013
37014
37014
37014
37015
37015
37015
37016
37016
37016
37017
37017
37017
37018
37018
37018
37019
37019
37019
37020
37020
37020
37021
37021
37021
37022
37022
37022
37023
37023
37023
37024
37024
37024
37025
37025
37025
37026
37026
37026
37027
37027
37027
37028
37028
37028
37029
37029
37029
37030
37030
37030
37031
37031
37031
37032
37032
37032
37033
37033
37033
37034
37034
37034
37035
37035
37036
37036
37036
37037
37037
37037
37038
37038
37038
37039
37039
37039
37040
37040
37040
37041
37041
37041
37042
37042
37042
37043
37043
37043
37044
37044
37044
37045
37045
37045
37046
37046
37046
37047
37047
37047
37048
37048
37048
37049
37049
37049
37050
37050
37050
37051
37051
37051
37052
37052
37052
37053
37053
37053
37054
37054
37054
37055
37055
37055
37056
37056
37056
37057
37057
37057
37058
37058
37058
37059
37059
37059
37060
37060
37060
37061
37061
37061
37062
37062
37062
37063
37063
37063
37064
37064
37064
37065
37065
37065
37066
37066
37066
37067
37067
37067
37068
37068
37068
37069
37069
37069
37070
37070
37070
37071
37071
37072
37072
37072
37073
37073
37073
37074
37074
37074
37075
37075
37075
37076
37076
37076
37077
37077
37077
37078
37078
37078
37079
37079
37079
37080
37080
37080
37081
37081
37081
37082
37082
37082
37083
37083
37083
37084
37084
37084
37085
37085
37085
37086
37086
37086
37087
37087
37087
37088
37088
37088
37089
37089
37089
37090
37090
37090
37091
37091
37091
37092
37092
37092
37093
37093
37093
37094
37094
37094
37095
37095
37095
37096
37096
37096
37097
37097
37097
37098
37098
37098
37099
37099
37099
37100
37100
37100
37101
37101
37101
37102
37102
37102
37103
37103
37103
37104
37104
37104
37105
37105
37105
37106
37106
37106
37107
37107
37108
37108
37108
37109
37109
37109
37110
37110
37110
37111
37111
37111
37112
37112
37112
37113
37113
37113
37114
37114
37114
37115
37115
37115
37116
37116
37116
37117
37117
37117
37118
37118
37118
37119
37119
37119
37120
37120
37120
37121
37121
37121
37122
37122
37122
37123
37123
37123
37124
37124
37124
37125
37125
37125
37126
37126
37126
37127
37127
37127
37128
37128
37128
37129
37129
37129
37130
37130
37130
37131
37131
37131
37132
37132
37132
37133
37133
37133
37134
37134
37134
37135
37135
37135
37136
37136
37136
37137
37137
37137
37138
37138
37138
37139
37139
37139
37140
37140
37140
37141
37141
37141
37142
37142
37142
37143
37143
37144
37144
37144
37145
37145
37145
37146
37146
37146
37147
37147
37147
37148
37148
37148
37149
37149
37149
37150
37150
37150
37151
37151
37151
37152
37152
37152
37153
37153
37153
37154
37154
37154
37155
37155
37155
37156
37156
37156
37157
37157
37157
37158
37158
37158
37159
37159
37159
37160
37160
37160
37161
37161
37161
37162
37162
37162
37163
37163
37163
37164
37164
37164
37165
37165
37165
37166
37166
37166
37167
37167
37167
37168
37168
37168
37169
37169
37169
37170
37170
37170
37171
37171
37171
37172
37172
37172
37173
37173
37173
37174
37174
37174
37175
37175
37175
37176
37176
37176
37177
37177
37177
37178
37178
37178
37179
37179
37180
37180
37180
37181
37181
37181
37182
37182
37182
37183
37183
37183
37184
37184
37184
37185
37185
37185
37186
37186
37186
37187
37187
37187
37188
37188
37188
37189
37189
37189
37190
37190
37190
37191
37191
37191
37192
37192
37192
37193
37193
37193
37194
37194
37194
37195
37195
37195
37196
37196
37196
37197
37197
37197
37198
37198
37198
37199
37199
37199
37200
37200
37200
37201
37201
37201
37202
37202
37202
37203
37203
37203
37204
37204
37204
37205
37205
37205
37206
37206
37206
37207
37207
37207
37208
37208
37208
37209
37209
37209
37210
37210
37210
37211
37211
37211
37212
37212
37212
37213
37213
37213
37214
37214
37214
37215
37215
37216
37216
37216
37217
37217
37217
37218
37218
37218
37219
37219
37219
37220
37220
37220
37221
37221
37221
37222
37222
37222
37223
37223
37223
37224
37224
37224
37225
37225
37225
37226
37226
37226
37227
37227
37227
37228
37228
37228
37229
37229
37229
37230
37230
37230
37231
37231
37231
37232
37232
37232
37233
37233
37233
37234
37234
37234
37235
37235
37235
37236
37236
37236
37237
37237
37237
37238
37238
37238
37239
37239
37239
37240
37240
37240
37241
37241
37241
37242
37242
37242
37243
37243
37243
37244
37244
37244
37245
37245
37245
37246
37246
37246
37247
37247
37247
37248
37248
37248
37249
37249
37249
37250
37250
37250
37251
37251
37252
37252
37252
37253
37253
37253
37254
37254
37254
37255
37255
37255
37256
37256
37256
37257
37257
37257
37258
37258
37258
37259
37259
37259
37260
37260
37260
37261
37261
37261
37262
37262
37262
37263
37263
37263
37264
37264
37264
37265
37265
37265
37266
37266
37266
37267
37267
37267
37268
37268
37268
37269
37269
37269
37270
37270
37270
37271
37271
37271
37272
37272
37272
37273
37273
37273
37274
37274
37274
37275
37275
37275
37276
37276
37276
37277
37277
37277
37278
37278
37278
37279
37279
37279
37280
37280
37280
37281
37281
37281
37282
37282
37282
37283
37283
37283
37284
37284
37284
37285
37285
37285
37286
37286
37286
37287
37287
37288
37288
37288
37289
37289
37289
37290
37290
37290
37291
37291
37291
37292
37292
37292
37293
37293
37293
37294
37294
37294
37295
37295
37295
37296
37296
37296
37297
37297
37297
37298
37298
37298
37299
37299
37299
37300
37300
37300
37301
37301
37301
37302
37302
37302
37303
37303
37303
37304
37304
37304
37305
37305
37305
37306
37306
37306
37307
37307
37307
37308
37308
37308
37309
37309
37309
37310
37310
37310
37311
37311
37311
37312
37312
37312
37313
37313
37313
37314
37314
37314
37315
37315
37315
37316
37316
37316
37317
37317
37317
37318
37318
37318
37319
37319
37319
37320
37320
37320
37321
37321
37321
37322
37322
37322
37323
37323
37324
37324
37325
37325
37326
37326
37327
37327
37328
37328
37329
37329
37330
37330
37331
37331
37332
37332
37333
37333
37334
37334
37335
37335
37336
37336
37337
37337
37338
37338
37339
37339
37340
37340
37341
37341
37342
37342
37343
37343
37344
37344
37345
37345
37346
37346
37347
37347
37348
37348
37349
37349
37350
37350
37351
37351
37352
37352
37353
37353
37354
37354
37355
37355
37356
37356
37357
37357
37358
37358
37359
37360
37360
37360
37361
37361
37361
37362
37362
37362
37363
37363
37363
37364
37364
37364
37365
37365
37365
37366
37366
37366
37367
37367
37367
37368
37368
37368
37369
37369
37369
37370
37370
37370
37371
37371
37371
37372
37372
37372
37373
37373
37373
37374
37374
37374
37375
37375
37375
37376
37376
37376
37377
37377
37377
37378
37378
37378
37379
37379
37379
37380
37380
37380
37381
37381
37381
37382
37382
37382
37383
37383
37383
37384
37384
37384
37385
37385
37385
37386
37386
37386
37387
37387
37387
37388
37388
37388
37389
37389
37389
37390
37390
37390
37391
37391
37391
37392
37392
37392
37393
37393
37393
37394
37394
37394
37395
37395
37396
37396
37396
37397
37397
37397
37398
37398
37398
37399
37399
37399
37400
37400
37400
37401
37401
37401
37402
37402
37402
37403
37403
37403
37404
37404
37404
37405
37405
37405
37406
37406
37406
37407
37407
37407
37408
37408
37408
37409
37409
37409
37410
37410
37410
37411
37411
37411
37412
37412
37412
37413
37413
37413
37414
37414
37414
37415
37415
37415
37416
37416
37416
37417
37417
37417
37418
37418
37418
37419
37419
37419
37420
37420
37420
37421
37421
37421
37422
37422
37422
37423
37423
37423
37424
37424
37424
37425
37425
37425
37426
37426
37426
37427
37427
37427
37428
37428
37428
37429
37429
37429
37430
37430
37430
37431
37431
37432
37432
37432
37433
37433
37433
37434
37434
37434
37435
37435
37435
37436
37436
37436
37437
37437
37437
37438
37438
37438
37439
37439
37439
37440
37440
37440
37441
37441
37441
37442
37442
37442
37443
37443
37443
37444
37444
37444
37445
37445
37445
37446
37446
37446
37447
37447
37447
37448
37448
37448
37449
37449
37449
37450
37450
37450
37451
37451
37451
37452
37452
37452
37453
37453
37453
37454
37454
37454
37455
37455
37455
37456
37456
37456
37457
37457
37457
37458
37458
37458
37459
37459
37459
37460
37460
37460
37461
37461
37461
37462
37462
37462
37463
37463
37463
37464
37464
37464
37465
37465
37465
37466
37466
37466
37467
37467
37468
37468
37468
37469
37469
37469
37470
37470
37470
37471
37471
37471
37472
37472
37472
37473
37473
37473
37474
37474
37474
37475
37475
37475
37476
37476
37476
37477
37477
37477
37478
37478
37478
37479
37479
37479
37480
37480
37480
37481
37481
37481
37482
37482
37482
37483
37483
37483
37484
37484
37484
37485
37485
37485
37486
37486
37486
37487
37487
37487
37488
37488
37488
37489
37489
37489
37490
37490
37490
37491
37491
37491
37492
37492
37492
37493
37493
37493
37494
37494
37494
37495
37495
37495
37496
37496
37496
37497
37497
37497
37498
37498
37498
37499
37499
37499
37500
37500
37500
37501
37501
37501
37502
37502
37502
37503
37503
37504
37504
37504
37505
37505
37505
37506
37506
37506
37507
37507
37507
37508
37508
37508
37509
37509
37509
37510
37510
37510
37511
37511
37511
37512
37512
37512
37513
37513
37513
37514
37514
37514
37515
37515
37515
37516
37516
37516
37517
37517
37517
37518
37518
37518
37519
37519
37519
37520
37520
37520
37521
37521
37521
37522
37522
37522
37523
37523
37523
37524
37524
37524
37525
37525
37525
37526
37526
37526
37527
37527
37527
37528
37528
37528
37529
37529
37529
37530
37530
37530
37531
37531
37531
37532
37532
37532
37533
37533
37533
37534
37534
37534
37535
37535
37535
37536
37536
37536
37537
37537
37537
37538
37538
37538
37539
37539
37540
37540
37540
37541
37541
37541
37542
37542
37542
37543
37543
37543
37544
37544
37544
37545
37545
37545
37546
37546
37546
37547
37547
37547
37548
37548
37548
37549
37549
37549
37550
37550
37550
37551
37551
37551
37552
37552
37552
37553
37553
37553
37554
37554
37554
37555
37555
37555
37556
37556
37556
37557
37557
37557
37558
37558
37558
37559
37559
37559
37560
37560
37560
37561
37561
37561
37562
37562
37562
37563
37563
37563
37564
37564
37564
37565
37565
37565
37566
37566
37566
37567
37567
37567
37568
37568
37568
37569
37569
37569
37570
37570
37570
37571
37571
37571
37572
37572
37572
37573
37573
37573
37574
37574
37574
37575
37575
37576
37576
37576
37577
37577
37577
37578
37578
37578
37579
37579
37579
37580
37580
37580
37581
37581
37581
37582
37582
37582
37583
37583
37583
37584
37584
37584
37585
37585
37585
37586
37586
37586
37587
37587
37587
37588
37588
37588
37589
37589
37589
37590
37590
37590
37591
37591
37591
37592
37592
37592
37593
37593
37593
37594
37594
37594
37595
37595
37595
37596
37596
37596
37597
37597
37597
37598
37598
37598
37599
37599
37599
37600
37600
37600
37601
37601
37601
37602
37602
37602
37603
37603
37603
37604
37604
37604
37605
37605
37605
37606
37606
37606
37607
37607
37607
37608
37608
37608
37609
37609
37609
37610
37610
37610
37611
37611
37612
37612
37612
37613
37613
37613
37614
37614
37614
37615
37615
37615
37616
37616
37616
37617
37617
37617
37618
37618
37618
37619
37619
37619
37620
37620
37620
37621
37621
37621
37622
37622
37622
37623
37623
37623
37624
37624
37624
37625
37625
37625
37626
37626
37626
37627
37627
37627
37628
37628
37628
37629
37629
37629
37630
37630
37630
37631
37631
37631
37632
37632
37632
37633
37633
37633
37634
37634
37634
37635
37635
37635
37636
37636
37636
37637
37637
37637
37638
37638
37638
37639
37639
37639
37640
37640
37640
37641
37641
37641
37642
37642
37642
37643
37643
37643
37644
37644
37644
37645
37645
37645
37646
37646
37646
37647
37647
37648
37648
37648
37649
37649
37649
37650
37650
37650
37651
37651
37651
37652
37652
37652
37653
37653
37653
37654
37654
37654
37655
37655
37655
37656
37656
37656
37657
37657
37657
37658
37658
37658
37659
37659
37659
37660
37660
37660
37661
37661
37661
37662
37662
37662
37663
37663
37663
37664
37664
37664
37665
37665
37665
37666
37666
37666
37667
37667
37667
37668
37668
37668
37669
37669
37669
37670
37670
37670
37671
37671
37671
37672
37672
37672
37673
37673
37673
37674
37674
37674
37675
37675
37675
37676
37676
37676
37677
37677
37677
37678
37678
37678
37679
37679
37679
37680
37680
37680
37681
37681
37681
37682
37682
37682
37683
37683
37684
37684
37685
37685
37686
37686
37687
37687
37688
37688
37689
37689
37690
37690
37691
37691
37692
37692
37693
37693
37694
37694
37695
37695
37696
37696
37697
37697
37698
37698
37699
37699
37700
37700
37701
37701
37702
37702
37703
37703
37704
37704
37705
37705
37706
37706
37707
37707
37708
37708
37709
37709
37710
37710
37711
37711
37712
37712
37713
37713
37714
37714
37715
37715
37716
37716
37717
37717
37718
37718
37719
37720
37720
37720
37721
37721
37721
37722
37722
37722
37723
37723
37723
37724
37724
37724
37725
37725
37725
37726
37726
37726
37727
37727
37727
37728
37728
37728
37729
37729
37729
37730
37730
37730
37731
37731
37731
37732
37732
37732
37733
37733
37733
37734
37734
37734
37735
37735
37735
37736
37736
37736
37737
37737
37737
37738
37738
37738
37739
37739
37739
37740
37740
37740
37741
37741
37741
37742
37742
37742
37743
37743
37743
37744
37744
37744
37745
37745
37745
37746
37746
37746
37747
37747
37747
37748
37748
37748
37749
37749
37749
37750
37750
37750
37751
37751
37751
37752
37752
37752
37753
37753
37753
37754
37754
37754
37755
37755
37756
37756
37756
37757
37757
37757
37758
37758
37758
37759
37759
37759
37760
37760
37760
37761
37761
37761
37762
37762
37762
37763
37763
37763
37764
37764
37764
37765
37765
37765
37766
37766
37766
37767
37767
37767
37768
37768
37768
37769
37769
37769
37770
37770
37770
37771
37771
37771
37772
37772
37772
37773
37773
37773
37774
37774
37774
37775
37775
37775
37776
37776
37776
37777
37777
37777
37778
37778
37778
37779
37779
37779
37780
37780
37780
37781
37781
37781
37782
37782
37782
37783
37783
37783
37784
37784
37784
37785
37785
37785
37786
37786
37786
37787
37787
37787
37788
37788
37788
37789
37789
37789
37790
37790
37790
37791
37791
37792
37792
37792
37793
37793
37793
37794
37794
37794
37795
37795
37795
37796
37796
37796
37797
37797
37797
37798
37798
37798
37799
37799
37799
37800
37800
37800
37801
37801
37801
37802
37802
37802
37803
37803
37803
37804
37804
37804
37805
37805
37805
37806
37806
37806
37807
37807
37807
37808
37808
37808
37809
37809
37809
37810
37810
37810
37811
37811
37811
37812
37812
37812
37813
37813
37813
37814
37814
37814
37815
37815
37815
37816
37816
37816
37817
37817
37817
37818
37818
37818
37819
37819
37819
37820
37820
37820
37821
37821
37821
37822
37822
37822
37823
37823
37823
37824
37824
37824
37825
37825
37825
37826
37826
37826
37827
37827
37828
37828
37828
37829
37829
37829
37830
37830
37830
37831
37831
37831
37832
37832
37832
37833
37833
37833
37834
37834
37834
37835
37835
37835
37836
37836
37836
37837
37837
37837
37838
37838
37838
37839
37839
37839
37840
37840
37840
37841
37841
37841
37842
37842
37842
37843
37843
37843
37844
37844
37844
37845
37845
37845
37846
37846
37846
37847
37847
37847
37848
37848
37848
37849
37849
37849
37850
37850
37850
37851
37851
37851
37852
37852
37852
37853
37853
37853
37854
37854
37854
37855
37855
37855
37856
37856
37856
37857
37857
37857
37858
37858
37858
37859
37859
37859
37860
37860
37860
37861
37861
37861
37862
37862
37862
37863
37863
37864
37864
37864
37865
37865
37865
37866
37866
37866
37867
37867
37867
37868
37868
37868
37869
37869
37869
37870
37870
37870
37871
37871
37871
37872
37872
37872
37873
37873
37873
37874
37874
37874
37875
37875
37875
37876
37876
37876
37877
37877
37877
37878
37878
37878
37879
37879
37879
37880
37880
37880
37881
37881
37881
37882
37882
37882
37883
37883
37883
37884
37884
37884
37885
37885
37885
37886
37886
37886
37887
37887
37887
37888
37888
37888
37889
37889
37889
37890
37890
37890
37891
37891
37891
37892
37892
37892
37893
37893
37893
37894
37894
37894
37895
37895
37895
37896
37896
37896
37897
37897
37897
37898
37898
37898
37899
37899
37900
37900
37900
37901
37901
37901
37902
37902
37902
37903
37903
37903
37904
37904
37904
37905
37905
37905
37906
37906
37906
37907
37907
37907
37908
37908
37908
37909
37909
37909
37910
37910
37910
37911
37911
37911
37912
37912
37912
37913
37913
37913
37914
37914
37914
37915
37915
37915
37916
37916
37916
37917
37917
37917
37918
37918
37918
37919
37919
37919
37920
37920
37920
37921
37921
37921
37922
37922
37922
37923
37923
37923
37924
37924
37924
37925
37925
37925
37926
37926
37926
37927
37927
37927
37928
37928
37928
37929
37929
37929
37930
37930
37930
37931
37931
37931
37932
37932
37932
37933
37933
37933
37934
37934
37934
37935
37935
37936
37936
37936
37937
37937
37937
37938
37938
37938
37939
37939
37939
37940
37940
37940
37941
37941
37941
37942
37942
37942
37943
37943
37943
37944
37944
37944
37945
37945
37945
37946
37946
37946
37947
37947
37947
37948
37948
37948
37949
37949
37949
37950
37950
37950
37951
37951
37951
37952
37952
37952
37953
37953
37953
37954
37954
37954
37955
37955
37955
37956
37956
37956
37957
37957
37957
37958
37958
37958
37959
37959
37959
37960
37960
37960
37961
37961
37961
37962
37962
37962
37963
37963
37963
37964
37964
37964
37965
37965
37965
37966
37966
37966
37967
37967
37967
37968
37968
37968
37969
37969
37969
37970
37970
37970
37971
37971
37972
37972
37972
37973
37973
37973
37974
37974
37974
37975
37975
37975
37976
37976
37976
37977
37977
37977
37978
37978
37978
37979
37979
37979
37980
37980
37980
37981
37981
37981
37982
37982
37982
37983
37983
37983
37984
37984
37984
37985
37985
37985
37986
37986
37986
37987
37987
37987
37988
37988
37988
37989
37989
37989
37990
37990
37990
37991
37991
37991
37992
37992
37992
37993
37993
37993
37994
37994
37994
37995
37995
37995
37996
37996
37996
37997
37997
37997
37998
37998
37998
37999
37999
37999
38000
38000
38000
38001
38001
38001
38002
38002
38002
38003
38003
38003
38004
38004
38004
38005
38005
38005
38006
38006
38006
38007
38007
38008
38008
38008
38009
38009
38009
38010
38010
38010
38011
38011
38011
38012
38012
38012
38013
38013
38013
38014
38014
38014
38015
38015
38015
38016
38016
38016
38017
38017
38017
38018
38018
38018
38019
38019
38019
38020
38020
38020
38021
38021
38021
38022
38022
38022
38023
38023
38023
38024
38024
38024
38025
38025
38025
38026
38026
38026
38027
38027
38027
38028
38028
38028
38029
38029
38029
38030
38030
38030
38031
38031
38031
38032
38032
38032
38033
38033
38033
38034
38034
38034
38035
38035
38035
38036
38036
38036
38037
38037
38037
38038
38038
38038
38039
38039
38039
38040
38040
38040
38041
38041
38041
38042
38042
38042
38043
38043
38044
38044
38045
38045
38046
38046
38047
38047
38048
38048
38049
38049
38050
38050
38051
38051
38052
38052
38053
38053
38054
38054
38055
38055
38056
38056
38057
38057
38058
38058
38059
38059
38060
38060
38061
38061
38062
38062
38063
38063
38064
38064
38065
38065
38066
38066
38067
38067
38068
38068
38069
38069
38070
38070
38071
38071
38072
38072
38073
38073
38074
38074
38075
38075
38076
38076
38077
38077
38078
38078
38079
38080
38080
38080
38081
38081
38081
38082
38082
38082
38083
38083
38083
38084
38084
38084
38085
38085
38085
38086
38086
38086
38087
38087
38087
38088
38088
38088
38089
38089
38089
38090
38090
38090
38091
38091
38091
38092
38092
38092
38093
38093
38093
38094
38094
38094
38095
38095
38095
38096
38096
38096
38097
38097
38097
38098
38098
38098
38099
38099
38099
38100
38100
38100
38101
38101
38101
38102
38102
38102
38103
38103
38103
38104
38104
38104
38105
38105
38105
38106
38106
38106
38107
38107
38107
38108
38108
38108
38109
38109
38109
38110
38110
38110
38111
38111
38111
38112
38112
38112
38113
38113
38113
38114
38114
38114
38115
38115
38116
38116
38116
38117
38117
38117
38118
38118
38118
38119
38119
38119
38120
38120
38120
38121
38121
38121
38122
38122
38122
38123
38123
38123
38124
38124
38124
38125
38125
38125
38126
38126
38126
38127
38127
38127
38128
38128
38128
38129
38129
38129
38130
38130
38130
38131
38131
38131
38132
38132
38132
38133
38133
38133
38134
38134
38134
38135
38135
38135
38136
38136
38136
38137
38137
38137
38138
38138
38138
38139
38139
38139
38140
38140
38140
38141
38141
38141
38142
38142
38142
38143
38143
38143
38144
38144
38144
38145
38145
38145
38146
38146
38146
38147
38147
38147
38148
38148
38148
38149
38149
38149
38150
38150
38150
38151
38151
38152
38152
38152
38153
38153
38153
38154
38154
38154
38155
38155
38155
38156
38156
38156
38157
38157
38157
38158
38158
38158
38159
38159
38159
38160
38160
38160
38161
38161
38161
38162
38162
38162
38163
38163
38163
38164
38164
38164
38165
38165
38165
38166
38166
38166
38167
38167
38167
38168
38168
38168
38169
38169
38169
38170
38170
38170
38171
38171
38171
38172
38172
38172
38173
38173
38173
38174
38174
38174
38175
38175
38175
38176
38176
38176
38177
38177
38177
38178
38178
38178
38179
38179
38179
38180
38180
38180
38181
38181
38181
38182
38182
38182
38183
38183
38183
38184
38184
38184
38185
38185
38185
38186
38186
38186
38187
38187
38188
38188
38188
38189
38189
38189
38190
38190
38190
38191
38191
38191
38192
38192
38192
38193
38193
38193
38194
38194
38194
38195
38195
38195
38196
38196
38196
38197
38197
38197
38198
38198
38198
38199
38199
38199
38200
38200
38200
38201
38201
38201
38202
38202
38202
38203
38203
38203
38204
38204
38204
38205
38205
38205
38206
38206
38206
38207
38207
38207
38208
38208
38208
38209
38209
38209
38210
38210
38210
38211
38211
38211
38212
38212
38212
38213
38213
38213
38214
38214
38214
38215
38215
38215
38216
38216
38216
38217
38217
38217
38218
38218
38218
38219
38219
38219
38220
38220
38220
38221
38221
38221
38222
38222
38222
38223
38223
38224
38224
38224
38225
38225
38225
38226
38226
38226
38227
38227
38227
38228
38228
38228
38229
38229
38229
38230
38230
38230
38231
38231
38231
38232
38232
38232
38233
38233
38233
38234
38234
38234
38235
38235
38235
38236
38236
38236
38237
38237
38237
38238
38238
38238
38239
38239
38239
38240
38240
38240
38241
38241
38241
38242
38242
38242
38243
38243
38243
38244
38244
38244
38245
38245
38245
38246
38246
38246
38247
38247
38247
38248
38248
38248
38249
38249
38249
38250
38250
38250
38251
38251
38251
38252
38252
38252
38253
38253
38253
38254
38254
38254
38255
38255
38255
38256
38256
38256
38257
38257
38257
38258
38258
38258
38259
38259
38260
38260
38260
38261
38261
38261
38262
38262
38262
38263
38263
38263
38264
38264
38264
38265
38265
38265
38266
38266
38266
38267
38267
38267
38268
38268
38268
38269
38269
38269
38270
38270
38270
38271
38271
38271
38272
38272
38272
38273
38273
38273
38274
38274
38274
38275
38275
38275
38276
38276
38276
38277
38277
38277
38278
38278
38278
38279
38279
38279
38280
38280
38280
38281
38281
38281
38282
38282
38282
38283
38283
38283
38284
38284
38284
38285
38285
38285
38286
38286
38286
38287
38287
38287
38288
38288
38288
38289
38289
38289
38290
38290
38290
38291
38291
38291
38292
38292
38292
38293
38293
38293
38294
38294
38294
38295
38295
38296
38296
38296
38297
38297
38297
38298
38298
38298
38299
38299
38299
38300
38300
38300
38301
38301
38301
38302
38302
38302
38303
38303
38303
38304
38304
38304
38305
38305
38305
38306
38306
38306
38307
38307
38307
38308
38308
38308
38309
38309
38309
38310
38310
38310
38311
38311
38311
38312
38312
38312
38313
38313
38313
38314
38314
38314
38315
38315
38315
38316
38316
38316
38317
38317
38317
38318
38318
38318
38319
38319
38319
38320
38320
38320
38321
38321
38321
38322
38322
38322
38323
38323
38323
38324
38324
38324
38325
38325
38325
38326
38326
38326
38327
38327
38327
38328
38328
38328
38329
38329
38329
38330
38330
38330
38331
38331
38332
38332
38332
38333
38333
38333
38334
38334
38334
38335
38335
38335
38336
38336
38336
38337
38337
38337
38338
38338
38338
38339
38339
38339
38340
38340
38340
38341
38341
38341
38342
38342
38342
38343
38343
38343
38344
38344
38344
38345
38345
38345
38346
38346
38346
38347
38347
38347
38348
38348
38348
38349
38349
38349
38350
38350
38350
38351
38351
38351
38352
38352
38352
38353
38353
38353
38354
38354
38354
38355
38355
38355
38356
38356
38356
38357
38357
38357
38358
38358
38358
38359
38359
38359
38360
38360
38360
38361
38361
38361
38362
38362
38362
38363
38363
38363
38364
38364
38364
38365
38365
38365
38366
38366
38366
38367
38367
38368
38368
38368
38369
38369
38369
38370
38370
38370
38371
38371
38371
38372
38372
38372
38373
38373
38373
38374
38374
38374
38375
38375
38375
38376
38376
38376
38377
38377
38377
38378
38378
38378
38379
38379
38379
38380
38380
38380
38381
38381
38381
38382
38382
38382
38383
38383
38383
38384
38384
38384
38385
38385
38385
38386
38386
38386
38387
38387
38387
38388
38388
38388
38389
38389
38389
38390
38390
38390
38391
38391
38391
38392
38392
38392
38393
38393
38393
38394
38394
38394
38395
38395
38395
38396
38396
38396
38397
38397
38397
38398
38398
38398
38399
38399
38399
38400
38400
38400
38401
38401
38401
38402
38402
38402
38403
38403
38404
38404
38405
38405
38406
38406
38407
38407
38408
38408
38409
38409
38410
38410
38411
38411
38412
38412
38413
38413
38414
38414
38415
38415
38416
38416
38417
38417
38418
38418
38419
38419
38420
38420
38421
38421
38422
38422
38423
38423
38424
38424
38425
38425
38426
38426
38427
38427
38428
38428
38429
38429
38430
38430
38431
38431
38432
38432
38433
38433
38434
38434
38435
38435
38436
38436
38437
38437
38438
38438
38439
38440
38440
38440
38441
38441
38441
38442
38442
38442
38443
38443
38443
38444
38444
38444
38445
38445
38445
38446
38446
38446
38447
38447
38447
38448
38448
38448
38449
38449
38449
38450
38450
38450
38451
38451
38451
38452
38452
38452
38453
38453
38453
38454
38454
38454
38455
38455
38455
38456
38456
38456
38457
38457
38457
38458
38458
38458
38459
38459
38459
38460
38460
38460
38461
38461
38461
38462
38462
38462
38463
38463
38463
38464
38464
38464
38465
38465
38465
38466
38466
38466
38467
38467
38467
38468
38468
38468
38469
38469
38469
38470
38470
38470
38471
38471
38471
38472
38472
38472
38473
38473
38473
38474
38474
38474
38475
38475
38476
38476
38476
38477
38477
38477
38478
38478
38478
38479
38479
38479
38480
38480
38480
38481
38481
38481
38482
38482
38482
38483
38483
38483
38484
38484
38484
38485
38485
38485
38486
38486
38486
38487
38487
38487
38488
38488
38488
38489
38489
38489
38490
38490
38490
38491
38491
38491
38492
38492
38492
38493
38493
38493
38494
38494
38494
38495
38495
38495
38496
38496
38496
38497
38497
38497
38498
38498
38498
38499
38499
38499
38500
38500
38500
38501
38501
38501
38502
38502
38502
38503
38503
38503
38504
38504
38504
38505
38505
38505
38506
38506
38506
38507
38507
38507
38508
38508
38508
38509
38509
38509
38510
38510
38510
38511
38511
38512
38512
38512
38513
38513
38513
38514
38514
38514
38515
38515
38515
38516
38516
38516
38517
38517
38517
38518
38518
38518
38519
38519
38519
38520
38520
38520
38521
38521
38521
38522
38522
38522
38523
38523
38523
38524
38524
38524
38525
38525
38525
38526
38526
38526
38527
38527
38527
38528
38528
38528
38529
38529
38529
38530
38530
38530
38531
38531
38531
38532
38532
38532
38533
38533
38533
38534
38534
38534
38535
38535
38535
38536
38536
38536
38537
38537
38537
38538
38538
38538
38539
38539
38539
38540
38540
38540
38541
38541
38541
38542
38542
38542
38543
38543
38543
38544
38544
38544
38545
38545
38545
38546
38546
38546
38547
38547
38548
38548
38548
38549
38549
38549
38550
38550
38550
38551
38551
38551
38552
38552
38552
38553
38553
38553
38554
38554
38554
38555
38555
38555
38556
38556
38556
38557
38557
38557
38558
38558
38558
38559
38559
38559
38560
38560
38560
38561
38561
38561
38562
38562
38562
38563
38563
38563
38564
38564
38564
38565
38565
38565
38566
38566
38566
38567
38567
38567
38568
38568
38568
38569
38569
38569
38570
38570
38570
38571
38571
38571
38572
38572
38572
38573
38573
38573
38574
38574
38574
38575
38575
38575
38576
38576
38576
38577
38577
38577
38578
38578
38578
38579
38579
38579
38580
38580
38580
38581
38581
38581
38582
38582
38582
38583
38583
38584
38584
38584
38585
38585
38585
38586
38586
38586
38587
38587
38587
38588
38588
38588
38589
38589
38589
38590
38590
38590
38591
38591
38591
38592
38592
38592
38593
38593
38593
38594
38594
38594
38595
38595
38595
38596
38596
38596
38597
38597
38597
38598
38598
38598
38599
38599
38599
38600
38600
38600
38601
38601
38601
38602
38602
38602
38603
38603
38603
38604
38604
38604
38605
38605
38605
38606
38606
38606
38607
38607
38607
38608
38608
38608
38609
38609
38609
38610
38610
38610
38611
38611
38611
38612
38612
38612
38613
38613
38613
38614
38614
38614
38615
38615
38615
38616
38616
38616
38617
38617
38617
38618
38618
38618
38619
38619
38620
38620
38620
38621
38621
38621
38622
38622
38622
38623
38623
38623
38624
38624
38624
38625
38625
38625
38626
38626
38626
38627
38627
38627
38628
38628
38628
38629
38629
38629
38630
38630
38630
38631
38631
38631
38632
38632
38632
38633
38633
38633
38634
38634
38634
38635
38635
38635
38636
38636
38636
38637
38637
38637
38638
38638
38638
38639
38639
38639
38640
38640
38640
38641
38641
38641
38642
38642
38642
38643
38643
38643
38644
38644
38644
38645
38645
38645
38646
38646
38646
38647
38647
38647
38648
38648
38648
38649
38649
38649
38650
38650
38650
38651
38651
38651
38652
38652
38652
38653
38653
38653
38654
38654
38654
38655
38655
38656
38656
38656
38657
38657
38657
38658
38658
38658
38659
38659
38659
38660
38660
38660
38661
38661
38661
38662
38662
38662
38663
38663
38663
38664
38664
38664
38665
38665
38665
38666
38666
38666
38667
38667
38667
38668
38668
38668
38669
38669
38669
38670
38670
38670
38671
38671
38671
38672
38672
38672
38673
38673
38673
38674
38674
38674
38675
38675
38675
38676
38676
38676
38677
38677
38677
38678
38678
38678
38679
38679
38679
38680
38680
38680
38681
38681
38681
38682
38682
38682
38683
38683
38683
38684
38684
38684
38685
38685
38685
38686
38686
38686
38687
38687
38687
38688
38688
38688
38689
38689
38689
38690
38690
38690
38691
38691
38692
38692
38692
38693
38693
38693
38694
38694
38694
38695
38695
38695
38696
38696
38696
38697
38697
38697
38698
38698
38698
38699
38699
38699
38700
38700
38700
38701
38701
38701
38702
38702
38702
38703
38703
38703
38704
38704
38704
38705
38705
38705
38706
38706
38706
38707
38707
38707
38708
38708
38708
38709
38709
38709
38710
38710
38710
38711
38711
38711
38712
38712
38712
38713
38713
38713
38714
38714
38714
38715
38715
38715
38716
38716
38716
38717
38717
38717
38718
38718
38718
38719
38719
38719
38720
38720
38720
38721
38721
38721
38722
38722
38722
38723
38723
38723
38724
38724
38724
38725
38725
38725
38726
38726
38726
38727
38727
38728
38728
38728
38729
38729
38729
38730
38730
38730
38731
38731
38731
38732
38732
38732
38733
38733
38733
38734
38734
38734
38735
38735
38735
38736
38736
38736
38737
38737
38737
38738
38738
38738
38739
38739
38739
38740
38740
38740
38741
38741
38741
38742
38742
38742
38743
38743
38743
38744
38744
38744
38745
38745
38745
38746
38746
38746
38747
38747
38747
38748
38748
38748
38749
38749
38749
38750
38750
38750
38751
38751
38751
38752
38752
38752
38753
38753
38753
38754
38754
38754
38755
38755
38755
38756
38756
38756
38757
38757
38757
38758
38758
38758
38759
38759
38759
38760
38760
38760
38761
38761
38761
38762
38762
38762
38763
38763
38764
38764
38765
38765
38766
38766
38767
38767
38768
38768
38769
38769
38770
38770
38771
38771
38772
38772
38773
38773
38774
38774
38775
38775
38776
38776
38777
38777
38778
38778
38779
38779
38780
38780
38781
38781
38782
38782
38783
38783
38784
38784
38785
38785
38786
38786
38787
38787
38788
38788
38789
38789
38790
38790
38791
38791
38792
38792
38793
38793
38794
38794
38795
38795
38796
38796
38797
38797
38798
38798
38799
38800
38800
38800
38801
38801
38801
38802
38802
38802
38803
38803
38803
38804
38804
38804
38805
38805
38805
38806
38806
38806
38807
38807
38807
38808
38808
38808
38809
38809
38809
38810
38810
38810
38811
38811
38811
38812
38812
38812
38813
38813
38813
38814
38814
38814
38815
38815
38815
38816
38816
38816
38817
38817
38817
38818
38818
38818
38819
38819
38819
38820
38820
38820
38821
38821
38821
38822
38822
38822
38823
38823
38823
38824
38824
38824
38825
38825
38825
38826
38826
38826
38827
38827
38827
38828
38828
38828
38829
38829
38829
38830
38830
38830
38831
38831
38831
38832
38832
38832
38833
38833
38833
38834
38834
38834
38835
38835
38836
38836
38836
38837
38837
38837
38838
38838
38838
38839
38839
38839
38840
38840
38840
38841
38841
38841
38842
38842
38842
38843
38843
38843
38844
38844
38844
38845
38845
38845
38846
38846
38846
38847
38847
38847
38848
38848
38848
38849
38849
38849
38850
38850
38850
38851
38851
38851
38852
38852
38852
38853
38853
38853
38854
38854
38854
38855
38855
38855
38856
38856
38856
38857
38857
38857
38858
38858
38858
38859
38859
38859
38860
38860
38860
38861
38861
38861
38862
38862
38862
38863
38863
38863
38864
38864
38864
38865
38865
38865
38866
38866
38866
38867
38867
38867
38868
38868
38868
38869
38869
38869
38870
38870
38870
38871
38871
38872
38872
38872
38873
38873
38873
38874
38874
38874
38875
38875
38875
38876
38876
38876
38877
38877
38877
38878
38878
38878
38879
38879
38879
38880
38880
38880
38881
38881
38881
38882
38882
38882
38883
38883
38883
38884
38884
38884
38885
38885
38885
38886
38886
38886
38887
38887
38887
38888
38888
38888
38889
38889
38889
38890
38890
38890
38891
38891
38891
38892
38892
38892
38893
38893
38893
38894
38894
38894
38895
38895
38895
38896
38896
38896
38897
38897
38897
38898
38898
38898
38899
38899
38899
38900
38900
38900
38901
38901
38901
38902
38902
38902
38903
38903
38903
38904
38904
38904
38905
38905
38905
38906
38906
38906
38907
38907
38908
38908
38908
38909
38909
38909
38910
38910
38910
38911
38911
38911
38912
38912
38912
38913
38913
38913
38914
38914
38914
38915
38915
38915
38916
38916
38916
38917
38917
38917
38918
38918
38918
38919
38919
38919
38920
38920
38920
38921
38921
38921
38922
38922
38922
38923
38923
38923
38924
38924
38924
38925
38925
38925
38926
38926
38926
38927
38927
38927
38928
38928
38928
38929
38929
38929
38930
38930
38930
38931
38931
38931
38932
38932
38932
38933
38933
38933
38934
38934
38934
38935
38935
38935
38936
38936
38936
38937
38937
38937
38938
38938
38938
38939
38939
38939
38940
38940
38940
38941
38941
38941
38942
38942
38942
38943
38943
38944
38944
38944
38945
38945
38945
38946
38946
38946
38947
38947
38947
38948
38948
38948
38949
38949
38949
38950
38950
38950
38951
38951
38951
38952
38952
38952
38953
38953
38953
38954
38954
38954
38955
38955
38955
38956
38956
38956
38957
38957
38957
38958
38958
38958
38959
38959
38959
38960
38960
38960
38961
38961
38961
38962
38962
38962
38963
38963
38963
38964
38964
38964
38965
38965
38965
38966
38966
38966
38967
38967
38967
38968
38968
38968
38969
38969
38969
38970
38970
38970
38971
38971
38971
38972
38972
38972
38973
38973
38973
38974
38974
38974
38975
38975
38975
38976
38976
38976
38977
38977
38977
38978
38978
38978
38979
38979
38980
38980
38980
38981
38981
38981
38982
38982
38982
38983
38983
38983
38984
38984
38984
38985
38985
38985
38986
38986
38986
38987
38987
38987
38988
38988
38988
38989
38989
38989
38990
38990
38990
38991
38991
38991
38992
38992
38992
38993
38993
38993
38994
38994
38994
38995
38995
38995
38996
38996
38996
38997
38997
38997
38998
38998
38998
38999
38999
38999
39000
39000
39000
39001
39001
39001
39002
39002
39002
39003
39003
39003
39004
39004
39004
39005
39005
39005
39006
39006
39006
39007
39007
39007
39008
39008
39008
39009
39009
39009
39010
39010
39010
39011
39011
39011
39012
39012
39012
39013
39013
39013
39014
39014
39014
39015
39015
39016
39016
39016
39017
39017
39017
39018
39018
39018
39019
39019
39019
39020
39020
39020
39021
39021
39021
39022
39022
39022
39023
39023
39023
39024
39024
39024
39025
39025
39025
39026
39026
39026
39027
39027
39027
39028
39028
39028
39029
39029
39029
39030
39030
39030
39031
39031
39031
39032
39032
39032
39033
39033
39033
39034
39034
39034
39035
39035
39035
39036
39036
39036
39037
39037
39037
39038
39038
39038
39039
39039
39039
39040
39040
39040
39041
39041
39041
39042
39042
39042
39043
39043
39043
39044
39044
39044
39045
39045
39045
39046
39046
39046
39047
39047
39047
39048
39048
39048
39049
39049
39049
39050
39050
39050
39051
39051
39052
39052
39052
39053
39053
39053
39054
39054
39054
39055
39055
39055
39056
39056
39056
39057
39057
39057
39058
39058
39058
39059
39059
39059
39060
39060
39060
39061
39061
39061
39062
39062
39062
39063
39063
39063
39064
39064
39064
39065
39065
39065
39066
39066
39066
39067
39067
39067
39068
39068
39068
39069
39069
39069
39070
39070
39070
39071
39071
39071
39072
39072
39072
39073
39073
39073
39074
39074
39074
39075
39075
39075
39076
39076
39076
39077
39077
39077
39078
39078
39078
39079
39079
39079
39080
39080
39080
39081
39081
39081
39082
39082
39082
39083
39083
39083
39084
39084
39084
39085
39085
39085
39086
39086
39086
39087
39087
39088
39088
39088
39089
39089
39089
39090
39090
39090
39091
39091
39091
39092
39092
39092
39093
39093
39093
39094
39094
39094
39095
39095
39095
39096
39096
39096
39097
39097
39097
39098
39098
39098
39099
39099
39099
39100
39100
39100
39101
39101
39101
39102
39102
39102
39103
39103
39103
39104
39104
39104
39105
39105
39105
39106
39106
39106
39107
39107
39107
39108
39108
39108
39109
39109
39109
39110
39110
39110
39111
39111
39111
39112
39112
39112
39113
39113
39113
39114
39114
39114
39115
39115
39115
39116
39116
39116
39117
39117
39117
39118
39118
39118
39119
39119
39119
39120
39120
39120
39121
39121
39121
39122
39122
39122
39123
39123
39124
39124
39125
39125
39126
39126
39127
39127
39128
39128
39129
39129
39130
39130
39131
39131
39132
39132
39133
39133
39134
39134
39135
39135
39136
39136
39137
39137
39138
39138
39139
39139
39140
39140
39141
39141
39142
39142
39143
39143
39144
39144
39145
39145
39146
39146
39147
39147
39148
39148
39149
39149
39150
39150
39151
39151
39152
39152
39153
39153
39154
39154
39155
39155
39156
39156
39157
39157
39158
39158
39159
39160
39160
39160
39161
39161
39161
39162
39162
39162
39163
39163
39163
39164
39164
39164
39165
39165
39165
39166
39166
39166
39167
39167
39167
39168
39168
39168
39169
39169
39169
39170
39170
39170
39171
39171
39171
39172
39172
39172
39173
39173
39173
39174
39174
39174
39175
39175
39175
39176
39176
39176
39177
39177
39177
39178
39178
39178
39179
39179
39179
39180
39180
39180
39181
39181
39181
39182
39182
39182
39183
39183
39183
39184
39184
39184
39185
39185
39185
39186
39186
39186
39187
39187
39187
39188
39188
39188
39189
39189
39189
39190
39190
39190
39191
39191
39191
39192
39192
39192
39193
39193
39193
39194
39194
39194
39195
39195
39196
39196
39196
39197
39197
39197
39198
39198
39198
39199
39199
39199
39200
39200
39200
39201
39201
39201
39202
39202
39202
39203
39203
39203
39204
39204
39204
39205
39205
39205
39206
39206
39206
39207
39207
39207
39208
39208
39208
39209
39209
39209
39210
39210
39210
39211
39211
39211
39212
39212
39212
39213
39213
39213
39214
39214
39214
39215
39215
39215
39216
39216
39216
39217
39217
39217
39218
39218
39218
39219
39219
39219
39220
39220
39220
39221
39221
39221
39222
39222
39222
39223
39223
39223
39224
39224
39224
39225
39225
39225
39226
39226
39226
39227
39227
39227
39228
39228
39228
39229
39229
39229
39230
39230
39230
39231
39231
39232
39232
39232
39233
39233
39233
39234
39234
39234
39235
39235
39235
39236
39236
39236
39237
39237
39237
39238
39238
39238
39239
39239
39239
39240
39240
39240
39241
39241
39241
39242
39242
39242
39243
39243
39243
39244
39244
39244
39245
39245
39245
39246
39246
39246
39247
39247
39247
39248
39248
39248
39249
39249
39249
39250
39250
39250
39251
39251
39251
39252
39252
39252
39253
39253
39253
39254
39254
39254
39255
39255
39255
39256
39256
39256
39257
39257
39257
39258
39258
39258
39259
39259
39259
39260
39260
39260
39261
39261
39261
39262
39262
39262
39263
39263
39263
39264
39264
39264
39265
39265
39265
39266
39266
39266
39267
39267
39268
39268
39268
39269
39269
39269
39270
39270
39270
39271
39271
39271
39272
39272
39272
39273
39273
39273
39274
39274
39274
39275
39275
39275
39276
39276
39276
39277
39277
39277
39278
39278
39278
39279
39279
39279
39280
39280
39280
39281
39281
39281
39282
39282
39282
39283
39283
39283
39284
39284
39284
39285
39285
39285
39286
39286
39286
39287
39287
39287
39288
39288
39288
39289
39289
39289
39290
39290
39290
39291
39291
39291
39292
39292
39292
39293
39293
39293
39294
39294
39294
39295
39295
39295
39296
39296
39296
39297
39297
39297
39298
39298
39298
39299
39299
39299
39300
39300
39300
39301
39301
39301
39302
39302
39302
39303
39303
39304
39304
39304
39305
39305
39305
39306
39306
39306
39307
39307
39307
39308
39308
39308
39309
39309
39309
39310
39310
39310
39311
39311
39311
39312
39312
39312
39313
39313
39313
39314
39314
39314
39315
39315
39315
39316
39316
39316
39317
39317
39317
39318
39318
39318
39319
39319
39319
39320
39320
39320
39321
39321
39321
39322
39322
39322
39323
39323
39323
39324
39324
39324
39325
39325
39325
39326
39326
39326
39327
39327
39327
39328
39328
39328
39329
39329
39329
39330
39330
39330
39331
39331
39331
39332
39332
39332
39333
39333
39333
39334
39334
39334
39335
39335
39335
39336
39336
39336
39337
39337
39337
39338
39338
39338
39339
39339
39340
39340
39340
39341
39341
39341
39342
39342
39342
39343
39343
39343
39344
39344
39344
39345
39345
39345
39346
39346
39346
39347
39347
39347
39348
39348
39348
39349
39349
39349
39350
39350
39350
39351
39351
39351
39352
39352
39352
39353
39353
39353
39354
39354
39354
39355
39355
39355
39356
39356
39356
39357
39357
39357
39358
39358
39358
39359
39359
39359
39360
39360
39360
39361
39361
39361
39362
39362
39362
39363
39363
39363
39364
39364
39364
39365
39365
39365
39366
39366
39366
39367
39367
39367
39368
39368
39368
39369
39369
39369
39370
39370
39370
39371
39371
39371
39372
39372
39372
39373
39373
39373
39374
39374
39374
39375
39375
39376
39376
39376
39377
39377
39377
39378
39378
39378
39379
39379
39379
39380
39380
39380
39381
39381
39381
39382
39382
39382
39383
39383
39383
39384
39384
39384
39385
39385
39385
39386
39386
39386
39387
39387
39387
39388
39388
39388
39389
39389
39389
39390
39390
39390
39391
39391
39391
39392
39392
39392
39393
39393
39393
39394
39394
39394
39395
39395
39395
39396
39396
39396
39397
39397
39397
39398
39398
39398
39399
39399
39399
39400
39400
39400
39401
39401
39401
39402
39402
39402
39403
39403
39403
39404
39404
39404
39405
39405
39405
39406
39406
39406
39407
39407
39407
39408
39408
39408
39409
39409
39409
39410
39410
39410
39411
39411
39412
39412
39412
39413
39413
39413
39414
39414
39414
39415
39415
39415
39416
39416
39416
39417
39417
39417
39418
39418
39418
39419
39419
39419
39420
39420
39420
39421
39421
39421
39422
39422
39422
39423
39423
39423
39424
39424
39424
39425
39425
39425
39426
39426
39426
39427
39427
39427
39428
39428
39428
39429
39429
39429
39430
39430
39430
39431
39431
39431
39432
39432
39432
39433
39433
39433
39434
39434
39434
39435
39435
39435
39436
39436
39436
39437
39437
39437
39438
39438
39438
39439
39439
39439
39440
39440
39440
39441
39441
39441
39442
39442
39442
39443
39443
39443
39444
39444
39444
39445
39445
39445
39446
39446
39446
39447
39447
39448
39448
39448
39449
39449
39449
39450
39450
39450
39451
39451
39451
39452
39452
39452
39453
39453
39453
39454
39454
39454
39455
39455
39455
39456
39456
39456
39457
39457
39457
39458
39458
39458
39459
39459
39459
39460
39460
39460
39461
39461
39461
39462
39462
39462
39463
39463
39463
39464
39464
39464
39465
39465
39465
39466
39466
39466
39467
39467
39467
39468
39468
39468
39469
39469
39469
39470
39470
39470
39471
39471
39471
39472
39472
39472
39473
39473
39473
39474
39474
39474
39475
39475
39475
39476
39476
39476
39477
39477
39477
39478
39478
39478
39479
39479
39479
39480
39480
39480
39481
39481
39481
39482
39482
39482
39483
39483
39484
39484
39485
39485
39486
39486
39487
39487
39488
39488
39489
39489
39490
39490
39491
39491
39492
39492
39493
39493
39494
39494
39495
39495
39496
39496
39497
39497
39498
39498
39499
39499
39500
39500
39501
39501
39502
39502
39503
39503
39504
39504
39505
39505
39506
39506
39507
39507
39508
39508
39509
39509
39510
39510
39511
39511
39512
39512
39513
39513
39514
39514
39515
39515
39516
39516
39517
39517
39518
39518
39519
39520
39520
39520
39521
39521
39521
39522
39522
39522
39523
39523
39523
39524
39524
39524
39525
39525
39525
39526
39526
39526
39527
39527
39527
39528
39528
39528
39529
39529
39529
39530
39530
39530
39531
39531
39531
39532
39532
39532
39533
39533
39533
39534
39534
39534
39535
39535
39535
39536
39536
39536
39537
39537
39537
39538
39538
39538
39539
39539
39539
39540
39540
39540
39541
39541
39541
39542
39542
39542
39543
39543
39543
39544
39544
39544
39545
39545
39545
39546
39546
39546
39547
39547
39547
39548
39548
39548
39549
39549
39549
39550
39550
39550
39551
39551
39551
39552
39552
39552
39553
39553
39553
39554
39554
39554
39555
39555
39556
39556
39556
39557
39557
39557
39558
39558
39558
39559
39559
39559
39560
39560
39560
39561
39561
39561
39562
39562
39562
39563
39563
39563
39564
39564
39564
39565
39565
39565
39566
39566
39566
39567
39567
39567
39568
39568
39568
39569
39569
39569
39570
39570
39570
39571
39571
39571
39572
39572
39572
39573
39573
39573
39574
39574
39574
39575
39575
39575
39576
39576
39576
39577
39577
39577
39578
39578
39578
39579
39579
39579
39580
39580
39580
39581
39581
39581
39582
39582
39582
39583
39583
39583
39584
39584
39584
39585
39585
39585
39586
39586
39586
39587
39587
39587
39588
39588
39588
39589
39589
39589
39590
39590
39590
39591
39591
39592
39592
39592
39593
39593
39593
39594
39594
39594
39595
39595
39595
39596
39596
39596
39597
39597
39597
39598
39598
39598
39599
39599
39599
39600
39600
39600
39601
39601
39601
39602
39602
39602
39603
39603
39603
39604
39604
39604
39605
39605
39605
39606
39606
39606
39607
39607
39607
39608
39608
39608
39609
39609
39609
39610
39610
39610
39611
39611
39611
39612
39612
39612
39613
39613
39613
39614
39614
39614
39615
39615
39615
39616
39616
39616
39617
39617
39617
39618
39618
39618
39619
39619
39619
39620
39620
39620
39621
39621
39621
39622
39622
39622
39623
39623
39623
39624
39624
39624
39625
39625
39625
39626
39626
39626
39627
39627
39628
39628
39628
39629
39629
39629
39630
39630
39630
39631
39631
39631
39632
39632
39632
39633
39633
39633
39634
39634
39634
39635
39635
39635
39636
39636
39636
39637
39637
39637
39638
39638
39638
39639
39639
39639
39640
39640
39640
39641
39641
39641
39642
39642
39642
39643
39643
39643
39644
39644
39644
39645
39645
39645
39646
39646
39646
39647
39647
39647
39648
39648
39648
39649
39649
39649
39650
39650
39650
39651
39651
39651
39652
39652
39652
39653
39653
39653
39654
39654
39654
39655
39655
39655
39656
39656
39656
39657
39657
39657
39658
39658
39658
39659
39659
39659
39660
39660
39660
39661
39661
39661
39662
39662
39662
39663
39663
39664
39664
39664
39665
39665
39665
39666
39666
39666
39667
39667
39667
39668
39668
39668
39669
39669
39669
39670
39670
39670
39671
39671
39671
39672
39672
39672
39673
39673
39673
39674
39674
39674
39675
39675
39675
39676
39676
39676
39677
39677
39677
39678
39678
39678
39679
39679
39679
39680
39680
39680
39681
39681
39681
39682
39682
39682
39683
39683
39683
39684
39684
39684
39685
39685
39685
39686
39686
39686
39687
39687
39687
39688
39688
39688
39689
39689
39689
39690
39690
39690
39691
39691
39691
39692
39692
39692
39693
39693
39693
39694
39694
39694
39695
39695
39695
39696
39696
39696
39697
39697
39697
39698
39698
39698
39699
39699
39700
39700
39700
39701
39701
39701
39702
39702
39702
39703
39703
39703
39704
39704
39704
39705
39705
39705
39706
39706
39706
39707
39707
39707
39708
39708
39708
39709
39709
39709
39710
39710
39710
39711
39711
39711
39712
39712
39712
39713
39713
39713
39714
39714
39714
39715
39715
39715
39716
39716
39716
39717
39717
39717
39718
39718
39718
39719
39719
39719
39720
39720
39720
39721
39721
39721
39722
39722
39722
39723
39723
39723
39724
39724
39724
39725
39725
39725
39726
39726
39726
39727
39727
39727
39728
39728
39728
39729
39729
39729
39730
39730
39730
39731
39731
39731
39732
39732
39732
39733
39733
39733
39734
39734
39734
39735
39735
39736
39736
39736
39737
39737
39737
39738
39738
39738
39739
39739
39739
39740
39740
39740
39741
39741
39741
39742
39742
39742
39743
39743
39743
39744
39744
39744
39745
39745
39745
39746
39746
39746
39747
39747
39747
39748
39748
39748
39749
39749
39749
39750
39750
39750
39751
39751
39751
39752
39752
39752
39753
39753
39753
39754
39754
39754
39755
39755
39755
39756
39756
39756
39757
39757
39757
39758
39758
39758
39759
39759
39759
39760
39760
39760
39761
39761
39761
39762
39762
39762
39763
39763
39763
39764
39764
39764
39765
39765
39765
39766
39766
39766
39767
39767
39767
39768
39768
39768
39769
39769
39769
39770
39770
39770
39771
39771
39772
39772
39772
39773
39773
39773
39774
39774
39774
39775
39775
39775
39776
39776
39776
39777
39777
39777
39778
39778
39778
39779
39779
39779
39780
39780
39780
39781
39781
39781
39782
39782
39782
39783
39783
39783
39784
39784
39784
39785
39785
39785
39786
39786
39786
39787
39787
39787
39788
39788
39788
39789
39789
39789
39790
39790
39790
39791
39791
39791
39792
39792
39792
39793
39793
39793
39794
39794
39794
39795
39795
39795
39796
39796
39796
39797
39797
39797
39798
39798
39798
39799
39799
39799
39800
39800
39800
39801
39801
39801
39802
39802
39802
39803
39803
39803
39804
39804
39804
39805
39805
39805
39806
39806
39806
39807
39807
39808
39808
39808
39809
39809
39809
39810
39810
39810
39811
39811
39811
39812
39812
39812
39813
39813
39813
39814
39814
39814
39815
39815
39815
39816
39816
39816
39817
39817
39817
39818
39818
39818
39819
39819
39819
39820
39820
39820
39821
39821
39821
39822
39822
39822
39823
39823
39823
39824
39824
39824
39825
39825
39825
39826
39826
39826
39827
39827
39827
39828
39828
39828
39829
39829
39829
39830
39830
39830
39831
39831
39831
39832
39832
39832
39833
39833
39833
39834
39834
39834
39835
39835
39835
39836
39836
39836
39837
39837
39837
39838
39838
39838
39839
39839
39839
39840
39840
39840
39841
39841
39841
39842
39842
39842
39843
39843
39844
39844
39845
39845
39846
39846
39847
39847
39848
39848
39849
39849
39850
39850
39851
39851
39852
39852
39853
39853
39854
39854
39855
39855
39856
39856
39857
39857
39858
39858
39859
39859
39860
39860
39861
39861
39862
39862
39863
39863
39864
39864
39865
39865
39866
39866
39867
39867
39868
39868
39869
39869
39870
39870
39871
39871
39872
39872
39873
39873
39874
39874
39875
39875
39876
39876
39877
39877
39878
39878
39879
39880
39880
39880
39881
39881
39881
39882
39882
39882
39883
39883
39883
39884
39884
39884
39885
39885
39885
39886
39886
39886
39887
39887
39887
39888
39888
39888
39889
39889
39889
39890
39890
39890
39891
39891
39891
39892
39892
39892
39893
39893
39893
39894
39894
39894
39895
39895
39895
39896
39896
39896
39897
39897
39897
39898
39898
39898
39899
39899
39899
39900
39900
39900
39901
39901
39901
39902
39902
39902
39903
39903
39903
39904
39904
39904
39905
39905
39905
39906
39906
39906
39907
39907
39907
39908
39908
39908
39909
39909
39909
39910
39910
39910
39911
39911
39911
39912
39912
39912
39913
39913
39913
39914
39914
39914
39915
39915
39916
39916
39916
39917
39917
39917
39918
39918
39918
39919
39919
39919
39920
39920
39920
39921
39921
39921
39922
39922
39922
39923
39923
39923
39924
39924
39924
39925
39925
39925
39926
39926
39926
39927
39927
39927
39928
39928
39928
39929
39929
39929
39930
39930
39930
39931
39931
39931
39932
39932
39932
39933
39933
39933
39934
39934
39934
39935
39935
39935
39936
39936
39936
39937
39937
39937
39938
39938
39938
39939
39939
39939
39940
39940
39940
39941
39941
39941
39942
39942
39942
39943
39943
39943
39944
39944
39944
39945
39945
39945
39946
39946
39946
39947
39947
39947
39948
39948
39948
39949
39949
39949
39950
39950
39950
39951
39951
39952
39952
39952
39953
39953
39953
39954
39954
39954
39955
39955
39955
39956
39956
39956
39957
39957
39957
39958
39958
39958
39959
39959
39959
39960
39960
39960
39961
39961
39961
39962
39962
39962
39963
39963
39963
39964
39964
39964
39965
39965
39965
39966
39966
39966
39967
39967
39967
39968
39968
39968
39969
39969
39969
39970
39970
39970
39971
39971
39971
39972
39972
39972
39973
39973
39973
39974
39974
39974
39975
39975
39975
39976
39976
39976
39977
39977
39977
39978
39978
39978
39979
39979
39979
39980
39980
39980
39981
39981
39981
39982
39982
39982
39983
39983
39983
39984
39984
39984
39985
39985
39985
39986
39986
39986
39987
39987
39988
39988
39988
39989
39989
39989
39990
39990
39990
39991
39991
39991
39992
39992
39992
39993
39993
39993
39994
39994
39994
39995
39995
39995
39996
39996
39996
39997
39997
39997
39998
39998
39998
39999
39999
39999
40000
40000
40000
40001
40001
40001
40002
40002
40002
40003
40003
40003
40004
40004
40004
40005
40005
40005
40006
40006
40006
40007
40007
40007
40008
40008
40008
40009
40009
40009
40010
40010
40010
40011
40011
40011
40012
40012
40012
40013
40013
40013
40014
40014
40014
40015
40015
40015
40016
40016
40016
40017
40017
40017
40018
40018
40018
40019
40019
40019
40020
40020
40020
40021
40021
40021
40022
40022
40022
40023
40023
40024
40024
40024
40025
40025
40025
40026
40026
40026
40027
40027
40027
40028
40028
40028
40029
40029
40029
40030
40030
40030
40031
40031
40031
40032
40032
40032
40033
40033
40033
40034
40034
40034
40035
40035
40035
40036
40036
40036
40037
40037
40037
40038
40038
40038
40039
40039
40039
40040
40040
40040
40041
40041
40041
40042
40042
40042
40043
40043
40043
40044
40044
40044
40045
40045
40045
40046
40046
40046
40047
40047
40047
40048
40048
40048
40049
40049
40049
40050
40050
40050
40051
40051
40051
40052
40052
40052
40053
40053
40053
40054
40054
40054
40055
40055
40055
40056
40056
40056
40057
40057
40057
40058
40058
40058
40059
40059
40060
40060
40060
40061
40061
40061
40062
40062
40062
40063
40063
40063
40064
40064
40064
40065
40065
40065
40066
40066
40066
40067
40067
40067
40068
40068
40068
40069
40069
40069
40070
40070
40070
40071
40071
40071
40072
40072
40072
40073
40073
40073
40074
40074
40074
40075
40075
40075
40076
40076
40076
40077
40077
40077
40078
40078
40078
40079
40079
40079
40080
40080
40080
40081
40081
40081
40082
40082
40082
40083
40083
40083
40084
40084
40084
40085
40085
40085
40086
40086
40086
40087
40087
40087
40088
40088
40088
40089
40089
40089
40090
40090
40090
40091
40091
40091
40092
40092
40092
40093
40093
40093
40094
40094
40094
40095
40095
40096
40096
40096
40097
40097
40097
40098
40098
40098
40099
40099
40099
40100
40100
40100
40101
40101
40101
40102
40102
40102
40103
40103
40103
40104
40104
40104
40105
40105
40105
40106
40106
40106
40107
40107
40107
40108
40108
40108
40109
40109
40109
40110
40110
40110
40111
40111
40111
40112
40112
40112
40113
40113
40113
40114
40114
40114
40115
40115
40115
40116
40116
40116
40117
40117
40117
40118
40118
40118
40119
40119
40119
40120
40120
40120
40121
40121
40121
40122
40122
40122
40123
40123
40123
40124
40124
40124
40125
40125
40125
40126
40126
40126
40127
40127
40127
40128
40128
40128
40129
40129
40129
40130
40130
40130
40131
40131
40132
40132
40132
40133
40133
40133
40134
40134
40134
40135
40135
40135
40136
40136
40136
40137
40137
40137
40138
40138
40138
40139
40139
40139
40140
40140
40140
40141
40141
40141
40142
40142
40142
40143
40143
40143
40144
40144
40144
40145
40145
40145
40146
40146
40146
40147
40147
40147
40148
40148
40148
40149
40149
40149
40150
40150
40150
40151
40151
40151
40152
40152
40152
40153
40153
40153
40154
40154
40154
40155
40155
40155
40156
40156
40156
40157
40157
40157
40158
40158
40158
40159
40159
40159
40160
40160
40160
40161
40161
40161
40162
40162
40162
40163
40163
40163
40164
40164
40164
40165
40165
40165
40166
40166
40166
40167
40167
40168
40168
40168
40169
40169
40169
40170
40170
40170
40171
40171
40171
40172
40172
40172
40173
40173
40173
40174
40174
40174
40175
40175
40175
40176
40176
40176
40177
40177
40177
40178
40178
40178
40179
40179
40179
40180
40180
40180
40181
40181
40181
40182
40182
40182
40183
40183
40183
40184
40184
40184
40185
40185
40185
40186
40186
40186
40187
40187
40187
40188
40188
40188
40189
40189
40189
40190
40190
40190
40191
40191
40191
40192
40192
40192
40193
40193
40193
40194
40194
40194
40195
40195
40195
40196
40196
40196
40197
40197
40197
40198
40198
40198
40199
40199
40199
40200
40200
40200
40201
40201
40201
40202
40202
40202
40203
40203
40204
40204
40205
40205
40206
40206
40207
40207
40208
40208
40209
40209
40210
40210
40211
40211
40212
40212
40213
40213
40214
40214
40215
40215
40216
40216
40217
40217
40218
40218
40219
40219
40220
40220
40221
40221
40222
40222
40223
40223
40224
40224
40225
40225
40226
40226
40227
40227
40228
40228
40229
40229
40230
40230
40231
40231
40232
40232
40233
40233
40234
40234
40235
40235
40236
40236
40237
40237
40238
40238
40239
40240
40240
40240
40241
40241
40241
40242
40242
40242
40243
40243
40243
40244
40244
40244
40245
40245
40245
40246
40246
40246
40247
40247
40247
40248
40248
40248
40249
40249
40249
40250
40250
40250
40251
40251
40251
40252
40252
40252
40253
40253
40253
40254
40254
40254
40255
40255
40255
40256
40256
40256
40257
40257
40257
40258
40258
40258
40259
40259
40259
40260
40260
40260
40261
40261
40261
40262
40262
40262
40263
40263
40263
40264
40264
40264
40265
40265
40265
40266
40266
40266
40267
40267
40267
40268
40268
40268
40269
40269
40269
40270
40270
40270
40271
40271
40271
40272
40272
40272
40273
40273
40273
40274
40274
40274
40275
40275
40276
40276
40276
40277
40277
40277
40278
40278
40278
40279
40279
40279
40280
40280
40280
40281
40281
40281
40282
40282
40282
40283
40283
40283
40284
40284
40284
40285
40285
40285
40286
40286
40286
40287
40287
40287
40288
40288
40288
40289
40289
40289
40290
40290
40290
40291
40291
40291
40292
40292
40292
40293
40293
40293
40294
40294
40294
40295
40295
40295
40296
40296
40296
40297
40297
40297
40298
40298
40298
40299
40299
40299
40300
40300
40300
40301
40301
40301
40302
40302
40302
40303
40303
40303
40304
40304
40304
40305
40305
40305
40306
40306
40306
40307
40307
40307
40308
40308
40308
40309
40309
40309
40310
40310
40310
40311
40311
40312
40312
40312
40313
40313
40313
40314
40314
40314
40315
40315
40315
40316
40316
40316
40317
40317
40317
40318
40318
40318
40319
40319
40319
40320
40320
40320
40321
40321
40321
40322
40322
40322
40323
40323
40323
40324
40324
40324
40325
40325
40325
40326
40326
40326
40327
40327
40327
40328
40328
40328
40329
40329
40329
40330
40330
40330
40331
40331
40331
40332
40332
40332
40333
40333
40333
40334
40334
40334
40335
40335
40335
40336
40336
40336
40337
40337
40337
40338
40338
40338
40339
40339
40339
40340
40340
40340
40341
40341
40341
40342
40342
40342
40343
40343
40343
40344
40344
40344
40345
40345
40345
40346
40346
40346
40347
40347
40348
40348
40348
40349
40349
40349
40350
40350
40350
40351
40351
40351
40352
40352
40352
40353
40353
40353
40354
40354
40354
40355
40355
40355
40356
40356
40356
40357
40357
40357
40358
40358
40358
40359
40359
40359
40360
40360
40360
40361
40361
40361
40362
40362
40362
40363
40363
40363
40364
40364
40364
40365
40365
40365
40366
40366
40366
40367
40367
40367
40368
40368
40368
40369
40369
40369
40370
40370
40370
40371
40371
40371
40372
40372
40372
40373
40373
40373
40374
40374
40374
40375
40375
40375
40376
40376
40376
40377
40377
40377
40378
40378
40378
40379
40379
40379
40380
40380
40380
40381
40381
40381
40382
40382
40382
40383
40383
40384
40384
40384
40385
40385
40385
40386
40386
40386
40387
40387
40387
40388
40388
40388
40389
40389
40389
40390
40390
40390
40391
40391
40391
40392
40392
40392
40393
40393
40393
40394
40394
40394
40395
40395
40395
40396
40396
40396
40397
40397
40397
40398
40398
40398
40399
40399
40399
40400
40400
40400
40401
40401
40401
40402
40402
40402
40403
40403
40403
40404
40404
40404
40405
40405
40405
40406
40406
40406
40407
40407
40407
40408
40408
40408
40409
40409
40409
40410
40410
40410
40411
40411
40411
40412
40412
40412
40413
40413
40413
40414
40414
40414
40415
40415
40415
40416
40416
40416
40417
40417
40417
40418
40418
40418
40419
40419
40420
40420
40420
40421
40421
40421
40422
40422
40422
40423
40423
40423
40424
40424
40424
40425
40425
40425
40426
40426
40426
40427
40427
40427
40428
40428
40428
40429
40429
40429
40430
40430
40430
40431
40431
40431
40432
40432
40432
40433
40433
40433
40434
40434
40434
40435
40435
40435
40436
40436
40436
40437
40437
40437
40438
40438
40438
40439
40439
40439
40440
40440
40440
40441
40441
40441
40442
40442
40442
40443
40443
40443
40444
40444
40444
40445
40445
40445
40446
40446
40446
40447
40447
40447
40448
40448
40448
40449
40449
40449
40450
40450
40450
40451
40451
40451
40452
40452
40452
40453
40453
40453
40454
40454
40454
40455
40455
40456
40456
40456
40457
40457
40457
40458
40458
40458
40459
40459
40459
40460
40460
40460
40461
40461
40461
40462
40462
40462
40463
40463
40463
40464
40464
40464
40465
40465
40465
40466
40466
40466
40467
40467
40467
40468
40468
40468
40469
40469
40469
40470
40470
40470
40471
40471
40471
40472
40472
40472
40473
40473
40473
40474
40474
40474
40475
40475
40475
40476
40476
40476
40477
40477
40477
40478
40478
40478
40479
40479
40479
40480
40480
40480
40481
40481
40481
40482
40482
40482
40483
40483
40483
40484
40484
40484
40485
40485
40485
40486
40486
40486
40487
40487
40487
40488
40488
40488
40489
40489
40489
40490
40490
40490
40491
40491
40492
40492
40492
40493
40493
40493
40494
40494
40494
40495
40495
40495
40496
40496
40496
40497
40497
40497
40498
40498
40498
40499
40499
40499
40500
40500
40500
40501
40501
40501
40502
40502
40502
40503
40503
40503
40504
40504
40504
40505
40505
40505
40506
40506
40506
40507
40507
40507
40508
40508
40508
40509
40509
40509
40510
40510
40510
40511
40511
40511
40512
40512
40512
40513
40513
40513
40514
40514
40514
40515
40515
40515
40516
40516
40516
40517
40517
40517
40518
40518
40518
40519
40519
40519
40520
40520
40520
40521
40521
40521
40522
40522
40522
40523
40523
40523
40524
40524
40524
40525
40525
40525
40526
40526
40526
40527
40527
40528
40528
40528
40529
40529
40529
40530
40530
40530
40531
40531
40531
40532
40532
40532
40533
40533
40533
40534
40534
40534
40535
40535
40535
40536
40536
40536
40537
40537
40537
40538
40538
40538
40539
40539
40539
40540
40540
40540
40541
40541
40541
40542
40542
40542
40543
40543
40543
40544
40544
40544
40545
40545
40545
40546
40546
40546
40547
40547
40547
40548
40548
40548
40549
40549
40549
40550
40550
40550
40551
40551
40551
40552
40552
40552
40553
40553
40553
40554
40554
40554
40555
40555
40555
40556
40556
40556
40557
40557
40557
40558
40558
40558
40559
40559
40559
40560
40560
40560
40561
40561
40561
40562
40562
40562
40563
40563
40564
40564
40565
40565
40566
40566
40567
40567
40568
40568
40569
40569
40570
40570
40571
40571
40572
40572
40573
40573
40574
40574
40575
40575
40576
40576
40577
40577
40578
40578
40579
40579
40580
40580
40581
40581
40582
40582
40583
40583
40584
40584
40585
40585
40586
40586
40587
40587
40588
40588
40589
40589
40590
40590
40591
40591
40592
40592
40593
40593
40594
40594
40595
40595
40596
40596
40597
40597
40598
40598
40599
40600
40600
40600
40601
40601
40601
40602
40602
40602
40603
40603
40603
40604
40604
40604
40605
40605
40605
40606
40606
40606
40607
40607
40607
40608
40608
40608
40609
40609
40609
40610
40610
40610
40611
40611
40611
40612
40612
40612
40613
40613
40613
40614
40614
40614
40615
40615
40615
40616
40616
40616
40617
40617
40617
40618
40618
40618
40619
40619
40619
40620
40620
40620
40621
40621
40621
40622
40622
40622
40623
40623
40623
40624
40624
40624
40625
40625
40625
40626
40626
40626
40627
40627
40627
40628
40628
40628
40629
40629
40629
40630
40630
40630
40631
40631
40631
40632
40632
40632
40633
40633
40633
40634
40634
40634
40635
40635
40636
40636
40636
40637
40637
40637
40638
40638
40638
40639
40639
40639
40640
40640
40640
40641
40641
40641
40642
40642
40642
40643
40643
40643
40644
40644
40644
40645
40645
40645
40646
40646
40646
40647
40647
40647
40648
40648
40648
40649
40649
40649
40650
40650
40650
40651
40651
40651
40652
40652
40652
40653
40653
40653
40654
40654
40654
40655
40655
40655
40656
40656
40656
40657
40657
40657
40658
40658
40658
40659
40659
40659
40660
40660
40660
40661
40661
40661
40662
40662
40662
40663
40663
40663
40664
40664
40664
40665
40665
40665
40666
40666
40666
40667
40667
40667
40668
40668
40668
40669
40669
40669
40670
40670
40670
40671
40671
40672
40672
40672
40673
40673
40673
40674
40674
40674
40675
40675
40675
40676
40676
40676
40677
40677
40677
40678
40678
40678
40679
40679
40679
40680
40680
40680
40681
40681
40681
40682
40682
40682
40683
40683
40683
40684
40684
40684
40685
40685
40685
40686
40686
40686
40687
40687
40687
40688
40688
40688
40689
40689
40689
40690
40690
40690
40691
40691
40691
40692
40692
40692
40693
40693
40693
40694
40694
40694
40695
40695
40695
40696
40696
40696
40697
40697
40697
40698
40698
40698
40699
40699
40699
40700
40700
40700
40701
40701
40701
40702
40702
40702
40703
40703
40703
40704
40704
40704
40705
40705
40705
40706
40706
40706
40707
40707
40708
40708
40708
40709
40709
40709
40710
40710
40710
40711
40711
40711
40712
40712
40712
40713
40713
40713
40714
40714
40714
40715
40715
40715
40716
40716
40716
40717
40717
40717
40718
40718
40718
40719
40719
40719
40720
40720
40720
40721
40721
40721
40722
40722
40722
40723
40723
40723
40724
40724
40724
40725
40725
40725
40726
40726
40726
40727
40727
40727
40728
40728
40728
40729
40729
40729
40730
40730
40730
40731
40731
40731
40732
40732
40732
40733
40733
40733
40734
40734
40734
40735
40735
40735
40736
40736
40736
40737
40737
40737
40738
40738
40738
40739
40739
40739
40740
40740
40740
40741
40741
40741
40742
40742
40742
40743
40743
40744
40744
40744
40745
40745
40745
40746
40746
40746
40747
40747
40747
40748
40748
40748
40749
40749
40749
40750
40750
40750
40751
40751
40751
40752
40752
40752
40753
40753
40753
40754
40754
40754
40755
40755
40755
40756
40756
40756
40757
40757
40757
40758
40758
40758
40759
40759
40759
40760
40760
40760
40761
40761
40761
40762
40762
40762
40763
40763
40763
40764
40764
40764
40765
40765
40765
40766
40766
40766
40767
40767
40767
40768
40768
40768
40769
40769
40769
40770
40770
40770
40771
40771
40771
40772
40772
40772
40773
40773
40773
40774
40774
40774
40775
40775
40775
40776
40776
40776
40777
40777
40777
40778
40778
40778
40779
40779
40780
40780
40780
40781
40781
40781
40782
40782
40782
40783
40783
40783
40784
40784
40784
40785
40785
40785
40786
40786
40786
40787
40787
40787
40788
40788
40788
40789
40789
40789
40790
40790
40790
40791
40791
40791
40792
40792
40792
40793
40793
40793
40794
40794
40794
40795
40795
40795
40796
40796
40796
40797
40797
40797
40798
40798
40798
40799
40799
40799
40800
40800
40800
40801
40801
40801
40802
40802
40802
40803
40803
40803
40804
40804
40804
40805
40805
40805
40806
40806
40806
40807
40807
40807
40808
40808
40808
40809
40809
40809
40810
40810
40810
40811
40811
40811
40812
40812
40812
40813
40813
40813
40814
40814
40814
40815
40815
40816
40816
40816
40817
40817
40817
40818
40818
40818
40819
40819
40819
40820
40820
40820
40821
40821
40821
40822
40822
40822
40823
40823
40823
40824
40824
40824
40825
40825
40825
40826
40826
40826
40827
40827
40827
40828
40828
40828
40829
40829
40829
40830
40830
40830
40831
40831
40831
40832
40832
40832
40833
40833
40833
40834
40834
40834
40835
40835
40835
40836
40836
40836
40837
40837
40837
40838
40838
40838
40839
40839
40839
40840
40840
40840
40841
40841
40841
40842
40842
40842
40843
40843
40843
40844
40844
40844
40845
40845
40845
40846
40846
40846
40847
40847
40847
40848
40848
40848
40849
40849
40849
40850
40850
40850
40851
40851
40852
40852
40852
40853
40853
40853
40854
40854
40854
40855
40855
40855
40856
40856
40856
40857
40857
40857
40858
40858
40858
40859
40859
40859
40860
40860
40860
40861
40861
40861
40862
40862
40862
40863
40863
40863
40864
40864
40864
40865
40865
40865
40866
40866
40866
40867
40867
40867
40868
40868
40868
40869
40869
40869
40870
40870
40870
40871
40871
40871
40872
40872
40872
40873
40873
40873
40874
40874
40874
40875
40875
40875
40876
40876
40876
40877
40877
40877
40878
40878
40878
40879
40879
40879
40880
40880
40880
40881
40881
40881
40882
40882
40882
40883
40883
40883
40884
40884
40884
40885
40885
40885
40886
40886
40886
40887
40887
40888
40888
40888
40889
40889
40889
40890
40890
40890
40891
40891
40891
40892
40892
40892
40893
40893
40893
40894
40894
40894
40895
40895
40895
40896
40896
40896
40897
40897
40897
40898
40898
40898
40899
40899
40899
40900
40900
40900
40901
40901
40901
40902
40902
40902
40903
40903
40903
40904
40904
40904
40905
40905
40905
40906
40906
40906
40907
40907
40907
40908
40908
40908
40909
40909
40909
40910
40910
40910
40911
40911
40911
40912
40912
40912
40913
40913
40913
40914
40914
40914
40915
40915
40915
40916
40916
40916
40917
40917
40917
40918
40918
40918
40919
40919
40919
40920
40920
40920
40921
40921
40921
40922
40922
40922
40923
40923
40924
40924
40925
40925
40926
40926
40927
40927
40928
40928
40929
40929
40930
40930
40931
40931
40932
40932
40933
40933
40934
40934
40935
40935
40936
40936
40937
40937
40938
40938
40939
40939
40940
40940
40941
40941
40942
40942
40943
40943
40944
40944
40945
40945
40946
40946
40947
40947
40948
40948
40949
40949
40950
40950
40951
40951
40952
40952
40953
40953
40954
40954
40955
40955
40956
40956
40957
40957
40958
40958
40959
40960
40960
40960
40961
40961
40961
40962
40962
40962
40963
40963
40963
40964
40964
40964
40965
40965
40965
40966
40966
40966
40967
40967
40967
40968
40968
40968
40969
40969
40969
40970
40970
40970
40971
40971
40971
40972
40972
40972
40973
40973
40973
40974
40974
40974
40975
40975
40975
40976
40976
40976
40977
40977
40977
40978
40978
40978
40979
40979
40979
40980
40980
40980
40981
40981
40981
40982
40982
40982
40983
40983
40983
40984
40984
40984
40985
40985
40985
40986
40986
40986
40987
40987
40987
40988
40988
40988
40989
40989
40989
40990
40990
40990
40991
40991
40991
40992
40992
40992
40993
40993
40993
40994
40994
40994
40995
40995
40996
40996
40996
40997
40997
40997
40998
40998
40998
40999
40999
40999
41000
41000
41000
41001
41001
41001
41002
41002
41002
41003
41003
41003
41004
41004
41004
41005
41005
41005
41006
41006
41006
41007
41007
41007
41008
41008
41008
41009
41009
41009
41010
41010
41010
41011
41011
41011
41012
41012
41012
41013
41013
41013
41014
41014
41014
41015
41015
41015
41016
41016
41016
41017
41017
41017
41018
41018
41018
41019
41019
41019
41020
41020
41020
41021
41021
41021
41022
41022
41022
41023
41023
41023
41024
41024
41024
41025
41025
41025
41026
41026
41026
41027
41027
41027
41028
41028
41028
41029
41029
41029
41030
41030
41030
41031
41031
41032
41032
41032
41033
41033
41033
41034
41034
41034
41035
41035
41035
41036
41036
41036
41037
41037
41037
41038
41038
41038
41039
41039
41039
41040
41040
41040
41041
41041
41041
41042
41042
41042
41043
41043
41043
41044
41044
41044
41045
41045
41045
41046
41046
41046
41047
41047
41047
41048
41048
41048
41049
41049
41049
41050
41050
41050
41051
41051
41051
41052
41052
41052
41053
41053
41053
41054
41054
41054
41055
41055
41055
41056
41056
41056
41057
41057
41057
41058
41058
41058
41059
41059
41059
41060
41060
41060
41061
41061
41061
41062
41062
41062
41063
41063
41063
41064
41064
41064
41065
41065
41065
41066
41066
41066
41067
41067
41068
41068
41068
41069
41069
41069
41070
41070
41070
41071
41071
41071
41072
41072
41072
41073
41073
41073
41074
41074
41074
41075
41075
41075
41076
41076
41076
41077
41077
41077
41078
41078
41078
41079
41079
41079
41080
41080
41080
41081
41081
41081
41082
41082
41082
41083
41083
41083
41084
41084
41084
41085
41085
41085
41086
41086
41086
41087
41087
41087
41088
41088
41088
41089
41089
41089
41090
41090
41090
41091
41091
41091
41092
41092
41092
41093
41093
41093
41094
41094
41094
41095
41095
41095
41096
41096
41096
41097
41097
41097
41098
41098
41098
41099
41099
41099
41100
41100
41100
41101
41101
41101
41102
41102
41102
41103
41103
41104
41104
41104
41105
41105
41105
41106
41106
41106
41107
41107
41107
41108
41108
41108
41109
41109
41109
41110
41110
41110
41111
41111
41111
41112
41112
41112
41113
41113
41113
41114
41114
41114
41115
41115
41115
41116
41116
41116
41117
41117
41117
41118
41118
41118
41119
41119
41119
41120
41120
41120
41121
41121
41121
41122
41122
41122
41123
41123
41123
41124
41124
41124
41125
41125
41125
41126
41126
41126
41127
41127
41127
41128
41128
41128
41129
41129
41129
41130
41130
41130
41131
41131
41131
41132
41132
41132
41133
41133
41133
41134
41134
41134
41135
41135
41135
41136
41136
41136
41137
41137
41137
41138
41138
41138
41139
41139
41140
41140
41140
41141
41141
41141
41142
41142
41142
41143
41143
41143
41144
41144
41144
41145
41145
41145
41146
41146
41146
41147
41147
41147
41148
41148
41148
41149
41149
41149
41150
41150
41150
41151
41151
41151
41152
41152
41152
41153
41153
41153
41154
41154
41154
41155
41155
41155
41156
41156
41156
41157
41157
41157
41158
41158
41158
41159
41159
41159
41160
41160
41160
41161
41161
41161
41162
41162
41162
41163
41163
41163
41164
41164
41164
41165
41165
41165
41166
41166
41166
41167
41167
41167
41168
41168
41168
41169
41169
41169
41170
41170
41170
41171
41171
41171
41172
41172
41172
41173
41173
41173
41174
41174
41174
41175
41175
41176
41176
41176
41177
41177
41177
41178
41178
41178
41179
41179
41179
41180
41180
41180
41181
41181
41181
41182
41182
41182
41183
41183
41183
41184
41184
41184
41185
41185
41185
41186
41186
41186
41187
41187
41187
41188
41188
41188
41189
41189
41189
41190
41190
41190
41191
41191
41191
41192
41192
41192
41193
41193
41193
41194
41194
41194
41195
41195
41195
41196
41196
41196
41197
41197
41197
41198
41198
41198
41199
41199
41199
41200
41200
41200
41201
41201
41201
41202
41202
41202
41203
41203
41203
41204
41204
41204
41205
41205
41205
41206
41206
41206
41207
41207
41207
41208
41208
41208
41209
41209
41209
41210
41210
41210
41211
41211
41212
41212
41212
41213
41213
41213
41214
41214
41214
41215
41215
41215
41216
41216
41216
41217
41217
41217
41218
41218
41218
41219
41219
41219
41220
41220
41220
41221
41221
41221
41222
41222
41222
41223
41223
41223
41224
41224
41224
41225
41225
41225
41226
41226
41226
41227
41227
41227
41228
41228
41228
41229
41229
41229
41230
41230
41230
41231
41231
41231
41232
41232
41232
41233
41233
41233
41234
41234
41234
41235
41235
41235
41236
41236
41236
41237
41237
41237
41238
41238
41238
41239
41239
41239
41240
41240
41240
41241
41241
41241
41242
41242
41242
41243
41243
41243
41244
41244
41244
41245
41245
41245
41246
41246
41246
41247
41247
41248
41248
41248
41249
41249
41249
41250
41250
41250
41251
41251
41251
41252
41252
41252
41253
41253
41253
41254
41254
41254
41255
41255
41255
41256
41256
41256
41257
41257
41257
41258
41258
41258
41259
41259
41259
41260
41260
41260
41261
41261
41261
41262
41262
41262
41263
41263
41263
41264
41264
41264
41265
41265
41265
41266
41266
41266
41267
41267
41267
41268
41268
41268
41269
41269
41269
41270
41270
41270
41271
41271
41271
41272
41272
41272
41273
41273
41273
41274
41274
41274
41275
41275
41275
41276
41276
41276
41277
41277
41277
41278
41278
41278
41279
41279
41279
41280
41280
41280
41281
41281
41281
41282
41282
41282
41283
41283
41284
41284
41285
41285
41286
41286
41287
41287
41288
41288
41289
41289
41290
41290
41291
41291
41292
41292
41293
41293
41294
41294
41295
41295
41296
41296
41297
41297
41298
41298
41299
41299
41300
41300
41301
41301
41302
41302
41303
41303
41304
41304
41305
41305
41306
41306
41307
41307
41308
41308
41309
41309
41310
41310
41311
41311
41312
41312
41313
41313
41314
41314
41315
41315
41316
41316
41317
41317
41318
41318
41319
41320
41320
41320
41321
41321
41321
41322
41322
41322
41323
41323
41323
41324
41324
41324
41325
41325
41325
41326
41326
41326
41327
41327
41327
41328
41328
41328
41329
41329
41329
41330
41330
41330
41331
41331
41331
41332
41332
41332
41333
41333
41333
41334
41334
41334
41335
41335
41335
41336
41336
41336
41337
41337
41337
41338
41338
41338
41339
41339
41339
41340
41340
41340
41341
41341
41341
41342
41342
41342
41343
41343
41343
41344
41344
41344
41345
41345
41345
41346
41346
41346
41347
41347
41347
41348
41348
41348
41349
41349
41349
41350
41350
41350
41351
41351
41351
41352
41352
41352
41353
41353
41353
41354
41354
41354
41355
41355
41356
41356
41356
41357
41357
41357
41358
41358
41358
41359
41359
41359
41360
41360
41360
41361
41361
41361
41362
41362
41362
41363
41363
41363
41364
41364
41364
41365
41365
41365
41366
41366
41366
41367
41367
41367
41368
41368
41368
41369
41369
41369
41370
41370
41370
41371
41371
41371
41372
41372
41372
41373
41373
41373
41374
41374
41374
41375
41375
41375
41376
41376
41376
41377
41377
41377
41378
41378
41378
41379
41379
41379
41380
41380
41380
41381
41381
41381
41382
41382
41382
41383
41383
41383
41384
41384
41384
41385
41385
41385
41386
41386
41386
41387
41387
41387
41388
41388
41388
41389
41389
41389
41390
41390
41390
41391
41391
41392
41392
41392
41393
41393
41393
41394
41394
41394
41395
41395
41395
41396
41396
41396
41397
41397
41397
41398
41398
41398
41399
41399
41399
41400
41400
41400
41401
41401
41401
41402
41402
41402
41403
41403
41403
41404
41404
41404
41405
41405
41405
41406
41406
41406
41407
41407
41407
41408
41408
41408
41409
41409
41409
41410
41410
41410
41411
41411
41411
41412
41412
41412
41413
41413
41413
41414
41414
41414
41415
41415
41415
41416
41416
41416
41417
41417
41417
41418
41418
41418
41419
41419
41419
41420
41420
41420
41421
41421
41421
41422
41422
41422
41423
41423
41423
41424
41424
41424
41425
41425
41425
41426
41426
41426
41427
41427
41428
41428
41428
41429
41429
41429
41430
41430
41430
41431
41431
41431
41432
41432
41432
41433
41433
41433
41434
41434
41434
41435
41435
41435
41436
41436
41436
41437
41437
41437
41438
41438
41438
41439
41439
41439
41440
41440
41440
41441
41441
41441
41442
41442
41442
41443
41443
41443
41444
41444
41444
41445
41445
41445
41446
41446
41446
41447
41447
41447
41448
41448
41448
41449
41449
41449
41450
41450
41450
41451
41451
41451
41452
41452
41452
41453
41453
41453
41454
41454
41454
41455
41455
41455
41456
41456
41456
41457
41457
41457
41458
41458
41458
41459
41459
41459
41460
41460
41460
41461
41461
41461
41462
41462
41462
41463
41463
41464
41464
41464
41465
41465
41465
41466
41466
41466
41467
41467
41467
41468
41468
41468
41469
41469
41469
41470
41470
41470
41471
41471
41471
41472
41472
41472
41473
41473
41473
41474
41474
41474
41475
41475
41475
41476
41476
41476
41477
41477
41477
41478
41478
41478
41479
41479
41479
41480
41480
41480
41481
41481
41481
41482
41482
41482
41483
41483
41483
41484
41484
41484
41485
41485
41485
41486
41486
41486
41487
41487
41487
41488
41488
41488
41489
41489
41489
41490
41490
41490
41491
41491
41491
41492
41492
41492
41493
41493
41493
41494
41494
41494
41495
41495
41495
41496
41496
41496
41497
41497
41497
41498
41498
41498
41499
41499
41500
41500
41500
41501
41501
41501
41502
41502
41502
41503
41503
41503
41504
41504
41504
41505
41505
41505
41506
41506
41506
41507
41507
41507
41508
41508
41508
41509
41509
41509
41510
41510
41510
41511
41511
41511
41512
41512
41512
41513
41513
41513
41514
41514
41514
41515
41515
41515
41516
41516
41516
41517
41517
41517
41518
41518
41518
41519
41519
41519
41520
41520
41520
41521
41521
41521
41522
41522
41522
41523
41523
41523
41524
41524
41524
41525
41525
41525
41526
41526
41526
41527
41527
41527
41528
41528
41528
41529
41529
41529
41530
41530
41530
41531
41531
41531
41532
41532
41532
41533
41533
41533
41534
41534
41534
41535
41535
41536
41536
41536
41537
41537
41537
41538
41538
41538
41539
41539
41539
41540
41540
41540
41541
41541
41541
41542
41542
41542
41543
41543
41543
41544
41544
41544
41545
41545
41545
41546
41546
41546
41547
41547
41547
41548
41548
41548
41549
41549
41549
41550
41550
41550
41551
41551
41551
41552
41552
41552
41553
41553
41553
41554
41554
41554
41555
41555
41555
41556
41556
41556
41557
41557
41557
41558
41558
41558
41559
41559
41559
41560
41560
41560
41561
41561
41561
41562
41562
41562
41563
41563
41563
41564
41564
41564
41565
41565
41565
41566
41566
41566
41567
41567
41567
41568
41568
41568
41569
41569
41569
41570
41570
41570
41571
41571
41572
41572
41572
41573
41573
41573
41574
41574
41574
41575
41575
41575
41576
41576
41576
41577
41577
41577
41578
41578
41578
41579
41579
41579
41580
41580
41580
41581
41581
41581
41582
41582
41582
41583
41583
41583
41584
41584
41584
41585
41585
41585
41586
41586
41586
41587
41587
41587
41588
41588
41588
41589
41589
41589
41590
41590
41590
41591
41591
41591
41592
41592
41592
41593
41593
41593
41594
41594
41594
41595
41595
41595
41596
41596
41596
41597
41597
41597
41598
41598
41598
41599
41599
41599
41600
41600
41600
41601
41601
41601
41602
41602
41602
41603
41603
41603
41604
41604
41604
41605
41605
41605
41606
41606
41606
41607
41607
41608
41608
41608
41609
41609
41609
41610
41610
41610
41611
41611
41611
41612
41612
41612
41613
41613
41613
41614
41614
41614
41615
41615
41615
41616
41616
41616
41617
41617
41617
41618
41618
41618
41619
41619
41619
41620
41620
41620
41621
41621
41621
41622
41622
41622
41623
41623
41623
41624
41624
41624
41625
41625
41625
41626
41626
41626
41627
41627
41627
41628
41628
41628
41629
41629
41629
41630
41630
41630
41631
41631
41631
41632
41632
41632
41633
41633
41633
41634
41634
41634
41635
41635
41635
41636
41636
41636
41637
41637
41637
41638
41638
41638
41639
41639
41639
41640
41640
41640
41641
41641
41641
41642
41642
41642
41643
41643
41644
41644
41645
41645
41646
41646
41647
41647
41648
41648
41649
41649
41650
41650
41651
41651
41652
41652
41653
41653
41654
41654
41655
41655
41656
41656
41657
41657
41658
41658
41659
41659
41660
41660
41661
41661
41662
41662
41663
41663
41664
41664
41665
41665
41666
41666
41667
41667
41668
41668
41669
41669
41670
41670
41671
41671
41672
41672
41673
41673
41674
41674
41675
41675
41676
41676
41677
41677
41678
41678
41679
41680
41680
41680
41681
41681
41681
41682
41682
41682
41683
41683
41683
41684
41684
41684
41685
41685
41685
41686
41686
41686
41687
41687
41687
41688
41688
41688
41689
41689
41689
41690
41690
41690
41691
41691
41691
41692
41692
41692
41693
41693
41693
41694
41694
41694
41695
41695
41695
41696
41696
41696
41697
41697
41697
41698
41698
41698
41699
41699
41699
41700
41700
41700
41701
41701
41701
41702
41702
41702
41703
41703
41703
41704
41704
41704
41705
41705
41705
41706
41706
41706
41707
41707
41707
41708
41708
41708
41709
41709
41709
41710
41710
41710
41711
41711
41711
41712
41712
41712
41713
41713
41713
41714
41714
41714
41715
41715
41716
41716
41716
41717
41717
41717
41718
41718
41718
41719
41719
41719
41720
41720
41720
41721
41721
41721
41722
41722
41722
41723
41723
41723
41724
41724
41724
41725
41725
41725
41726
41726
41726
41727
41727
41727
41728
41728
41728
41729
41729
41729
41730
41730
41730
41731
41731
41731
41732
41732
41732
41733
41733
41733
41734
41734
41734
41735
41735
41735
41736
41736
41736
41737
41737
41737
41738
41738
41738
41739
41739
41739
41740
41740
41740
41741
41741
41741
41742
41742
41742
41743
41743
41743
41744
41744
41744
41745
41745
41745
41746
41746
41746
41747
41747
41747
41748
41748
41748
41749
41749
41749
41750
41750
41750
41751
41751
41752
41752
41752
41753
41753
41753
41754
41754
41754
41755
41755
41755
41756
41756
41756
41757
41757
41757
41758
41758
41758
41759
41759
41759
41760
41760
41760
41761
41761
41761
41762
41762
41762
41763
41763
41763
41764
41764
41764
41765
41765
41765
41766
41766
41766
41767
41767
41767
41768
41768
41768
41769
41769
41769
41770
41770
41770
41771
41771
41771
41772
41772
41772
41773
41773
41773
41774
41774
41774
41775
41775
41775
41776
41776
41776
41777
41777
41777
41778
41778
41778
41779
41779
41779
41780
41780
41780
41781
41781
41781
41782
41782
41782
41783
41783
41783
41784
41784
41784
41785
41785
41785
41786
41786
41786
41787
41787
41788
41788
41788
41789
41789
41789
41790
41790
41790
41791
41791
41791
41792
41792
41792
41793
41793
41793
41794
41794
41794
41795
41795
41795
41796
41796
41796
41797
41797
41797
41798
41798
41798
41799
41799
41799
41800
41800
41800
41801
41801
41801
41802
41802
41802
41803
41803
41803
41804
41804
41804
41805
41805
41805
41806
41806
41806
41807
41807
41807
41808
41808
41808
41809
41809
41809
41810
41810
41810
41811
41811
41811
41812
41812
41812
41813
41813
41813
41814
41814
41814
41815
41815
41815
41816
41816
41816
41817
41817
41817
41818
41818
41818
41819
41819
41819
41820
41820
41820
41821
41821
41821
41822
41822
41822
41823
41823
41824
41824
41824
41825
41825
41825
41826
41826
41826
41827
41827
41827
41828
41828
41828
41829
41829
41829
41830
41830
41830
41831
41831
41831
41832
41832
41832
41833
41833
41833
41834
41834
41834
41835
41835
41835
41836
41836
41836
41837
41837
41837
41838
41838
41838
41839
41839
41839
41840
41840
41840
41841
41841
41841
41842
41842
41842
41843
41843
41843
41844
41844
41844
41845
41845
41845
41846
41846
41846
41847
41847
41847
41848
41848
41848
41849
41849
41849
41850
41850
41850
41851
41851
41851
41852
41852
41852
41853
41853
41853
41854
41854
41854
41855
41855
41855
41856
41856
41856
41857
41857
41857
41858
41858
41858
41859
41859
41860
41860
41860
41861
41861
41861
41862
41862
41862
41863
41863
41863
41864
41864
41864
41865
41865
41865
41866
41866
41866
41867
41867
41867
41868
41868
41868
41869
41869
41869
41870
41870
41870
41871
41871
41871
41872
41872
41872
41873
41873
41873
41874
41874
41874
41875
41875
41875
41876
41876
41876
41877
41877
41877
41878
41878
41878
41879
41879
41879
41880
41880
41880
41881
41881
41881
41882
41882
41882
41883
41883
41883
41884
41884
41884
41885
41885
41885
41886
41886
41886
41887
41887
41887
41888
41888
41888
41889
41889
41889
41890
41890
41890
41891
41891
41891
41892
41892
41892
41893
41893
41893
41894
41894
41894
41895
41895
41896
41896
41896
41897
41897
41897
41898
41898
41898
41899
41899
41899
41900
41900
41900
41901
41901
41901
41902
41902
41902
41903
41903
41903
41904
41904
41904
41905
41905
41905
41906
41906
41906
41907
41907
41907
41908
41908
41908
41909
41909
41909
41910
41910
41910
41911
41911
41911
41912
41912
41912
41913
41913
41913
41914
41914
41914
41915
41915
41915
41916
41916
41916
41917
41917
41917
41918
41918
41918
41919
41919
41919
41920
41920
41920
41921
41921
41921
41922
41922
41922
41923
41923
41923
41924
41924
41924
41925
41925
41925
41926
41926
41926
41927
41927
41927
41928
41928
41928
41929
41929
41929
41930
41930
41930
41931
41931
41932
41932
41932
41933
41933
41933
41934
41934
41934
41935
41935
41935
41936
41936
41936
41937
41937
41937
41938
41938
41938
41939
41939
41939
41940
41940
41940
41941
41941
41941
41942
41942
41942
41943
41943
41943
41944
41944
41944
41945
41945
41945
41946
41946
41946
41947
41947
41947
41948
41948
41948
41949
41949
41949
41950
41950
41950
41951
41951
41951
41952
41952
41952
41953
41953
41953
41954
41954
41954
41955
41955
41955
41956
41956
41956
41957
41957
41957
41958
41958
41958
41959
41959
41959
41960
41960
41960
41961
41961
41961
41962
41962
41962
41963
41963
41963
41964
41964
41964
41965
41965
41965
41966
41966
41966
41967
41967
41968
41968
41968
41969
41969
41969
41970
41970
41970
41971
41971
41971
41972
41972
41972
41973
41973
41973
41974
41974
41974
41975
41975
41975
41976
41976
41976
41977
41977
41977
41978
41978
41978
41979
41979
41979
41980
41980
41980
41981
41981
41981
41982
41982
41982
41983
41983
41983
41984
41984
41984
41985
41985
41985
41986
41986
41986
41987
41987
41987
41988
41988
41988
41989
41989
41989
41990
41990
41990
41991
41991
41991
41992
41992
41992
41993
41993
41993
41994
41994
41994
41995
41995
41995
41996
41996
41996
41997
41997
41997
41998
41998
41998
41999
41999
41999
42000
42000
42000
42001
42001
42001
42002
42002
42002
42003
42003
42004
42004
42005
42005
42006
42006
42007
42007
42008
42008
42009
42009
42010
42010
42011
42011
42012
42012
42013
42013
42014
42014
42015
42015
42016
42016
42017
42017
42018
42018
42019
42019
42020
42020
42021
42021
42022
42022
42023
42023
42024
42024
42025
42025
42026
42026
42027
42027
42028
42028
42029
42029
42030
42030
42031
42031
42032
42032
42033
42033
42034
42034
42035
42035
42036
42036
42037
42037
42038
42038
42039
42040
42040
42040
42041
42041
42041
42042
42042
42042
42043
42043
42043
42044
42044
42044
42045
42045
42045
42046
42046
42046
42047
42047
42047
42048
42048
42048
42049
42049
42049
42050
42050
42050
42051
42051
42051
42052
42052
42052
42053
42053
42053
42054
42054
42054
42055
42055
42055
42056
42056
42056
42057
42057
42057
42058
42058
42058
42059
42059
42059
42060
42060
42060
42061
42061
42061
42062
42062
42062
42063
42063
42063
42064
42064
42064
42065
42065
42065
42066
42066
42066
42067
42067
42067
42068
42068
42068
42069
42069
42069
42070
42070
42070
42071
42071
42071
42072
42072
42072
42073
42073
42073
42074
42074
42074
42075
42075
42076
42076
42076
42077
42077
42077
42078
42078
42078
42079
42079
42079
42080
42080
42080
42081
42081
42081
42082
42082
42082
42083
42083
42083
42084
42084
42084
42085
42085
42085
42086
42086
42086
42087
42087
42087
42088
42088
42088
42089
42089
42089
42090
42090
42090
42091
42091
42091
42092
42092
42092
42093
42093
42093
42094
42094
42094
42095
42095
42095
42096
42096
42096
42097
42097
42097
42098
42098
42098
42099
42099
42099
42100
42100
42100
42101
42101
42101
42102
42102
42102
42103
42103
42103
42104
42104
42104
42105
42105
42105
42106
42106
42106
42107
42107
42107
42108
42108
42108
42109
42109
42109
42110
42110
42110
42111
42111
42112
42112
42112
42113
42113
42113
42114
42114
42114
42115
42115
42115
42116
42116
42116
42117
42117
42117
42118
42118
42118
42119
42119
42119
42120
42120
42120
42121
42121
42121
42122
42122
42122
42123
42123
42123
42124
42124
42124
42125
42125
42125
42126
42126
42126
42127
42127
42127
42128
42128
42128
42129
42129
42129
42130
42130
42130
42131
42131
42131
42132
42132
42132
42133
42133
42133
42134
42134
42134
42135
42135
42135
42136
42136
42136
42137
42137
42137
42138
42138
42138
42139
42139
42139
42140
42140
42140
42141
42141
42141
42142
42142
42142
42143
42143
42143
42144
42144
42144
42145
42145
42145
42146
42146
42146
42147
42147
42148
42148
42148
42149
42149
42149
42150
42150
42150
42151
42151
42151
42152
42152
42152
42153
42153
42153
42154
42154
42154
42155
42155
42155
42156
42156
42156
42157
42157
42157
42158
42158
42158
42159
42159
42159
42160
42160
42160
42161
42161
42161
42162
42162
42162
42163
42163
42163
42164
42164
42164
42165
42165
42165
42166
42166
42166
42167
42167
42167
42168
42168
42168
42169
42169
42169
42170
42170
42170
42171
42171
42171
42172
42172
42172
42173
42173
42173
42174
42174
42174
42175
42175
42175
42176
42176
42176
42177
42177
42177
42178
42178
42178
42179
42179
42179
42180
42180
42180
42181
42181
42181
42182
42182
42182
42183
42183
42184
42184
42184
42185
42185
42185
42186
42186
42186
42187
42187
42187
42188
42188
42188
42189
42189
42189
42190
42190
42190
42191
42191
42191
42192
42192
42192
42193
42193
42193
42194
42194
42194
42195
42195
42195
42196
42196
42196
42197
42197
42197
42198
42198
42198
42199
42199
42199
42200
42200
42200
42201
42201
42201
42202
42202
42202
42203
42203
42203
42204
42204
42204
42205
42205
42205
42206
42206
42206
42207
42207
42207
42208
42208
42208
42209
42209
42209
42210
42210
42210
42211
42211
42211
42212
42212
42212
42213
42213
42213
42214
42214
42214
42215
42215
42215
42216
42216
42216
42217
42217
42217
42218
42218
42218
42219
42219
42220
42220
42220
42221
42221
42221
42222
42222
42222
42223
42223
42223
42224
42224
42224
42225
42225
42225
42226
42226
42226
42227
42227
42227
42228
42228
42228
42229
42229
42229
42230
42230
42230
42231
42231
42231
42232
42232
42232
42233
42233
42233
42234
42234
42234
42235
42235
42235
42236
42236
42236
42237
42237
42237
42238
42238
42238
42239
42239
42239
42240
42240
42240
42241
42241
42241
42242
42242
42242
42243
42243
42243
42244
42244
42244
42245
42245
42245
42246
42246
42246
42247
42247
42247
42248
42248
42248
42249
42249
42249
42250
42250
42250
42251
42251
42251
42252
42252
42252
42253
42253
42253
42254
42254
42254
42255
42255
42256
42256
42256
42257
42257
42257
42258
42258
42258
42259
42259
42259
42260
42260
42260
42261
42261
42261
42262
42262
42262
42263
42263
42263
42264
42264
42264
42265
42265
42265
42266
42266
42266
42267
42267
42267
42268
42268
42268
42269
42269
42269
42270
42270
42270
42271
42271
42271
42272
42272
42272
42273
42273
42273
42274
42274
42274
42275
42275
42275
42276
42276
42276
42277
42277
42277
42278
42278
42278
42279
42279
42279
42280
42280
42280
42281
42281
42281
42282
42282
42282
42283
42283
42283
42284
42284
42284
42285
42285
42285
42286
42286
42286
42287
42287
42287
42288
42288
42288
42289
42289
42289
42290
42290
42290
42291
42291
42292
42292
42292
42293
42293
42293
42294
42294
42294
42295
42295
42295
42296
42296
42296
42297
42297
42297
42298
42298
42298
42299
42299
42299
42300
42300
42300
42301
42301
42301
42302
42302
42302
42303
42303
42303
42304
42304
42304
42305
42305
42305
42306
42306
42306
42307
42307
42307
42308
42308
42308
42309
42309
42309
42310
42310
42310
42311
42311
42311
42312
42312
42312
42313
42313
42313
42314
42314
42314
42315
42315
42315
42316
42316
42316
42317
42317
42317
42318
42318
42318
42319
42319
42319
42320
42320
42320
42321
42321
42321
42322
42322
42322
42323
42323
42323
42324
42324
42324
42325
42325
42325
42326
42326
42326
42327
42327
42328
42328
42328
42329
42329
42329
42330
42330
42330
42331
42331
42331
42332
42332
42332
42333
42333
42333
42334
42334
42334
42335
42335
42335
42336
42336
42336
42337
42337
42337
42338
42338
42338
42339
42339
42339
42340
42340
42340
42341
42341
42341
42342
42342
42342
42343
42343
42343
42344
42344
42344
42345
42345
42345
42346
42346
42346
42347
42347
42347
42348
42348
42348
42349
42349
42349
42350
42350
42350
42351
42351
42351
42352
42352
42352
42353
42353
42353
42354
42354
42354
42355
42355
42355
42356
42356
42356
42357
42357
42357
42358
42358
42358
42359
42359
42359
42360
42360
42360
42361
42361
42361
42362
42362
42362
42363
42363
42364
42364
42365
42365
42366
42366
42367
42367
42368
42368
42369
42369
42370
42370
42371
42371
42372
42372
42373
42373
42374
42374
42375
42375
42376
42376
42377
42377
42378
42378
42379
42379
42380
42380
42381
42381
42382
42382
42383
42383
42384
42384
42385
42385
42386
42386
42387
42387
42388
42388
42389
42389
42390
42390
42391
42391
42392
42392
42393
42393
42394
42394
42395
42395
42396
42396
42397
42397
42398
42398
42399
42400
42400
42400
42401
42401
42401
42402
42402
42402
42403
42403
42403
42404
42404
42404
42405
42405
42405
42406
42406
42406
42407
42407
42407
42408
42408
42408
42409
42409
42409
42410
42410
42410
42411
42411
42411
42412
42412
42412
42413
42413
42413
42414
42414
42414
42415
42415
42415
42416
42416
42416
42417
42417
42417
42418
42418
42418
42419
42419
42419
42420
42420
42420
42421
42421
42421
42422
42422
42422
42423
42423
42423
42424
42424
42424
42425
42425
42425
42426
42426
42426
42427
42427
42427
42428
42428
42428
42429
42429
42429
42430
42430
42430
42431
42431
42431
42432
42432
42432
42433
42433
42433
42434
42434
42434
42435
42435
42436
42436
42436
42437
42437
42437
42438
42438
42438
42439
42439
42439
42440
42440
42440
42441
42441
42441
42442
42442
42442
42443
42443
42443
42444
42444
42444
42445
42445
42445
42446
42446
42446
42447
42447
42447
42448
42448
42448
42449
42449
42449
42450
42450
42450
42451
42451
42451
42452
42452
42452
42453
42453
42453
42454
42454
42454
42455
42455
42455
42456
42456
42456
42457
42457
42457
42458
42458
42458
42459
42459
42459
42460
42460
42460
42461
42461
42461
42462
42462
42462
42463
42463
42463
42464
42464
42464
42465
42465
42465
42466
42466
42466
42467
42467
42467
42468
42468
42468
42469
42469
42469
42470
42470
42470
42471
42471
42472
42472
42472
42473
42473
42473
42474
42474
42474
42475
42475
42475
42476
42476
42476
42477
42477
42477
42478
42478
42478
42479
42479
42479
42480
42480
42480
42481
42481
42481
42482
42482
42482
42483
42483
42483
42484
42484
42484
42485
42485
42485
42486
42486
42486
42487
42487
42487
42488
42488
42488
42489
42489
42489
42490
42490
42490
42491
42491
42491
42492
42492
42492
42493
42493
42493
42494
42494
42494
42495
42495
42495
42496
42496
42496
42497
42497
42497
42498
42498
42498
42499
42499
42499
42500
42500
42500
42501
42501
42501
42502
42502
42502
42503
42503
42503
42504
42504
42504
42505
42505
42505
42506
42506
42506
42507
42507
42508
42508
42508
42509
42509
42509
42510
42510
42510
42511
42511
42511
42512
42512
42512
42513
42513
42513
42514
42514
42514
42515
42515
42515
42516
42516
42516
42517
42517
42517
42518
42518
42518
42519
42519
42519
42520
42520
42520
42521
42521
42521
42522
42522
42522
42523
42523
42523
42524
42524
42524
42525
42525
42525
42526
42526
42526
42527
42527
42527
42528
42528
42528
42529
42529
42529
42530
42530
42530
42531
42531
42531
42532
42532
42532
42533
42533
42533
42534
42534
42534
42535
42535
42535
42536
42536
42536
42537
42537
42537
42538
42538
42538
42539
42539
42539
42540
42540
42540
42541
42541
42541
42542
42542
42542
42543
42543
42544
42544
42544
42545
42545
42545
42546
42546
42546
42547
42547
42547
42548
42548
42548
42549
42549
42549
42550
42550
42550
42551
42551
42551
42552
42552
42552
42553
42553
42553
42554
42554
42554
42555
42555
42555
42556
42556
42556
42557
42557
42557
42558
42558
42558
42559
42559
42559
42560
42560
42560
42561
42561
42561
42562
42562
42562
42563
42563
42563
42564
42564
42564
42565
42565
42565
42566
42566
42566
42567
42567
42567
42568
42568
42568
42569
42569
42569
42570
42570
42570
42571
42571
42571
42572
42572
42572
42573
42573
42573
42574
42574
42574
42575
42575
42575
42576
42576
42576
42577
42577
42577
42578
42578
42578
42579
42579
42580
42580
42580
42581
42581
42581
42582
42582
42582
42583
42583
42583
42584
42584
42584
42585
42585
42585
42586
42586
42586
42587
42587
42587
42588
42588
42588
42589
42589
42589
42590
42590
42590
42591
42591
42591
42592
42592
42592
42593
42593
42593
42594
42594
42594
42595
42595
42595
42596
42596
42596
42597
42597
42597
42598
42598
42598
42599
42599
42599
42600
42600
42600
42601
42601
42601
42602
42602
42602
42603
42603
42603
42604
42604
42604
42605
42605
42605
42606
42606
42606
42607
42607
42607
42608
42608
42608
42609
42609
42609
42610
42610
42610
42611
42611
42611
42612
42612
42612
42613
42613
42613
42614
42614
42614
42615
42615
42616
42616
42616
42617
42617
42617
42618
42618
42618
42619
42619
42619
42620
42620
42620
42621
42621
42621
42622
42622
42622
42623
42623
42623
42624
42624
42624
42625
42625
42625
42626
42626
42626
42627
42627
42627
42628
42628
42628
42629
42629
42629
42630
42630
42630
42631
42631
42631
42632
42632
42632
42633
42633
42633
42634
42634
42634
42635
42635
42635
42636
42636
42636
42637
42637
42637
42638
42638
42638
42639
42639
42639
42640
42640
42640
42641
42641
42641
42642
42642
42642
42643
42643
42643
42644
42644
42644
42645
42645
42645
42646
42646
42646
42647
42647
42647
42648
42648
42648
42649
42649
42649
42650
42650
42650
42651
42651
42652
42652
42652
42653
42653
42653
42654
42654
42654
42655
42655
42655
42656
42656
42656
42657
42657
42657
42658
42658
42658
42659
42659
42659
42660
42660
42660
42661
42661
42661
42662
42662
42662
42663
42663
42663
42664
42664
42664
42665
42665
42665
42666
42666
42666
42667
42667
42667
42668
42668
42668
42669
42669
42669
42670
42670
42670
42671
42671
42671
42672
42672
42672
42673
42673
42673
42674
42674
42674
42675
42675
42675
42676
42676
42676
42677
42677
42677
42678
42678
42678
42679
42679
42679
42680
42680
42680
42681
42681
42681
42682
42682
42682
42683
42683
42683
42684
42684
42684
42685
42685
42685
42686
42686
42686
42687
42687
42688
42688
42688
42689
42689
42689
42690
42690
42690
42691
42691
42691
42692
42692
42692
42693
42693
42693
42694
42694
42694
42695
42695
42695
42696
42696
42696
42697
42697
42697
42698
42698
42698
42699
42699
42699
42700
42700
42700
42701
42701
42701
42702
42702
42702
42703
42703
42703
42704
42704
42704
42705
42705
42705
42706
42706
42706
42707
42707
42707
42708
42708
42708
42709
42709
42709
42710
42710
42710
42711
42711
42711
42712
42712
42712
42713
42713
42713
42714
42714
42714
42715
42715
42715
42716
42716
42716
42717
42717
42717
42718
42718
42718
42719
42719
42719
42720
42720
42720
42721
42721
42721
42722
42722
42722
42723
42723
42724
42724
42725
42725
42726
42726
42727
42727
42728
42728
42729
42729
42730
42730
42731
42731
42732
42732
42733
42733
42734
42734
42735
42735
42736
42736
42737
42737
42738
42738
42739
42739
42740
42740
42741
42741
42742
42742
42743
42743
42744
42744
42745
42745
42746
42746
42747
42747
42748
42748
42749
42749
42750
42750
42751
42751
42752
42752
42753
42753
42754
42754
42755
42755
42756
42756
42757
42757
42758
42758
42759
42760
42760
42760
42761
42761
42761
42762
42762
42762
42763
42763
42763
42764
42764
42764
42765
42765
42765
42766
42766
42766
42767
42767
42767
42768
42768
42768
42769
42769
42769
42770
42770
42770
42771
42771
42771
42772
42772
42772
42773
42773
42773
42774
42774
42774
42775
42775
42775
42776
42776
42776
42777
42777
42777
42778
42778
42778
42779
42779
42779
42780
42780
42780
42781
42781
42781
42782
42782
42782
42783
42783
42783
42784
42784
42784
42785
42785
42785
42786
42786
42786
42787
42787
42787
42788
42788
42788
42789
42789
42789
42790
42790
42790
42791
42791
42791
42792
42792
42792
42793
42793
42793
42794
42794
42794
42795
42795
42796
42796
42796
42797
42797
42797
42798
42798
42798
42799
42799
42799
42800
42800
42800
42801
42801
42801
42802
42802
42802
42803
42803
42803
42804
42804
42804
42805
42805
42805
42806
42806
42806
42807
42807
42807
42808
42808
42808
42809
42809
42809
42810
42810
42810
42811
42811
42811
42812
42812
42812
42813
42813
42813
42814
42814
42814
42815
42815
42815
42816
42816
42816
42817
42817
42817
42818
42818
42818
42819
42819
42819
42820
42820
42820
42821
42821
42821
42822
42822
42822
42823
42823
42823
42824
42824
42824
42825
42825
42825
42826
42826
42826
42827
42827
42827
42828
42828
42828
42829
42829
42829
42830
42830
42830
42831
42831
42832
42832
42832
42833
42833
42833
42834
42834
42834
42835
42835
42835
42836
42836
42836
42837
42837
42837
42838
42838
42838
42839
42839
42839
42840
42840
42840
42841
42841
42841
42842
42842
42842
42843
42843
42843
42844
42844
42844
42845
42845
42845
42846
42846
42846
42847
42847
42847
42848
42848
42848
42849
42849
42849
42850
42850
42850
42851
42851
42851
42852
42852
42852
42853
42853
42853
42854
42854
42854
42855
42855
42855
42856
42856
42856
42857
42857
42857
42858
42858
42858
42859
42859
42859
42860
42860
42860
42861
42861
42861
42862
42862
42862
42863
42863
42863
42864
42864
42864
42865
42865
42865
42866
42866
42866
42867
42867
42868
42868
42868
42869
42869
42869
42870
42870
42870
42871
42871
42871
42872
42872
42872
42873
42873
42873
42874
42874
42874
42875
42875
42875
42876
42876
42876
42877
42877
42877
42878
42878
42878
42879
42879
42879
42880
42880
42880
42881
42881
42881
42882
42882
42882
42883
42883
42883
42884
42884
42884
42885
42885
42885
42886
42886
42886
42887
42887
42887
42888
42888
42888
42889
42889
42889
42890
42890
42890
42891
42891
42891
42892
42892
42892
42893
42893
42893
42894
42894
42894
42895
42895
42895
42896
42896
42896
42897
42897
42897
42898
42898
42898
42899
42899
42899
42900
42900
42900
42901
42901
42901
42902
42902
42902
42903
42903
42904
42904
42904
42905
42905
42905
42906
42906
42906
42907
42907
42907
42908
42908
42908
42909
42909
42909
42910
42910
42910
42911
42911
42911
42912
42912
42912
42913
42913
42913
42914
42914
42914
42915
42915
42915
42916
42916
42916
42917
42917
42917
42918
42918
42918
42919
42919
42919
42920
42920
42920
42921
42921
42921
42922
42922
42922
42923
42923
42923
42924
42924
42924
42925
42925
42925
42926
42926
42926
42927
42927
42927
42928
42928
42928
42929
42929
42929
42930
42930
42930
42931
42931
42931
42932
42932
42932
42933
42933
42933
42934
42934
42934
42935
42935
42935
42936
42936
42936
42937
42937
42937
42938
42938
42938
42939
42939
42940
42940
42940
42941
42941
42941
42942
42942
42942
42943
42943
42943
42944
42944
42944
42945
42945
42945
42946
42946
42946
42947
42947
42947
42948
42948
42948
42949
42949
42949
42950
42950
42950
42951
42951
42951
42952
42952
42952
42953
42953
42953
42954
42954
42954
42955
42955
42955
42956
42956
42956
42957
42957
42957
42958
42958
42958
42959
42959
42959
42960
42960
42960
42961
42961
42961
42962
42962
42962
42963
42963
42963
42964
42964
42964
42965
42965
42965
42966
42966
42966
42967
42967
42967
42968
42968
42968
42969
42969
42969
42970
42970
42970
42971
42971
42971
42972
42972
42972
42973
42973
42973
42974
42974
42974
42975
42975
42976
42976
42976
42977
42977
42977
42978
42978
42978
42979
42979
42979
42980
42980
42980
42981
42981
42981
42982
42982
42982
42983
42983
42983
42984
42984
42984
42985
42985
42985
42986
42986
42986
42987
42987
42987
42988
42988
42988
42989
42989
42989
42990
42990
42990
42991
42991
42991
42992
42992
42992
42993
42993
42993
42994
42994
42994
42995
42995
42995
42996
42996
42996
42997
42997
42997
42998
42998
42998
42999
42999
42999
43000
43000
43000
43001
43001
43001
43002
43002
43002
43003
43003
43003
43004
43004
43004
43005
43005
43005
43006
43006
43006
43007
43007
43007
43008
43008
43008
43009
43009
43009
43010
43010
43010
43011
43011
43012
43012
43012
43013
43013
43013
43014
43014
43014
43015
43015
43015
43016
43016
43016
43017
43017
43017
43018
43018
43018
43019
43019
43019
43020
43020
43020
43021
43021
43021
43022
43022
43022
43023
43023
43023
43024
43024
43024
43025
43025
43025
43026
43026
43026
43027
43027
43027
43028
43028
43028
43029
43029
43029
43030
43030
43030
43031
43031
43031
43032
43032
43032
43033
43033
43033
43034
43034
43034
43035
43035
43035
43036
43036
43036
43037
43037
43037
43038
43038
43038
43039
43039
43039
43040
43040
43040
43041
43041
43041
43042
43042
43042
43043
43043
43043
43044
43044
43044
43045
43045
43045
43046
43046
43046
43047
43047
43048
43048
43048
43049
43049
43049
43050
43050
43050
43051
43051
43051
43052
43052
43052
43053
43053
43053
43054
43054
43054
43055
43055
43055
43056
43056
43056
43057
43057
43057
43058
43058
43058
43059
43059
43059
43060
43060
43060
43061
43061
43061
43062
43062
43062
43063
43063
43063
43064
43064
43064
43065
43065
43065
43066
43066
43066
43067
43067
43067
43068
43068
43068
43069
43069
43069
43070
43070
43070
43071
43071
43071
43072
43072
43072
43073
43073
43073
43074
43074
43074
43075
43075
43075
43076
43076
43076
43077
43077
43077
43078
43078
43078
43079
43079
43079
43080
43080
43080
43081
43081
43081
43082
43082
43082
43083
43083
43084
43084
43085
43085
43086
43086
43087
43087
43088
43088
43089
43089
43090
43090
43091
43091
43092
43092
43093
43093
43094
43094
43095
43095
43096
43096
43097
43097
43098
43098
43099
43099
43100
43100
43101
43101
43102
43102
43103
43103
43104
43104
43105
43105
43106
43106
43107
43107
43108
43108
43109
43109
43110
43110
43111
43111
43112
43112
43113
43113
43114
43114
43115
43115
43116
43116
43117
43117
43118
43118
43119
43120
43120
43120
43121
43121
43121
43122
43122
43122
43123
43123
43123
43124
43124
43124
43125
43125
43125
43126
43126
43126
43127
43127
43127
43128
43128
43128
43129
43129
43129
43130
43130
43130
43131
43131
43131
43132
43132
43132
43133
43133
43133
43134
43134
43134
43135
43135
43135
43136
43136
43136
43137
43137
43137
43138
43138
43138
43139
43139
43139
43140
43140
43140
43141
43141
43141
43142
43142
43142
43143
43143
43143
43144
43144
43144
43145
43145
43145
43146
43146
43146
43147
43147
43147
43148
43148
43148
43149
43149
43149
43150
43150
43150
43151
43151
43151
43152
43152
43152
43153
43153
43153
43154
43154
43154
43155
43155
43156
43156
43156
43157
43157
43157
43158
43158
43158
43159
43159
43159
43160
43160
43160
43161
43161
43161
43162
43162
43162
43163
43163
43163
43164
43164
43164
43165
43165
43165
43166
43166
43166
43167
43167
43167
43168
43168
43168
43169
43169
43169
43170
43170
43170
43171
43171
43171
43172
43172
43172
43173
43173
43173
43174
43174
43174
43175
43175
43175
43176
43176
43176
43177
43177
43177
43178
43178
43178
43179
43179
43179
43180
43180
43180
43181
43181
43181
43182
43182
43182
43183
43183
43183
43184
43184
43184
43185
43185
43185
43186
43186
43186
43187
43187
43187
43188
43188
43188
43189
43189
43189
43190
43190
43190
43191
43191
43192
43192
43192
43193
43193
43193
43194
43194
43194
43195
43195
43195
43196
43196
43196
43197
43197
43197
43198
43198
43198
43199
43199
43199
43200
43200
43200
43201
43201
43201
43202
43202
43202
43203
43203
43203
43204
43204
43204
43205
43205
43205
43206
43206
43206
43207
43207
43207
43208
43208
43208
43209
43209
43209
43210
43210
43210
43211
43211
43211
43212
43212
43212
43213
43213
43213
43214
43214
43214
43215
43215
43215
43216
43216
43216
43217
43217
43217
43218
43218
43218
43219
43219
43219
43220
43220
43220
43221
43221
43221
43222
43222
43222
43223
43223
43223
43224
43224
43224
43225
43225
43225
43226
43226
43226
43227
43227
43228
43228
43228
43229
43229
43229
43230
43230
43230
43231
43231
43231
43232
43232
43232
43233
43233
43233
43234
43234
43234
43235
43235
43235
43236
43236
43236
43237
43237
43237
43238
43238
43238
43239
43239
43239
43240
43240
43240
43241
43241
43241
43242
43242
43242
43243
43243
43243
43244
43244
43244
43245
43245
43245
43246
43246
43246
43247
43247
43247
43248
43248
43248
43249
43249
43249
43250
43250
43250
43251
43251
43251
43252
43252
43252
43253
43253
43253
43254
43254
43254
43255
43255
43255
43256
43256
43256
43257
43257
43257
43258
43258
43258
43259
43259
43259
43260
43260
43260
43261
43261
43261
43262
43262
43262
43263
43263
43264
43264
43264
43265
43265
43265
43266
43266
43266
43267
43267
43267
43268
43268
43268
43269
43269
43269
43270
43270
43270
43271
43271
43271
43272
43272
43272
43273
43273
43273
43274
43274
43274
43275
43275
43275
43276
43276
43276
43277
43277
43277
43278
43278
43278
43279
43279
43279
43280
43280
43280
43281
43281
43281
43282
43282
43282
43283
43283
43283
43284
43284
43284
43285
43285
43285
43286
43286
43286
43287
43287
43287
43288
43288
43288
43289
43289
43289
43290
43290
43290
43291
43291
43291
43292
43292
43292
43293
43293
43293
43294
43294
43294
43295
43295
43295
43296
43296
43296
43297
43297
43297
43298
43298
43298
43299
43299
43300
43300
43300
43301
43301
43301
43302
43302
43302
43303
43303
43303
43304
43304
43304
43305
43305
43305
43306
43306
43306
43307
43307
43307
43308
43308
43308
43309
43309
43309
43310
43310
43310
43311
43311
43311
43312
43312
43312
43313
43313
43313
43314
43314
43314
43315
43315
43315
43316
43316
43316
43317
43317
43317
43318
43318
43318
43319
43319
43319
43320
43320
43320
43321
43321
43321
43322
43322
43322
43323
43323
43323
43324
43324
43324
43325
43325
43325
43326
43326
43326
43327
43327
43327
43328
43328
43328
43329
43329
43329
43330
43330
43330
43331
43331
43331
43332
43332
43332
43333
43333
43333
43334
43334
43334
43335
43335
43336
43336
43336
43337
43337
43337
43338
43338
43338
43339
43339
43339
43340
43340
43340
43341
43341
43341
43342
43342
43342
43343
43343
43343
43344
43344
43344
43345
43345
43345
43346
43346
43346
43347
43347
43347
43348
43348
43348
43349
43349
43349
43350
43350
43350
43351
43351
43351
43352
43352
43352
43353
43353
43353
43354
43354
43354
43355
43355
43355
43356
43356
43356
43357
43357
43357
43358
43358
43358
43359
43359
43359
43360
43360
43360
43361
43361
43361
43362
43362
43362
43363
43363
43363
43364
43364
43364
43365
43365
43365
43366
43366
43366
43367
43367
43367
43368
43368
43368
43369
43369
43369
43370
43370
43370
43371
43371
43372
43372
43372
43373
43373
43373
43374
43374
43374
43375
43375
43375
43376
43376
43376
43377
43377
43377
43378
43378
43378
43379
43379
43379
43380
43380
43380
43381
43381
43381
43382
43382
43382
43383
43383
43383
43384
43384
43384
43385
43385
43385
43386
43386
43386
43387
43387
43387
43388
43388
43388
43389
43389
43389
43390
43390
43390
43391
43391
43391
43392
43392
43392
43393
43393
43393
43394
43394
43394
43395
43395
43395
43396
43396
43396
43397
43397
43397
43398
43398
43398
43399
43399
43399
43400
43400
43400
43401
43401
43401
43402
43402
43402
43403
43403
43403
43404
43404
43404
43405
43405
43405
43406
43406
43406
43407
43407
43408
43408
43408
43409
43409
43409
43410
43410
43410
43411
43411
43411
43412
43412
43412
43413
43413
43413
43414
43414
43414
43415
43415
43415
43416
43416
43416
43417
43417
43417
43418
43418
43418
43419
43419
43419
43420
43420
43420
43421
43421
43421
43422
43422
43422
43423
43423
43423
43424
43424
43424
43425
43425
43425
43426
43426
43426
43427
43427
43427
43428
43428
43428
43429
43429
43429
43430
43430
43430
43431
43431
43431
43432
43432
43432
43433
43433
43433
43434
43434
43434
43435
43435
43435
43436
43436
43436
43437
43437
43437
43438
43438
43438
43439
43439
43439
43440
43440
43440
43441
43441
43441
43442
43442
43442
43443
43443
43444
43444
43445
43445
43446
43446
43447
43447
43448
43448
43449
43449
43450
43450
43451
43451
43452
43452
43453
43453
43454
43454
43455
43455
43456
43456
43457
43457
43458
43458
43459
43459
43460
43460
43461
43461
43462
43462
43463
43463
43464
43464
43465
43465
43466
43466
43467
43467
43468
43468
43469
43469
43470
43470
43471
43471
43472
43472
43473
43473
43474
43474
43475
43475
43476
43476
43477
43477
43478
43478
43479
43480
43480
43480
43481
43481
43481
43482
43482
43482
43483
43483
43483
43484
43484
43484
43485
43485
43485
43486
43486
43486
43487
43487
43487
43488
43488
43488
43489
43489
43489
43490
43490
43490
43491
43491
43491
43492
43492
43492
43493
43493
43493
43494
43494
43494
43495
43495
43495
43496
43496
43496
43497
43497
43497
43498
43498
43498
43499
43499
43499
43500
43500
43500
43501
43501
43501
43502
43502
43502
43503
43503
43503
43504
43504
43504
43505
43505
43505
43506
43506
43506
43507
43507
43507
43508
43508
43508
43509
43509
43509
43510
43510
43510
43511
43511
43511
43512
43512
43512
43513
43513
43513
43514
43514
43514
43515
43515
43516
43516
43516
43517
43517
43517
43518
43518
43518
43519
43519
43519
43520
43520
43520
43521
43521
43521
43522
43522
43522
43523
43523
43523
43524
43524
43524
43525
43525
43525
43526
43526
43526
43527
43527
43527
43528
43528
43528
43529
43529
43529
43530
43530
43530
43531
43531
43531
43532
43532
43532
43533
43533
43533
43534
43534
43534
43535
43535
43535
43536
43536
43536
43537
43537
43537
43538
43538
43538
43539
43539
43539
43540
43540
43540
43541
43541
43541
43542
43542
43542
43543
43543
43543
43544
43544
43544
43545
43545
43545
43546
43546
43546
43547
43547
43547
43548
43548
43548
43549
43549
43549
43550
43550
43550
43551
43551
43552
43552
43552
43553
43553
43553
43554
43554
43554
43555
43555
43555
43556
43556
43556
43557
43557
43557
43558
43558
43558
43559
43559
43559
43560
43560
43560
43561
43561
43561
43562
43562
43562
43563
43563
43563
43564
43564
43564
43565
43565
43565
43566
43566
43566
43567
43567
43567
43568
43568
43568
43569
43569
43569
43570
43570
43570
43571
43571
43571
43572
43572
43572
43573
43573
43573
43574
43574
43574
43575
43575
43575
43576
43576
43576
43577
43577
43577
43578
43578
43578
43579
43579
43579
43580
43580
43580
43581
43581
43581
43582
43582
43582
43583
43583
43583
43584
43584
43584
43585
43585
43585
43586
43586
43586
43587
43587
43588
43588
43588
43589
43589
43589
43590
43590
43590
43591
43591
43591
43592
43592
43592
43593
43593
43593
43594
43594
43594
43595
43595
43595
43596
43596
43596
43597
43597
43597
43598
43598
43598
43599
43599
43599
43600
43600
43600
43601
43601
43601
43602
43602
43602
43603
43603
43603
43604
43604
43604
43605
43605
43605
43606
43606
43606
43607
43607
43607
43608
43608
43608
43609
43609
43609
43610
43610
43610
43611
43611
43611
43612
43612
43612
43613
43613
43613
43614
43614
43614
43615
43615
43615
43616
43616
43616
43617
43617
43617
43618
43618
43618
43619
43619
43619
43620
43620
43620
43621
43621
43621
43622
43622
43622
43623
43623
43624
43624
43624
43625
43625
43625
43626
43626
43626
43627
43627
43627
43628
43628
43628
43629
43629
43629
43630
43630
43630
43631
43631
43631
43632
43632
43632
43633
43633
43633
43634
43634
43634
43635
43635
43635
43636
43636
43636
43637
43637
43637
43638
43638
43638
43639
43639
43639
43640
43640
43640
43641
43641
43641
43642
43642
43642
43643
43643
43643
43644
43644
43644
43645
43645
43645
43646
43646
43646
43647
43647
43647
43648
43648
43648
43649
43649
43649
43650
43650
43650
43651
43651
43651
43652
43652
43652
43653
43653
43653
43654
43654
43654
43655
43655
43655
43656
43656
43656
43657
43657
43657
43658
43658
43658
43659
43659
43660
43660
43660
43661
43661
43661
43662
43662
43662
43663
43663
43663
43664
43664
43664
43665
43665
43665
43666
43666
43666
43667
43667
43667
43668
43668
43668
43669
43669
43669
43670
43670
43670
43671
43671
43671
43672
43672
43672
43673
43673
43673
43674
43674
43674
43675
43675
43675
43676
43676
43676
43677
43677
43677
43678
43678
43678
43679
43679
43679
43680
43680
43680
43681
43681
43681
43682
43682
43682
43683
43683
43683
43684
43684
43684
43685
43685
43685
43686
43686
43686
43687
43687
43687
43688
43688
43688
43689
43689
43689
43690
43690
43690
43691
43691
43691
43692
43692
43692
43693
43693
43693
43694
43694
43694
43695
43695
43696
43696
43696
43697
43697
43697
43698
43698
43698
43699
43699
43699
43700
43700
43700
43701
43701
43701
43702
43702
43702
43703
43703
43703
43704
43704
43704
43705
43705
43705
43706
43706
43706
43707
43707
43707
43708
43708
43708
43709
43709
43709
43710
43710
43710
43711
43711
43711
43712
43712
43712
43713
43713
43713
43714
43714
43714
43715
43715
43715
43716
43716
43716
43717
43717
43717
43718
43718
43718
43719
43719
43719
43720
43720
43720
43721
43721
43721
43722
43722
43722
43723
43723
43723
43724
43724
43724
43725
43725
43725
43726
43726
43726
43727
43727
43727
43728
43728
43728
43729
43729
43729
43730
43730
43730
43731
43731
43732
43732
43732
43733
43733
43733
43734
43734
43734
43735
43735
43735
43736
43736
43736
43737
43737
43737
43738
43738
43738
43739
43739
43739
43740
43740
43740
43741
43741
43741
43742
43742
43742
43743
43743
43743
43744
43744
43744
43745
43745
43745
43746
43746
43746
43747
43747
43747
43748
43748
43748
43749
43749
43749
43750
43750
43750
43751
43751
43751
43752
43752
43752
43753
43753
43753
43754
43754
43754
43755
43755
43755
43756
43756
43756
43757
43757
43757
43758
43758
43758
43759
43759
43759
43760
43760
43760
43761
43761
43761
43762
43762
43762
43763
43763
43763
43764
43764
43764
43765
43765
43765
43766
43766
43766
43767
43767
43768
43768
43768
43769
43769
43769
43770
43770
43770
43771
43771
43771
43772
43772
43772
43773
43773
43773
43774
43774
43774
43775
43775
43775
43776
43776
43776
43777
43777
43777
43778
43778
43778
43779
43779
43779
43780
43780
43780
43781
43781
43781
43782
43782
43782
43783
43783
43783
43784
43784
43784
43785
43785
43785
43786
43786
43786
43787
43787
43787
43788
43788
43788
43789
43789
43789
43790
43790
43790
43791
43791
43791
43792
43792
43792
43793
43793
43793
43794
43794
43794
43795
43795
43795
43796
43796
43796
43797
43797
43797
43798
43798
43798
43799
43799
43799
43800
43800
43800
43801
43801
43801
43802
43802
43802
43803
43803
43804
43804
43805
43805
43806
43806
43807
43807
43808
43808
43809
43809
43810
43810
43811
43811
43812
43812
43813
43813
43814
43814
43815
43815
43816
43816
43817
43817
43818
43818
43819
43819
43820
43820
43821
43821
43822
43822
43823
43823
43824
43824
43825
43825
43826
43826
43827
43827
43828
43828
43829
43829
43830
43830
43831
43831
43832
43832
43833
43833
43834
43834
43835
43835
43836
43836
43837
43837
43838
43838
43839
43840
43840
43840
43841
43841
43841
43842
43842
43842
43843
43843
43843
43844
43844
43844
43845
43845
43845
43846
43846
43846
43847
43847
43847
43848
43848
43848
43849
43849
43849
43850
43850
43850
43851
43851
43851
43852
43852
43852
43853
43853
43853
43854
43854
43854
43855
43855
43855
43856
43856
43856
43857
43857
43857
43858
43858
43858
43859
43859
43859
43860
43860
43860
43861
43861
43861
43862
43862
43862
43863
43863
43863
43864
43864
43864
43865
43865
43865
43866
43866
43866
43867
43867
43867
43868
43868
43868
43869
43869
43869
43870
43870
43870
43871
43871
43871
43872
43872
43872
43873
43873
43873
43874
43874
43874
43875
43875
43876
43876
43876
43877
43877
43877
43878
43878
43878
43879
43879
43879
43880
43880
43880
43881
43881
43881
43882
43882
43882
43883
43883
43883
43884
43884
43884
43885
43885
43885
43886
43886
43886
43887
43887
43887
43888
43888
43888
43889
43889
43889
43890
43890
43890
43891
43891
43891
43892
43892
43892
43893
43893
43893
43894
43894
43894
43895
43895
43895
43896
43896
43896
43897
43897
43897
43898
43898
43898
43899
43899
43899
43900
43900
43900
43901
43901
43901
43902
43902
43902
43903
43903
43903
43904
43904
43904
43905
43905
43905
43906
43906
43906
43907
43907
43907
43908
43908
43908
43909
43909
43909
43910
43910
43910
43911
43911
43912
43912
43912
43913
43913
43913
43914
43914
43914
43915
43915
43915
43916
43916
43916
43917
43917
43917
43918
43918
43918
43919
43919
43919
43920
43920
43920
43921
43921
43921
43922
43922
43922
43923
43923
43923
43924
43924
43924
43925
43925
43925
43926
43926
43926
43927
43927
43927
43928
43928
43928
43929
43929
43929
43930
43930
43930
43931
43931
43931
43932
43932
43932
43933
43933
43933
43934
43934
43934
43935
43935
43935
43936
43936
43936
43937
43937
43937
43938
43938
43938
43939
43939
43939
43940
43940
43940
43941
43941
43941
43942
43942
43942
43943
43943
43943
43944
43944
43944
43945
43945
43945
43946
43946
43946
43947
43947
43948
43948
43948
43949
43949
43949
43950
43950
43950
43951
43951
43951
43952
43952
43952
43953
43953
43953
43954
43954
43954
43955
43955
43955
43956
43956
43956
43957
43957
43957
43958
43958
43958
43959
43959
43959
43960
43960
43960
43961
43961
43961
43962
43962
43962
43963
43963
43963
43964
43964
43964
43965
43965
43965
43966
43966
43966
43967
43967
43967
43968
43968
43968
43969
43969
43969
43970
43970
43970
43971
43971
43971
43972
43972
43972
43973
43973
43973
43974
43974
43974
43975
43975
43975
43976
43976
43976
43977
43977
43977
43978
43978
43978
43979
43979
43979
43980
43980
43980
43981
43981
43981
43982
43982
43982
43983
43983
43984
43984
43984
43985
43985
43985
43986
43986
43986
43987
43987
43987
43988
43988
43988
43989
43989
43989
43990
43990
43990
43991
43991
43991
43992
43992
43992
43993
43993
43993
43994
43994
43994
43995
43995
43995
43996
43996
43996
43997
43997
43997
43998
43998
43998
43999
43999
43999
44000
44000
44000
44001
44001
44001
44002
44002
44002
44003
44003
44003
44004
44004
44004
44005
44005
44005
44006
44006
44006
44007
44007
44007
44008
44008
44008
44009
44009
44009
44010
44010
44010
44011
44011
44011
44012
44012
44012
44013
44013
44013
44014
44014
44014
44015
44015
44015
44016
44016
44016
44017
44017
44017
44018
44018
44018
44019
44019
44020
44020
44020
44021
44021
44021
44022
44022
44022
44023
44023
44023
44024
44024
44024
44025
44025
44025
44026
44026
44026
44027
44027
44027
44028
44028
44028
44029
44029
44029
44030
44030
44030
44031
44031
44031
44032
44032
44032
44033
44033
44033
44034
44034
44034
44035
44035
44035
44036
44036
44036
44037
44037
44037
44038
44038
44038
44039
44039
44039
44040
44040
44040
44041
44041
44041
44042
44042
44042
44043
44043
44043
44044
44044
44044
44045
44045
44045
44046
44046
44046
44047
44047
44047
44048
44048
44048
44049
44049
44049
44050
44050
44050
44051
44051
44051
44052
44052
44052
44053
44053
44053
44054
44054
44054
44055
44055
44056
44056
44056
44057
44057
44057
44058
44058
44058
44059
44059
44059
44060
44060
44060
44061
44061
44061
44062
44062
44062
44063
44063
44063
44064
44064
44064
44065
44065
44065
44066
44066
44066
44067
44067
44067
44068
44068
44068
44069
44069
44069
44070
44070
44070
44071
44071
44071
44072
44072
44072
44073
44073
44073
44074
44074
44074
44075
44075
44075
44076
44076
44076
44077
44077
44077
44078
44078
44078
44079
44079
44079
44080
44080
44080
44081
44081
44081
44082
44082
44082
44083
44083
44083
44084
44084
44084
44085
44085
44085
44086
44086
44086
44087
44087
44087
44088
44088
44088
44089
44089
44089
44090
44090
44090
44091
44091
44092
44092
44092
44093
44093
44093
44094
44094
44094
44095
44095
44095
44096
44096
44096
44097
44097
44097
44098
44098
44098
44099
44099
44099
44100
44100
44100
44101
44101
44101
44102
44102
44102
44103
44103
44103
44104
44104
44104
44105
44105
44105
44106
44106
44106
44107
44107
44107
44108
44108
44108
44109
44109
44109
44110
44110
44110
44111
44111
44111
44112
44112
44112
44113
44113
44113
44114
44114
44114
44115
44115
44115
44116
44116
44116
44117
44117
44117
44118
44118
44118
44119
44119
44119
44120
44120
44120
44121
44121
44121
44122
44122
44122
44123
44123
44123
44124
44124
44124
44125
44125
44125
44126
44126
44126
44127
44127
44128
44128
44128
44129
44129
44129
44130
44130
44130
44131
44131
44131
44132
44132
44132
44133
44133
44133
44134
44134
44134
44135
44135
44135
44136
44136
44136
44137
44137
44137
44138
44138
44138
44139
44139
44139
44140
44140
44140
44141
44141
44141
44142
44142
44142
44143
44143
44143
44144
44144
44144
44145
44145
44145
44146
44146
44146
44147
44147
44147
44148
44148
44148
44149
44149
44149
44150
44150
44150
44151
44151
44151
44152
44152
44152
44153
44153
44153
44154
44154
44154
44155
44155
44155
44156
44156
44156
44157
44157
44157
44158
44158
44158
44159
44159
44159
44160
44160
44160
44161
44161
44161
44162
44162
44162
44163
44163
44164
44164
44165
44165
44166
44166
44167
44167
44168
44168
44169
44169
44170
44170
44171
44171
44172
44172
44173
44173
44174
44174
44175
44175
44176
44176
44177
44177
44178
44178
44179
44179
44180
44180
44181
44181
44182
44182
44183
44183
44184
44184
44185
44185
44186
44186
44187
44187
44188
44188
44189
44189
44190
44190
44191
44191
44192
44192
44193
44193
44194
44194
44195
44195
44196
44196
44197
44197
44198
44198
44199
44200
44200
44200
44201
44201
44201
44202
44202
44202
44203
44203
44203
44204
44204
44204
44205
44205
44205
44206
44206
44206
44207
44207
44207
44208
44208
44208
44209
44209
44209
44210
44210
44210
44211
44211
44211
44212
44212
44212
44213
44213
44213
44214
44214
44214
44215
44215
44215
44216
44216
44216
44217
44217
44217
44218
44218
44218
44219
44219
44219
44220
44220
44220
44221
44221
44221
44222
44222
44222
44223
44223
44223
44224
44224
44224
44225
44225
44225
44226
44226
44226
44227
44227
44227
44228
44228
44228
44229
44229
44229
44230
44230
44230
44231
44231
44231
44232
44232
44232
44233
44233
44233
44234
44234
44234
44235
44235
44236
44236
44236
44237
44237
44237
44238
44238
44238
44239
44239
44239
44240
44240
44240
44241
44241
44241
44242
44242
44242
44243
44243
44243
44244
44244
44244
44245
44245
44245
44246
44246
44246
44247
44247
44247
44248
44248
44248
44249
44249
44249
44250
44250
44250
44251
44251
44251
44252
44252
44252
44253
44253
44253
44254
44254
44254
44255
44255
44255
44256
44256
44256
44257
44257
44257
44258
44258
44258
44259
44259
44259
44260
44260
44260
44261
44261
44261
44262
44262
44262
44263
44263
44263
44264
44264
44264
44265
44265
44265
44266
44266
44266
44267
44267
44267
44268
44268
44268
44269
44269
44269
44270
44270
44270
44271
44271
44272
44272
44272
44273
44273
44273
44274
44274
44274
44275
44275
44275
44276
44276
44276
44277
44277
44277
44278
44278
44278
44279
44279
44279
44280
44280
44280
44281
44281
44281
44282
44282
44282
44283
44283
44283
44284
44284
44284
44285
44285
44285
44286
44286
44286
44287
44287
44287
44288
44288
44288
44289
44289
44289
44290
44290
44290
44291
44291
44291
44292
44292
44292
44293
44293
44293
44294
44294
44294
44295
44295
44295
44296
44296
44296
44297
44297
44297
44298
44298
44298
44299
44299
44299
44300
44300
44300
44301
44301
44301
44302
44302
44302
44303
44303
44303
44304
44304
44304
44305
44305
44305
44306
44306
44306
44307
44307
44308
44308
44308
44309
44309
44309
44310
44310
44310
44311
44311
44311
44312
44312
44312
44313
44313
44313
44314
44314
44314
44315
44315
44315
44316
44316
44316
44317
44317
44317
44318
44318
44318
44319
44319
44319
44320
44320
44320
44321
44321
44321
44322
44322
44322
44323
44323
44323
44324
44324
44324
44325
44325
44325
44326
44326
44326
44327
44327
44327
44328
44328
44328
44329
44329
44329
44330
44330
44330
44331
44331
44331
44332
44332
44332
44333
44333
44333
44334
44334
44334
44335
44335
44335
44336
44336
44336
44337
44337
44337
44338
44338
44338
44339
44339
44339
44340
44340
44340
44341
44341
44341
44342
44342
44342
44343
44343
44344
44344
44344
44345
44345
44345
44346
44346
44346
44347
44347
44347
44348
44348
44348
44349
44349
44349
44350
44350
44350
44351
44351
44351
44352
44352
44352
44353
44353
44353
44354
44354
44354
44355
44355
44355
44356
44356
44356
44357
44357
44357
44358
44358
44358
44359
44359
44359
44360
44360
44360
44361
44361
44361
44362
44362
44362
44363
44363
44363
44364
44364
44364
44365
44365
44365
44366
44366
44366
44367
44367
44367
44368
44368
44368
44369
44369
44369
44370
44370
44370
44371
44371
44371
44372
44372
44372
44373
44373
44373
44374
44374
44374
44375
44375
44375
44376
44376
44376
44377
44377
44377
44378
44378
44378
44379
44379
44380
44380
44380
44381
44381
44381
44382
44382
44382
44383
44383
44383
44384
44384
44384
44385
44385
44385
44386
44386
44386
44387
44387
44387
44388
44388
44388
44389
44389
44389
44390
44390
44390
44391
44391
44391
44392
44392
44392
44393
44393
44393
44394
44394
44394
44395
44395
44395
44396
44396
44396
44397
44397
44397
44398
44398
44398
44399
44399
44399
44400
44400
44400
44401
44401
44401
44402
44402
44402
44403
44403
44403
44404
44404
44404
44405
44405
44405
44406
44406
44406
44407
44407
44407
44408
44408
44408
44409
44409
44409
44410
44410
44410
44411
44411
44411
44412
44412
44412
44413
44413
44413
44414
44414
44414
44415
44415
44416
44416
44416
44417
44417
44417
44418
44418
44418
44419
44419
44419
44420
44420
44420
44421
44421
44421
44422
44422
44422
44423
44423
44423
44424
44424
44424
44425
44425
44425
44426
44426
44426
44427
44427
44427
44428
44428
44428
44429
44429
44429
44430
44430
44430
44431
44431
44431
44432
44432
44432
44433
44433
44433
44434
44434
44434
44435
44435
44435
44436
44436
44436
44437
44437
44437
44438
44438
44438
44439
44439
44439
44440
44440
44440
44441
44441
44441
44442
44442
44442
44443
44443
44443
44444
44444
44444
44445
44445
44445
44446
44446
44446
44447
44447
44447
44448
44448
44448
44449
44449
44449
44450
44450
44450
44451
44451
44452
44452
44452
44453
44453
44453
44454
44454
44454
44455
44455
44455
44456
44456
44456
44457
44457
44457
44458
44458
44458
44459
44459
44459
44460
44460
44460
44461
44461
44461
44462
44462
44462
44463
44463
44463
44464
44464
44464
44465
44465
44465
44466
44466
44466
44467
44467
44467
44468
44468
44468
44469
44469
44469
44470
44470
44470
44471
44471
44471
44472
44472
44472
44473
44473
44473
44474
44474
44474
44475
44475
44475
44476
44476
44476
44477
44477
44477
44478
44478
44478
44479
44479
44479
44480
44480
44480
44481
44481
44481
44482
44482
44482
44483
44483
44483
44484
44484
44484
44485
44485
44485
44486
44486
44486
44487
44487
44488
44488
44488
44489
44489
44489
44490
44490
44490
44491
44491
44491
44492
44492
44492
44493
44493
44493
44494
44494
44494
44495
44495
44495
44496
44496
44496
44497
44497
44497
44498
44498
44498
44499
44499
44499
44500
44500
44500
44501
44501
44501
44502
44502
44502
44503
44503
44503
44504
44504
44504
44505
44505
44505
44506
44506
44506
44507
44507
44507
44508
44508
44508
44509
44509
44509
44510
44510
44510
44511
44511
44511
44512
44512
44512
44513
44513
44513
44514
44514
44514
44515
44515
44515
44516
44516
44516
44517
44517
44517
44518
44518
44518
44519
44519
44519
44520
44520
44520
44521
44521
44521
44522
44522
44522
44523
44523
44524
44524
44525
44525
44526
44526
44527
44527
44528
44528
44529
44529
44530
44530
44531
44531
44532
44532
44533
44533
44534
44534
44535
44535
44536
44536
44537
44537
44538
44538
44539
44539
44540
44540
44541
44541
44542
44542
44543
44543
44544
44544
44545
44545
44546
44546
44547
44547
44548
44548
44549
44549
44550
44550
44551
44551
44552
44552
44553
44553
44554
44554
44555
44555
44556
44556
44557
44557
44558
44558
44559
44560
44560
44560
44561
44561
44561
44562
44562
44562
44563
44563
44563
44564
44564
44564
44565
44565
44565
44566
44566
44566
44567
44567
44567
44568
44568
44568
44569
44569
44569
44570
44570
44570
44571
44571
44571
44572
44572
44572
44573
44573
44573
44574
44574
44574
44575
44575
44575
44576
44576
44576
44577
44577
44577
44578
44578
44578
44579
44579
44579
44580
44580
44580
44581
44581
44581
44582
44582
44582
44583
44583
44583
44584
44584
44584
44585
44585
44585
44586
44586
44586
44587
44587
44587
44588
44588
44588
44589
44589
44589
44590
44590
44590
44591
44591
44591
44592
44592
44592
44593
44593
44593
44594
44594
44594
44595
44595
44596
44596
44596
44597
44597
44597
44598
44598
44598
44599
44599
44599
44600
44600
44600
44601
44601
44601
44602
44602
44602
44603
44603
44603
44604
44604
44604
44605
44605
44605
44606
44606
44606
44607
44607
44607
44608
44608
44608
44609
44609
44609
44610
44610
44610
44611
44611
44611
44612
44612
44612
44613
44613
44613
44614
44614
44614
44615
44615
44615
44616
44616
44616
44617
44617
44617
44618
44618
44618
44619
44619
44619
44620
44620
44620
44621
44621
44621
44622
44622
44622
44623
44623
44623
44624
44624
44624
44625
44625
44625
44626
44626
44626
44627
44627
44627
44628
44628
44628
44629
44629
44629
44630
44630
44630
44631
44631
44632
44632
44632
44633
44633
44633
44634
44634
44634
44635
44635
44635
44636
44636
44636
44637
44637
44637
44638
44638
44638
44639
44639
44639
44640
44640
44640
44641
44641
44641
44642
44642
44642
44643
44643
44643
44644
44644
44644
44645
44645
44645
44646
44646
44646
44647
44647
44647
44648
44648
44648
44649
44649
44649
44650
44650
44650
44651
44651
44651
44652
44652
44652
44653
44653
44653
44654
44654
44654
44655
44655
44655
44656
44656
44656
44657
44657
44657
44658
44658
44658
44659
44659
44659
44660
44660
44660
44661
44661
44661
44662
44662
44662
44663
44663
44663
44664
44664
44664
44665
44665
44665
44666
44666
44666
44667
44667
44668
44668
44668
44669
44669
44669
44670
44670
44670
44671
44671
44671
44672
44672
44672
44673
44673
44673
44674
44674
44674
44675
44675
44675
44676
44676
44676
44677
44677
44677
44678
44678
44678
44679
44679
44679
44680
44680
44680
44681
44681
44681
44682
44682
44682
44683
44683
44683
44684
44684
44684
44685
44685
44685
44686
44686
44686
44687
44687
44687
44688
44688
44688
44689
44689
44689
44690
44690
44690
44691
44691
44691
44692
44692
44692
44693
44693
44693
44694
44694
44694
44695
44695
44695
44696
44696
44696
44697
44697
44697
44698
44698
44698
44699
44699
44699
44700
44700
44700
44701
44701
44701
44702
44702
44702
44703
44703
44704
44704
44704
44705
44705
44705
44706
44706
44706
44707
44707
44707
44708
44708
44708
44709
44709
44709
44710
44710
44710
44711
44711
44711
44712
44712
44712
44713
44713
44713
44714
44714
44714
44715
44715
44715
44716
44716
44716
44717
44717
44717
44718
44718
44718
44719
44719
44719
44720
44720
44720
44721
44721
44721
44722
44722
44722
44723
44723
44723
44724
44724
44724
44725
44725
44725
44726
44726
44726
44727
44727
44727
44728
44728
44728
44729
44729
44729
44730
44730
44730
44731
44731
44731
44732
44732
44732
44733
44733
44733
44734
44734
44734
44735
44735
44735
44736
44736
44736
44737
44737
44737
44738
44738
44738
44739
44739
44740
44740
44740
44741
44741
44741
44742
44742
44742
44743
44743
44743
44744
44744
44744
44745
44745
44745
44746
44746
44746
44747
44747
44747
44748
44748
44748
44749
44749
44749
44750
44750
44750
44751
44751
44751
44752
44752
44752
44753
44753
44753
44754
44754
44754
44755
44755
44755
44756
44756
44756
44757
44757
44757
44758
44758
44758
44759
44759
44759
44760
44760
44760
44761
44761
44761
44762
44762
44762
44763
44763
44763
44764
44764
44764
44765
44765
44765
44766
44766
44766
44767
44767
44767
44768
44768
44768
44769
44769
44769
44770
44770
44770
44771
44771
44771
44772
44772
44772
44773
44773
44773
44774
44774
44774
44775
44775
44776
44776
44776
44777
44777
44777
44778
44778
44778
44779
44779
44779
44780
44780
44780
44781
44781
44781
44782
44782
44782
44783
44783
44783
44784
44784
44784
44785
44785
44785
44786
44786
44786
44787
44787
44787
44788
44788
44788
44789
44789
44789
44790
44790
44790
44791
44791
44791
44792
44792
44792
44793
44793
44793
44794
44794
44794
44795
44795
44795
44796
44796
44796
44797
44797
44797
44798
44798
44798
44799
44799
44799
44800
44800
44800
44801
44801
44801
44802
44802
44802
44803
44803
44803
44804
44804
44804
44805
44805
44805
44806
44806
44806
44807
44807
44807
44808
44808
44808
44809
44809
44809
44810
44810
44810
44811
44811
44812
44812
44812
44813
44813
44813
44814
44814
44814
44815
44815
44815
44816
44816
44816
44817
44817
44817
44818
44818
44818
44819
44819
44819
44820
44820
44820
44821
44821
44821
44822
44822
44822
44823
44823
44823
44824
44824
44824
44825
44825
44825
44826
44826
44826
44827
44827
44827
44828
44828
44828
44829
44829
44829
44830
44830
44830
44831
44831
44831
44832
44832
44832
44833
44833
44833
44834
44834
44834
44835
44835
44835
44836
44836
44836
44837
44837
44837
44838
44838
44838
44839
44839
44839
44840
44840
44840
44841
44841
44841
44842
44842
44842
44843
44843
44843
44844
44844
44844
44845
44845
44845
44846
44846
44846
44847
44847
44848
44848
44848
44849
44849
44849
44850
44850
44850
44851
44851
44851
44852
44852
44852
44853
44853
44853
44854
44854
44854
44855
44855
44855
44856
44856
44856
44857
44857
44857
44858
44858
44858
44859
44859
44859
44860
44860
44860
44861
44861
44861
44862
44862
44862
44863
44863
44863
44864
44864
44864
44865
44865
44865
44866
44866
44866
44867
44867
44867
44868
44868
44868
44869
44869
44869
44870
44870
44870
44871
44871
44871
44872
44872
44872
44873
44873
44873
44874
44874
44874
44875
44875
44875
44876
44876
44876
44877
44877
44877
44878
44878
44878
44879
44879
44879
44880
44880
44880
44881
44881
44881
44882
44882
44882
44883
44883
44884
44884
44885
44885
44886
44886
44887
44887
44888
44888
44889
44889
44890
44890
44891
44891
44892
44892
44893
44893
44894
44894
44895
44895
44896
44896
44897
44897
44898
44898
44899
44899
44900
44900
44901
44901
44902
44902
44903
44903
44904
44904
44905
44905
44906
44906
44907
44907
44908
44908
44909
44909
44910
44910
44911
44911
44912
44912
44913
44913
44914
44914
44915
44915
44916
44916
44917
44917
44918
44918
44919
44920
44920
44920
44921
44921
44921
44922
44922
44922
44923
44923
44923
44924
44924
44924
44925
44925
44925
44926
44926
44926
44927
44927
44927
44928
44928
44928
44929
44929
44929
44930
44930
44930
44931
44931
44931
44932
44932
44932
44933
44933
44933
44934
44934
44934
44935
44935
44935
44936
44936
44936
44937
44937
44937
44938
44938
44938
44939
44939
44939
44940
44940
44940
44941
44941
44941
44942
44942
44942
44943
44943
44943
44944
44944
44944
44945
44945
44945
44946
44946
44946
44947
44947
44947
44948
44948
44948
44949
44949
44949
44950
44950
44950
44951
44951
44951
44952
44952
44952
44953
44953
44953
44954
44954
44954
44955
44955
44956
44956
44956
44957
44957
44957
44958
44958
44958
44959
44959
44959
44960
44960
44960
44961
44961
44961
44962
44962
44962
44963
44963
44963
44964
44964
44964
44965
44965
44965
44966
44966
44966
44967
44967
44967
44968
44968
44968
44969
44969
44969
44970
44970
44970
44971
44971
44971
44972
44972
44972
44973
44973
44973
44974
44974
44974
44975
44975
44975
44976
44976
44976
44977
44977
44977
44978
44978
44978
44979
44979
44979
44980
44980
44980
44981
44981
44981
44982
44982
44982
44983
44983
44983
44984
44984
44984
44985
44985
44985
44986
44986
44986
44987
44987
44987
44988
44988
44988
44989
44989
44989
44990
44990
44990
44991
44991
44992
44992
44992
44993
44993
44993
44994
44994
44994
44995
44995
44995
44996
44996
44996
44997
44997
44997
44998
44998
44998
44999
44999
44999
45000
45000
45000
45001
45001
45001
45002
45002
45002
45003
45003
45003
45004
45004
45004
45005
45005
45005
45006
45006
45006
45007
45007
45007
45008
45008
45008
45009
45009
45009
45010
45010
45010
45011
45011
45011
45012
45012
45012
45013
45013
45013
45014
45014
45014
45015
45015
45015
45016
45016
45016
45017
45017
45017
45018
45018
45018
45019
45019
45019
45020
45020
45020
45021
45021
45021
45022
45022
45022
45023
45023
45023
45024
45024
45024
45025
45025
45025
45026
45026
45026
45027
45027
45028
45028
45028
45029
45029
45029
45030
45030
45030
45031
45031
45031
45032
45032
45032
45033
45033
45033
45034
45034
45034
45035
45035
45035
45036
45036
45036
45037
45037
45037
45038
45038
45038
45039
45039
45039
45040
45040
45040
45041
45041
45041
45042
45042
45042
45043
45043
45043
45044
45044
45044
45045
45045
45045
45046
45046
45046
45047
45047
45047
45048
45048
45048
45049
45049
45049
45050
45050
45050
45051
45051
45051
45052
45052
45052
45053
45053
45053
45054
45054
45054
45055
45055
45055
45056
45056
45056
45057
45057
45057
45058
45058
45058
45059
45059
45059
45060
45060
45060
45061
45061
45061
45062
45062
45062
45063
45063
45064
45064
45064
45065
45065
45065
45066
45066
45066
45067
45067
45067
45068
45068
45068
45069
45069
45069
45070
45070
45070
45071
45071
45071
45072
45072
45072
45073
45073
45073
45074
45074
45074
45075
45075
45075
45076
45076
45076
45077
45077
45077
45078
45078
45078
45079
45079
45079
45080
45080
45080
45081
45081
45081
45082
45082
45082
45083
45083
45083
45084
45084
45084
45085
45085
45085
45086
45086
45086
45087
45087
45087
45088
45088
45088
45089
45089
45089
45090
45090
45090
45091
45091
45091
45092
45092
45092
45093
45093
45093
45094
45094
45094
45095
45095
45095
45096
45096
45096
45097
45097
45097
45098
45098
45098
45099
45099
45100
45100
45100
45101
45101
45101
45102
45102
45102
45103
45103
45103
45104
45104
45104
45105
45105
45105
45106
45106
45106
45107
45107
45107
45108
45108
45108
45109
45109
45109
45110
45110
45110
45111
45111
45111
45112
45112
45112
45113
45113
45113
45114
45114
45114
45115
45115
45115
45116
45116
45116
45117
45117
45117
45118
45118
45118
45119
45119
45119
45120
45120
45120
45121
45121
45121
45122
45122
45122
45123
45123
45123
45124
45124
45124
45125
45125
45125
45126
45126
45126
45127
45127
45127
45128
45128
45128
45129
45129
45129
45130
45130
45130
45131
45131
45131
45132
45132
45132
45133
45133
45133
45134
45134
45134
45135
45135
45136
45136
45136
45137
45137
45137
45138
45138
45138
45139
45139
45139
45140
45140
45140
45141
45141
45141
45142
45142
45142
45143
45143
45143
45144
45144
45144
45145
45145
45145
45146
45146
45146
45147
45147
45147
45148
45148
45148
45149
45149
45149
45150
45150
45150
45151
45151
45151
45152
45152
45152
45153
45153
45153
45154
45154
45154
45155
45155
45155
45156
45156
45156
45157
45157
45157
45158
45158
45158
45159
45159
45159
45160
45160
45160
45161
45161
45161
45162
45162
45162
45163
45163
45163
45164
45164
45164
45165
45165
45165
45166
45166
45166
45167
45167
45167
45168
45168
45168
45169
45169
45169
45170
45170
45170
45171
45171
45172
45172
45172
45173
45173
45173
45174
45174
45174
45175
45175
45175
45176
45176
45176
45177
45177
45177
45178
45178
45178
45179
45179
45179
45180
45180
45180
45181
45181
45181
45182
45182
45182
45183
45183
45183
45184
45184
45184
45185
45185
45185
45186
45186
45186
45187
45187
45187
45188
45188
45188
45189
45189
45189
45190
45190
45190
45191
45191
45191
45192
45192
45192
45193
45193
45193
45194
45194
45194
45195
45195
45195
45196
45196
45196
45197
45197
45197
45198
45198
45198
45199
45199
45199
45200
45200
45200
45201
45201
45201
45202
45202
45202
45203
45203
45203
45204
45204
45204
45205
45205
45205
45206
45206
45206
45207
45207
45208
45208
45208
45209
45209
45209
45210
45210
45210
45211
45211
45211
45212
45212
45212
45213
45213
45213
45214
45214
45214
45215
45215
45215
45216
45216
45216
45217
45217
45217
45218
45218
45218
45219
45219
45219
45220
45220
45220
45221
45221
45221
45222
45222
45222
45223
45223
45223
45224
45224
45224
45225
45225
45225
45226
45226
45226
45227
45227
45227
45228
45228
45228
45229
45229
45229
45230
45230
45230
45231
45231
45231
45232
45232
45232
45233
45233
45233
45234
45234
45234
45235
45235
45235
45236
45236
45236
45237
45237
45237
45238
45238
45238
45239
45239
45239
45240
45240
45240
45241
45241
45241
45242
45242
45242
45243
45243
45244
45244
45245
45245
45246
45246
45247
45247
45248
45248
45249
45249
45250
45250
45251
45251
45252
45252
45253
45253
45254
45254
45255
45255
45256
45256
45257
45257
45258
45258
45259
45259
45260
45260
45261
45261
45262
45262
45263
45263
45264
45264
45265
45265
45266
45266
45267
45267
45268
45268
45269
45269
45270
45270
45271
45271
45272
45272
45273
45273
45274
45274
45275
45275
45276
45276
45277
45277
45278
45278
45279
45280
45280
45280
45281
45281
45281
45282
45282
45282
45283
45283
45283
45284
45284
45284
45285
45285
45285
45286
45286
45286
45287
45287
45287
45288
45288
45288
45289
45289
45289
45290
45290
45290
45291
45291
45291
45292
45292
45292
45293
45293
45293
45294
45294
45294
45295
45295
45295
45296
45296
45296
45297
45297
45297
45298
45298
45298
45299
45299
45299
45300
45300
45300
45301
45301
45301
45302
45302
45302
45303
45303
45303
45304
45304
45304
45305
45305
45305
45306
45306
45306
45307
45307
45307
45308
45308
45308
45309
45309
45309
45310
45310
45310
45311
45311
45311
45312
45312
45312
45313
45313
45313
45314
45314
45314
45315
45315
45316
45316
45316
45317
45317
45317
45318
45318
45318
45319
45319
45319
45320
45320
45320
45321
45321
45321
45322
45322
45322
45323
45323
45323
45324
45324
45324
45325
45325
45325
45326
45326
45326
45327
45327
45327
45328
45328
45328
45329
45329
45329
45330
45330
45330
45331
45331
45331
45332
45332
45332
45333
45333
45333
45334
45334
45334
45335
45335
45335
45336
45336
45336
45337
45337
45337
45338
45338
45338
45339
45339
45339
45340
45340
45340
45341
45341
45341
45342
45342
45342
45343
45343
45343
45344
45344
45344
45345
45345
45345
45346
45346
45346
45347
45347
45347
45348
45348
45348
45349
45349
45349
45350
45350
45350
45351
45351
45352
45352
45352
45353
45353
45353
45354
45354
45354
45355
45355
45355
45356
45356
45356
45357
45357
45357
45358
45358
45358
45359
45359
45359
45360
45360
45360
45361
45361
45361
45362
45362
45362
45363
45363
45363
45364
45364
45364
45365
45365
45365
45366
45366
45366
45367
45367
45367
45368
45368
45368
45369
45369
45369
45370
45370
45370
45371
45371
45371
45372
45372
45372
45373
45373
45373
45374
45374
45374
45375
45375
45375
45376
45376
45376
45377
45377
45377
45378
45378
45378
45379
45379
45379
45380
45380
45380
45381
45381
45381
45382
45382
45382
45383
45383
45383
45384
45384
45384
45385
45385
45385
45386
45386
45386
45387
45387
45388
45388
45388
45389
45389
45389
45390
45390
45390
45391
45391
45391
45392
45392
45392
45393
45393
45393
45394
45394
45394
45395
45395
45395
45396
45396
45396
45397
45397
45397
45398
45398
45398
45399
45399
45399
45400
45400
45400
45401
45401
45401
45402
45402
45402
45403
45403
45403
45404
45404
45404
45405
45405
45405
45406
45406
45406
45407
45407
45407
45408
45408
45408
45409
45409
45409
45410
45410
45410
45411
45411
45411
45412
45412
45412
45413
45413
45413
45414
45414
45414
45415
45415
45415
45416
45416
45416
45417
45417
45417
45418
45418
45418
45419
45419
45419
45420
45420
45420
45421
45421
45421
45422
45422
45422
45423
45423
45424
45424
45424
45425
45425
45425
45426
45426
45426
45427
45427
45427
45428
45428
45428
45429
45429
45429
45430
45430
45430
45431
45431
45431
45432
45432
45432
45433
45433
45433
45434
45434
45434
45435
45435
45435
45436
45436
45436
45437
45437
45437
45438
45438
45438
45439
45439
45439
45440
45440
45440
45441
45441
45441
45442
45442
45442
45443
45443
45443
45444
45444
45444
45445
45445
45445
45446
45446
45446
45447
45447
45447
45448
45448
45448
45449
45449
45449
45450
45450
45450
45451
45451
45451
45452
45452
45452
45453
45453
45453
45454
45454
45454
45455
45455
45455
45456
45456
45456
45457
45457
45457
45458
45458
45458
45459
45459
45460
45460
45460
45461
45461
45461
45462
45462
45462
45463
45463
45463
45464
45464
45464
45465
45465
45465
45466
45466
45466
45467
45467
45467
45468
45468
45468
45469
45469
45469
45470
45470
45470
45471
45471
45471
45472
45472
45472
45473
45473
45473
45474
45474
45474
45475
45475
45475
45476
45476
45476
45477
45477
45477
45478
45478
45478
45479
45479
45479
45480
45480
45480
45481
45481
45481
45482
45482
45482
45483
45483
45483
45484
45484
45484
45485
45485
45485
45486
45486
45486
45487
45487
45487
45488
45488
45488
45489
45489
45489
45490
45490
45490
45491
45491
45491
45492
45492
45492
45493
45493
45493
45494
45494
45494
45495
45495
45496
45496
45496
45497
45497
45497
45498
45498
45498
45499
45499
45499
45500
45500
45500
45501
45501
45501
45502
45502
45502
45503
45503
45503
45504
45504
45504
45505
45505
45505
45506
45506
45506
45507
45507
45507
45508
45508
45508
45509
45509
45509
45510
45510
45510
45511
45511
45511
45512
45512
45512
45513
45513
45513
45514
45514
45514
45515
45515
45515
45516
45516
45516
45517
45517
45517
45518
45518
45518
45519
45519
45519
45520
45520
45520
45521
45521
45521
45522
45522
45522
45523
45523
45523
45524
45524
45524
45525
45525
45525
45526
45526
45526
45527
45527
45527
45528
45528
45528
45529
45529
45529
45530
45530
45530
45531
45531
45532
45532
45532
45533
45533
45533
45534
45534
45534
45535
45535
45535
45536
45536
45536
45537
45537
45537
45538
45538
45538
45539
45539
45539
45540
45540
45540
45541
45541
45541
45542
45542
45542
45543
45543
45543
45544
45544
45544
45545
45545
45545
45546
45546
45546
45547
45547
45547
45548
45548
45548
45549
45549
45549
45550
45550
45550
45551
45551
45551
45552
45552
45552
45553
45553
45553
45554
45554
45554
45555
45555
45555
45556
45556
45556
45557
45557
45557
45558
45558
45558
45559
45559
45559
45560
45560
45560
45561
45561
45561
45562
45562
45562
45563
45563
45563
45564
45564
45564
45565
45565
45565
45566
45566
45566
45567
45567
45568
45568
45568
45569
45569
45569
45570
45570
45570
45571
45571
45571
45572
45572
45572
45573
45573
45573
45574
45574
45574
45575
45575
45575
45576
45576
45576
45577
45577
45577
45578
45578
45578
45579
45579
45579
45580
45580
45580
45581
45581
45581
45582
45582
45582
45583
45583
45583
45584
45584
45584
45585
45585
45585
45586
45586
45586
45587
45587
45587
45588
45588
45588
45589
45589
45589
45590
45590
45590
45591
45591
45591
45592
45592
45592
45593
45593
45593
45594
45594
45594
45595
45595
45595
45596
45596
45596
45597
45597
45597
45598
45598
45598
45599
45599
45599
45600
45600
45600
45601
45601
45601
45602
45602
45602
45603
45603
45604
45604
45605
45605
45606
45606
45607
45607
45608
45608
45609
45609
45610
45610
45611
45611
45612
45612
45613
45613
45614
45614
45615
45615
45616
45616
45617
45617
45618
45618
45619
45619
45620
45620
45621
45621
45622
45622
45623
45623
45624
45624
45625
45625
45626
45626
45627
45627
45628
45628
45629
45629
45630
45630
45631
45631
45632
45632
45633
45633
45634
45634
45635
45635
45636
45636
45637
45637
45638
45638
45639
45640
45640
45640
45641
45641
45641
45642
45642
45642
45643
45643
45643
45644
45644
45644
45645
45645
45645
45646
45646
45646
45647
45647
45647
45648
45648
45648
45649
45649
45649
45650
45650
45650
45651
45651
45651
45652
45652
45652
45653
45653
45653
45654
45654
45654
45655
45655
45655
45656
45656
45656
45657
45657
45657
45658
45658
45658
45659
45659
45659
45660
45660
45660
45661
45661
45661
45662
45662
45662
45663
45663
45663
45664
45664
45664
45665
45665
45665
45666
45666
45666
45667
45667
45667
45668
45668
45668
45669
45669
45669
45670
45670
45670
45671
45671
45671
45672
45672
45672
45673
45673
45673
45674
45674
45674
45675
45675
45676
45676
45676
45677
45677
45677
45678
45678
45678
45679
45679
45679
45680
45680
45680
45681
45681
45681
45682
45682
45682
45683
45683
45683
45684
45684
45684
45685
45685
45685
45686
45686
45686
45687
45687
45687
45688
45688
45688
45689
45689
45689
45690
45690
45690
45691
45691
45691
45692
45692
45692
45693
45693
45693
45694
45694
45694
45695
45695
45695
45696
45696
45696
45697
45697
45697
45698
45698
45698
45699
45699
45699
45700
45700
45700
45701
45701
45701
45702
45702
45702
45703
45703
45703
45704
45704
45704
45705
45705
45705
45706
45706
45706
45707
45707
45707
45708
45708
45708
45709
45709
45709
45710
45710
45710
45711
45711
45712
45712
45712
45713
45713
45713
45714
45714
45714
45715
45715
45715
45716
45716
45716
45717
45717
45717
45718
45718
45718
45719
45719
45719
45720
45720
45720
45721
45721
45721
45722
45722
45722
45723
45723
45723
45724
45724
45724
45725
45725
45725
45726
45726
45726
45727
45727
45727
45728
45728
45728
45729
45729
45729
45730
45730
45730
45731
45731
45731
45732
45732
45732
45733
45733
45733
45734
45734
45734
45735
45735
45735
45736
45736
45736
45737
45737
45737
45738
45738
45738
45739
45739
45739
45740
45740
45740
45741
45741
45741
45742
45742
45742
45743
45743
45743
45744
45744
45744
45745
45745
45745
45746
45746
45746
45747
45747
45748
45748
45748
45749
45749
45749
45750
45750
45750
45751
45751
45751
45752
45752
45752
45753
45753
45753
45754
45754
45754
45755
45755
45755
45756
45756
45756
45757
45757
45757
45758
45758
45758
45759
45759
45759
45760
45760
45760
45761
45761
45761
45762
45762
45762
45763
45763
45763
45764
45764
45764
45765
45765
45765
45766
45766
45766
45767
45767
45767
45768
45768
45768
45769
45769
45769
45770
45770
45770
45771
45771
45771
45772
45772
45772
45773
45773
45773
45774
45774
45774
45775
45775
45775
45776
45776
45776
45777
45777
45777
45778
45778
45778
45779
45779
45779
45780
45780
45780
45781
45781
45781
45782
45782
45782
45783
45783
45784
45784
45784
45785
45785
45785
45786
45786
45786
45787
45787
45787
45788
45788
45788
45789
45789
45789
45790
45790
45790
45791
45791
45791
45792
45792
45792
45793
45793
45793
45794
45794
45794
45795
45795
45795
45796
45796
45796
45797
45797
45797
45798
45798
45798
45799
45799
45799
45800
45800
45800
45801
45801
45801
45802
45802
45802
45803
45803
45803
45804
45804
45804
45805
45805
45805
45806
45806
45806
45807
45807
45807
45808
45808
45808
45809
45809
45809
45810
45810
45810
45811
45811
45811
45812
45812
45812
45813
45813
45813
45814
45814
45814
45815
45815
45815
45816
45816
45816
45817
45817
45817
45818
45818
45818
45819
45819
45820
45820
45820
45821
45821
45821
45822
45822
45822
45823
45823
45823
45824
45824
45824
45825
45825
45825
45826
45826
45826
45827
45827
45827
45828
45828
45828
45829
45829
45829
45830
45830
45830
45831
45831
45831
45832
45832
45832
45833
45833
45833
45834
45834
45834
45835
45835
45835
45836
45836
45836
45837
45837
45837
45838
45838
45838
45839
45839
45839
45840
45840
45840
45841
45841
45841
45842
45842
45842
45843
45843
45843
45844
45844
45844
45845
45845
45845
45846
45846
45846
45847
45847
45847
45848
45848
45848
45849
45849
45849
45850
45850
45850
45851
45851
45851
45852
45852
45852
45853
45853
45853
45854
45854
45854
45855
45855
45856
45856
45856
45857
45857
45857
45858
45858
45858
45859
45859
45859
45860
45860
45860
45861
45861
45861
45862
45862
45862
45863
45863
45863
45864
45864
45864
45865
45865
45865
45866
45866
45866
45867
45867
45867
45868
45868
45868
45869
45869
45869
45870
45870
45870
45871
45871
45871
45872
45872
45872
45873
45873
45873
45874
45874
45874
45875
45875
45875
45876
45876
45876
45877
45877
45877
45878
45878
45878
45879
45879
45879
45880
45880
45880
45881
45881
45881
45882
45882
45882
45883
45883
45883
45884
45884
45884
45885
45885
45885
45886
45886
45886
45887
45887
45887
45888
45888
45888
45889
45889
45889
45890
45890
45890
45891
45891
45892
45892
45892
45893
45893
45893
45894
45894
45894
45895
45895
45895
45896
45896
45896
45897
45897
45897
45898
45898
45898
45899
45899
45899
45900
45900
45900
45901
45901
45901
45902
45902
45902
45903
45903
45903
45904
45904
45904
45905
45905
45905
45906
45906
45906
45907
45907
45907
45908
45908
45908
45909
45909
45909
45910
45910
45910
45911
45911
45911
45912
45912
45912
45913
45913
45913
45914
45914
45914
45915
45915
45915
45916
45916
45916
45917
45917
45917
45918
45918
45918
45919
45919
45919
45920
45920
45920
45921
45921
45921
45922
45922
45922
45923
45923
45923
45924
45924
45924
45925
45925
45925
45926
45926
45926
45927
45927
45928
45928
45928
45929
45929
45929
45930
45930
45930
45931
45931
45931
45932
45932
45932
45933
45933
45933
45934
45934
45934
45935
45935
45935
45936
45936
45936
45937
45937
45937
45938
45938
45938
45939
45939
45939
45940
45940
45940
45941
45941
45941
45942
45942
45942
45943
45943
45943
45944
45944
45944
45945
45945
45945
45946
45946
45946
45947
45947
45947
45948
45948
45948
45949
45949
45949
45950
45950
45950
45951
45951
45951
45952
45952
45952
45953
45953
45953
45954
45954
45954
45955
45955
45955
45956
45956
45956
45957
45957
45957
45958
45958
45958
45959
45959
45959
45960
45960
45960
45961
45961
45961
45962
45962
45962
45963
45963
45964
45964
45965
45965
45966
45966
45967
45967
45968
45968
45969
45969
45970
45970
45971
45971
45972
45972
45973
45973
45974
45974
45975
45975
45976
45976
45977
45977
45978
45978
45979
45979
45980
45980
45981
45981
45982
45982
45983
45983
45984
45984
45985
45985
45986
45986
45987
45987
45988
45988
45989
45989
45990
45990
45991
45991
45992
45992
45993
45993
45994
45994
45995
45995
45996
45996
45997
45997
45998
45998
45999
46000
46000
46000
46001
46001
46001
46002
46002
46002
46003
46003
46003
46004
46004
46004
46005
46005
46005
46006
46006
46006
46007
46007
46007
46008
46008
46008
46009
46009
46009
46010
46010
46010
46011
46011
46011
46012
46012
46012
46013
46013
46013
46014
46014
46014
46015
46015
46015
46016
46016
46016
46017
46017
46017
46018
46018
46018
46019
46019
46019
46020
46020
46020
46021
46021
46021
46022
46022
46022
46023
46023
46023
46024
46024
46024
46025
46025
46025
46026
46026
46026
46027
46027
46027
46028
46028
46028
46029
46029
46029
46030
46030
46030
46031
46031
46031
46032
46032
46032
46033
46033
46033
46034
46034
46034
46035
46035
46036
46036
46036
46037
46037
46037
46038
46038
46038
46039
46039
46039
46040
46040
46040
46041
46041
46041
46042
46042
46042
46043
46043
46043
46044
46044
46044
46045
46045
46045
46046
46046
46046
46047
46047
46047
46048
46048
46048
46049
46049
46049
46050
46050
46050
46051
46051
46051
46052
46052
46052
46053
46053
46053
46054
46054
46054
46055
46055
46055
46056
46056
46056
46057
46057
46057
46058
46058
46058
46059
46059
46059
46060
46060
46060
46061
46061
46061
46062
46062
46062
46063
46063
46063
46064
46064
46064
46065
46065
46065
46066
46066
46066
46067
46067
46067
46068
46068
46068
46069
46069
46069
46070
46070
46070
46071
46071
46072
46072
46072
46073
46073
46073
46074
46074
46074
46075
46075
46075
46076
46076
46076
46077
46077
46077
46078
46078
46078
46079
46079
46079
46080
46080
46080
46081
46081
46081
46082
46082
46082
46083
46083
46083
46084
46084
46084
46085
46085
46085
46086
46086
46086
46087
46087
46087
46088
46088
46088
46089
46089
46089
46090
46090
46090
46091
46091
46091
46092
46092
46092
46093
46093
46093
46094
46094
46094
46095
46095
46095
46096
46096
46096
46097
46097
46097
46098
46098
46098
46099
46099
46099
46100
46100
46100
46101
46101
46101
46102
46102
46102
46103
46103
46103
46104
46104
46104
46105
46105
46105
46106
46106
46106
46107
46107
46108
46108
46108
46109
46109
46109
46110
46110
46110
46111
46111
46111
46112
46112
46112
46113
46113
46113
46114
46114
46114
46115
46115
46115
46116
46116
46116
46117
46117
46117
46118
46118
46118
46119
46119
46119
46120
46120
46120
46121
46121
46121
46122
46122
46122
46123
46123
46123
46124
46124
46124
46125
46125
46125
46126
46126
46126
46127
46127
46127
46128
46128
46128
46129
46129
46129
46130
46130
46130
46131
46131
46131
46132
46132
46132
46133
46133
46133
46134
46134
46134
46135
46135
46135
46136
46136
46136
46137
46137
46137
46138
46138
46138
46139
46139
46139
46140
46140
46140
46141
46141
46141
46142
46142
46142
46143
46143
46144
46144
46144
46145
46145
46145
46146
46146
46146
46147
46147
46147
46148
46148
46148
46149
46149
46149
46150
46150
46150
46151
46151
46151
46152
46152
46152
46153
46153
46153
46154
46154
46154
46155
46155
46155
46156
46156
46156
46157
46157
46157
46158
46158
46158
46159
46159
46159
46160
46160
46160
46161
46161
46161
46162
46162
46162
46163
46163
46163
46164
46164
46164
46165
46165
46165
46166
46166
46166
46167
46167
46167
46168
46168
46168
46169
46169
46169
46170
46170
46170
46171
46171
46171
46172
46172
46172
46173
46173
46173
46174
46174
46174
46175
46175
46175
46176
46176
46176
46177
46177
46177
46178
46178
46178
46179
46179
46180
46180
46180
46181
46181
46181
46182
46182
46182
46183
46183
46183
46184
46184
46184
46185
46185
46185
46186
46186
46186
46187
46187
46187
46188
46188
46188
46189
46189
46189
46190
46190
46190
46191
46191
46191
46192
46192
46192
46193
46193
46193
46194
46194
46194
46195
46195
46195
46196
46196
46196
46197
46197
46197
46198
46198
46198
46199
46199
46199
46200
46200
46200
46201
46201
46201
46202
46202
46202
46203
46203
46203
46204
46204
46204
46205
46205
46205
46206
46206
46206
46207
46207
46207
46208
46208
46208
46209
46209
46209
46210
46210
46210
46211
46211
46211
46212
46212
46212
46213
46213
46213
46214
46214
46214
46215
46215
46216
46216
46216
46217
46217
46217
46218
46218
46218
46219
46219
46219
46220
46220
46220
46221
46221
46221
46222
46222
46222
46223
46223
46223
46224
46224
46224
46225
46225
46225
46226
46226
46226
46227
46227
46227
46228
46228
46228
46229
46229
46229
46230
46230
46230
46231
46231
46231
46232
46232
46232
46233
46233
46233
46234
46234
46234
46235
46235
46235
46236
46236
46236
46237
46237
46237
46238
46238
46238
46239
46239
46239
46240
46240
46240
46241
46241
46241
46242
46242
46242
46243
46243
46243
46244
46244
46244
46245
46245
46245
46246
46246
46246
46247
46247
46247
46248
46248
46248
46249
46249
46249
46250
46250
46250
46251
46251
46252
46252
46252
46253
46253
46253
46254
46254
46254
46255
46255
46255
46256
46256
46256
46257
46257
46257
46258
46258
46258
46259
46259
46259
46260
46260
46260
46261
46261
46261
46262
46262
46262
46263
46263
46263
46264
46264
46264
46265
46265
46265
46266
46266
46266
46267
46267
46267
46268
46268
46268
46269
46269
46269
46270
46270
46270
46271
46271
46271
46272
46272
46272
46273
46273
46273
46274
46274
46274
46275
46275
46275
46276
46276
46276
46277
46277
46277
46278
46278
46278
46279
46279
46279
46280
46280
46280
46281
46281
46281
46282
46282
46282
46283
46283
46283
46284
46284
46284
46285
46285
46285
46286
46286
46286
46287
46287
46288
46288
46288
46289
46289
46289
46290
46290
46290
46291
46291
46291
46292
46292
46292
46293
46293
46293
46294
46294
46294
46295
46295
46295
46296
46296
46296
46297
46297
46297
46298
46298
46298
46299
46299
46299
46300
46300
46300
46301
46301
46301
46302
46302
46302
46303
46303
46303
46304
46304
46304
46305
46305
46305
46306
46306
46306
46307
46307
46307
46308
46308
46308
46309
46309
46309
46310
46310
46310
46311
46311
46311
46312
46312
46312
46313
46313
46313
46314
46314
46314
46315
46315
46315
46316
46316
46316
46317
46317
46317
46318
46318
46318
46319
46319
46319
46320
46320
46320
46321
46321
46321
46322
46322
46322
46323
46323
46324
46324
46325
46325
46326
46326
46327
46327
46328
46328
46329
46329
46330
46330
46331
46331
46332
46332
46333
46333
46334
46334
46335
46335
46336
46336
46337
46337
46338
46338
46339
46339
46340
46340
46341
46341
46342
46342
46343
46343
46344
46344
46345
46345
46346
46346
46347
46347
46348
46348
46349
46349
46350
46350
46351
46351
46352
46352
46353
46353
46354
46354
46355
46355
46356
46356
46357
46357
46358
46358
46359
46360
46360
46360
46361
46361
46361
46362
46362
46362
46363
46363
46363
46364
46364
46364
46365
46365
46365
46366
46366
46366
46367
46367
46367
46368
46368
46368
46369
46369
46369
46370
46370
46370
46371
46371
46371
46372
46372
46372
46373
46373
46373
46374
46374
46374
46375
46375
46375
46376
46376
46376
46377
46377
46377
46378
46378
46378
46379
46379
46379
46380
46380
46380
46381
46381
46381
46382
46382
46382
46383
46383
46383
46384
46384
46384
46385
46385
46385
46386
46386
46386
46387
46387
46387
46388
46388
46388
46389
46389
46389
46390
46390
46390
46391
46391
46391
46392
46392
46392
46393
46393
46393
46394
46394
46394
46395
46395
46396
46396
46396
46397
46397
46397
46398
46398
46398
46399
46399
46399
46400
46400
46400
46401
46401
46401
46402
46402
46402
46403
46403
46403
46404
46404
46404
46405
46405
46405
46406
46406
46406
46407
46407
46407
46408
46408
46408
46409
46409
46409
46410
46410
46410
46411
46411
46411
46412
46412
46412
46413
46413
46413
46414
46414
46414
46415
46415
46415
46416
46416
46416
46417
46417
46417
46418
46418
46418
46419
46419
46419
46420
46420
46420
46421
46421
46421
46422
46422
46422
46423
46423
46423
46424
46424
46424
46425
46425
46425
46426
46426
46426
46427
46427
46427
46428
46428
46428
46429
46429
46429
46430
46430
46430
46431
46431
46432
46432
46432
46433
46433
46433
46434
46434
46434
46435
46435
46435
46436
46436
46436
46437
46437
46437
46438
46438
46438
46439
46439
46439
46440
46440
46440
46441
46441
46441
46442
46442
46442
46443
46443
46443
46444
46444
46444
46445
46445
46445
46446
46446
46446
46447
46447
46447
46448
46448
46448
46449
46449
46449
46450
46450
46450
46451
46451
46451
46452
46452
46452
46453
46453
46453
46454
46454
46454
46455
46455
46455
46456
46456
46456
46457
46457
46457
46458
46458
46458
46459
46459
46459
46460
46460
46460
46461
46461
46461
46462
46462
46462
46463
46463
46463
46464
46464
46464
46465
46465
46465
46466
46466
46466
46467
46467
46468
46468
46468
46469
46469
46469
46470
46470
46470
46471
46471
46471
46472
46472
46472
46473
46473
46473
46474
46474
46474
46475
46475
46475
46476
46476
46476
46477
46477
46477
46478
46478
46478
46479
46479
46479
46480
46480
46480
46481
46481
46481
46482
46482
46482
46483
46483
46483
46484
46484
46484
46485
46485
46485
46486
46486
46486
46487
46487
46487
46488
46488
46488
46489
46489
46489
46490
46490
46490
46491
46491
46491
46492
46492
46492
46493
46493
46493
46494
46494
46494
46495
46495
46495
46496
46496
46496
46497
46497
46497
46498
46498
46498
46499
46499
46499
46500
46500
46500
46501
46501
46501
46502
46502
46502
46503
46503
46504
46504
46504
46505
46505
46505
46506
46506
46506
46507
46507
46507
46508
46508
46508
46509
46509
46509
46510
46510
46510
46511
46511
46511
46512
46512
46512
46513
46513
46513
46514
46514
46514
46515
46515
46515
46516
46516
46516
46517
46517
46517
46518
46518
46518
46519
46519
46519
46520
46520
46520
46521
46521
46521
46522
46522
46522
46523
46523
46523
46524
46524
46524
46525
46525
46525
46526
46526
46526
46527
46527
46527
46528
46528
46528
46529
46529
46529
46530
46530
46530
46531
46531
46531
46532
46532
46532
46533
46533
46533
46534
46534
46534
46535
46535
46535
46536
46536
46536
46537
46537
46537
46538
46538
46538
46539
46539
46540
46540
46540
46541
46541
46541
46542
46542
46542
46543
46543
46543
46544
46544
46544
46545
46545
46545
46546
46546
46546
46547
46547
46547
46548
46548
46548
46549
46549
46549
46550
46550
46550
46551
46551
46551
46552
46552
46552
46553
46553
46553
46554
46554
46554
46555
46555
46555
46556
46556
46556
46557
46557
46557
46558
46558
46558
46559
46559
46559
46560
46560
46560
46561
46561
46561
46562
46562
46562
46563
46563
46563
46564
46564
46564
46565
46565
46565
46566
46566
46566
46567
46567
46567
46568
46568
46568
46569
46569
46569
46570
46570
46570
46571
46571
46571
46572
46572
46572
46573
46573
46573
46574
46574
46574
46575
46575
46576
46576
46576
46577
46577
46577
46578
46578
46578
46579
46579
46579
46580
46580
46580
46581
46581
46581
46582
46582
46582
46583
46583
46583
46584
46584
46584
46585
46585
46585
46586
46586
46586
46587
46587
46587
46588
46588
46588
46589
46589
46589
46590
46590
46590
46591
46591
46591
46592
46592
46592
46593
46593
46593
46594
46594
46594
46595
46595
46595
46596
46596
46596
46597
46597
46597
46598
46598
46598
46599
46599
46599
46600
46600
46600
46601
46601
46601
46602
46602
46602
46603
46603
46603
46604
46604
46604
46605
46605
46605
46606
46606
46606
46607
46607
46607
46608
46608
46608
46609
46609
46609
46610
46610
46610
46611
46611
46612
46612
46612
46613
46613
46613
46614
46614
46614
46615
46615
46615
46616
46616
46616
46617
46617
46617
46618
46618
46618
46619
46619
46619
46620
46620
46620
46621
46621
46621
46622
46622
46622
46623
46623
46623
46624
46624
46624
46625
46625
46625
46626
46626
46626
46627
46627
46627
46628
46628
46628
46629
46629
46629
46630
46630
46630
46631
46631
46631
46632
46632
46632
46633
46633
46633
46634
46634
46634
46635
46635
46635
46636
46636
46636
46637
46637
46637
46638
46638
46638
46639
46639
46639
46640
46640
46640
46641
46641
46641
46642
46642
46642
46643
46643
46643
46644
46644
46644
46645
46645
46645
46646
46646
46646
46647
46647
46648
46648
46648
46649
46649
46649
46650
46650
46650
46651
46651
46651
46652
46652
46652
46653
46653
46653
46654
46654
46654
46655
46655
46655
46656
46656
46656
46657
46657
46657
46658
46658
46658
46659
46659
46659
46660
46660
46660
46661
46661
46661
46662
46662
46662
46663
46663
46663
46664
46664
46664
46665
46665
46665
46666
46666
46666
46667
46667
46667
46668
46668
46668
46669
46669
46669
46670
46670
46670
46671
46671
46671
46672
46672
46672
46673
46673
46673
46674
46674
46674
46675
46675
46675
46676
46676
46676
46677
46677
46677
46678
46678
46678
46679
46679
46679
46680
46680
46680
46681
46681
46681
46682
46682
46682
46683
46683
46684
46684
46685
46685
46686
46686
46687
46687
46688
46688
46689
46689
46690
46690
46691
46691
46692
46692
46693
46693
46694
46694
46695
46695
46696
46696
46697
46697
46698
46698
46699
46699
46700
46700
46701
46701
46702
46702
46703
46703
46704
46704
46705
46705
46706
46706
46707
46707
46708
46708
46709
46709
46710
46710
46711
46711
46712
46712
46713
46713
46714
46714
46715
46715
46716
46716
46717
46717
46718
46718
46719
46720
46720
46720
46721
46721
46721
46722
46722
46722
46723
46723
46723
46724
46724
46724
46725
46725
46725
46726
46726
46726
46727
46727
46727
46728
46728
46728
46729
46729
46729
46730
46730
46730
46731
46731
46731
46732
46732
46732
46733
46733
46733
46734
46734
46734
46735
46735
46735
46736
46736
46736
46737
46737
46737
46738
46738
46738
46739
46739
46739
46740
46740
46740
46741
46741
46741
46742
46742
46742
46743
46743
46743
46744
46744
46744
46745
46745
46745
46746
46746
46746
46747
46747
46747
46748
46748
46748
46749
46749
46749
46750
46750
46750
46751
46751
46751
46752
46752
46752
46753
46753
46753
46754
46754
46754
46755
46755
46756
46756
46756
46757
46757
46757
46758
46758
46758
46759
46759
46759
46760
46760
46760
46761
46761
46761
46762
46762
46762
46763
46763
46763
46764
46764
46764
46765
46765
46765
46766
46766
46766
46767
46767
46767
46768
46768
46768
46769
46769
46769
46770
46770
46770
46771
46771
46771
46772
46772
46772
46773
46773
46773
46774
46774
46774
46775
46775
46775
46776
46776
46776
46777
46777
46777
46778
46778
46778
46779
46779
46779
46780
46780
46780
46781
46781
46781
46782
46782
46782
46783
46783
46783
46784
46784
46784
46785
46785
46785
46786
46786
46786
46787
46787
46787
46788
46788
46788
46789
46789
46789
46790
46790
46790
46791
46791
46792
46792
46792
46793
46793
46793
46794
46794
46794
46795
46795
46795
46796
46796
46796
46797
46797
46797
46798
46798
46798
46799
46799
46799
46800
46800
46800
46801
46801
46801
46802
46802
46802
46803
46803
46803
46804
46804
46804
46805
46805
46805
46806
46806
46806
46807
46807
46807
46808
46808
46808
46809
46809
46809
46810
46810
46810
46811
46811
46811
46812
46812
46812
46813
46813
46813
46814
46814
46814
46815
46815
46815
46816
46816
46816
46817
46817
46817
46818
46818
46818
46819
46819
46819
46820
46820
46820
46821
46821
46821
46822
46822
46822
46823
46823
46823
46824
46824
46824
46825
46825
46825
46826
46826
46826
46827
46827
46828
46828
46828
46829
46829
46829
46830
46830
46830
46831
46831
46831
46832
46832
46832
46833
46833
46833
46834
46834
46834
46835
46835
46835
46836
46836
46836
46837
46837
46837
46838
46838
46838
46839
46839
46839
46840
46840
46840
46841
46841
46841
46842
46842
46842
46843
46843
46843
46844
46844
46844
46845
46845
46845
46846
46846
46846
46847
46847
46847
46848
46848
46848
46849
46849
46849
46850
46850
46850
46851
46851
46851
46852
46852
46852
46853
46853
46853
46854
46854
46854
46855
46855
46855
46856
46856
46856
46857
46857
46857
46858
46858
46858
46859
46859
46859
46860
46860
46860
46861
46861
46861
46862
46862
46862
46863
46863
46864
46864
46864
46865
46865
46865
46866
46866
46866
46867
46867
46867
46868
46868
46868
46869
46869
46869
46870
46870
46870
46871
46871
46871
46872
46872
46872
46873
46873
46873
46874
46874
46874
46875
46875
46875
46876
46876
46876
46877
46877
46877
46878
46878
46878
46879
46879
46879
46880
46880
46880
46881
46881
46881
46882
46882
46882
46883
46883
46883
46884
46884
46884
46885
46885
46885
46886
46886
46886
46887
46887
46887
46888
46888
46888
46889
46889
46889
46890
46890
46890
46891
46891
46891
46892
46892
46892
46893
46893
46893
46894
46894
46894
46895
46895
46895
46896
46896
46896
46897
46897
46897
46898
46898
46898
46899
46899
46900
46900
46900
46901
46901
46901
46902
46902
46902
46903
46903
46903
46904
46904
46904
46905
46905
46905
46906
46906
46906
46907
46907
46907
46908
46908
46908
46909
46909
46909
46910
46910
46910
46911
46911
46911
46912
46912
46912
46913
46913
46913
46914
46914
46914
46915
46915
46915
46916
46916
46916
46917
46917
46917
46918
46918
46918
46919
46919
46919
46920
46920
46920
46921
46921
46921
46922
46922
46922
46923
46923
46923
46924
46924
46924
46925
46925
46925
46926
46926
46926
46927
46927
46927
46928
46928
46928
46929
46929
46929
46930
46930
46930
46931
46931
46931
46932
46932
46932
46933
46933
46933
46934
46934
46934
46935
46935
46936
46936
46936
46937
46937
46937
46938
46938
46938
46939
46939
46939
46940
46940
46940
46941
46941
46941
46942
46942
46942
46943
46943
46943
46944
46944
46944
46945
46945
46945
46946
46946
46946
46947
46947
46947
46948
46948
46948
46949
46949
46949
46950
46950
46950
46951
46951
46951
46952
46952
46952
46953
46953
46953
46954
46954
46954
46955
46955
46955
46956
46956
46956
46957
46957
46957
46958
46958
46958
46959
46959
46959
46960
46960
46960
46961
46961
46961
46962
46962
46962
46963
46963
46963
46964
46964
46964
46965
46965
46965
46966
46966
46966
46967
46967
46967
46968
46968
46968
46969
46969
46969
46970
46970
46970
46971
46971
46972
46972
46972
46973
46973
46973
46974
46974
46974
46975
46975
46975
46976
46976
46976
46977
46977
46977
46978
46978
46978
46979
46979
46979
46980
46980
46980
46981
46981
46981
46982
46982
46982
46983
46983
46983
46984
46984
46984
46985
46985
46985
46986
46986
46986
46987
46987
46987
46988
46988
46988
46989
46989
46989
46990
46990
46990
46991
46991
46991
46992
46992
46992
46993
46993
46993
46994
46994
46994
46995
46995
46995
46996
46996
46996
46997
46997
46997
46998
46998
46998
46999
46999
46999
47000
47000
47000
47001
47001
47001
47002
47002
47002
47003
47003
47003
47004
47004
47004
47005
47005
47005
47006
47006
47006
47007
47007
47008
47008
47008
47009
47009
47009
47010
47010
47010
47011
47011
47011
47012
47012
47012
47013
47013
47013
47014
47014
47014
47015
47015
47015
47016
47016
47016
47017
47017
47017
47018
47018
47018
47019
47019
47019
47020
47020
47020
47021
47021
47021
47022
47022
47022
47023
47023
47023
47024
47024
47024
47025
47025
47025
47026
47026
47026
47027
47027
47027
47028
47028
47028
47029
47029
47029
47030
47030
47030
47031
47031
47031
47032
47032
47032
47033
47033
47033
47034
47034
47034
47035
47035
47035
47036
47036
47036
47037
47037
47037
47038
47038
47038
47039
47039
47039
47040
47040
47040
47041
47041
47041
47042
47042
47042
47043
47043
47044
47044
47045
47045
47046
47046
47047
47047
47048
47048
47049
47049
47050
47050
47051
47051
47052
47052
47053
47053
47054
47054
47055
47055
47056
47056
47057
47057
47058
47058
47059
47059
47060
47060
47061
47061
47062
47062
47063
47063
47064
47064
47065
47065
47066
47066
47067
47067
47068
47068
47069
47069
47070
47070
47071
47071
47072
47072
47073
47073
47074
47074
47075
47075
47076
47076
47077
47077
47078
47078
47079
47080
47080
47080
47081
47081
47081
47082
47082
47082
47083
47083
47083
47084
47084
47084
47085
47085
47085
47086
47086
47086
47087
47087
47087
47088
47088
47088
47089
47089
47089
47090
47090
47090
47091
47091
47091
47092
47092
47092
47093
47093
47093
47094
47094
47094
47095
47095
47095
47096
47096
47096
47097
47097
47097
47098
47098
47098
47099
47099
47099
47100
47100
47100
47101
47101
47101
47102
47102
47102
47103
47103
47103
47104
47104
47104
47105
47105
47105
47106
47106
47106
47107
47107
47107
47108
47108
47108
47109
47109
47109
47110
47110
47110
47111
47111
47111
47112
47112
47112
47113
47113
47113
47114
47114
47114
47115
47115
47116
47116
47116
47117
47117
47117
47118
47118
47118
47119
47119
47119
47120
47120
47120
47121
47121
47121
47122
47122
47122
47123
47123
47123
47124
47124
47124
47125
47125
47125
47126
47126
47126
47127
47127
47127
47128
47128
47128
47129
47129
47129
47130
47130
47130
47131
47131
47131
47132
47132
47132
47133
47133
47133
47134
47134
47134
47135
47135
47135
47136
47136
47136
47137
47137
47137
47138
47138
47138
47139
47139
47139
47140
47140
47140
47141
47141
47141
47142
47142
47142
47143
47143
47143
47144
47144
47144
47145
47145
47145
47146
47146
47146
47147
47147
47147
47148
47148
47148
47149
47149
47149
47150
47150
47150
47151
47151
47152
47152
47152
47153
47153
47153
47154
47154
47154
47155
47155
47155
47156
47156
47156
47157
47157
47157
47158
47158
47158
47159
47159
47159
47160
47160
47160
47161
47161
47161
47162
47162
47162
47163
47163
47163
47164
47164
47164
47165
47165
47165
47166
47166
47166
47167
47167
47167
47168
47168
47168
47169
47169
47169
47170
47170
47170
47171
47171
47171
47172
47172
47172
47173
47173
47173
47174
47174
47174
47175
47175
47175
47176
47176
47176
47177
47177
47177
47178
47178
47178
47179
47179
47179
47180
47180
47180
47181
47181
47181
47182
47182
47182
47183
47183
47183
47184
47184
47184
47185
47185
47185
47186
47186
47186
47187
47187
47188
47188
47188
47189
47189
47189
47190
47190
47190
47191
47191
47191
47192
47192
47192
47193
47193
47193
47194
47194
47194
47195
47195
47195
47196
47196
47196
47197
47197
47197
47198
47198
47198
47199
47199
47199
47200
47200
47200
47201
47201
47201
47202
47202
47202
47203
47203
47203
47204
47204
47204
47205
47205
47205
47206
47206
47206
47207
47207
47207
47208
47208
47208
47209
47209
47209
47210
47210
47210
47211
47211
47211
47212
47212
47212
47213
47213
47213
47214
47214
47214
47215
47215
47215
47216
47216
47216
47217
47217
47217
47218
47218
47218
47219
47219
47219
47220
47220
47220
47221
47221
47221
47222
47222
47222
47223
47223
47224
47224
47224
47225
47225
47225
47226
47226
47226
47227
47227
47227
47228
47228
47228
47229
47229
47229
47230
47230
47230
47231
47231
47231
47232
47232
47232
47233
47233
47233
47234
47234
47234
47235
47235
47235
47236
47236
47236
47237
47237
47237
47238
47238
47238
47239
47239
47239
47240
47240
47240
47241
47241
47241
47242
47242
47242
47243
47243
47243
47244
47244
47244
47245
47245
47245
47246
47246
47246
47247
47247
47247
47248
47248
47248
47249
47249
47249
47250
47250
47250
47251
47251
47251
47252
47252
47252
47253
47253
47253
47254
47254
47254
47255
47255
47255
47256
47256
47256
47257
47257
47257
47258
47258
47258
47259
47259
47260
47260
47260
47261
47261
47261
47262
47262
47262
47263
47263
47263
47264
47264
47264
47265
47265
47265
47266
47266
47266
47267
47267
47267
47268
47268
47268
47269
47269
47269
47270
47270
47270
47271
47271
47271
47272
47272
47272
47273
47273
47273
47274
47274
47274
47275
47275
47275
47276
47276
47276
47277
47277
47277
47278
47278
47278
47279
47279
47279
47280
47280
47280
47281
47281
47281
47282
47282
47282
47283
47283
47283
47284
47284
47284
47285
47285
47285
47286
47286
47286
47287
47287
47287
47288
47288
47288
47289
47289
47289
47290
47290
47290
47291
47291
47291
47292
47292
47292
47293
47293
47293
47294
47294
47294
47295
47295
47296
47296
47296
47297
47297
47297
47298
47298
47298
47299
47299
47299
47300
47300
47300
47301
47301
47301
47302
47302
47302
47303
47303
47303
47304
47304
47304
47305
47305
47305
47306
47306
47306
47307
47307
47307
47308
47308
47308
47309
47309
47309
47310
47310
47310
47311
47311
47311
47312
47312
47312
47313
47313
47313
47314
47314
47314
47315
47315
47315
47316
47316
47316
47317
47317
47317
47318
47318
47318
47319
47319
47319
47320
47320
47320
47321
47321
47321
47322
47322
47322
47323
47323
47323
47324
47324
47324
47325
47325
47325
47326
47326
47326
47327
47327
47327
47328
47328
47328
47329
47329
47329
47330
47330
47330
47331
47331
47332
47332
47332
47333
47333
47333
47334
47334
47334
47335
47335
47335
47336
47336
47336
47337
47337
47337
47338
47338
47338
47339
47339
47339
47340
47340
47340
47341
47341
47341
47342
47342
47342
47343
47343
47343
47344
47344
47344
47345
47345
47345
47346
47346
47346
47347
47347
47347
47348
47348
47348
47349
47349
47349
47350
47350
47350
47351
47351
47351
47352
47352
47352
47353
47353
47353
47354
47354
47354
47355
47355
47355
47356
47356
47356
47357
47357
47357
47358
47358
47358
47359
47359
47359
47360
47360
47360
47361
47361
47361
47362
47362
47362
47363
47363
47363
47364
47364
47364
47365
47365
47365
47366
47366
47366
47367
47367
47368
47368
47368
47369
47369
47369
47370
47370
47370
47371
47371
47371
47372
47372
47372
47373
47373
47373
47374
47374
47374
47375
47375
47375
47376
47376
47376
47377
47377
47377
47378
47378
47378
47379
47379
47379
47380
47380
47380
47381
47381
47381
47382
47382
47382
47383
47383
47383
47384
47384
47384
47385
47385
47385
47386
47386
47386
47387
47387
47387
47388
47388
47388
47389
47389
47389
47390
47390
47390
47391
47391
47391
47392
47392
47392
47393
47393
47393
47394
47394
47394
47395
47395
47395
47396
47396
47396
47397
47397
47397
47398
47398
47398
47399
47399
47399
47400
47400
47400
47401
47401
47401
47402
47402
47402
47403
47403
47404
47404
47405
47405
47406
47406
47407
47407
47408
47408
47409
47409
47410
47410
47411
47411
47412
47412
47413
47413
47414
47414
47415
47415
47416
47416
47417
47417
47418
47418
47419
47419
47420
47420
47421
47421
47422
47422
47423
47423
47424
47424
47425
47425
47426
47426
47427
47427
47428
47428
47429
47429
47430
47430
47431
47431
47432
47432
47433
47433
47434
47434
47435
47435
47436
47436
47437
47437
47438
47438
47439
47440
47440
47440
47441
47441
47441
47442
47442
47442
47443
47443
47443
47444
47444
47444
47445
47445
47445
47446
47446
47446
47447
47447
47447
47448
47448
47448
47449
47449
47449
47450
47450
47450
47451
47451
47451
47452
47452
47452
47453
47453
47453
47454
47454
47454
47455
47455
47455
47456
47456
47456
47457
47457
47457
47458
47458
47458
47459
47459
47459
47460
47460
47460
47461
47461
47461
47462
47462
47462
47463
47463
47463
47464
47464
47464
47465
47465
47465
47466
47466
47466
47467
47467
47467
47468
47468
47468
47469
47469
47469
47470
47470
47470
47471
47471
47471
47472
47472
47472
47473
47473
47473
47474
47474
47474
47475
47475
47476
47476
47476
47477
47477
47477
47478
47478
47478
47479
47479
47479
47480
47480
47480
47481
47481
47481
47482
47482
47482
47483
47483
47483
47484
47484
47484
47485
47485
47485
47486
47486
47486
47487
47487
47487
47488
47488
47488
47489
47489
47489
47490
47490
47490
47491
47491
47491
47492
47492
47492
47493
47493
47493
47494
47494
47494
47495
47495
47495
47496
47496
47496
47497
47497
47497
47498
47498
47498
47499
47499
47499
47500
47500
47500
47501
47501
47501
47502
47502
47502
47503
47503
47503
47504
47504
47504
47505
47505
47505
47506
47506
47506
47507
47507
47507
47508
47508
47508
47509
47509
47509
47510
47510
47510
47511
47511
47512
47512
47512
47513
47513
47513
47514
47514
47514
47515
47515
47515
47516
47516
47516
47517
47517
47517
47518
47518
47518
47519
47519
47519
47520
47520
47520
47521
47521
47521
47522
47522
47522
47523
47523
47523
47524
47524
47524
47525
47525
47525
47526
47526
47526
47527
47527
47527
47528
47528
47528
47529
47529
47529
47530
47530
47530
47531
47531
47531
47532
47532
47532
47533
47533
47533
47534
47534
47534
47535
47535
47535
47536
47536
47536
47537
47537
47537
47538
47538
47538
47539
47539
47539
47540
47540
47540
47541
47541
47541
47542
47542
47542
47543
47543
47543
47544
47544
47544
47545
47545
47545
47546
47546
47546
47547
47547
47548
47548
47548
47549
47549
47549
47550
47550
47550
47551
47551
47551
47552
47552
47552
47553
47553
47553
47554
47554
47554
47555
47555
47555
47556
47556
47556
47557
47557
47557
47558
47558
47558
47559
47559
47559
47560
47560
47560
47561
47561
47561
47562
47562
47562
47563
47563
47563
47564
47564
47564
47565
47565
47565
47566
47566
47566
47567
47567
47567
47568
47568
47568
47569
47569
47569
47570
47570
47570
47571
47571
47571
47572
47572
47572
47573
47573
47573
47574
47574
47574
47575
47575
47575
47576
47576
47576
47577
47577
47577
47578
47578
47578
47579
47579
47579
47580
47580
47580
47581
47581
47581
47582
47582
47582
47583
47583
47584
47584
47584
47585
47585
47585
47586
47586
47586
47587
47587
47587
47588
47588
47588
47589
47589
47589
47590
47590
47590
47591
47591
47591
47592
47592
47592
47593
47593
47593
47594
47594
47594
47595
47595
47595
47596
47596
47596
47597
47597
47597
47598
47598
47598
47599
47599
47599
47600
47600
47600
47601
47601
47601
47602
47602
47602
47603
47603
47603
47604
47604
47604
47605
47605
47605
47606
47606
47606
47607
47607
47607
47608
47608
47608
47609
47609
47609
47610
47610
47610
47611
47611
47611
47612
47612
47612
47613
47613
47613
47614
47614
47614
47615
47615
47615
47616
47616
47616
47617
47617
47617
47618
47618
47618
47619
47619
47620
47620
47620
47621
47621
47621
47622
47622
47622
47623
47623
47623
47624
47624
47624
47625
47625
47625
47626
47626
47626
47627
47627
47627
47628
47628
47628
47629
47629
47629
47630
47630
47630
47631
47631
47631
47632
47632
47632
47633
47633
47633
47634
47634
47634
47635
47635
47635
47636
47636
47636
47637
47637
47637
47638
47638
47638
47639
47639
47639
47640
47640
47640
47641
47641
47641
47642
47642
47642
47643
47643
47643
47644
47644
47644
47645
47645
47645
47646
47646
47646
47647
47647
47647
47648
47648
47648
47649
47649
47649
47650
47650
47650
47651
47651
47651
47652
47652
47652
47653
47653
47653
47654
47654
47654
47655
47655
47656
47656
47656
47657
47657
47657
47658
47658
47658
47659
47659
47659
47660
47660
47660
47661
47661
47661
47662
47662
47662
47663
47663
47663
47664
47664
47664
47665
47665
47665
47666
47666
47666
47667
47667
47667
47668
47668
47668
47669
47669
47669
47670
47670
47670
47671
47671
47671
47672
47672
47672
47673
47673
47673
47674
47674
47674
47675
47675
47675
47676
47676
47676
47677
47677
47677
47678
47678
47678
47679
47679
47679
47680
47680
47680
47681
47681
47681
47682
47682
47682
47683
47683
47683
47684
47684
47684
47685
47685
47685
47686
47686
47686
47687
47687
47687
47688
47688
47688
47689
47689
47689
47690
47690
47690
47691
47691
47692
47692
47692
47693
47693
47693
47694
47694
47694
47695
47695
47695
47696
47696
47696
47697
47697
47697
47698
47698
47698
47699
47699
47699
47700
47700
47700
47701
47701
47701
47702
47702
47702
47703
47703
47703
47704
47704
47704
47705
47705
47705
47706
47706
47706
47707
47707
47707
47708
47708
47708
47709
47709
47709
47710
47710
47710
47711
47711
47711
47712
47712
47712
47713
47713
47713
47714
47714
47714
47715
47715
47715
47716
47716
47716
47717
47717
47717
47718
47718
47718
47719
47719
47719
47720
47720
47720
47721
47721
47721
47722
47722
47722
47723
47723
47723
47724
47724
47724
47725
47725
47725
47726
47726
47726
47727
47727
47728
47728
47728
47729
47729
47729
47730
47730
47730
47731
47731
47731
47732
47732
47732
47733
47733
47733
47734
47734
47734
47735
47735
47735
47736
47736
47736
47737
47737
47737
47738
47738
47738
47739
47739
47739
47740
47740
47740
47741
47741
47741
47742
47742
47742
47743
47743
47743
47744
47744
47744
47745
47745
47745
47746
47746
47746
47747
47747
47747
47748
47748
47748
47749
47749
47749
47750
47750
47750
47751
47751
47751
47752
47752
47752
47753
47753
47753
47754
47754
47754
47755
47755
47755
47756
47756
47756
47757
47757
47757
47758
47758
47758
47759
47759
47759
47760
47760
47760
47761
47761
47761
47762
47762
47762
47763
47763
47764
47764
47765
47765
47766
47766
47767
47767
47768
47768
47769
47769
47770
47770
47771
47771
47772
47772
47773
47773
47774
47774
47775
47775
47776
47776
47777
47777
47778
47778
47779
47779
47780
47780
47781
47781
47782
47782
47783
47783
47784
47784
47785
47785
47786
47786
47787
47787
47788
47788
47789
47789
47790
47790
47791
47791
47792
47792
47793
47793
47794
47794
47795
47795
47796
47796
47797
47797
47798
47798
47799
47800
47800
47800
47801
47801
47801
47802
47802
47802
47803
47803
47803
47804
47804
47804
47805
47805
47805
47806
47806
47806
47807
47807
47807
47808
47808
47808
47809
47809
47809
47810
47810
47810
47811
47811
47811
47812
47812
47812
47813
47813
47813
47814
47814
47814
47815
47815
47815
47816
47816
47816
47817
47817
47817
47818
47818
47818
47819
47819
47819
47820
47820
47820
47821
47821
47821
47822
47822
47822
47823
47823
47823
47824
47824
47824
47825
47825
47825
47826
47826
47826
47827
47827
47827
47828
47828
47828
47829
47829
47829
47830
47830
47830
47831
47831
47831
47832
47832
47832
47833
47833
47833
47834
47834
47834
47835
47835
47836
47836
47836
47837
47837
47837
47838
47838
47838
47839
47839
47839
47840
47840
47840
47841
47841
47841
47842
47842
47842
47843
47843
47843
47844
47844
47844
47845
47845
47845
47846
47846
47846
47847
47847
47847
47848
47848
47848
47849
47849
47849
47850
47850
47850
47851
47851
47851
47852
47852
47852
47853
47853
47853
47854
47854
47854
47855
47855
47855
47856
47856
47856
47857
47857
47857
47858
47858
47858
47859
47859
47859
47860
47860
47860
47861
47861
47861
47862
47862
47862
47863
47863
47863
47864
47864
47864
47865
47865
47865
47866
47866
47866
47867
47867
47867
47868
47868
47868
47869
47869
47869
47870
47870
47870
47871
47871
47872
47872
47872
47873
47873
47873
47874
47874
47874
47875
47875
47875
47876
47876
47876
47877
47877
47877
47878
47878
47878
47879
47879
47879
47880
47880
47880
47881
47881
47881
47882
47882
47882
47883
47883
47883
47884
47884
47884
47885
47885
47885
47886
47886
47886
47887
47887
47887
47888
47888
47888
47889
47889
47889
47890
47890
47890
47891
47891
47891
47892
47892
47892
47893
47893
47893
47894
47894
47894
47895
47895
47895
47896
47896
47896
47897
47897
47897
47898
47898
47898
47899
47899
47899
47900
47900
47900
47901
47901
47901
47902
47902
47902
47903
47903
47903
47904
47904
47904
47905
47905
47905
47906
47906
47906
47907
47907
47908
47908
47908
47909
47909
47909
47910
47910
47910
47911
47911
47911
47912
47912
47912
47913
47913
47913
47914
47914
47914
47915
47915
47915
47916
47916
47916
47917
47917
47917
47918
47918
47918
47919
47919
47919
47920
47920
47920
47921
47921
47921
47922
47922
47922
47923
47923
47923
47924
47924
47924
47925
47925
47925
47926
47926
47926
47927
47927
47927
47928
47928
47928
47929
47929
47929
47930
47930
47930
47931
47931
47931
47932
47932
47932
47933
47933
47933
47934
47934
47934
47935
47935
47935
47936
47936
47936
47937
47937
47937
47938
47938
47938
47939
47939
47939
47940
47940
47940
47941
47941
47941
47942
47942
47942
47943
47943
47944
47944
47944
47945
47945
47945
47946
47946
47946
47947
47947
47947
47948
47948
47948
47949
47949
47949
47950
47950
47950
47951
47951
47951
47952
47952
47952
47953
47953
47953
47954
47954
47954
47955
47955
47955
47956
47956
47956
47957
47957
47957
47958
47958
47958
47959
47959
47959
47960
47960
47960
47961
47961
47961
47962
47962
47962
47963
47963
47963
47964
47964
47964
47965
47965
47965
47966
47966
47966
47967
47967
47967
47968
47968
47968
47969
47969
47969
47970
47970
47970
47971
47971
47971
47972
47972
47972
47973
47973
47973
47974
47974
47974
47975
47975
47975
47976
47976
47976
47977
47977
47977
47978
47978
47978
47979
47979
47980
47980
47980
47981
47981
47981
47982
47982
47982
47983
47983
47983
47984
47984
47984
47985
47985
47985
47986
47986
47986
47987
47987
47987
47988
47988
47988
47989
47989
47989
47990
47990
47990
47991
47991
47991
47992
47992
47992
47993
47993
47993
47994
47994
47994
47995
47995
47995
47996
47996
47996
47997
47997
47997
47998
47998
47998
47999
47999
47999
48000
48000
48000
48001
48001
48001
48002
48002
48002
48003
48003
48003
48004
48004
48004
48005
48005
48005
48006
48006
48006
48007
48007
48007
48008
48008
48008
48009
48009
48009
48010
48010
48010
48011
48011
48011
48012
48012
48012
48013
48013
48013
48014
48014
48014
48015
48015
48016
48016
48016
48017
48017
48017
48018
48018
48018
48019
48019
48019
48020
48020
48020
48021
48021
48021
48022
48022
48022
48023
48023
48023
48024
48024
48024
48025
48025
48025
48026
48026
48026
48027
48027
48027
48028
48028
48028
48029
48029
48029
48030
48030
48030
48031
48031
48031
48032
48032
48032
48033
48033
48033
48034
48034
48034
48035
48035
48035
48036
48036
48036
48037
48037
48037
48038
48038
48038
48039
48039
48039
48040
48040
48040
48041
48041
48041
48042
48042
48042
48043
48043
48043
48044
48044
48044
48045
48045
48045
48046
48046
48046
48047
48047
48047
48048
48048
48048
48049
48049
48049
48050
48050
48050
48051
48051
48052
48052
48052
48053
48053
48053
48054
48054
48054
48055
48055
48055
48056
48056
48056
48057
48057
48057
48058
48058
48058
48059
48059
48059
48060
48060
48060
48061
48061
48061
48062
48062
48062
48063
48063
48063
48064
48064
48064
48065
48065
48065
48066
48066
48066
48067
48067
48067
48068
48068
48068
48069
48069
48069
48070
48070
48070
48071
48071
48071
48072
48072
48072
48073
48073
48073
48074
48074
48074
48075
48075
48075
48076
48076
48076
48077
48077
48077
48078
48078
48078
48079
48079
48079
48080
48080
48080
48081
48081
48081
48082
48082
48082
48083
48083
48083
48084
48084
48084
48085
48085
48085
48086
48086
48086
48087
48087
48088
48088
48088
48089
48089
48089
48090
48090
48090
48091
48091
48091
48092
48092
48092
48093
48093
48093
48094
48094
48094
48095
48095
48095
48096
48096
48096
48097
48097
48097
48098
48098
48098
48099
48099
48099
48100
48100
48100
48101
48101
48101
48102
48102
48102
48103
48103
48103
48104
48104
48104
48105
48105
48105
48106
48106
48106
48107
48107
48107
48108
48108
48108
48109
48109
48109
48110
48110
48110
48111
48111
48111
48112
48112
48112
48113
48113
48113
48114
48114
48114
48115
48115
48115
48116
48116
48116
48117
48117
48117
48118
48118
48118
48119
48119
48119
48120
48120
48120
48121
48121
48121
48122
48122
48122
48123
48123
48124
48124
48125
48125
48126
48126
48127
48127
48128
48128
48129
48129
48130
48130
48131
48131
48132
48132
48133
48133
48134
48134
48135
48135
48136
48136
48137
48137
48138
48138
48139
48139
48140
48140
48141
48141
48142
48142
48143
48143
48144
48144
48145
48145
48146
48146
48147
48147
48148
48148
48149
48149
48150
48150
48151
48151
48152
48152
48153
48153
48154
48154
48155
48155
48156
48156
48157
48157
48158
48158
48159
48160
48160
48160
48161
48161
48161
48162
48162
48162
48163
48163
48163
48164
48164
48164
48165
48165
48165
48166
48166
48166
48167
48167
48167
48168
48168
48168
48169
48169
48169
48170
48170
48170
48171
48171
48171
48172
48172
48172
48173
48173
48173
48174
48174
48174
48175
48175
48175
48176
48176
48176
48177
48177
48177
48178
48178
48178
48179
48179
48179
48180
48180
48180
48181
48181
48181
48182
48182
48182
48183
48183
48183
48184
48184
48184
48185
48185
48185
48186
48186
48186
48187
48187
48187
48188
48188
48188
48189
48189
48189
48190
48190
48190
48191
48191
48191
48192
48192
48192
48193
48193
48193
48194
48194
48194
48195
48195
48196
48196
48196
48197
48197
48197
48198
48198
48198
48199
48199
48199
48200
48200
48200
48201
48201
48201
48202
48202
48202
48203
48203
48203
48204
48204
48204
48205
48205
48205
48206
48206
48206
48207
48207
48207
48208
48208
48208
48209
48209
48209
48210
48210
48210
48211
48211
48211
48212
48212
48212
48213
48213
48213
48214
48214
48214
48215
48215
48215
48216
48216
48216
48217
48217
48217
48218
48218
48218
48219
48219
48219
48220
48220
48220
48221
48221
48221
48222
48222
48222
48223
48223
48223
48224
48224
48224
48225
48225
48225
48226
48226
48226
48227
48227
48227
48228
48228
48228
48229
48229
48229
48230
48230
48230
48231
48231
48232
48232
48232
48233
48233
48233
48234
48234
48234
48235
48235
48235
48236
48236
48236
48237
48237
48237
48238
48238
48238
48239
48239
48239
48240
48240
48240
48241
48241
48241
48242
48242
48242
48243
48243
48243
48244
48244
48244
48245
48245
48245
48246
48246
48246
48247
48247
48247
48248
48248
48248
48249
48249
48249
48250
48250
48250
48251
48251
48251
48252
48252
48252
48253
48253
48253
48254
48254
48254
48255
48255
48255
48256
48256
48256
48257
48257
48257
48258
48258
48258
48259
48259
48259
48260
48260
48260
48261
48261
48261
48262
48262
48262
48263
48263
48263
48264
48264
48264
48265
48265
48265
48266
48266
48266
48267
48267
48268
48268
48268
48269
48269
48269
48270
48270
48270
48271
48271
48271
48272
48272
48272
48273
48273
48273
48274
48274
48274
48275
48275
48275
48276
48276
48276
48277
48277
48277
48278
48278
48278
48279
48279
48279
48280
48280
48280
48281
48281
48281
48282
48282
48282
48283
48283
48283
48284
48284
48284
48285
48285
48285
48286
48286
48286
48287
48287
48287
48288
48288
48288
48289
48289
48289
48290
48290
48290
48291
48291
48291
48292
48292
48292
48293
48293
48293
48294
48294
48294
48295
48295
48295
48296
48296
48296
48297
48297
48297
48298
48298
48298
48299
48299
48299
48300
48300
48300
48301
48301
48301
48302
48302
48302
48303
48303
48304
48304
48304
48305
48305
48305
48306
48306
48306
48307
48307
48307
48308
48308
48308
48309
48309
48309
48310
48310
48310
48311
48311
48311
48312
48312
48312
48313
48313
48313
48314
48314
48314
48315
48315
48315
48316
48316
48316
48317
48317
48317
48318
48318
48318
48319
48319
48319
48320
48320
48320
48321
48321
48321
48322
48322
48322
48323
48323
48323
48324
48324
48324
48325
48325
48325
48326
48326
48326
48327
48327
48327
48328
48328
48328
48329
48329
48329
48330
48330
48330
48331
48331
48331
48332
48332
48332
48333
48333
48333
48334
48334
48334
48335
48335
48335
48336
48336
48336
48337
48337
48337
48338
48338
48338
48339
48339
48340
48340
48340
48341
48341
48341
48342
48342
48342
48343
48343
48343
48344
48344
48344
48345
48345
48345
48346
48346
48346
48347
48347
48347
48348
48348
48348
48349
48349
48349
48350
48350
48350
48351
48351
48351
48352
48352
48352
48353
48353
48353
48354
48354
48354
48355
48355
48355
48356
48356
48356
48357
48357
48357
48358
48358
48358
48359
48359
48359
48360
48360
48360
48361
48361
48361
48362
48362
48362
48363
48363
48363
48364
48364
48364
48365
48365
48365
48366
48366
48366
48367
48367
48367
48368
48368
48368
48369
48369
48369
48370
48370
48370
48371
48371
48371
48372
48372
48372
48373
48373
48373
48374
48374
48374
48375
48375
48376
48376
48376
48377
48377
48377
48378
48378
48378
48379
48379
48379
48380
48380
48380
48381
48381
48381
48382
48382
48382
48383
48383
48383
48384
48384
48384
48385
48385
48385
48386
48386
48386
48387
48387
48387
48388
48388
48388
48389
48389
48389
48390
48390
48390
48391
48391
48391
48392
48392
48392
48393
48393
48393
48394
48394
48394
48395
48395
48395
48396
48396
48396
48397
48397
48397
48398
48398
48398
48399
48399
48399
48400
48400
48400
48401
48401
48401
48402
48402
48402
48403
48403
48403
48404
48404
48404
48405
48405
48405
48406
48406
48406
48407
48407
48407
48408
48408
48408
48409
48409
48409
48410
48410
48410
48411
48411
48412
48412
48412
48413
48413
48413
48414
48414
48414
48415
48415
48415
48416
48416
48416
48417
48417
48417
48418
48418
48418
48419
48419
48419
48420
48420
48420
48421
48421
48421
48422
48422
48422
48423
48423
48423
48424
48424
48424
48425
48425
48425
48426
48426
48426
48427
48427
48427
48428
48428
48428
48429
48429
48429
48430
48430
48430
48431
48431
48431
48432
48432
48432
48433
48433
48433
48434
48434
48434
48435
48435
48435
48436
48436
48436
48437
48437
48437
48438
48438
48438
48439
48439
48439
48440
48440
48440
48441
48441
48441
48442
48442
48442
48443
48443
48443
48444
48444
48444
48445
48445
48445
48446
48446
48446
48447
48447
48448
48448
48448
48449
48449
48449
48450
48450
48450
48451
48451
48451
48452
48452
48452
48453
48453
48453
48454
48454
48454
48455
48455
48455
48456
48456
48456
48457
48457
48457
48458
48458
48458
48459
48459
48459
48460
48460
48460
48461
48461
48461
48462
48462
48462
48463
48463
48463
48464
48464
48464
48465
48465
48465
48466
48466
48466
48467
48467
48467
48468
48468
48468
48469
48469
48469
48470
48470
48470
48471
48471
48471
48472
48472
48472
48473
48473
48473
48474
48474
48474
48475
48475
48475
48476
48476
48476
48477
48477
48477
48478
48478
48478
48479
48479
48479
48480
48480
48480
48481
48481
48481
48482
48482
48482
48483
48483
48484
48484
48485
48485
48486
48486
48487
48487
48488
48488
48489
48489
48490
48490
48491
48491
48492
48492
48493
48493
48494
48494
48495
48495
48496
48496
48497
48497
48498
48498
48499
48499
48500
48500
48501
48501
48502
48502
48503
48503
48504
48504
48505
48505
48506
48506
48507
48507
48508
48508
48509
48509
48510
48510
48511
48511
48512
48512
48513
48513
48514
48514
48515
48515
48516
48516
48517
48517
48518
48518
48519
48520
48520
48520
48521
48521
48521
48522
48522
48522
48523
48523
48523
48524
48524
48524
48525
48525
48525
48526
48526
48526
48527
48527
48527
48528
48528
48528
48529
48529
48529
48530
48530
48530
48531
48531
48531
48532
48532
48532
48533
48533
48533
48534
48534
48534
48535
48535
48535
48536
48536
48536
48537
48537
48537
48538
48538
48538
48539
48539
48539
48540
48540
48540
48541
48541
48541
48542
48542
48542
48543
48543
48543
48544
48544
48544
48545
48545
48545
48546
48546
48546
48547
48547
48547
48548
48548
48548
48549
48549
48549
48550
48550
48550
48551
48551
48551
48552
48552
48552
48553
48553
48553
48554
48554
48554
48555
48555
48556
48556
48556
48557
48557
48557
48558
48558
48558
48559
48559
48559
48560
48560
48560
48561
48561
48561
48562
48562
48562
48563
48563
48563
48564
48564
48564
48565
48565
48565
48566
48566
48566
48567
48567
48567
48568
48568
48568
48569
48569
48569
48570
48570
48570
48571
48571
48571
48572
48572
48572
48573
48573
48573
48574
48574
48574
48575
48575
48575
48576
48576
48576
48577
48577
48577
48578
48578
48578
48579
48579
48579
48580
48580
48580
48581
48581
48581
48582
48582
48582
48583
48583
48583
48584
48584
48584
48585
48585
48585
48586
48586
48586
48587
48587
48587
48588
48588
48588
48589
48589
48589
48590
48590
48590
48591
48591
48592
48592
48592
48593
48593
48593
48594
48594
48594
48595
48595
48595
48596
48596
48596
48597
48597
48597
48598
48598
48598
48599
48599
48599
48600
48600
48600
48601
48601
48601
48602
48602
48602
48603
48603
48603
48604
48604
48604
48605
48605
48605
48606
48606
48606
48607
48607
48607
48608
48608
48608
48609
48609
48609
48610
48610
48610
48611
48611
48611
48612
48612
48612
48613
48613
48613
48614
48614
48614
48615
48615
48615
48616
48616
48616
48617
48617
48617
48618
48618
48618
48619
48619
48619
48620
48620
48620
48621
48621
48621
48622
48622
48622
48623
48623
48623
48624
48624
48624
48625
48625
48625
48626
48626
48626
48627
48627
48628
48628
48628
48629
48629
48629
48630
48630
48630
48631
48631
48631
48632
48632
48632
48633
48633
48633
48634
48634
48634
48635
48635
48635
48636
48636
48636
48637
48637
48637
48638
48638
48638
48639
48639
48639
48640
48640
48640
48641
48641
48641
48642
48642
48642
48643
48643
48643
48644
48644
48644
48645
48645
48645
48646
48646
48646
48647
48647
48647
48648
48648
48648
48649
48649
48649
48650
48650
48650
48651
48651
48651
48652
48652
48652
48653
48653
48653
48654
48654
48654
48655
48655
48655
48656
48656
48656
48657
48657
48657
48658
48658
48658
48659
48659
48659
48660
48660
48660
48661
48661
48661
48662
48662
48662
48663
48663
48664
48664
48664
48665
48665
48665
48666
48666
48666
48667
48667
48667
48668
48668
48668
48669
48669
48669
48670
48670
48670
48671
48671
48671
48672
48672
48672
48673
48673
48673
48674
48674
48674
48675
48675
48675
48676
48676
48676
48677
48677
48677
48678
48678
48678
48679
48679
48679
48680
48680
48680
48681
48681
48681
48682
48682
48682
48683
48683
48683
48684
48684
48684
48685
48685
48685
48686
48686
48686
48687
48687
48687
48688
48688
48688
48689
48689
48689
48690
48690
48690
48691
48691
48691
48692
48692
48692
48693
48693
48693
48694
48694
48694
48695
48695
48695
48696
48696
48696
48697
48697
48697
48698
48698
48698
48699
48699
48700
48700
48700
48701
48701
48701
48702
48702
48702
48703
48703
48703
48704
48704
48704
48705
48705
48705
48706
48706
48706
48707
48707
48707
48708
48708
48708
48709
48709
48709
48710
48710
48710
48711
48711
48711
48712
48712
48712
48713
48713
48713
48714
48714
48714
48715
48715
48715
48716
48716
48716
48717
48717
48717
48718
48718
48718
48719
48719
48719
48720
48720
48720
48721
48721
48721
48722
48722
48722
48723
48723
48723
48724
48724
48724
48725
48725
48725
48726
48726
48726
48727
48727
48727
48728
48728
48728
48729
48729
48729
48730
48730
48730
48731
48731
48731
48732
48732
48732
48733
48733
48733
48734
48734
48734
48735
48735
48736
48736
48736
48737
48737
48737
48738
48738
48738
48739
48739
48739
48740
48740
48740
48741
48741
48741
48742
48742
48742
48743
48743
48743
48744
48744
48744
48745
48745
48745
48746
48746
48746
48747
48747
48747
48748
48748
48748
48749
48749
48749
48750
48750
48750
48751
48751
48751
48752
48752
48752
48753
48753
48753
48754
48754
48754
48755
48755
48755
48756
48756
48756
48757
48757
48757
48758
48758
48758
48759
48759
48759
48760
48760
48760
48761
48761
48761
48762
48762
48762
48763
48763
48763
48764
48764
48764
48765
48765
48765
48766
48766
48766
48767
48767
48767
48768
48768
48768
48769
48769
48769
48770
48770
48770
48771
48771
48772
48772
48772
48773
48773
48773
48774
48774
48774
48775
48775
48775
48776
48776
48776
48777
48777
48777
48778
48778
48778
48779
48779
48779
48780
48780
48780
48781
48781
48781
48782
48782
48782
48783
48783
48783
48784
48784
48784
48785
48785
48785
48786
48786
48786
48787
48787
48787
48788
48788
48788
48789
48789
48789
48790
48790
48790
48791
48791
48791
48792
48792
48792
48793
48793
48793
48794
48794
48794
48795
48795
48795
48796
48796
48796
48797
48797
48797
48798
48798
48798
48799
48799
48799
48800
48800
48800
48801
48801
48801
48802
48802
48802
48803
48803
48803
48804
48804
48804
48805
48805
48805
48806
48806
48806
48807
48807
48808
48808
48808
48809
48809
48809
48810
48810
48810
48811
48811
48811
48812
48812
48812
48813
48813
48813
48814
48814
48814
48815
48815
48815
48816
48816
48816
48817
48817
48817
48818
48818
48818
48819
48819
48819
48820
48820
48820
48821
48821
48821
48822
48822
48822
48823
48823
48823
48824
48824
48824
48825
48825
48825
48826
48826
48826
48827
48827
48827
48828
48828
48828
48829
48829
48829
48830
48830
48830
48831
48831
48831
48832
48832
48832
48833
48833
48833
48834
48834
48834
48835
48835
48835
48836
48836
48836
48837
48837
48837
48838
48838
48838
48839
48839
48839
48840
48840
48840
48841
48841
48841
48842
48842
48842
48843
48843
48844
48844
48845
48845
48846
48846
48847
48847
48848
48848
48849
48849
48850
48850
48851
48851
48852
48852
48853
48853
48854
48854
48855
48855
48856
48856
48857
48857
48858
48858
48859
48859
48860
48860
48861
48861
48862
48862
48863
48863
48864
48864
48865
48865
48866
48866
48867
48867
48868
48868
48869
48869
48870
48870
48871
48871
48872
48872
48873
48873
48874
48874
48875
48875
48876
48876
48877
48877
48878
48878
48879
48880
48880
48880
48881
48881
48881
48882
48882
48882
48883
48883
48883
48884
48884
48884
48885
48885
48885
48886
48886
48886
48887
48887
48887
48888
48888
48888
48889
48889
48889
48890
48890
48890
48891
48891
48891
48892
48892
48892
48893
48893
48893
48894
48894
48894
48895
48895
48895
48896
48896
48896
48897
48897
48897
48898
48898
48898
48899
48899
48899
48900
48900
48900
48901
48901
48901
48902
48902
48902
48903
48903
48903
48904
48904
48904
48905
48905
48905
48906
48906
48906
48907
48907
48907
48908
48908
48908
48909
48909
48909
48910
48910
48910
48911
48911
48911
48912
48912
48912
48913
48913
48913
48914
48914
48914
48915
48915
48916
48916
48916
48917
48917
48917
48918
48918
48918
48919
48919
48919
48920
48920
48920
48921
48921
48921
48922
48922
48922
48923
48923
48923
48924
48924
48924
48925
48925
48925
48926
48926
48926
48927
48927
48927
48928
48928
48928
48929
48929
48929
48930
48930
48930
48931
48931
48931
48932
48932
48932
48933
48933
48933
48934
48934
48934
48935
48935
48935
48936
48936
48936
48937
48937
48937
48938
48938
48938
48939
48939
48939
48940
48940
48940
48941
48941
48941
48942
48942
48942
48943
48943
48943
48944
48944
48944
48945
48945
48945
48946
48946
48946
48947
48947
48947
48948
48948
48948
48949
48949
48949
48950
48950
48950
48951
48951
48952
48952
48952
48953
48953
48953
48954
48954
48954
48955
48955
48955
48956
48956
48956
48957
48957
48957
48958
48958
48958
48959
48959
48959
48960
48960
48960
48961
48961
48961
48962
48962
48962
48963
48963
48963
48964
48964
48964
48965
48965
48965
48966
48966
48966
48967
48967
48967
48968
48968
48968
48969
48969
48969
48970
48970
48970
48971
48971
48971
48972
48972
48972
48973
48973
48973
48974
48974
48974
48975
48975
48975
48976
48976
48976
48977
48977
48977
48978
48978
48978
48979
48979
48979
48980
48980
48980
48981
48981
48981
48982
48982
48982
48983
48983
48983
48984
48984
48984
48985
48985
48985
48986
48986
48986
48987
48987
48988
48988
48988
48989
48989
48989
48990
48990
48990
48991
48991
48991
48992
48992
48992
48993
48993
48993
48994
48994
48994
48995
48995
48995
48996
48996
48996
48997
48997
48997
48998
48998
48998
48999
48999
48999
49000
49000
49000
49001
49001
49001
49002
49002
49002
49003
49003
49003
49004
49004
49004
49005
49005
49005
49006
49006
49006
49007
49007
49007
49008
49008
49008
49009
49009
49009
49010
49010
49010
49011
49011
49011
49012
49012
49012
49013
49013
49013
49014
49014
49014
49015
49015
49015
49016
49016
49016
49017
49017
49017
49018
49018
49018
49019
49019
49019
49020
49020
49020
49021
49021
49021
49022
49022
49022
49023
49023
49024
49024
49024
49025
49025
49025
49026
49026
49026
49027
49027
49027
49028
49028
49028
49029
49029
49029
49030
49030
49030
49031
49031
49031
49032
49032
49032
49033
49033
49033
49034
49034
49034
49035
49035
49035
49036
49036
49036
49037
49037
49037
49038
49038
49038
49039
49039
49039
49040
49040
49040
49041
49041
49041
49042
49042
49042
49043
49043
49043
49044
49044
49044
49045
49045
49045
49046
49046
49046
49047
49047
49047
49048
49048
49048
49049
49049
49049
49050
49050
49050
49051
49051
49051
49052
49052
49052
49053
49053
49053
49054
49054
49054
49055
49055
49055
49056
49056
49056
49057
49057
49057
49058
49058
49058
49059
49059
49060
49060
49060
49061
49061
49061
49062
49062
49062
49063
49063
49063
49064
49064
49064
49065
49065
49065
49066
49066
49066
49067
49067
49067
49068
49068
49068
49069
49069
49069
49070
49070
49070
49071
49071
49071
49072
49072
49072
49073
49073
49073
49074
49074
49074
49075
49075
49075
49076
49076
49076
49077
49077
49077
49078
49078
49078
49079
49079
49079
49080
49080
49080
49081
49081
49081
49082
49082
49082
49083
49083
49083
49084
49084
49084
49085
49085
49085
49086
49086
49086
49087
49087
49087
49088
49088
49088
49089
49089
49089
49090
49090
49090
49091
49091
49091
49092
49092
49092
49093
49093
49093
49094
49094
49094
49095
49095
49096
49096
49096
49097
49097
49097
49098
49098
49098
49099
49099
49099
49100
49100
49100
49101
49101
49101
49102
49102
49102
49103
49103
49103
49104
49104
49104
49105
49105
49105
49106
49106
49106
49107
49107
49107
49108
49108
49108
49109
49109
49109
49110
49110
49110
49111
49111
49111
49112
49112
49112
49113
49113
49113
49114
49114
49114
49115
49115
49115
49116
49116
49116
49117
49117
49117
49118
49118
49118
49119
49119
49119
49120
49120
49120
49121
49121
49121
49122
49122
49122
49123
49123
49123
49124
49124
49124
49125
49125
49125
49126
49126
49126
49127
49127
49127
49128
49128
49128
49129
49129
49129
49130
49130
49130
49131
49131
49132
49132
49132
49133
49133
49133
49134
49134
49134
49135
49135
49135
49136
49136
49136
49137
49137
49137
49138
49138
49138
49139
49139
49139
49140
49140
49140
49141
49141
49141
49142
49142
49142
49143
49143
49143
49144
49144
49144
49145
49145
49145
49146
49146
49146
49147
49147
49147
49148
49148
49148
49149
49149
49149
49150
49150
49150
49151
49151
49151
49152
49152
49152
49153
49153
49153
49154
49154
49154
49155
49155
49155
49156
49156
49156
49157
49157
49157
49158
49158
49158
49159
49159
49159
49160
49160
49160
49161
49161
49161
49162
49162
49162
49163
49163
49163
49164
49164
49164
49165
49165
49165
49166
49166
49166
49167
49167
49168
49168
49168
49169
49169
49169
49170
49170
49170
49171
49171
49171
49172
49172
49172
49173
49173
49173
49174
49174
49174
49175
49175
49175
49176
49176
49176
49177
49177
49177
49178
49178
49178
49179
49179
49179
49180
49180
49180
49181
49181
49181
49182
49182
49182
49183
49183
49183
49184
49184
49184
49185
49185
49185
49186
49186
49186
49187
49187
49187
49188
49188
49188
49189
49189
49189
49190
49190
49190
49191
49191
49191
49192
49192
49192
49193
49193
49193
49194
49194
49194
49195
49195
49195
49196
49196
49196
49197
49197
49197
49198
49198
49198
49199
49199
49199
49200
49200
49200
49201
49201
49201
49202
49202
49202
49203
49203
49204
49204
49205
49205
49206
49206
49207
49207
49208
49208
49209
49209
49210
49210
49211
49211
49212
49212
49213
49213
49214
49214
49215
49215
49216
49216
49217
49217
49218
49218
49219
49219
49220
49220
49221
49221
49222
49222
49223
49223
49224
49224
49225
49225
49226
49226
49227
49227
49228
49228
49229
49229
49230
49230
49231
49231
49232
49232
49233
49233
49234
49234
49235
49235
49236
49236
49237
49237
49238
49238
49239
49240
49240
49240
49241
49241
49241
49242
49242
49242
49243
49243
49243
49244
49244
49244
49245
49245
49245
49246
49246
49246
49247
49247
49247
49248
49248
49248
49249
49249
49249
49250
49250
49250
49251
49251
49251
49252
49252
49252
49253
49253
49253
49254
49254
49254
49255
49255
49255
49256
49256
49256
49257
49257
49257
49258
49258
49258
49259
49259
49259
49260
49260
49260
49261
49261
49261
49262
49262
49262
49263
49263
49263
49264
49264
49264
49265
49265
49265
49266
49266
49266
49267
49267
49267
49268
49268
49268
49269
49269
49269
49270
49270
49270
49271
49271
49271
49272
49272
49272
49273
49273
49273
49274
49274
49274
49275
49275
49276
49276
49276
49277
49277
49277
49278
49278
49278
49279
49279
49279
49280
49280
49280
49281
49281
49281
49282
49282
49282
49283
49283
49283
49284
49284
49284
49285
49285
49285
49286
49286
49286
49287
49287
49287
49288
49288
49288
49289
49289
49289
49290
49290
49290
49291
49291
49291
49292
49292
49292
49293
49293
49293
49294
49294
49294
49295
49295
49295
49296
49296
49296
49297
49297
49297
49298
49298
49298
49299
49299
49299
49300
49300
49300
49301
49301
49301
49302
49302
49302
49303
49303
49303
49304
49304
49304
49305
49305
49305
49306
49306
49306
49307
49307
49307
49308
49308
49308
49309
49309
49309
49310
49310
49310
49311
49311
49312
49312
49312
49313
49313
49313
49314
49314
49314
49315
49315
49315
49316
49316
49316
49317
49317
49317
49318
49318
49318
49319
49319
49319
49320
49320
49320
49321
49321
49321
49322
49322
49322
49323
49323
49323
49324
49324
49324
49325
49325
49325
49326
49326
49326
49327
49327
49327
49328
49328
49328
49329
49329
49329
49330
49330
49330
49331
49331
49331
49332
49332
49332
49333
49333
49333
49334
49334
49334
49335
49335
49335
49336
49336
49336
49337
49337
49337
49338
49338
49338
49339
49339
49339
49340
49340
49340
49341
49341
49341
49342
49342
49342
49343
49343
49343
49344
49344
49344
49345
49345
49345
49346
49346
49346
49347
49347
49348
49348
49348
49349
49349
49349
49350
49350
49350
49351
49351
49351
49352
49352
49352
49353
49353
49353
49354
49354
49354
49355
49355
49355
49356
49356
49356
49357
49357
49357
49358
49358
49358
49359
49359
49359
49360
49360
49360
49361
49361
49361
49362
49362
49362
49363
49363
49363
49364
49364
49364
49365
49365
49365
49366
49366
49366
49367
49367
49367
49368
49368
49368
49369
49369
49369
49370
49370
49370
49371
49371
49371
49372
49372
49372
49373
49373
49373
49374
49374
49374
49375
49375
49375
49376
49376
49376
49377
49377
49377
49378
49378
49378
49379
49379
49379
49380
49380
49380
49381
49381
49381
49382
49382
49382
49383
49383
49384
49384
49384
49385
49385
49385
49386
49386
49386
49387
49387
49387
49388
49388
49388
49389
49389
49389
49390
49390
49390
49391
49391
49391
49392
49392
49392
49393
49393
49393
49394
49394
49394
49395
49395
49395
49396
49396
49396
49397
49397
49397
49398
49398
49398
49399
49399
49399
49400
49400
49400
49401
49401
49401
49402
49402
49402
49403
49403
49403
49404
49404
49404
49405
49405
49405
49406
49406
49406
49407
49407
49407
49408
49408
49408
49409
49409
49409
49410
49410
49410
49411
49411
49411
49412
49412
49412
49413
49413
49413
49414
49414
49414
49415
49415
49415
49416
49416
49416
49417
49417
49417
49418
49418
49418
49419
49419
49420
49420
49420
49421
49421
49421
49422
49422
49422
49423
49423
49423
49424
49424
49424
49425
49425
49425
49426
49426
49426
49427
49427
49427
49428
49428
49428
49429
49429
49429
49430
49430
49430
49431
49431
49431
49432
49432
49432
49433
49433
49433
49434
49434
49434
49435
49435
49435
49436
49436
49436
49437
49437
49437
49438
49438
49438
49439
49439
49439
49440
49440
49440
49441
49441
49441
49442
49442
49442
49443
49443
49443
49444
49444
49444
49445
49445
49445
49446
49446
49446
49447
49447
49447
49448
49448
49448
49449
49449
49449
49450
49450
49450
49451
49451
49451
49452
49452
49452
49453
49453
49453
49454
49454
49454
49455
49455
49456
49456
49456
49457
49457
49457
49458
49458
49458
49459
49459
49459
49460
49460
49460
49461
49461
49461
49462
49462
49462
49463
49463
49463
49464
49464
49464
49465
49465
49465
49466
49466
49466
49467
49467
49467
49468
49468
49468
49469
49469
49469
49470
49470
49470
49471
49471
49471
49472
49472
49472
49473
49473
49473
49474
49474
49474
49475
49475
49475
49476
49476
49476
49477
49477
49477
49478
49478
49478
49479
49479
49479
49480
49480
49480
49481
49481
49481
49482
49482
49482
49483
49483
49483
49484
49484
49484
49485
49485
49485
49486
49486
49486
49487
49487
49487
49488
49488
49488
49489
49489
49489
49490
49490
49490
49491
49491
49492
49492
49492
49493
49493
49493
49494
49494
49494
49495
49495
49495
49496
49496
49496
49497
49497
49497
49498
49498
49498
49499
49499
49499
49500
49500
49500
49501
49501
49501
49502
49502
49502
49503
49503
49503
49504
49504
49504
49505
49505
49505
49506
49506
49506
49507
49507
49507
49508
49508
49508
49509
49509
49509
49510
49510
49510
49511
49511
49511
49512
49512
49512
49513
49513
49513
49514
49514
49514
49515
49515
49515
49516
49516
49516
49517
49517
49517
49518
49518
49518
49519
49519
49519
49520
49520
49520
49521
49521
49521
49522
49522
49522
49523
49523
49523
49524
49524
49524
49525
49525
49525
49526
49526
49526
49527
49527
49528
49528
49528
49529
49529
49529
49530
49530
49530
49531
49531
49531
49532
49532
49532
49533
49533
49533
49534
49534
49534
49535
49535
49535
49536
49536
49536
49537
49537
49537
49538
49538
49538
49539
49539
49539
49540
49540
49540
49541
49541
49541
49542
49542
49542
49543
49543
49543
49544
49544
49544
49545
49545
49545
49546
49546
49546
49547
49547
49547
49548
49548
49548
49549
49549
49549
49550
49550
49550
49551
49551
49551
49552
49552
49552
49553
49553
49553
49554
49554
49554
49555
49555
49555
49556
49556
49556
49557
49557
49557
49558
49558
49558
49559
49559
49559
49560
49560
49560
49561
49561
49561
49562
49562
49562
49563
49563
49564
49564
49565
49565
49566
49566
49567
49567
49568
49568
49569
49569
49570
49570
49571
49571
49572
49572
49573
49573
49574
49574
49575
49575
49576
49576
49577
49577
49578
49578
49579
49579
49580
49580
49581
49581
49582
49582
49583
49583
49584
49584
49585
49585
49586
49586
49587
49587
49588
49588
49589
49589
49590
49590
49591
49591
49592
49592
49593
49593
49594
49594
49595
49595
49596
49596
49597
49597
49598
49598
49599
49600
49600
49600
49601
49601
49601
49602
49602
49602
49603
49603
49603
49604
49604
49604
49605
49605
49605
49606
49606
49606
49607
49607
49607
49608
49608
49608
49609
49609
49609
49610
49610
49610
49611
49611
49611
49612
49612
49612
49613
49613
49613
49614
49614
49614
49615
49615
49615
49616
49616
49616
49617
49617
49617
49618
49618
49618
49619
49619
49619
49620
49620
49620
49621
49621
49621
49622
49622
49622
49623
49623
49623
49624
49624
49624
49625
49625
49625
49626
49626
49626
49627
49627
49627
49628
49628
49628
49629
49629
49629
49630
49630
49630
49631
49631
49631
49632
49632
49632
49633
49633
49633
49634
49634
49634
49635
49635
49636
49636
49636
49637
49637
49637
49638
49638
49638
49639
49639
49639
49640
49640
49640
49641
49641
49641
49642
49642
49642
49643
49643
49643
49644
49644
49644
49645
49645
49645
49646
49646
49646
49647
49647
49647
49648
49648
49648
49649
49649
49649
49650
49650
49650
49651
49651
49651
49652
49652
49652
49653
49653
49653
49654
49654
49654
49655
49655
49655
49656
49656
49656
49657
49657
49657
49658
49658
49658
49659
49659
49659
49660
49660
49660
49661
49661
49661
49662
49662
49662
49663
49663
49663
49664
49664
49664
49665
49665
49665
49666
49666
49666
49667
49667
49667
49668
49668
49668
49669
49669
49669
49670
49670
49670
49671
49671
49672
49672
49672
49673
49673
49673
49674
49674
49674
49675
49675
49675
49676
49676
49676
49677
49677
49677
49678
49678
49678
49679
49679
49679
49680
49680
49680
49681
49681
49681
49682
49682
49682
49683
49683
49683
49684
49684
49684
49685
49685
49685
49686
49686
49686
49687
49687
49687
49688
49688
49688
49689
49689
49689
49690
49690
49690
49691
49691
49691
49692
49692
49692
49693
49693
49693
49694
49694
49694
49695
49695
49695
49696
49696
49696
49697
49697
49697
49698
49698
49698
49699
49699
49699
49700
49700
49700
49701
49701
49701
49702
49702
49702
49703
49703
49703
49704
49704
49704
49705
49705
49705
49706
49706
49706
49707
49707
49708
49708
49708
49709
49709
49709
49710
49710
49710
49711
49711
49711
49712
49712
49712
49713
49713
49713
49714
49714
49714
49715
49715
49715
49716
49716
49716
49717
49717
49717
49718
49718
49718
49719
49719
49719
49720
49720
49720
49721
49721
49721
49722
49722
49722
49723
49723
49723
49724
49724
49724
49725
49725
49725
49726
49726
49726
49727
49727
49727
49728
49728
49728
49729
49729
49729
49730
49730
49730
49731
49731
49731
49732
49732
49732
49733
49733
49733
49734
49734
49734
49735
49735
49735
49736
49736
49736
49737
49737
49737
49738
49738
49738
49739
49739
49739
49740
49740
49740
49741
49741
49741
49742
49742
49742
49743
49743
49744
49744
49744
49745
49745
49745
49746
49746
49746
49747
49747
49747
49748
49748
49748
49749
49749
49749
49750
49750
49750
49751
49751
49751
49752
49752
49752
49753
49753
49753
49754
49754
49754
49755
49755
49755
49756
49756
49756
49757
49757
49757
49758
49758
49758
49759
49759
49759
49760
49760
49760
49761
49761
49761
49762
49762
49762
49763
49763
49763
49764
49764
49764
49765
49765
49765
49766
49766
49766
49767
49767
49767
49768
49768
49768
49769
49769
49769
49770
49770
49770
49771
49771
49771
49772
49772
49772
49773
49773
49773
49774
49774
49774
49775
49775
49775
49776
49776
49776
49777
49777
49777
49778
49778
49778
49779
49779
49780
49780
49780
49781
49781
49781
49782
49782
49782
49783
49783
49783
49784
49784
49784
49785
49785
49785
49786
49786
49786
49787
49787
49787
49788
49788
49788
49789
49789
49789
49790
49790
49790
49791
49791
49791
49792
49792
49792
49793
49793
49793
49794
49794
49794
49795
49795
49795
49796
49796
49796
49797
49797
49797
49798
49798
49798
49799
49799
49799
49800
49800
49800
49801
49801
49801
49802
49802
49802
49803
49803
49803
49804
49804
49804
49805
49805
49805
49806
49806
49806
49807
49807
49807
49808
49808
49808
49809
49809
49809
49810
49810
49810
49811
49811
49811
49812
49812
49812
49813
49813
49813
49814
49814
49814
49815
49815
49816
49816
49816
49817
49817
49817
49818
49818
49818
49819
49819
49819
49820
49820
49820
49821
49821
49821
49822
49822
49822
49823
49823
49823
49824
49824
49824
49825
49825
49825
49826
49826
49826
49827
49827
49827
49828
49828
49828
49829
49829
49829
49830
49830
49830
49831
49831
49831
49832
49832
49832
49833
49833
49833
49834
49834
49834
49835
49835
49835
49836
49836
49836
49837
49837
49837
49838
49838
49838
49839
49839
49839
49840
49840
49840
49841
49841
49841
49842
49842
49842
49843
49843
49843
49844
49844
49844
49845
49845
49845
49846
49846
49846
49847
49847
49847
49848
49848
49848
49849
49849
49849
49850
49850
49850
49851
49851
49852
49852
49852
49853
49853
49853
49854
49854
49854
49855
49855
49855
49856
49856
49856
49857
49857
49857
49858
49858
49858
49859
49859
49859
49860
49860
49860
49861
49861
49861
49862
49862
49862
49863
49863
49863
49864
49864
49864
49865
49865
49865
49866
49866
49866
49867
49867
49867
49868
49868
49868
49869
49869
49869
49870
49870
49870
49871
49871
49871
49872
49872
49872
49873
49873
49873
49874
49874
49874
49875
49875
49875
49876
49876
49876
49877
49877
49877
49878
49878
49878
49879
49879
49879
49880
49880
49880
49881
49881
49881
49882
49882
49882
49883
49883
49883
49884
49884
49884
49885
49885
49885
49886
49886
49886
49887
49887
49888
49888
49888
49889
49889
49889
49890
49890
49890
49891
49891
49891
49892
49892
49892
49893
49893
49893
49894
49894
49894
49895
49895
49895
49896
49896
49896
49897
49897
49897
49898
49898
49898
49899
49899
49899
49900
49900
49900
49901
49901
49901
49902
49902
49902
49903
49903
49903
49904
49904
49904
49905
49905
49905
49906
49906
49906
49907
49907
49907
49908
49908
49908
49909
49909
49909
49910
49910
49910
49911
49911
49911
49912
49912
49912
49913
49913
49913
49914
49914
49914
49915
49915
49915
49916
49916
49916
49917
49917
49917
49918
49918
49918
49919
49919
49919
49920
49920
49920
49921
49921
49921
49922
49922
49922
49923
49923
49924
49924
49925
49925
49926
49926
49927
49927
49928
49928
49929
49929
49930
49930
49931
49931
49932
49932
49933
49933
49934
49934
49935
49935
49936
49936
49937
49937
49938
49938
49939
49939
49940
49940
49941
49941
49942
49942
49943
49943
49944
49944
49945
49945
49946
49946
49947
49947
49948
49948
49949
49949
49950
49950
49951
49951
49952
49952
49953
49953
49954
49954
49955
49955
49956
49956
49957
49957
49958
49958
49959
49960
49960
49960
49961
49961
49961
49962
49962
49962
49963
49963
49963
49964
49964
49964
49965
49965
49965
49966
49966
49966
49967
49967
49967
49968
49968
49968
49969
49969
49969
49970
49970
49970
49971
49971
49971
49972
49972
49972
49973
49973
49973
49974
49974
49974
49975
49975
49975
49976
49976
49976
49977
49977
49977
49978
49978
49978
49979
49979
49979
49980
49980
49980
49981
49981
49981
49982
49982
49982
49983
49983
49983
49984
49984
49984
49985
49985
49985
49986
49986
49986
49987
49987
49987
49988
49988
49988
49989
49989
49989
49990
49990
49990
49991
49991
49991
49992
49992
49992
49993
49993
49993
49994
49994
49994
49995
49995
49996
49996
49996
49997
49997
49997
49998
49998
49998
49999
49999
49999
50000
50000
50000
50001
50001
50001
50002
50002
50002
50003
50003
50003
50004
50004
50004
50005
50005
50005
50006
50006
50006
50007
50007
50007
50008
50008
50008
50009
50009
50009
50010
50010
50010
50011
50011
50011
50012
50012
50012
50013
50013
50013
50014
50014
50014
50015
50015
50015
50016
50016
50016
50017
50017
50017
50018
50018
50018
50019
50019
50019
50020
50020
50020
50021
50021
50021
50022
50022
50022
50023
50023
50023
50024
50024
50024
50025
50025
50025
50026
50026
50026
50027
50027
50027
50028
50028
50028
50029
50029
50029
50030
50030
50030
50031
50031
50032
50032
50032
50033
50033
50033
50034
50034
50034
50035
50035
50035
50036
50036
50036
50037
50037
50037
50038
50038
50038
50039
50039
50039
50040
50040
50040
50041
50041
50041
50042
50042
50042
50043
50043
50043
50044
50044
50044
50045
50045
50045
50046
50046
50046
50047
50047
50047
50048
50048
50048
50049
50049
50049
50050
50050
50050
50051
50051
50051
50052
50052
50052
50053
50053
50053
50054
50054
50054
50055
50055
50055
50056
50056
50056
50057
50057
50057
50058
50058
50058
50059
50059
50059
50060
50060
50060
50061
50061
50061
50062
50062
50062
50063
50063
50063
50064
50064
50064
50065
50065
50065
50066
50066
50066
50067
50067
50068
50068
50068
50069
50069
50069
50070
50070
50070
50071
50071
50071
50072
50072
50072
50073
50073
50073
50074
50074
50074
50075
50075
50075
50076
50076
50076
50077
50077
50077
50078
50078
50078
50079
50079
50079
50080
50080
50080
50081
50081
50081
50082
50082
50082
50083
50083
50083
50084
50084
50084
50085
50085
50085
50086
50086
50086
50087
50087
50087
50088
50088
50088
50089
50089
50089
50090
50090
50090
50091
50091
50091
50092
50092
50092
50093
50093
50093
50094
50094
50094
50095
50095
50095
50096
50096
50096
50097
50097
50097
50098
50098
50098
50099
50099
50099
50100
50100
50100
50101
50101
50101
50102
50102
50102
50103
50103
50104
50104
50104
50105
50105
50105
50106
50106
50106
50107
50107
50107
50108
50108
50108
50109
50109
50109
50110
50110
50110
50111
50111
50111
50112
50112
50112
50113
50113
50113
50114
50114
50114
50115
50115
50115
50116
50116
50116
50117
50117
50117
50118
50118
50118
50119
50119
50119
50120
50120
50120
50121
50121
50121
50122
50122
50122
50123
50123
50123
50124
50124
50124
50125
50125
50125
50126
50126
50126
50127
50127
50127
50128
50128
50128
50129
50129
50129
50130
50130
50130
50131
50131
50131
50132
50132
50132
50133
50133
50133
50134
50134
50134
50135
50135
50135
50136
50136
50136
50137
50137
50137
50138
50138
50138
50139
50139
50140
50140
50140
50141
50141
50141
50142
50142
50142
50143
50143
50143
50144
50144
50144
50145
50145
50145
50146
50146
50146
50147
50147
50147
50148
50148
50148
50149
50149
50149
50150
50150
50150
50151
50151
50151
50152
50152
50152
50153
50153
50153
50154
50154
50154
50155
50155
50155
50156
50156
50156
50157
50157
50157
50158
50158
50158
50159
50159
50159
50160
50160
50160
50161
50161
50161
50162
50162
50162
50163
50163
50163
50164
50164
50164
50165
50165
50165
50166
50166
50166
50167
50167
50167
50168
50168
50168
50169
50169
50169
50170
50170
50170
50171
50171
50171
50172
50172
50172
50173
50173
50173
50174
50174
50174
50175
50175
50176
50176
50176
50177
50177
50177
50178
50178
50178
50179
50179
50179
50180
50180
50180
50181
50181
50181
50182
50182
50182
50183
50183
50183
50184
50184
50184
50185
50185
50185
50186
50186
50186
50187
50187
50187
50188
50188
50188
50189
50189
50189
50190
50190
50190
50191
50191
50191
50192
50192
50192
50193
50193
50193
50194
50194
50194
50195
50195
50195
50196
50196
50196
50197
50197
50197
50198
50198
50198
50199
50199
50199
50200
50200
50200
50201
50201
50201
50202
50202
50202
50203
50203
50203
50204
50204
50204
50205
50205
50205
50206
50206
50206
50207
50207
50207
50208
50208
50208
50209
50209
50209
50210
50210
50210
50211
50211
50212
50212
50212
50213
50213
50213
50214
50214
50214
50215
50215
50215
50216
50216
50216
50217
50217
50217
50218
50218
50218
50219
50219
50219
50220
50220
50220
50221
50221
50221
50222
50222
50222
50223
50223
50223
50224
50224
50224
50225
50225
50225
50226
50226
50226
50227
50227
50227
50228
50228
50228
50229
50229
50229
50230
50230
50230
50231
50231
50231
50232
50232
50232
50233
50233
50233
50234
50234
50234
50235
50235
50235
50236
50236
50236
50237
50237
50237
50238
50238
50238
50239
50239
50239
50240
50240
50240
50241
50241
50241
50242
50242
50242
50243
50243
50243
50244
50244
50244
50245
50245
50245
50246
50246
50246
50247
50247
50248
50248
50248
50249
50249
50249
50250
50250
50250
50251
50251
50251
50252
50252
50252
50253
50253
50253
50254
50254
50254
50255
50255
50255
50256
50256
50256
50257
50257
50257
50258
50258
50258
50259
50259
50259
50260
50260
50260
50261
50261
50261
50262
50262
50262
50263
50263
50263
50264
50264
50264
50265
50265
50265
50266
50266
50266
50267
50267
50267
50268
50268
50268
50269
50269
50269
50270
50270
50270
50271
50271
50271
50272
50272
50272
50273
50273
50273
50274
50274
50274
50275
50275
50275
50276
50276
50276
50277
50277
50277
50278
50278
50278
50279
50279
50279
50280
50280
50280
50281
50281
50281
50282
50282
50282
50283
50283
50284
50284
50285
50285
50286
50286
50287
50287
50288
50288
50289
50289
50290
50290
50291
50291
50292
50292
50293
50293
50294
50294
50295
50295
50296
50296
50297
50297
50298
50298
50299
50299
50300
50300
50301
50301
50302
50302
50303
50303
50304
50304
50305
50305
50306
50306
50307
50307
50308
50308
50309
50309
50310
50310
50311
50311
50312
50312
50313
50313
50314
50314
50315
50315
50316
50316
50317
50317
50318
50318
50319
50320
50320
50320
50321
50321
50321
50322
50322
50322
50323
50323
50323
50324
50324
50324
50325
50325
50325
50326
50326
50326
50327
50327
50327
50328
50328
50328
50329
50329
50329
50330
50330
50330
50331
50331
50331
50332
50332
50332
50333
50333
50333
50334
50334
50334
50335
50335
50335
50336
50336
50336
50337
50337
50337
50338
50338
50338
50339
50339
50339
50340
50340
50340
50341
50341
50341
50342
50342
50342
50343
50343
50343
50344
50344
50344
50345
50345
50345
50346
50346
50346
50347
50347
50347
50348
50348
50348
50349
50349
50349
50350
50350
50350
50351
50351
50351
50352
50352
50352
50353
50353
50353
50354
50354
50354
50355
50355
50356
50356
50356
50357
50357
50357
50358
50358
50358
50359
50359
50359
50360
50360
50360
50361
50361
50361
50362
50362
50362
50363
50363
50363
50364
50364
50364
50365
50365
50365
50366
50366
50366
50367
50367
50367
50368
50368
50368
50369
50369
50369
50370
50370
50370
50371
50371
50371
50372
50372
50372
50373
50373
50373
50374
50374
50374
50375
50375
50375
50376
50376
50376
50377
50377
50377
50378
50378
50378
50379
50379
50379
50380
50380
50380
50381
50381
50381
50382
50382
50382
50383
50383
50383
50384
50384
50384
50385
50385
50385
50386
50386
50386
50387
50387
50387
50388
50388
50388
50389
50389
50389
50390
50390
50390
50391
50391
50392
50392
50392
50393
50393
50393
50394
50394
50394
50395
50395
50395
50396
50396
50396
50397
50397
50397
50398
50398
50398
50399
50399
50399
50400
50400
50400
50401
50401
50401
50402
50402
50402
50403
50403
50403
50404
50404
50404
50405
50405
50405
50406
50406
50406
50407
50407
50407
50408
50408
50408
50409
50409
50409
50410
50410
50410
50411
50411
50411
50412
50412
50412
50413
50413
50413
50414
50414
50414
50415
50415
50415
50416
50416
50416
50417
50417
50417
50418
50418
50418
50419
50419
50419
50420
50420
50420
50421
50421
50421
50422
50422
50422
50423
50423
50423
50424
50424
50424
50425
50425
50425
50426
50426
50426
50427
50427
50428
50428
50428
50429
50429
50429
50430
50430
50430
50431
50431
50431
50432
50432
50432
50433
50433
50433
50434
50434
50434
50435
50435
50435
50436
50436
50436
50437
50437
50437
50438
50438
50438
50439
50439
50439
50440
50440
50440
50441
50441
50441
50442
50442
50442
50443
50443
50443
50444
50444
50444
50445
50445
50445
50446
50446
50446
50447
50447
50447
50448
50448
50448
50449
50449
50449
50450
50450
50450
50451
50451
50451
50452
50452
50452
50453
50453
50453
50454
50454
50454
50455
50455
50455
50456
50456
50456
50457
50457
50457
50458
50458
50458
50459
50459
50459
50460
50460
50460
50461
50461
50461
50462
50462
50462
50463
50463
50464
50464
50464
50465
50465
50465
50466
50466
50466
50467
50467
50467
50468
50468
50468
50469
50469
50469
50470
50470
50470
50471
50471
50471
50472
50472
50472
50473
50473
50473
50474
50474
50474
50475
50475
50475
50476
50476
50476
50477
50477
50477
50478
50478
50478
50479
50479
50479
50480
50480
50480
50481
50481
50481
50482
50482
50482
50483
50483
50483
50484
50484
50484
50485
50485
50485
50486
50486
50486
50487
50487
50487
50488
50488
50488
50489
50489
50489
50490
50490
50490
50491
50491
50491
50492
50492
50492
50493
50493
50493
50494
50494
50494
50495
50495
50495
50496
50496
50496
50497
50497
50497
50498
50498
50498
50499
50499
50500
50500
50500
50501
50501
50501
50502
50502
50502
50503
50503
50503
50504
50504
50504
50505
50505
50505
50506
50506
50506
50507
50507
50507
50508
50508
50508
50509
50509
50509
50510
50510
50510
50511
50511
50511
50512
50512
50512
50513
50513
50513
50514
50514
50514
50515
50515
50515
50516
50516
50516
50517
50517
50517
50518
50518
50518
50519
50519
50519
50520
50520
50520
50521
50521
50521
50522
50522
50522
50523
50523
50523
50524
50524
50524
50525
50525
50525
50526
50526
50526
50527
50527
50527
50528
50528
50528
50529
50529
50529
50530
50530
50530
50531
50531
50531
50532
50532
50532
50533
50533
50533
50534
50534
50534
50535
50535
50536
50536
50536
50537
50537
50537
50538
50538
50538
50539
50539
50539
50540
50540
50540
50541
50541
50541
50542
50542
50542
50543
50543
50543
50544
50544
50544
50545
50545
50545
50546
50546
50546
50547
50547
50547
50548
50548
50548
50549
50549
50549
50550
50550
50550
50551
50551
50551
50552
50552
50552
50553
50553
50553
50554
50554
50554
50555
50555
50555
50556
50556
50556
50557
50557
50557
50558
50558
50558
50559
50559
50559
50560
50560
50560
50561
50561
50561
50562
50562
50562
50563
50563
50563
50564
50564
50564
50565
50565
50565
50566
50566
50566
50567
50567
50567
50568
50568
50568
50569
50569
50569
50570
50570
50570
50571
50571
50572
50572
50572
50573
50573
50573
50574
50574
50574
50575
50575
50575
50576
50576
50576
50577
50577
50577
50578
50578
50578
50579
50579
50579
50580
50580
50580
50581
50581
50581
50582
50582
50582
50583
50583
50583
50584
50584
50584
50585
50585
50585
50586
50586
50586
50587
50587
50587
50588
50588
50588
50589
50589
50589
50590
50590
50590
50591
50591
50591
50592
50592
50592
50593
50593
50593
50594
50594
50594
50595
50595
50595
50596
50596
50596
50597
50597
50597
50598
50598
50598
50599
50599
50599
50600
50600
50600
50601
50601
50601
50602
50602
50602
50603
50603
50603
50604
50604
50604
50605
50605
50605
50606
50606
50606
50607
50607
50608
50608
50608
50609
50609
50609
50610
50610
50610
50611
50611
50611
50612
50612
50612
50613
50613
50613
50614
50614
50614
50615
50615
50615
50616
50616
50616
50617
50617
50617
50618
50618
50618
50619
50619
50619
50620
50620
50620
50621
50621
50621
50622
50622
50622
50623
50623
50623
50624
50624
50624
50625
50625
50625
50626
50626
50626
50627
50627
50627
50628
50628
50628
50629
50629
50629
50630
50630
50630
50631
50631
50631
50632
50632
50632
50633
50633
50633
50634
50634
50634
50635
50635
50635
50636
50636
50636
50637
50637
50637
50638
50638
50638
50639
50639
50639
50640
50640
50640
50641
50641
50641
50642
50642
50642
50643
50643
50644
50644
50645
50645
50646
50646
50647
50647
50648
50648
50649
50649
50650
50650
50651
50651
50652
50652
50653
50653
50654
50654
50655
50655
50656
50656
50657
50657
50658
50658
50659
50659
50660
50660
50661
50661
50662
50662
50663
50663
50664
50664
50665
50665
50666
50666
50667
50667
50668
50668
50669
50669
50670
50670
50671
50671
50672
50672
50673
50673
50674
50674
50675
50675
50676
50676
50677
50677
50678
50678
50679
50680
50680
50680
50681
50681
50681
50682
50682
50682
50683
50683
50683
50684
50684
50684
50685
50685
50685
50686
50686
50686
50687
50687
50687
50688
50688
50688
50689
50689
50689
50690
50690
50690
50691
50691
50691
50692
50692
50692
50693
50693
50693
50694
50694
50694
50695
50695
50695
50696
50696
50696
50697
50697
50697
50698
50698
50698
50699
50699
50699
50700
50700
50700
50701
50701
50701
50702
50702
50702
50703
50703
50703
50704
50704
50704
50705
50705
50705
50706
50706
50706
50707
50707
50707
50708
50708
50708
50709
50709
50709
50710
50710
50710
50711
50711
50711
50712
50712
50712
50713
50713
50713
50714
50714
50714
50715
50715
50716
50716
50716
50717
50717
50717
50718
50718
50718
50719
50719
50719
50720
50720
50720
50721
50721
50721
50722
50722
50722
50723
50723
50723
50724
50724
50724
50725
50725
50725
50726
50726
50726
50727
50727
50727
50728
50728
50728
50729
50729
50729
50730
50730
50730
50731
50731
50731
50732
50732
50732
50733
50733
50733
50734
50734
50734
50735
50735
50735
50736
50736
50736
50737
50737
50737
50738
50738
50738
50739
50739
50739
50740
50740
50740
50741
50741
50741
50742
50742
50742
50743
50743
50743
50744
50744
50744
50745
50745
50745
50746
50746
50746
50747
50747
50747
50748
50748
50748
50749
50749
50749
50750
50750
50750
50751
50751
50752
50752
50752
50753
50753
50753
50754
50754
50754
50755
50755
50755
50756
50756
50756
50757
50757
50757
50758
50758
50758
50759
50759
50759
50760
50760
50760
50761
50761
50761
50762
50762
50762
50763
50763
50763
50764
50764
50764
50765
50765
50765
50766
50766
50766
50767
50767
50767
50768
50768
50768
50769
50769
50769
50770
50770
50770
50771
50771
50771
50772
50772
50772
50773
50773
50773
50774
50774
50774
50775
50775
50775
50776
50776
50776
50777
50777
50777
50778
50778
50778
50779
50779
50779
50780
50780
50780
50781
50781
50781
50782
50782
50782
50783
50783
50783
50784
50784
50784
50785
50785
50785
50786
50786
50786
50787
50787
50788
50788
50788
50789
50789
50789
50790
50790
50790
50791
50791
50791
50792
50792
50792
50793
50793
50793
50794
50794
50794
50795
50795
50795
50796
50796
50796
50797
50797
50797
50798
50798
50798
50799
50799
50799
50800
50800
50800
50801
50801
50801
50802
50802
50802
50803
50803
50803
50804
50804
50804
50805
50805
50805
50806
50806
50806
50807
50807
50807
50808
50808
50808
50809
50809
50809
50810
50810
50810
50811
50811
50811
50812
50812
50812
50813
50813
50813
50814
50814
50814
50815
50815
50815
50816
50816
50816
50817
50817
50817
50818
50818
50818
50819
50819
50819
50820
50820
50820
50821
50821
50821
50822
50822
50822
50823
50823
50824
50824
50824
50825
50825
50825
50826
50826
50826
50827
50827
50827
50828
50828
50828
50829
50829
50829
50830
50830
50830
50831
50831
50831
50832
50832
50832
50833
50833
50833
50834
50834
50834
50835
50835
50835
50836
50836
50836
50837
50837
50837
50838
50838
50838
50839
50839
50839
50840
50840
50840
50841
50841
50841
50842
50842
50842
50843
50843
50843
50844
50844
50844
50845
50845
50845
50846
50846
50846
50847
50847
50847
50848
50848
50848
50849
50849
50849
50850
50850
50850
50851
50851
50851
50852
50852
50852
50853
50853
50853
50854
50854
50854
50855
50855
50855
50856
50856
50856
50857
50857
50857
50858
50858
50858
50859
50859
50860
50860
50860
50861
50861
50861
50862
50862
50862
50863
50863
50863
50864
50864
50864
50865
50865
50865
50866
50866
50866
50867
50867
50867
50868
50868
50868
50869
50869
50869
50870
50870
50870
50871
50871
50871
50872
50872
50872
50873
50873
50873
50874
50874
50874
50875
50875
50875
50876
50876
50876
50877
50877
50877
50878
50878
50878
50879
50879
50879
50880
50880
50880
50881
50881
50881
50882
50882
50882
50883
50883
50883
50884
50884
50884
50885
50885
50885
50886
50886
50886
50887
50887
50887
50888
50888
50888
50889
50889
50889
50890
50890
50890
50891
50891
50891
50892
50892
50892
50893
50893
50893
50894
50894
50894
50895
50895
50896
50896
50896
50897
50897
50897
50898
50898
50898
50899
50899
50899
50900
50900
50900
50901
50901
50901
50902
50902
50902
50903
50903
50903
50904
50904
50904
50905
50905
50905
50906
50906
50906
50907
50907
50907
50908
50908
50908
50909
50909
50909
50910
50910
50910
50911
50911
50911
50912
50912
50912
50913
50913
50913
50914
50914
50914
50915
50915
50915
50916
50916
50916
50917
50917
50917
50918
50918
50918
50919
50919
50919
50920
50920
50920
50921
50921
50921
50922
50922
50922
50923
50923
50923
50924
50924
50924
50925
50925
50925
50926
50926
50926
50927
50927
50927
50928
50928
50928
50929
50929
50929
50930
50930
50930
50931
50931
50932
50932
50932
50933
50933
50933
50934
50934
50934
50935
50935
50935
50936
50936
50936
50937
50937
50937
50938
50938
50938
50939
50939
50939
50940
50940
50940
50941
50941
50941
50942
50942
50942
50943
50943
50943
50944
50944
50944
50945
50945
50945
50946
50946
50946
50947
50947
50947
50948
50948
50948
50949
50949
50949
50950
50950
50950
50951
50951
50951
50952
50952
50952
50953
50953
50953
50954
50954
50954
50955
50955
50955
50956
50956
50956
50957
50957
50957
50958
50958
50958
50959
50959
50959
50960
50960
50960
50961
50961
50961
50962
50962
50962
50963
50963
50963
50964
50964
50964
50965
50965
50965
50966
50966
50966
50967
50967
50968
50968
50968
50969
50969
50969
50970
50970
50970
50971
50971
50971
50972
50972
50972
50973
50973
50973
50974
50974
50974
50975
50975
50975
50976
50976
50976
50977
50977
50977
50978
50978
50978
50979
50979
50979
50980
50980
50980
50981
50981
50981
50982
50982
50982
50983
50983
50983
50984
50984
50984
50985
50985
50985
50986
50986
50986
50987
50987
50987
50988
50988
50988
50989
50989
50989
50990
50990
50990
50991
50991
50991
50992
50992
50992
50993
50993
50993
50994
50994
50994
50995
50995
50995
50996
50996
50996
50997
50997
50997
50998
50998
50998
50999
50999
50999
51000
51000
51000
51001
51001
51001
51002
51002
51002
51003
51003
51004
51004
51005
51005
51006
51006
51007
51007
51008
51008
51009
51009
51010
51010
51011
51011
51012
51012
51013
51013
51014
51014
51015
51015
51016
51016
51017
51017
51018
51018
51019
51019
51020
51020
51021
51021
51022
51022
51023
51023
51024
51024
51025
51025
51026
51026
51027
51027
51028
51028
51029
51029
51030
51030
51031
51031
51032
51032
51033
51033
51034
51034
51035
51035
51036
51036
51037
51037
51038
51038
51039
51040
51040
51040
51041
51041
51041
51042
51042
51042
51043
51043
51043
51044
51044
51044
51045
51045
51045
51046
51046
51046
51047
51047
51047
51048
51048
51048
51049
51049
51049
51050
51050
51050
51051
51051
51051
51052
51052
51052
51053
51053
51053
51054
51054
51054
51055
51055
51055
51056
51056
51056
51057
51057
51057
51058
51058
51058
51059
51059
51059
51060
51060
51060
51061
51061
51061
51062
51062
51062
51063
51063
51063
51064
51064
51064
51065
51065
51065
51066
51066
51066
51067
51067
51067
51068
51068
51068
51069
51069
51069
51070
51070
51070
51071
51071
51071
51072
51072
51072
51073
51073
51073
51074
51074
51074
51075
51075
51076
51076
51076
51077
51077
51077
51078
51078
51078
51079
51079
51079
51080
51080
51080
51081
51081
51081
51082
51082
51082
51083
51083
51083
51084
51084
51084
51085
51085
51085
51086
51086
51086
51087
51087
51087
51088
51088
51088
51089
51089
51089
51090
51090
51090
51091
51091
51091
51092
51092
51092
51093
51093
51093
51094
51094
51094
51095
51095
51095
51096
51096
51096
51097
51097
51097
51098
51098
51098
51099
51099
51099
51100
51100
51100
51101
51101
51101
51102
51102
51102
51103
51103
51103
51104
51104
51104
51105
51105
51105
51106
51106
51106
51107
51107
51107
51108
51108
51108
51109
51109
51109
51110
51110
51110
51111
51111
51112
51112
51112
51113
51113
51113
51114
51114
51114
51115
51115
51115
51116
51116
51116
51117
51117
51117
51118
51118
51118
51119
51119
51119
51120
51120
51120
51121
51121
51121
51122
51122
51122
51123
51123
51123
51124
51124
51124
51125
51125
51125
51126
51126
51126
51127
51127
51127
51128
51128
51128
51129
51129
51129
51130
51130
51130
51131
51131
51131
51132
51132
51132
51133
51133
51133
51134
51134
51134
51135
51135
51135
51136
51136
51136
51137
51137
51137
51138
51138
51138
51139
51139
51139
51140
51140
51140
51141
51141
51141
51142
51142
51142
51143
51143
51143
51144
51144
51144
51145
51145
51145
51146
51146
51146
51147
51147
51148
51148
51148
51149
51149
51149
51150
51150
51150
51151
51151
51151
51152
51152
51152
51153
51153
51153
51154
51154
51154
51155
51155
51155
51156
51156
51156
51157
51157
51157
51158
51158
51158
51159
51159
51159
51160
51160
51160
51161
51161
51161
51162
51162
51162
51163
51163
51163
51164
51164
51164
51165
51165
51165
51166
51166
51166
51167
51167
51167
51168
51168
51168
51169
51169
51169
51170
51170
51170
51171
51171
51171
51172
51172
51172
51173
51173
51173
51174
51174
51174
51175
51175
51175
51176
51176
51176
51177
51177
51177
51178
51178
51178
51179
51179
51179
51180
51180
51180
51181
51181
51181
51182
51182
51182
51183
51183
51184
51184
51184
51185
51185
51185
51186
51186
51186
51187
51187
51187
51188
51188
51188
51189
51189
51189
51190
51190
51190
51191
51191
51191
51192
51192
51192
51193
51193
51193
51194
51194
51194
51195
51195
51195
51196
51196
51196
51197
51197
51197
51198
51198
51198
51199
51199
51199
51200
51200
51200
51201
51201
51201
51202
51202
51202
51203
51203
51203
51204
51204
51204
51205
51205
51205
51206
51206
51206
51207
51207
51207
51208
51208
51208
51209
51209
51209
51210
51210
51210
51211
51211
51211
51212
51212
51212
51213
51213
51213
51214
51214
51214
51215
51215
51215
51216
51216
51216
51217
51217
51217
51218
51218
51218
51219
51219
51220
51220
51220
51221
51221
51221
51222
51222
51222
51223
51223
51223
51224
51224
51224
51225
51225
51225
51226
51226
51226
51227
51227
51227
51228
51228
51228
51229
51229
51229
51230
51230
51230
51231
51231
51231
51232
51232
51232
51233
51233
51233
51234
51234
51234
51235
51235
51235
51236
51236
51236
51237
51237
51237
51238
51238
51238
51239
51239
51239
51240
51240
51240
51241
51241
51241
51242
51242
51242
51243
51243
51243
51244
51244
51244
51245
51245
51245
51246
51246
51246
51247
51247
51247
51248
51248
51248
51249
51249
51249
51250
51250
51250
51251
51251
51251
51252
51252
51252
51253
51253
51253
51254
51254
51254
51255
51255
51256
51256
51256
51257
51257
51257
51258
51258
51258
51259
51259
51259
51260
51260
51260
51261
51261
51261
51262
51262
51262
51263
51263
51263
51264
51264
51264
51265
51265
51265
51266
51266
51266
51267
51267
51267
51268
51268
51268
51269
51269
51269
51270
51270
51270
51271
51271
51271
51272
51272
51272
51273
51273
51273
51274
51274
51274
51275
51275
51275
51276
51276
51276
51277
51277
51277
51278
51278
51278
51279
51279
51279
51280
51280
51280
51281
51281
51281
51282
51282
51282
51283
51283
51283
51284
51284
51284
51285
51285
51285
51286
51286
51286
51287
51287
51287
51288
51288
51288
51289
51289
51289
51290
51290
51290
51291
51291
51292
51292
51292
51293
51293
51293
51294
51294
51294
51295
51295
51295
51296
51296
51296
51297
51297
51297
51298
51298
51298
51299
51299
51299
51300
51300
51300
51301
51301
51301
51302
51302
51302
51303
51303
51303
51304
51304
51304
51305
51305
51305
51306
51306
51306
51307
51307
51307
51308
51308
51308
51309
51309
51309
51310
51310
51310
51311
51311
51311
51312
51312
51312
51313
51313
51313
51314
51314
51314
51315
51315
51315
51316
51316
51316
51317
51317
51317
51318
51318
51318
51319
51319
51319
51320
51320
51320
51321
51321
51321
51322
51322
51322
51323
51323
51323
51324
51324
51324
51325
51325
51325
51326
51326
51326
51327
51327
51328
51328
51328
51329
51329
51329
51330
51330
51330
51331
51331
51331
51332
51332
51332
51333
51333
51333
51334
51334
51334
51335
51335
51335
51336
51336
51336
51337
51337
51337
51338
51338
51338
51339
51339
51339
51340
51340
51340
51341
51341
51341
51342
51342
51342
51343
51343
51343
51344
51344
51344
51345
51345
51345
51346
51346
51346
51347
51347
51347
51348
51348
51348
51349
51349
51349
51350
51350
51350
51351
51351
51351
51352
51352
51352
51353
51353
51353
51354
51354
51354
51355
51355
51355
51356
51356
51356
51357
51357
51357
51358
51358
51358
51359
51359
51359
51360
51360
51360
51361
51361
51361
51362
51362
51362
51363
51363
51364
51364
51365
51365
51366
51366
51367
51367
51368
51368
51369
51369
51370
51370
51371
51371
51372
51372
51373
51373
51374
51374
51375
51375
51376
51376
51377
51377
51378
51378
51379
51379
51380
51380
51381
51381
51382
51382
51383
51383
51384
51384
51385
51385
51386
51386
51387
51387
51388
51388
51389
51389
51390
51390
51391
51391
51392
51392
51393
51393
51394
51394
51395
51395
51396
51396
51397
51397
51398
51398
51399
51400
51400
51400
51401
51401
51401
51402
51402
51402
51403
51403
51403
51404
51404
51404
51405
51405
51405
51406
51406
51406
51407
51407
51407
51408
51408
51408
51409
51409
51409
51410
51410
51410
51411
51411
51411
51412
51412
51412
51413
51413
51413
51414
51414
51414
51415
51415
51415
51416
51416
51416
51417
51417
51417
51418
51418
51418
51419
51419
51419
51420
51420
51420
51421
51421
51421
51422
51422
51422
51423
51423
51423
51424
51424
51424
51425
51425
51425
51426
51426
51426
51427
51427
51427
51428
51428
51428
51429
51429
51429
51430
51430
51430
51431
51431
51431
51432
51432
51432
51433
51433
51433
51434
51434
51434
51435
51435
51436
51436
51436
51437
51437
51437
51438
51438
51438
51439
51439
51439
51440
51440
51440
51441
51441
51441
51442
51442
51442
51443
51443
51443
51444
51444
51444
51445
51445
51445
51446
51446
51446
51447
51447
51447
51448
51448
51448
51449
51449
51449
51450
51450
51450
51451
51451
51451
51452
51452
51452
51453
51453
51453
51454
51454
51454
51455
51455
51455
51456
51456
51456
51457
51457
51457
51458
51458
51458
51459
51459
51459
51460
51460
51460
51461
51461
51461
51462
51462
51462
51463
51463
51463
51464
51464
51464
51465
51465
51465
51466
51466
51466
51467
51467
51467
51468
51468
51468
51469
51469
51469
51470
51470
51470
51471
51471
51472
51472
51472
51473
51473
51473
51474
51474
51474
51475
51475
51475
51476
51476
51476
51477
51477
51477
51478
51478
51478
51479
51479
51479
51480
51480
51480
51481
51481
51481
51482
51482
51482
51483
51483
51483
51484
51484
51484
51485
51485
51485
51486
51486
51486
51487
51487
51487
51488
51488
51488
51489
51489
51489
51490
51490
51490
51491
51491
51491
51492
51492
51492
51493
51493
51493
51494
51494
51494
51495
51495
51495
51496
51496
51496
51497
51497
51497
51498
51498
51498
51499
51499
51499
51500
51500
51500
51501
51501
51501
51502
51502
51502
51503
51503
51503
51504
51504
51504
51505
51505
51505
51506
51506
51506
51507
51507
51508
51508
51508
51509
51509
51509
51510
51510
51510
51511
51511
51511
51512
51512
51512
51513
51513
51513
51514
51514
51514
51515
51515
51515
51516
51516
51516
51517
51517
51517
51518
51518
51518
51519
51519
51519
51520
51520
51520
51521
51521
51521
51522
51522
51522
51523
51523
51523
51524
51524
51524
51525
51525
51525
51526
51526
51526
51527
51527
51527
51528
51528
51528
51529
51529
51529
51530
51530
51530
51531
51531
51531
51532
51532
51532
51533
51533
51533
51534
51534
51534
51535
51535
51535
51536
51536
51536
51537
51537
51537
51538
51538
51538
51539
51539
51539
51540
51540
51540
51541
51541
51541
51542
51542
51542
51543
51543
51544
51544
51544
51545
51545
51545
51546
51546
51546
51547
51547
51547
51548
51548
51548
51549
51549
51549
51550
51550
51550
51551
51551
51551
51552
51552
51552
51553
51553
51553
51554
51554
51554
51555
51555
51555
51556
51556
51556
51557
51557
51557
51558
51558
51558
51559
51559
51559
51560
51560
51560
51561
51561
51561
51562
51562
51562
51563
51563
51563
51564
51564
51564
51565
51565
51565
51566
51566
51566
51567
51567
51567
51568
51568
51568
51569
51569
51569
51570
51570
51570
51571
51571
51571
51572
51572
51572
51573
51573
51573
51574
51574
51574
51575
51575
51575
51576
51576
51576
51577
51577
51577
51578
51578
51578
51579
51579
51580
51580
51580
51581
51581
51581
51582
51582
51582
51583
51583
51583
51584
51584
51584
51585
51585
51585
51586
51586
51586
51587
51587
51587
51588
51588
51588
51589
51589
51589
51590
51590
51590
51591
51591
51591
51592
51592
51592
51593
51593
51593
51594
51594
51594
51595
51595
51595
51596
51596
51596
51597
51597
51597
51598
51598
51598
51599
51599
51599
51600
51600
51600
51601
51601
51601
51602
51602
51602
51603
51603
51603
51604
51604
51604
51605
51605
51605
51606
51606
51606
51607
51607
51607
51608
51608
51608
51609
51609
51609
51610
51610
51610
51611
51611
51611
51612
51612
51612
51613
51613
51613
51614
51614
51614
51615
51615
51616
51616
51616
51617
51617
51617
51618
51618
51618
51619
51619
51619
51620
51620
51620
51621
51621
51621
51622
51622
51622
51623
51623
51623
51624
51624
51624
51625
51625
51625
51626
51626
51626
51627
51627
51627
51628
51628
51628
51629
51629
51629
51630
51630
51630
51631
51631
51631
51632
51632
51632
51633
51633
51633
51634
51634
51634
51635
51635
51635
51636
51636
51636
51637
51637
51637
51638
51638
51638
51639
51639
51639
51640
51640
51640
51641
51641
51641
51642
51642
51642
51643
51643
51643
51644
51644
51644
51645
51645
51645
51646
51646
51646
51647
51647
51647
51648
51648
51648
51649
51649
51649
51650
51650
51650
51651
51651
51652
51652
51652
51653
51653
51653
51654
51654
51654
51655
51655
51655
51656
51656
51656
51657
51657
51657
51658
51658
51658
51659
51659
51659
51660
51660
51660
51661
51661
51661
51662
51662
51662
51663
51663
51663
51664
51664
51664
51665
51665
51665
51666
51666
51666
51667
51667
51667
51668
51668
51668
51669
51669
51669
51670
51670
51670
51671
51671
51671
51672
51672
51672
51673
51673
51673
51674
51674
51674
51675
51675
51675
51676
51676
51676
51677
51677
51677
51678
51678
51678
51679
51679
51679
51680
51680
51680
51681
51681
51681
51682
51682
51682
51683
51683
51683
51684
51684
51684
51685
51685
51685
51686
51686
51686
51687
51687
51688
51688
51688
51689
51689
51689
51690
51690
51690
51691
51691
51691
51692
51692
51692
51693
51693
51693
51694
51694
51694
51695
51695
51695
51696
51696
51696
51697
51697
51697
51698
51698
51698
51699
51699
51699
51700
51700
51700
51701
51701
51701
51702
51702
51702
51703
51703
51703
51704
51704
51704
51705
51705
51705
51706
51706
51706
51707
51707
51707
51708
51708
51708
51709
51709
51709
51710
51710
51710
51711
51711
51711
51712
51712
51712
51713
51713
51713
51714
51714
51714
51715
51715
51715
51716
51716
51716
51717
51717
51717
51718
51718
51718
51719
51719
51719
51720
51720
51720
51721
51721
51721
51722
51722
51722
51723
51723
51724
51724
51725
51725
51726
51726
51727
51727
51728
51728
51729
51729
51730
51730
51731
51731
51732
51732
51733
51733
51734
51734
51735
51735
51736
51736
51737
51737
51738
51738
51739
51739
51740
51740
51741
51741
51742
51742
51743
51743
51744
51744
51745
51745
51746
51746
51747
51747
51748
51748
51749
51749
51750
51750
51751
51751
51752
51752
51753
51753
51754
51754
51755
51755
51756
51756
51757
51757
51758
51758
51759
51760
51760
51760
51761
51761
51761
51762
51762
51762
51763
51763
51763
51764
51764
51764
51765
51765
51765
51766
51766
51766
51767
51767
51767
51768
51768
51768
51769
51769
51769
51770
51770
51770
51771
51771
51771
51772
51772
51772
51773
51773
51773
51774
51774
51774
51775
51775
51775
51776
51776
51776
51777
51777
51777
51778
51778
51778
51779
51779
51779
51780
51780
51780
51781
51781
51781
51782
51782
51782
51783
51783
51783
51784
51784
51784
51785
51785
51785
51786
51786
51786
51787
51787
51787
51788
51788
51788
51789
51789
51789
51790
51790
51790
51791
51791
51791
51792
51792
51792
51793
51793
51793
51794
51794
51794
51795
51795
51796
51796
51796
51797
51797
51797
51798
51798
51798
51799
51799
51799
51800
51800
51800
51801
51801
51801
51802
51802
51802
51803
51803
51803
51804
51804
51804
51805
51805
51805
51806
51806
51806
51807
51807
51807
51808
51808
51808
51809
51809
51809
51810
51810
51810
51811
51811
51811
51812
51812
51812
51813
51813
51813
51814
51814
51814
51815
51815
51815
51816
51816
51816
51817
51817
51817
51818
51818
51818
51819
51819
51819
51820
51820
51820
51821
51821
51821
51822
51822
51822
51823
51823
51823
51824
51824
51824
51825
51825
51825
51826
51826
51826
51827
51827
51827
51828
51828
51828
51829
51829
51829
51830
51830
51830
51831
51831
51832
51832
51832
51833
51833
51833
51834
51834
51834
51835
51835
51835
51836
51836
51836
51837
51837
51837
51838
51838
51838
51839
51839
51839
51840
51840
51840
51841
51841
51841
51842
51842
51842
51843
51843
51843
51844
51844
51844
51845
51845
51845
51846
51846
51846
51847
51847
51847
51848
51848
51848
51849
51849
51849
51850
51850
51850
51851
51851
51851
51852
51852
51852
51853
51853
51853
51854
51854
51854
51855
51855
51855
51856
51856
51856
51857
51857
51857
51858
51858
51858
51859
51859
51859
51860
51860
51860
51861
51861
51861
51862
51862
51862
51863
51863
51863
51864
51864
51864
51865
51865
51865
51866
51866
51866
51867
51867
51868
51868
51868
51869
51869
51869
51870
51870
51870
51871
51871
51871
51872
51872
51872
51873
51873
51873
51874
51874
51874
51875
51875
51875
51876
51876
51876
51877
51877
51877
51878
51878
51878
51879
51879
51879
51880
51880
51880
51881
51881
51881
51882
51882
51882
51883
51883
51883
51884
51884
51884
51885
51885
51885
51886
51886
51886
51887
51887
51887
51888
51888
51888
51889
51889
51889
51890
51890
51890
51891
51891
51891
51892
51892
51892
51893
51893
51893
51894
51894
51894
51895
51895
51895
51896
51896
51896
51897
51897
51897
51898
51898
51898
51899
51899
51899
51900
51900
51900
51901
51901
51901
51902
51902
51902
51903
51903
51904
51904
51904
51905
51905
51905
51906
51906
51906
51907
51907
51907
51908
51908
51908
51909
51909
51909
51910
51910
51910
51911
51911
51911
51912
51912
51912
51913
51913
51913
51914
51914
51914
51915
51915
51915
51916
51916
51916
51917
51917
51917
51918
51918
51918
51919
51919
51919
51920
51920
51920
51921
51921
51921
51922
51922
51922
51923
51923
51923
51924
51924
51924
51925
51925
51925
51926
51926
51926
51927
51927
51927
51928
51928
51928
51929
51929
51929
51930
51930
51930
51931
51931
51931
51932
51932
51932
51933
51933
51933
51934
51934
51934
51935
51935
51935
51936
51936
51936
51937
51937
51937
51938
51938
51938
51939
51939
51940
51940
51940
51941
51941
51941
51942
51942
51942
51943
51943
51943
51944
51944
51944
51945
51945
51945
51946
51946
51946
51947
51947
51947
51948
51948
51948
51949
51949
51949
51950
51950
51950
51951
51951
51951
51952
51952
51952
51953
51953
51953
51954
51954
51954
51955
51955
51955
51956
51956
51956
51957
51957
51957
51958
51958
51958
51959
51959
51959
51960
51960
51960
51961
51961
51961
51962
51962
51962
51963
51963
51963
51964
51964
51964
51965
51965
51965
51966
51966
51966
51967
51967
51967
51968
51968
51968
51969
51969
51969
51970
51970
51970
51971
51971
51971
51972
51972
51972
51973
51973
51973
51974
51974
51974
51975
51975
51976
51976
51976
51977
51977
51977
51978
51978
51978
51979
51979
51979
51980
51980
51980
51981
51981
51981
51982
51982
51982
51983
51983
51983
51984
51984
51984
51985
51985
51985
51986
51986
51986
51987
51987
51987
51988
51988
51988
51989
51989
51989
51990
51990
51990
51991
51991
51991
51992
51992
51992
51993
51993
51993
51994
51994
51994
51995
51995
51995
51996
51996
51996
51997
51997
51997
51998
51998
51998
51999
51999
51999
52000
52000
52000
52001
52001
52001
52002
52002
52002
52003
52003
52003
52004
52004
52004
52005
52005
52005
52006
52006
52006
52007
52007
52007
52008
52008
52008
52009
52009
52009
52010
52010
52010
52011
52011
52012
52012
52012
52013
52013
52013
52014
52014
52014
52015
52015
52015
52016
52016
52016
52017
52017
52017
52018
52018
52018
52019
52019
52019
52020
52020
52020
52021
52021
52021
52022
52022
52022
52023
52023
52023
52024
52024
52024
52025
52025
52025
52026
52026
52026
52027
52027
52027
52028
52028
52028
52029
52029
52029
52030
52030
52030
52031
52031
52031
52032
52032
52032
52033
52033
52033
52034
52034
52034
52035
52035
52035
52036
52036
52036
52037
52037
52037
52038
52038
52038
52039
52039
52039
52040
52040
52040
52041
52041
52041
52042
52042
52042
52043
52043
52043
52044
52044
52044
52045
52045
52045
52046
52046
52046
52047
52047
52048
52048
52048
52049
52049
52049
52050
52050
52050
52051
52051
52051
52052
52052
52052
52053
52053
52053
52054
52054
52054
52055
52055
52055
52056
52056
52056
52057
52057
52057
52058
52058
52058
52059
52059
52059
52060
52060
52060
52061
52061
52061
52062
52062
52062
52063
52063
52063
52064
52064
52064
52065
52065
52065
52066
52066
52066
52067
52067
52067
52068
52068
52068
52069
52069
52069
52070
52070
52070
52071
52071
52071
52072
52072
52072
52073
52073
52073
52074
52074
52074
52075
52075
52075
52076
52076
52076
52077
52077
52077
52078
52078
52078
52079
52079
52079
52080
52080
52080
52081
52081
52081
52082
52082
52082
52083
52083
52084
52084
52085
52085
52086
52086
52087
52087
52088
52088
52089
52089
52090
52090
52091
52091
52092
52092
52093
52093
52094
52094
52095
52095
52096
52096
52097
52097
52098
52098
52099
52099
52100
52100
52101
52101
52102
52102
52103
52103
52104
52104
52105
52105
52106
52106
52107
52107
52108
52108
52109
52109
52110
52110
52111
52111
52112
52112
52113
52113
52114
52114
52115
52115
52116
52116
52117
52117
52118
52118
52119
52120
52120
52120
52121
52121
52121
52122
52122
52122
52123
52123
52123
52124
52124
52124
52125
52125
52125
52126
52126
52126
52127
52127
52127
52128
52128
52128
52129
52129
52129
52130
52130
52130
52131
52131
52131
52132
52132
52132
52133
52133
52133
52134
52134
52134
52135
52135
52135
52136
52136
52136
52137
52137
52137
52138
52138
52138
52139
52139
52139
52140
52140
52140
52141
52141
52141
52142
52142
52142
52143
52143
52143
52144
52144
52144
52145
52145
52145
52146
52146
52146
52147
52147
52147
52148
52148
52148
52149
52149
52149
52150
52150
52150
52151
52151
52151
52152
52152
52152
52153
52153
52153
52154
52154
52154
52155
52155
52156
52156
52156
52157
52157
52157
52158
52158
52158
52159
52159
52159
52160
52160
52160
52161
52161
52161
52162
52162
52162
52163
52163
52163
52164
52164
52164
52165
52165
52165
52166
52166
52166
52167
52167
52167
52168
52168
52168
52169
52169
52169
52170
52170
52170
52171
52171
52171
52172
52172
52172
52173
52173
52173
52174
52174
52174
52175
52175
52175
52176
52176
52176
52177
52177
52177
52178
52178
52178
52179
52179
52179
52180
52180
52180
52181
52181
52181
52182
52182
52182
52183
52183
52183
52184
52184
52184
52185
52185
52185
52186
52186
52186
52187
52187
52187
52188
52188
52188
52189
52189
52189
52190
52190
52190
52191
52191
52192
52192
52192
52193
52193
52193
52194
52194
52194
52195
52195
52195
52196
52196
52196
52197
52197
52197
52198
52198
52198
52199
52199
52199
52200
52200
52200
52201
52201
52201
52202
52202
52202
52203
52203
52203
52204
52204
52204
52205
52205
52205
52206
52206
52206
52207
52207
52207
52208
52208
52208
52209
52209
52209
52210
52210
52210
52211
52211
52211
52212
52212
52212
52213
52213
52213
52214
52214
52214
52215
52215
52215
52216
52216
52216
52217
52217
52217
52218
52218
52218
52219
52219
52219
52220
52220
52220
52221
52221
52221
52222
52222
52222
52223
52223
52223
52224
52224
52224
52225
52225
52225
52226
52226
52226
52227
52227
52228
52228
52228
52229
52229
52229
52230
52230
52230
52231
52231
52231
52232
52232
52232
52233
52233
52233
52234
52234
52234
52235
52235
52235
52236
52236
52236
52237
52237
52237
52238
52238
52238
52239
52239
52239
52240
52240
52240
52241
52241
52241
52242
52242
52242
52243
52243
52243
52244
52244
52244
52245
52245
52245
52246
52246
52246
52247
52247
52247
52248
52248
52248
52249
52249
52249
52250
52250
52250
52251
52251
52251
52252
52252
52252
52253
52253
52253
52254
52254
52254
52255
52255
52255
52256
52256
52256
52257
52257
52257
52258
52258
52258
52259
52259
52259
52260
52260
52260
52261
52261
52261
52262
52262
52262
52263
52263
52264
52264
52264
52265
52265
52265
52266
52266
52266
52267
52267
52267
52268
52268
52268
52269
52269
52269
52270
52270
52270
52271
52271
52271
52272
52272
52272
52273
52273
52273
52274
52274
52274
52275
52275
52275
52276
52276
52276
52277
52277
52277
52278
52278
52278
52279
52279
52279
52280
52280
52280
52281
52281
52281
52282
52282
52282
52283
52283
52283
52284
52284
52284
52285
52285
52285
52286
52286
52286
52287
52287
52287
52288
52288
52288
52289
52289
52289
52290
52290
52290
52291
52291
52291
52292
52292
52292
52293
52293
52293
52294
52294
52294
52295
52295
52295
52296
52296
52296
52297
52297
52297
52298
52298
52298
52299
52299
52300
52300
52300
52301
52301
52301
52302
52302
52302
52303
52303
52303
52304
52304
52304
52305
52305
52305
52306
52306
52306
52307
52307
52307
52308
52308
52308
52309
52309
52309
52310
52310
52310
52311
52311
52311
52312
52312
52312
52313
52313
52313
52314
52314
52314
52315
52315
52315
52316
52316
52316
52317
52317
52317
52318
52318
52318
52319
52319
52319
52320
52320
52320
52321
52321
52321
52322
52322
52322
52323
52323
52323
52324
52324
52324
52325
52325
52325
52326
52326
52326
52327
52327
52327
52328
52328
52328
52329
52329
52329
52330
52330
52330
52331
52331
52331
52332
52332
52332
52333
52333
52333
52334
52334
52334
52335
52335
52336
52336
52336
52337
52337
52337
52338
52338
52338
52339
52339
52339
52340
52340
52340
52341
52341
52341
52342
52342
52342
52343
52343
52343
52344
52344
52344
52345
52345
52345
52346
52346
52346
52347
52347
52347
52348
52348
52348
52349
52349
52349
52350
52350
52350
52351
52351
52351
52352
52352
52352
52353
52353
52353
52354
52354
52354
52355
52355
52355
52356
52356
52356
52357
52357
52357
52358
52358
52358
52359
52359
52359
52360
52360
52360
52361
52361
52361
52362
52362
52362
52363
52363
52363
52364
52364
52364
52365
52365
52365
52366
52366
52366
52367
52367
52367
52368
52368
52368
52369
52369
52369
52370
52370
52370
52371
52371
52372
52372
52372
52373
52373
52373
52374
52374
52374
52375
52375
52375
52376
52376
52376
52377
52377
52377
52378
52378
52378
52379
52379
52379
52380
52380
52380
52381
52381
52381
52382
52382
52382
52383
52383
52383
52384
52384
52384
52385
52385
52385
52386
52386
52386
52387
52387
52387
52388
52388
52388
52389
52389
52389
52390
52390
52390
52391
52391
52391
52392
52392
52392
52393
52393
52393
52394
52394
52394
52395
52395
52395
52396
52396
52396
52397
52397
52397
52398
52398
52398
52399
52399
52399
52400
52400
52400
52401
52401
52401
52402
52402
52402
52403
52403
52403
52404
52404
52404
52405
52405
52405
52406
52406
52406
52407
52407
52408
52408
52408
52409
52409
52409
52410
52410
52410
52411
52411
52411
52412
52412
52412
52413
52413
52413
52414
52414
52414
52415
52415
52415
52416
52416
52416
52417
52417
52417
52418
52418
52418
52419
52419
52419
52420
52420
52420
52421
52421
52421
52422
52422
52422
52423
52423
52423
52424
52424
52424
52425
52425
52425
52426
52426
52426
52427
52427
52427
52428
52428
52428
52429
52429
52429
52430
52430
52430
52431
52431
52431
52432
52432
52432
52433
52433
52433
52434
52434
52434
52435
52435
52435
52436
52436
52436
52437
52437
52437
52438
52438
52438
52439
52439
52439
52440
52440
52440
52441
52441
52441
52442
52442
52442
52443
52443
52444
52444
52445
52445
52446
52446
52447
52447
52448
52448
52449
52449
52450
52450
52451
52451
52452
52452
52453
52453
52454
52454
52455
52455
52456
52456
52457
52457
52458
52458
52459
52459
52460
52460
52461
52461
52462
52462
52463
52463
52464
52464
52465
52465
52466
52466
52467
52467
52468
52468
52469
52469
52470
52470
52471
52471
52472
52472
52473
52473
52474
52474
52475
52475
52476
52476
52477
52477
52478
52478
52479
52480
52480
52480
52481
52481
52481
52482
52482
52482
52483
52483
52483
52484
52484
52484
52485
52485
52485
52486
52486
52486
52487
52487
52487
52488
52488
52488
52489
52489
52489
52490
52490
52490
52491
52491
52491
52492
52492
52492
52493
52493
52493
52494
52494
52494
52495
52495
52495
52496
52496
52496
52497
52497
52497
52498
52498
52498
52499
52499
52499
52500
52500
52500
52501
52501
52501
52502
52502
52502
52503
52503
52503
52504
52504
52504
52505
52505
52505
52506
52506
52506
52507
52507
52507
52508
52508
52508
52509
52509
52509
52510
52510
52510
52511
52511
52511
52512
52512
52512
52513
52513
52513
52514
52514
52514
52515
52515
52516
52516
52516
52517
52517
52517
52518
52518
52518
52519
52519
52519
52520
52520
52520
52521
52521
52521
52522
52522
52522
52523
52523
52523
52524
52524
52524
52525
52525
52525
52526
52526
52526
52527
52527
52527
52528
52528
52528
52529
52529
52529
52530
52530
52530
52531
52531
52531
52532
52532
52532
52533
52533
52533
52534
52534
52534
52535
52535
52535
52536
52536
52536
52537
52537
52537
52538
52538
52538
52539
52539
52539
52540
52540
52540
52541
52541
52541
52542
52542
52542
52543
52543
52543
52544
52544
52544
52545
52545
52545
52546
52546
52546
52547
52547
52547
52548
52548
52548
52549
52549
52549
52550
52550
52550
52551
52551
52552
52552
52552
52553
52553
52553
52554
52554
52554
52555
52555
52555
52556
52556
52556
52557
52557
52557
52558
52558
52558
52559
52559
52559
52560
52560
52560
52561
52561
52561
52562
52562
52562
52563
52563
52563
52564
52564
52564
52565
52565
52565
52566
52566
52566
52567
52567
52567
52568
52568
52568
52569
52569
52569
52570
52570
52570
52571
52571
52571
52572
52572
52572
52573
52573
52573
52574
52574
52574
52575
52575
52575
52576
52576
52576
52577
52577
52577
52578
52578
52578
52579
52579
52579
52580
52580
52580
52581
52581
52581
52582
52582
52582
52583
52583
52583
52584
52584
52584
52585
52585
52585
52586
52586
52586
52587
52587
52588
52588
52588
52589
52589
52589
52590
52590
52590
52591
52591
52591
52592
52592
52592
52593
52593
52593
52594
52594
52594
52595
52595
52595
52596
52596
52596
52597
52597
52597
52598
52598
52598
52599
52599
52599
52600
52600
52600
52601
52601
52601
52602
52602
52602
52603
52603
52603
52604
52604
52604
52605
52605
52605
52606
52606
52606
52607
52607
52607
52608
52608
52608
52609
52609
52609
52610
52610
52610
52611
52611
52611
52612
52612
52612
52613
52613
52613
52614
52614
52614
52615
52615
52615
52616
52616
52616
52617
52617
52617
52618
52618
52618
52619
52619
52619
52620
52620
52620
52621
52621
52621
52622
52622
52622
52623
52623
52624
52624
52624
52625
52625
52625
52626
52626
52626
52627
52627
52627
52628
52628
52628
52629
52629
52629
52630
52630
52630
52631
52631
52631
52632
52632
52632
52633
52633
52633
52634
52634
52634
52635
52635
52635
52636
52636
52636
52637
52637
52637
52638
52638
52638
52639
52639
52639
52640
52640
52640
52641
52641
52641
52642
52642
52642
52643
52643
52643
52644
52644
52644
52645
52645
52645
52646
52646
52646
52647
52647
52647
52648
52648
52648
52649
52649
52649
52650
52650
52650
52651
52651
52651
52652
52652
52652
52653
52653
52653
52654
52654
52654
52655
52655
52655
52656
52656
52656
52657
52657
52657
52658
52658
52658
52659
52659
52660
52660
52660
52661
52661
52661
52662
52662
52662
52663
52663
52663
52664
52664
52664
52665
52665
52665
52666
52666
52666
52667
52667
52667
52668
52668
52668
52669
52669
52669
52670
52670
52670
52671
52671
52671
52672
52672
52672
52673
52673
52673
52674
52674
52674
52675
52675
52675
52676
52676
52676
52677
52677
52677
52678
52678
52678
52679
52679
52679
52680
52680
52680
52681
52681
52681
52682
52682
52682
52683
52683
52683
52684
52684
52684
52685
52685
52685
52686
52686
52686
52687
52687
52687
52688
52688
52688
52689
52689
52689
52690
52690
52690
52691
52691
52691
52692
52692
52692
52693
52693
52693
52694
52694
52694
52695
52695
52696
52696
52696
52697
52697
52697
52698
52698
52698
52699
52699
52699
52700
52700
52700
52701
52701
52701
52702
52702
52702
52703
52703
52703
52704
52704
52704
52705
52705
52705
52706
52706
52706
52707
52707
52707
52708
52708
52708
52709
52709
52709
52710
52710
52710
52711
52711
52711
52712
52712
52712
52713
52713
52713
52714
52714
52714
52715
52715
52715
52716
52716
52716
52717
52717
52717
52718
52718
52718
52719
52719
52719
52720
52720
52720
52721
52721
52721
52722
52722
52722
52723
52723
52723
52724
52724
52724
52725
52725
52725
52726
52726
52726
52727
52727
52727
52728
52728
52728
52729
52729
52729
52730
52730
52730
52731
52731
52732
52732
52732
52733
52733
52733
52734
52734
52734
52735
52735
52735
52736
52736
52736
52737
52737
52737
52738
52738
52738
52739
52739
52739
52740
52740
52740
52741
52741
52741
52742
52742
52742
52743
52743
52743
52744
52744
52744
52745
52745
52745
52746
52746
52746
52747
52747
52747
52748
52748
52748
52749
52749
52749
52750
52750
52750
52751
52751
52751
52752
52752
52752
52753
52753
52753
52754
52754
52754
52755
52755
52755
52756
52756
52756
52757
52757
52757
52758
52758
52758
52759
52759
52759
52760
52760
52760
52761
52761
52761
52762
52762
52762
52763
52763
52763
52764
52764
52764
52765
52765
52765
52766
52766
52766
52767
52767
52768
52768
52768
52769
52769
52769
52770
52770
52770
52771
52771
52771
52772
52772
52772
52773
52773
52773
52774
52774
52774
52775
52775
52775
52776
52776
52776
52777
52777
52777
52778
52778
52778
52779
52779
52779
52780
52780
52780
52781
52781
52781
52782
52782
52782
52783
52783
52783
52784
52784
52784
52785
52785
52785
52786
52786
52786
52787
52787
52787
52788
52788
52788
52789
52789
52789
52790
52790
52790
52791
52791
52791
52792
52792
52792
52793
52793
52793
52794
52794
52794
52795
52795
52795
52796
52796
52796
52797
52797
52797
52798
52798
52798
52799
52799
52799
52800
52800
52800
52801
52801
52801
52802
52802
52802
52803
52803
52804
52804
52805
52805
52806
52806
52807
52807
52808
52808
52809
52809
52810
52810
52811
52811
52812
52812
52813
52813
52814
52814
52815
52815
52816
52816
52817
52817
52818
52818
52819
52819
52820
52820
52821
52821
52822
52822
52823
52823
52824
52824
52825
52825
52826
52826
52827
52827
52828
52828
52829
52829
52830
52830
52831
52831
52832
52832
52833
52833
52834
52834
52835
52835
52836
52836
52837
52837
52838
52838
52839
52840
52840
52840
52841
52841
52841
52842
52842
52842
52843
52843
52843
52844
52844
52844
52845
52845
52845
52846
52846
52846
52847
52847
52847
52848
52848
52848
52849
52849
52849
52850
52850
52850
52851
52851
52851
52852
52852
52852
52853
52853
52853
52854
52854
52854
52855
52855
52855
52856
52856
52856
52857
52857
52857
52858
52858
52858
52859
52859
52859
52860
52860
52860
52861
52861
52861
52862
52862
52862
52863
52863
52863
52864
52864
52864
52865
52865
52865
52866
52866
52866
52867
52867
52867
52868
52868
52868
52869
52869
52869
52870
52870
52870
52871
52871
52871
52872
52872
52872
52873
52873
52873
52874
52874
52874
52875
52875
52876
52876
52876
52877
52877
52877
52878
52878
52878
52879
52879
52879
52880
52880
52880
52881
52881
52881
52882
52882
52882
52883
52883
52883
52884
52884
52884
52885
52885
52885
52886
52886
52886
52887
52887
52887
52888
52888
52888
52889
52889
52889
52890
52890
52890
52891
52891
52891
52892
52892
52892
52893
52893
52893
52894
52894
52894
52895
52895
52895
52896
52896
52896
52897
52897
52897
52898
52898
52898
52899
52899
52899
52900
52900
52900
52901
52901
52901
52902
52902
52902
52903
52903
52903
52904
52904
52904
52905
52905
52905
52906
52906
52906
52907
52907
52907
52908
52908
52908
52909
52909
52909
52910
52910
52910
52911
52911
52912
52912
52912
52913
52913
52913
52914
52914
52914
52915
52915
52915
52916
52916
52916
52917
52917
52917
52918
52918
52918
52919
52919
52919
52920
52920
52920
52921
52921
52921
52922
52922
52922
52923
52923
52923
52924
52924
52924
52925
52925
52925
52926
52926
52926
52927
52927
52927
52928
52928
52928
52929
52929
52929
52930
52930
52930
52931
52931
52931
52932
52932
52932
52933
52933
52933
52934
52934
52934
52935
52935
52935
52936
52936
52936
52937
52937
52937
52938
52938
52938
52939
52939
52939
52940
52940
52940
52941
52941
52941
52942
52942
52942
52943
52943
52943
52944
52944
52944
52945
52945
52945
52946
52946
52946
52947
52947
52948
52948
52948
52949
52949
52949
52950
52950
52950
52951
52951
52951
52952
52952
52952
52953
52953
52953
52954
52954
52954
52955
52955
52955
52956
52956
52956
52957
52957
52957
52958
52958
52958
52959
52959
52959
52960
52960
52960
52961
52961
52961
52962
52962
52962
52963
52963
52963
52964
52964
52964
52965
52965
52965
52966
52966
52966
52967
52967
52967
52968
52968
52968
52969
52969
52969
52970
52970
52970
52971
52971
52971
52972
52972
52972
52973
52973
52973
52974
52974
52974
52975
52975
52975
52976
52976
52976
52977
52977
52977
52978
52978
52978
52979
52979
52979
52980
52980
52980
52981
52981
52981
52982
52982
52982
52983
52983
52984
52984
52984
52985
52985
52985
52986
52986
52986
52987
52987
52987
52988
52988
52988
52989
52989
52989
52990
52990
52990
52991
52991
52991
52992
52992
52992
52993
52993
52993
52994
52994
52994
52995
52995
52995
52996
52996
52996
52997
52997
52997
52998
52998
52998
52999
52999
52999
53000
53000
53000
53001
53001
53001
53002
53002
53002
53003
53003
53003
53004
53004
53004
53005
53005
53005
53006
53006
53006
53007
53007
53007
53008
53008
53008
53009
53009
53009
53010
53010
53010
53011
53011
53011
53012
53012
53012
53013
53013
53013
53014
53014
53014
53015
53015
53015
53016
53016
53016
53017
53017
53017
53018
53018
53018
53019
53019
53020
53020
53020
53021
53021
53021
53022
53022
53022
53023
53023
53023
53024
53024
53024
53025
53025
53025
53026
53026
53026
53027
53027
53027
53028
53028
53028
53029
53029
53029
53030
53030
53030
53031
53031
53031
53032
53032
53032
53033
53033
53033
53034
53034
53034
53035
53035
53035
53036
53036
53036
53037
53037
53037
53038
53038
53038
53039
53039
53039
53040
53040
53040
53041
53041
53041
53042
53042
53042
53043
53043
53043
53044
53044
53044
53045
53045
53045
53046
53046
53046
53047
53047
53047
53048
53048
53048
53049
53049
53049
53050
53050
53050
53051
53051
53051
53052
53052
53052
53053
53053
53053
53054
53054
53054
53055
53055
53056
53056
53056
53057
53057
53057
53058
53058
53058
53059
53059
53059
53060
53060
53060
53061
53061
53061
53062
53062
53062
53063
53063
53063
53064
53064
53064
53065
53065
53065
53066
53066
53066
53067
53067
53067
53068
53068
53068
53069
53069
53069
53070
53070
53070
53071
53071
53071
53072
53072
53072
53073
53073
53073
53074
53074
53074
53075
53075
53075
53076
53076
53076
53077
53077
53077
53078
53078
53078
53079
53079
53079
53080
53080
53080
53081
53081
53081
53082
53082
53082
53083
53083
53083
53084
53084
53084
53085
53085
53085
53086
53086
53086
53087
53087
53087
53088
53088
53088
53089
53089
53089
53090
53090
53090
53091
53091
53092
53092
53092
53093
53093
53093
53094
53094
53094
53095
53095
53095
53096
53096
53096
53097
53097
53097
53098
53098
53098
53099
53099
53099
53100
53100
53100
53101
53101
53101
53102
53102
53102
53103
53103
53103
53104
53104
53104
53105
53105
53105
53106
53106
53106
53107
53107
53107
53108
53108
53108
53109
53109
53109
53110
53110
53110
53111
53111
53111
53112
53112
53112
53113
53113
53113
53114
53114
53114
53115
53115
53115
53116
53116
53116
53117
53117
53117
53118
53118
53118
53119
53119
53119
53120
53120
53120
53121
53121
53121
53122
53122
53122
53123
53123
53123
53124
53124
53124
53125
53125
53125
53126
53126
53126
53127
53127
53128
53128
53128
53129
53129
53129
53130
53130
53130
53131
53131
53131
53132
53132
53132
53133
53133
53133
53134
53134
53134
53135
53135
53135
53136
53136
53136
53137
53137
53137
53138
53138
53138
53139
53139
53139
53140
53140
53140
53141
53141
53141
53142
53142
53142
53143
53143
53143
53144
53144
53144
53145
53145
53145
53146
53146
53146
53147
53147
53147
53148
53148
53148
53149
53149
53149
53150
53150
53150
53151
53151
53151
53152
53152
53152
53153
53153
53153
53154
53154
53154
53155
53155
53155
53156
53156
53156
53157
53157
53157
53158
53158
53158
53159
53159
53159
53160
53160
53160
53161
53161
53161
53162
53162
53162
53163
53163
53164
53164
53165
53165
53166
53166
53167
53167
53168
53168
53169
53169
53170
53170
53171
53171
53172
53172
53173
53173
53174
53174
53175
53175
53176
53176
53177
53177
53178
53178
53179
53179
53180
53180
53181
53181
53182
53182
53183
53183
53184
53184
53185
53185
53186
53186
53187
53187
53188
53188
53189
53189
53190
53190
53191
53191
53192
53192
53193
53193
53194
53194
53195
53195
53196
53196
53197
53197
53198
53198
53199
53200
53200
53200
53201
53201
53201
53202
53202
53202
53203
53203
53203
53204
53204
53204
53205
53205
53205
53206
53206
53206
53207
53207
53207
53208
53208
53208
53209
53209
53209
53210
53210
53210
53211
53211
53211
53212
53212
53212
53213
53213
53213
53214
53214
53214
53215
53215
53215
53216
53216
53216
53217
53217
53217
53218
53218
53218
53219
53219
53219
53220
53220
53220
53221
53221
53221
53222
53222
53222
53223
53223
53223
53224
53224
53224
53225
53225
53225
53226
53226
53226
53227
53227
53227
53228
53228
53228
53229
53229
53229
53230
53230
53230
53231
53231
53231
53232
53232
53232
53233
53233
53233
53234
53234
53234
53235
53235
53236
53236
53236
53237
53237
53237
53238
53238
53238
53239
53239
53239
53240
53240
53240
53241
53241
53241
53242
53242
53242
53243
53243
53243
53244
53244
53244
53245
53245
53245
53246
53246
53246
53247
53247
53247
53248
53248
53248
53249
53249
53249
53250
53250
53250
53251
53251
53251
53252
53252
53252
53253
53253
53253
53254
53254
53254
53255
53255
53255
53256
53256
53256
53257
53257
53257
53258
53258
53258
53259
53259
53259
53260
53260
53260
53261
53261
53261
53262
53262
53262
53263
53263
53263
53264
53264
53264
53265
53265
53265
53266
53266
53266
53267
53267
53267
53268
53268
53268
53269
53269
53269
53270
53270
53270
53271
53271
53272
53272
53272
53273
53273
53273
53274
53274
53274
53275
53275
53275
53276
53276
53276
53277
53277
53277
53278
53278
53278
53279
53279
53279
53280
53280
53280
53281
53281
53281
53282
53282
53282
53283
53283
53283
53284
53284
53284
53285
53285
53285
53286
53286
53286
53287
53287
53287
53288
53288
53288
53289
53289
53289
53290
53290
53290
53291
53291
53291
53292
53292
53292
53293
53293
53293
53294
53294
53294
53295
53295
53295
53296
53296
53296
53297
53297
53297
53298
53298
53298
53299
53299
53299
53300
53300
53300
53301
53301
53301
53302
53302
53302
53303
53303
53303
53304
53304
53304
53305
53305
53305
53306
53306
53306
53307
53307
53308
53308
53308
53309
53309
53309
53310
53310
53310
53311
53311
53311
53312
53312
53312
53313
53313
53313
53314
53314
53314
53315
53315
53315
53316
53316
53316
53317
53317
53317
53318
53318
53318
53319
53319
53319
53320
53320
53320
53321
53321
53321
53322
53322
53322
53323
53323
53323
53324
53324
53324
53325
53325
53325
53326
53326
53326
53327
53327
53327
53328
53328
53328
53329
53329
53329
53330
53330
53330
53331
53331
53331
53332
53332
53332
53333
53333
53333
53334
53334
53334
53335
53335
53335
53336
53336
53336
53337
53337
53337
53338
53338
53338
53339
53339
53339
53340
53340
53340
53341
53341
53341
53342
53342
53342
53343
53343
53344
53344
53344
53345
53345
53345
53346
53346
53346
53347
53347
53347
53348
53348
53348
53349
53349
53349
53350
53350
53350
53351
53351
53351
53352
53352
53352
53353
53353
53353
53354
53354
53354
53355
53355
53355
53356
53356
53356
53357
53357
53357
53358
53358
53358
53359
53359
53359
53360
53360
53360
53361
53361
53361
53362
53362
53362
53363
53363
53363
53364
53364
53364
53365
53365
53365
53366
53366
53366
53367
53367
53367
53368
53368
53368
53369
53369
53369
53370
53370
53370
53371
53371
53371
53372
53372
53372
53373
53373
53373
53374
53374
53374
53375
53375
53375
53376
53376
53376
53377
53377
53377
53378
53378
53378
53379
53379
53380
53380
53380
53381
53381
53381
53382
53382
53382
53383
53383
53383
53384
53384
53384
53385
53385
53385
53386
53386
53386
53387
53387
53387
53388
53388
53388
53389
53389
53389
53390
53390
53390
53391
53391
53391
53392
53392
53392
53393
53393
53393
53394
53394
53394
53395
53395
53395
53396
53396
53396
53397
53397
53397
53398
53398
53398
53399
53399
53399
53400
53400
53400
53401
53401
53401
53402
53402
53402
53403
53403
53403
53404
53404
53404
53405
53405
53405
53406
53406
53406
53407
53407
53407
53408
53408
53408
53409
53409
53409
53410
53410
53410
53411
53411
53411
53412
53412
53412
53413
53413
53413
53414
53414
53414
53415
53415
53416
53416
53416
53417
53417
53417
53418
53418
53418
53419
53419
53419
53420
53420
53420
53421
53421
53421
53422
53422
53422
53423
53423
53423
53424
53424
53424
53425
53425
53425
53426
53426
53426
53427
53427
53427
53428
53428
53428
53429
53429
53429
53430
53430
53430
53431
53431
53431
53432
53432
53432
53433
53433
53433
53434
53434
53434
53435
53435
53435
53436
53436
53436
53437
53437
53437
53438
53438
53438
53439
53439
53439
53440
53440
53440
53441
53441
53441
53442
53442
53442
53443
53443
53443
53444
53444
53444
53445
53445
53445
53446
53446
53446
53447
53447
53447
53448
53448
53448
53449
53449
53449
53450
53450
53450
53451
53451
53452
53452
53452
53453
53453
53453
53454
53454
53454
53455
53455
53455
53456
53456
53456
53457
53457
53457
53458
53458
53458
53459
53459
53459
53460
53460
53460
53461
53461
53461
53462
53462
53462
53463
53463
53463
53464
53464
53464
53465
53465
53465
53466
53466
53466
53467
53467
53467
53468
53468
53468
53469
53469
53469
53470
53470
53470
53471
53471
53471
53472
53472
53472
53473
53473
53473
53474
53474
53474
53475
53475
53475
53476
53476
53476
53477
53477
53477
53478
53478
53478
53479
53479
53479
53480
53480
53480
53481
53481
53481
53482
53482
53482
53483
53483
53483
53484
53484
53484
53485
53485
53485
53486
53486
53486
53487
53487
53488
53488
53488
53489
53489
53489
53490
53490
53490
53491
53491
53491
53492
53492
53492
53493
53493
53493
53494
53494
53494
53495
53495
53495
53496
53496
53496
53497
53497
53497
53498
53498
53498
53499
53499
53499
53500
53500
53500
53501
53501
53501
53502
53502
53502
53503
53503
53503
53504
53504
53504
53505
53505
53505
53506
53506
53506
53507
53507
53507
53508
53508
53508
53509
53509
53509
53510
53510
53510
53511
53511
53511
53512
53512
53512
53513
53513
53513
53514
53514
53514
53515
53515
53515
53516
53516
53516
53517
53517
53517
53518
53518
53518
53519
53519
53519
53520
53520
53520
53521
53521
53521
53522
53522
53522
53523
53523
53524
53524
53525
53525
53526
53526
53527
53527
53528
53528
53529
53529
53530
53530
53531
53531
53532
53532
53533
53533
53534
53534
53535
53535
53536
53536
53537
53537
53538
53538
53539
53539
53540
53540
53541
53541
53542
53542
53543
53543
53544
53544
53545
53545
53546
53546
53547
53547
53548
53548
53549
53549
53550
53550
53551
53551
53552
53552
53553
53553
53554
53554
53555
53555
53556
53556
53557
53557
53558
53558
53559
53560
53560
53560
53561
53561
53561
53562
53562
53562
53563
53563
53563
53564
53564
53564
53565
53565
53565
53566
53566
53566
53567
53567
53567
53568
53568
53568
53569
53569
53569
53570
53570
53570
53571
53571
53571
53572
53572
53572
53573
53573
53573
53574
53574
53574
53575
53575
53575
53576
53576
53576
53577
53577
53577
53578
53578
53578
53579
53579
53579
53580
53580
53580
53581
53581
53581
53582
53582
53582
53583
53583
53583
53584
53584
53584
53585
53585
53585
53586
53586
53586
53587
53587
53587
53588
53588
53588
53589
53589
53589
53590
53590
53590
53591
53591
53591
53592
53592
53592
53593
53593
53593
53594
53594
53594
53595
53595
53596
53596
53596
53597
53597
53597
53598
53598
53598
53599
53599
53599
53600
53600
53600
53601
53601
53601
53602
53602
53602
53603
53603
53603
53604
53604
53604
53605
53605
53605
53606
53606
53606
53607
53607
53607
53608
53608
53608
53609
53609
53609
53610
53610
53610
53611
53611
53611
53612
53612
53612
53613
53613
53613
53614
53614
53614
53615
53615
53615
53616
53616
53616
53617
53617
53617
53618
53618
53618
53619
53619
53619
53620
53620
53620
53621
53621
53621
53622
53622
53622
53623
53623
53623
53624
53624
53624
53625
53625
53625
53626
53626
53626
53627
53627
53627
53628
53628
53628
53629
53629
53629
53630
53630
53630
53631
53631
53632
53632
53632
53633
53633
53633
53634
53634
53634
53635
53635
53635
53636
53636
53636
53637
53637
53637
53638
53638
53638
53639
53639
53639
53640
53640
53640
53641
53641
53641
53642
53642
53642
53643
53643
53643
53644
53644
53644
53645
53645
53645
53646
53646
53646
53647
53647
53647
53648
53648
53648
53649
53649
53649
53650
53650
53650
53651
53651
53651
53652
53652
53652
53653
53653
53653
53654
53654
53654
53655
53655
53655
53656
53656
53656
53657
53657
53657
53658
53658
53658
53659
53659
53659
53660
53660
53660
53661
53661
53661
53662
53662
53662
53663
53663
53663
53664
53664
53664
53665
53665
53665
53666
53666
53666
53667
53667
53668
53668
53668
53669
53669
53669
53670
53670
53670
53671
53671
53671
53672
53672
53672
53673
53673
53673
53674
53674
53674
53675
53675
53675
53676
53676
53676
53677
53677
53677
53678
53678
53678
53679
53679
53679
53680
53680
53680
53681
53681
53681
53682
53682
53682
53683
53683
53683
53684
53684
53684
53685
53685
53685
53686
53686
53686
53687
53687
53687
53688
53688
53688
53689
53689
53689
53690
53690
53690
53691
53691
53691
53692
53692
53692
53693
53693
53693
53694
53694
53694
53695
53695
53695
53696
53696
53696
53697
53697
53697
53698
53698
53698
53699
53699
53699
53700
53700
53700
53701
53701
53701
53702
53702
53702
53703
53703
53704
53704
53704
53705
53705
53705
53706
53706
53706
53707
53707
53707
53708
53708
53708
53709
53709
53709
53710
53710
53710
53711
53711
53711
53712
53712
53712
53713
53713
53713
53714
53714
53714
53715
53715
53715
53716
53716
53716
53717
53717
53717
53718
53718
53718
53719
53719
53719
53720
53720
53720
53721
53721
53721
53722
53722
53722
53723
53723
53723
53724
53724
53724
53725
53725
53725
53726
53726
53726
53727
53727
53727
53728
53728
53728
53729
53729
53729
53730
53730
53730
53731
53731
53731
53732
53732
53732
53733
53733
53733
53734
53734
53734
53735
53735
53735
53736
53736
53736
53737
53737
53737
53738
53738
53738
53739
53739
53740
53740
53740
53741
53741
53741
53742
53742
53742
53743
53743
53743
53744
53744
53744
53745
53745
53745
53746
53746
53746
53747
53747
53747
53748
53748
53748
53749
53749
53749
53750
53750
53750
53751
53751
53751
53752
53752
53752
53753
53753
53753
53754
53754
53754
53755
53755
53755
53756
53756
53756
53757
53757
53757
53758
53758
53758
53759
53759
53759
53760
53760
53760
53761
53761
53761
53762
53762
53762
53763
53763
53763
53764
53764
53764
53765
53765
53765
53766
53766
53766
53767
53767
53767
53768
53768
53768
53769
53769
53769
53770
53770
53770
53771
53771
53771
53772
53772
53772
53773
53773
53773
53774
53774
53774
53775
53775
53776
53776
53776
53777
53777
53777
53778
53778
53778
53779
53779
53779
53780
53780
53780
53781
53781
53781
53782
53782
53782
53783
53783
53783
53784
53784
53784
53785
53785
53785
53786
53786
53786
53787
53787
53787
53788
53788
53788
53789
53789
53789
53790
53790
53790
53791
53791
53791
53792
53792
53792
53793
53793
53793
53794
53794
53794
53795
53795
53795
53796
53796
53796
53797
53797
53797
53798
53798
53798
53799
53799
53799
53800
53800
53800
53801
53801
53801
53802
53802
53802
53803
53803
53803
53804
53804
53804
53805
53805
53805
53806
53806
53806
53807
53807
53807
53808
53808
53808
53809
53809
53809
53810
53810
53810
53811
53811
53812
53812
53812
53813
53813
53813
53814
53814
53814
53815
53815
53815
53816
53816
53816
53817
53817
53817
53818
53818
53818
53819
53819
53819
53820
53820
53820
53821
53821
53821
53822
53822
53822
53823
53823
53823
53824
53824
53824
53825
53825
53825
53826
53826
53826
53827
53827
53827
53828
53828
53828
53829
53829
53829
53830
53830
53830
53831
53831
53831
53832
53832
53832
53833
53833
53833
53834
53834
53834
53835
53835
53835
53836
53836
53836
53837
53837
53837
53838
53838
53838
53839
53839
53839
53840
53840
53840
53841
53841
53841
53842
53842
53842
53843
53843
53843
53844
53844
53844
53845
53845
53845
53846
53846
53846
53847
53847
53848
53848
53848
53849
53849
53849
53850
53850
53850
53851
53851
53851
53852
53852
53852
53853
53853
53853
53854
53854
53854
53855
53855
53855
53856
53856
53856
53857
53857
53857
53858
53858
53858
53859
53859
53859
53860
53860
53860
53861
53861
53861
53862
53862
53862
53863
53863
53863
53864
53864
53864
53865
53865
53865
53866
53866
53866
53867
53867
53867
53868
53868
53868
53869
53869
53869
53870
53870
53870
53871
53871
53871
53872
53872
53872
53873
53873
53873
53874
53874
53874
53875
53875
53875
53876
53876
53876
53877
53877
53877
53878
53878
53878
53879
53879
53879
53880
53880
53880
53881
53881
53881
53882
53882
53882
53883
53883
53884
53884
53885
53885
53886
53886
53887
53887
53888
53888
53889
53889
53890
53890
53891
53891
53892
53892
53893
53893
53894
53894
53895
53895
53896
53896
53897
53897
53898
53898
53899
53899
53900
53900
53901
53901
53902
53902
53903
53903
53904
53904
53905
53905
53906
53906
53907
53907
53908
53908
53909
53909
53910
53910
53911
53911
53912
53912
53913
53913
53914
53914
53915
53915
53916
53916
53917
53917
53918
53918
53919
53920
53920
53920
53921
53921
53921
53922
53922
53922
53923
53923
53923
53924
53924
53924
53925
53925
53925
53926
53926
53926
53927
53927
53927
53928
53928
53928
53929
53929
53929
53930
53930
53930
53931
53931
53931
53932
53932
53932
53933
53933
53933
53934
53934
53934
53935
53935
53935
53936
53936
53936
53937
53937
53937
53938
53938
53938
53939
53939
53939
53940
53940
53940
53941
53941
53941
53942
53942
53942
53943
53943
53943
53944
53944
53944
53945
53945
53945
53946
53946
53946
53947
53947
53947
53948
53948
53948
53949
53949
53949
53950
53950
53950
53951
53951
53951
53952
53952
53952
53953
53953
53953
53954
53954
53954
53955
53955
53956
53956
53956
53957
53957
53957
53958
53958
53958
53959
53959
53959
53960
53960
53960
53961
53961
53961
53962
53962
53962
53963
53963
53963
53964
53964
53964
53965
53965
53965
53966
53966
53966
53967
53967
53967
53968
53968
53968
53969
53969
53969
53970
53970
53970
53971
53971
53971
53972
53972
53972
53973
53973
53973
53974
53974
53974
53975
53975
53975
53976
53976
53976
53977
53977
53977
53978
53978
53978
53979
53979
53979
53980
53980
53980
53981
53981
53981
53982
53982
53982
53983
53983
53983
53984
53984
53984
53985
53985
53985
53986
53986
53986
53987
53987
53987
53988
53988
53988
53989
53989
53989
53990
53990
53990
53991
53991
53992
53992
53992
53993
53993
53993
53994
53994
53994
53995
53995
53995
53996
53996
53996
53997
53997
53997
53998
53998
53998
53999
53999
53999
54000
54000
54000
54001
54001
54001
54002
54002
54002
54003
54003
54003
54004
54004
54004
54005
54005
54005
54006
54006
54006
54007
54007
54007
54008
54008
54008
54009
54009
54009
54010
54010
54010
54011
54011
54011
54012
54012
54012
54013
54013
54013
54014
54014
54014
54015
54015
54015
54016
54016
54016
54017
54017
54017
54018
54018
54018
54019
54019
54019
54020
54020
54020
54021
54021
54021
54022
54022
54022
54023
54023
54023
54024
54024
54024
54025
54025
54025
54026
54026
54026
54027
54027
54028
54028
54028
54029
54029
54029
54030
54030
54030
54031
54031
54031
54032
54032
54032
54033
54033
54033
54034
54034
54034
54035
54035
54035
54036
54036
54036
54037
54037
54037
54038
54038
54038
54039
54039
54039
54040
54040
54040
54041
54041
54041
54042
54042
54042
54043
54043
54043
54044
54044
54044
54045
54045
54045
54046
54046
54046
54047
54047
54047
54048
54048
54048
54049
54049
54049
54050
54050
54050
54051
54051
54051
54052
54052
54052
54053
54053
54053
54054
54054
54054
54055
54055
54055
54056
54056
54056
54057
54057
54057
54058
54058
54058
54059
54059
54059
54060
54060
54060
54061
54061
54061
54062
54062
54062
54063
54063
54064
54064
54064
54065
54065
54065
54066
54066
54066
54067
54067
54067
54068
54068
54068
54069
54069
54069
54070
54070
54070
54071
54071
54071
54072
54072
54072
54073
54073
54073
54074
54074
54074
54075
54075
54075
54076
54076
54076
54077
54077
54077
54078
54078
54078
54079
54079
54079
54080
54080
54080
54081
54081
54081
54082
54082
54082
54083
54083
54083
54084
54084
54084
54085
54085
54085
54086
54086
54086
54087
54087
54087
54088
54088
54088
54089
54089
54089
54090
54090
54090
54091
54091
54091
54092
54092
54092
54093
54093
54093
54094
54094
54094
54095
54095
54095
54096
54096
54096
54097
54097
54097
54098
54098
54098
54099
54099
54100
54100
54100
54101
54101
54101
54102
54102
54102
54103
54103
54103
54104
54104
54104
54105
54105
54105
54106
54106
54106
54107
54107
54107
54108
54108
54108
54109
54109
54109
54110
54110
54110
54111
54111
54111
54112
54112
54112
54113
54113
54113
54114
54114
54114
54115
54115
54115
54116
54116
54116
54117
54117
54117
54118
54118
54118
54119
54119
54119
54120
54120
54120
54121
54121
54121
54122
54122
54122
54123
54123
54123
54124
54124
54124
54125
54125
54125
54126
54126
54126
54127
54127
54127
54128
54128
54128
54129
54129
54129
54130
54130
54130
54131
54131
54131
54132
54132
54132
54133
54133
54133
54134
54134
54134
54135
54135
54136
54136
54136
54137
54137
54137
54138
54138
54138
54139
54139
54139
54140
54140
54140
54141
54141
54141
54142
54142
54142
54143
54143
54143
54144
54144
54144
54145
54145
54145
54146
54146
54146
54147
54147
54147
54148
54148
54148
54149
54149
54149
54150
54150
54150
54151
54151
54151
54152
54152
54152
54153
54153
54153
54154
54154
54154
54155
54155
54155
54156
54156
54156
54157
54157
54157
54158
54158
54158
54159
54159
54159
54160
54160
54160
54161
54161
54161
54162
54162
54162
54163
54163
54163
54164
54164
54164
54165
54165
54165
54166
54166
54166
54167
54167
54167
54168
54168
54168
54169
54169
54169
54170
54170
54170
54171
54171
54172
54172
54172
54173
54173
54173
54174
54174
54174
54175
54175
54175
54176
54176
54176
54177
54177
54177
54178
54178
54178
54179
54179
54179
54180
54180
54180
54181
54181
54181
54182
54182
54182
54183
54183
54183
54184
54184
54184
54185
54185
54185
54186
54186
54186
54187
54187
54187
54188
54188
54188
54189
54189
54189
54190
54190
54190
54191
54191
54191
54192
54192
54192
54193
54193
54193
54194
54194
54194
54195
54195
54195
54196
54196
54196
54197
54197
54197
54198
54198
54198
54199
54199
54199
54200
54200
54200
54201
54201
54201
54202
54202
54202
54203
54203
54203
54204
54204
54204
54205
54205
54205
54206
54206
54206
54207
54207
54208
54208
54208
54209
54209
54209
54210
54210
54210
54211
54211
54211
54212
54212
54212
54213
54213
54213
54214
54214
54214
54215
54215
54215
54216
54216
54216
54217
54217
54217
54218
54218
54218
54219
54219
54219
54220
54220
54220
54221
54221
54221
54222
54222
54222
54223
54223
54223
54224
54224
54224
54225
54225
54225
54226
54226
54226
54227
54227
54227
54228
54228
54228
54229
54229
54229
54230
54230
54230
54231
54231
54231
54232
54232
54232
54233
54233
54233
54234
54234
54234
54235
54235
54235
54236
54236
54236
54237
54237
54237
54238
54238
54238
54239
54239
54239
54240
54240
54240
54241
54241
54241
54242
54242
54242
54243
54243
54244
54244
54245
54245
54246
54246
54247
54247
54248
54248
54249
54249
54250
54250
54251
54251
54252
54252
54253
54253
54254
54254
54255
54255
54256
54256
54257
54257
54258
54258
54259
54259
54260
54260
54261
54261
54262
54262
54263
54263
54264
54264
54265
54265
54266
54266
54267
54267
54268
54268
54269
54269
54270
54270
54271
54271
54272
54272
54273
54273
54274
54274
54275
54275
54276
54276
54277
54277
54278
54278
54279
54280
54280
54280
54281
54281
54281
54282
54282
54282
54283
54283
54283
54284
54284
54284
54285
54285
54285
54286
54286
54286
54287
54287
54287
54288
54288
54288
54289
54289
54289
54290
54290
54290
54291
54291
54291
54292
54292
54292
54293
54293
54293
54294
54294
54294
54295
54295
54295
54296
54296
54296
54297
54297
54297
54298
54298
54298
54299
54299
54299
54300
54300
54300
54301
54301
54301
54302
54302
54302
54303
54303
54303
54304
54304
54304
54305
54305
54305
54306
54306
54306
54307
54307
54307
54308
54308
54308
54309
54309
54309
54310
54310
54310
54311
54311
54311
54312
54312
54312
54313
54313
54313
54314
54314
54314
54315
54315
54316
54316
54316
54317
54317
54317
54318
54318
54318
54319
54319
54319
54320
54320
54320
54321
54321
54321
54322
54322
54322
54323
54323
54323
54324
54324
54324
54325
54325
54325
54326
54326
54326
54327
54327
54327
54328
54328
54328
54329
54329
54329
54330
54330
54330
54331
54331
54331
54332
54332
54332
54333
54333
54333
54334
54334
54334
54335
54335
54335
54336
54336
54336
54337
54337
54337
54338
54338
54338
54339
54339
54339
54340
54340
54340
54341
54341
54341
54342
54342
54342
54343
54343
54343
54344
54344
54344
54345
54345
54345
54346
54346
54346
54347
54347
54347
54348
54348
54348
54349
54349
54349
54350
54350
54350
54351
54351
54352
54352
54352
54353
54353
54353
54354
54354
54354
54355
54355
54355
54356
54356
54356
54357
54357
54357
54358
54358
54358
54359
54359
54359
54360
54360
54360
54361
54361
54361
54362
54362
54362
54363
54363
54363
54364
54364
54364
54365
54365
54365
54366
54366
54366
54367
54367
54367
54368
54368
54368
54369
54369
54369
54370
54370
54370
54371
54371
54371
54372
54372
54372
54373
54373
54373
54374
54374
54374
54375
54375
54375
54376
54376
54376
54377
54377
54377
54378
54378
54378
54379
54379
54379
54380
54380
54380
54381
54381
54381
54382
54382
54382
54383
54383
54383
54384
54384
54384
54385
54385
54385
54386
54386
54386
54387
54387
54388
54388
54388
54389
54389
54389
54390
54390
54390
54391
54391
54391
54392
54392
54392
54393
54393
54393
54394
54394
54394
54395
54395
54395
54396
54396
54396
54397
54397
54397
54398
54398
54398
54399
54399
54399
54400
54400
54400
54401
54401
54401
54402
54402
54402
54403
54403
54403
54404
54404
54404
54405
54405
54405
54406
54406
54406
54407
54407
54407
54408
54408
54408
54409
54409
54409
54410
54410
54410
54411
54411
54411
54412
54412
54412
54413
54413
54413
54414
54414
54414
54415
54415
54415
54416
54416
54416
54417
54417
54417
54418
54418
54418
54419
54419
54419
54420
54420
54420
54421
54421
54421
54422
54422
54422
54423
54423
54424
54424
54424
54425
54425
54425
54426
54426
54426
54427
54427
54427
54428
54428
54428
54429
54429
54429
54430
54430
54430
54431
54431
54431
54432
54432
54432
54433
54433
54433
54434
54434
54434
54435
54435
54435
54436
54436
54436
54437
54437
54437
54438
54438
54438
54439
54439
54439
54440
54440
54440
54441
54441
54441
54442
54442
54442
54443
54443
54443
54444
54444
54444
54445
54445
54445
54446
54446
54446
54447
54447
54447
54448
54448
54448
54449
54449
54449
54450
54450
54450
54451
54451
54451
54452
54452
54452
54453
54453
54453
54454
54454
54454
54455
54455
54455
54456
54456
54456
54457
54457
54457
54458
54458
54458
54459
54459
54460
54460
54460
54461
54461
54461
54462
54462
54462
54463
54463
54463
54464
54464
54464
54465
54465
54465
54466
54466
54466
54467
54467
54467
54468
54468
54468
54469
54469
54469
54470
54470
54470
54471
54471
54471
54472
54472
54472
54473
54473
54473
54474
54474
54474
54475
54475
54475
54476
54476
54476
54477
54477
54477
54478
54478
54478
54479
54479
54479
54480
54480
54480
54481
54481
54481
54482
54482
54482
54483
54483
54483
54484
54484
54484
54485
54485
54485
54486
54486
54486
54487
54487
54487
54488
54488
54488
54489
54489
54489
54490
54490
54490
54491
54491
54491
54492
54492
54492
54493
54493
54493
54494
54494
54494
54495
54495
54496
54496
54496
54497
54497
54497
54498
54498
54498
54499
54499
54499
54500
54500
54500
54501
54501
54501
54502
54502
54502
54503
54503
54503
54504
54504
54504
54505
54505
54505
54506
54506
54506
54507
54507
54507
54508
54508
54508
54509
54509
54509
54510
54510
54510
54511
54511
54511
54512
54512
54512
54513
54513
54513
54514
54514
54514
54515
54515
54515
54516
54516
54516
54517
54517
54517
54518
54518
54518
54519
54519
54519
54520
54520
54520
54521
54521
54521
54522
54522
54522
54523
54523
54523
54524
54524
54524
54525
54525
54525
54526
54526
54526
54527
54527
54527
54528
54528
54528
54529
54529
54529
54530
54530
54530
54531
54531
54532
54532
54532
54533
54533
54533
54534
54534
54534
54535
54535
54535
54536
54536
54536
54537
54537
54537
54538
54538
54538
54539
54539
54539
54540
54540
54540
54541
54541
54541
54542
54542
54542
54543
54543
54543
54544
54544
54544
54545
54545
54545
54546
54546
54546
54547
54547
54547
54548
54548
54548
54549
54549
54549
54550
54550
54550
54551
54551
54551
54552
54552
54552
54553
54553
54553
54554
54554
54554
54555
54555
54555
54556
54556
54556
54557
54557
54557
54558
54558
54558
54559
54559
54559
54560
54560
54560
54561
54561
54561
54562
54562
54562
54563
54563
54563
54564
54564
54564
54565
54565
54565
54566
54566
54566
54567
54567
54568
54568
54568
54569
54569
54569
54570
54570
54570
54571
54571
54571
54572
54572
54572
54573
54573
54573
54574
54574
54574
54575
54575
54575
54576
54576
54576
54577
54577
54577
54578
54578
54578
54579
54579
54579
54580
54580
54580
54581
54581
54581
54582
54582
54582
54583
54583
54583
54584
54584
54584
54585
54585
54585
54586
54586
54586
54587
54587
54587
54588
54588
54588
54589
54589
54589
54590
54590
54590
54591
54591
54591
54592
54592
54592
54593
54593
54593
54594
54594
54594
54595
54595
54595
54596
54596
54596
54597
54597
54597
54598
54598
54598
54599
54599
54599
54600
54600
54600
54601
54601
54601
54602
54602
54602
54603
54603
54604
54604
54605
54605
54606
54606
54607
54607
54608
54608
54609
54609
54610
54610
54611
54611
54612
54612
54613
54613
54614
54614
54615
54615
54616
54616
54617
54617
54618
54618
54619
54619
54620
54620
54621
54621
54622
54622
54623
54623
54624
54624
54625
54625
54626
54626
54627
54627
54628
54628
54629
54629
54630
54630
54631
54631
54632
54632
54633
54633
54634
54634
54635
54635
54636
54636
54637
54637
54638
54638
54639
54640
54640
54640
54641
54641
54641
54642
54642
54642
54643
54643
54643
54644
54644
54644
54645
54645
54645
54646
54646
54646
54647
54647
54647
54648
54648
54648
54649
54649
54649
54650
54650
54650
54651
54651
54651
54652
54652
54652
54653
54653
54653
54654
54654
54654
54655
54655
54655
54656
54656
54656
54657
54657
54657
54658
54658
54658
54659
54659
54659
54660
54660
54660
54661
54661
54661
54662
54662
54662
54663
54663
54663
54664
54664
54664
54665
54665
54665
54666
54666
54666
54667
54667
54667
54668
54668
54668
54669
54669
54669
54670
54670
54670
54671
54671
54671
54672
54672
54672
54673
54673
54673
54674
54674
54674
54675
54675
54676
54676
54676
54677
54677
54677
54678
54678
54678
54679
54679
54679
54680
54680
54680
54681
54681
54681
54682
54682
54682
54683
54683
54683
54684
54684
54684
54685
54685
54685
54686
54686
54686
54687
54687
54687
54688
54688
54688
54689
54689
54689
54690
54690
54690
54691
54691
54691
54692
54692
54692
54693
54693
54693
54694
54694
54694
54695
54695
54695
54696
54696
54696
54697
54697
54697
54698
54698
54698
54699
54699
54699
54700
54700
54700
54701
54701
54701
54702
54702
54702
54703
54703
54703
54704
54704
54704
54705
54705
54705
54706
54706
54706
54707
54707
54707
54708
54708
54708
54709
54709
54709
54710
54710
54710
54711
54711
54712
54712
54712
54713
54713
54713
54714
54714
54714
54715
54715
54715
54716
54716
54716
54717
54717
54717
54718
54718
54718
54719
54719
54719
54720
54720
54720
54721
54721
54721
54722
54722
54722
54723
54723
54723
54724
54724
54724
54725
54725
54725
54726
54726
54726
54727
54727
54727
54728
54728
54728
54729
54729
54729
54730
54730
54730
54731
54731
54731
54732
54732
54732
54733
54733
54733
54734
54734
54734
54735
54735
54735
54736
54736
54736
54737
54737
54737
54738
54738
54738
54739
54739
54739
54740
54740
54740
54741
54741
54741
54742
54742
54742
54743
54743
54743
54744
54744
54744
54745
54745
54745
54746
54746
54746
54747
54747
54748
54748
54748
54749
54749
54749
54750
54750
54750
54751
54751
54751
54752
54752
54752
54753
54753
54753
54754
54754
54754
54755
54755
54755
54756
54756
54756
54757
54757
54757
54758
54758
54758
54759
54759
54759
54760
54760
54760
54761
54761
54761
54762
54762
54762
54763
54763
54763
54764
54764
54764
54765
54765
54765
54766
54766
54766
54767
54767
54767
54768
54768
54768
54769
54769
54769
54770
54770
54770
54771
54771
54771
54772
54772
54772
54773
54773
54773
54774
54774
54774
54775
54775
54775
54776
54776
54776
54777
54777
54777
54778
54778
54778
54779
54779
54779
54780
54780
54780
54781
54781
54781
54782
54782
54782
54783
54783
54784
54784
54784
54785
54785
54785
54786
54786
54786
54787
54787
54787
54788
54788
54788
54789
54789
54789
54790
54790
54790
54791
54791
54791
54792
54792
54792
54793
54793
54793
54794
54794
54794
54795
54795
54795
54796
54796
54796
54797
54797
54797
54798
54798
54798
54799
54799
54799
54800
54800
54800
54801
54801
54801
54802
54802
54802
54803
54803
54803
54804
54804
54804
54805
54805
54805
54806
54806
54806
54807
54807
54807
54808
54808
54808
54809
54809
54809
54810
54810
54810
54811
54811
54811
54812
54812
54812
54813
54813
54813
54814
54814
54814
54815
54815
54815
54816
54816
54816
54817
54817
54817
54818
54818
54818
54819
54819
54820
54820
54820
54821
54821
54821
54822
54822
54822
54823
54823
54823
54824
54824
54824
54825
54825
54825
54826
54826
54826
54827
54827
54827
54828
54828
54828
54829
54829
54829
54830
54830
54830
54831
54831
54831
54832
54832
54832
54833
54833
54833
54834
54834
54834
54835
54835
54835
54836
54836
54836
54837
54837
54837
54838
54838
54838
54839
54839
54839
54840
54840
54840
54841
54841
54841
54842
54842
54842
54843
54843
54843
54844
54844
54844
54845
54845
54845
54846
54846
54846
54847
54847
54847
54848
54848
54848
54849
54849
54849
54850
54850
54850
54851
54851
54851
54852
54852
54852
54853
54853
54853
54854
54854
54854
54855
54855
54856
54856
54856
54857
54857
54857
54858
54858
54858
54859
54859
54859
54860
54860
54860
54861
54861
54861
54862
54862
54862
54863
54863
54863
54864
54864
54864
54865
54865
54865
54866
54866
54866
54867
54867
54867
54868
54868
54868
54869
54869
54869
54870
54870
54870
54871
54871
54871
54872
54872
54872
54873
54873
54873
54874
54874
54874
54875
54875
54875
54876
54876
54876
54877
54877
54877
54878
54878
54878
54879
54879
54879
54880
54880
54880
54881
54881
54881
54882
54882
54882
54883
54883
54883
54884
54884
54884
54885
54885
54885
54886
54886
54886
54887
54887
54887
54888
54888
54888
54889
54889
54889
54890
54890
54890
54891
54891
54892
54892
54892
54893
54893
54893
54894
54894
54894
54895
54895
54895
54896
54896
54896
54897
54897
54897
54898
54898
54898
54899
54899
54899
54900
54900
54900
54901
54901
54901
54902
54902
54902
54903
54903
54903
54904
54904
54904
54905
54905
54905
54906
54906
54906
54907
54907
54907
54908
54908
54908
54909
54909
54909
54910
54910
54910
54911
54911
54911
54912
54912
54912
54913
54913
54913
54914
54914
54914
54915
54915
54915
54916
54916
54916
54917
54917
54917
54918
54918
54918
54919
54919
54919
54920
54920
54920
54921
54921
54921
54922
54922
54922
54923
54923
54923
54924
54924
54924
54925
54925
54925
54926
54926
54926
54927
54927
54928
54928
54928
54929
54929
54929
54930
54930
54930
54931
54931
54931
54932
54932
54932
54933
54933
54933
54934
54934
54934
54935
54935
54935
54936
54936
54936
54937
54937
54937
54938
54938
54938
54939
54939
54939
54940
54940
54940
54941
54941
54941
54942
54942
54942
54943
54943
54943
54944
54944
54944
54945
54945
54945
54946
54946
54946
54947
54947
54947
54948
54948
54948
54949
54949
54949
54950
54950
54950
54951
54951
54951
54952
54952
54952
54953
54953
54953
54954
54954
54954
54955
54955
54955
54956
54956
54956
54957
54957
54957
54958
54958
54958
54959
54959
54959
54960
54960
54960
54961
54961
54961
54962
54962
54962
54963
54963
54964
54964
54965
54965
54966
54966
54967
54967
54968
54968
54969
54969
54970
54970
54971
54971
54972
54972
54973
54973
54974
54974
54975
54975
54976
54976
54977
54977
54978
54978
54979
54979
54980
54980
54981
54981
54982
54982
54983
54983
54984
54984
54985
54985
54986
54986
54987
54987
54988
54988
54989
54989
54990
54990
54991
54991
54992
54992
54993
54993
54994
54994
54995
54995
54996
54996
54997
54997
54998
54998
54999
55000
55000
55000
55001
55001
55001
55002
55002
55002
55003
55003
55003
55004
55004
55004
55005
55005
55005
55006
55006
55006
55007
55007
55007
55008
55008
55008
55009
55009
55009
55010
55010
55010
55011
55011
55011
55012
55012
55012
55013
55013
55013
55014
55014
55014
55015
55015
55015
55016
55016
55016
55017
55017
55017
55018
55018
55018
55019
55019
55019
55020
55020
55020
55021
55021
55021
55022
55022
55022
55023
55023
55023
55024
55024
55024
55025
55025
55025
55026
55026
55026
55027
55027
55027
55028
55028
55028
55029
55029
55029
55030
55030
55030
55031
55031
55031
55032
55032
55032
55033
55033
55033
55034
55034
55034
55035
55035
55036
55036
55036
55037
55037
55037
55038
55038
55038
55039
55039
55039
55040
55040
55040
55041
55041
55041
55042
55042
55042
55043
55043
55043
55044
55044
55044
55045
55045
55045
55046
55046
55046
55047
55047
55047
55048
55048
55048
55049
55049
55049
55050
55050
55050
55051
55051
55051
55052
55052
55052
55053
55053
55053
55054
55054
55054
55055
55055
55055
55056
55056
55056
55057
55057
55057
55058
55058
55058
55059
55059
55059
55060
55060
55060
55061
55061
55061
55062
55062
55062
55063
55063
55063
55064
55064
55064
55065
55065
55065
55066
55066
55066
55067
55067
55067
55068
55068
55068
55069
55069
55069
55070
55070
55070
55071
55071
55072
55072
55072
55073
55073
55073
55074
55074
55074
55075
55075
55075
55076
55076
55076
55077
55077
55077
55078
55078
55078
55079
55079
55079
55080
55080
55080
55081
55081
55081
55082
55082
55082
55083
55083
55083
55084
55084
55084
55085
55085
55085
55086
55086
55086
55087
55087
55087
55088
55088
55088
55089
55089
55089
55090
55090
55090
55091
55091
55091
55092
55092
55092
55093
55093
55093
55094
55094
55094
55095
55095
55095
55096
55096
55096
55097
55097
55097
55098
55098
55098
55099
55099
55099
55100
55100
55100
55101
55101
55101
55102
55102
55102
55103
55103
55103
55104
55104
55104
55105
55105
55105
55106
55106
55106
55107
55107
55108
55108
55108
55109
55109
55109
55110
55110
55110
55111
55111
55111
55112
55112
55112
55113
55113
55113
55114
55114
55114
55115
55115
55115
55116
55116
55116
55117
55117
55117
55118
55118
55118
55119
55119
55119
55120
55120
55120
55121
55121
55121
55122
55122
55122
55123
55123
55123
55124
55124
55124
55125
55125
55125
55126
55126
55126
55127
55127
55127
55128
55128
55128
55129
55129
55129
55130
55130
55130
55131
55131
55131
55132
55132
55132
55133
55133
55133
55134
55134
55134
55135
55135
55135
55136
55136
55136
55137
55137
55137
55138
55138
55138
55139
55139
55139
55140
55140
55140
55141
55141
55141
55142
55142
55142
55143
55143
55144
55144
55144
55145
55145
55145
55146
55146
55146
55147
55147
55147
55148
55148
55148
55149
55149
55149
55150
55150
55150
55151
55151
55151
55152
55152
55152
55153
55153
55153
55154
55154
55154
55155
55155
55155
55156
55156
55156
55157
55157
55157
55158
55158
55158
55159
55159
55159
55160
55160
55160
55161
55161
55161
55162
55162
55162
55163
55163
55163
55164
55164
55164
55165
55165
55165
55166
55166
55166
55167
55167
55167
55168
55168
55168
55169
55169
55169
55170
55170
55170
55171
55171
55171
55172
55172
55172
55173
55173
55173
55174
55174
55174
55175
55175
55175
55176
55176
55176
55177
55177
55177
55178
55178
55178
55179
55179
55180
55180
55180
55181
55181
55181
55182
55182
55182
55183
55183
55183
55184
55184
55184
55185
55185
55185
55186
55186
55186
55187
55187
55187
55188
55188
55188
55189
55189
55189
55190
55190
55190
55191
55191
55191
55192
55192
55192
55193
55193
55193
55194
55194
55194
55195
55195
55195
55196
55196
55196
55197
55197
55197
55198
55198
55198
55199
55199
55199
55200
55200
55200
55201
55201
55201
55202
55202
55202
55203
55203
55203
55204
55204
55204
55205
55205
55205
55206
55206
55206
55207
55207
55207
55208
55208
55208
55209
55209
55209
55210
55210
55210
55211
55211
55211
55212
55212
55212
55213
55213
55213
55214
55214
55214
55215
55215
55216
55216
55216
55217
55217
55217
55218
55218
55218
55219
55219
55219
55220
55220
55220
55221
55221
55221
55222
55222
55222
55223
55223
55223
55224
55224
55224
55225
55225
55225
55226
55226
55226
55227
55227
55227
55228
55228
55228
55229
55229
55229
55230
55230
55230
55231
55231
55231
55232
55232
55232
55233
55233
55233
55234
55234
55234
55235
55235
55235
55236
55236
55236
55237
55237
55237
55238
55238
55238
55239
55239
55239
55240
55240
55240
55241
55241
55241
55242
55242
55242
55243
55243
55243
55244
55244
55244
55245
55245
55245
55246
55246
55246
55247
55247
55247
55248
55248
55248
55249
55249
55249
55250
55250
55250
55251
55251
55252
55252
55252
55253
55253
55253
55254
55254
55254
55255
55255
55255
55256
55256
55256
55257
55257
55257
55258
55258
55258
55259
55259
55259
55260
55260
55260
55261
55261
55261
55262
55262
55262
55263
55263
55263
55264
55264
55264
55265
55265
55265
55266
55266
55266
55267
55267
55267
55268
55268
55268
55269
55269
55269
55270
55270
55270
55271
55271
55271
55272
55272
55272
55273
55273
55273
55274
55274
55274
55275
55275
55275
55276
55276
55276
55277
55277
55277
55278
55278
55278
55279
55279
55279
55280
55280
55280
55281
55281
55281
55282
55282
55282
55283
55283
55283
55284
55284
55284
55285
55285
55285
55286
55286
55286
55287
55287
55288
55288
55288
55289
55289
55289
55290
55290
55290
55291
55291
55291
55292
55292
55292
55293
55293
55293
55294
55294
55294
55295
55295
55295
55296
55296
55296
55297
55297
55297
55298
55298
55298
55299
55299
55299
55300
55300
55300
55301
55301
55301
55302
55302
55302
55303
55303
55303
55304
55304
55304
55305
55305
55305
55306
55306
55306
55307
55307
55307
55308
55308
55308
55309
55309
55309
55310
55310
55310
55311
55311
55311
55312
55312
55312
55313
55313
55313
55314
55314
55314
55315
55315
55315
55316
55316
55316
55317
55317
55317
55318
55318
55318
55319
55319
55319
55320
55320
55320
55321
55321
55321
55322
55322
55322
55323
55323
55324
55324
55325
55325
55326
55326
55327
55327
55328
55328
55329
55329
55330
55330
55331
55331
55332
55332
55333
55333
55334
55334
55335
55335
55336
55336
55337
55337
55338
55338
55339
55339
55340
55340
55341
55341
55342
55342
55343
55343
55344
55344
55345
55345
55346
55346
55347
55347
55348
55348
55349
55349
55350
55350
55351
55351
55352
55352
55353
55353
55354
55354
55355
55355
55356
55356
55357
55357
55358
55358
55359
55360
55360
55360
55361
55361
55361
55362
55362
55362
55363
55363
55363
55364
55364
55364
55365
55365
55365
55366
55366
55366
55367
55367
55367
55368
55368
55368
55369
55369
55369
55370
55370
55370
55371
55371
55371
55372
55372
55372
55373
55373
55373
55374
55374
55374
55375
55375
55375
55376
55376
55376
55377
55377
55377
55378
55378
55378
55379
55379
55379
55380
55380
55380
55381
55381
55381
55382
55382
55382
55383
55383
55383
55384
55384
55384
55385
55385
55385
55386
55386
55386
55387
55387
55387
55388
55388
55388
55389
55389
55389
55390
55390
55390
55391
55391
55391
55392
55392
55392
55393
55393
55393
55394
55394
55394
55395
55395
55396
55396
55396
55397
55397
55397
55398
55398
55398
55399
55399
55399
55400
55400
55400
55401
55401
55401
55402
55402
55402
55403
55403
55403
55404
55404
55404
55405
55405
55405
55406
55406
55406
55407
55407
55407
55408
55408
55408
55409
55409
55409
55410
55410
55410
55411
55411
55411
55412
55412
55412
55413
55413
55413
55414
55414
55414
55415
55415
55415
55416
55416
55416
55417
55417
55417
55418
55418
55418
55419
55419
55419
55420
55420
55420
55421
55421
55421
55422
55422
55422
55423
55423
55423
55424
55424
55424
55425
55425
55425
55426
55426
55426
55427
55427
55427
55428
55428
55428
55429
55429
55429
55430
55430
55430
55431
55431
55432
55432
55432
55433
55433
55433
55434
55434
55434
55435
55435
55435
55436
55436
55436
55437
55437
55437
55438
55438
55438
55439
55439
55439
55440
55440
55440
55441
55441
55441
55442
55442
55442
55443
55443
55443
55444
55444
55444
55445
55445
55445
55446
55446
55446
55447
55447
55447
55448
55448
55448
55449
55449
55449
55450
55450
55450
55451
55451
55451
55452
55452
55452
55453
55453
55453
55454
55454
55454
55455
55455
55455
55456
55456
55456
55457
55457
55457
55458
55458
55458
55459
55459
55459
55460
55460
55460
55461
55461
55461
55462
55462
55462
55463
55463
55463
55464
55464
55464
55465
55465
55465
55466
55466
55466
55467
55467
55468
55468
55468
55469
55469
55469
55470
55470
55470
55471
55471
55471
55472
55472
55472
55473
55473
55473
55474
55474
55474
55475
55475
55475
55476
55476
55476
55477
55477
55477
55478
55478
55478
55479
55479
55479
55480
55480
55480
55481
55481
55481
55482
55482
55482
55483
55483
55483
55484
55484
55484
55485
55485
55485
55486
55486
55486
55487
55487
55487
55488
55488
55488
55489
55489
55489
55490
55490
55490
55491
55491
55491
55492
55492
55492
55493
55493
55493
55494
55494
55494
55495
55495
55495
55496
55496
55496
55497
55497
55497
55498
55498
55498
55499
55499
55499
55500
55500
55500
55501
55501
55501
55502
55502
55502
55503
55503
55504
55504
55504
55505
55505
55505
55506
55506
55506
55507
55507
55507
55508
55508
55508
55509
55509
55509
55510
55510
55510
55511
55511
55511
55512
55512
55512
55513
55513
55513
55514
55514
55514
55515
55515
55515
55516
55516
55516
55517
55517
55517
55518
55518
55518
55519
55519
55519
55520
55520
55520
55521
55521
55521
55522
55522
55522
55523
55523
55523
55524
55524
55524
55525
55525
55525
55526
55526
55526
55527
55527
55527
55528
55528
55528
55529
55529
55529
55530
55530
55530
55531
55531
55531
55532
55532
55532
55533
55533
55533
55534
55534
55534
55535
55535
55535
55536
55536
55536
55537
55537
55537
55538
55538
55538
55539
55539
55540
55540
55540
55541
55541
55541
55542
55542
55542
55543
55543
55543
55544
55544
55544
55545
55545
55545
55546
55546
55546
55547
55547
55547
55548
55548
55548
55549
55549
55549
55550
55550
55550
55551
55551
55551
55552
55552
55552
55553
55553
55553
55554
55554
55554
55555
55555
55555
55556
55556
55556
55557
55557
55557
55558
55558
55558
55559
55559
55559
55560
55560
55560
55561
55561
55561
55562
55562
55562
55563
55563
55563
55564
55564
55564
55565
55565
55565
55566
55566
55566
55567
55567
55567
55568
55568
55568
55569
55569
55569
55570
55570
55570
55571
55571
55571
55572
55572
55572
55573
55573
55573
55574
55574
55574
55575
55575
55576
55576
55576
55577
55577
55577
55578
55578
55578
55579
55579
55579
55580
55580
55580
55581
55581
55581
55582
55582
55582
55583
55583
55583
55584
55584
55584
55585
55585
55585
55586
55586
55586
55587
55587
55587
55588
55588
55588
55589
55589
55589
55590
55590
55590
55591
55591
55591
55592
55592
55592
55593
55593
55593
55594
55594
55594
55595
55595
55595
55596
55596
55596
55597
55597
55597
55598
55598
55598
55599
55599
55599
55600
55600
55600
55601
55601
55601
55602
55602
55602
55603
55603
55603
55604
55604
55604
55605
55605
55605
55606
55606
55606
55607
55607
55607
55608
55608
55608
55609
55609
55609
55610
55610
55610
55611
55611
55612
55612
55612
55613
55613
55613
55614
55614
55614
55615
55615
55615
55616
55616
55616
55617
55617
55617
55618
55618
55618
55619
55619
55619
55620
55620
55620
55621
55621
55621
55622
55622
55622
55623
55623
55623
55624
55624
55624
55625
55625
55625
55626
55626
55626
55627
55627
55627
55628
55628
55628
55629
55629
55629
55630
55630
55630
55631
55631
55631
55632
55632
55632
55633
55633
55633
55634
55634
55634
55635
55635
55635
55636
55636
55636
55637
55637
55637
55638
55638
55638
55639
55639
55639
55640
55640
55640
55641
55641
55641
55642
55642
55642
55643
55643
55643
55644
55644
55644
55645
55645
55645
55646
55646
55646
55647
55647
55648
55648
55648
55649
55649
55649
55650
55650
55650
55651
55651
55651
55652
55652
55652
55653
55653
55653
55654
55654
55654
55655
55655
55655
55656
55656
55656
55657
55657
55657
55658
55658
55658
55659
55659
55659
55660
55660
55660
55661
55661
55661
55662
55662
55662
55663
55663
55663
55664
55664
55664
55665
55665
55665
55666
55666
55666
55667
55667
55667
55668
55668
55668
55669
55669
55669
55670
55670
55670
55671
55671
55671
55672
55672
55672
55673
55673
55673
55674
55674
55674
55675
55675
55675
55676
55676
55676
55677
55677
55677
55678
55678
55678
55679
55679
55679
55680
55680
55680
55681
55681
55681
55682
55682
55682
55683
55683
55684
55684
55685
55685
55686
55686
55687
55687
55688
55688
55689
55689
55690
55690
55691
55691
55692
55692
55693
55693
55694
55694
55695
55695
55696
55696
55697
55697
55698
55698
55699
55699
55700
55700
55701
55701
55702
55702
55703
55703
55704
55704
55705
55705
55706
55706
55707
55707
55708
55708
55709
55709
55710
55710
55711
55711
55712
55712
55713
55713
55714
55714
55715
55715
55716
55716
55717
55717
55718
55718
55719
55720
55720
55720
55721
55721
55721
55722
55722
55722
55723
55723
55723
55724
55724
55724
55725
55725
55725
55726
55726
55726
55727
55727
55727
55728
55728
55728
55729
55729
55729
55730
55730
55730
55731
55731
55731
55732
55732
55732
55733
55733
55733
55734
55734
55734
55735
55735
55735
55736
55736
55736
55737
55737
55737
55738
55738
55738
55739
55739
55739
55740
55740
55740
55741
55741
55741
55742
55742
55742
55743
55743
55743
55744
55744
55744
55745
55745
55745
55746
55746
55746
55747
55747
55747
55748
55748
55748
55749
55749
55749
55750
55750
55750
55751
55751
55751
55752
55752
55752
55753
55753
55753
55754
55754
55754
55755
55755
55756
55756
55756
55757
55757
55757
55758
55758
55758
55759
55759
55759
55760
55760
55760
55761
55761
55761
55762
55762
55762
55763
55763
55763
55764
55764
55764
55765
55765
55765
55766
55766
55766
55767
55767
55767
55768
55768
55768
55769
55769
55769
55770
55770
55770
55771
55771
55771
55772
55772
55772
55773
55773
55773
55774
55774
55774
55775
55775
55775
55776
55776
55776
55777
55777
55777
55778
55778
55778
55779
55779
55779
55780
55780
55780
55781
55781
55781
55782
55782
55782
55783
55783
55783
55784
55784
55784
55785
55785
55785
55786
55786
55786
55787
55787
55787
55788
55788
55788
55789
55789
55789
55790
55790
55790
55791
55791
55792
55792
55792
55793
55793
55793
55794
55794
55794
55795
55795
55795
55796
55796
55796
55797
55797
55797
55798
55798
55798
55799
55799
55799
55800
55800
55800
55801
55801
55801
55802
55802
55802
55803
55803
55803
55804
55804
55804
55805
55805
55805
55806
55806
55806
55807
55807
55807
55808
55808
55808
55809
55809
55809
55810
55810
55810
55811
55811
55811
55812
55812
55812
55813
55813
55813
55814
55814
55814
55815
55815
55815
55816
55816
55816
55817
55817
55817
55818
55818
55818
55819
55819
55819
55820
55820
55820
55821
55821
55821
55822
55822
55822
55823
55823
55823
55824
55824
55824
55825
55825
55825
55826
55826
55826
55827
55827
55828
55828
55828
55829
55829
55829
55830
55830
55830
55831
55831
55831
55832
55832
55832
55833
55833
55833
55834
55834
55834
55835
55835
55835
55836
55836
55836
55837
55837
55837
55838
55838
55838
55839
55839
55839
55840
55840
55840
55841
55841
55841
55842
55842
55842
55843
55843
55843
55844
55844
55844
55845
55845
55845
55846
55846
55846
55847
55847
55847
55848
55848
55848
55849
55849
55849
55850
55850
55850
55851
55851
55851
55852
55852
55852
55853
55853
55853
55854
55854
55854
55855
55855
55855
55856
55856
55856
55857
55857
55857
55858
55858
55858
55859
55859
55859
55860
55860
55860
55861
55861
55861
55862
55862
55862
55863
55863
55864
55864
55864
55865
55865
55865
55866
55866
55866
55867
55867
55867
55868
55868
55868
55869
55869
55869
55870
55870
55870
55871
55871
55871
55872
55872
55872
55873
55873
55873
55874
55874
55874
55875
55875
55875
55876
55876
55876
55877
55877
55877
55878
55878
55878
55879
55879
55879
55880
55880
55880
55881
55881
55881
55882
55882
55882
55883
55883
55883
55884
55884
55884
55885
55885
55885
55886
55886
55886
55887
55887
55887
55888
55888
55888
55889
55889
55889
55890
55890
55890
55891
55891
55891
55892
55892
55892
55893
55893
55893
55894
55894
55894
55895
55895
55895
55896
55896
55896
55897
55897
55897
55898
55898
55898
55899
55899
55900
55900
55900
55901
55901
55901
55902
55902
55902
55903
55903
55903
55904
55904
55904
55905
55905
55905
55906
55906
55906
55907
55907
55907
55908
55908
55908
55909
55909
55909
55910
55910
55910
55911
55911
55911
55912
55912
55912
55913
55913
55913
55914
55914
55914
55915
55915
55915
55916
55916
55916
55917
55917
55917
55918
55918
55918
55919
55919
55919
55920
55920
55920
55921
55921
55921
55922
55922
55922
55923
55923
55923
55924
55924
55924
55925
55925
55925
55926
55926
55926
55927
55927
55927
55928
55928
55928
55929
55929
55929
55930
55930
55930
55931
55931
55931
55932
55932
55932
55933
55933
55933
55934
55934
55934
55935
55935
55936
55936
55936
55937
55937
55937
55938
55938
55938
55939
55939
55939
55940
55940
55940
55941
55941
55941
55942
55942
55942
55943
55943
55943
55944
55944
55944
55945
55945
55945
55946
55946
55946
55947
55947
55947
55948
55948
55948
55949
55949
55949
55950
55950
55950
55951
55951
55951
55952
55952
55952
55953
55953
55953
55954
55954
55954
55955
55955
55955
55956
55956
55956
55957
55957
55957
55958
55958
55958
55959
55959
55959
55960
55960
55960
55961
55961
55961
55962
55962
55962
55963
55963
55963
55964
55964
55964
55965
55965
55965
55966
55966
55966
55967
55967
55967
55968
55968
55968
55969
55969
55969
55970
55970
55970
55971
55971
55972
55972
55972
55973
55973
55973
55974
55974
55974
55975
55975
55975
55976
55976
55976
55977
55977
55977
55978
55978
55978
55979
55979
55979
55980
55980
55980
55981
55981
55981
55982
55982
55982
55983
55983
55983
55984
55984
55984
55985
55985
55985
55986
55986
55986
55987
55987
55987
55988
55988
55988
55989
55989
55989
55990
55990
55990
55991
55991
55991
55992
55992
55992
55993
55993
55993
55994
55994
55994
55995
55995
55995
55996
55996
55996
55997
55997
55997
55998
55998
55998
55999
55999
55999
56000
56000
56000
56001
56001
56001
56002
56002
56002
56003
56003
56003
56004
56004
56004
56005
56005
56005
56006
56006
56006
56007
56007
56008
56008
56008
56009
56009
56009
56010
56010
56010
56011
56011
56011
56012
56012
56012
56013
56013
56013
56014
56014
56014
56015
56015
56015
56016
56016
56016
56017
56017
56017
56018
56018
56018
56019
56019
56019
56020
56020
56020
56021
56021
56021
56022
56022
56022
56023
56023
56023
56024
56024
56024
56025
56025
56025
56026
56026
56026
56027
56027
56027
56028
56028
56028
56029
56029
56029
56030
56030
56030
56031
56031
56031
56032
56032
56032
56033
56033
56033
56034
56034
56034
56035
56035
56035
56036
56036
56036
56037
56037
56037
56038
56038
56038
56039
56039
56039
56040
56040
56040
56041
56041
56041
56042
56042
56042
56043
56043
56044
56044
56045
56045
56046
56046
56047
56047
56048
56048
56049
56049
56050
56050
56051
56051
56052
56052
56053
56053
56054
56054
56055
56055
56056
56056
56057
56057
56058
56058
56059
56059
56060
56060
56061
56061
56062
56062
56063
56063
56064
56064
56065
56065
56066
56066
56067
56067
56068
56068
56069
56069
56070
56070
56071
56071
56072
56072
56073
56073
56074
56074
56075
56075
56076
56076
56077
56077
56078
56078
56079
56080
56080
56080
56081
56081
56081
56082
56082
56082
56083
56083
56083
56084
56084
56084
56085
56085
56085
56086
56086
56086
56087
56087
56087
56088
56088
56088
56089
56089
56089
56090
56090
56090
56091
56091
56091
56092
56092
56092
56093
56093
56093
56094
56094
56094
56095
56095
56095
56096
56096
56096
56097
56097
56097
56098
56098
56098
56099
56099
56099
56100
56100
56100
56101
56101
56101
56102
56102
56102
56103
56103
56103
56104
56104
56104
56105
56105
56105
56106
56106
56106
56107
56107
56107
56108
56108
56108
56109
56109
56109
56110
56110
56110
56111
56111
56111
56112
56112
56112
56113
56113
56113
56114
56114
56114
56115
56115
56116
56116
56116
56117
56117
56117
56118
56118
56118
56119
56119
56119
56120
56120
56120
56121
56121
56121
56122
56122
56122
56123
56123
56123
56124
56124
56124
56125
56125
56125
56126
56126
56126
56127
56127
56127
56128
56128
56128
56129
56129
56129
56130
56130
56130
56131
56131
56131
56132
56132
56132
56133
56133
56133
56134
56134
56134
56135
56135
56135
56136
56136
56136
56137
56137
56137
56138
56138
56138
56139
56139
56139
56140
56140
56140
56141
56141
56141
56142
56142
56142
56143
56143
56143
56144
56144
56144
56145
56145
56145
56146
56146
56146
56147
56147
56147
56148
56148
56148
56149
56149
56149
56150
56150
56150
56151
56151
56152
56152
56152
56153
56153
56153
56154
56154
56154
56155
56155
56155
56156
56156
56156
56157
56157
56157
56158
56158
56158
56159
56159
56159
56160
56160
56160
56161
56161
56161
56162
56162
56162
56163
56163
56163
56164
56164
56164
56165
56165
56165
56166
56166
56166
56167
56167
56167
56168
56168
56168
56169
56169
56169
56170
56170
56170
56171
56171
56171
56172
56172
56172
56173
56173
56173
56174
56174
56174
56175
56175
56175
56176
56176
56176
56177
56177
56177
56178
56178
56178
56179
56179
56179
56180
56180
56180
56181
56181
56181
56182
56182
56182
56183
56183
56183
56184
56184
56184
56185
56185
56185
56186
56186
56186
56187
56187
56188
56188
56188
56189
56189
56189
56190
56190
56190
56191
56191
56191
56192
56192
56192
56193
56193
56193
56194
56194
56194
56195
56195
56195
56196
56196
56196
56197
56197
56197
56198
56198
56198
56199
56199
56199
56200
56200
56200
56201
56201
56201
56202
56202
56202
56203
56203
56203
56204
56204
56204
56205
56205
56205
56206
56206
56206
56207
56207
56207
56208
56208
56208
56209
56209
56209
56210
56210
56210
56211
56211
56211
56212
56212
56212
56213
56213
56213
56214
56214
56214
56215
56215
56215
56216
56216
56216
56217
56217
56217
56218
56218
56218
56219
56219
56219
56220
56220
56220
56221
56221
56221
56222
56222
56222
56223
56223
56224
56224
56224
56225
56225
56225
56226
56226
56226
56227
56227
56227
56228
56228
56228
56229
56229
56229
56230
56230
56230
56231
56231
56231
56232
56232
56232
56233
56233
56233
56234
56234
56234
56235
56235
56235
56236
56236
56236
56237
56237
56237
56238
56238
56238
56239
56239
56239
56240
56240
56240
56241
56241
56241
56242
56242
56242
56243
56243
56243
56244
56244
56244
56245
56245
56245
56246
56246
56246
56247
56247
56247
56248
56248
56248
56249
56249
56249
56250
56250
56250
56251
56251
56251
56252
56252
56252
56253
56253
56253
56254
56254
56254
56255
56255
56255
56256
56256
56256
56257
56257
56257
56258
56258
56258
56259
56259
56260
56260
56260
56261
56261
56261
56262
56262
56262
56263
56263
56263
56264
56264
56264
56265
56265
56265
56266
56266
56266
56267
56267
56267
56268
56268
56268
56269
56269
56269
56270
56270
56270
56271
56271
56271
56272
56272
56272
56273
56273
56273
56274
56274
56274
56275
56275
56275
56276
56276
56276
56277
56277
56277
56278
56278
56278
56279
56279
56279
56280
56280
56280
56281
56281
56281
56282
56282
56282
56283
56283
56283
56284
56284
56284
56285
56285
56285
56286
56286
56286
56287
56287
56287
56288
56288
56288
56289
56289
56289
56290
56290
56290
56291
56291
56291
56292
56292
56292
56293
56293
56293
56294
56294
56294
56295
56295
56296
56296
56296
56297
56297
56297
56298
56298
56298
56299
56299
56299
56300
56300
56300
56301
56301
56301
56302
56302
56302
56303
56303
56303
56304
56304
56304
56305
56305
56305
56306
56306
56306
56307
56307
56307
56308
56308
56308
56309
56309
56309
56310
56310
56310
56311
56311
56311
56312
56312
56312
56313
56313
56313
56314
56314
56314
56315
56315
56315
56316
56316
56316
56317
56317
56317
56318
56318
56318
56319
56319
56319
56320
56320
56320
56321
56321
56321
56322
56322
56322
56323
56323
56323
56324
56324
56324
56325
56325
56325
56326
56326
56326
56327
56327
56327
56328
56328
56328
56329
56329
56329
56330
56330
56330
56331
56331
56332
56332
56332
56333
56333
56333
56334
56334
56334
56335
56335
56335
56336
56336
56336
56337
56337
56337
56338
56338
56338
56339
56339
56339
56340
56340
56340
56341
56341
56341
56342
56342
56342
56343
56343
56343
56344
56344
56344
56345
56345
56345
56346
56346
56346
56347
56347
56347
56348
56348
56348
56349
56349
56349
56350
56350
56350
56351
56351
56351
56352
56352
56352
56353
56353
56353
56354
56354
56354
56355
56355
56355
56356
56356
56356
56357
56357
56357
56358
56358
56358
56359
56359
56359
56360
56360
56360
56361
56361
56361
56362
56362
56362
56363
56363
56363
56364
56364
56364
56365
56365
56365
56366
56366
56366
56367
56367
56368
56368
56368
56369
56369
56369
56370
56370
56370
56371
56371
56371
56372
56372
56372
56373
56373
56373
56374
56374
56374
56375
56375
56375
56376
56376
56376
56377
56377
56377
56378
56378
56378
56379
56379
56379
56380
56380
56380
56381
56381
56381
56382
56382
56382
56383
56383
56383
56384
56384
56384
56385
56385
56385
56386
56386
56386
56387
56387
56387
56388
56388
56388
56389
56389
56389
56390
56390
56390
56391
56391
56391
56392
56392
56392
56393
56393
56393
56394
56394
56394
56395
56395
56395
56396
56396
56396
56397
56397
56397
56398
56398
56398
56399
56399
56399
56400
56400
56400
56401
56401
56401
56402
56402
56402
56403
56403
56404
56404
56405
56405
56406
56406
56407
56407
56408
56408
56409
56409
56410
56410
56411
56411
56412
56412
56413
56413
56414
56414
56415
56415
56416
56416
56417
56417
56418
56418
56419
56419
56420
56420
56421
56421
56422
56422
56423
56423
56424
56424
56425
56425
56426
56426
56427
56427
56428
56428
56429
56429
56430
56430
56431
56431
56432
56432
56433
56433
56434
56434
56435
56435
56436
56436
56437
56437
56438
56438
56439
56440
56440
56440
56441
56441
56441
56442
56442
56442
56443
56443
56443
56444
56444
56444
56445
56445
56445
56446
56446
56446
56447
56447
56447
56448
56448
56448
56449
56449
56449
56450
56450
56450
56451
56451
56451
56452
56452
56452
56453
56453
56453
56454
56454
56454
56455
56455
56455
56456
56456
56456
56457
56457
56457
56458
56458
56458
56459
56459
56459
56460
56460
56460
56461
56461
56461
56462
56462
56462
56463
56463
56463
56464
56464
56464
56465
56465
56465
56466
56466
56466
56467
56467
56467
56468
56468
56468
56469
56469
56469
56470
56470
56470
56471
56471
56471
56472
56472
56472
56473
56473
56473
56474
56474
56474
56475
56475
56476
56476
56476
56477
56477
56477
56478
56478
56478
56479
56479
56479
56480
56480
56480
56481
56481
56481
56482
56482
56482
56483
56483
56483
56484
56484
56484
56485
56485
56485
56486
56486
56486
56487
56487
56487
56488
56488
56488
56489
56489
56489
56490
56490
56490
56491
56491
56491
56492
56492
56492
56493
56493
56493
56494
56494
56494
56495
56495
56495
56496
56496
56496
56497
56497
56497
56498
56498
56498
56499
56499
56499
56500
56500
56500
56501
56501
56501
56502
56502
56502
56503
56503
56503
56504
56504
56504
56505
56505
56505
56506
56506
56506
56507
56507
56507
56508
56508
56508
56509
56509
56509
56510
56510
56510
56511
56511
56512
56512
56512
56513
56513
56513
56514
56514
56514
56515
56515
56515
56516
56516
56516
56517
56517
56517
56518
56518
56518
56519
56519
56519
56520
56520
56520
56521
56521
56521
56522
56522
56522
56523
56523
56523
56524
56524
56524
56525
56525
56525
56526
56526
56526
56527
56527
56527
56528
56528
56528
56529
56529
56529
56530
56530
56530
56531
56531
56531
56532
56532
56532
56533
56533
56533
56534
56534
56534
56535
56535
56535
56536
56536
56536
56537
56537
56537
56538
56538
56538
56539
56539
56539
56540
56540
56540
56541
56541
56541
56542
56542
56542
56543
56543
56543
56544
56544
56544
56545
56545
56545
56546
56546
56546
56547
56547
56548
56548
56548
56549
56549
56549
56550
56550
56550
56551
56551
56551
56552
56552
56552
56553
56553
56553
56554
56554
56554
56555
56555
56555
56556
56556
56556
56557
56557
56557
56558
56558
56558
56559
56559
56559
56560
56560
56560
56561
56561
56561
56562
56562
56562
56563
56563
56563
56564
56564
56564
56565
56565
56565
56566
56566
56566
56567
56567
56567
56568
56568
56568
56569
56569
56569
56570
56570
56570
56571
56571
56571
56572
56572
56572
56573
56573
56573
56574
56574
56574
56575
56575
56575
56576
56576
56576
56577
56577
56577
56578
56578
56578
56579
56579
56579
56580
56580
56580
56581
56581
56581
56582
56582
56582
56583
56583
56584
56584
56584
56585
56585
56585
56586
56586
56586
56587
56587
56587
56588
56588
56588
56589
56589
56589
56590
56590
56590
56591
56591
56591
56592
56592
56592
56593
56593
56593
56594
56594
56594
56595
56595
56595
56596
56596
56596
56597
56597
56597
56598
56598
56598
56599
56599
56599
56600
56600
56600
56601
56601
56601
56602
56602
56602
56603
56603
56603
56604
56604
56604
56605
56605
56605
56606
56606
56606
56607
56607
56607
56608
56608
56608
56609
56609
56609
56610
56610
56610
56611
56611
56611
56612
56612
56612
56613
56613
56613
56614
56614
56614
56615
56615
56615
56616
56616
56616
56617
56617
56617
56618
56618
56618
56619
56619
56620
56620
56620
56621
56621
56621
56622
56622
56622
56623
56623
56623
56624
56624
56624
56625
56625
56625
56626
56626
56626
56627
56627
56627
56628
56628
56628
56629
56629
56629
56630
56630
56630
56631
56631
56631
56632
56632
56632
56633
56633
56633
56634
56634
56634
56635
56635
56635
56636
56636
56636
56637
56637
56637
56638
56638
56638
56639
56639
56639
56640
56640
56640
56641
56641
56641
56642
56642
56642
56643
56643
56643
56644
56644
56644
56645
56645
56645
56646
56646
56646
56647
56647
56647
56648
56648
56648
56649
56649
56649
56650
56650
56650
56651
56651
56651
56652
56652
56652
56653
56653
56653
56654
56654
56654
56655
56655
56656
56656
56656
56657
56657
56657
56658
56658
56658
56659
56659
56659
56660
56660
56660
56661
56661
56661
56662
56662
56662
56663
56663
56663
56664
56664
56664
56665
56665
56665
56666
56666
56666
56667
56667
56667
56668
56668
56668
56669
56669
56669
56670
56670
56670
56671
56671
56671
56672
56672
56672
56673
56673
56673
56674
56674
56674
56675
56675
56675
56676
56676
56676
56677
56677
56677
56678
56678
56678
56679
56679
56679
56680
56680
56680
56681
56681
56681
56682
56682
56682
56683
56683
56683
56684
56684
56684
56685
56685
56685
56686
56686
56686
56687
56687
56687
56688
56688
56688
56689
56689
56689
56690
56690
56690
56691
56691
56692
56692
56692
56693
56693
56693
56694
56694
56694
56695
56695
56695
56696
56696
56696
56697
56697
56697
56698
56698
56698
56699
56699
56699
56700
56700
56700
56701
56701
56701
56702
56702
56702
56703
56703
56703
56704
56704
56704
56705
56705
56705
56706
56706
56706
56707
56707
56707
56708
56708
56708
56709
56709
56709
56710
56710
56710
56711
56711
56711
56712
56712
56712
56713
56713
56713
56714
56714
56714
56715
56715
56715
56716
56716
56716
56717
56717
56717
56718
56718
56718
56719
56719
56719
56720
56720
56720
56721
56721
56721
56722
56722
56722
56723
56723
56723
56724
56724
56724
56725
56725
56725
56726
56726
56726
56727
56727
56728
56728
56728
56729
56729
56729
56730
56730
56730
56731
56731
56731
56732
56732
56732
56733
56733
56733
56734
56734
56734
56735
56735
56735
56736
56736
56736
56737
56737
56737
56738
56738
56738
56739
56739
56739
56740
56740
56740
56741
56741
56741
56742
56742
56742
56743
56743
56743
56744
56744
56744
56745
56745
56745
56746
56746
56746
56747
56747
56747
56748
56748
56748
56749
56749
56749
56750
56750
56750
56751
56751
56751
56752
56752
56752
56753
56753
56753
56754
56754
56754
56755
56755
56755
56756
56756
56756
56757
56757
56757
56758
56758
56758
56759
56759
56759
56760
56760
56760
56761
56761
56761
56762
56762
56762
56763
56763
56764
56764
56765
56765
56766
56766
56767
56767
56768
56768
56769
56769
56770
56770
56771
56771
56772
56772
56773
56773
56774
56774
56775
56775
56776
56776
56777
56777
56778
56778
56779
56779
56780
56780
56781
56781
56782
56782
56783
56783
56784
56784
56785
56785
56786
56786
56787
56787
56788
56788
56789
56789
56790
56790
56791
56791
56792
56792
56793
56793
56794
56794
56795
56795
56796
56796
56797
56797
56798
56798
56799
56800
56800
56800
56801
56801
56801
56802
56802
56802
56803
56803
56803
56804
56804
56804
56805
56805
56805
56806
56806
56806
56807
56807
56807
56808
56808
56808
56809
56809
56809
56810
56810
56810
56811
56811
56811
56812
56812
56812
56813
56813
56813
56814
56814
56814
56815
56815
56815
56816
56816
56816
56817
56817
56817
56818
56818
56818
56819
56819
56819
56820
56820
56820
56821
56821
56821
56822
56822
56822
56823
56823
56823
56824
56824
56824
56825
56825
56825
56826
56826
56826
56827
56827
56827
56828
56828
56828
56829
56829
56829
56830
56830
56830
56831
56831
56831
56832
56832
56832
56833
56833
56833
56834
56834
56834
56835
56835
56836
56836
56836
56837
56837
56837
56838
56838
56838
56839
56839
56839
56840
56840
56840
56841
56841
56841
56842
56842
56842
56843
56843
56843
56844
56844
56844
56845
56845
56845
56846
56846
56846
56847
56847
56847
56848
56848
56848
56849
56849
56849
56850
56850
56850
56851
56851
56851
56852
56852
56852
56853
56853
56853
56854
56854
56854
56855
56855
56855
56856
56856
56856
56857
56857
56857
56858
56858
56858
56859
56859
56859
56860
56860
56860
56861
56861
56861
56862
56862
56862
56863
56863
56863
56864
56864
56864
56865
56865
56865
56866
56866
56866
56867
56867
56867
56868
56868
56868
56869
56869
56869
56870
56870
56870
56871
56871
56872
56872
56872
56873
56873
56873
56874
56874
56874
56875
56875
56875
56876
56876
56876
56877
56877
56877
56878
56878
56878
56879
56879
56879
56880
56880
56880
56881
56881
56881
56882
56882
56882
56883
56883
56883
56884
56884
56884
56885
56885
56885
56886
56886
56886
56887
56887
56887
56888
56888
56888
56889
56889
56889
56890
56890
56890
56891
56891
56891
56892
56892
56892
56893
56893
56893
56894
56894
56894
56895
56895
56895
56896
56896
56896
56897
56897
56897
56898
56898
56898
56899
56899
56899
56900
56900
56900
56901
56901
56901
56902
56902
56902
56903
56903
56903
56904
56904
56904
56905
56905
56905
56906
56906
56906
56907
56907
56908
56908
56908
56909
56909
56909
56910
56910
56910
56911
56911
56911
56912
56912
56912
56913
56913
56913
56914
56914
56914
56915
56915
56915
56916
56916
56916
56917
56917
56917
56918
56918
56918
56919
56919
56919
56920
56920
56920
56921
56921
56921
56922
56922
56922
56923
56923
56923
56924
56924
56924
56925
56925
56925
56926
56926
56926
56927
56927
56927
56928
56928
56928
56929
56929
56929
56930
56930
56930
56931
56931
56931
56932
56932
56932
56933
56933
56933
56934
56934
56934
56935
56935
56935
56936
56936
56936
56937
56937
56937
56938
56938
56938
56939
56939
56939
56940
56940
56940
56941
56941
56941
56942
56942
56942
56943
56943
56944
56944
56944
56945
56945
56945
56946
56946
56946
56947
56947
56947
56948
56948
56948
56949
56949
56949
56950
56950
56950
56951
56951
56951
56952
56952
56952
56953
56953
56953
56954
56954
56954
56955
56955
56955
56956
56956
56956
56957
56957
56957
56958
56958
56958
56959
56959
56959
56960
56960
56960
56961
56961
56961
56962
56962
56962
56963
56963
56963
56964
56964
56964
56965
56965
56965
56966
56966
56966
56967
56967
56967
56968
56968
56968
56969
56969
56969
56970
56970
56970
56971
56971
56971
56972
56972
56972
56973
56973
56973
56974
56974
56974
56975
56975
56975
56976
56976
56976
56977
56977
56977
56978
56978
56978
56979
56979
56980
56980
56980
56981
56981
56981
56982
56982
56982
56983
56983
56983
56984
56984
56984
56985
56985
56985
56986
56986
56986
56987
56987
56987
56988
56988
56988
56989
56989
56989
56990
56990
56990
56991
56991
56991
56992
56992
56992
56993
56993
56993
56994
56994
56994
56995
56995
56995
56996
56996
56996
56997
56997
56997
56998
56998
56998
56999
56999
56999
57000
57000
57000
57001
57001
57001
57002
57002
57002
57003
57003
57003
57004
57004
57004
57005
57005
57005
57006
57006
57006
57007
57007
57007
57008
57008
57008
57009
57009
57009
57010
57010
57010
57011
57011
57011
57012
57012
57012
57013
57013
57013
57014
57014
57014
57015
57015
57016
57016
57016
57017
57017
57017
57018
57018
57018
57019
57019
57019
57020
57020
57020
57021
57021
57021
57022
57022
57022
57023
57023
57023
57024
57024
57024
57025
57025
57025
57026
57026
57026
57027
57027
57027
57028
57028
57028
57029
57029
57029
57030
57030
57030
57031
57031
57031
57032
57032
57032
57033
57033
57033
57034
57034
57034
57035
57035
57035
57036
57036
57036
57037
57037
57037
57038
57038
57038
57039
57039
57039
57040
57040
57040
57041
57041
57041
57042
57042
57042
57043
57043
57043
57044
57044
57044
57045
57045
57045
57046
57046
57046
57047
57047
57047
57048
57048
57048
57049
57049
57049
57050
57050
57050
57051
57051
57052
57052
57052
57053
57053
57053
57054
57054
57054
57055
57055
57055
57056
57056
57056
57057
57057
57057
57058
57058
57058
57059
57059
57059
57060
57060
57060
57061
57061
57061
57062
57062
57062
57063
57063
57063
57064
57064
57064
57065
57065
57065
57066
57066
57066
57067
57067
57067
57068
57068
57068
57069
57069
57069
57070
57070
57070
57071
57071
57071
57072
57072
57072
57073
57073
57073
57074
57074
57074
57075
57075
57075
57076
57076
57076
57077
57077
57077
57078
57078
57078
57079
57079
57079
57080
57080
57080
57081
57081
57081
57082
57082
57082
57083
57083
57083
57084
57084
57084
57085
57085
57085
57086
57086
57086
57087
57087
57088
57088
57088
57089
57089
57089
57090
57090
57090
57091
57091
57091
57092
57092
57092
57093
57093
57093
57094
57094
57094
57095
57095
57095
57096
57096
57096
57097
57097
57097
57098
57098
57098
57099
57099
57099
57100
57100
57100
57101
57101
57101
57102
57102
57102
57103
57103
57103
57104
57104
57104
57105
57105
57105
57106
57106
57106
57107
57107
57107
57108
57108
57108
57109
57109
57109
57110
57110
57110
57111
57111
57111
57112
57112
57112
57113
57113
57113
57114
57114
57114
57115
57115
57115
57116
57116
57116
57117
57117
57117
57118
57118
57118
57119
57119
57119
57120
57120
57120
57121
57121
57121
57122
57122
57122
57123
57123
57124
57124
57125
57125
57126
57126
57127
57127
57128
57128
57129
57129
57130
57130
57131
57131
57132
57132
57133
57133
57134
57134
57135
57135
57136
57136
57137
57137
57138
57138
57139
57139
57140
57140
57141
57141
57142
57142
57143
57143
57144
57144
57145
57145
57146
57146
57147
57147
57148
57148
57149
57149
57150
57150
57151
57151
57152
57152
57153
57153
57154
57154
57155
57155
57156
57156
57157
57157
57158
57158
57159
57160
57160
57160
57161
57161
57161
57162
57162
57162
57163
57163
57163
57164
57164
57164
57165
57165
57165
57166
57166
57166
57167
57167
57167
57168
57168
57168
57169
57169
57169
57170
57170
57170
57171
57171
57171
57172
57172
57172
57173
57173
57173
57174
57174
57174
57175
57175
57175
57176
57176
57176
57177
57177
57177
57178
57178
57178
57179
57179
57179
57180
57180
57180
57181
57181
57181
57182
57182
57182
57183
57183
57183
57184
57184
57184
57185
57185
57185
57186
57186
57186
57187
57187
57187
57188
57188
57188
57189
57189
57189
57190
57190
57190
57191
57191
57191
57192
57192
57192
57193
57193
57193
57194
57194
57194
57195
57195
57196
57196
57196
57197
57197
57197
57198
57198
57198
57199
57199
57199
57200
57200
57200
57201
57201
57201
57202
57202
57202
57203
57203
57203
57204
57204
57204
57205
57205
57205
57206
57206
57206
57207
57207
57207
57208
57208
57208
57209
57209
57209
57210
57210
57210
57211
57211
57211
57212
57212
57212
57213
57213
57213
57214
57214
57214
57215
57215
57215
57216
57216
57216
57217
57217
57217
57218
57218
57218
57219
57219
57219
57220
57220
57220
57221
57221
57221
57222
57222
57222
57223
57223
57223
57224
57224
57224
57225
57225
57225
57226
57226
57226
57227
57227
57227
57228
57228
57228
57229
57229
57229
57230
57230
57230
57231
57231
57232
57232
57232
57233
57233
57233
57234
57234
57234
57235
57235
57235
57236
57236
57236
57237
57237
57237
57238
57238
57238
57239
57239
57239
57240
57240
57240
57241
57241
57241
57242
57242
57242
57243
57243
57243
57244
57244
57244
57245
57245
57245
57246
57246
57246
57247
57247
57247
57248
57248
57248
57249
57249
57249
57250
57250
57250
57251
57251
57251
57252
57252
57252
57253
57253
57253
57254
57254
57254
57255
57255
57255
57256
57256
57256
57257
57257
57257
57258
57258
57258
57259
57259
57259
57260
57260
57260
57261
57261
57261
57262
57262
57262
57263
57263
57263
57264
57264
57264
57265
57265
57265
57266
57266
57266
57267
57267
57268
57268
57268
57269
57269
57269
57270
57270
57270
57271
57271
57271
57272
57272
57272
57273
57273
57273
57274
57274
57274
57275
57275
57275
57276
57276
57276
57277
57277
57277
57278
57278
57278
57279
57279
57279
57280
57280
57280
57281
57281
57281
57282
57282
57282
57283
57283
57283
57284
57284
57284
57285
57285
57285
57286
57286
57286
57287
57287
57287
57288
57288
57288
57289
57289
57289
57290
57290
57290
57291
57291
57291
57292
57292
57292
57293
57293
57293
57294
57294
57294
57295
57295
57295
57296
57296
57296
57297
57297
57297
57298
57298
57298
57299
57299
57299
57300
57300
57300
57301
57301
57301
57302
57302
57302
57303
57303
57304
57304
57304
57305
57305
57305
57306
57306
57306
57307
57307
57307
57308
57308
57308
57309
57309
57309
57310
57310
57310
57311
57311
57311
57312
57312
57312
57313
57313
57313
57314
57314
57314
57315
57315
57315
57316
57316
57316
57317
57317
57317
57318
57318
57318
57319
57319
57319
57320
57320
57320
57321
57321
57321
57322
57322
57322
57323
57323
57323
57324
57324
57324
57325
57325
57325
57326
57326
57326
57327
57327
57327
57328
57328
57328
57329
57329
57329
57330
57330
57330
57331
57331
57331
57332
57332
57332
57333
57333
57333
57334
57334
57334
57335
57335
57335
57336
57336
57336
57337
57337
57337
57338
57338
57338
57339
57339
57340
57340
57340
57341
57341
57341
57342
57342
57342
57343
57343
57343
57344
57344
57344
57345
57345
57345
57346
57346
57346
57347
57347
57347
57348
57348
57348
57349
57349
57349
57350
57350
57350
57351
57351
57351
57352
57352
57352
57353
57353
57353
57354
57354
57354
57355
57355
57355
57356
57356
57356
57357
57357
57357
57358
57358
57358
57359
57359
57359
57360
57360
57360
57361
57361
57361
57362
57362
57362
57363
57363
57363
57364
57364
57364
57365
57365
57365
57366
57366
57366
57367
57367
57367
57368
57368
57368
57369
57369
57369
57370
57370
57370
57371
57371
57371
57372
57372
57372
57373
57373
57373
57374
57374
57374
57375
57375
57376
57376
57376
57377
57377
57377
57378
57378
57378
57379
57379
57379
57380
57380
57380
57381
57381
57381
57382
57382
57382
57383
57383
57383
57384
57384
57384
57385
57385
57385
57386
57386
57386
57387
57387
57387
57388
57388
57388
57389
57389
57389
57390
57390
57390
57391
57391
57391
57392
57392
57392
57393
57393
57393
57394
57394
57394
57395
57395
57395
57396
57396
57396
57397
57397
57397
57398
57398
57398
57399
57399
57399
57400
57400
57400
57401
57401
57401
57402
57402
57402
57403
57403
57403
57404
57404
57404
57405
57405
57405
57406
57406
57406
57407
57407
57407
57408
57408
57408
57409
57409
57409
57410
57410
57410
57411
57411
57412
57412
57412
57413
57413
57413
57414
57414
57414
57415
57415
57415
57416
57416
57416
57417
57417
57417
57418
57418
57418
57419
57419
57419
57420
57420
57420
57421
57421
57421
57422
57422
57422
57423
57423
57423
57424
57424
57424
57425
57425
57425
57426
57426
57426
57427
57427
57427
57428
57428
57428
57429
57429
57429
57430
57430
57430
57431
57431
57431
57432
57432
57432
57433
57433
57433
57434
57434
57434
57435
57435
57435
57436
57436
57436
57437
57437
57437
57438
57438
57438
57439
57439
57439
57440
57440
57440
57441
57441
57441
57442
57442
57442
57443
57443
57443
57444
57444
57444
57445
57445
57445
57446
57446
57446
57447
57447
57448
57448
57448
57449
57449
57449
57450
57450
57450
57451
57451
57451
57452
57452
57452
57453
57453
57453
57454
57454
57454
57455
57455
57455
57456
57456
57456
57457
57457
57457
57458
57458
57458
57459
57459
57459
57460
57460
57460
57461
57461
57461
57462
57462
57462
57463
57463
57463
57464
57464
57464
57465
57465
57465
57466
57466
57466
57467
57467
57467
57468
57468
57468
57469
57469
57469
57470
57470
57470
57471
57471
57471
57472
57472
57472
57473
57473
57473
57474
57474
57474
57475
57475
57475
57476
57476
57476
57477
57477
57477
57478
57478
57478
57479
57479
57479
57480
57480
57480
57481
57481
57481
57482
57482
57482
57483
57483
57484
57484
57485
57485
57486
57486
57487
57487
57488
57488
57489
57489
57490
57490
57491
57491
57492
57492
57493
57493
57494
57494
57495
57495
57496
57496
57497
57497
57498
57498
57499
57499
57500
57500
57501
57501
57502
57502
57503
57503
57504
57504
57505
57505
57506
57506
57507
57507
57508
57508
57509
57509
57510
57510
57511
57511
57512
57512
57513
57513
57514
57514
57515
57515
57516
57516
57517
57517
57518
57518
57519
57520
57520
57520
57521
57521
57521
57522
57522
57522
57523
57523
57523
57524
57524
57524
57525
57525
57525
57526
57526
57526
57527
57527
57527
57528
57528
57528
57529
57529
57529
57530
57530
57530
57531
57531
57531
57532
57532
57532
57533
57533
57533
57534
57534
57534
57535
57535
57535
57536
57536
57536
57537
57537
57537
57538
57538
57538
57539
57539
57539
57540
57540
57540
57541
57541
57541
57542
57542
57542
57543
57543
57543
57544
57544
57544
57545
57545
57545
57546
57546
57546
57547
57547
57547
57548
57548
57548
57549
57549
57549
57550
57550
57550
57551
57551
57551
57552
57552
57552
57553
57553
57553
57554
57554
57554
57555
57555
57556
57556
57556
57557
57557
57557
57558
57558
57558
57559
57559
57559
57560
57560
57560
57561
57561
57561
57562
57562
57562
57563
57563
57563
57564
57564
57564
57565
57565
57565
57566
57566
57566
57567
57567
57567
57568
57568
57568
57569
57569
57569
57570
57570
57570
57571
57571
57571
57572
57572
57572
57573
57573
57573
57574
57574
57574
57575
57575
57575
57576
57576
57576
57577
57577
57577
57578
57578
57578
57579
57579
57579
57580
57580
57580
57581
57581
57581
57582
57582
57582
57583
57583
57583
57584
57584
57584
57585
57585
57585
57586
57586
57586
57587
57587
57587
57588
57588
57588
57589
57589
57589
57590
57590
57590
57591
57591
57592
57592
57592
57593
57593
57593
57594
57594
57594
57595
57595
57595
57596
57596
57596
57597
57597
57597
57598
57598
57598
57599
57599
57599
57600
57600
57600
57601
57601
57601
57602
57602
57602
57603
57603
57603
57604
57604
57604
57605
57605
57605
57606
57606
57606
57607
57607
57607
57608
57608
57608
57609
57609
57609
57610
57610
57610
57611
57611
57611
57612
57612
57612
57613
57613
57613
57614
57614
57614
57615
57615
57615
57616
57616
57616
57617
57617
57617
57618
57618
57618
57619
57619
57619
57620
57620
57620
57621
57621
57621
57622
57622
57622
57623
57623
57623
57624
57624
57624
57625
57625
57625
57626
57626
57626
57627
57627
57628
57628
57628
57629
57629
57629
57630
57630
57630
57631
57631
57631
57632
57632
57632
57633
57633
57633
57634
57634
57634
57635
57635
57635
57636
57636
57636
57637
57637
57637
57638
57638
57638
57639
57639
57639
57640
57640
57640
57641
57641
57641
57642
57642
57642
57643
57643
57643
57644
57644
57644
57645
57645
57645
57646
57646
57646
57647
57647
57647
57648
57648
57648
57649
57649
57649
57650
57650
57650
57651
57651
57651
57652
57652
57652
57653
57653
57653
57654
57654
57654
57655
57655
57655
57656
57656
57656
57657
57657
57657
57658
57658
57658
57659
57659
57659
57660
57660
57660
57661
57661
57661
57662
57662
57662
57663
57663
57664
57664
57664
57665
57665
57665
57666
57666
57666
57667
57667
57667
57668
57668
57668
57669
57669
57669
57670
57670
57670
57671
57671
57671
57672
57672
57672
57673
57673
57673
57674
57674
57674
57675
57675
57675
57676
57676
57676
57677
57677
57677
57678
57678
57678
57679
57679
57679
57680
57680
57680
57681
57681
57681
57682
57682
57682
57683
57683
57683
57684
57684
57684
57685
57685
57685
57686
57686
57686
57687
57687
57687
57688
57688
57688
57689
57689
57689
57690
57690
57690
57691
57691
57691
57692
57692
57692
57693
57693
57693
57694
57694
57694
57695
57695
57695
57696
57696
57696
57697
57697
57697
57698
57698
57698
57699
57699
57700
57700
57700
57701
57701
57701
57702
57702
57702
57703
57703
57703
57704
57704
57704
57705
57705
57705
57706
57706
57706
57707
57707
57707
57708
57708
57708
57709
57709
57709
57710
57710
57710
57711
57711
57711
57712
57712
57712
57713
57713
57713
57714
57714
57714
57715
57715
57715
57716
57716
57716
57717
57717
57717
57718
57718
57718
57719
57719
57719
57720
57720
57720
57721
57721
57721
57722
57722
57722
57723
57723
57723
57724
57724
57724
57725
57725
57725
57726
57726
57726
57727
57727
57727
57728
57728
57728
57729
57729
57729
57730
57730
57730
57731
57731
57731
57732
57732
57732
57733
57733
57733
57734
57734
57734
57735
57735
57736
57736
57736
57737
57737
57737
57738
57738
57738
57739
57739
57739
57740
57740
57740
57741
57741
57741
57742
57742
57742
57743
57743
57743
57744
57744
57744
57745
57745
57745
57746
57746
57746
57747
57747
57747
57748
57748
57748
57749
57749
57749
57750
57750
57750
57751
57751
57751
57752
57752
57752
57753
57753
57753
57754
57754
57754
57755
57755
57755
57756
57756
57756
57757
57757
57757
57758
57758
57758
57759
57759
57759
57760
57760
57760
57761
57761
57761
57762
57762
57762
57763
57763
57763
57764
57764
57764
57765
57765
57765
57766
57766
57766
57767
57767
57767
57768
57768
57768
57769
57769
57769
57770
57770
57770
57771
57771
57772
57772
57772
57773
57773
57773
57774
57774
57774
57775
57775
57775
57776
57776
57776
57777
57777
57777
57778
57778
57778
57779
57779
57779
57780
57780
57780
57781
57781
57781
57782
57782
57782
57783
57783
57783
57784
57784
57784
57785
57785
57785
57786
57786
57786
57787
57787
57787
57788
57788
57788
57789
57789
57789
57790
57790
57790
57791
57791
57791
57792
57792
57792
57793
57793
57793
57794
57794
57794
57795
57795
57795
57796
57796
57796
57797
57797
57797
57798
57798
57798
57799
57799
57799
57800
57800
57800
57801
57801
57801
57802
57802
57802
57803
57803
57803
57804
57804
57804
57805
57805
57805
57806
57806
57806
57807
57807
57808
57808
57808
57809
57809
57809
57810
57810
57810
57811
57811
57811
57812
57812
57812
57813
57813
57813
57814
57814
57814
57815
57815
57815
57816
57816
57816
57817
57817
57817
57818
57818
57818
57819
57819
57819
57820
57820
57820
57821
57821
57821
57822
57822
57822
57823
57823
57823
57824
57824
57824
57825
57825
57825
57826
57826
57826
57827
57827
57827
57828
57828
57828
57829
57829
57829
57830
57830
57830
57831
57831
57831
57832
57832
57832
57833
57833
57833
57834
57834
57834
57835
57835
57835
57836
57836
57836
57837
57837
57837
57838
57838
57838
57839
57839
57839
57840
57840
57840
57841
57841
57841
57842
57842
57842
57843
57843
57844
57844
57845
57845
57846
57846
57847
57847
57848
57848
57849
57849
57850
57850
57851
57851
57852
57852
57853
57853
57854
57854
57855
57855
57856
57856
57857
57857
57858
57858
57859
57859
57860
57860
57861
57861
57862
57862
57863
57863
57864
57864
57865
57865
57866
57866
57867
57867
57868
57868
57869
57869
57870
57870
57871
57871
57872
57872
57873
57873
57874
57874
57875
57875
57876
57876
57877
57877
57878
57878
57879
57880
57880
57880
57881
57881
57881
57882
57882
57882
57883
57883
57883
57884
57884
57884
57885
57885
57885
57886
57886
57886
57887
57887
57887
57888
57888
57888
57889
57889
57889
57890
57890
57890
57891
57891
57891
57892
57892
57892
57893
57893
57893
57894
57894
57894
57895
57895
57895
57896
57896
57896
57897
57897
57897
57898
57898
57898
57899
57899
57899
57900
57900
57900
57901
57901
57901
57902
57902
57902
57903
57903
57903
57904
57904
57904
57905
57905
57905
57906
57906
57906
57907
57907
57907
57908
57908
57908
57909
57909
57909
57910
57910
57910
57911
57911
57911
57912
57912
57912
57913
57913
57913
57914
57914
57914
57915
57915
57916
57916
57916
57917
57917
57917
57918
57918
57918
57919
57919
57919
57920
57920
57920
57921
57921
57921
57922
57922
57922
57923
57923
57923
57924
57924
57924
57925
57925
57925
57926
57926
57926
57927
57927
57927
57928
57928
57928
57929
57929
57929
57930
57930
57930
57931
57931
57931
57932
57932
57932
57933
57933
57933
57934
57934
57934
57935
57935
57935
57936
57936
57936
57937
57937
57937
57938
57938
57938
57939
57939
57939
57940
57940
57940
57941
57941
57941
57942
57942
57942
57943
57943
57943
57944
57944
57944
57945
57945
57945
57946
57946
57946
57947
57947
57947
57948
57948
57948
57949
57949
57949
57950
57950
57950
57951
57951
57952
57952
57952
57953
57953
57953
57954
57954
57954
57955
57955
57955
57956
57956
57956
57957
57957
57957
57958
57958
57958
57959
57959
57959
57960
57960
57960
57961
57961
57961
57962
57962
57962
57963
57963
57963
57964
57964
57964
57965
57965
57965
57966
57966
57966
57967
57967
57967
57968
57968
57968
57969
57969
57969
57970
57970
57970
57971
57971
57971
57972
57972
57972
57973
57973
57973
57974
57974
57974
57975
57975
57975
57976
57976
57976
57977
57977
57977
57978
57978
57978
57979
57979
57979
57980
57980
57980
57981
57981
57981
57982
57982
57982
57983
57983
57983
57984
57984
57984
57985
57985
57985
57986
57986
57986
57987
57987
57988
57988
57988
57989
57989
57989
57990
57990
57990
57991
57991
57991
57992
57992
57992
57993
57993
57993
57994
57994
57994
57995
57995
57995
57996
57996
57996
57997
57997
57997
57998
57998
57998
57999
57999
57999
58000
58000
58000
58001
58001
58001
58002
58002
58002
58003
58003
58003
58004
58004
58004
58005
58005
58005
58006
58006
58006
58007
58007
58007
58008
58008
58008
58009
58009
58009
58010
58010
58010
58011
58011
58011
58012
58012
58012
58013
58013
58013
58014
58014
58014
58015
58015
58015
58016
58016
58016
58017
58017
58017
58018
58018
58018
58019
58019
58019
58020
58020
58020
58021
58021
58021
58022
58022
58022
58023
58023
58024
58024
58024
58025
58025
58025
58026
58026
58026
58027
58027
58027
58028
58028
58028
58029
58029
58029
58030
58030
58030
58031
58031
58031
58032
58032
58032
58033
58033
58033
58034
58034
58034
58035
58035
58035
58036
58036
58036
58037
58037
58037
58038
58038
58038
58039
58039
58039
58040
58040
58040
58041
58041
58041
58042
58042
58042
58043
58043
58043
58044
58044
58044
58045
58045
58045
58046
58046
58046
58047
58047
58047
58048
58048
58048
58049
58049
58049
58050
58050
58050
58051
58051
58051
58052
58052
58052
58053
58053
58053
58054
58054
58054
58055
58055
58055
58056
58056
58056
58057
58057
58057
58058
58058
58058
58059
58059
58060
58060
58060
58061
58061
58061
58062
58062
58062
58063
58063
58063
58064
58064
58064
58065
58065
58065
58066
58066
58066
58067
58067
58067
58068
58068
58068
58069
58069
58069
58070
58070
58070
58071
58071
58071
58072
58072
58072
58073
58073
58073
58074
58074
58074
58075
58075
58075
58076
58076
58076
58077
58077
58077
58078
58078
58078
58079
58079
58079
58080
58080
58080
58081
58081
58081
58082
58082
58082
58083
58083
58083
58084
58084
58084
58085
58085
58085
58086
58086
58086
58087
58087
58087
58088
58088
58088
58089
58089
58089
58090
58090
58090
58091
58091
58091
58092
58092
58092
58093
58093
58093
58094
58094
58094
58095
58095
58096
58096
58096
58097
58097
58097
58098
58098
58098
58099
58099
58099
58100
58100
58100
58101
58101
58101
58102
58102
58102
58103
58103
58103
58104
58104
58104
58105
58105
58105
58106
58106
58106
58107
58107
58107
58108
58108
58108
58109
58109
58109
58110
58110
58110
58111
58111
58111
58112
58112
58112
58113
58113
58113
58114
58114
58114
58115
58115
58115
58116
58116
58116
58117
58117
58117
58118
58118
58118
58119
58119
58119
58120
58120
58120
58121
58121
58121
58122
58122
58122
58123
58123
58123
58124
58124
58124
58125
58125
58125
58126
58126
58126
58127
58127
58127
58128
58128
58128
58129
58129
58129
58130
58130
58130
58131
58131
58132
58132
58132
58133
58133
58133
58134
58134
58134
58135
58135
58135
58136
58136
58136
58137
58137
58137
58138
58138
58138
58139
58139
58139
58140
58140
58140
58141
58141
58141
58142
58142
58142
58143
58143
58143
58144
58144
58144
58145
58145
58145
58146
58146
58146
58147
58147
58147
58148
58148
58148
58149
58149
58149
58150
58150
58150
58151
58151
58151
58152
58152
58152
58153
58153
58153
58154
58154
58154
58155
58155
58155
58156
58156
58156
58157
58157
58157
58158
58158
58158
58159
58159
58159
58160
58160
58160
58161
58161
58161
58162
58162
58162
58163
58163
58163
58164
58164
58164
58165
58165
58165
58166
58166
58166
58167
58167
58168
58168
58168
58169
58169
58169
58170
58170
58170
58171
58171
58171
58172
58172
58172
58173
58173
58173
58174
58174
58174
58175
58175
58175
58176
58176
58176
58177
58177
58177
58178
58178
58178
58179
58179
58179
58180
58180
58180
58181
58181
58181
58182
58182
58182
58183
58183
58183
58184
58184
58184
58185
58185
58185
58186
58186
58186
58187
58187
58187
58188
58188
58188
58189
58189
58189
58190
58190
58190
58191
58191
58191
58192
58192
58192
58193
58193
58193
58194
58194
58194
58195
58195
58195
58196
58196
58196
58197
58197
58197
58198
58198
58198
58199
58199
58199
58200
58200
58200
58201
58201
58201
58202
58202
58202
58203
58203
58204
58204
58205
58205
58206
58206
58207
58207
58208
58208
58209
58209
58210
58210
58211
58211
58212
58212
58213
58213
58214
58214
58215
58215
58216
58216
58217
58217
58218
58218
58219
58219
58220
58220
58221
58221
58222
58222
58223
58223
58224
58224
58225
58225
58226
58226
58227
58227
58228
58228
58229
58229
58230
58230
58231
58231
58232
58232
58233
58233
58234
58234
58235
58235
58236
58236
58237
58237
58238
58238
58239
58240
58240
58240
58241
58241
58241
58242
58242
58242
58243
58243
58243
58244
58244
58244
58245
58245
58245
58246
58246
58246
58247
58247
58247
58248
58248
58248
58249
58249
58249
58250
58250
58250
58251
58251
58251
58252
58252
58252
58253
58253
58253
58254
58254
58254
58255
58255
58255
58256
58256
58256
58257
58257
58257
58258
58258
58258
58259
58259
58259
58260
58260
58260
58261
58261
58261
58262
58262
58262
58263
58263
58263
58264
58264
58264
58265
58265
58265
58266
58266
58266
58267
58267
58267
58268
58268
58268
58269
58269
58269
58270
58270
58270
58271
58271
58271
58272
58272
58272
58273
58273
58273
58274
58274
58274
58275
58275
58276
58276
58276
58277
58277
58277
58278
58278
58278
58279
58279
58279
58280
58280
58280
58281
58281
58281
58282
58282
58282
58283
58283
58283
58284
58284
58284
58285
58285
58285
58286
58286
58286
58287
58287
58287
58288
58288
58288
58289
58289
58289
58290
58290
58290
58291
58291
58291
58292
58292
58292
58293
58293
58293
58294
58294
58294
58295
58295
58295
58296
58296
58296
58297
58297
58297
58298
58298
58298
58299
58299
58299
58300
58300
58300
58301
58301
58301
58302
58302
58302
58303
58303
58303
58304
58304
58304
58305
58305
58305
58306
58306
58306
58307
58307
58307
58308
58308
58308
58309
58309
58309
58310
58310
58310
58311
58311
58312
58312
58312
58313
58313
58313
58314
58314
58314
58315
58315
58315
58316
58316
58316
58317
58317
58317
58318
58318
58318
58319
58319
58319
58320
58320
58320
58321
58321
58321
58322
58322
58322
58323
58323
58323
58324
58324
58324
58325
58325
58325
58326
58326
58326
58327
58327
58327
58328
58328
58328
58329
58329
58329
58330
58330
58330
58331
58331
58331
58332
58332
58332
58333
58333
58333
58334
58334
58334
58335
58335
58335
58336
58336
58336
58337
58337
58337
58338
58338
58338
58339
58339
58339
58340
58340
58340
58341
58341
58341
58342
58342
58342
58343
58343
58343
58344
58344
58344
58345
58345
58345
58346
58346
58346
58347
58347
58348
58348
58348
58349
58349
58349
58350
58350
58350
58351
58351
58351
58352
58352
58352
58353
58353
58353
58354
58354
58354
58355
58355
58355
58356
58356
58356
58357
58357
58357
58358
58358
58358
58359
58359
58359
58360
58360
58360
58361
58361
58361
58362
58362
58362
58363
58363
58363
58364
58364
58364
58365
58365
58365
58366
58366
58366
58367
58367
58367
58368
58368
58368
58369
58369
58369
58370
58370
58370
58371
58371
58371
58372
58372
58372
58373
58373
58373
58374
58374
58374
58375
58375
58375
58376
58376
58376
58377
58377
58377
58378
58378
58378
58379
58379
58379
58380
58380
58380
58381
58381
58381
58382
58382
58382
58383
58383
58384
58384
58384
58385
58385
58385
58386
58386
58386
58387
58387
58387
58388
58388
58388
58389
58389
58389
58390
58390
58390
58391
58391
58391
58392
58392
58392
58393
58393
58393
58394
58394
58394
58395
58395
58395
58396
58396
58396
58397
58397
58397
58398
58398
58398
58399
58399
58399
58400
58400
58400
58401
58401
58401
58402
58402
58402
58403
58403
58403
58404
58404
58404
58405
58405
58405
58406
58406
58406
58407
58407
58407
58408
58408
58408
58409
58409
58409
58410
58410
58410
58411
58411
58411
58412
58412
58412
58413
58413
58413
58414
58414
58414
58415
58415
58415
58416
58416
58416
58417
58417
58417
58418
58418
58418
58419
58419
58420
58420
58420
58421
58421
58421
58422
58422
58422
58423
58423
58423
58424
58424
58424
58425
58425
58425
58426
58426
58426
58427
58427
58427
58428
58428
58428
58429
58429
58429
58430
58430
58430
58431
58431
58431
58432
58432
58432
58433
58433
58433
58434
58434
58434
58435
58435
58435
58436
58436
58436
58437
58437
58437
58438
58438
58438
58439
58439
58439
58440
58440
58440
58441
58441
58441
58442
58442
58442
58443
58443
58443
58444
58444
58444
58445
58445
58445
58446
58446
58446
58447
58447
58447
58448
58448
58448
58449
58449
58449
58450
58450
58450
58451
58451
58451
58452
58452
58452
58453
58453
58453
58454
58454
58454
58455
58455
58456
58456
58456
58457
58457
58457
58458
58458
58458
58459
58459
58459
58460
58460
58460
58461
58461
58461
58462
58462
58462
58463
58463
58463
58464
58464
58464
58465
58465
58465
58466
58466
58466
58467
58467
58467
58468
58468
58468
58469
58469
58469
58470
58470
58470
58471
58471
58471
58472
58472
58472
58473
58473
58473
58474
58474
58474
58475
58475
58475
58476
58476
58476
58477
58477
58477
58478
58478
58478
58479
58479
58479
58480
58480
58480
58481
58481
58481
58482
58482
58482
58483
58483
58483
58484
58484
58484
58485
58485
58485
58486
58486
58486
58487
58487
58487
58488
58488
58488
58489
58489
58489
58490
58490
58490
58491
58491
58492
58492
58492
58493
58493
58493
58494
58494
58494
58495
58495
58495
58496
58496
58496
58497
58497
58497
58498
58498
58498
58499
58499
58499
58500
58500
58500
58501
58501
58501
58502
58502
58502
58503
58503
58503
58504
58504
58504
58505
58505
58505
58506
58506
58506
58507
58507
58507
58508
58508
58508
58509
58509
58509
58510
58510
58510
58511
58511
58511
58512
58512
58512
58513
58513
58513
58514
58514
58514
58515
58515
58515
58516
58516
58516
58517
58517
58517
58518
58518
58518
58519
58519
58519
58520
58520
58520
58521
58521
58521
58522
58522
58522
58523
58523
58523
58524
58524
58524
58525
58525
58525
58526
58526
58526
58527
58527
58528
58528
58528
58529
58529
58529
58530
58530
58530
58531
58531
58531
58532
58532
58532
58533
58533
58533
58534
58534
58534
58535
58535
58535
58536
58536
58536
58537
58537
58537
58538
58538
58538
58539
58539
58539
58540
58540
58540
58541
58541
58541
58542
58542
58542
58543
58543
58543
58544
58544
58544
58545
58545
58545
58546
58546
58546
58547
58547
58547
58548
58548
58548
58549
58549
58549
58550
58550
58550
58551
58551
58551
58552
58552
58552
58553
58553
58553
58554
58554
58554
58555
58555
58555
58556
58556
58556
58557
58557
58557
58558
58558
58558
58559
58559
58559
58560
58560
58560
58561
58561
58561
58562
58562
58562
58563
58563
58564
58564
58565
58565
58566
58566
58567
58567
58568
58568
58569
58569
58570
58570
58571
58571
58572
58572
58573
58573
58574
58574
58575
58575
58576
58576
58577
58577
58578
58578
58579
58579
58580
58580
58581
58581
58582
58582
58583
58583
58584
58584
58585
58585
58586
58586
58587
58587
58588
58588
58589
58589
58590
58590
58591
58591
58592
58592
58593
58593
58594
58594
58595
58595
58596
58596
58597
58597
58598
58598
58599
58600
58600
58600
58601
58601
58601
58602
58602
58602
58603
58603
58603
58604
58604
58604
58605
58605
58605
58606
58606
58606
58607
58607
58607
58608
58608
58608
58609
58609
58609
58610
58610
58610
58611
58611
58611
58612
58612
58612
58613
58613
58613
58614
58614
58614
58615
58615
58615
58616
58616
58616
58617
58617
58617
58618
58618
58618
58619
58619
58619
58620
58620
58620
58621
58621
58621
58622
58622
58622
58623
58623
58623
58624
58624
58624
58625
58625
58625
58626
58626
58626
58627
58627
58627
58628
58628
58628
58629
58629
58629
58630
58630
58630
58631
58631
58631
58632
58632
58632
58633
58633
58633
58634
58634
58634
58635
58635
58636
58636
58636
58637
58637
58637
58638
58638
58638
58639
58639
58639
58640
58640
58640
58641
58641
58641
58642
58642
58642
58643
58643
58643
58644
58644
58644
58645
58645
58645
58646
58646
58646
58647
58647
58647
58648
58648
58648
58649
58649
58649
58650
58650
58650
58651
58651
58651
58652
58652
58652
58653
58653
58653
58654
58654
58654
58655
58655
58655
58656
58656
58656
58657
58657
58657
58658
58658
58658
58659
58659
58659
58660
58660
58660
58661
58661
58661
58662
58662
58662
58663
58663
58663
58664
58664
58664
58665
58665
58665
58666
58666
58666
58667
58667
58667
58668
58668
58668
58669
58669
58669
58670
58670
58670
58671
58671
58672
58672
58672
58673
58673
58673
58674
58674
58674
58675
58675
58675
58676
58676
58676
58677
58677
58677
58678
58678
58678
58679
58679
58679
58680
58680
58680
58681
58681
58681
58682
58682
58682
58683
58683
58683
58684
58684
58684
58685
58685
58685
58686
58686
58686
58687
58687
58687
58688
58688
58688
58689
58689
58689
58690
58690
58690
58691
58691
58691
58692
58692
58692
58693
58693
58693
58694
58694
58694
58695
58695
58695
58696
58696
58696
58697
58697
58697
58698
58698
58698
58699
58699
58699
58700
58700
58700
58701
58701
58701
58702
58702
58702
58703
58703
58703
58704
58704
58704
58705
58705
58705
58706
58706
58706
58707
58707
58708
58708
58708
58709
58709
58709
58710
58710
58710
58711
58711
58711
58712
58712
58712
58713
58713
58713
58714
58714
58714
58715
58715
58715
58716
58716
58716
58717
58717
58717
58718
58718
58718
58719
58719
58719
58720
58720
58720
58721
58721
58721
58722
58722
58722
58723
58723
58723
58724
58724
58724
58725
58725
58725
58726
58726
58726
58727
58727
58727
58728
58728
58728
58729
58729
58729
58730
58730
58730
58731
58731
58731
58732
58732
58732
58733
58733
58733
58734
58734
58734
58735
58735
58735
58736
58736
58736
58737
58737
58737
58738
58738
58738
58739
58739
58739
58740
58740
58740
58741
58741
58741
58742
58742
58742
58743
58743
58744
58744
58744
58745
58745
58745
58746
58746
58746
58747
58747
58747
58748
58748
58748
58749
58749
58749
58750
58750
58750
58751
58751
58751
58752
58752
58752
58753
58753
58753
58754
58754
58754
58755
58755
58755
58756
58756
58756
58757
58757
58757
58758
58758
58758
58759
58759
58759
58760
58760
58760
58761
58761
58761
58762
58762
58762
58763
58763
58763
58764
58764
58764
58765
58765
58765
58766
58766
58766
58767
58767
58767
58768
58768
58768
58769
58769
58769
58770
58770
58770
58771
58771
58771
58772
58772
58772
58773
58773
58773
58774
58774
58774
58775
58775
58775
58776
58776
58776
58777
58777
58777
58778
58778
58778
58779
58779
58780
58780
58780
58781
58781
58781
58782
58782
58782
58783
58783
58783
58784
58784
58784
58785
58785
58785
58786
58786
58786
58787
58787
58787
58788
58788
58788
58789
58789
58789
58790
58790
58790
58791
58791
58791
58792
58792
58792
58793
58793
58793
58794
58794
58794
58795
58795
58795
58796
58796
58796
58797
58797
58797
58798
58798
58798
58799
58799
58799
58800
58800
58800
58801
58801
58801
58802
58802
58802
58803
58803
58803
58804
58804
58804
58805
58805
58805
58806
58806
58806
58807
58807
58807
58808
58808
58808
58809
58809
58809
58810
58810
58810
58811
58811
58811
58812
58812
58812
58813
58813
58813
58814
58814
58814
58815
58815
58816
58816
58816
58817
58817
58817
58818
58818
58818
58819
58819
58819
58820
58820
58820
58821
58821
58821
58822
58822
58822
58823
58823
58823
58824
58824
58824
58825
58825
58825
58826
58826
58826
58827
58827
58827
58828
58828
58828
58829
58829
58829
58830
58830
58830
58831
58831
58831
58832
58832
58832
58833
58833
58833
58834
58834
58834
58835
58835
58835
58836
58836
58836
58837
58837
58837
58838
58838
58838
58839
58839
58839
58840
58840
58840
58841
58841
58841
58842
58842
58842
58843
58843
58843
58844
58844
58844
58845
58845
58845
58846
58846
58846
58847
58847
58847
58848
58848
58848
58849
58849
58849
58850
58850
58850
58851
58851
58852
58852
58852
58853
58853
58853
58854
58854
58854
58855
58855
58855
58856
58856
58856
58857
58857
58857
58858
58858
58858
58859
58859
58859
58860
58860
58860
58861
58861
58861
58862
58862
58862
58863
58863
58863
58864
58864
58864
58865
58865
58865
58866
58866
58866
58867
58867
58867
58868
58868
58868
58869
58869
58869
58870
58870
58870
58871
58871
58871
58872
58872
58872
58873
58873
58873
58874
58874
58874
58875
58875
58875
58876
58876
58876
58877
58877
58877
58878
58878
58878
58879
58879
58879
58880
58880
58880
58881
58881
58881
58882
58882
58882
58883
58883
58883
58884
58884
58884
58885
58885
58885
58886
58886
58886
58887
58887
58888
58888
58888
58889
58889
58889
58890
58890
58890
58891
58891
58891
58892
58892
58892
58893
58893
58893
58894
58894
58894
58895
58895
58895
58896
58896
58896
58897
58897
58897
58898
58898
58898
58899
58899
58899
58900
58900
58900
58901
58901
58901
58902
58902
58902
58903
58903
58903
58904
58904
58904
58905
58905
58905
58906
58906
58906
58907
58907
58907
58908
58908
58908
58909
58909
58909
58910
58910
58910
58911
58911
58911
58912
58912
58912
58913
58913
58913
58914
58914
58914
58915
58915
58915
58916
58916
58916
58917
58917
58917
58918
58918
58918
58919
58919
58919
58920
58920
58920
58921
58921
58921
58922
58922
58922
58923
58923
58924
58924
58925
58925
58926
58926
58927
58927
58928
58928
58929
58929
58930
58930
58931
58931
58932
58932
58933
58933
58934
58934
58935
58935
58936
58936
58937
58937
58938
58938
58939
58939
58940
58940
58941
58941
58942
58942
58943
58943
58944
58944
58945
58945
58946
58946
58947
58947
58948
58948
58949
58949
58950
58950
58951
58951
58952
58952
58953
58953
58954
58954
58955
58955
58956
58956
58957
58957
58958
58958
58959
58960
58960
58960
58961
58961
58961
58962
58962
58962
58963
58963
58963
58964
58964
58964
58965
58965
58965
58966
58966
58966
58967
58967
58967
58968
58968
58968
58969
58969
58969
58970
58970
58970
58971
58971
58971
58972
58972
58972
58973
58973
58973
58974
58974
58974
58975
58975
58975
58976
58976
58976
58977
58977
58977
58978
58978
58978
58979
58979
58979
58980
58980
58980
58981
58981
58981
58982
58982
58982
58983
58983
58983
58984
58984
58984
58985
58985
58985
58986
58986
58986
58987
58987
58987
58988
58988
58988
58989
58989
58989
58990
58990
58990
58991
58991
58991
58992
58992
58992
58993
58993
58993
58994
58994
58994
58995
58995
58996
58996
58996
58997
58997
58997
58998
58998
58998
58999
58999
58999
59000
59000
59000
59001
59001
59001
59002
59002
59002
59003
59003
59003
59004
59004
59004
59005
59005
59005
59006
59006
59006
59007
59007
59007
59008
59008
59008
59009
59009
59009
59010
59010
59010
59011
59011
59011
59012
59012
59012
59013
59013
59013
59014
59014
59014
59015
59015
59015
59016
59016
59016
59017
59017
59017
59018
59018
59018
59019
59019
59019
59020
59020
59020
59021
59021
59021
59022
59022
59022
59023
59023
59023
59024
59024
59024
59025
59025
59025
59026
59026
59026
59027
59027
59027
59028
59028
59028
59029
59029
59029
59030
59030
59030
59031
59031
59032
59032
59032
59033
59033
59033
59034
59034
59034
59035
59035
59035
59036
59036
59036
59037
59037
59037
59038
59038
59038
59039
59039
59039
59040
59040
59040
59041
59041
59041
59042
59042
59042
59043
59043
59043
59044
59044
59044
59045
59045
59045
59046
59046
59046
59047
59047
59047
59048
59048
59048
59049
59049
59049
59050
59050
59050
59051
59051
59051
59052
59052
59052
59053
59053
59053
59054
59054
59054
59055
59055
59055
59056
59056
59056
59057
59057
59057
59058
59058
59058
59059
59059
59059
59060
59060
59060
59061
59061
59061
59062
59062
59062
59063
59063
59063
59064
59064
59064
59065
59065
59065
59066
59066
59066
59067
59067
59068
59068
59068
59069
59069
59069
59070
59070
59070
59071
59071
59071
59072
59072
59072
59073
59073
59073
59074
59074
59074
59075
59075
59075
59076
59076
59076
59077
59077
59077
59078
59078
59078
59079
59079
59079
59080
59080
59080
59081
59081
59081
59082
59082
59082
59083
59083
59083
59084
59084
59084
59085
59085
59085
59086
59086
59086
59087
59087
59087
59088
59088
59088
59089
59089
59089
59090
59090
59090
59091
59091
59091
59092
59092
59092
59093
59093
59093
59094
59094
59094
59095
59095
59095
59096
59096
59096
59097
59097
59097
59098
59098
59098
59099
59099
59099
59100
59100
59100
59101
59101
59101
59102
59102
59102
59103
59103
59104
59104
59104
59105
59105
59105
59106
59106
59106
59107
59107
59107
59108
59108
59108
59109
59109
59109
59110
59110
59110
59111
59111
59111
59112
59112
59112
59113
59113
59113
59114
59114
59114
59115
59115
59115
59116
59116
59116
59117
59117
59117
59118
59118
59118
59119
59119
59119
59120
59120
59120
59121
59121
59121
59122
59122
59122
59123
59123
59123
59124
59124
59124
59125
59125
59125
59126
59126
59126
59127
59127
59127
59128
59128
59128
59129
59129
59129
59130
59130
59130
59131
59131
59131
59132
59132
59132
59133
59133
59133
59134
59134
59134
59135
59135
59135
59136
59136
59136
59137
59137
59137
59138
59138
59138
59139
59139
59140
59140
59140
59141
59141
59141
59142
59142
59142
59143
59143
59143
59144
59144
59144
59145
59145
59145
59146
59146
59146
59147
59147
59147
59148
59148
59148
59149
59149
59149
59150
59150
59150
59151
59151
59151
59152
59152
59152
59153
59153
59153
59154
59154
59154
59155
59155
59155
59156
59156
59156
59157
59157
59157
59158
59158
59158
59159
59159
59159
59160
59160
59160
59161
59161
59161
59162
59162
59162
59163
59163
59163
59164
59164
59164
59165
59165
59165
59166
59166
59166
59167
59167
59167
59168
59168
59168
59169
59169
59169
59170
59170
59170
59171
59171
59171
59172
59172
59172
59173
59173
59173
59174
59174
59174
59175
59175
59176
59176
59176
59177
59177
59177
59178
59178
59178
59179
59179
59179
59180
59180
59180
59181
59181
59181
59182
59182
59182
59183
59183
59183
59184
59184
59184
59185
59185
59185
59186
59186
59186
59187
59187
59187
59188
59188
59188
59189
59189
59189
59190
59190
59190
59191
59191
59191
59192
59192
59192
59193
59193
59193
59194
59194
59194
59195
59195
59195
59196
59196
59196
59197
59197
59197
59198
59198
59198
59199
59199
59199
59200
59200
59200
59201
59201
59201
59202
59202
59202
59203
59203
59203
59204
59204
59204
59205
59205
59205
59206
59206
59206
59207
59207
59207
59208
59208
59208
59209
59209
59209
59210
59210
59210
59211
59211
59212
59212
59212
59213
59213
59213
59214
59214
59214
59215
59215
59215
59216
59216
59216
59217
59217
59217
59218
59218
59218
59219
59219
59219
59220
59220
59220
59221
59221
59221
59222
59222
59222
59223
59223
59223
59224
59224
59224
59225
59225
59225
59226
59226
59226
59227
59227
59227
59228
59228
59228
59229
59229
59229
59230
59230
59230
59231
59231
59231
59232
59232
59232
59233
59233
59233
59234
59234
59234
59235
59235
59235
59236
59236
59236
59237
59237
59237
59238
59238
59238
59239
59239
59239
59240
59240
59240
59241
59241
59241
59242
59242
59242
59243
59243
59243
59244
59244
59244
59245
59245
59245
59246
59246
59246
59247
59247
59248
59248
59248
59249
59249
59249
59250
59250
59250
59251
59251
59251
59252
59252
59252
59253
59253
59253
59254
59254
59254
59255
59255
59255
59256
59256
59256
59257
59257
59257
59258
59258
59258
59259
59259
59259
59260
59260
59260
59261
59261
59261
59262
59262
59262
59263
59263
59263
59264
59264
59264
59265
59265
59265
59266
59266
59266
59267
59267
59267
59268
59268
59268
59269
59269
59269
59270
59270
59270
59271
59271
59271
59272
59272
59272
59273
59273
59273
59274
59274
59274
59275
59275
59275
59276
59276
59276
59277
59277
59277
59278
59278
59278
59279
59279
59279
59280
59280
59280
59281
59281
59281
59282
59282
59282
59283
59283
59284
59284
59285
59285
59286
59286
59287
59287
59288
59288
59289
59289
59290
59290
59291
59291
59292
59292
59293
59293
59294
59294
59295
59295
59296
59296
59297
59297
59298
59298
59299
59299
59300
59300
59301
59301
59302
59302
59303
59303
59304
59304
59305
59305
59306
59306
59307
59307
59308
59308
59309
59309
59310
59310
59311
59311
59312
59312
59313
59313
59314
59314
59315
59315
59316
59316
59317
59317
59318
59318
59319
59320
59320
59320
59321
59321
59321
59322
59322
59322
59323
59323
59323
59324
59324
59324
59325
59325
59325
59326
59326
59326
59327
59327
59327
59328
59328
59328
59329
59329
59329
59330
59330
59330
59331
59331
59331
59332
59332
59332
59333
59333
59333
59334
59334
59334
59335
59335
59335
59336
59336
59336
59337
59337
59337
59338
59338
59338
59339
59339
59339
59340
59340
59340
59341
59341
59341
59342
59342
59342
59343
59343
59343
59344
59344
59344
59345
59345
59345
59346
59346
59346
59347
59347
59347
59348
59348
59348
59349
59349
59349
59350
59350
59350
59351
59351
59351
59352
59352
59352
59353
59353
59353
59354
59354
59354
59355
59355
59356
59356
59356
59357
59357
59357
59358
59358
59358
59359
59359
59359
59360
59360
59360
59361
59361
59361
59362
59362
59362
59363
59363
59363
59364
59364
59364
59365
59365
59365
59366
59366
59366
59367
59367
59367
59368
59368
59368
59369
59369
59369
59370
59370
59370
59371
59371
59371
59372
59372
59372
59373
59373
59373
59374
59374
59374
59375
59375
59375
59376
59376
59376
59377
59377
59377
59378
59378
59378
59379
59379
59379
59380
59380
59380
59381
59381
59381
59382
59382
59382
59383
59383
59383
59384
59384
59384
59385
59385
59385
59386
59386
59386
59387
59387
59387
59388
59388
59388
59389
59389
59389
59390
59390
59390
59391
59391
59392
59392
59392
59393
59393
59393
59394
59394
59394
59395
59395
59395
59396
59396
59396
59397
59397
59397
59398
59398
59398
59399
59399
59399
59400
59400
59400
59401
59401
59401
59402
59402
59402
59403
59403
59403
59404
59404
59404
59405
59405
59405
59406
59406
59406
59407
59407
59407
59408
59408
59408
59409
59409
59409
59410
59410
59410
59411
59411
59411
59412
59412
59412
59413
59413
59413
59414
59414
59414
59415
59415
59415
59416
59416
59416
59417
59417
59417
59418
59418
59418
59419
59419
59419
59420
59420
59420
59421
59421
59421
59422
59422
59422
59423
59423
59423
59424
59424
59424
59425
59425
59425
59426
59426
59426
59427
59427
59428
59428
59428
59429
59429
59429
59430
59430
59430
59431
59431
59431
59432
59432
59432
59433
59433
59433
59434
59434
59434
59435
59435
59435
59436
59436
59436
59437
59437
59437
59438
59438
59438
59439
59439
59439
59440
59440
59440
59441
59441
59441
59442
59442
59442
59443
59443
59443
59444
59444
59444
59445
59445
59445
59446
59446
59446
59447
59447
59447
59448
59448
59448
59449
59449
59449
59450
59450
59450
59451
59451
59451
59452
59452
59452
59453
59453
59453
59454
59454
59454
59455
59455
59455
59456
59456
59456
59457
59457
59457
59458
59458
59458
59459
59459
59459
59460
59460
59460
59461
59461
59461
59462
59462
59462
59463
59463
59464
59464
59464
59465
59465
59465
59466
59466
59466
59467
59467
59467
59468
59468
59468
59469
59469
59469
59470
59470
59470
59471
59471
59471
59472
59472
59472
59473
59473
59473
59474
59474
59474
59475
59475
59475
59476
59476
59476
59477
59477
59477
59478
59478
59478
59479
59479
59479
59480
59480
59480
59481
59481
59481
59482
59482
59482
59483
59483
59483
59484
59484
59484
59485
59485
59485
59486
59486
59486
59487
59487
59487
59488
59488
59488
59489
59489
59489
59490
59490
59490
59491
59491
59491
59492
59492
59492
59493
59493
59493
59494
59494
59494
59495
59495
59495
59496
59496
59496
59497
59497
59497
59498
59498
59498
59499
59499
59500
59500
59500
59501
59501
59501
59502
59502
59502
59503
59503
59503
59504
59504
59504
59505
59505
59505
59506
59506
59506
59507
59507
59507
59508
59508
59508
59509
59509
59509
59510
59510
59510
59511
59511
59511
59512
59512
59512
59513
59513
59513
59514
59514
59514
59515
59515
59515
59516
59516
59516
59517
59517
59517
59518
59518
59518
59519
59519
59519
59520
59520
59520
59521
59521
59521
59522
59522
59522
59523
59523
59523
59524
59524
59524
59525
59525
59525
59526
59526
59526
59527
59527
59527
59528
59528
59528
59529
59529
59529
59530
59530
59530
59531
59531
59531
59532
59532
59532
59533
59533
59533
59534
59534
59534
59535
59535
59536
59536
59536
59537
59537
59537
59538
59538
59538
59539
59539
59539
59540
59540
59540
59541
59541
59541
59542
59542
59542
59543
59543
59543
59544
59544
59544
59545
59545
59545
59546
59546
59546
59547
59547
59547
59548
59548
59548
59549
59549
59549
59550
59550
59550
59551
59551
59551
59552
59552
59552
59553
59553
59553
59554
59554
59554
59555
59555
59555
59556
59556
59556
59557
59557
59557
59558
59558
59558
59559
59559
59559
59560
59560
59560
59561
59561
59561
59562
59562
59562
59563
59563
59563
59564
59564
59564
59565
59565
59565
59566
59566
59566
59567
59567
59567
59568
59568
59568
59569
59569
59569
59570
59570
59570
59571
59571
59572
59572
59572
59573
59573
59573
59574
59574
59574
59575
59575
59575
59576
59576
59576
59577
59577
59577
59578
59578
59578
59579
59579
59579
59580
59580
59580
59581
59581
59581
59582
59582
59582
59583
59583
59583
59584
59584
59584
59585
59585
59585
59586
59586
59586
59587
59587
59587
59588
59588
59588
59589
59589
59589
59590
59590
59590
59591
59591
59591
59592
59592
59592
59593
59593
59593
59594
59594
59594
59595
59595
59595
59596
59596
59596
59597
59597
59597
59598
59598
59598
59599
59599
59599
59600
59600
59600
59601
59601
59601
59602
59602
59602
59603
59603
59603
59604
59604
59604
59605
59605
59605
59606
59606
59606
59607
59607
59608
59608
59608
59609
59609
59609
59610
59610
59610
59611
59611
59611
59612
59612
59612
59613
59613
59613
59614
59614
59614
59615
59615
59615
59616
59616
59616
59617
59617
59617
59618
59618
59618
59619
59619
59619
59620
59620
59620
59621
59621
59621
59622
59622
59622
59623
59623
59623
59624
59624
59624
59625
59625
59625
59626
59626
59626
59627
59627
59627
59628
59628
59628
59629
59629
59629
59630
59630
59630
59631
59631
59631
59632
59632
59632
59633
59633
59633
59634
59634
59634
59635
59635
59635
59636
59636
59636
59637
59637
59637
59638
59638
59638
59639
59639
59639
59640
59640
59640
59641
59641
59641
59642
59642
59642
59643
59643
59644
59644
59645
59645
59646
59646
59647
59647
59648
59648
59649
59649
59650
59650
59651
59651
59652
59652
59653
59653
59654
59654
59655
59655
59656
59656
59657
59657
59658
59658
59659
59659
59660
59660
59661
59661
59662
59662
59663
59663
59664
59664
59665
59665
59666
59666
59667
59667
59668
59668
59669
59669
59670
59670
59671
59671
59672
59672
59673
59673
59674
59674
59675
59675
59676
59676
59677
59677
59678
59678
59679
59680
59680
59680
59681
59681
59681
59682
59682
59682
59683
59683
59683
59684
59684
59684
59685
59685
59685
59686
59686
59686
59687
59687
59687
59688
59688
59688
59689
59689
59689
59690
59690
59690
59691
59691
59691
59692
59692
59692
59693
59693
59693
59694
59694
59694
59695
59695
59695
59696
59696
59696
59697
59697
59697
59698
59698
59698
59699
59699
59699
59700
59700
59700
59701
59701
59701
59702
59702
59702
59703
59703
59703
59704
59704
59704
59705
59705
59705
59706
59706
59706
59707
59707
59707
59708
59708
59708
59709
59709
59709
59710
59710
59710
59711
59711
59711
59712
59712
59712
59713
59713
59713
59714
59714
59714
59715
59715
59716
59716
59716
59717
59717
59717
59718
59718
59718
59719
59719
59719
59720
59720
59720
59721
59721
59721
59722
59722
59722
59723
59723
59723
59724
59724
59724
59725
59725
59725
59726
59726
59726
59727
59727
59727
59728
59728
59728
59729
59729
59729
59730
59730
59730
59731
59731
59731
59732
59732
59732
59733
59733
59733
59734
59734
59734
59735
59735
59735
59736
59736
59736
59737
59737
59737
59738
59738
59738
59739
59739
59739
59740
59740
59740
59741
59741
59741
59742
59742
59742
59743
59743
59743
59744
59744
59744
59745
59745
59745
59746
59746
59746
59747
59747
59747
59748
59748
59748
59749
59749
59749
59750
59750
59750
59751
59751
59752
59752
59752
59753
59753
59753
59754
59754
59754
59755
59755
59755
59756
59756
59756
59757
59757
59757
59758
59758
59758
59759
59759
59759
59760
59760
59760
59761
59761
59761
59762
59762
59762
59763
59763
59763
59764
59764
59764
59765
59765
59765
59766
59766
59766
59767
59767
59767
59768
59768
59768
59769
59769
59769
59770
59770
59770
59771
59771
59771
59772
59772
59772
59773
59773
59773
59774
59774
59774
59775
59775
59775
59776
59776
59776
59777
59777
59777
59778
59778
59778
59779
59779
59779
59780
59780
59780
59781
59781
59781
59782
59782
59782
59783
59783
59783
59784
59784
59784
59785
59785
59785
59786
59786
59786
59787
59787
59788
59788
59788
59789
59789
59789
59790
59790
59790
59791
59791
59791
59792
59792
59792
59793
59793
59793
59794
59794
59794
59795
59795
59795
59796
59796
59796
59797
59797
59797
59798
59798
59798
59799
59799
59799
59800
59800
59800
59801
59801
59801
59802
59802
59802
59803
59803
59803
59804
59804
59804
59805
59805
59805
59806
59806
59806
59807
59807
59807
59808
59808
59808
59809
59809
59809
59810
59810
59810
59811
59811
59811
59812
59812
59812
59813
59813
59813
59814
59814
59814
59815
59815
59815
59816
59816
59816
59817
59817
59817
59818
59818
59818
59819
59819
59819
59820
59820
59820
59821
59821
59821
59822
59822
59822
59823
59823
59824
59824
59824
59825
59825
59825
59826
59826
59826
59827
59827
59827
59828
59828
59828
59829
59829
59829
59830
59830
59830
59831
59831
59831
59832
59832
59832
59833
59833
59833
59834
59834
59834
59835
59835
59835
59836
59836
59836
59837
59837
59837
59838
59838
59838
59839
59839
59839
59840
59840
59840
59841
59841
59841
59842
59842
59842
59843
59843
59843
59844
59844
59844
59845
59845
59845
59846
59846
59846
59847
59847
59847
59848
59848
59848
59849
59849
59849
59850
59850
59850
59851
59851
59851
59852
59852
59852
59853
59853
59853
59854
59854
59854
59855
59855
59855
59856
59856
59856
59857
59857
59857
59858
59858
59858
59859
59859
59860
59860
59860
59861
59861
59861
59862
59862
59862
59863
59863
59863
59864
59864
59864
59865
59865
59865
59866
59866
59866
59867
59867
59867
59868
59868
59868
59869
59869
59869
59870
59870
59870
59871
59871
59871
59872
59872
59872
59873
59873
59873
59874
59874
59874
59875
59875
59875
59876
59876
59876
59877
59877
59877
59878
59878
59878
59879
59879
59879
59880
59880
59880
59881
59881
59881
59882
59882
59882
59883
59883
59883
59884
59884
59884
59885
59885
59885
59886
59886
59886
59887
59887
59887
59888
59888
59888
59889
59889
59889
59890
59890
59890
59891
59891
59891
59892
59892
59892
59893
59893
59893
59894
59894
59894
59895
59895
59896
59896
59896
59897
59897
59897
59898
59898
59898
59899
59899
59899
59900
59900
59900
59901
59901
59901
59902
59902
59902
59903
59903
59903
59904
59904
59904
59905
59905
59905
59906
59906
59906
59907
59907
59907
59908
59908
59908
59909
59909
59909
59910
59910
59910
59911
59911
59911
59912
59912
59912
59913
59913
59913
59914
59914
59914
59915
59915
59915
59916
59916
59916
59917
59917
59917
59918
59918
59918
59919
59919
59919
59920
59920
59920
59921
59921
59921
59922
59922
59922
59923
59923
59923
59924
59924
59924
59925
59925
59925
59926
59926
59926
59927
59927
59927
59928
59928
59928
59929
59929
59929
59930
59930
59930
59931
59931
59932
59932
59932
59933
59933
59933
59934
59934
59934
59935
59935
59935
59936
59936
59936
59937
59937
59937
59938
59938
59938
59939
59939
59939
59940
59940
59940
59941
59941
59941
59942
59942
59942
59943
59943
59943
59944
59944
59944
59945
59945
59945
59946
59946
59946
59947
59947
59947
59948
59948
59948
59949
59949
59949
59950
59950
59950
59951
59951
59951
59952
59952
59952
59953
59953
59953
59954
59954
59954
59955
59955
59955
59956
59956
59956
59957
59957
59957
59958
59958
59958
59959
59959
59959
59960
59960
59960
59961
59961
59961
59962
59962
59962
59963
59963
59963
59964
59964
59964
59965
59965
59965
59966
59966
59966
59967
59967
59968
59968
59968
59969
59969
59969
59970
59970
59970
59971
59971
59971
59972
59972
59972
59973
59973
59973
59974
59974
59974
59975
59975
59975
59976
59976
59976
59977
59977
59977
59978
59978
59978
59979
59979
59979
59980
59980
59980
59981
59981
59981
59982
59982
59982
59983
59983
59983
59984
59984
59984
59985
59985
59985
59986
59986
59986
59987
59987
59987
59988
59988
59988
59989
59989
59989
59990
59990
59990
59991
59991
59991
59992
59992
59992
59993
59993
59993
59994
59994
59994
59995
59995
59995
59996
59996
59996
59997
59997
59997
59998
59998
59998
59999
59999
59999
60000
60000
60000
60001
60001
60001
60002
60002
60002
60003
60003
60004
60004
60005
60005
60006
60006
60007
60007
60008
60008
60009
60009
60010
60010
60011
60011
60012
60012
60013
60013
60014
60014
60015
60015
60016
60016
60017
60017
60018
60018
60019
60019
60020
60020
60021
60021
60022
60022
60023
60023
60024
60024
60025
60025
60026
60026
60027
60027
60028
60028
60029
60029
60030
60030
60031
60031
60032
60032
60033
60033
60034
60034
60035
60035
60036
60036
60037
60037
60038
60038
60039
60040
60040
60040
60041
60041
60041
60042
60042
60042
60043
60043
60043
60044
60044
60044
60045
60045
60045
60046
60046
60046
60047
60047
60047
60048
60048
60048
60049
60049
60049
60050
60050
60050
60051
60051
60051
60052
60052
60052
60053
60053
60053
60054
60054
60054
60055
60055
60055
60056
60056
60056
60057
60057
60057
60058
60058
60058
60059
60059
60059
60060
60060
60060
60061
60061
60061
60062
60062
60062
60063
60063
60063
60064
60064
60064
60065
60065
60065
60066
60066
60066
60067
60067
60067
60068
60068
60068
60069
60069
60069
60070
60070
60070
60071
60071
60071
60072
60072
60072
60073
60073
60073
60074
60074
60074
60075
60075
60076
60076
60076
60077
60077
60077
60078
60078
60078
60079
60079
60079
60080
60080
60080
60081
60081
60081
60082
60082
60082
60083
60083
60083
60084
60084
60084
60085
60085
60085
60086
60086
60086
60087
60087
60087
60088
60088
60088
60089
60089
60089
60090
60090
60090
60091
60091
60091
60092
60092
60092
60093
60093
60093
60094
60094
60094
60095
60095
60095
60096
60096
60096
60097
60097
60097
60098
60098
60098
60099
60099
60099
60100
60100
60100
60101
60101
60101
60102
60102
60102
60103
60103
60103
60104
60104
60104
60105
60105
60105
60106
60106
60106
60107
60107
60107
60108
60108
60108
60109
60109
60109
60110
60110
60110
60111
60111
60112
60112
60112
60113
60113
60113
60114
60114
60114
60115
60115
60115
60116
60116
60116
60117
60117
60117
60118
60118
60118
60119
60119
60119
60120
60120
60120
60121
60121
60121
60122
60122
60122
60123
60123
60123
60124
60124
60124
60125
60125
60125
60126
60126
60126
60127
60127
60127
60128
60128
60128
60129
60129
60129
60130
60130
60130
60131
60131
60131
60132
60132
60132
60133
60133
60133
60134
60134
60134
60135
60135
60135
60136
60136
60136
60137
60137
60137
60138
60138
60138
60139
60139
60139
60140
60140
60140
60141
60141
60141
60142
60142
60142
60143
60143
60143
60144
60144
60144
60145
60145
60145
60146
60146
60146
60147
60147
60148
60148
60148
60149
60149
60149
60150
60150
60150
60151
60151
60151
60152
60152
60152
60153
60153
60153
60154
60154
60154
60155
60155
60155
60156
60156
60156
60157
60157
60157
60158
60158
60158
60159
60159
60159
60160
60160
60160
60161
60161
60161
60162
60162
60162
60163
60163
60163
60164
60164
60164
60165
60165
60165
60166
60166
60166
60167
60167
60167
60168
60168
60168
60169
60169
60169
60170
60170
60170
60171
60171
60171
60172
60172
60172
60173
60173
60173
60174
60174
60174
60175
60175
60175
60176
60176
60176
60177
60177
60177
60178
60178
60178
60179
60179
60179
60180
60180
60180
60181
60181
60181
60182
60182
60182
60183
60183
60184
60184
60184
60185
60185
60185
60186
60186
60186
60187
60187
60187
60188
60188
60188
60189
60189
60189
60190
60190
60190
60191
60191
60191
60192
60192
60192
60193
60193
60193
60194
60194
60194
60195
60195
60195
60196
60196
60196
60197
60197
60197
60198
60198
60198
60199
60199
60199
60200
60200
60200
60201
60201
60201
60202
60202
60202
60203
60203
60203
60204
60204
60204
60205
60205
60205
60206
60206
60206
60207
60207
60207
60208
60208
60208
60209
60209
60209
60210
60210
60210
60211
60211
60211
60212
60212
60212
60213
60213
60213
60214
60214
60214
60215
60215
60215
60216
60216
60216
60217
60217
60217
60218
60218
60218
60219
60219
60220
60220
60220
60221
60221
60221
60222
60222
60222
60223
60223
60223
60224
60224
60224
60225
60225
60225
60226
60226
60226
60227
60227
60227
60228
60228
60228
60229
60229
60229
60230
60230
60230
60231
60231
60231
60232
60232
60232
60233
60233
60233
60234
60234
60234
60235
60235
60235
60236
60236
60236
60237
60237
60237
60238
60238
60238
60239
60239
60239
60240
60240
60240
60241
60241
60241
60242
60242
60242
60243
60243
60243
60244
60244
60244
60245
60245
60245
60246
60246
60246
60247
60247
60247
60248
60248
60248
60249
60249
60249
60250
60250
60250
60251
60251
60251
60252
60252
60252
60253
60253
60253
60254
60254
60254
60255
60255
60256
60256
60256
60257
60257
60257
60258
60258
60258
60259
60259
60259
60260
60260
60260
60261
60261
60261
60262
60262
60262
60263
60263
60263
60264
60264
60264
60265
60265
60265
60266
60266
60266
60267
60267
60267
60268
60268
60268
60269
60269
60269
60270
60270
60270
60271
60271
60271
60272
60272
60272
60273
60273
60273
60274
60274
60274
60275
60275
60275
60276
60276
60276
60277
60277
60277
60278
60278
60278
60279
60279
60279
60280
60280
60280
60281
60281
60281
60282
60282
60282
60283
60283
60283
60284
60284
60284
60285
60285
60285
60286
60286
60286
60287
60287
60287
60288
60288
60288
60289
60289
60289
60290
60290
60290
60291
60291
60292
60292
60292
60293
60293
60293
60294
60294
60294
60295
60295
60295
60296
60296
60296
60297
60297
60297
60298
60298
60298
60299
60299
60299
60300
60300
60300
60301
60301
60301
60302
60302
60302
60303
60303
60303
60304
60304
60304
60305
60305
60305
60306
60306
60306
60307
60307
60307
60308
60308
60308
60309
60309
60309
60310
60310
60310
60311
60311
60311
60312
60312
60312
60313
60313
60313
60314
60314
60314
60315
60315
60315
60316
60316
60316
60317
60317
60317
60318
60318
60318
60319
60319
60319
60320
60320
60320
60321
60321
60321
60322
60322
60322
60323
60323
60323
60324
60324
60324
60325
60325
60325
60326
60326
60326
60327
60327
60328
60328
60328
60329
60329
60329
60330
60330
60330
60331
60331
60331
60332
60332
60332
60333
60333
60333
60334
60334
60334
60335
60335
60335
60336
60336
60336
60337
60337
60337
60338
60338
60338
60339
60339
60339
60340
60340
60340
60341
60341
60341
60342
60342
60342
60343
60343
60343
60344
60344
60344
60345
60345
60345
60346
60346
60346
60347
60347
60347
60348
60348
60348
60349
60349
60349
60350
60350
60350
60351
60351
60351
60352
60352
60352
60353
60353
60353
60354
60354
60354
60355
60355
60355
60356
60356
60356
60357
60357
60357
60358
60358
60358
60359
60359
60359
60360
60360
60360
60361
60361
60361
60362
60362
60362
60363
60363
60364
60364
60365
60365
60366
60366
60367
60367
60368
60368
60369
60369
60370
60370
60371
60371
60372
60372
60373
60373
60374
60374
60375
60375
60376
60376
60377
60377
60378
60378
60379
60379
60380
60380
60381
60381
60382
60382
60383
60383
60384
60384
60385
60385
60386
60386
60387
60387
60388
60388
60389
60389
60390
60390
60391
60391
60392
60392
60393
60393
60394
60394
60395
60395
60396
60396
60397
60397
60398
60398
60399
60400
60400
60400
60401
60401
60401
60402
60402
60402
60403
60403
60403
60404
60404
60404
60405
60405
60405
60406
60406
60406
60407
60407
60407
60408
60408
60408
60409
60409
60409
60410
60410
60410
60411
60411
60411
60412
60412
60412
60413
60413
60413
60414
60414
60414
60415
60415
60415
60416
60416
60416
60417
60417
60417
60418
60418
60418
60419
60419
60419
60420
60420
60420
60421
60421
60421
60422
60422
60422
60423
60423
60423
60424
60424
60424
60425
60425
60425
60426
60426
60426
60427
60427
60427
60428
60428
60428
60429
60429
60429
60430
60430
60430
60431
60431
60431
60432
60432
60432
60433
60433
60433
60434
60434
60434
60435
60435
60436
60436
60436
60437
60437
60437
60438
60438
60438
60439
60439
60439
60440
60440
60440
60441
60441
60441
60442
60442
60442
60443
60443
60443
60444
60444
60444
60445
60445
60445
60446
60446
60446
60447
60447
60447
60448
60448
60448
60449
60449
60449
60450
60450
60450
60451
60451
60451
60452
60452
60452
60453
60453
60453
60454
60454
60454
60455
60455
60455
60456
60456
60456
60457
60457
60457
60458
60458
60458
60459
60459
60459
60460
60460
60460
60461
60461
60461
60462
60462
60462
60463
60463
60463
60464
60464
60464
60465
60465
60465
60466
60466
60466
60467
60467
60467
60468
60468
60468
60469
60469
60469
60470
60470
60470
60471
60471
60472
60472
60472
60473
60473
60473
60474
60474
60474
60475
60475
60475
60476
60476
60476
60477
60477
60477
60478
60478
60478
60479
60479
60479
60480
60480
60480
60481
60481
60481
60482
60482
60482
60483
60483
60483
60484
60484
60484
60485
60485
60485
60486
60486
60486
60487
60487
60487
60488
60488
60488
60489
60489
60489
60490
60490
60490
60491
60491
60491
60492
60492
60492
60493
60493
60493
60494
60494
60494
60495
60495
60495
60496
60496
60496
60497
60497
60497
60498
60498
60498
60499
60499
60499
60500
60500
60500
60501
60501
60501
60502
60502
60502
60503
60503
60503
60504
60504
60504
60505
60505
60505
60506
60506
60506
60507
60507
60508
60508
60508
60509
60509
60509
60510
60510
60510
60511
60511
60511
60512
60512
60512
60513
60513
60513
60514
60514
60514
60515
60515
60515
60516
60516
60516
60517
60517
60517
60518
60518
60518
60519
60519
60519
60520
60520
60520
60521
60521
60521
60522
60522
60522
60523
60523
60523
60524
60524
60524
60525
60525
60525
60526
60526
60526
60527
60527
60527
60528
60528
60528
60529
60529
60529
60530
60530
60530
60531
60531
60531
60532
60532
60532
60533
60533
60533
60534
60534
60534
60535
60535
60535
60536
60536
60536
60537
60537
60537
60538
60538
60538
60539
60539
60539
60540
60540
60540
60541
60541
60541
60542
60542
60542
60543
60543
60544
60544
60544
60545
60545
60545
60546
60546
60546
60547
60547
60547
60548
60548
60548
60549
60549
60549
60550
60550
60550
60551
60551
60551
60552
60552
60552
60553
60553
60553
60554
60554
60554
60555
60555
60555
60556
60556
60556
60557
60557
60557
60558
60558
60558
60559
60559
60559
60560
60560
60560
60561
60561
60561
60562
60562
60562
60563
60563
60563
60564
60564
60564
60565
60565
60565
60566
60566
60566
60567
60567
60567
60568
60568
60568
60569
60569
60569
60570
60570
60570
60571
60571
60571
60572
60572
60572
60573
60573
60573
60574
60574
60574
60575
60575
60575
60576
60576
60576
60577
60577
60577
60578
60578
60578
60579
60579
60580
60580
60580
60581
60581
60581
60582
60582
60582
60583
60583
60583
60584
60584
60584
60585
60585
60585
60586
60586
60586
60587
60587
60587
60588
60588
60588
60589
60589
60589
60590
60590
60590
60591
60591
60591
60592
60592
60592
60593
60593
60593
60594
60594
60594
60595
60595
60595
60596
60596
60596
60597
60597
60597
60598
60598
60598
60599
60599
60599
60600
60600
60600
60601
60601
60601
60602
60602
60602
60603
60603
60603
60604
60604
60604
60605
60605
60605
60606
60606
60606
60607
60607
60607
60608
60608
60608
60609
60609
60609
60610
60610
60610
60611
60611
60611
60612
60612
60612
60613
60613
60613
60614
60614
60614
60615
60615
60616
60616
60616
60617
60617
60617
60618
60618
60618
60619
60619
60619
60620
60620
60620
60621
60621
60621
60622
60622
60622
60623
60623
60623
60624
60624
60624
60625
60625
60625
60626
60626
60626
60627
60627
60627
60628
60628
60628
60629
60629
60629
60630
60630
60630
60631
60631
60631
60632
60632
60632
60633
60633
60633
60634
60634
60634
60635
60635
60635
60636
60636
60636
60637
60637
60637
60638
60638
60638
60639
60639
60639
60640
60640
60640
60641
60641
60641
60642
60642
60642
60643
60643
60643
60644
60644
60644
60645
60645
60645
60646
60646
60646
60647
60647
60647
60648
60648
60648
60649
60649
60649
60650
60650
60650
60651
60651
60652
60652
60652
60653
60653
60653
60654
60654
60654
60655
60655
60655
60656
60656
60656
60657
60657
60657
60658
60658
60658
60659
60659
60659
60660
60660
60660
60661
60661
60661
60662
60662
60662
60663
60663
60663
60664
60664
60664
60665
60665
60665
60666
60666
60666
60667
60667
60667
60668
60668
60668
60669
60669
60669
60670
60670
60670
60671
60671
60671
60672
60672
60672
60673
60673
60673
60674
60674
60674
60675
60675
60675
60676
60676
60676
60677
60677
60677
60678
60678
60678
60679
60679
60679
60680
60680
60680
60681
60681
60681
60682
60682
60682
60683
60683
60683
60684
60684
60684
60685
60685
60685
60686
60686
60686
60687
60687
60688
60688
60688
60689
60689
60689
60690
60690
60690
60691
60691
60691
60692
60692
60692
60693
60693
60693
60694
60694
60694
60695
60695
60695
60696
60696
60696
60697
60697
60697
60698
60698
60698
60699
60699
60699
60700
60700
60700
60701
60701
60701
60702
60702
60702
60703
60703
60703
60704
60704
60704
60705
60705
60705
60706
60706
60706
60707
60707
60707
60708
60708
60708
60709
60709
60709
60710
60710
60710
60711
60711
60711
60712
60712
60712
60713
60713
60713
60714
60714
60714
60715
60715
60715
60716
60716
60716
60717
60717
60717
60718
60718
60718
60719
60719
60719
60720
60720
60720
60721
60721
60721
60722
60722
60722
60723
60723
60724
60724
60725
60725
60726
60726
60727
60727
60728
60728
60729
60729
60730
60730
60731
60731
60732
60732
60733
60733
60734
60734
60735
60735
60736
60736
60737
60737
60738
60738
60739
60739
60740
60740
60741
60741
60742
60742
60743
60743
60744
60744
60745
60745
60746
60746
60747
60747
60748
60748
60749
60749
60750
60750
60751
60751
60752
60752
60753
60753
60754
60754
60755
60755
60756
60756
60757
60757
60758
60758
60759
60760
60760
60760
60761
60761
60761
60762
60762
60762
60763
60763
60763
60764
60764
60764
60765
60765
60765
60766
60766
60766
60767
60767
60767
60768
60768
60768
60769
60769
60769
60770
60770
60770
60771
60771
60771
60772
60772
60772
60773
60773
60773
60774
60774
60774
60775
60775
60775
60776
60776
60776
60777
60777
60777
60778
60778
60778
60779
60779
60779
60780
60780
60780
60781
60781
60781
60782
60782
60782
60783
60783
60783
60784
60784
60784
60785
60785
60785
60786
60786
60786
60787
60787
60787
60788
60788
60788
60789
60789
60789
60790
60790
60790
60791
60791
60791
60792
60792
60792
60793
60793
60793
60794
60794
60794
60795
60795
60796
60796
60796
60797
60797
60797
60798
60798
60798
60799
60799
60799
60800
60800
60800
60801
60801
60801
60802
60802
60802
60803
60803
60803
60804
60804
60804
60805
60805
60805
60806
60806
60806
60807
60807
60807
60808
60808
60808
60809
60809
60809
60810
60810
60810
60811
60811
60811
60812
60812
60812
60813
60813
60813
60814
60814
60814
60815
60815
60815
60816
60816
60816
60817
60817
60817
60818
60818
60818
60819
60819
60819
60820
60820
60820
60821
60821
60821
60822
60822
60822
60823
60823
60823
60824
60824
60824
60825
60825
60825
60826
60826
60826
60827
60827
60827
60828
60828
60828
60829
60829
60829
60830
60830
60830
60831
60831
60832
60832
60832
60833
60833
60833
60834
60834
60834
60835
60835
60835
60836
60836
60836
60837
60837
60837
60838
60838
60838
60839
60839
60839
60840
60840
60840
60841
60841
60841
60842
60842
60842
60843
60843
60843
60844
60844
60844
60845
60845
60845
60846
60846
60846
60847
60847
60847
60848
60848
60848
60849
60849
60849
60850
60850
60850
60851
60851
60851
60852
60852
60852
60853
60853
60853
60854
60854
60854
60855
60855
60855
60856
60856
60856
60857
60857
60857
60858
60858
60858
60859
60859
60859
60860
60860
60860
60861
60861
60861
60862
60862
60862
60863
60863
60863
60864
60864
60864
60865
60865
60865
60866
60866
60866
60867
60867
60868
60868
60868
60869
60869
60869
60870
60870
60870
60871
60871
60871
60872
60872
60872
60873
60873
60873
60874
60874
60874
60875
60875
60875
60876
60876
60876
60877
60877
60877
60878
60878
60878
60879
60879
60879
60880
60880
60880
60881
60881
60881
60882
60882
60882
60883
60883
60883
60884
60884
60884
60885
60885
60885
60886
60886
60886
60887
60887
60887
60888
60888
60888
60889
60889
60889
60890
60890
60890
60891
60891
60891
60892
60892
60892
60893
60893
60893
60894
60894
60894
60895
60895
60895
60896
60896
60896
60897
60897
60897
60898
60898
60898
60899
60899
60899
60900
60900
60900
60901
60901
60901
60902
60902
60902
60903
60903
60904
60904
60904
60905
60905
60905
60906
60906
60906
60907
60907
60907
60908
60908
60908
60909
60909
60909
60910
60910
60910
60911
60911
60911
60912
60912
60912
60913
60913
60913
60914
60914
60914
60915
60915
60915
60916
60916
60916
60917
60917
60917
60918
60918
60918
60919
60919
60919
60920
60920
60920
60921
60921
60921
60922
60922
60922
60923
60923
60923
60924
60924
60924
60925
60925
60925
60926
60926
60926
60927
60927
60927
60928
60928
60928
60929
60929
60929
60930
60930
60930
60931
60931
60931
60932
60932
60932
60933
60933
60933
60934
60934
60934
60935
60935
60935
60936
60936
60936
60937
60937
60937
60938
60938
60938
60939
60939
60940
60940
60940
60941
60941
60941
60942
60942
60942
60943
60943
60943
60944
60944
60944
60945
60945
60945
60946
60946
60946
60947
60947
60947
60948
60948
60948
60949
60949
60949
60950
60950
60950
60951
60951
60951
60952
60952
60952
60953
60953
60953
60954
60954
60954
60955
60955
60955
60956
60956
60956
60957
60957
60957
60958
60958
60958
60959
60959
60959
60960
60960
60960
60961
60961
60961
60962
60962
60962
60963
60963
60963
60964
60964
60964
60965
60965
60965
60966
60966
60966
60967
60967
60967
60968
60968
60968
60969
60969
60969
60970
60970
60970
60971
60971
60971
60972
60972
60972
60973
60973
60973
60974
60974
60974
60975
60975
60976
60976
60976
60977
60977
60977
60978
60978
60978
60979
60979
60979
60980
60980
60980
60981
60981
60981
60982
60982
60982
60983
60983
60983
60984
60984
60984
60985
60985
60985
60986
60986
60986
60987
60987
60987
60988
60988
60988
60989
60989
60989
60990
60990
60990
60991
60991
60991
60992
60992
60992
60993
60993
60993
60994
60994
60994
60995
60995
60995
60996
60996
60996
60997
60997
60997
60998
60998
60998
60999
60999
60999
61000
61000
61000
61001
61001
61001
61002
61002
61002
61003
61003
61003
61004
61004
61004
61005
61005
61005
61006
61006
61006
61007
61007
61007
61008
61008
61008
61009
61009
61009
61010
61010
61010
61011
61011
61012
61012
61012
61013
61013
61013
61014
61014
61014
61015
61015
61015
61016
61016
61016
61017
61017
61017
61018
61018
61018
61019
61019
61019
61020
61020
61020
61021
61021
61021
61022
61022
61022
61023
61023
61023
61024
61024
61024
61025
61025
61025
61026
61026
61026
61027
61027
61027
61028
61028
61028
61029
61029
61029
61030
61030
61030
61031
61031
61031
61032
61032
61032
61033
61033
61033
61034
61034
61034
61035
61035
61035
61036
61036
61036
61037
61037
61037
61038
61038
61038
61039
61039
61039
61040
61040
61040
61041
61041
61041
61042
61042
61042
61043
61043
61043
61044
61044
61044
61045
61045
61045
61046
61046
61046
61047
61047
61048
61048
61048
61049
61049
61049
61050
61050
61050
61051
61051
61051
61052
61052
61052
61053
61053
61053
61054
61054
61054
61055
61055
61055
61056
61056
61056
61057
61057
61057
61058
61058
61058
61059
61059
61059
61060
61060
61060
61061
61061
61061
61062
61062
61062
61063
61063
61063
61064
61064
61064
61065
61065
61065
61066
61066
61066
61067
61067
61067
61068
61068
61068
61069
61069
61069
61070
61070
61070
61071
61071
61071
61072
61072
61072
61073
61073
61073
61074
61074
61074
61075
61075
61075
61076
61076
61076
61077
61077
61077
61078
61078
61078
61079
61079
61079
61080
61080
61080
61081
61081
61081
61082
61082
61082
61083
61083
61084
61084
61085
61085
61086
61086
61087
61087
61088
61088
61089
61089
61090
61090
61091
61091
61092
61092
61093
61093
61094
61094
61095
61095
61096
61096
61097
61097
61098
61098
61099
61099
61100
61100
61101
61101
61102
61102
61103
61103
61104
61104
61105
61105
61106
61106
61107
61107
61108
61108
61109
61109
61110
61110
61111
61111
61112
61112
61113
61113
61114
61114
61115
61115
61116
61116
61117
61117
61118
61118
61119
61120
61120
61120
61121
61121
61121
61122
61122
61122
61123
61123
61123
61124
61124
61124
61125
61125
61125
61126
61126
61126
61127
61127
61127
61128
61128
61128
61129
61129
61129
61130
61130
61130
61131
61131
61131
61132
61132
61132
61133
61133
61133
61134
61134
61134
61135
61135
61135
61136
61136
61136
61137
61137
61137
61138
61138
61138
61139
61139
61139
61140
61140
61140
61141
61141
61141
61142
61142
61142
61143
61143
61143
61144
61144
61144
61145
61145
61145
61146
61146
61146
61147
61147
61147
61148
61148
61148
61149
61149
61149
61150
61150
61150
61151
61151
61151
61152
61152
61152
61153
61153
61153
61154
61154
61154
61155
61155
61156
61156
61156
61157
61157
61157
61158
61158
61158
61159
61159
61159
61160
61160
61160
61161
61161
61161
61162
61162
61162
61163
61163
61163
61164
61164
61164
61165
61165
61165
61166
61166
61166
61167
61167
61167
61168
61168
61168
61169
61169
61169
61170
61170
61170
61171
61171
61171
61172
61172
61172
61173
61173
61173
61174
61174
61174
61175
61175
61175
61176
61176
61176
61177
61177
61177
61178
61178
61178
61179
61179
61179
61180
61180
61180
61181
61181
61181
61182
61182
61182
61183
61183
61183
61184
61184
61184
61185
61185
61185
61186
61186
61186
61187
61187
61187
61188
61188
61188
61189
61189
61189
61190
61190
61190
61191
61191
61192
61192
61192
61193
61193
61193
61194
61194
61194
61195
61195
61195
61196
61196
61196
61197
61197
61197
61198
61198
61198
61199
61199
61199
61200
61200
61200
61201
61201
61201
61202
61202
61202
61203
61203
61203
61204
61204
61204
61205
61205
61205
61206
61206
61206
61207
61207
61207
61208
61208
61208
61209
61209
61209
61210
61210
61210
61211
61211
61211
61212
61212
61212
61213
61213
61213
61214
61214
61214
61215
61215
61215
61216
61216
61216
61217
61217
61217
61218
61218
61218
61219
61219
61219
61220
61220
61220
61221
61221
61221
61222
61222
61222
61223
61223
61223
61224
61224
61224
61225
61225
61225
61226
61226
61226
61227
61227
61228
61228
61228
61229
61229
61229
61230
61230
61230
61231
61231
61231
61232
61232
61232
61233
61233
61233
61234
61234
61234
61235
61235
61235
61236
61236
61236
61237
61237
61237
61238
61238
61238
61239
61239
61239
61240
61240
61240
61241
61241
61241
61242
61242
61242
61243
61243
61243
61244
61244
61244
61245
61245
61245
61246
61246
61246
61247
61247
61247
61248
61248
61248
61249
61249
61249
61250
61250
61250
61251
61251
61251
61252
61252
61252
61253
61253
61253
61254
61254
61254
61255
61255
61255
61256
61256
61256
61257
61257
61257
61258
61258
61258
61259
61259
61259
61260
61260
61260
61261
61261
61261
61262
61262
61262
61263
61263
61264
61264
61264
61265
61265
61265
61266
61266
61266
61267
61267
61267
61268
61268
61268
61269
61269
61269
61270
61270
61270
61271
61271
61271
61272
61272
61272
61273
61273
61273
61274
61274
61274
61275
61275
61275
61276
61276
61276
61277
61277
61277
61278
61278
61278
61279
61279
61279
61280
61280
61280
61281
61281
61281
61282
61282
61282
61283
61283
61283
61284
61284
61284
61285
61285
61285
61286
61286
61286
61287
61287
61287
61288
61288
61288
61289
61289
61289
61290
61290
61290
61291
61291
61291
61292
61292
61292
61293
61293
61293
61294
61294
61294
61295
61295
61295
61296
61296
61296
61297
61297
61297
61298
61298
61298
61299
61299
61300
61300
61300
61301
61301
61301
61302
61302
61302
61303
61303
61303
61304
61304
61304
61305
61305
61305
61306
61306
61306
61307
61307
61307
61308
61308
61308
61309
61309
61309
61310
61310
61310
61311
61311
61311
61312
61312
61312
61313
61313
61313
61314
61314
61314
61315
61315
61315
61316
61316
61316
61317
61317
61317
61318
61318
61318
61319
61319
61319
61320
61320
61320
61321
61321
61321
61322
61322
61322
61323
61323
61323
61324
61324
61324
61325
61325
61325
61326
61326
61326
61327
61327
61327
61328
61328
61328
61329
61329
61329
61330
61330
61330
61331
61331
61331
61332
61332
61332
61333
61333
61333
61334
61334
61334
61335
61335
61336
61336
61336
61337
61337
61337
61338
61338
61338
61339
61339
61339
61340
61340
61340
61341
61341
61341
61342
61342
61342
61343
61343
61343
61344
61344
61344
61345
61345
61345
61346
61346
61346
61347
61347
61347
61348
61348
61348
61349
61349
61349
61350
61350
61350
61351
61351
61351
61352
61352
61352
61353
61353
61353
61354
61354
61354
61355
61355
61355
61356
61356
61356
61357
61357
61357
61358
61358
61358
61359
61359
61359
61360
61360
61360
61361
61361
61361
61362
61362
61362
61363
61363
61363
61364
61364
61364
61365
61365
61365
61366
61366
61366
61367
61367
61367
61368
61368
61368
61369
61369
61369
61370
61370
61370
61371
61371
61372
61372
61372
61373
61373
61373
61374
61374
61374
61375
61375
61375
61376
61376
61376
61377
61377
61377
61378
61378
61378
61379
61379
61379
61380
61380
61380
61381
61381
61381
61382
61382
61382
61383
61383
61383
61384
61384
61384
61385
61385
61385
61386
61386
61386
61387
61387
61387
61388
61388
61388
61389
61389
61389
61390
61390
61390
61391
61391
61391
61392
61392
61392
61393
61393
61393
61394
61394
61394
61395
61395
61395
61396
61396
61396
61397
61397
61397
61398
61398
61398
61399
61399
61399
61400
61400
61400
61401
61401
61401
61402
61402
61402
61403
61403
61403
61404
61404
61404
61405
61405
61405
61406
61406
61406
61407
61407
61408
61408
61408
61409
61409
61409
61410
61410
61410
61411
61411
61411
61412
61412
61412
61413
61413
61413
61414
61414
61414
61415
61415
61415
61416
61416
61416
61417
61417
61417
61418
61418
61418
61419
61419
61419
61420
61420
61420
61421
61421
61421
61422
61422
61422
61423
61423
61423
61424
61424
61424
61425
61425
61425
61426
61426
61426
61427
61427
61427
61428
61428
61428
61429
61429
61429
61430
61430
61430
61431
61431
61431
61432
61432
61432
61433
61433
61433
61434
61434
61434
61435
61435
61435
61436
61436
61436
61437
61437
61437
61438
61438
61438
61439
61439
61439
61440
61440
61440
61441
61441
61441
61442
61442
61442
61443
61443
61444
61444
61445
61445
61446
61446
61447
61447
61448
61448
61449
61449
61450
61450
61451
61451
61452
61452
61453
61453
61454
61454
61455
61455
61456
61456
61457
61457
61458
61458
61459
61459
61460
61460
61461
61461
61462
61462
61463
61463
61464
61464
61465
61465
61466
61466
61467
61467
61468
61468
61469
61469
61470
61470
61471
61471
61472
61472
61473
61473
61474
61474
61475
61475
61476
61476
61477
61477
61478
61478
61479
61480
61480
61480
61481
61481
61481
61482
61482
61482
61483
61483
61483
61484
61484
61484
61485
61485
61485
61486
61486
61486
61487
61487
61487
61488
61488
61488
61489
61489
61489
61490
61490
61490
61491
61491
61491
61492
61492
61492
61493
61493
61493
61494
61494
61494
61495
61495
61495
61496
61496
61496
61497
61497
61497
61498
61498
61498
61499
61499
61499
61500
61500
61500
61501
61501
61501
61502
61502
61502
61503
61503
61503
61504
61504
61504
61505
61505
61505
61506
61506
61506
61507
61507
61507
61508
61508
61508
61509
61509
61509
61510
61510
61510
61511
61511
61511
61512
61512
61512
61513
61513
61513
61514
61514
61514
61515
61515
61516
61516
61516
61517
61517
61517
61518
61518
61518
61519
61519
61519
61520
61520
61520
61521
61521
61521
61522
61522
61522
61523
61523
61523
61524
61524
61524
61525
61525
61525
61526
61526
61526
61527
61527
61527
61528
61528
61528
61529
61529
61529
61530
61530
61530
61531
61531
61531
61532
61532
61532
61533
61533
61533
61534
61534
61534
61535
61535
61535
61536
61536
61536
61537
61537
61537
61538
61538
61538
61539
61539
61539
61540
61540
61540
61541
61541
61541
61542
61542
61542
61543
61543
61543
61544
61544
61544
61545
61545
61545
61546
61546
61546
61547
61547
61547
61548
61548
61548
61549
61549
61549
61550
61550
61550
61551
61551
61552
61552
61552
61553
61553
61553
61554
61554
61554
61555
61555
61555
61556
61556
61556
61557
61557
61557
61558
61558
61558
61559
61559
61559
61560
61560
61560
61561
61561
61561
61562
61562
61562
61563
61563
61563
61564
61564
61564
61565
61565
61565
61566
61566
61566
61567
61567
61567
61568
61568
61568
61569
61569
61569
61570
61570
61570
61571
61571
61571
61572
61572
61572
61573
61573
61573
61574
61574
61574
61575
61575
61575
61576
61576
61576
61577
61577
61577
61578
61578
61578
61579
61579
61579
61580
61580
61580
61581
61581
61581
61582
61582
61582
61583
61583
61583
61584
61584
61584
61585
61585
61585
61586
61586
61586
61587
61587
61588
61588
61588
61589
61589
61589
61590
61590
61590
61591
61591
61591
61592
61592
61592
61593
61593
61593
61594
61594
61594
61595
61595
61595
61596
61596
61596
61597
61597
61597
61598
61598
61598
61599
61599
61599
61600
61600
61600
61601
61601
61601
61602
61602
61602
61603
61603
61603
61604
61604
61604
61605
61605
61605
61606
61606
61606
61607
61607
61607
61608
61608
61608
61609
61609
61609
61610
61610
61610
61611
61611
61611
61612
61612
61612
61613
61613
61613
61614
61614
61614
61615
61615
61615
61616
61616
61616
61617
61617
61617
61618
61618
61618
61619
61619
61619
61620
61620
61620
61621
61621
61621
61622
61622
61622
61623
61623
61624
61624
61624
61625
61625
61625
61626
61626
61626
61627
61627
61627
61628
61628
61628
61629
61629
61629
61630
61630
61630
61631
61631
61631
61632
61632
61632
61633
61633
61633
61634
61634
61634
61635
61635
61635
61636
61636
61636
61637
61637
61637
61638
61638
61638
61639
61639
61639
61640
61640
61640
61641
61641
61641
61642
61642
61642
61643
61643
61643
61644
61644
61644
61645
61645
61645
61646
61646
61646
61647
61647
61647
61648
61648
61648
61649
61649
61649
61650
61650
61650
61651
61651
61651
61652
61652
61652
61653
61653
61653
61654
61654
61654
61655
61655
61655
61656
61656
61656
61657
61657
61657
61658
61658
61658
61659
61659
61660
61660
61660
61661
61661
61661
61662
61662
61662
61663
61663
61663
61664
61664
61664
61665
61665
61665
61666
61666
61666
61667
61667
61667
61668
61668
61668
61669
61669
61669
61670
61670
61670
61671
61671
61671
61672
61672
61672
61673
61673
61673
61674
61674
61674
61675
61675
61675
61676
61676
61676
61677
61677
61677
61678
61678
61678
61679
61679
61679
61680
61680
61680
61681
61681
61681
61682
61682
61682
61683
61683
61683
61684
61684
61684
61685
61685
61685
61686
61686
61686
61687
61687
61687
61688
61688
61688
61689
61689
61689
61690
61690
61690
61691
61691
61691
61692
61692
61692
61693
61693
61693
61694
61694
61694
61695
61695
61696
61696
61696
61697
61697
61697
61698
61698
61698
61699
61699
61699
61700
61700
61700
61701
61701
61701
61702
61702
61702
61703
61703
61703
61704
61704
61704
61705
61705
61705
61706
61706
61706
61707
61707
61707
61708
61708
61708
61709
61709
61709
61710
61710
61710
61711
61711
61711
61712
61712
61712
61713
61713
61713
61714
61714
61714
61715
61715
61715
61716
61716
61716
61717
61717
61717
61718
61718
61718
61719
61719
61719
61720
61720
61720
61721
61721
61721
61722
61722
61722
61723
61723
61723
61724
61724
61724
61725
61725
61725
61726
61726
61726
61727
61727
61727
61728
61728
61728
61729
61729
61729
61730
61730
61730
61731
61731
61732
61732
61732
61733
61733
61733
61734
61734
61734
61735
61735
61735
61736
61736
61736
61737
61737
61737
61738
61738
61738
61739
61739
61739
61740
61740
61740
61741
61741
61741
61742
61742
61742
61743
61743
61743
61744
61744
61744
61745
61745
61745
61746
61746
61746
61747
61747
61747
61748
61748
61748
61749
61749
61749
61750
61750
61750
61751
61751
61751
61752
61752
61752
61753
61753
61753
61754
61754
61754
61755
61755
61755
61756
61756
61756
61757
61757
61757
61758
61758
61758
61759
61759
61759
61760
61760
61760
61761
61761
61761
61762
61762
61762
61763
61763
61763
61764
61764
61764
61765
61765
61765
61766
61766
61766
61767
61767
61768
61768
61768
61769
61769
61769
61770
61770
61770
61771
61771
61771
61772
61772
61772
61773
61773
61773
61774
61774
61774
61775
61775
61775
61776
61776
61776
61777
61777
61777
61778
61778
61778
61779
61779
61779
61780
61780
61780
61781
61781
61781
61782
61782
61782
61783
61783
61783
61784
61784
61784
61785
61785
61785
61786
61786
61786
61787
61787
61787
61788
61788
61788
61789
61789
61789
61790
61790
61790
61791
61791
61791
61792
61792
61792
61793
61793
61793
61794
61794
61794
61795
61795
61795
61796
61796
61796
61797
61797
61797
61798
61798
61798
61799
61799
61799
61800
61800
61800
61801
61801
61801
61802
61802
61802
61803
61803
61804
61804
61805
61805
61806
61806
61807
61807
61808
61808
61809
61809
61810
61810
61811
61811
61812
61812
61813
61813
61814
61814
61815
61815
61816
61816
61817
61817
61818
61818
61819
61819
61820
61820
61821
61821
61822
61822
61823
61823
61824
61824
61825
61825
61826
61826
61827
61827
61828
61828
61829
61829
61830
61830
61831
61831
61832
61832
61833
61833
61834
61834
61835
61835
61836
61836
61837
61837
61838
61838
61839
61840
61840
61840
61841
61841
61841
61842
61842
61842
61843
61843
61843
61844
61844
61844
61845
61845
61845
61846
61846
61846
61847
61847
61847
61848
61848
61848
61849
61849
61849
61850
61850
61850
61851
61851
61851
61852
61852
61852
61853
61853
61853
61854
61854
61854
61855
61855
61855
61856
61856
61856
61857
61857
61857
61858
61858
61858
61859
61859
61859
61860
61860
61860
61861
61861
61861
61862
61862
61862
61863
61863
61863
61864
61864
61864
61865
61865
61865
61866
61866
61866
61867
61867
61867
61868
61868
61868
61869
61869
61869
61870
61870
61870
61871
61871
61871
61872
61872
61872
61873
61873
61873
61874
61874
61874
61875
61875
61876
61876
61876
61877
61877
61877
61878
61878
61878
61879
61879
61879
61880
61880
61880
61881
61881
61881
61882
61882
61882
61883
61883
61883
61884
61884
61884
61885
61885
61885
61886
61886
61886
61887
61887
61887
61888
61888
61888
61889
61889
61889
61890
61890
61890
61891
61891
61891
61892
61892
61892
61893
61893
61893
61894
61894
61894
61895
61895
61895
61896
61896
61896
61897
61897
61897
61898
61898
61898
61899
61899
61899
61900
61900
61900
61901
61901
61901
61902
61902
61902
61903
61903
61903
61904
61904
61904
61905
61905
61905
61906
61906
61906
61907
61907
61907
61908
61908
61908
61909
61909
61909
61910
61910
61910
61911
61911
61912
61912
61912
61913
61913
61913
61914
61914
61914
61915
61915
61915
61916
61916
61916
61917
61917
61917
61918
61918
61918
61919
61919
61919
61920
61920
61920
61921
61921
61921
61922
61922
61922
61923
61923
61923
61924
61924
61924
61925
61925
61925
61926
61926
61926
61927
61927
61927
61928
61928
61928
61929
61929
61929
61930
61930
61930
61931
61931
61931
61932
61932
61932
61933
61933
61933
61934
61934
61934
61935
61935
61935
61936
61936
61936
61937
61937
61937
61938
61938
61938
61939
61939
61939
61940
61940
61940
61941
61941
61941
61942
61942
61942
61943
61943
61943
61944
61944
61944
61945
61945
61945
61946
61946
61946
61947
61947
61948
61948
61948
61949
61949
61949
61950
61950
61950
61951
61951
61951
61952
61952
61952
61953
61953
61953
61954
61954
61954
61955
61955
61955
61956
61956
61956
61957
61957
61957
61958
61958
61958
61959
61959
61959
61960
61960
61960
61961
61961
61961
61962
61962
61962
61963
61963
61963
61964
61964
61964
61965
61965
61965
61966
61966
61966
61967
61967
61967
61968
61968
61968
61969
61969
61969
61970
61970
61970
61971
61971
61971
61972
61972
61972
61973
61973
61973
61974
61974
61974
61975
61975
61975
61976
61976
61976
61977
61977
61977
61978
61978
61978
61979
61979
61979
61980
61980
61980
61981
61981
61981
61982
61982
61982
61983
61983
61984
61984
61984
61985
61985
61985
61986
61986
61986
61987
61987
61987
61988
61988
61988
61989
61989
61989
61990
61990
61990
61991
61991
61991
61992
61992
61992
61993
61993
61993
61994
61994
61994
61995
61995
61995
61996
61996
61996
61997
61997
61997
61998
61998
61998
61999
61999
61999
62000
62000
62000
62001
62001
62001
62002
62002
62002
62003
62003
62003
62004
62004
62004
62005
62005
62005
62006
62006
62006
62007
62007
62007
62008
62008
62008
62009
62009
62009
62010
62010
62010
62011
62011
62011
62012
62012
62012
62013
62013
62013
62014
62014
62014
62015
62015
62015
62016
62016
62016
62017
62017
62017
62018
62018
62018
62019
62019
62020
62020
62020
62021
62021
62021
62022
62022
62022
62023
62023
62023
62024
62024
62024
62025
62025
62025
62026
62026
62026
62027
62027
62027
62028
62028
62028
62029
62029
62029
62030
62030
62030
62031
62031
62031
62032
62032
62032
62033
62033
62033
62034
62034
62034
62035
62035
62035
62036
62036
62036
62037
62037
62037
62038
62038
62038
62039
62039
62039
62040
62040
62040
62041
62041
62041
62042
62042
62042
62043
62043
62043
62044
62044
62044
62045
62045
62045
62046
62046
62046
62047
62047
62047
62048
62048
62048
62049
62049
62049
62050
62050
62050
62051
62051
62051
62052
62052
62052
62053
62053
62053
62054
62054
62054
62055
62055
62056
62056
62056
62057
62057
62057
62058
62058
62058
62059
62059
62059
62060
62060
62060
62061
62061
62061
62062
62062
62062
62063
62063
62063
62064
62064
62064
62065
62065
62065
62066
62066
62066
62067
62067
62067
62068
62068
62068
62069
62069
62069
62070
62070
62070
62071
62071
62071
62072
62072
62072
62073
62073
62073
62074
62074
62074
62075
62075
62075
62076
62076
62076
62077
62077
62077
62078
62078
62078
62079
62079
62079
62080
62080
62080
62081
62081
62081
62082
62082
62082
62083
62083
62083
62084
62084
62084
62085
62085
62085
62086
62086
62086
62087
62087
62087
62088
62088
62088
62089
62089
62089
62090
62090
62090
62091
62091
62092
62092
62092
62093
62093
62093
62094
62094
62094
62095
62095
62095
62096
62096
62096
62097
62097
62097
62098
62098
62098
62099
62099
62099
62100
62100
62100
62101
62101
62101
62102
62102
62102
62103
62103
62103
62104
62104
62104
62105
62105
62105
62106
62106
62106
62107
62107
62107
62108
62108
62108
62109
62109
62109
62110
62110
62110
62111
62111
62111
62112
62112
62112
62113
62113
62113
62114
62114
62114
62115
62115
62115
62116
62116
62116
62117
62117
62117
62118
62118
62118
62119
62119
62119
62120
62120
62120
62121
62121
62121
62122
62122
62122
62123
62123
62123
62124
62124
62124
62125
62125
62125
62126
62126
62126
62127
62127
62128
62128
62128
62129
62129
62129
62130
62130
62130
62131
62131
62131
62132
62132
62132
62133
62133
62133
62134
62134
62134
62135
62135
62135
62136
62136
62136
62137
62137
62137
62138
62138
62138
62139
62139
62139
62140
62140
62140
62141
62141
62141
62142
62142
62142
62143
62143
62143
62144
62144
62144
62145
62145
62145
62146
62146
62146
62147
62147
62147
62148
62148
62148
62149
62149
62149
62150
62150
62150
62151
62151
62151
62152
62152
62152
62153
62153
62153
62154
62154
62154
62155
62155
62155
62156
62156
62156
62157
62157
62157
62158
62158
62158
62159
62159
62159
62160
62160
62160
62161
62161
62161
62162
62162
62162
62163
62163
62164
62164
62165
62165
62166
62166
62167
62167
62168
62168
62169
62169
62170
62170
62171
62171
62172
62172
62173
62173
62174
62174
62175
62175
62176
62176
62177
62177
62178
62178
62179
62179
62180
62180
62181
62181
62182
62182
62183
62183
62184
62184
62185
62185
62186
62186
62187
62187
62188
62188
62189
62189
62190
62190
62191
62191
62192
62192
62193
62193
62194
62194
62195
62195
62196
62196
62197
62197
62198
62198
62199
62200
62200
62200
62201
62201
62201
62202
62202
62202
62203
62203
62203
62204
62204
62204
62205
62205
62205
62206
62206
62206
62207
62207
62207
62208
62208
62208
62209
62209
62209
62210
62210
62210
62211
62211
62211
62212
62212
62212
62213
62213
62213
62214
62214
62214
62215
62215
62215
62216
62216
62216
62217
62217
62217
62218
62218
62218
62219
62219
62219
62220
62220
62220
62221
62221
62221
62222
62222
62222
62223
62223
62223
62224
62224
62224
62225
62225
62225
62226
62226
62226
62227
62227
62227
62228
62228
62228
62229
62229
62229
62230
62230
62230
62231
62231
62231
62232
62232
62232
62233
62233
62233
62234
62234
62234
62235
62235
62236
62236
62236
62237
62237
62237
62238
62238
62238
62239
62239
62239
62240
62240
62240
62241
62241
62241
62242
62242
62242
62243
62243
62243
62244
62244
62244
62245
62245
62245
62246
62246
62246
62247
62247
62247
62248
62248
62248
62249
62249
62249
62250
62250
62250
62251
62251
62251
62252
62252
62252
62253
62253
62253
62254
62254
62254
62255
62255
62255
62256
62256
62256
62257
62257
62257
62258
62258
62258
62259
62259
62259
62260
62260
62260
62261
62261
62261
62262
62262
62262
62263
62263
62263
62264
62264
62264
62265
62265
62265
62266
62266
62266
62267
62267
62267
62268
62268
62268
62269
62269
62269
62270
62270
62270
62271
62271
62272
62272
62272
62273
62273
62273
62274
62274
62274
62275
62275
62275
62276
62276
62276
62277
62277
62277
62278
62278
62278
62279
62279
62279
62280
62280
62280
62281
62281
62281
62282
62282
62282
62283
62283
62283
62284
62284
62284
62285
62285
62285
62286
62286
62286
62287
62287
62287
62288
62288
62288
62289
62289
62289
62290
62290
62290
62291
62291
62291
62292
62292
62292
62293
62293
62293
62294
62294
62294
62295
62295
62295
62296
62296
62296
62297
62297
62297
62298
62298
62298
62299
62299
62299
62300
62300
62300
62301
62301
62301
62302
62302
62302
62303
62303
62303
62304
62304
62304
62305
62305
62305
62306
62306
62306
62307
62307
62308
62308
62308
62309
62309
62309
62310
62310
62310
62311
62311
62311
62312
62312
62312
62313
62313
62313
62314
62314
62314
62315
62315
62315
62316
62316
62316
62317
62317
62317
62318
62318
62318
62319
62319
62319
62320
62320
62320
62321
62321
62321
62322
62322
62322
62323
62323
62323
62324
62324
62324
62325
62325
62325
62326
62326
62326
62327
62327
62327
62328
62328
62328
62329
62329
62329
62330
62330
62330
62331
62331
62331
62332
62332
62332
62333
62333
62333
62334
62334
62334
62335
62335
62335
62336
62336
62336
62337
62337
62337
62338
62338
62338
62339
62339
62339
62340
62340
62340
62341
62341
62341
62342
62342
62342
62343
62343
62344
62344
62344
62345
62345
62345
62346
62346
62346
62347
62347
62347
62348
62348
62348
62349
62349
62349
62350
62350
62350
62351
62351
62351
62352
62352
62352
62353
62353
62353
62354
62354
62354
62355
62355
62355
62356
62356
62356
62357
62357
62357
62358
62358
62358
62359
62359
62359
62360
62360
62360
62361
62361
62361
62362
62362
62362
62363
62363
62363
62364
62364
62364
62365
62365
62365
62366
62366
62366
62367
62367
62367
62368
62368
62368
62369
62369
62369
62370
62370
62370
62371
62371
62371
62372
62372
62372
62373
62373
62373
62374
62374
62374
62375
62375
62375
62376
62376
62376
62377
62377
62377
62378
62378
62378
62379
62379
62380
62380
62380
62381
62381
62381
62382
62382
62382
62383
62383
62383
62384
62384
62384
62385
62385
62385
62386
62386
62386
62387
62387
62387
62388
62388
62388
62389
62389
62389
62390
62390
62390
62391
62391
62391
62392
62392
62392
62393
62393
62393
62394
62394
62394
62395
62395
62395
62396
62396
62396
62397
62397
62397
62398
62398
62398
62399
62399
62399
62400
62400
62400
62401
62401
62401
62402
62402
62402
62403
62403
62403
62404
62404
62404
62405
62405
62405
62406
62406
62406
62407
62407
62407
62408
62408
62408
62409
62409
62409
62410
62410
62410
62411
62411
62411
62412
62412
62412
62413
62413
62413
62414
62414
62414
62415
62415
62416
62416
62416
62417
62417
62417
62418
62418
62418
62419
62419
62419
62420
62420
62420
62421
62421
62421
62422
62422
62422
62423
62423
62423
62424
62424
62424
62425
62425
62425
62426
62426
62426
62427
62427
62427
62428
62428
62428
62429
62429
62429
62430
62430
62430
62431
62431
62431
62432
62432
62432
62433
62433
62433
62434
62434
62434
62435
62435
62435
62436
62436
62436
62437
62437
62437
62438
62438
62438
62439
62439
62439
62440
62440
62440
62441
62441
62441
62442
62442
62442
62443
62443
62443
62444
62444
62444
62445
62445
62445
62446
62446
62446
62447
62447
62447
62448
62448
62448
62449
62449
62449
62450
62450
62450
62451
62451
62452
62452
62452
62453
62453
62453
62454
62454
62454
62455
62455
62455
62456
62456
62456
62457
62457
62457
62458
62458
62458
62459
62459
62459
62460
62460
62460
62461
62461
62461
62462
62462
62462
62463
62463
62463
62464
62464
62464
62465
62465
62465
62466
62466
62466
62467
62467
62467
62468
62468
62468
62469
62469
62469
62470
62470
62470
62471
62471
62471
62472
62472
62472
62473
62473
62473
62474
62474
62474
62475
62475
62475
62476
62476
62476
62477
62477
62477
62478
62478
62478
62479
62479
62479
62480
62480
62480
62481
62481
62481
62482
62482
62482
62483
62483
62483
62484
62484
62484
62485
62485
62485
62486
62486
62486
62487
62487
62488
62488
62488
62489
62489
62489
62490
62490
62490
62491
62491
62491
62492
62492
62492
62493
62493
62493
62494
62494
62494
62495
62495
62495
62496
62496
62496
62497
62497
62497
62498
62498
62498
62499
62499
62499
62500
62500
62500
62501
62501
62501
62502
62502
62502
62503
62503
62503
62504
62504
62504
62505
62505
62505
62506
62506
62506
62507
62507
62507
62508
62508
62508
62509
62509
62509
62510
62510
62510
62511
62511
62511
62512
62512
62512
62513
62513
62513
62514
62514
62514
62515
62515
62515
62516
62516
62516
62517
62517
62517
62518
62518
62518
62519
62519
62519
62520
62520
62520
62521
62521
62521
62522
62522
62522
62523
62523
62524
62524
62525
62525
62526
62526
62527
62527
62528
62528
62529
62529
62530
62530
62531
62531
62532
62532
62533
62533
62534
62534
62535
62535
62536
62536
62537
62537
62538
62538
62539
62539
62540
62540
62541
62541
62542
62542
62543
62543
62544
62544
62545
62545
62546
62546
62547
62547
62548
62548
62549
62549
62550
62550
62551
62551
62552
62552
62553
62553
62554
62554
62555
62555
62556
62556
62557
62557
62558
62558
62559
62560
62560
62560
62561
62561
62561
62562
62562
62562
62563
62563
62563
62564
62564
62564
62565
62565
62565
62566
62566
62566
62567
62567
62567
62568
62568
62568
62569
62569
62569
62570
62570
62570
62571
62571
62571
62572
62572
62572
62573
62573
62573
62574
62574
62574
62575
62575
62575
62576
62576
62576
62577
62577
62577
62578
62578
62578
62579
62579
62579
62580
62580
62580
62581
62581
62581
62582
62582
62582
62583
62583
62583
62584
62584
62584
62585
62585
62585
62586
62586
62586
62587
62587
62587
62588
62588
62588
62589
62589
62589
62590
62590
62590
62591
62591
62591
62592
62592
62592
62593
62593
62593
62594
62594
62594
62595
62595
62596
62596
62596
62597
62597
62597
62598
62598
62598
62599
62599
62599
62600
62600
62600
62601
62601
62601
62602
62602
62602
62603
62603
62603
62604
62604
62604
62605
62605
62605
62606
62606
62606
62607
62607
62607
62608
62608
62608
62609
62609
62609
62610
62610
62610
62611
62611
62611
62612
62612
62612
62613
62613
62613
62614
62614
62614
62615
62615
62615
62616
62616
62616
62617
62617
62617
62618
62618
62618
62619
62619
62619
62620
62620
62620
62621
62621
62621
62622
62622
62622
62623
62623
62623
62624
62624
62624
62625
62625
62625
62626
62626
62626
62627
62627
62627
62628
62628
62628
62629
62629
62629
62630
62630
62630
62631
62631
62632
62632
62632
62633
62633
62633
62634
62634
62634
62635
62635
62635
62636
62636
62636
62637
62637
62637
62638
62638
62638
62639
62639
62639
62640
62640
62640
62641
62641
62641
62642
62642
62642
62643
62643
62643
62644
62644
62644
62645
62645
62645
62646
62646
62646
62647
62647
62647
62648
62648
62648
62649
62649
62649
62650
62650
62650
62651
62651
62651
62652
62652
62652
62653
62653
62653
62654
62654
62654
62655
62655
62655
62656
62656
62656
62657
62657
62657
62658
62658
62658
62659
62659
62659
62660
62660
62660
62661
62661
62661
62662
62662
62662
62663
62663
62663
62664
62664
62664
62665
62665
62665
62666
62666
62666
62667
62667
62668
62668
62668
62669
62669
62669
62670
62670
62670
62671
62671
62671
62672
62672
62672
62673
62673
62673
62674
62674
62674
62675
62675
62675
62676
62676
62676
62677
62677
62677
62678
62678
62678
62679
62679
62679
62680
62680
62680
62681
62681
62681
62682
62682
62682
62683
62683
62683
62684
62684
62684
62685
62685
62685
62686
62686
62686
62687
62687
62687
62688
62688
62688
62689
62689
62689
62690
62690
62690
62691
62691
62691
62692
62692
62692
62693
62693
62693
62694
62694
62694
62695
62695
62695
62696
62696
62696
62697
62697
62697
62698
62698
62698
62699
62699
62699
62700
62700
62700
62701
62701
62701
62702
62702
62702
62703
62703
62704
62704
62704
62705
62705
62705
62706
62706
62706
62707
62707
62707
62708
62708
62708
62709
62709
62709
62710
62710
62710
62711
62711
62711
62712
62712
62712
62713
62713
62713
62714
62714
62714
62715
62715
62715
62716
62716
62716
62717
62717
62717
62718
62718
62718
62719
62719
62719
62720
62720
62720
62721
62721
62721
62722
62722
62722
62723
62723
62723
62724
62724
62724
62725
62725
62725
62726
62726
62726
62727
62727
62727
62728
62728
62728
62729
62729
62729
62730
62730
62730
62731
62731
62731
62732
62732
62732
62733
62733
62733
62734
62734
62734
62735
62735
62735
62736
62736
62736
62737
62737
62737
62738
62738
62738
62739
62739
62740
62740
62740
62741
62741
62741
62742
62742
62742
62743
62743
62743
62744
62744
62744
62745
62745
62745
62746
62746
62746
62747
62747
62747
62748
62748
62748
62749
62749
62749
62750
62750
62750
62751
62751
62751
62752
62752
62752
62753
62753
62753
62754
62754
62754
62755
62755
62755
62756
62756
62756
62757
62757
62757
62758
62758
62758
62759
62759
62759
62760
62760
62760
62761
62761
62761
62762
62762
62762
62763
62763
62763
62764
62764
62764
62765
62765
62765
62766
62766
62766
62767
62767
62767
62768
62768
62768
62769
62769
62769
62770
62770
62770
62771
62771
62771
62772
62772
62772
62773
62773
62773
62774
62774
62774
62775
62775
62776
62776
62776
62777
62777
62777
62778
62778
62778
62779
62779
62779
62780
62780
62780
62781
62781
62781
62782
62782
62782
62783
62783
62783
62784
62784
62784
62785
62785
62785
62786
62786
62786
62787
62787
62787
62788
62788
62788
62789
62789
62789
62790
62790
62790
62791
62791
62791
62792
62792
62792
62793
62793
62793
62794
62794
62794
62795
62795
62795
62796
62796
62796
62797
62797
62797
62798
62798
62798
62799
62799
62799
62800
62800
62800
62801
62801
62801
62802
62802
62802
62803
62803
62803
62804
62804
62804
62805
62805
62805
62806
62806
62806
62807
62807
62807
62808
62808
62808
62809
62809
62809
62810
62810
62810
62811
62811
62812
62812
62812
62813
62813
62813
62814
62814
62814
62815
62815
62815
62816
62816
62816
62817
62817
62817
62818
62818
62818
62819
62819
62819
62820
62820
62820
62821
62821
62821
62822
62822
62822
62823
62823
62823
62824
62824
62824
62825
62825
62825
62826
62826
62826
62827
62827
62827
62828
62828
62828
62829
62829
62829
62830
62830
62830
62831
62831
62831
62832
62832
62832
62833
62833
62833
62834
62834
62834
62835
62835
62835
62836
62836
62836
62837
62837
62837
62838
62838
62838
62839
62839
62839
62840
62840
62840
62841
62841
62841
62842
62842
62842
62843
62843
62843
62844
62844
62844
62845
62845
62845
62846
62846
62846
62847
62847
62848
62848
62848
62849
62849
62849
62850
62850
62850
62851
62851
62851
62852
62852
62852
62853
62853
62853
62854
62854
62854
62855
62855
62855
62856
62856
62856
62857
62857
62857
62858
62858
62858
62859
62859
62859
62860
62860
62860
62861
62861
62861
62862
62862
62862
62863
62863
62863
62864
62864
62864
62865
62865
62865
62866
62866
62866
62867
62867
62867
62868
62868
62868
62869
62869
62869
62870
62870
62870
62871
62871
62871
62872
62872
62872
62873
62873
62873
62874
62874
62874
62875
62875
62875
62876
62876
62876
62877
62877
62877
62878
62878
62878
62879
62879
62879
62880
62880
62880
62881
62881
62881
62882
62882
62882
62883
62883
62884
62884
62885
62885
62886
62886
62887
62887
62888
62888
62889
62889
62890
62890
62891
62891
62892
62892
62893
62893
62894
62894
62895
62895
62896
62896
62897
62897
62898
62898
62899
62899
62900
62900
62901
62901
62902
62902
62903
62903
62904
62904
62905
62905
62906
62906
62907
62907
62908
62908
62909
62909
62910
62910
62911
62911
62912
62912
62913
62913
62914
62914
62915
62915
62916
62916
62917
62917
62918
62918
62919
62920
62920
62920
62921
62921
62921
62922
62922
62922
62923
62923
62923
62924
62924
62924
62925
62925
62925
62926
62926
62926
62927
62927
62927
62928
62928
62928
62929
62929
62929
62930
62930
62930
62931
62931
62931
62932
62932
62932
62933
62933
62933
62934
62934
62934
62935
62935
62935
62936
62936
62936
62937
62937
62937
62938
62938
62938
62939
62939
62939
62940
62940
62940
62941
62941
62941
62942
62942
62942
62943
62943
62943
62944
62944
62944
62945
62945
62945
62946
62946
62946
62947
62947
62947
62948
62948
62948
62949
62949
62949
62950
62950
62950
62951
62951
62951
62952
62952
62952
62953
62953
62953
62954
62954
62954
62955
62955
62956
62956
62956
62957
62957
62957
62958
62958
62958
62959
62959
62959
62960
62960
62960
62961
62961
62961
62962
62962
62962
62963
62963
62963
62964
62964
62964
62965
62965
62965
62966
62966
62966
62967
62967
62967
62968
62968
62968
62969
62969
62969
62970
62970
62970
62971
62971
62971
62972
62972
62972
62973
62973
62973
62974
62974
62974
62975
62975
62975
62976
62976
62976
62977
62977
62977
62978
62978
62978
62979
62979
62979
62980
62980
62980
62981
62981
62981
62982
62982
62982
62983
62983
62983
62984
62984
62984
62985
62985
62985
62986
62986
62986
62987
62987
62987
62988
62988
62988
62989
62989
62989
62990
62990
62990
62991
62991
62992
62992
62992
62993
62993
62993
62994
62994
62994
62995
62995
62995
62996
62996
62996
62997
62997
62997
62998
62998
62998
62999
62999
62999
63000
63000
63000
63001
63001
63001
63002
63002
63002
63003
63003
63003
63004
63004
63004
63005
63005
63005
63006
63006
63006
63007
63007
63007
63008
63008
63008
63009
63009
63009
63010
63010
63010
63011
63011
63011
63012
63012
63012
63013
63013
63013
63014
63014
63014
63015
63015
63015
63016
63016
63016
63017
63017
63017
63018
63018
63018
63019
63019
63019
63020
63020
63020
63021
63021
63021
63022
63022
63022
63023
63023
63023
63024
63024
63024
63025
63025
63025
63026
63026
63026
63027
63027
63028
63028
63028
63029
63029
63029
63030
63030
63030
63031
63031
63031
63032
63032
63032
63033
63033
63033
63034
63034
63034
63035
63035
63035
63036
63036
63036
63037
63037
63037
63038
63038
63038
63039
63039
63039
63040
63040
63040
63041
63041
63041
63042
63042
63042
63043
63043
63043
63044
63044
63044
63045
63045
63045
63046
63046
63046
63047
63047
63047
63048
63048
63048
63049
63049
63049
63050
63050
63050
63051
63051
63051
63052
63052
63052
63053
63053
63053
63054
63054
63054
63055
63055
63055
63056
63056
63056
63057
63057
63057
63058
63058
63058
63059
63059
63059
63060
63060
63060
63061
63061
63061
63062
63062
63062
63063
63063
63064
63064
63064
63065
63065
63065
63066
63066
63066
63067
63067
63067
63068
63068
63068
63069
63069
63069
63070
63070
63070
63071
63071
63071
63072
63072
63072
63073
63073
63073
63074
63074
63074
63075
63075
63075
63076
63076
63076
63077
63077
63077
63078
63078
63078
63079
63079
63079
63080
63080
63080
63081
63081
63081
63082
63082
63082
63083
63083
63083
63084
63084
63084
63085
63085
63085
63086
63086
63086
63087
63087
63087
63088
63088
63088
63089
63089
63089
63090
63090
63090
63091
63091
63091
63092
63092
63092
63093
63093
63093
63094
63094
63094
63095
63095
63095
63096
63096
63096
63097
63097
63097
63098
63098
63098
63099
63099
63100
63100
63100
63101
63101
63101
63102
63102
63102
63103
63103
63103
63104
63104
63104
63105
63105
63105
63106
63106
63106
63107
63107
63107
63108
63108
63108
63109
63109
63109
63110
63110
63110
63111
63111
63111
63112
63112
63112
63113
63113
63113
63114
63114
63114
63115
63115
63115
63116
63116
63116
63117
63117
63117
63118
63118
63118
63119
63119
63119
63120
63120
63120
63121
63121
63121
63122
63122
63122
63123
63123
63123
63124
63124
63124
63125
63125
63125
63126
63126
63126
63127
63127
63127
63128
63128
63128
63129
63129
63129
63130
63130
63130
63131
63131
63131
63132
63132
63132
63133
63133
63133
63134
63134
63134
63135
63135
63136
63136
63136
63137
63137
63137
63138
63138
63138
63139
63139
63139
63140
63140
63140
63141
63141
63141
63142
63142
63142
63143
63143
63143
63144
63144
63144
63145
63145
63145
63146
63146
63146
63147
63147
63147
63148
63148
63148
63149
63149
63149
63150
63150
63150
63151
63151
63151
63152
63152
63152
63153
63153
63153
63154
63154
63154
63155
63155
63155
63156
63156
63156
63157
63157
63157
63158
63158
63158
63159
63159
63159
63160
63160
63160
63161
63161
63161
63162
63162
63162
63163
63163
63163
63164
63164
63164
63165
63165
63165
63166
63166
63166
63167
63167
63167
63168
63168
63168
63169
63169
63169
63170
63170
63170
63171
63171
63172
63172
63172
63173
63173
63173
63174
63174
63174
63175
63175
63175
63176
63176
63176
63177
63177
63177
63178
63178
63178
63179
63179
63179
63180
63180
63180
63181
63181
63181
63182
63182
63182
63183
63183
63183
63184
63184
63184
63185
63185
63185
63186
63186
63186
63187
63187
63187
63188
63188
63188
63189
63189
63189
63190
63190
63190
63191
63191
63191
63192
63192
63192
63193
63193
63193
63194
63194
63194
63195
63195
63195
63196
63196
63196
63197
63197
63197
63198
63198
63198
63199
63199
63199
63200
63200
63200
63201
63201
63201
63202
63202
63202
63203
63203
63203
63204
63204
63204
63205
63205
63205
63206
63206
63206
63207
63207
63208
63208
63208
63209
63209
63209
63210
63210
63210
63211
63211
63211
63212
63212
63212
63213
63213
63213
63214
63214
63214
63215
63215
63215
63216
63216
63216
63217
63217
63217
63218
63218
63218
63219
63219
63219
63220
63220
63220
63221
63221
63221
63222
63222
63222
63223
63223
63223
63224
63224
63224
63225
63225
63225
63226
63226
63226
63227
63227
63227
63228
63228
63228
63229
63229
63229
63230
63230
63230
63231
63231
63231
63232
63232
63232
63233
63233
63233
63234
63234
63234
63235
63235
63235
63236
63236
63236
63237
63237
63237
63238
63238
63238
63239
63239
63239
63240
63240
63240
63241
63241
63241
63242
63242
63242
63243
63243
63244
63244
63245
63245
63246
63246
63247
63247
63248
63248
63249
63249
63250
63250
63251
63251
63252
63252
63253
63253
63254
63254
63255
63255
63256
63256
63257
63257
63258
63258
63259
63259
63260
63260
63261
63261
63262
63262
63263
63263
63264
63264
63265
63265
63266
63266
63267
63267
63268
63268
63269
63269
63270
63270
63271
63271
63272
63272
63273
63273
63274
63274
63275
63275
63276
63276
63277
63277
63278
63278
63279
63280
63280
63280
63281
63281
63281
63282
63282
63282
63283
63283
63283
63284
63284
63284
63285
63285
63285
63286
63286
63286
63287
63287
63287
63288
63288
63288
63289
63289
63289
63290
63290
63290
63291
63291
63291
63292
63292
63292
63293
63293
63293
63294
63294
63294
63295
63295
63295
63296
63296
63296
63297
63297
63297
63298
63298
63298
63299
63299
63299
63300
63300
63300
63301
63301
63301
63302
63302
63302
63303
63303
63303
63304
63304
63304
63305
63305
63305
63306
63306
63306
63307
63307
63307
63308
63308
63308
63309
63309
63309
63310
63310
63310
63311
63311
63311
63312
63312
63312
63313
63313
63313
63314
63314
63314
63315
63315
63316
63316
63316
63317
63317
63317
63318
63318
63318
63319
63319
63319
63320
63320
63320
63321
63321
63321
63322
63322
63322
63323
63323
63323
63324
63324
63324
63325
63325
63325
63326
63326
63326
63327
63327
63327
63328
63328
63328
63329
63329
63329
63330
63330
63330
63331
63331
63331
63332
63332
63332
63333
63333
63333
63334
63334
63334
63335
63335
63335
63336
63336
63336
63337
63337
63337
63338
63338
63338
63339
63339
63339
63340
63340
63340
63341
63341
63341
63342
63342
63342
63343
63343
63343
63344
63344
63344
63345
63345
63345
63346
63346
63346
63347
63347
63347
63348
63348
63348
63349
63349
63349
63350
63350
63350
63351
63351
63352
63352
63352
63353
63353
63353
63354
63354
63354
63355
63355
63355
63356
63356
63356
63357
63357
63357
63358
63358
63358
63359
63359
63359
63360
63360
63360
63361
63361
63361
63362
63362
63362
63363
63363
63363
63364
63364
63364
63365
63365
63365
63366
63366
63366
63367
63367
63367
63368
63368
63368
63369
63369
63369
63370
63370
63370
63371
63371
63371
63372
63372
63372
63373
63373
63373
63374
63374
63374
63375
63375
63375
63376
63376
63376
63377
63377
63377
63378
63378
63378
63379
63379
63379
63380
63380
63380
63381
63381
63381
63382
63382
63382
63383
63383
63383
63384
63384
63384
63385
63385
63385
63386
63386
63386
63387
63387
63388
63388
63388
63389
63389
63389
63390
63390
63390
63391
63391
63391
63392
63392
63392
63393
63393
63393
63394
63394
63394
63395
63395
63395
63396
63396
63396
63397
63397
63397
63398
63398
63398
63399
63399
63399
63400
63400
63400
63401
63401
63401
63402
63402
63402
63403
63403
63403
63404
63404
63404
63405
63405
63405
63406
63406
63406
63407
63407
63407
63408
63408
63408
63409
63409
63409
63410
63410
63410
63411
63411
63411
63412
63412
63412
63413
63413
63413
63414
63414
63414
63415
63415
63415
63416
63416
63416
63417
63417
63417
63418
63418
63418
63419
63419
63419
63420
63420
63420
63421
63421
63421
63422
63422
63422
63423
63423
63424
63424
63424
63425
63425
63425
63426
63426
63426
63427
63427
63427
63428
63428
63428
63429
63429
63429
63430
63430
63430
63431
63431
63431
63432
63432
63432
63433
63433
63433
63434
63434
63434
63435
63435
63435
63436
63436
63436
63437
63437
63437
63438
63438
63438
63439
63439
63439
63440
63440
63440
63441
63441
63441
63442
63442
63442
63443
63443
63443
63444
63444
63444
63445
63445
63445
63446
63446
63446
63447
63447
63447
63448
63448
63448
63449
63449
63449
63450
63450
63450
63451
63451
63451
63452
63452
63452
63453
63453
63453
63454
63454
63454
63455
63455
63455
63456
63456
63456
63457
63457
63457
63458
63458
63458
63459
63459
63460
63460
63460
63461
63461
63461
63462
63462
63462
63463
63463
63463
63464
63464
63464
63465
63465
63465
63466
63466
63466
63467
63467
63467
63468
63468
63468
63469
63469
63469
63470
63470
63470
63471
63471
63471
63472
63472
63472
63473
63473
63473
63474
63474
63474
63475
63475
63475
63476
63476
63476
63477
63477
63477
63478
63478
63478
63479
63479
63479
63480
63480
63480
63481
63481
63481
63482
63482
63482
63483
63483
63483
63484
63484
63484
63485
63485
63485
63486
63486
63486
63487
63487
63487
63488
63488
63488
63489
63489
63489
63490
63490
63490
63491
63491
63491
63492
63492
63492
63493
63493
63493
63494
63494
63494
63495
63495
63496
63496
63496
63497
63497
63497
63498
63498
63498
63499
63499
63499
63500
63500
63500
63501
63501
63501
63502
63502
63502
63503
63503
63503
63504
63504
63504
63505
63505
63505
63506
63506
63506
63507
63507
63507
63508
63508
63508
63509
63509
63509
63510
63510
63510
63511
63511
63511
63512
63512
63512
63513
63513
63513
63514
63514
63514
63515
63515
63515
63516
63516
63516
63517
63517
63517
63518
63518
63518
63519
63519
63519
63520
63520
63520
63521
63521
63521
63522
63522
63522
63523
63523
63523
63524
63524
63524
63525
63525
63525
63526
63526
63526
63527
63527
63527
63528
63528
63528
63529
63529
63529
63530
63530
63530
63531
63531
63532
63532
63532
63533
63533
63533
63534
63534
63534
63535
63535
63535
63536
63536
63536
63537
63537
63537
63538
63538
63538
63539
63539
63539
63540
63540
63540
63541
63541
63541
63542
63542
63542
63543
63543
63543
63544
63544
63544
63545
63545
63545
63546
63546
63546
63547
63547
63547
63548
63548
63548
63549
63549
63549
63550
63550
63550
63551
63551
63551
63552
63552
63552
63553
63553
63553
63554
63554
63554
63555
63555
63555
63556
63556
63556
63557
63557
63557
63558
63558
63558
63559
63559
63559
63560
63560
63560
63561
63561
63561
63562
63562
63562
63563
63563
63563
63564
63564
63564
63565
63565
63565
63566
63566
63566
63567
63567
63568
63568
63568
63569
63569
63569
63570
63570
63570
63571
63571
63571
63572
63572
63572
63573
63573
63573
63574
63574
63574
63575
63575
63575
63576
63576
63576
63577
63577
63577
63578
63578
63578
63579
63579
63579
63580
63580
63580
63581
63581
63581
63582
63582
63582
63583
63583
63583
63584
63584
63584
63585
63585
63585
63586
63586
63586
63587
63587
63587
63588
63588
63588
63589
63589
63589
63590
63590
63590
63591
63591
63591
63592
63592
63592
63593
63593
63593
63594
63594
63594
63595
63595
63595
63596
63596
63596
63597
63597
63597
63598
63598
63598
63599
63599
63599
63600
63600
63600
63601
63601
63601
63602
63602
63602
63603
63603
63604
63604
63605
63605
63606
63606
63607
63607
63608
63608
63609
63609
63610
63610
63611
63611
63612
63612
63613
63613
63614
63614
63615
63615
63616
63616
63617
63617
63618
63618
63619
63619
63620
63620
63621
63621
63622
63622
63623
63623
63624
63624
63625
63625
63626
63626
63627
63627
63628
63628
63629
63629
63630
63630
63631
63631
63632
63632
63633
63633
63634
63634
63635
63635
63636
63636
63637
63637
63638
63638
63639
63640
63640
63641
63641
63642
63642
63643
63643
63644
63644
63645
63645
63646
63646
63647
63647
63648
63648
63649
63649
63650
63650
63651
63651
63652
63652
63653
63653
63654
63654
63655
63655
63656
63656
63657
63657
63658
63658
63659
63659
63660
63660
63661
63661
63662
63662
63663
63663
63664
63664
63665
63665
63666
63666
63667
63667
63668
63668
63669
63669
63670
63670
63671
63671
63672
63672
63673
63673
63674
63674
63675
63676
63676
63677
63677
63678
63678
63679
63679
63680
63680
63681
63681
63682
63682
63683
63683
63684
63684
63685
63685
63686
63686
63687
63687
63688
63688
63689
63689
63690
63690
63691
63691
63692
63692
63693
63693
63694
63694
63695
63695
63696
63696
63697
63697
63698
63698
63699
63699
63700
63700
63701
63701
63702
63702
63703
63703
63704
63704
63705
63705
63706
63706
63707
63707
63708
63708
63709
63709
63710
63710
63711
63712
63712
63713
63713
63714
63714
63715
63715
63716
63716
63717
63717
63718
63718
63719
63719
63720
63720
63721
63721
63722
63722
63723
63723
63724
63724
63725
63725
63726
63726
63727
63727
63728
63728
63729
63729
63730
63730
63731
63731
63732
63732
63733
63733
63734
63734
63735
63735
63736
63736
63737
63737
63738
63738
63739
63739
63740
63740
63741
63741
63742
63742
63743
63743
63744
63744
63745
63745
63746
63746
63747
63748
63748
63749
63749
63750
63750
63751
63751
63752
63752
63753
63753
63754
63754
63755
63755
63756
63756
63757
63757
63758
63758
63759
63759
63760
63760
63761
63761
63762
63762
63763
63763
63764
63764
63765
63765
63766
63766
63767
63767
63768
63768
63769
63769
63770
63770
63771
63771
63772
63772
63773
63773
63774
63774
63775
63775
63776
63776
63777
63777
63778
63778
63779
63779
63780
63780
63781
63781
63782
63782
63783
63784
63784
63785
63785
63786
63786
63787
63787
63788
63788
63789
63789
63790
63790
63791
63791
63792
63792
63793
63793
63794
63794
63795
63795
63796
63796
63797
63797
63798
63798
63799
63799
63800
63800
63801
63801
63802
63802
63803
63803
63804
63804
63805
63805
63806
63806
63807
63807
63808
63808
63809
63809
63810
63810
63811
63811
63812
63812
63813
63813
63814
63814
63815
63815
63816
63816
63817
63817
63818
63818
63819
63820
63820
63821
63821
63822
63822
63823
63823
63824
63824
63825
63825
63826
63826
63827
63827
63828
63828
63829
63829
63830
63830
63831
63831
63832
63832
63833
63833
63834
63834
63835
63835
63836
63836
63837
63837
63838
63838
63839
63839
63840
63840
63841
63841
63842
63842
63843
63843
63844
63844
63845
63845
63846
63846
63847
63847
63848
63848
63849
63849
63850
63850
63851
63851
63852
63852
63853
63853
63854
63854
63855
63856
63856
63857
63857
63858
63858
63859
63859
63860
63860
63861
63861
63862
63862
63863
63863
63864
63864
63865
63865
63866
63866
63867
63867
63868
63868
63869
63869
63870
63870
63871
63871
63872
63872
63873
63873
63874
63874
63875
63875
63876
63876
63877
63877
63878
63878
63879
63879
63880
63880
63881
63881
63882
63882
63883
63883
63884
63884
63885
63885
63886
63886
63887
63887
63888
63888
63889
63889
63890
63890
63891
63892
63892
63893
63893
63894
63894
63895
63895
63896
63896
63897
63897
63898
63898
63899
63899
63900
63900
63901
63901
63902
63902
63903
63903
63904
63904
63905
63905
63906
63906
63907
63907
63908
63908
63909
63909
63910
63910
63911
63911
63912
63912
63913
63913
63914
63914
63915
63915
63916
63916
63917
63917
63918
63918
63919
63919
63920
63920
63921
63921
63922
63922
63923
63923
63924
63924
63925
63925
63926
63926
63927
63928
63928
63929
63929
63930
63930
63931
63931
63932
63932
63933
63933
63934
63934
63935
63935
63936
63936
63937
63937
63938
63938
63939
63939
63940
63940
63941
63941
63942
63942
63943
63943
63944
63944
63945
63945
63946
63946
63947
63947
63948
63948
63949
63949
63950
63950
63951
63951
63952
63952
63953
63953
63954
63954
63955
63955
63956
63956
63957
63957
63958
63958
63959
63959
63960
63960
63961
63961
63962
63962
63963
63964
63965
63966
63967
63968
63969
63970
63971
63972
63973
63974
63975
63976
63977
63978
63979
63980
63981
63982
63983
63984
63985
63986
63987
63988
63989
63990
63991
63992
63993
63994
63995
63996
63997
63998
34980
35002
35024
35046
35068
35090
35112
35134
35156
35178
34981
35003
35025
35047
35069
35091
35113
35135
35157
35179
34982
35004
35026
35048
35070
35092
35114
35136
35158
35180
34983
35005
35027
35049
35071
35093
35115
35137
35159
35181
34984
35006
35028
35050
35072
35094
35116
35138
35160
35182
34985
35007
35029
35051
35073
35095
35117
35139
35161
35183
34986
35008
35030
35052
35074
35096
35118
35140
35162
35184
34987
35009
35031
35053
35075
35097
35119
35141
35163
35185
34988
35010
35032
35054
35076
35098
35120
35142
35164
35186
34989
35011
35033
35055
35077
35099
35121
35143
35165
35187
34990
35012
35034
35056
35078
35100
35122
35144
35166
35188
34991
35013
35035
35057
35079
35101
35123
35145
35167
35189
34992
35014
35036
35058
35080
35102
35124
35146
35168
35190
34993
35015
35037
35059
35081
35103
35125
35147
35169
35191
34994
35016
35038
35060
35082
35104
35126
35148
35170
35192
34995
35017
35039
35061
35083
35105
35127
35149
35171
35193
34996
35018
35040
35062
35084
35106
35128
35150
35172
35194
34997
35019
35041
35063
35085
35107
35129
35151
35173
35195
34998
35020
35042
35064
35086
35108
35130
35152
35174
35196
34999
35021
35043
35065
35087
35109
35131
35153
35175
35197
35000
35022
35044
35066
35088
35110
35132
35154
35176
35198
35001
35023
35045
35067
35089
35111
35133
35155
35177
35199
17380
17402
17424
17446
17468
17490
17512
17534
17556
17578
17381
17403
17425
17447
17469
17491
17513
17535
17557
17579
17382
17404
17426
17448
17470
17492
17514
17536
17558
17580
17383
17405
17427
17449
17471
17493
17515
17537
17559
17581
17384
17406
17428
17450
17472
17494
17516
17538
17560
17582
17385
17407
17429
17451
17473
17495
17517
17539
17561
17583
17386
17408
17430
17452
17474
17496
17518
17540
17562
17584
17387
17409
17431
17453
17475
17497
17519
17541
17563
17585
17388
17410
17432
17454
17476
17498
17520
17542
17564
17586
17389
17411
17433
17455
17477
17499
17521
17543
17565
17587
17390
17412
17434
17456
17478
17500
17522
17544
17566
17588
17391
17413
17435
17457
17479
17501
17523
17545
17567
17589
17392
17414
17436
17458
17480
17502
17524
17546
17568
17590
17393
17415
17437
17459
17481
17503
17525
17547
17569
17591
17394
17416
17438
17460
17482
17504
17526
17548
17570
17592
17395
17417
17439
17461
17483
17505
17527
17549
17571
17593
17396
17418
17440
17462
17484
17506
17528
17550
17572
17594
17397
17419
17441
17463
17485
17507
17529
17551
17573
17595
17398
17420
17442
17464
17486
17508
17530
17552
17574
17596
17399
17421
17443
17465
17487
17509
17531
17553
17575
17597
17400
17422
17444
17466
17488
17510
17532
17554
17576
17598
17401
17423
17445
17467
17489
17511
17533
17555
17577
17599
63640
63676
63712
63748
63784
63820
63856
63892
63928
63964
63641
63677
63713
63749
63785
63821
63857
63893
63929
63965
63642
63678
63714
63750
63786
63822
63858
63894
63930
63966
63643
63679
63715
63751
63787
63823
63859
63895
63931
63967
63644
63680
63716
63752
63788
63824
63860
63896
63932
63968
63645
63681
63717
63753
63789
63825
63861
63897
63933
63969
63646
63682
63718
63754
63790
63826
63862
63898
63934
63970
63647
63683
63719
63755
63791
63827
63863
63899
63935
63971
63648
63684
63720
63756
63792
63828
63864
63900
63936
63972
63649
63685
63721
63757
63793
63829
63865
63901
63937
63973
63650
63686
63722
63758
63794
63830
63866
63902
63938
63974
63651
63687
63723
63759
63795
63831
63867
63903
63939
63975
63652
63688
63724
63760
63796
63832
63868
63904
63940
63976
63653
63689
63725
63761
63797
63833
63869
63905
63941
63977
63654
63690
63726
63762
63798
63834
63870
63906
63942
63978
63655
63691
63727
63763
63799
63835
63871
63907
63943
63979
63656
63692
63728
63764
63800
63836
63872
63908
63944
63980
63657
63693
63729
63765
63801
63837
63873
63909
63945
63981
63658
63694
63730
63766
63802
63838
63874
63910
63946
63982
63659
63695
63731
63767
63803
63839
63875
63911
63947
63983
63660
63696
63732
63768
63804
63840
63876
63912
63948
63984
63661
63697
63733
63769
63805
63841
63877
63913
63949
63985
63662
63698
63734
63770
63806
63842
63878
63914
63950
63986
63663
63699
63735
63771
63807
63843
63879
63915
63951
63987
63664
63700
63736
63772
63808
63844
63880
63916
63952
63988
63665
63701
63737
63773
63809
63845
63881
63917
63953
63989
63666
63702
63738
63774
63810
63846
63882
63918
63954
63990
63667
63703
63739
63775
63811
63847
63883
63919
63955
63991
63668
63704
63740
63776
63812
63848
63884
63920
63956
63992
63669
63705
63741
63777
63813
63849
63885
63921
63957
63993
63670
63706
63742
63778
63814
63850
63886
63922
63958
63994
63671
63707
63743
63779
63815
63851
63887
63923
63959
63995
63672
63708
63744
63780
63816
63852
63888
63924
63960
63996
63673
63709
63745
63781
63817
63853
63889
63925
63961
63997
63674
63710
63746
63782
63818
63854
63890
63926
63962
63998
63675
63711
63747
63783
63819
63855
63891
63927
63963
63999
0
22
44
66
88
110
132
154
176
198
1
23
45
67
89
111
133
155
177
199
2
24
46
68
90
112
134
156
178
200
3
25
47
69
91
113
135
157
179
201
4
26
48
70
92
114
136
158
180
202
5
27
49
71
93
115
137
159
181
203
6
28
50
72
94
116
138
160
182
204
7
29
51
73
95
117
139
161
183
205
8
30
52
74
96
118
140
162
184
206
9
31
53
75
97
119
141
163
185
207
10
32
54
76
98
120
142
164
186
208
11
33
55
77
99
121
143
165
187
209
12
34
56
78
100
122
144
166
188
210
13
35
57
79
101
123
145
167
189
211
14
36
58
80
102
124
146
168
190
212
15
37
59
81
103
125
147
169
191
213
16
38
60
82
104
126
148
170
192
214
17
39
61
83
105
127
149
171
193
215
18
40
62
84
106
128
150
172
194
216
19
41
63
85
107
129
151
173
195
217
20
42
64
86
108
130
152
174
196
218
21
43
65
87
109
131
153
175
197
219
35200
35236
35272
35308
35344
35380
35416
35452
35488
35524
35201
35237
35273
35309
35345
35381
35417
35453
35489
35525
35202
35238
35274
35310
35346
35382
35418
35454
35490
35526
35203
35239
35275
35311
35347
35383
35419
35455
35491
35527
35204
35240
35276
35312
35348
35384
35420
35456
35492
35528
35205
35241
35277
35313
35349
35385
35421
35457
35493
35529
35206
35242
35278
35314
35350
35386
35422
35458
35494
35530
35207
35243
35279
35315
35351
35387
35423
35459
35495
35531
35208
35244
35280
35316
35352
35388
35424
35460
35496
35532
35209
35245
35281
35317
35353
35389
35425
35461
35497
35533
35210
35246
35282
35318
35354
35390
35426
35462
35498
35534
35211
35247
35283
35319
35355
35391
35427
35463
35499
35535
35212
35248
35284
35320
35356
35392
35428
35464
35500
35536
35213
35249
35285
35321
35357
35393
35429
35465
35501
35537
35214
35250
35286
35322
35358
35394
35430
35466
35502
35538
35215
35251
35287
35323
35359
35395
35431
35467
35503
35539
35216
35252
35288
35324
35360
35396
35432
35468
35504
35540
35217
35253
35289
35325
35361
35397
35433
35469
35505
35541
35218
35254
35290
35326
35362
35398
35434
35470
35506
35542
35219
35255
35291
35327
35363
35399
35435
35471
35507
35543
35220
35256
35292
35328
35364
35400
35436
35472
35508
35544
35221
35257
35293
35329
35365
35401
35437
35473
35509
35545
35222
35258
35294
35330
35366
35402
35438
35474
35510
35546
35223
35259
35295
35331
35367
35403
35439
35475
35511
35547
35224
35260
35296
35332
35368
35404
35440
35476
35512
35548
35225
35261
35297
35333
35369
35405
35441
35477
35513
35549
35226
35262
35298
35334
35370
35406
35442
35478
35514
35550
35227
35263
35299
35335
35371
35407
35443
35479
35515
35551
35228
35264
35300
35336
35372
35408
35444
35480
35516
35552
35229
35265
35301
35337
35373
35409
35445
35481
35517
35553
35230
35266
35302
35338
35374
35410
35446
35482
35518
35554
35231
35267
35303
35339
35375
35411
35447
35483
35519
35555
35232
35268
35304
35340
35376
35412
35448
35484
35520
35556
35233
35269
35305
35341
35377
35413
35449
35485
35521
35557
35234
35270
35306
35342
35378
35414
35450
35486
35522
35558
35235
35271
35307
35343
35379
35415
35451
35487
35523
35559
17600
17622
17644
17666
17688
17710
17732
17754
17776
17798
17601
17623
17645
17667
17689
17711
17733
17755
17777
17799
17602
17624
17646
17668
17690
17712
17734
17756
17778
17800
17603
17625
17647
17669
17691
17713
17735
17757
17779
17801
17604
17626
17648
17670
17692
17714
17736
17758
17780
17802
17605
17627
17649
17671
17693
17715
17737
17759
17781
17803
17606
17628
17650
17672
17694
17716
17738
17760
17782
17804
17607
17629
17651
17673
17695
17717
17739
17761
17783
17805
17608
17630
17652
17674
17696
17718
17740
17762
17784
17806
17609
17631
17653
17675
17697
17719
17741
17763
17785
17807
17610
17632
17654
17676
17698
17720
17742
17764
17786
17808
17611
17633
17655
17677
17699
17721
17743
17765
17787
17809
17612
17634
17656
17678
17700
17722
17744
17766
17788
17810
17613
17635
17657
17679
17701
17723
17745
17767
17789
17811
17614
17636
17658
17680
17702
17724
17746
17768
17790
17812
17615
17637
17659
17681
17703
17725
17747
17769
17791
17813
17616
17638
17660
17682
17704
17726
17748
17770
17792
17814
17617
17639
17661
17683
17705
17727
17749
17771
17793
17815
17618
17640
17662
17684
17706
17728
17750
17772
17794
17816
17619
17641
17663
17685
17707
17729
17751
17773
17795
17817
17620
17642
17664
17686
17708
17730
17752
17774
17796
17818
17621
17643
17665
17687
17709
17731
17753
17775
17797
17819
0
220
440
660
880
1100
1320
1540
1760
1980
2200
2420
2640
2860
3080
3300
3520
3740
3960
4180
4400
4620
4840
5060
5280
5500
5720
5940
6160
6380
6600
6820
7040
7260
7480
7700
7920
8140
8360
8580
8800
9020
9240
9460
9680
9900
10120
10340
10560
10780
11000
11220
11440
11660
11880
12100
12320
12540
12760
12980
13200
13420
13640
13860
14080
14300
14520
14740
14960
15180
15400
15620
15840
16060
16280
16500
16720
16940
17160
17380
1
221
441
661
881
1101
1321
1541
1761
1981
2201
2421
2641
2861
3081
3301
3521
3741
3961
4181
4401
4621
4841
5061
5281
5501
5721
5941
6161
6381
6601
6821
7041
7261
7481
7701
7921
8141
8361
8581
8801
9021
9241
9461
9681
9901
10121
10341
10561
10781
11001
11221
11441
11661
11881
12101
12321
12541
12761
12981
13201
13421
13641
13861
14081
14301
14521
14741
14961
15181
15401
15621
15841
16061
16281
16501
16721
16941
17161
17381
2
222
442
662
882
1102
1322
1542
1762
1982
2202
2422
2642
2862
3082
3302
3522
3742
3962
4182
4402
4622
4842
5062
5282
5502
5722
5942
6162
6382
6602
6822
7042
7262
7482
7702
7922
8142
8362
8582
8802
9022
9242
9462
9682
9902
10122
10342
10562
10782
11002
11222
11442
11662
11882
12102
12322
12542
12762
12982
13202
13422
13642
13862
14082
14302
14522
14742
14962
15182
15402
15622
15842
16062
16282
16502
16722
16942
17162
17382
3
223
443
663
883
1103
1323
1543
1763
1983
2203
2423
2643
2863
3083
3303
3523
3743
3963
4183
4403
4623
4843
5063
5283
5503
5723
5943
6163
6383
6603
6823
7043
7263
7483
7703
7923
8143
8363
8583
8803
9023
9243
9463
9683
9903
10123
10343
10563
10783
11003
11223
11443
11663
11883
12103
12323
12543
12763
12983
13203
13423
13643
13863
14083
14303
14523
14743
14963
15183
15403
15623
15843
16063
16283
16503
16723
16943
17163
17383
4
224
444
664
884
1104
1324
1544
1764
1984
2204
2424
2644
2864
3084
3304
3524
3744
3964
4184
4404
4624
4844
5064
5284
5504
5724
5944
6164
6384
6604
6824
7044
7264
7484
7704
7924
8144
8364
8584
8804
9024
9244
9464
9684
9904
10124
10344
10564
10784
11004
11224
11444
11664
11884
12104
12324
12544
12764
12984
13204
13424
13644
13864
14084
14304
14524
14744
14964
15184
15404
15624
15844
16064
16284
16504
16724
16944
17164
17384
5
225
445
665
885
1105
1325
1545
1765
1985
2205
2425
2645
2865
3085
3305
3525
3745
3965
4185
4405
4625
4845
5065
5285
5505
5725
5945
6165
6385
6605
6825
7045
7265
7485
7705
7925
8145
8365
8585
8805
9025
9245
9465
9685
9905
10125
10345
10565
10785
11005
11225
11445
11665
11885
12105
12325
12545
12765
12985
13205
13425
13645
13865
14085
14305
14525
14745
14965
15185
15405
15625
15845
16065
16285
16505
16725
16945
17165
17385
6
226
446
666
886
1106
1326
1546
1766
1986
2206
2426
2646
2866
3086
3306
3526
3746
3966
4186
4406
4626
4846
5066
5286
5506
5726
5946
6166
6386
6606
6826
7046
7266
7486
7706
7926
8146
8366
8586
8806
9026
9246
9466
9686
9906
10126
10346
10566
10786
11006
11226
11446
11666
11886
12106
12326
12546
12766
12986
13206
13426
13646
13866
14086
14306
14526
14746
14966
15186
15406
15626
15846
16066
16286
16506
16726
16946
17166
17386
7
227
447
667
887
1107
1327
1547
1767
1987
2207
2427
2647
2867
3087
3307
3527
3747
3967
4187
4407
4627
4847
5067
5287
5507
5727
5947
6167
6387
6607
6827
7047
7267
7487
7707
7927
8147
8367
8587
8807
9027
9247
9467
9687
9907
10127
10347
10567
10787
11007
11227
11447
11667
11887
12107
12327
12547
12767
12987
13207
13427
13647
13867
14087
14307
14527
14747
14967
15187
15407
15627
15847
16067
16287
16507
16727
16947
17167
17387
8
228
448
668
888
1108
1328
1548
1768
1988
2208
2428
2648
2868
3088
3308
3528
3748
3968
4188
4408
4628
4848
5068
5288
5508
5728
5948
6168
6388
6608
6828
7048
7268
7488
7708
7928
8148
8368
8588
8808
9028
9248
9468
9688
9908
10128
10348
10568
10788
11008
11228
11448
11668
11888
12108
12328
12548
12768
12988
13208
13428
13648
13868
14088
14308
14528
14748
14968
15188
15408
15628
15848
16068
16288
16508
16728
16948
17168
17388
9
229
449
669
889
1109
1329
1549
1769
1989
2209
2429
2649
2869
3089
3309
3529
3749
3969
4189
4409
4629
4849
5069
5289
5509
5729
5949
6169
6389
6609
6829
7049
7269
7489
7709
7929
8149
8369
8589
8809
9029
9249
9469
9689
9909
10129
10349
10569
10789
11009
11229
11449
11669
11889
12109
12329
12549
12769
12989
13209
13429
13649
13869
14089
14309
14529
14749
14969
15189
15409
15629
15849
16069
16289
16509
16729
16949
17169
17389
10
230
450
670
890
1110
1330
1550
1770
1990
2210
2430
2650
2870
3090
3310
3530
3750
3970
4190
4410
4630
4850
5070
5290
5510
5730
5950
6170
6390
6610
6830
7050
7270
7490
7710
7930
8150
8370
8590
8810
9030
9250
9470
9690
9910
10130
10350
10570
10790
11010
11230
11450
11670
11890
12110
12330
12550
12770
12990
13210
13430
13650
13870
14090
14310
14530
14750
14970
15190
15410
15630
15850
16070
16290
16510
16730
16950
17170
17390
11
231
451
671
891
1111
1331
1551
1771
1991
2211
2431
2651
2871
3091
3311
3531
3751
3971
4191
4411
4631
4851
5071
5291
5511
5731
5951
6171
6391
6611
6831
7051
7271
7491
7711
7931
8151
8371
8591
8811
9031
9251
9471
9691
9911
10131
10351
10571
10791
11011
11231
11451
11671
11891
12111
12331
12551
12771
12991
13211
13431
13651
13871
14091
14311
14531
14751
14971
15191
15411
15631
15851
16071
16291
16511
16731
16951
17171
17391
12
232
452
672
892
1112
1332
1552
1772
1992
2212
2432
2652
2872
3092
3312
3532
3752
3972
4192
4412
4632
4852
5072
5292
5512
5732
5952
6172
6392
6612
6832
7052
7272
7492
7712
7932
8152
8372
8592
8812
9032
9252
9472
9692
9912
10132
10352
10572
10792
11012
11232
11452
11672
11892
12112
12332
12552
12772
12992
13212
13432
13652
13872
14092
14312
14532
14752
14972
15192
15412
15632
15852
16072
16292
16512
16732
16952
17172
17392
13
233
453
673
893
1113
1333
1553
1773
1993
2213
2433
2653
2873
3093
3313
3533
3753
3973
4193
4413
4633
4853
5073
5293
5513
5733
5953
6173
6393
6613
6833
7053
7273
7493
7713
7933
8153
8373
8593
8813
9033
9253
9473
9693
9913
10133
10353
10573
10793
11013
11233
11453
11673
11893
12113
12333
12553
12773
12993
13213
13433
13653
13873
14093
14313
14533
14753
14973
15193
15413
15633
15853
16073
16293
16513
16733
16953
17173
17393
14
234
454
674
894
1114
1334
1554
1774
1994
2214
2434
2654
2874
3094
3314
3534
3754
3974
4194
4414
4634
4854
5074
5294
5514
5734
5954
6174
6394
6614
6834
7054
7274
7494
7714
7934
8154
8374
8594
8814
9034
9254
9474
9694
9914
10134
10354
10574
10794
11014
11234
11454
11674
11894
12114
12334
12554
12774
12994
13214
13434
13654
13874
14094
14314
14534
14754
14974
15194
15414
15634
15854
16074
16294
16514
16734
16954
17174
17394
15
235
455
675
895
1115
1335
1555
1775
1995
2215
2435
2655
2875
3095
3315
3535
3755
3975
4195
4415
4635
4855
5075
5295
5515
5735
5955
6175
6395
6615
6835
7055
7275
7495
7715
7935
8155
8375
8595
8815
9035
9255
9475
9695
9915
10135
10355
10575
10795
11015
11235
11455
11675
11895
12115
12335
12555
12775
12995
13215
13435
13655
13875
14095
14315
14535
14755
14975
15195
15415
15635
15855
16075
16295
16515
16735
16955
17175
17395
16
236
456
676
896
1116
1336
1556
1776
1996
2216
2436
2656
2876
3096
3316
3536
3756
3976
4196
4416
4636
4856
5076
5296
5516
5736
5956
6176
6396
6616
6836
7056
7276
7496
7716
7936
8156
8376
8596
8816
9036
9256
9476
9696
9916
10136
10356
10576
10796
11016
11236
11456
11676
11896
12116
12336
12556
12776
12996
13216
13436
13656
13876
14096
14316
14536
14756
14976
15196
15416
15636
15856
16076
16296
16516
16736
16956
17176
17396
17
237
457
677
897
1117
1337
1557
1777
1997
2217
2437
2657
2877
3097
3317
3537
3757
3977
4197
4417
4637
4857
5077
5297
5517
5737
5957
6177
6397
6617
6837
7057
7277
7497
7717
7937
8157
8377
8597
8817
9037
9257
9477
9697
9917
10137
10357
10577
10797
11017
11237
11457
11677
11897
12117
12337
12557
12777
12997
13217
13437
13657
13877
14097
14317
14537
14757
14977
15197
15417
15637
15857
16077
16297
16517
16737
16957
17177
17397
18
238
458
678
898
1118
1338
1558
1778
1998
2218
2438
2658
2878
3098
3318
3538
3758
3978
4198
4418
4638
4858
5078
5298
5518
5738
5958
6178
6398
6618
6838
7058
7278
7498
7718
7938
8158
8378
8598
8818
9038
9258
9478
9698
9918
10138
10358
10578
10798
11018
11238
11458
11678
11898
12118
12338
12558
12778
12998
13218
13438
13658
13878
14098
14318
14538
14758
14978
15198
15418
15638
15858
16078
16298
16518
16738
16958
17178
17398
19
239
459
679
899
1119
1339
1559
1779
1999
2219
2439
2659
2879
3099
3319
3539
3759
3979
4199
4419
4639
4859
5079
5299
5519
5739
5959
6179
6399
6619
6839
7059
7279
7499
7719
7939
8159
8379
8599
8819
9039
9259
9479
9699
9919
10139
10359
10579
10799
11019
11239
11459
11679
11899
12119
12339
12559
12779
12999
13219
13439
13659
13879
14099
14319
14539
14759
14979
15199
15419
15639
15859
16079
16299
16519
16739
16959
17179
17399
20
240
460
680
900
1120
1340
1560
1780
2000
2220
2440
2660
2880
3100
3320
3540
3760
3980
4200
4420
4640
4860
5080
5300
5520
5740
5960
6180
6400
6620
6840
7060
7280
7500
7720
7940
8160
8380
8600
8820
9040
9260
9480
9700
9920
10140
10360
10580
10800
11020
11240
11460
11680
11900
12120
12340
12560
12780
13000
13220
13440
13660
13880
14100
14320
14540
14760
14980
15200
15420
15640
15860
16080
16300
16520
16740
16960
17180
17400
21
241
461
681
901
1121
1341
1561
1781
2001
2221
2441
2661
2881
3101
3321
3541
3761
3981
4201
4421
4641
4861
5081
5301
5521
5741
5961
6181
6401
6621
6841
7061
7281
7501
7721
7941
8161
8381
8601
8821
9041
9261
9481
9701
9921
10141
10361
10581
10801
11021
11241
11461
11681
11901
12121
12341
12561
12781
13001
13221
13441
13661
13881
14101
14321
14541
14761
14981
15201
15421
15641
15861
16081
16301
16521
16741
16961
17181
17401
35200
35560
35920
36280
36640
37000
37360
37720
38080
38440
38800
39160
39520
39880
40240
40600
40960
41320
41680
42040
42400
42760
43120
43480
43840
44200
44560
44920
45280
45640
46000
46360
46720
47080
47440
47800
48160
48520
48880
49240
49600
49960
50320
50680
51040
51400
51760
52120
52480
52840
53200
53560
53920
54280
54640
55000
55360
55720
56080
56440
56800
57160
57520
57880
58240
58600
58960
59320
59680
60040
60400
60760
61120
61480
61840
62200
62560
62920
63280
63640
35201
35561
35921
36281
36641
37001
37361
37721
38081
38441
38801
39161
39521
39881
40241
40601
40961
41321
41681
42041
42401
42761
43121
43481
43841
44201
44561
44921
45281
45641
46001
46361
46721
47081
47441
47801
48161
48521
48881
49241
49601
49961
50321
50681
51041
51401
51761
52121
52481
52841
53201
53561
53921
54281
54641
55001
55361
55721
56081
56441
56801
57161
57521
57881
58241
58601
58961
59321
59681
60041
60401
60761
61121
61481
61841
62201
62561
62921
63281
63641
35202
35562
35922
36282
36642
37002
37362
37722
38082
38442
38802
39162
39522
39882
40242
40602
40962
41322
41682
42042
42402
42762
43122
43482
43842
44202
44562
44922
45282
45642
46002
46362
46722
47082
47442
47802
48162
48522
48882
49242
49602
49962
50322
50682
51042
51402
51762
52122
52482
52842
53202
53562
53922
54282
54642
55002
55362
55722
56082
56442
56802
57162
57522
57882
58242
58602
58962
59322
59682
60042
60402
60762
61122
61482
61842
62202
62562
62922
63282
63642
35203
35563
35923
36283
36643
37003
37363
37723
38083
38443
38803
39163
39523
39883
40243
40603
40963
41323
41683
42043
42403
42763
43123
43483
43843
44203
44563
44923
45283
45643
46003
46363
46723
47083
47443
47803
48163
48523
48883
49243
49603
49963
50323
50683
51043
51403
51763
52123
52483
52843
53203
53563
53923
54283
54643
55003
55363
55723
56083
56443
56803
57163
57523
57883
58243
58603
58963
59323
59683
60043
60403
60763
61123
61483
61843
62203
62563
62923
63283
63643
35204
35564
35924
36284
36644
37004
37364
37724
38084
38444
38804
39164
39524
39884
40244
40604
40964
41324
41684
42044
42404
42764
43124
43484
43844
44204
44564
44924
45284
45644
46004
46364
46724
47084
47444
47804
48164
48524
48884
49244
49604
49964
50324
50684
51044
51404
51764
52124
52484
52844
53204
53564
53924
54284
54644
55004
55364
55724
56084
56444
56804
57164
57524
57884
58244
58604
58964
59324
59684
60044
60404
60764
61124
61484
61844
62204
62564
62924
63284
63644
35205
35565
35925
36285
36645
37005
37365
37725
38085
38445
38805
39165
39525
39885
40245
40605
40965
41325
41685
42045
42405
42765
43125
43485
43845
44205
44565
44925
45285
45645
46005
46365
46725
47085
47445
47805
48165
48525
48885
49245
49605
49965
50325
50685
51045
51405
51765
52125
52485
52845
53205
53565
53925
54285
54645
55005
55365
55725
56085
56445
56805
57165
57525
57885
58245
58605
58965
59325
59685
60045
60405
60765
61125
61485
61845
62205
62565
62925
63285
63645
35206
35566
35926
36286
36646
37006
37366
37726
38086
38446
38806
39166
39526
39886
40246
40606
40966
41326
41686
42046
42406
42766
43126
43486
43846
44206
44566
44926
45286
45646
46006
46366
46726
47086
47446
47806
48166
48526
48886
49246
49606
49966
50326
50686
51046
51406
51766
52126
52486
52846
53206
53566
53926
54286
54646
55006
55366
55726
56086
56446
56806
57166
57526
57886
58246
58606
58966
59326
59686
60046
60406
60766
61126
61486
61846
62206
62566
62926
63286
63646
35207
35567
35927
36287
36647
37007
37367
37727
38087
38447
38807
39167
39527
39887
40247
40607
40967
41327
41687
42047
42407
42767
43127
43487
43847
44207
44567
44927
45287
45647
46007
46367
46727
47087
47447
47807
48167
48527
48887
49247
49607
49967
50327
50687
51047
51407
51767
52127
52487
52847
53207
53567
53927
54287
54647
55007
55367
55727
56087
56447
56807
57167
57527
57887
58247
58607
58967
59327
59687
60047
60407
60767
61127
61487
61847
62207
62567
62927
63287
63647
35208
35568
35928
36288
36648
37008
37368
37728
38088
38448
38808
39168
39528
39888
40248
40608
40968
41328
41688
42048
42408
42768
43128
43488
43848
44208
44568
44928
45288
45648
46008
46368
46728
47088
47448
47808
48168
48528
48888
49248
49608
49968
50328
50688
51048
51408
51768
52128
52488
52848
53208
53568
53928
54288
54648
55008
55368
55728
56088
56448
56808
57168
57528
57888
58248
58608
58968
59328
59688
60048
60408
60768
61128
61488
61848
62208
62568
62928
63288
63648
35209
35569
35929
36289
36649
37009
37369
37729
38089
38449
38809
39169
39529
39889
40249
40609
40969
41329
41689
42049
42409
42769
43129
43489
43849
44209
44569
44929
45289
45649
46009
46369
46729
47089
47449
47809
48169
48529
48889
49249
49609
49969
50329
50689
51049
51409
51769
52129
52489
52849
53209
53569
53929
54289
54649
55009
55369
55729
56089
56449
56809
57169
57529
57889
58249
58609
58969
59329
59689
60049
60409
60769
61129
61489
61849
62209
62569
62929
63289
63649
35210
35570
35930
36290
36650
37010
37370
37730
38090
38450
38810
39170
39530
39890
40250
40610
40970
41330
41690
42050
42410
42770
43130
43490
43850
44210
44570
44930
45290
45650
46010
46370
46730
47090
47450
47810
48170
48530
48890
49250
49610
49970
50330
50690
51050
51410
51770
52130
52490
52850
53210
53570
53930
54290
54650
55010
55370
55730
56090
56450
56810
57170
57530
57890
58250
58610
58970
59330
59690
60050
60410
60770
61130
61490
61850
62210
62570
62930
63290
63650
35211
35571
35931
36291
36651
37011
37371
37731
38091
38451
38811
39171
39531
39891
40251
40611
40971
41331
41691
42051
42411
42771
43131
43491
43851
44211
44571
44931
45291
45651
46011
46371
46731
47091
47451
47811
48171
48531
48891
49251
49611
49971
50331
50691
51051
51411
51771
52131
52491
52851
53211
53571
53931
54291
54651
55011
55371
55731
56091
56451
56811
57171
57531
57891
58251
58611
58971
59331
59691
60051
60411
60771
61131
61491
61851
62211
62571
62931
63291
63651
35212
35572
35932
36292
36652
37012
37372
37732
38092
38452
38812
39172
39532
39892
40252
40612
40972
41332
41692
42052
42412
42772
43132
43492
43852
44212
44572
44932
45292
45652
46012
46372
46732
47092
47452
47812
48172
48532
48892
49252
49612
49972
50332
50692
51052
51412
51772
52132
52492
52852
53212
53572
53932
54292
54652
55012
55372
55732
56092
56452
56812
57172
57532
57892
58252
58612
58972
59332
59692
60052
60412
60772
61132
61492
61852
62212
62572
62932
63292
63652
35213
35573
35933
36293
36653
37013
37373
37733
38093
38453
38813
39173
39533
39893
40253
40613
40973
41333
41693
42053
42413
42773
43133
43493
43853
44213
44573
44933
45293
45653
46013
46373
46733
47093
47453
47813
48173
48533
48893
49253
49613
49973
50333
50693
51053
51413
51773
52133
52493
52853
53213
53573
53933
54293
54653
55013
55373
55733
56093
56453
56813
57173
57533
57893
58253
58613
58973
59333
59693
60053
60413
60773
61133
61493
61853
62213
62573
62933
63293
63653
35214
35574
35934
36294
36654
37014
37374
37734
38094
38454
38814
39174
39534
39894
40254
40614
40974
41334
41694
42054
42414
42774
43134
43494
43854
44214
44574
44934
45294
45654
46014
46374
46734
47094
47454
47814
48174
48534
48894
49254
49614
49974
50334
50694
51054
51414
51774
52134
52494
52854
53214
53574
53934
54294
54654
55014
55374
55734
56094
56454
56814
57174
57534
57894
58254
58614
58974
59334
59694
60054
60414
60774
61134
61494
61854
62214
62574
62934
63294
63654
35215
35575
35935
36295
36655
37015
37375
37735
38095
38455
38815
39175
39535
39895
40255
40615
40975
41335
41695
42055
42415
42775
43135
43495
43855
44215
44575
44935
45295
45655
46015
46375
46735
47095
47455
47815
48175
48535
48895
49255
49615
49975
50335
50695
51055
51415
51775
52135
52495
52855
53215
53575
53935
54295
54655
55015
55375
55735
56095
56455
56815
57175
57535
57895
58255
58615
58975
59335
59695
60055
60415
60775
61135
61495
61855
62215
62575
62935
63295
63655
35216
35576
35936
36296
36656
37016
37376
37736
38096
38456
38816
39176
39536
39896
40256
40616
40976
41336
41696
42056
42416
42776
43136
43496
43856
44216
44576
44936
45296
45656
46016
46376
46736
47096
47456
47816
48176
48536
48896
49256
49616
49976
50336
50696
51056
51416
51776
52136
52496
52856
53216
53576
53936
54296
54656
55016
55376
55736
56096
56456
56816
57176
57536
57896
58256
58616
58976
59336
59696
60056
60416
60776
61136
61496
61856
62216
62576
62936
63296
63656
35217
35577
35937
36297
36657
37017
37377
37737
38097
38457
38817
39177
39537
39897
40257
40617
40977
41337
41697
42057
42417
42777
43137
43497
43857
44217
44577
44937
45297
45657
46017
46377
46737
47097
47457
47817
48177
48537
48897
49257
49617
49977
50337
50697
51057
51417
51777
52137
52497
52857
53217
53577
53937
54297
54657
55017
55377
55737
56097
56457
56817
57177
57537
57897
58257
58617
58977
59337
59697
60057
60417
60777
61137
61497
61857
62217
62577
62937
63297
63657
35218
35578
35938
36298
36658
37018
37378
37738
38098
38458
38818
39178
39538
39898
40258
40618
40978
41338
41698
42058
42418
42778
43138
43498
43858
44218
44578
44938
45298
45658
46018
46378
46738
47098
47458
47818
48178
48538
48898
49258
49618
49978
50338
50698
51058
51418
51778
52138
52498
52858
53218
53578
53938
54298
54658
55018
55378
55738
56098
56458
56818
57178
57538
57898
58258
58618
58978
59338
59698
60058
60418
60778
61138
61498
61858
62218
62578
62938
63298
63658
35219
35579
35939
36299
36659
37019
37379
37739
38099
38459
38819
39179
39539
39899
40259
40619
40979
41339
41699
42059
42419
42779
43139
43499
43859
44219
44579
44939
45299
45659
46019
46379
46739
47099
47459
47819
48179
48539
48899
49259
49619
49979
50339
50699
51059
51419
51779
52139
52499
52859
53219
53579
53939
54299
54659
55019
55379
55739
56099
56459
56819
57179
57539
57899
58259
58619
58979
59339
59699
60059
60419
60779
61139
61499
61859
62219
62579
62939
63299
63659
35220
35580
35940
36300
36660
37020
37380
37740
38100
38460
38820
39180
39540
39900
40260
40620
40980
41340
41700
42060
42420
42780
43140
43500
43860
44220
44580
44940
45300
45660
46020
46380
46740
47100
47460
47820
48180
48540
48900
49260
49620
49980
50340
50700
51060
51420
51780
52140
52500
52860
53220
53580
53940
54300
54660
55020
55380
55740
56100
56460
56820
57180
57540
57900
58260
58620
58980
59340
59700
60060
60420
60780
61140
61500
61860
62220
62580
62940
63300
63660
35221
35581
35941
36301
36661
37021
37381
37741
38101
38461
38821
39181
39541
39901
40261
40621
40981
41341
41701
42061
42421
42781
43141
43501
43861
44221
44581
44941
45301
45661
46021
46381
46741
47101
47461
47821
48181
48541
48901
49261
49621
49981
50341
50701
51061
51421
51781
52141
52501
52861
53221
53581
53941
54301
54661
55021
55381
55741
56101
56461
56821
57181
57541
57901
58261
58621
58981
59341
59701
60061
60421
60781
61141
61501
61861
62221
62581
62941
63301
63661
35222
35582
35942
36302
36662
37022
37382
37742
38102
38462
38822
39182
39542
39902
40262
40622
40982
41342
41702
42062
42422
42782
43142
43502
43862
44222
44582
44942
45302
45662
46022
46382
46742
47102
47462
47822
48182
48542
48902
49262
49622
49982
50342
50702
51062
51422
51782
52142
52502
52862
53222
53582
53942
54302
54662
55022
55382
55742
56102
56462
56822
57182
57542
57902
58262
58622
58982
59342
59702
60062
60422
60782
61142
61502
61862
62222
62582
62942
63302
63662
35223
35583
35943
36303
36663
37023
37383
37743
38103
38463
38823
39183
39543
39903
40263
40623
40983
41343
41703
42063
42423
42783
43143
43503
43863
44223
44583
44943
45303
45663
46023
46383
46743
47103
47463
47823
48183
48543
48903
49263
49623
49983
50343
50703
51063
51423
51783
52143
52503
52863
53223
53583
53943
54303
54663
55023
55383
55743
56103
56463
56823
57183
57543
57903
58263
58623
58983
59343
59703
60063
60423
60783
61143
61503
61863
62223
62583
62943
63303
63663
35224
35584
35944
36304
36664
37024
37384
37744
38104
38464
38824
39184
39544
39904
40264
40624
40984
41344
41704
42064
42424
42784
43144
43504
43864
44224
44584
44944
45304
45664
46024
46384
46744
47104
47464
47824
48184
48544
48904
49264
49624
49984
50344
50704
51064
51424
51784
52144
52504
52864
53224
53584
53944
54304
54664
55024
55384
55744
56104
56464
56824
57184
57544
57904
58264
58624
58984
59344
59704
60064
60424
60784
61144
61504
61864
62224
62584
62944
63304
63664
35225
35585
35945
36305
36665
37025
37385
37745
38105
38465
38825
39185
39545
39905
40265
40625
40985
41345
41705
42065
42425
42785
43145
43505
43865
44225
44585
44945
45305
45665
46025
46385
46745
47105
47465
47825
48185
48545
48905
49265
49625
49985
50345
50705
51065
51425
51785
52145
52505
52865
53225
53585
53945
54305
54665
55025
55385
55745
56105
56465
56825
57185
57545
57905
58265
58625
58985
59345
59705
60065
60425
60785
61145
61505
61865
62225
62585
62945
63305
63665
35226
35586
35946
36306
36666
37026
37386
37746
38106
38466
38826
39186
39546
39906
40266
40626
40986
41346
41706
42066
42426
42786
43146
43506
43866
44226
44586
44946
45306
45666
46026
46386
46746
47106
47466
47826
48186
48546
48906
49266
49626
49986
50346
50706
51066
51426
51786
52146
52506
52866
53226
53586
53946
54306
54666
55026
55386
55746
56106
56466
56826
57186
57546
57906
58266
58626
58986
59346
59706
60066
60426
60786
61146
61506
61866
62226
62586
62946
63306
63666
35227
35587
35947
36307
36667
37027
37387
37747
38107
38467
38827
39187
39547
39907
40267
40627
40987
41347
41707
42067
42427
42787
43147
43507
43867
44227
44587
44947
45307
45667
46027
46387
46747
47107
47467
47827
48187
48547
48907
49267
49627
49987
50347
50707
51067
51427
51787
52147
52507
52867
53227
53587
53947
54307
54667
55027
55387
55747
56107
56467
56827
57187
57547
57907
58267
58627
58987
59347
59707
60067
60427
60787
61147
61507
61867
62227
62587
62947
63307
63667
35228
35588
35948
36308
36668
37028
37388
37748
38108
38468
38828
39188
39548
39908
40268
40628
40988
41348
41708
42068
42428
42788
43148
43508
43868
44228
44588
44948
45308
45668
46028
46388
46748
47108
47468
47828
48188
48548
48908
49268
49628
49988
50348
50708
51068
51428
51788
52148
52508
52868
53228
53588
53948
54308
54668
55028
55388
55748
56108
56468
56828
57188
57548
57908
58268
58628
58988
59348
59708
60068
60428
60788
61148
61508
61868
62228
62588
62948
63308
63668
35229
35589
35949
36309
36669
37029
37389
37749
38109
38469
38829
39189
39549
39909
40269
40629
40989
41349
41709
42069
42429
42789
43149
43509
43869
44229
44589
44949
45309
45669
46029
46389
46749
47109
47469
47829
48189
48549
48909
49269
49629
49989
50349
50709
51069
51429
51789
52149
52509
52869
53229
53589
53949
54309
54669
55029
55389
55749
56109
56469
56829
57189
57549
57909
58269
58629
58989
59349
59709
60069
60429
60789
61149
61509
61869
62229
62589
62949
63309
63669
35230
35590
35950
36310
36670
37030
37390
37750
38110
38470
38830
39190
39550
39910
40270
40630
40990
41350
41710
42070
42430
42790
43150
43510
43870
44230
44590
44950
45310
45670
46030
46390
46750
47110
47470
47830
48190
48550
48910
49270
49630
49990
50350
50710
51070
51430
51790
52150
52510
52870
53230
53590
53950
54310
54670
55030
55390
55750
56110
56470
56830
57190
57550
57910
58270
58630
58990
59350
59710
60070
60430
60790
61150
61510
61870
62230
62590
62950
63310
63670
35231
35591
35951
36311
36671
37031
37391
37751
38111
38471
38831
39191
39551
39911
40271
40631
40991
41351
41711
42071
42431
42791
43151
43511
43871
44231
44591
44951
45311
45671
46031
46391
46751
47111
47471
47831
48191
48551
48911
49271
49631
49991
50351
50711
51071
51431
51791
52151
52511
52871
53231
53591
53951
54311
54671
55031
55391
55751
56111
56471
56831
57191
57551
57911
58271
58631
58991
59351
59711
60071
60431
60791
61151
61511
61871
62231
62591
62951
63311
63671
35232
35592
35952
36312
36672
37032
37392
37752
38112
38472
38832
39192
39552
39912
40272
40632
40992
41352
41712
42072
42432
42792
43152
43512
43872
44232
44592
44952
45312
45672
46032
46392
46752
47112
47472
47832
48192
48552
48912
49272
49632
49992
50352
50712
51072
51432
51792
52152
52512
52872
53232
53592
53952
54312
54672
55032
55392
55752
56112
56472
56832
57192
57552
57912
58272
58632
58992
59352
59712
60072
60432
60792
61152
61512
61872
62232
62592
62952
63312
63672
35233
35593
35953
36313
36673
37033
37393
37753
38113
38473
38833
39193
39553
39913
40273
40633
40993
41353
41713
42073
42433
42793
43153
43513
43873
44233
44593
44953
45313
45673
46033
46393
46753
47113
47473
47833
48193
48553
48913
49273
49633
49993
50353
50713
51073
51433
51793
52153
52513
52873
53233
53593
53953
54313
54673
55033
55393
55753
56113
56473
56833
57193
57553
57913
58273
58633
58993
59353
59713
60073
60433
60793
61153
61513
61873
62233
62593
62953
63313
63673
35234
35594
35954
36314
36674
37034
37394
37754
38114
38474
38834
39194
39554
39914
40274
40634
40994
41354
41714
42074
42434
42794
43154
43514
43874
44234
44594
44954
45314
45674
46034
46394
46754
47114
47474
47834
48194
48554
48914
49274
49634
49994
50354
50714
51074
51434
51794
52154
52514
52874
53234
53594
53954
54314
54674
55034
55394
55754
56114
56474
56834
57194
57554
57914
58274
58634
58994
59354
59714
60074
60434
60794
61154
61514
61874
62234
62594
62954
63314
63674
35235
35595
35955
36315
36675
37035
37395
37755
38115
38475
38835
39195
39555
39915
40275
40635
40995
41355
41715
42075
42435
42795
43155
43515
43875
44235
44595
44955
45315
45675
46035
46395
46755
47115
47475
47835
48195
48555
48915
49275
49635
49995
50355
50715
51075
51435
51795
52155
52515
52875
53235
53595
53955
54315
54675
55035
55395
55755
56115
56475
56835
57195
57555
57915
58275
58635
58995
59355
59715
60075
60435
60795
61155
61515
61875
62235
62595
62955
63315
63675
17600
17820
18040
18260
18480
18700
18920
19140
19360
19580
19800
20020
20240
20460
20680
20900
21120
21340
21560
21780
22000
22220
22440
22660
22880
23100
23320
23540
23760
23980
24200
24420
24640
24860
25080
25300
25520
25740
25960
26180
26400
26620
26840
27060
27280
27500
27720
27940
28160
28380
28600
28820
29040
29260
29480
29700
29920
30140
30360
30580
30800
31020
31240
31460
31680
31900
32120
32340
32560
32780
33000
33220
33440
33660
33880
34100
34320
34540
34760
34980
17601
17821
18041
18261
18481
18701
18921
19141
19361
19581
19801
20021
20241
20461
20681
20901
21121
21341
21561
21781
22001
22221
22441
22661
22881
23101
23321
23541
23761
23981
24201
24421
24641
24861
25081
25301
25521
25741
25961
26181
26401
26621
26841
27061
27281
27501
27721
27941
28161
28381
28601
28821
29041
29261
29481
29701
29921
30141
30361
30581
30801
31021
31241
31461
31681
31901
32121
32341
32561
32781
33001
33221
33441
33661
33881
34101
34321
34541
34761
34981
17602
17822
18042
18262
18482
18702
18922
19142
19362
19582
19802
20022
20242
20462
20682
20902
21122
21342
21562
21782
22002
22222
22442
22662
22882
23102
23322
23542
23762
23982
24202
24422
24642
24862
25082
25302
25522
25742
25962
26182
26402
26622
26842
27062
27282
27502
27722
27942
28162
28382
28602
28822
29042
29262
29482
29702
29922
30142
30362
30582
30802
31022
31242
31462
31682
31902
32122
32342
32562
32782
33002
33222
33442
33662
33882
34102
34322
34542
34762
34982
17603
17823
18043
18263
18483
18703
18923
19143
19363
19583
19803
20023
20243
20463
20683
20903
21123
21343
21563
21783
22003
22223
22443
22663
22883
23103
23323
23543
23763
23983
24203
24423
24643
24863
25083
25303
25523
25743
25963
26183
26403
26623
26843
27063
27283
27503
27723
27943
28163
28383
28603
28823
29043
29263
29483
29703
29923
30143
30363
30583
30803
31023
31243
31463
31683
31903
32123
32343
32563
32783
33003
33223
33443
33663
33883
34103
34323
34543
34763
34983
17604
17824
18044
18264
18484
18704
18924
19144
19364
19584
19804
20024
20244
20464
20684
20904
21124
21344
21564
21784
22004
22224
22444
22664
22884
23104
23324
23544
23764
23984
24204
24424
24644
24864
25084
25304
25524
25744
25964
26184
26404
26624
26844
27064
27284
27504
27724
27944
28164
28384
28604
28824
29044
29264
29484
29704
29924
30144
30364
30584
30804
31024
31244
31464
31684
31904
32124
32344
32564
32784
33004
33224
33444
33664
33884
34104
34324
34544
34764
34984
17605
17825
18045
18265
18485
18705
18925
19145
19365
19585
19805
20025
20245
20465
20685
20905
21125
21345
21565
21785
22005
22225
22445
22665
22885
23105
23325
23545
23765
23985
24205
24425
24645
24865
25085
25305
25525
25745
25965
26185
26405
26625
26845
27065
27285
27505
27725
27945
28165
28385
28605
28825
29045
29265
29485
29705
29925
30145
30365
30585
30805
31025
31245
31465
31685
31905
32125
32345
32565
32785
33005
33225
33445
33665
33885
34105
34325
34545
34765
34985
17606
17826
18046
18266
18486
18706
18926
19146
19366
19586
19806
20026
20246
20466
20686
20906
21126
21346
21566
21786
22006
22226
22446
22666
22886
23106
23326
23546
23766
23986
24206
24426
24646
24866
25086
25306
25526
25746
25966
26186
26406
26626
26846
27066
27286
27506
27726
27946
28166
28386
28606
28826
29046
29266
29486
29706
29926
30146
30366
30586
30806
31026
31246
31466
31686
31906
32126
32346
32566
32786
33006
33226
33446
33666
33886
34106
34326
34546
34766
34986
17607
17827
18047
18267
18487
18707
18927
19147
19367
19587
19807
20027
20247
20467
20687
20907
21127
21347
21567
21787
22007
22227
22447
22667
22887
23107
23327
23547
23767
23987
24207
24427
24647
24867
25087
25307
25527
25747
25967
26187
26407
26627
26847
27067
27287
27507
27727
27947
28167
28387
28607
28827
29047
29267
29487
29707
29927
30147
30367
30587
30807
31027
31247
31467
31687
31907
32127
32347
32567
32787
33007
33227
33447
33667
33887
34107
34327
34547
34767
34987
17608
17828
18048
18268
18488
18708
18928
19148
19368
19588
19808
20028
20248
20468
20688
20908
21128
21348
21568
21788
22008
22228
22448
22668
22888
23108
23328
23548
23768
23988
24208
24428
24648
24868
25088
25308
25528
25748
25968
26188
26408
26628
26848
27068
27288
27508
27728
27948
28168
28388
28608
28828
29048
29268
29488
29708
29928
30148
30368
30588
30808
31028
31248
31468
31688
31908
32128
32348
32568
32788
33008
33228
33448
33668
33888
34108
34328
34548
34768
34988
17609
17829
18049
18269
18489
18709
18929
19149
19369
19589
19809
20029
20249
20469
20689
20909
21129
21349
21569
21789
22009
22229
22449
22669
22889
23109
23329
23549
23769
23989
24209
24429
24649
24869
25089
25309
25529
25749
25969
26189
26409
26629
26849
27069
27289
27509
27729
27949
28169
28389
28609
28829
29049
29269
29489
29709
29929
30149
30369
30589
30809
31029
31249
31469
31689
31909
32129
32349
32569
32789
33009
33229
33449
33669
33889
34109
34329
34549
34769
34989
17610
17830
18050
18270
18490
18710
18930
19150
19370
19590
19810
20030
20250
20470
20690
20910
21130
21350
21570
21790
22010
22230
22450
22670
22890
23110
23330
23550
23770
23990
24210
24430
24650
24870
25090
25310
25530
25750
25970
26190
26410
26630
26850
27070
27290
27510
27730
27950
28170
28390
28610
28830
29050
29270
29490
29710
29930
30150
30370
30590
30810
31030
31250
31470
31690
31910
32130
32350
32570
32790
33010
33230
33450
33670
33890
34110
34330
34550
34770
34990
17611
17831
18051
18271
18491
18711
18931
19151
19371
19591
19811
20031
20251
20471
20691
20911
21131
21351
21571
21791
22011
22231
22451
22671
22891
23111
23331
23551
23771
23991
24211
24431
24651
24871
25091
25311
25531
25751
25971
26191
26411
26631
26851
27071
27291
27511
27731
27951
28171
28391
28611
28831
29051
29271
29491
29711
29931
30151
30371
30591
30811
31031
31251
31471
31691
31911
32131
32351
32571
32791
33011
33231
33451
33671
33891
34111
34331
34551
34771
34991
17612
17832
18052
18272
18492
18712
18932
19152
19372
19592
19812
20032
20252
20472
20692
20912
21132
21352
21572
21792
22012
22232
22452
22672
22892
23112
23332
23552
23772
23992
24212
24432
24652
24872
25092
25312
25532
25752
25972
26192
26412
26632
26852
27072
27292
27512
27732
27952
28172
28392
28612
28832
29052
29272
29492
29712
29932
30152
30372
30592
30812
31032
31252
31472
31692
31912
32132
32352
32572
32792
33012
33232
33452
33672
33892
34112
34332
34552
34772
34992
17613
17833
18053
18273
18493
18713
18933
19153
19373
19593
19813
20033
20253
20473
20693
20913
21133
21353
21573
21793
22013
22233
22453
22673
22893
23113
23333
23553
23773
23993
24213
24433
24653
24873
25093
25313
25533
25753
25973
26193
26413
26633
26853
27073
27293
27513
27733
27953
28173
28393
28613
28833
29053
29273
29493
29713
29933
30153
30373
30593
30813
31033
31253
31473
31693
31913
32133
32353
32573
32793
33013
33233
33453
33673
33893
34113
34333
34553
34773
34993
17614
17834
18054
18274
18494
18714
18934
19154
19374
19594
19814
20034
20254
20474
20694
20914
21134
21354
21574
21794
22014
22234
22454
22674
22894
23114
23334
23554
23774
23994
24214
24434
24654
24874
25094
25314
25534
25754
25974
26194
26414
26634
26854
27074
27294
27514
27734
27954
28174
28394
28614
28834
29054
29274
29494
29714
29934
30154
30374
30594
30814
31034
31254
31474
31694
31914
32134
32354
32574
32794
33014
33234
33454
33674
33894
34114
34334
34554
34774
34994
17615
17835
18055
18275
18495
18715
18935
19155
19375
19595
19815
20035
20255
20475
20695
20915
21135
21355
21575
21795
22015
22235
22455
22675
22895
23115
23335
23555
23775
23995
24215
24435
24655
24875
25095
25315
25535
25755
25975
26195
26415
26635
26855
27075
27295
27515
27735
27955
28175
28395
28615
28835
29055
29275
29495
29715
29935
30155
30375
30595
30815
31035
31255
31475
31695
31915
32135
32355
32575
32795
33015
33235
33455
33675
33895
34115
34335
34555
34775
34995
17616
17836
18056
18276
18496
18716
18936
19156
19376
19596
19816
20036
20256
20476
20696
20916
21136
21356
21576
21796
22016
22236
22456
22676
22896
23116
23336
23556
23776
23996
24216
24436
24656
24876
25096
25316
25536
25756
25976
26196
26416
26636
26856
27076
27296
27516
27736
27956
28176
28396
28616
28836
29056
29276
29496
29716
29936
30156
30376
30596
30816
31036
31256
31476
31696
31916
32136
32356
32576
32796
33016
33236
33456
33676
33896
34116
34336
34556
34776
34996
17617
17837
18057
18277
18497
18717
18937
19157
19377
19597
19817
20037
20257
20477
20697
20917
21137
21357
21577
21797
22017
22237
22457
22677
22897
23117
23337
23557
23777
23997
24217
24437
24657
24877
25097
25317
25537
25757
25977
26197
26417
26637
26857
27077
27297
27517
27737
27957
28177
28397
28617
28837
29057
29277
29497
29717
29937
30157
30377
30597
30817
31037
31257
31477
31697
31917
32137
32357
32577
32797
33017
33237
33457
33677
33897
34117
34337
34557
34777
34997
17618
17838
18058
18278
18498
18718
18938
19158
19378
19598
19818
20038
20258
20478
20698
20918
21138
21358
21578
21798
22018
22238
22458
22678
22898
23118
23338
23558
23778
23998
24218
24438
24658
24878
25098
25318
25538
25758
25978
26198
26418
26638
26858
27078
27298
27518
27738
27958
28178
28398
28618
28838
29058
29278
29498
29718
29938
30158
30378
30598
30818
31038
31258
31478
31698
31918
32138
32358
32578
32798
33018
33238
33458
33678
33898
34118
34338
34558
34778
34998
17619
17839
18059
18279
18499
18719
18939
19159
19379
19599
19819
20039
20259
20479
20699
20919
21139
21359
21579
21799
22019
22239
22459
22679
22899
23119
23339
23559
23779
23999
24219
24439
24659
24879
25099
25319
25539
25759
25979
26199
26419
26639
26859
27079
27299
27519
27739
27959
28179
28399
28619
28839
29059
29279
29499
29719
29939
30159
30379
30599
30819
31039
31259
31479
31699
31919
32139
32359
32579
32799
33019
33239
33459
33679
33899
34119
34339
34559
34779
34999
17620
17840
18060
18280
18500
18720
18940
19160
19380
19600
19820
20040
20260
20480
20700
20920
21140
21360
21580
21800
22020
22240
22460
22680
22900
23120
23340
23560
23780
24000
24220
24440
24660
24880
25100
25320
25540
25760
25980
26200
26420
26640
26860
27080
27300
27520
27740
27960
28180
28400
28620
28840
29060
29280
29500
29720
29940
30160
30380
30600
30820
31040
31260
31480
31700
31920
32140
32360
32580
32800
33020
33240
33460
33680
33900
34120
34340
34560
34780
35000
17621
17841
18061
18281
18501
18721
18941
19161
19381
19601
19821
20041
20261
20481
20701
20921
21141
21361
21581
21801
22021
22241
22461
22681
22901
23121
23341
23561
23781
24001
24221
24441
24661
24881
25101
25321
25541
25761
25981
26201
26421
26641
26861
27081
27301
27521
27741
27961
28181
28401
28621
28841
29061
29281
29501
29721
29941
30161
30381
30601
30821
31041
31261
31481
31701
31921
32141
32361
32581
32801
33021
33241
33461
33681
33901
34121
34341
34561
34781
35001
198
418
638
858
1078
1298
1518
1738
1958
2178
2398
2618
2838
3058
3278
3498
3718
3938
4158
4378
4598
4818
5038
5258
5478
5698
5918
6138
6358
6578
6798
7018
7238
7458
7678
7898
8118
8338
8558
8778
8998
9218
9438
9658
9878
10098
10318
10538
10758
10978
11198
11418
11638
11858
12078
12298
12518
12738
12958
13178
13398
13618
13838
14058
14278
14498
14718
14938
15158
15378
15598
15818
16038
16258
16478
16698
16918
17138
17358
17578
199
419
639
859
1079
1299
1519
1739
1959
2179
2399
2619
2839
3059
3279
3499
3719
3939
4159
4379
4599
4819
5039
5259
5479
5699
5919
6139
6359
6579
6799
7019
7239
7459
7679
7899
8119
8339
8559
8779
8999
9219
9439
9659
9879
10099
10319
10539
10759
10979
11199
11419
11639
11859
12079
12299
12519
12739
12959
13179
13399
13619
13839
14059
14279
14499
14719
14939
15159
15379
15599
15819
16039
16259
16479
16699
16919
17139
17359
17579
200
420
640
860
1080
1300
1520
1740
1960
2180
2400
2620
2840
3060
3280
3500
3720
3940
4160
4380
4600
4820
5040
5260
5480
5700
5920
6140
6360
6580
6800
7020
7240
7460
7680
7900
8120
8340
8560
8780
9000
9220
9440
9660
9880
10100
10320
10540
10760
10980
11200
11420
11640
11860
12080
12300
12520
12740
12960
13180
13400
13620
13840
14060
14280
14500
14720
14940
15160
15380
15600
15820
16040
16260
16480
16700
16920
17140
17360
17580
201
421
641
861
1081
1301
1521
1741
1961
2181
2401
2621
2841
3061
3281
3501
3721
3941
4161
4381
4601
4821
5041
5261
5481
5701
5921
6141
6361
6581
6801
7021
7241
7461
7681
7901
8121
8341
8561
8781
9001
9221
9441
9661
9881
10101
10321
10541
10761
10981
11201
11421
11641
11861
12081
12301
12521
12741
12961
13181
13401
13621
13841
14061
14281
14501
14721
14941
15161
15381
15601
15821
16041
16261
16481
16701
16921
17141
17361
17581
202
422
642
862
1082
1302
1522
1742
1962
2182
2402
2622
2842
3062
3282
3502
3722
3942
4162
4382
4602
4822
5042
5262
5482
5702
5922
6142
6362
6582
6802
7022
7242
7462
7682
7902
8122
8342
8562
8782
9002
9222
9442
9662
9882
10102
10322
10542
10762
10982
11202
11422
11642
11862
12082
12302
12522
12742
12962
13182
13402
13622
13842
14062
14282
14502
14722
14942
15162
15382
15602
15822
16042
16262
16482
16702
16922
17142
17362
17582
203
423
643
863
1083
1303
1523
1743
1963
2183
2403
2623
2843
3063
3283
3503
3723
3943
4163
4383
4603
4823
5043
5263
5483
5703
5923
6143
6363
6583
6803
7023
7243
7463
7683
7903
8123
8343
8563
8783
9003
9223
9443
9663
9883
10103
10323
10543
10763
10983
11203
11423
11643
11863
12083
12303
12523
12743
12963
13183
13403
13623
13843
14063
14283
14503
14723
14943
15163
15383
15603
15823
16043
16263
16483
16703
16923
17143
17363
17583
204
424
644
864
1084
1304
1524
1744
1964
2184
2404
2624
2844
3064
3284
3504
3724
3944
4164
4384
4604
4824
5044
5264
5484
5704
5924
6144
6364
6584
6804
7024
7244
7464
7684
7904
8124
8344
8564
8784
9004
9224
9444
9664
9884
10104
10324
10544
10764
10984
11204
11424
11644
11864
12084
12304
12524
12744
12964
13184
13404
13624
13844
14064
14284
14504
14724
14944
15164
15384
15604
15824
16044
16264
16484
16704
16924
17144
17364
17584
205
425
645
865
1085
1305
1525
1745
1965
2185
2405
2625
2845
3065
3285
3505
3725
3945
4165
4385
4605
4825
5045
5265
5485
5705
5925
6145
6365
6585
6805
7025
7245
7465
7685
7905
8125
8345
8565
8785
9005
9225
9445
9665
9885
10105
10325
10545
10765
10985
11205
11425
11645
11865
12085
12305
12525
12745
12965
13185
13405
13625
13845
14065
14285
14505
14725
14945
15165
15385
15605
15825
16045
16265
16485
16705
16925
17145
17365
17585
206
426
646
866
1086
1306
1526
1746
1966
2186
2406
2626
2846
3066
3286
3506
3726
3946
4166
4386
4606
4826
5046
5266
5486
5706
5926
6146
6366
6586
6806
7026
7246
7466
7686
7906
8126
8346
8566
8786
9006
9226
9446
9666
9886
10106
10326
10546
10766
10986
11206
11426
11646
11866
12086
12306
12526
12746
12966
13186
13406
13626
13846
14066
14286
14506
14726
14946
15166
15386
15606
15826
16046
16266
16486
16706
16926
17146
17366
17586
207
427
647
867
1087
1307
1527
1747
1967
2187
2407
2627
2847
3067
3287
3507
3727
3947
4167
4387
4607
4827
5047
5267
5487
5707
5927
6147
6367
6587
6807
7027
7247
7467
7687
7907
8127
8347
8567
8787
9007
9227
9447
9667
9887
10107
10327
10547
10767
10987
11207
11427
11647
11867
12087
12307
12527
12747
12967
13187
13407
13627
13847
14067
14287
14507
14727
14947
15167
15387
15607
15827
16047
16267
16487
16707
16927
17147
17367
17587
208
428
648
868
1088
1308
1528
1748
1968
2188
2408
2628
2848
3068
3288
3508
3728
3948
4168
4388
4608
4828
5048
5268
5488
5708
5928
6148
6368
6588
6808
7028
7248
7468
7688
7908
8128
8348
8568
8788
9008
9228
9448
9668
9888
10108
10328
10548
10768
10988
11208
11428
11648
11868
12088
12308
12528
12748
12968
13188
13408
13628
13848
14068
14288
14508
14728
14948
15168
15388
15608
15828
16048
16268
16488
16708
16928
17148
17368
17588
209
429
649
869
1089
1309
1529
1749
1969
2189
2409
2629
2849
3069
3289
3509
3729
3949
4169
4389
4609
4829
5049
5269
5489
5709
5929
6149
6369
6589
6809
7029
7249
7469
7689
7909
8129
8349
8569
8789
9009
9229
9449
9669
9889
10109
10329
10549
10769
10989
11209
11429
11649
11869
12089
12309
12529
12749
12969
13189
13409
13629
13849
14069
14289
14509
14729
14949
15169
15389
15609
15829
16049
16269
16489
16709
16929
17149
17369
17589
210
430
650
870
1090
1310
1530
1750
1970
2190
2410
2630
2850
3070
3290
3510
3730
3950
4170
4390
4610
4830
5050
5270
5490
5710
5930
6150
6370
6590
6810
7030
7250
7470
7690
7910
8130
8350
8570
8790
9010
9230
9450
9670
9890
10110
10330
10550
10770
10990
11210
11430
11650
11870
12090
12310
12530
12750
12970
13190
13410
13630
13850
14070
14290
14510
14730
14950
15170
15390
15610
15830
16050
16270
16490
16710
16930
17150
17370
17590
211
431
651
871
1091
1311
1531
1751
1971
2191
2411
2631
2851
3071
3291
3511
3731
3951
4171
4391
4611
4831
5051
5271
5491
5711
5931
6151
6371
6591
6811
7031
7251
7471
7691
7911
8131
8351
8571
8791
9011
9231
9451
9671
9891
10111
10331
10551
10771
10991
11211
11431
11651
11871
12091
12311
12531
12751
12971
13191
13411
13631
13851
14071
14291
14511
14731
14951
15171
15391
15611
15831
16051
16271
16491
16711
16931
17151
17371
17591
212
432
652
872
1092
1312
1532
1752
1972
2192
2412
2632
2852
3072
3292
3512
3732
3952
4172
4392
4612
4832
5052
5272
5492
5712
5932
6152
6372
6592
6812
7032
7252
7472
7692
7912
8132
8352
8572
8792
9012
9232
9452
9672
9892
10112
10332
10552
10772
10992
11212
11432
11652
11872
12092
12312
12532
12752
12972
13192
13412
13632
13852
14072
14292
14512
14732
14952
15172
15392
15612
15832
16052
16272
16492
16712
16932
17152
17372
17592
213
433
653
873
1093
1313
1533
1753
1973
2193
2413
2633
2853
3073
3293
3513
3733
3953
4173
4393
4613
4833
5053
5273
5493
5713
5933
6153
6373
6593
6813
7033
7253
7473
7693
7913
8133
8353
8573
8793
9013
9233
9453
9673
9893
10113
10333
10553
10773
10993
11213
11433
11653
11873
12093
12313
12533
12753
12973
13193
13413
13633
13853
14073
14293
14513
14733
14953
15173
15393
15613
15833
16053
16273
16493
16713
16933
17153
17373
17593
214
434
654
874
1094
1314
1534
1754
1974
2194
2414
2634
2854
3074
3294
3514
3734
3954
4174
4394
4614
4834
5054
5274
5494
5714
5934
6154
6374
6594
6814
7034
7254
7474
7694
7914
8134
8354
8574
8794
9014
9234
9454
9674
9894
10114
10334
10554
10774
10994
11214
11434
11654
11874
12094
12314
12534
12754
12974
13194
13414
13634
13854
14074
14294
14514
14734
14954
15174
15394
15614
15834
16054
16274
16494
16714
16934
17154
17374
17594
215
435
655
875
1095
1315
1535
1755
1975
2195
2415
2635
2855
3075
3295
3515
3735
3955
4175
4395
4615
4835
5055
5275
5495
5715
5935
6155
6375
6595
6815
7035
7255
7475
7695
7915
8135
8355
8575
8795
9015
9235
9455
9675
9895
10115
10335
10555
10775
10995
11215
11435
11655
11875
12095
12315
12535
12755
12975
13195
13415
13635
13855
14075
14295
14515
14735
14955
15175
15395
15615
15835
16055
16275
16495
16715
16935
17155
17375
17595
216
436
656
876
1096
1316
1536
1756
1976
2196
2416
2636
2856
3076
3296
3516
3736
3956
4176
4396
4616
4836
5056
5276
5496
5716
5936
6156
6376
6596
6816
7036
7256
7476
7696
7916
8136
8356
8576
8796
9016
9236
9456
9676
9896
10116
10336
10556
10776
10996
11216
11436
11656
11876
12096
12316
12536
12756
12976
13196
13416
13636
13856
14076
14296
14516
14736
14956
15176
15396
15616
15836
16056
16276
16496
16716
16936
17156
17376
17596
217
437
657
877
1097
1317
1537
1757
1977
2197
2417
2637
2857
3077
3297
3517
3737
3957
4177
4397
4617
4837
5057
5277
5497
5717
5937
6157
6377
6597
6817
7037
7257
7477
7697
7917
8137
8357
8577
8797
9017
9237
9457
9677
9897
10117
10337
10557
10777
10997
11217
11437
11657
11877
12097
12317
12537
12757
12977
13197
13417
13637
13857
14077
14297
14517
14737
14957
15177
15397
15617
15837
16057
16277
16497
16717
16937
17157
17377
17597
218
438
658
878
1098
1318
1538
1758
1978
2198
2418
2638
2858
3078
3298
3518
3738
3958
4178
4398
4618
4838
5058
5278
5498
5718
5938
6158
6378
6598
6818
7038
7258
7478
7698
7918
8138
8358
8578
8798
9018
9238
9458
9678
9898
10118
10338
10558
10778
10998
11218
11438
11658
11878
12098
12318
12538
12758
12978
13198
13418
13638
13858
14078
14298
14518
14738
14958
15178
15398
15618
15838
16058
16278
16498
16718
16938
17158
17378
17598
219
439
659
879
1099
1319
1539
1759
1979
2199
2419
2639
2859
3079
3299
3519
3739
3959
4179
4399
4619
4839
5059
5279
5499
5719
5939
6159
6379
6599
6819
7039
7259
7479
7699
7919
8139
8359
8579
8799
9019
9239
9459
9679
9899
10119
10339
10559
10779
10999
11219
11439
11659
11879
12099
12319
12539
12759
12979
13199
13419
13639
13859
14079
14299
14519
14739
14959
15179
15399
15619
15839
16059
16279
16499
16719
16939
17159
17379
17599
35524
35884
36244
36604
36964
37324
37684
38044
38404
38764
39124
39484
39844
40204
40564
40924
41284
41644
42004
42364
42724
43084
43444
43804
44164
44524
44884
45244
45604
45964
46324
46684
47044
47404
47764
48124
48484
48844
49204
49564
49924
50284
50644
51004
51364
51724
52084
52444
52804
53164
53524
53884
54244
54604
54964
55324
55684
56044
56404
56764
57124
57484
57844
58204
58564
58924
59284
59644
60004
60364
60724
61084
61444
61804
62164
62524
62884
63244
63604
63964
35525
35885
36245
36605
36965
37325
37685
38045
38405
38765
39125
39485
39845
40205
40565
40925
41285
41645
42005
42365
42725
43085
43445
43805
44165
44525
44885
45245
45605
45965
46325
46685
47045
47405
47765
48125
48485
48845
49205
49565
49925
50285
50645
51005
51365
51725
52085
52445
52805
53165
53525
53885
54245
54605
54965
55325
55685
56045
56405
56765
57125
57485
57845
58205
58565
58925
59285
59645
60005
60365
60725
61085
61445
61805
62165
62525
62885
63245
63605
63965
35526
35886
36246
36606
36966
37326
37686
38046
38406
38766
39126
39486
39846
40206
40566
40926
41286
41646
42006
42366
42726
43086
43446
43806
44166
44526
44886
45246
45606
45966
46326
46686
47046
47406
47766
48126
48486
48846
49206
49566
49926
50286
50646
51006
51366
51726
52086
52446
52806
53166
53526
53886
54246
54606
54966
55326
55686
56046
56406
56766
57126
57486
57846
58206
58566
58926
59286
59646
60006
60366
60726
61086
61446
61806
62166
62526
62886
63246
63606
63966
35527
35887
36247
36607
36967
37327
37687
38047
38407
38767
39127
39487
39847
40207
40567
40927
41287
41647
42007
42367
42727
43087
43447
43807
44167
44527
44887
45247
45607
45967
46327
46687
47047
47407
47767
48127
48487
48847
49207
49567
49927
50287
50647
51007
51367
51727
52087
52447
52807
53167
53527
53887
54247
54607
54967
55327
55687
56047
56407
56767
57127
57487
57847
58207
58567
58927
59287
59647
60007
60367
60727
61087
61447
61807
62167
62527
62887
63247
63607
63967
35528
35888
36248
36608
36968
37328
37688
38048
38408
38768
39128
39488
39848
40208
40568
40928
41288
41648
42008
42368
42728
43088
43448
43808
44168
44528
44888
45248
45608
45968
46328
46688
47048
47408
47768
48128
48488
48848
49208
49568
49928
50288
50648
51008
51368
51728
52088
52448
52808
53168
53528
53888
54248
54608
54968
55328
55688
56048
56408
56768
57128
57488
57848
58208
58568
58928
59288
59648
60008
60368
60728
61088
61448
61808
62168
62528
62888
63248
63608
63968
35529
35889
36249
36609
36969
37329
37689
38049
38409
38769
39129
39489
39849
40209
40569
40929
41289
41649
42009
42369
42729
43089
43449
43809
44169
44529
44889
45249
45609
45969
46329
46689
47049
47409
47769
48129
48489
48849
49209
49569
49929
50289
50649
51009
51369
51729
52089
52449
52809
53169
53529
53889
54249
54609
54969
55329
55689
56049
56409
56769
57129
57489
57849
58209
58569
58929
59289
59649
60009
60369
60729
61089
61449
61809
62169
62529
62889
63249
63609
63969
35530
35890
36250
36610
36970
37330
37690
38050
38410
38770
39130
39490
39850
40210
40570
40930
41290
41650
42010
42370
42730
43090
43450
43810
44170
44530
44890
45250
45610
45970
46330
46690
47050
47410
47770
48130
48490
48850
49210
49570
49930
50290
50650
51010
51370
51730
52090
52450
52810
53170
53530
53890
54250
54610
54970
55330
55690
56050
56410
56770
57130
57490
57850
58210
58570
58930
59290
59650
60010
60370
60730
61090
61450
61810
62170
62530
62890
63250
63610
63970
35531
35891
36251
36611
36971
37331
37691
38051
38411
38771
39131
39491
39851
40211
40571
40931
41291
41651
42011
42371
42731
43091
43451
43811
44171
44531
44891
45251
45611
45971
46331
46691
47051
47411
47771
48131
48491
48851
49211
49571
49931
50291
50651
51011
51371
51731
52091
52451
52811
53171
53531
53891
54251
54611
54971
55331
55691
56051
56411
56771
57131
57491
57851
58211
58571
58931
59291
59651
60011
60371
60731
61091
61451
61811
62171
62531
62891
63251
63611
63971
35532
35892
36252
36612
36972
37332
37692
38052
38412
38772
39132
39492
39852
40212
40572
40932
41292
41652
42012
42372
42732
43092
43452
43812
44172
44532
44892
45252
45612
45972
46332
46692
47052
47412
47772
48132
48492
48852
49212
49572
49932
50292
50652
51012
51372
51732
52092
52452
52812
53172
53532
53892
54252
54612
54972
55332
55692
56052
56412
56772
57132
57492
57852
58212
58572
58932
59292
59652
60012
60372
60732
61092
61452
61812
62172
62532
62892
63252
63612
63972
35533
35893
36253
36613
36973
37333
37693
38053
38413
38773
39133
39493
39853
40213
40573
40933
41293
41653
42013
42373
42733
43093
43453
43813
44173
44533
44893
45253
45613
45973
46333
46693
47053
47413
47773
48133
48493
48853
49213
49573
49933
50293
50653
51013
51373
51733
52093
52453
52813
53173
53533
53893
54253
54613
54973
55333
55693
56053
56413
56773
57133
57493
57853
58213
58573
58933
59293
59653
60013
60373
60733
61093
61453
61813
62173
62533
62893
63253
63613
63973
35534
35894
36254
36614
36974
37334
37694
38054
38414
38774
39134
39494
39854
40214
40574
40934
41294
41654
42014
42374
42734
43094
43454
43814
44174
44534
44894
45254
45614
45974
46334
46694
47054
47414
47774
48134
48494
48854
49214
49574
49934
50294
50654
51014
51374
51734
52094
52454
52814
53174
53534
53894
54254
54614
54974
55334
55694
56054
56414
56774
57134
57494
57854
58214
58574
58934
59294
59654
60014
60374
60734
61094
61454
61814
62174
62534
62894
63254
63614
63974
35535
35895
36255
36615
36975
37335
37695
38055
38415
38775
39135
39495
39855
40215
40575
40935
41295
41655
42015
42375
42735
43095
43455
43815
44175
44535
44895
45255
45615
45975
46335
46695
47055
47415
47775
48135
48495
48855
49215
49575
49935
50295
50655
51015
51375
51735
52095
52455
52815
53175
53535
53895
54255
54615
54975
55335
55695
56055
56415
56775
57135
57495
57855
58215
58575
58935
59295
59655
60015
60375
60735
61095
61455
61815
62175
62535
62895
63255
63615
63975
35536
35896
36256
36616
36976
37336
37696
38056
38416
38776
39136
39496
39856
40216
40576
40936
41296
41656
42016
42376
42736
43096
43456
43816
44176
44536
44896
45256
45616
45976
46336
46696
47056
47416
47776
48136
48496
48856
49216
49576
49936
50296
50656
51016
51376
51736
52096
52456
52816
53176
53536
53896
54256
54616
54976
55336
55696
56056
56416
56776
57136
57496
57856
58216
58576
58936
59296
59656
60016
60376
60736
61096
61456
61816
62176
62536
62896
63256
63616
63976
35537
35897
36257
36617
36977
37337
37697
38057
38417
38777
39137
39497
39857
40217
40577
40937
41297
41657
42017
42377
42737
43097
43457
43817
44177
44537
44897
45257
45617
45977
46337
46697
47057
47417
47777
48137
48497
48857
49217
49577
49937
50297
50657
51017
51377
51737
52097
52457
52817
53177
53537
53897
54257
54617
54977
55337
55697
56057
56417
56777
57137
57497
57857
58217
58577
58937
59297
59657
60017
60377
60737
61097
61457
61817
62177
62537
62897
63257
63617
63977
35538
35898
36258
36618
36978
37338
37698
38058
38418
38778
39138
39498
39858
40218
40578
40938
41298
41658
42018
42378
42738
43098
43458
43818
44178
44538
44898
45258
45618
45978
46338
46698
47058
47418
47778
48138
48498
48858
49218
49578
49938
50298
50658
51018
51378
51738
52098
52458
52818
53178
53538
53898
54258
54618
54978
55338
55698
56058
56418
56778
57138
57498
57858
58218
58578
58938
59298
59658
60018
60378
60738
61098
61458
61818
62178
62538
62898
63258
63618
63978
35539
35899
36259
36619
36979
37339
37699
38059
38419
38779
39139
39499
39859
40219
40579
40939
41299
41659
42019
42379
42739
43099
43459
43819
44179
44539
44899
45259
45619
45979
46339
46699
47059
47419
47779
48139
48499
48859
49219
49579
49939
50299
50659
51019
51379
51739
52099
52459
52819
53179
53539
53899
54259
54619
54979
55339
55699
56059
56419
56779
57139
57499
57859
58219
58579
58939
59299
59659
60019
60379
60739
61099
61459
61819
62179
62539
62899
63259
63619
63979
35540
35900
36260
36620
36980
37340
37700
38060
38420
38780
39140
39500
39860
40220
40580
40940
41300
41660
42020
42380
42740
43100
43460
43820
44180
44540
44900
45260
45620
45980
46340
46700
47060
47420
47780
48140
48500
48860
49220
49580
49940
50300
50660
51020
51380
51740
52100
52460
52820
53180
53540
53900
54260
54620
54980
55340
55700
56060
56420
56780
57140
57500
57860
58220
58580
58940
59300
59660
60020
60380
60740
61100
61460
61820
62180
62540
62900
63260
63620
63980
35541
35901
36261
36621
36981
37341
37701
38061
38421
38781
39141
39501
39861
40221
40581
40941
41301
41661
42021
42381
42741
43101
43461
43821
44181
44541
44901
45261
45621
45981
46341
46701
47061
47421
47781
48141
48501
48861
49221
49581
49941
50301
50661
51021
51381
51741
52101
52461
52821
53181
53541
53901
54261
54621
54981
55341
55701
56061
56421
56781
57141
57501
57861
58221
58581
58941
59301
59661
60021
60381
60741
61101
61461
61821
62181
62541
62901
63261
63621
63981
35542
35902
36262
36622
36982
37342
37702
38062
38422
38782
39142
39502
39862
40222
40582
40942
41302
41662
42022
42382
42742
43102
43462
43822
44182
44542
44902
45262
45622
45982
46342
46702
47062
47422
47782
48142
48502
48862
49222
49582
49942
50302
50662
51022
51382
51742
52102
52462
52822
53182
53542
53902
54262
54622
54982
55342
55702
56062
56422
56782
57142
57502
57862
58222
58582
58942
59302
59662
60022
60382
60742
61102
61462
61822
62182
62542
62902
63262
63622
63982
35543
35903
36263
36623
36983
37343
37703
38063
38423
38783
39143
39503
39863
40223
40583
40943
41303
41663
42023
42383
42743
43103
43463
43823
44183
44543
44903
45263
45623
45983
46343
46703
47063
47423
47783
48143
48503
48863
49223
49583
49943
50303
50663
51023
51383
51743
52103
52463
52823
53183
53543
53903
54263
54623
54983
55343
55703
56063
56423
56783
57143
57503
57863
58223
58583
58943
59303
59663
60023
60383
60743
61103
61463
61823
62183
62543
62903
63263
63623
63983
35544
35904
36264
36624
36984
37344
37704
38064
38424
38784
39144
39504
39864
40224
40584
40944
41304
41664
42024
42384
42744
43104
43464
43824
44184
44544
44904
45264
45624
45984
46344
46704
47064
47424
47784
48144
48504
48864
49224
49584
49944
50304
50664
51024
51384
51744
52104
52464
52824
53184
53544
53904
54264
54624
54984
55344
55704
56064
56424
56784
57144
57504
57864
58224
58584
58944
59304
59664
60024
60384
60744
61104
61464
61824
62184
62544
62904
63264
63624
63984
35545
35905
36265
36625
36985
37345
37705
38065
38425
38785
39145
39505
39865
40225
40585
40945
41305
41665
42025
42385
42745
43105
43465
43825
44185
44545
44905
45265
45625
45985
46345
46705
47065
47425
47785
48145
48505
48865
49225
49585
49945
50305
50665
51025
51385
51745
52105
52465
52825
53185
53545
53905
54265
54625
54985
55345
55705
56065
56425
56785
57145
57505
57865
58225
58585
58945
59305
59665
60025
60385
60745
61105
61465
61825
62185
62545
62905
63265
63625
63985
35546
35906
36266
36626
36986
37346
37706
38066
38426
38786
39146
39506
39866
40226
40586
40946
41306
41666
42026
42386
42746
43106
43466
43826
44186
44546
44906
45266
45626
45986
46346
46706
47066
47426
47786
48146
48506
48866
49226
49586
49946
50306
50666
51026
51386
51746
52106
52466
52826
53186
53546
53906
54266
54626
54986
55346
55706
56066
56426
56786
57146
57506
57866
58226
58586
58946
59306
59666
60026
60386
60746
61106
61466
61826
62186
62546
62906
63266
63626
63986
35547
35907
36267
36627
36987
37347
37707
38067
38427
38787
39147
39507
39867
40227
40587
40947
41307
41667
42027
42387
42747
43107
43467
43827
44187
44547
44907
45267
45627
45987
46347
46707
47067
47427
47787
48147
48507
48867
49227
49587
49947
50307
50667
51027
51387
51747
52107
52467
52827
53187
53547
53907
54267
54627
54987
55347
55707
56067
56427
56787
57147
57507
57867
58227
58587
58947
59307
59667
60027
60387
60747
61107
61467
61827
62187
62547
62907
63267
63627
63987
35548
35908
36268
36628
36988
37348
37708
38068
38428
38788
39148
39508
39868
40228
40588
40948
41308
41668
42028
42388
42748
43108
43468
43828
44188
44548
44908
45268
45628
45988
46348
46708
47068
47428
47788
48148
48508
48868
49228
49588
49948
50308
50668
51028
51388
51748
52108
52468
52828
53188
53548
53908
54268
54628
54988
55348
55708
56068
56428
56788
57148
57508
57868
58228
58588
58948
59308
59668
60028
60388
60748
61108
61468
61828
62188
62548
62908
63268
63628
63988
35549
35909
36269
36629
36989
37349
37709
38069
38429
38789
39149
39509
39869
40229
40589
40949
41309
41669
42029
42389
42749
43109
43469
43829
44189
44549
44909
45269
45629
45989
46349
46709
47069
47429
47789
48149
48509
48869
49229
49589
49949
50309
50669
51029
51389
51749
52109
52469
52829
53189
53549
53909
54269
54629
54989
55349
55709
56069
56429
56789
57149
57509
57869
58229
58589
58949
59309
59669
60029
60389
60749
61109
61469
61829
62189
62549
62909
63269
63629
63989
35550
35910
36270
36630
36990
37350
37710
38070
38430
38790
39150
39510
39870
40230
40590
40950
41310
41670
42030
42390
42750
43110
43470
43830
44190
44550
44910
45270
45630
45990
46350
46710
47070
47430
47790
48150
48510
48870
49230
49590
49950
50310
50670
51030
51390
51750
52110
52470
52830
53190
53550
53910
54270
54630
54990
55350
55710
56070
56430
56790
57150
57510
57870
58230
58590
58950
59310
59670
60030
60390
60750
61110
61470
61830
62190
62550
62910
63270
63630
63990
35551
35911
36271
36631
36991
37351
37711
38071
38431
38791
39151
39511
39871
40231
40591
40951
41311
41671
42031
42391
42751
43111
43471
43831
44191
44551
44911
45271
45631
45991
46351
46711
47071
47431
47791
48151
48511
48871
49231
49591
49951
50311
50671
51031
51391
51751
52111
52471
52831
53191
53551
53911
54271
54631
54991
55351
55711
56071
56431
56791
57151
57511
57871
58231
58591
58951
59311
59671
60031
60391
60751
61111
61471
61831
62191
62551
62911
63271
63631
63991
35552
35912
36272
36632
36992
37352
37712
38072
38432
38792
39152
39512
39872
40232
40592
40952
41312
41672
42032
42392
42752
43112
43472
43832
44192
44552
44912
45272
45632
45992
46352
46712
47072
47432
47792
48152
48512
48872
49232
49592
49952
50312
50672
51032
51392
51752
52112
52472
52832
53192
53552
53912
54272
54632
54992
55352
55712
56072
56432
56792
57152
57512
57872
58232
58592
58952
59312
59672
60032
60392
60752
61112
61472
61832
62192
62552
62912
63272
63632
63992
35553
35913
36273
36633
36993
37353
37713
38073
38433
38793
39153
39513
39873
40233
40593
40953
41313
41673
42033
42393
42753
43113
43473
43833
44193
44553
44913
45273
45633
45993
46353
46713
47073
47433
47793
48153
48513
48873
49233
49593
49953
50313
50673
51033
51393
51753
52113
52473
52833
53193
53553
53913
54273
54633
54993
55353
55713
56073
56433
56793
57153
57513
57873
58233
58593
58953
59313
59673
60033
60393
60753
61113
61473
61833
62193
62553
62913
63273
63633
63993
35554
35914
36274
36634
36994
37354
37714
38074
38434
38794
39154
39514
39874
40234
40594
40954
41314
41674
42034
42394
42754
43114
43474
43834
44194
44554
44914
45274
45634
45994
46354
46714
47074
47434
47794
48154
48514
48874
49234
49594
49954
50314
50674
51034
51394
51754
52114
52474
52834
53194
53554
53914
54274
54634
54994
55354
55714
56074
56434
56794
57154
57514
57874
58234
58594
58954
59314
59674
60034
60394
60754
61114
61474
61834
62194
62554
62914
63274
63634
63994
35555
35915
36275
36635
36995
37355
37715
38075
38435
38795
39155
39515
39875
40235
40595
40955
41315
41675
42035
42395
42755
43115
43475
43835
44195
44555
44915
45275
45635
45995
46355
46715
47075
47435
47795
48155
48515
48875
49235
49595
49955
50315
50675
51035
51395
51755
52115
52475
52835
53195
53555
53915
54275
54635
54995
55355
55715
56075
56435
56795
57155
57515
57875
58235
58595
58955
59315
59675
60035
60395
60755
61115
61475
61835
62195
62555
62915
63275
63635
63995
35556
35916
36276
36636
36996
37356
37716
38076
38436
38796
39156
39516
39876
40236
40596
40956
41316
41676
42036
42396
42756
43116
43476
43836
44196
44556
44916
45276
45636
45996
46356
46716
47076
47436
47796
48156
48516
48876
49236
49596
49956
50316
50676
51036
51396
51756
52116
52476
52836
53196
53556
53916
54276
54636
54996
55356
55716
56076
56436
56796
57156
57516
57876
58236
58596
58956
59316
59676
60036
60396
60756
61116
61476
61836
62196
62556
62916
63276
63636
63996
35557
35917
36277
36637
36997
37357
37717
38077
38437
38797
39157
39517
39877
40237
40597
40957
41317
41677
42037
42397
42757
43117
43477
43837
44197
44557
44917
45277
45637
45997
46357
46717
47077
47437
47797
48157
48517
48877
49237
49597
49957
50317
50677
51037
51397
51757
52117
52477
52837
53197
53557
53917
54277
54637
54997
55357
55717
56077
56437
56797
57157
57517
57877
58237
58597
58957
59317
59677
60037
60397
60757
61117
61477
61837
62197
62557
62917
63277
63637
63997
35558
35918
36278
36638
36998
37358
37718
38078
38438
38798
39158
39518
39878
40238
40598
40958
41318
41678
42038
42398
42758
43118
43478
43838
44198
44558
44918
45278
45638
45998
46358
46718
47078
47438
47798
48158
48518
48878
49238
49598
49958
50318
50678
51038
51398
51758
52118
52478
52838
53198
53558
53918
54278
54638
54998
55358
55718
56078
56438
56798
57158
57518
57878
58238
58598
58958
59318
59678
60038
60398
60758
61118
61478
61838
62198
62558
62918
63278
63638
63998
35559
35919
36279
36639
36999
37359
37719
38079
38439
38799
39159
39519
39879
40239
40599
40959
41319
41679
42039
42399
42759
43119
43479
43839
44199
44559
44919
45279
45639
45999
46359
46719
47079
47439
47799
48159
48519
48879
49239
49599
49959
50319
50679
51039
51399
51759
52119
52479
52839
53199
53559
53919
54279
54639
54999
55359
55719
56079
56439
56799
57159
57519
57879
58239
58599
58959
59319
59679
60039
60399
60759
61119
61479
61839
62199
62559
62919
63279
63639
63999
17798
18018
18238
18458
18678
18898
19118
19338
19558
19778
19998
20218
20438
20658
20878
21098
21318
21538
21758
21978
22198
22418
22638
22858
23078
23298
23518
23738
23958
24178
24398
24618
24838
25058
25278
25498
25718
25938
26158
26378
26598
26818
27038
27258
27478
27698
27918
28138
28358
28578
28798
29018
29238
29458
29678
29898
30118
30338
30558
30778
30998
31218
31438
31658
31878
32098
32318
32538
32758
32978
33198
33418
33638
33858
34078
34298
34518
34738
34958
35178
17799
18019
18239
18459
18679
18899
19119
19339
19559
19779
19999
20219
20439
20659
20879
21099
21319
21539
21759
21979
22199
22419
22639
22859
23079
23299
23519
23739
23959
24179
24399
24619
24839
25059
25279
25499
25719
25939
26159
26379
26599
26819
27039
27259
27479
27699
27919
28139
28359
28579
28799
29019
29239
29459
29679
29899
30119
30339
30559
30779
30999
31219
31439
31659
31879
32099
32319
32539
32759
32979
33199
33419
33639
33859
34079
34299
34519
34739
34959
35179
17800
18020
18240
18460
18680
18900
19120
19340
19560
19780
20000
20220
20440
20660
20880
21100
21320
21540
21760
21980
22200
22420
22640
22860
23080
23300
23520
23740
23960
24180
24400
24620
24840
25060
25280
25500
25720
25940
26160
26380
26600
26820
27040
27260
27480
27700
27920
28140
28360
28580
28800
29020
29240
29460
29680
29900
30120
30340
30560
30780
31000
31220
31440
31660
31880
32100
32320
32540
32760
32980
33200
33420
33640
33860
34080
34300
34520
34740
34960
35180
17801
18021
18241
18461
18681
18901
19121
19341
19561
19781
20001
20221
20441
20661
20881
21101
21321
21541
21761
21981
22201
22421
22641
22861
23081
23301
23521
23741
23961
24181
24401
24621
24841
25061
25281
25501
25721
25941
26161
26381
26601
26821
27041
27261
27481
27701
27921
28141
28361
28581
28801
29021
29241
29461
29681
29901
30121
30341
30561
30781
31001
31221
31441
31661
31881
32101
32321
32541
32761
32981
33201
33421
33641
33861
34081
34301
34521
34741
34961
35181
17802
18022
18242
18462
18682
18902
19122
19342
19562
19782
20002
20222
20442
20662
20882
21102
21322
21542
21762
21982
22202
22422
22642
22862
23082
23302
23522
23742
23962
24182
24402
24622
24842
25062
25282
25502
25722
25942
26162
26382
26602
26822
27042
27262
27482
27702
27922
28142
28362
28582
28802
29022
29242
29462
29682
29902
30122
30342
30562
30782
31002
31222
31442
31662
31882
32102
32322
32542
32762
32982
33202
33422
33642
33862
34082
34302
34522
34742
34962
35182
17803
18023
18243
18463
18683
18903
19123
19343
19563
19783
20003
20223
20443
20663
20883
21103
21323
21543
21763
21983
22203
22423
22643
22863
23083
23303
23523
23743
23963
24183
24403
24623
24843
25063
25283
25503
25723
25943
26163
26383
26603
26823
27043
27263
27483
27703
27923
28143
28363
28583
28803
29023
29243
29463
29683
29903
30123
30343
30563
30783
31003
31223
31443
31663
31883
32103
32323
32543
32763
32983
33203
33423
33643
33863
34083
34303
34523
34743
34963
35183
17804
18024
18244
18464
18684
18904
19124
19344
19564
19784
20004
20224
20444
20664
20884
21104
21324
21544
21764
21984
22204
22424
22644
22864
23084
23304
23524
23744
23964
24184
24404
24624
24844
25064
25284
25504
25724
25944
26164
26384
26604
26824
27044
27264
27484
27704
27924
28144
28364
28584
28804
29024
29244
29464
29684
29904
30124
30344
30564
30784
31004
31224
31444
31664
31884
32104
32324
32544
32764
32984
33204
33424
33644
33864
34084
34304
34524
34744
34964
35184
17805
18025
18245
18465
18685
18905
19125
19345
19565
19785
20005
20225
20445
20665
20885
21105
21325
21545
21765
21985
22205
22425
22645
22865
23085
23305
23525
23745
23965
24185
24405
24625
24845
25065
25285
25505
25725
25945
26165
26385
26605
26825
27045
27265
27485
27705
27925
28145
28365
28585
28805
29025
29245
29465
29685
29905
30125
30345
30565
30785
31005
31225
31445
31665
31885
32105
32325
32545
32765
32985
33205
33425
33645
33865
34085
34305
34525
34745
34965
35185
17806
18026
18246
18466
18686
18906
19126
19346
19566
19786
20006
20226
20446
20666
20886
21106
21326
21546
21766
21986
22206
22426
22646
22866
23086
23306
23526
23746
23966
24186
24406
24626
24846
25066
25286
25506
25726
25946
26166
26386
26606
26826
27046
27266
27486
27706
27926
28146
28366
28586
28806
29026
29246
29466
29686
29906
30126
30346
30566
30786
31006
31226
31446
31666
31886
32106
32326
32546
32766
32986
33206
33426
33646
33866
34086
34306
34526
34746
34966
35186
17807
18027
18247
18467
18687
18907
19127
19347
19567
19787
20007
20227
20447
20667
20887
21107
21327
21547
21767
21987
22207
22427
22647
22867
23087
23307
23527
23747
23967
24187
24407
24627
24847
25067
25287
25507
25727
25947
26167
26387
26607
26827
27047
27267
27487
27707
27927
28147
28367
28587
28807
29027
29247
29467
29687
29907
30127
30347
30567
30787
31007
31227
31447
31667
31887
32107
32327
32547
32767
32987
33207
33427
33647
33867
34087
34307
34527
34747
34967
35187
17808
18028
18248
18468
18688
18908
19128
19348
19568
19788
20008
20228
20448
20668
20888
21108
21328
21548
21768
21988
22208
22428
22648
22868
23088
23308
23528
23748
23968
24188
24408
24628
24848
25068
25288
25508
25728
25948
26168
26388
26608
26828
27048
27268
27488
27708
27928
28148
28368
28588
28808
29028
29248
29468
29688
29908
30128
30348
30568
30788
31008
31228
31448
31668
31888
32108
32328
32548
32768
32988
33208
33428
33648
33868
34088
34308
34528
34748
34968
35188
17809
18029
18249
18469
18689
18909
19129
19349
19569
19789
20009
20229
20449
20669
20889
21109
21329
21549
21769
21989
22209
22429
22649
22869
23089
23309
23529
23749
23969
24189
24409
24629
24849
25069
25289
25509
25729
25949
26169
26389
26609
26829
27049
27269
27489
27709
27929
28149
28369
28589
28809
29029
29249
29469
29689
29909
30129
30349
30569
30789
31009
31229
31449
31669
31889
32109
32329
32549
32769
32989
33209
33429
33649
33869
34089
34309
34529
34749
34969
35189
17810
18030
18250
18470
18690
18910
19130
19350
19570
19790
20010
20230
20450
20670
20890
21110
21330
21550
21770
21990
22210
22430
22650
22870
23090
23310
23530
23750
23970
24190
24410
24630
24850
25070
25290
25510
25730
25950
26170
26390
26610
26830
27050
27270
27490
27710
27930
28150
28370
28590
28810
29030
29250
29470
29690
29910
30130
30350
30570
30790
31010
31230
31450
31670
31890
32110
32330
32550
32770
32990
33210
33430
33650
33870
34090
34310
34530
34750
34970
35190
17811
18031
18251
18471
18691
18911
19131
19351
19571
19791
20011
20231
20451
20671
20891
21111
21331
21551
21771
21991
22211
22431
22651
22871
23091
23311
23531
23751
23971
24191
24411
24631
24851
25071
25291
25511
25731
25951
26171
26391
26611
26831
27051
27271
27491
27711
27931
28151
28371
28591
28811
29031
29251
29471
29691
29911
30131
30351
30571
30791
31011
31231
31451
31671
31891
32111
32331
32551
32771
32991
33211
33431
33651
33871
34091
34311
34531
34751
34971
35191
17812
18032
18252
18472
18692
18912
19132
19352
19572
19792
20012
20232
20452
20672
20892
21112
21332
21552
21772
21992
22212
22432
22652
22872
23092
23312
23532
23752
23972
24192
24412
24632
24852
25072
25292
25512
25732
25952
26172
26392
26612
26832
27052
27272
27492
27712
27932
28152
28372
28592
28812
29032
29252
29472
29692
29912
30132
30352
30572
30792
31012
31232
31452
31672
31892
32112
32332
32552
32772
32992
33212
33432
33652
33872
34092
34312
34532
34752
34972
35192
17813
18033
18253
18473
18693
18913
19133
19353
19573
19793
20013
20233
20453
20673
20893
21113
21333
21553
21773
21993
22213
22433
22653
22873
23093
23313
23533
23753
23973
24193
24413
24633
24853
25073
25293
25513
25733
25953
26173
26393
26613
26833
27053
27273
27493
27713
27933
28153
28373
28593
28813
29033
29253
29473
29693
29913
30133
30353
30573
30793
31013
31233
31453
31673
31893
32113
32333
32553
32773
32993
33213
33433
33653
33873
34093
34313
34533
34753
34973
35193
17814
18034
18254
18474
18694
18914
19134
19354
19574
19794
20014
20234
20454
20674
20894
21114
21334
21554
21774
21994
22214
22434
22654
22874
23094
23314
23534
23754
23974
24194
24414
24634
24854
25074
25294
25514
25734
25954
26174
26394
26614
26834
27054
27274
27494
27714
27934
28154
28374
28594
28814
29034
29254
29474
29694
29914
30134
30354
30574
30794
31014
31234
31454
31674
31894
32114
32334
32554
32774
32994
33214
33434
33654
33874
34094
34314
34534
34754
34974
35194
17815
18035
18255
18475
18695
18915
19135
19355
19575
19795
20015
20235
20455
20675
20895
21115
21335
21555
21775
21995
22215
22435
22655
22875
23095
23315
23535
23755
23975
24195
24415
24635
24855
25075
25295
25515
25735
25955
26175
26395
26615
26835
27055
27275
27495
27715
27935
28155
28375
28595
28815
29035
29255
29475
29695
29915
30135
30355
30575
30795
31015
31235
31455
31675
31895
32115
32335
32555
32775
32995
33215
33435
33655
33875
34095
34315
34535
34755
34975
35195
17816
18036
18256
18476
18696
18916
19136
19356
19576
19796
20016
20236
20456
20676
20896
21116
21336
21556
21776
21996
22216
22436
22656
22876
23096
23316
23536
23756
23976
24196
24416
24636
24856
25076
25296
25516
25736
25956
26176
26396
26616
26836
27056
27276
27496
27716
27936
28156
28376
28596
28816
29036
29256
29476
29696
29916
30136
30356
30576
30796
31016
31236
31456
31676
31896
32116
32336
32556
32776
32996
33216
33436
33656
33876
34096
34316
34536
34756
34976
35196
17817
18037
18257
18477
18697
18917
19137
19357
19577
19797
20017
20237
20457
20677
20897
21117
21337
21557
21777
21997
22217
22437
22657
22877
23097
23317
23537
23757
23977
24197
24417
24637
24857
25077
25297
25517
25737
25957
26177
26397
26617
26837
27057
27277
27497
27717
27937
28157
28377
28597
28817
29037
29257
29477
29697
29917
30137
30357
30577
30797
31017
31237
31457
31677
31897
32117
32337
32557
32777
32997
33217
33437
33657
33877
34097
34317
34537
34757
34977
35197
17818
18038
18258
18478
18698
18918
19138
19358
19578
19798
20018
20238
20458
20678
20898
21118
21338
21558
21778
21998
22218
22438
22658
22878
23098
23318
23538
23758
23978
24198
24418
24638
24858
25078
25298
25518
25738
25958
26178
26398
26618
26838
27058
27278
27498
27718
27938
28158
28378
28598
28818
29038
29258
29478
29698
29918
30138
30358
30578
30798
31018
31238
31458
31678
31898
32118
32338
32558
32778
32998
33218
33438
33658
33878
34098
34318
34538
34758
34978
35198
17819
18039
18259
18479
18699
18919
19139
19359
19579
19799
20019
20239
20459
20679
20899
21119
21339
21559
21779
21999
22219
22439
22659
22879
23099
23319
23539
23759
23979
24199
24419
24639
24859
25079
25299
25519
25739
25959
26179
26399
26619
26839
27059
27279
27499
27719
27939
28159
28379
28599
28819
29039
29259
29479
29699
29919
30139
30359
30579
30799
31019
31239
31459
31679
31899
32119
32339
32559
32779
32999
33219
33439
33659
33879
34099
34319
34539
34759
34979
35199
)
// ************************************************************************* //
| [
"[email protected]"
] | ||
d14bcb763a07eb4563f9438b0d507a2d8ac2b81c | 3efc50ba20499cc9948473ee9ed2ccfce257d79a | /data/others/files/cdf_to_pdf_layer_updater_schema.cpp | 29a253402952ccc8db5ca58f16e214e1aabb6812 | [
"Apache-2.0"
] | permissive | arthurherbout/crypto_code_detection | 7e10ed03238278690d2d9acaa90fab73e52bab86 | 3c9ff8a4b2e4d341a069956a6259bf9f731adfc0 | refs/heads/master | 2020-07-29T15:34:31.380731 | 2019-12-20T13:52:39 | 2019-12-20T13:52:39 | 209,857,592 | 9 | 4 | null | 2019-12-20T13:52:42 | 2019-09-20T18:35:35 | C | UTF-8 | C++ | false | false | 1,450 | cpp | /*
* Copyright 2011-2016 Maxim Milakov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "cdf_to_pdf_layer_updater_schema.h"
#include "../cdf_to_pdf_layer.h"
#include "cdf_to_pdf_layer_updater_cuda.h"
namespace nnforge
{
namespace cuda
{
layer_updater_schema::ptr cdf_to_pdf_layer_updater_schema::create_specific() const
{
return layer_updater_schema::ptr(new cdf_to_pdf_layer_updater_schema());
}
std::string cdf_to_pdf_layer_updater_schema::get_type_name() const
{
return cdf_to_pdf_layer::layer_type_name;
}
layer_updater_cuda::ptr cdf_to_pdf_layer_updater_schema::create_updater_specific(
const std::vector<layer_configuration_specific>& input_configuration_specific_list,
const layer_configuration_specific& output_configuration_specific,
const cuda_running_configuration& cuda_config) const
{
return layer_updater_cuda::ptr(new cdf_to_pdf_layer_updater_cuda());
}
}
}
| [
"[email protected]"
] | |
6c8175a51e751009ec4ee98eb155cc1d174b6b36 | eeb5d56d993ac1f2495d3ec0bb018a4d70a63ecb | /Aladdin-master/MyAladdin/Ground.cpp | 32e8e483efcc7752488d4d44749de3ef49efa988 | [] | no_license | quoctuyenuit/Aladdin | b3db3d356f426fd97cae4f68c9999fe918fb040c | 4e9646a20f87544d54ec94b141ed24d83d9c9997 | refs/heads/master | 2021-05-06T01:37:20.276351 | 2018-04-12T13:18:31 | 2018-04-12T13:18:31 | 109,479,747 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,368 | cpp | #include "Ground.h"
#include"Aladdin.h"
#include"StaticObject.h"
Ground::Ground()
{
}
Ground::Ground(int x, int y, int width, int height)
:Object(x, y, width, height)
{
this->_team = Global::Static;
this->_rectBound.update(x, y, width, height);
this->_vx = 0;
this->_vy = 0;
this->_id = Global::GROUND;
}
Ground::~Ground()
{
}
Collision::ResultCollision Ground::processCollision(Object * obj)
{
WRect rect1;
if (obj->getId() == Global::ALADDIN)
rect1 = ((Aladdin*)obj)->getRectBound2();
else
rect1 = obj->getRectBound();
WRect rect2 = this->getRectBound();
float vx1 = obj->getVx();
float vy1 = obj->getVy();
float vx2 = this->getVx();
float vy2 = this->getVy();
Collision::ResultCollision result = Collision::Instance()->sweptAABB(rect1, vx1, vy1, rect2, vx2, vy2);
//Chỉ xét hướng va chạm từ trên xuống
if (result.normaly == -1 || result.normaly == 0)
result.flag = false;
if (!result.flag)
return result;
if (obj->getId() == Global::ALADDIN)
{
Aladdin::Instance()->refreshTime();
result.intersectionPoint.x = obj->getX() + obj->getVx();
}
else
result.intersectionPoint.x = obj->getX() + obj->getVx()*result.collisionTime;
result.intersectionPoint.y = obj->getY() + obj->getVy()*result.collisionTime;
return result;
}
void Ground::update(float detalTime)
{
StaticObject::Instance()->addGround(this);
}
| [
"[email protected]"
] | |
ce3e144b3d239c2a27a04bb24428a8cd4895a9fe | 1384d971c64e5fee731baaccc5bc9d836314630e | /src/uno/game/player_list.h | 113c6ff35ced6e58c9bcc905a52225586dcef8bb | [] | no_license | erenon/casino | c346495a91797d3706684670cf99320cea47e82c | de39cccdb70f9d8f7d8457dfb162b6751c2dd359 | refs/heads/master | 2020-05-31T23:41:28.741917 | 2012-01-24T17:28:30 | 2012-01-24T17:28:30 | 1,942,661 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 880 | h | #ifndef SRC_UNO_GAME_PLAYER_LIST_H_
#define SRC_UNO_GAME_PLAYER_LIST_H_
#include "../player/player.h"
#include <list>
namespace Uno { namespace Game {
using ::Uno::Player::Player;
class PlayerList {
protected:
bool turn_direction_normal;
std::list<Player *> players;
typedef std::list<Player *>::iterator player_iterator;
player_iterator current_player;
Player* prev_player;
player_iterator determineNextPlayer();
public:
PlayerList();
void joinPlayer(Player *player);
int size();
Player *getNextPlayer();
Player *getPreviousPlayer();
Player *getCurrentPlayer();
Player *next();
void reset();
void reverseTurn();
void notifyAll(Event::EVENT event_type, void* event);
void notifyOthers(Event::EVENT event_type, void* event, Player* player);
};
}} // namespace
#endif // SRC_UNO_GAME_PLAYER_LIST_H_
| [
"[email protected]"
] | |
70d0883a8f00ab4aa783ae119a213f338a5ed8e6 | 98de86bdd65733ca2742eedc3201682aa10e5d18 | /apr15.cpp | 4f070545ba4eaf67106ef4b644a1c4af9cb0ce6a | [] | no_license | reaganshirk/DataStructuresNotes | 38eae5ac8b01959fb2c3a9b9ffcd7d6997a7c61c | eb40ec03df9cce4beba0b1aaa0a024bc2e3c37c6 | refs/heads/master | 2020-04-25T06:14:07.653062 | 2019-09-27T22:11:36 | 2019-09-27T22:11:36 | 172,573,742 | 5 | 1 | null | 2019-05-05T18:12:35 | 2019-02-25T19:49:31 | C++ | UTF-8 | C++ | false | false | 4,379 | cpp | /*
- Rest of Semester:
- Graphs
- Project 5 will be (posted today...?) over graphs
- See Sridhar's notes for picture of a graph, looks like a tree where all nodes are connected
- Priority Search Trees
- Sorting
- Hashing
- Graphs (also called networks)
- A graph, by definition: G = (V, E) where V is a vertex set or a node set (same thing) and
E is the links or edges (same thing)
- V = {V_0, V_1, ... , V_(n - 1)}
- |V| = n (cardinality, not abs value)
- E is a subset of V x V where V x V = {empty set, (V_0, V_1), (V_1, V_2), ...}
- When you have (V_i, V_j), it means you have two points where you can draw an arc or directed line (line between them with an arrow, kinda like a vector)
- If (V_i, V_j) == (V_j, V_i), then we say links have no direction, i.e the links are an edge
- See Sridhar's notes for pictoral examples
- Undirected Graph: Graph where none of the links have direction
- Self loop: when the link goes from the node to itself
- Multiple edges: When a graph has more than one edge between nodes (verticies)
- Simple Graph:
- A graph G = (V, E) is a simple graph if it does not contain self loops or multiple edges.
- Weighted or Unweighted Graphs:
- Weight corresponds to whatever you think it should...?
- Edge weighted and node weighted
- Path:
- x_1, x_2, x_3, x_4, x_5 is a path if (x_i, x_i+1) belongs to E.
- Based on Sridhar's picture:
- 0, 2, 3 is a path
- 1, 4, 5, is a path
- 0, 2, 2, 0, 2, 3 is not a path
- 1, 5, 4, 1, 5 is a path
- There must be an edge between the two adjacent verticies for it to be a path
- A simple path is when no edge is repeated
- A graph is connected if there exists a simple path between all pairs of verticies
- Directed Graph has a directed path
- Directed path is a path made up of edges that have a direction
- A directed graph is strongly connected if there is a directed path between all pairs of verticies
- Cycle
- A cycle is a path in which the first and last verticies are the same
- See Sridhar's notes for a pictoral representation
- A simple cycle is nothing but a simple path where the first and last verticies are the same
- A directed cycle is a directed path where the first and last verticies are the same
- ** Important **: A directed graph is a tree if it does not contain a cycle
- Neighbors: verticies that are connected
- Degree of Node: number of neighbors
- Subgraph:
- Both vertex and edge induced subgraphs
- The vertex induced subgraph of v' = {0, 1, 4}:
- Take the edges from the origin graphand use them to connect the nodes you've taken
- Very self explanitory
- The edge incuded subgraph of v' = {(3, 4), (0, 2)}:
- Connect the nodes at the given pairs, do not connect all 4
- v' = v will give the whole graph
- G = (V, E), T = (V, E'), E' is a subset of E
- G is connected, T is a spanning tree of G if T is connected
- Spanning tree is very important
- Directed Acyclic Graph: a directed graph with no directed cycle
- Topological Sort: Listing all the nodes in {} by their prerequisites
- Back to the tree:
- |V| = n, |E| = n - 1, is this a tree?
- If G is connected, then the answer is yes
- Forrest of Trees: When each connected component is a tree
- How to store a graph ** important for project ** (graph representation)
- Adjacency matrix
- Boolean matrix:
- 0 down the diagonal from upper left to lower right if the graph is not connected
- 1 if the row value is connected to the column value, 0 if they're not connected
- adj[i][j] == 1 if (i, j) belongs to E
- Can store a graph in as many ways as you can store a matrix
- ** Important question ** given an n node directed graph, what is the maximum number of edges possible?
- n^2 - n
- For undirected graph: (n^2 - n) / 2
- Size: O(n^2)
- Adjacency list
- I'm pretty sure he just said he's okay with LL, vector, whatever we want to use.
- In the list, put a LL of the index neightbors in that index
- i.e, in the 0th index, there will be a LL containing 4 and 1
- Array of LL
- Size: O(n + m) where m is the number of edges, proportional to the input
- Better than the boolean matrix depending on the size of m
- Actually really sucks because each "box" is 64 bits
- We will assume the graph for our project is undirected
*/ | [
"[email protected]"
] | |
0c06188f09e9b90af28bc395d85f02d097e9b4f7 | 681d78f4a954f7d0dec441a97d07420df36b52f2 | /Codechef/LONG_CHALLENGES/1-18/monster.cpp | 310ab1d367a5d1a8943f91de165fedbbae7ad4f7 | [] | no_license | pkc232/CompetitiveCoding | 117364bea4aee04ff570615f4881391c9f243a15 | 2cf9216875678e3e8cf6ca91d7bb13bb597387ba | refs/heads/master | 2022-02-09T07:16:39.273208 | 2022-01-16T17:14:59 | 2022-01-16T17:14:59 | 158,157,982 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,403 | cpp | #include <bits/stdc++.h>
#define ll long long int
#define pb push_back
using namespace std;
ll h[3000000];
struct trieNode{
vector<int> indices;
trieNode* arr[2];
};
void initialize(trieNode* rt){
rt->arr[0]=NULL;
rt->arr[1]=NULL;
}
void insertNd(trieNode* root,int ind,int &act){
if(ind==0){
root->indices.pb(act);
return;
}
int rem=(ind&1);
if(root->arr[rem]==NULL){
root->arr[rem]=new trieNode;
initialize(root->arr[rem]);
}
ind=(ind>>1);
insertNd(root->arr[rem],ind,act);
}
int dead(trieNode* root,ll x,ll y){
if(root==NULL)
return 0;
int c=0;
for(int i=0;i<root->indices.size();i++){
//if(h[root->indices[i]]>0)
{
h[root->indices[i]]-=y;
if(h[root->indices[i]]<=0){
// cout<<h[root->indices[i]]<<endl;
// cout<<root->indices[i]<<" killed\n";
root->indices.erase(root->indices.begin()+i);
c++;
}
}
}
// cout<<x<<endl;
if(x==0)
return c;
int rem = (x&1);
x=(x>>1);
if(rem){
c+=dead(root->arr[rem],x,y);
c+=dead(root->arr[0],x,y);
}
else
{
c+=dead(root->arr[rem],x,y);
}
return c;
}
int main(int argc, char const *argv[])
{
std::ios_base::sync_with_stdio(false);
int n,i,j;
cin>>n;
trieNode* root=new trieNode;
initialize(root);
int cnt=n;
for(i=0;i<n;i++){
insertNd(root,i,i);
cin>>h[i];
}
int q;
cin>>q;
ll x,y;
while(q--){
cin>>x>>y;
cnt-=dead(root,x,y);
cout<<cnt<<endl;
}
return 0;
}
| [
"[email protected]"
] | |
4a5fdb45ab97412302f8496e26071fc425e6c97d | 101c5e7fdb8aacc9530cc5867103e4cb7791a57a | /Source/MemoryMatrixProva/Squares.cpp | fbed2ff3b953b98e2d8ee73fde1b7791ee29b1c2 | [] | no_license | flanmi/MemoryMatrixProva | 1690b386404624dc56a6042f34d60c9b48f67d26 | 29ad24062592ba31525a6aa731e0d583a9e790ca | refs/heads/master | 2021-01-18T23:15:42.957458 | 2017-04-13T17:14:43 | 2017-04-13T17:14:43 | 87,100,518 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,725 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "MemoryMatrixProva.h"
#include "Squares.h"
#include "PaperSpriteComponent.h"
#include "PaperSprite.h"
#include "Grid.h"
// Sets default values
ASquares::ASquares()
{
// Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it.
PrimaryActorTick.bCanEverTick = true;
Sprite = CreateDefaultSubobject<UPaperSpriteComponent>(TEXT("Sprite"));
Sprite->SetSprite(ClosedSprite);
Sprite->OnInputTouchBegin.AddDynamic(this, &ASquares::OnTouchBegin);
RootComponent = Sprite;
}
// Called when the game starts or when spawned
void ASquares::BeginPlay()
{
Super::BeginPlay();
}
// Called every frame
void ASquares::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}
void ASquares::Click() {
if (Sprite->GetSprite() == (ClosedSprite)) {
Sprite->SetSprite(OpenedSprite);
}
}
void ASquares::AutoClick() {
if (Sprite->GetSprite() == (ClosedSprite)) {
Sprite->SetSprite(OpenedSprite);
GetWorldTimerManager().SetTimer(TempoPiscar, this, &ASquares::Pisca, 1.0f, true);
}
}
void ASquares::SetIndex(int NewIndex) {
Index = NewIndex;
}
int ASquares::GetIndex() {
return Index;
}
void ASquares::OnTouchBegin(ETouchIndex::Type type, UPrimitiveComponent* TouchedComponent) {
UWorld* World = GetWorld();
if (World != nullptr) {
Click();
OwnerGrid->Verificar(this);
//GetWorldTimerManager().SetTimer(TempoPiscar, this, &ASquares::Pisca, 0.5f, true);
}
}
void ASquares::Pisca() {
Sprite->SetSprite(ClosedSprite);
GetWorldTimerManager().ClearTimer(TempoPiscar);
}
void ASquares::SetOwnerGrid(class AGrid* Tabuleiro) {
OwnerGrid = Tabuleiro;
} | [
"[email protected]"
] | |
63946af4cabea4371246a3e470ab4aee2043e8e0 | 0e8bd6ecee37b391299e8a41c842ce2786864e55 | /src/Magnum/Math/Algorithms/Svd.h | 72c8e1d1e6d50312200425d6db81de67da0f7765 | [
"MIT"
] | permissive | 91yuan/magnum | c3fc8a0287bcd2a8d62ac5db5aec905b9e185468 | 929329b1f8363ac5e6f8688423c6c6854014865e | refs/heads/master | 2021-01-19T16:41:37.924578 | 2017-08-21T17:23:50 | 2017-08-21T20:17:31 | 101,019,156 | 1 | 0 | null | 2017-08-22T03:54:43 | 2017-08-22T03:54:43 | null | UTF-8 | C++ | false | false | 10,927 | h | #ifndef Magnum_Math_Algorithms_Svd_h
#define Magnum_Math_Algorithms_Svd_h
/*
This file is part of Magnum.
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017
Vladimír Vondruš <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
/** @file
* @brief Function @ref Magnum::Math::Algorithms::svd()
*/
#include <tuple>
#include "Magnum/Math/Functions.h"
#include "Magnum/Math/Matrix.h"
namespace Magnum { namespace Math { namespace Algorithms {
namespace Implementation {
template<class T> T pythagoras(T a, T b) {
T absa = std::abs(a);
T absb = std::abs(b);
if(absa > absb)
return absa*std::sqrt(T(1) + Math::pow<2>(absb/absa));
else if(absb == T(0)) /** @todo epsilon comparison? */
return T(0);
else
return absb*std::sqrt(T(1) + Math::pow<2>(absa/absb));
}
template<class T> constexpr T smallestDelta();
template<> constexpr Float smallestDelta<Float>() { return 1.0e-32f; }
template<> constexpr Double smallestDelta<Double>() { return 1.0e-64; }
}
/**
@brief Singular Value Decomposition
Performs Thin SVD on given matrix where @p rows >= @p cols:
@f[
M = U \Sigma V^*
@f]
Returns first @p cols column vectors of @f$ U @f$, diagonal of @f$ \Sigma @f$
and non-transposed @f$ V @f$. If the solution doesn't converge, returns
zero matrices.
Full @f$ U @f$, @f$ \Sigma @f$ matrices and original @f$ M @f$ matrix can be
reconstructed from the values as following:
@code
RectangularMatrix<cols, rows, Double> m;
RectangularMatrix<cols, rows, Double> uPart;
Vector<cols, Double> wDiagonal;
Matrix<cols, Double> v;
std::tie(uPart, wDiagonal, v) = Math::Algorithms::svd(m);
// Extend U
Matrix<rows, Double> u(Matrix<rows, Double>::Zero);
for(std::size_t i = 0; i != rows; ++i)
u[i] = uPart[i];
// Diagonal W
RectangularMatrix<cols, rows, Double> w =
RectangularMatrix<cols, rows, Double>::fromDiagonal(wDiagonal);
// u*w*v.transposed() == m
@endcode
Implementation based on *Golub, G. H.; Reinsch, C. (1970). "Singular value
decomposition and least squares solutions"*.
*/
/* The matrix is passed by value because it is changed inside */
template<std::size_t cols, std::size_t rows, class T> std::tuple<RectangularMatrix<cols, rows, T>, Vector<cols, T>, Matrix<cols, T>> svd(RectangularMatrix<cols, rows, T> m) {
static_assert(rows >= cols, "Unsupported matrix aspect ratio");
static_assert(T(1)+TypeTraits<T>::epsilon() > T(1), "Epsilon too small");
constexpr T tol = Implementation::smallestDelta<T>()/TypeTraits<T>::epsilon();
static_assert(tol > T(0), "Tol too small");
constexpr std::size_t maxIterations = 50;
Matrix<cols, T> v{ZeroInit};
Vector<cols, T> e, q;
/* Householder's reduction to bidiagonal form */
T g = T(0);
T epsilonX = T(0);
for(std::size_t i = 0; i != cols; ++i) {
const std::size_t l = i+1;
e[i] = g;
T s1 = T(0);
for(std::size_t j = i; j != rows; ++j)
s1 += Math::pow<2>(m[i][j]);
if(s1 > tol) {
const T f = m[i][i];
g = (f < T(0) ? std::sqrt(s1) : -std::sqrt(s1));
const T h = f*g - s1;
m[i][i] = f - g;
for(std::size_t j = l; j != cols; ++j) {
T s = T(0);
for(std::size_t k = i; k != rows; ++k)
s += m[i][k]*m[j][k];
const T n = s/h;
for(std::size_t k = i; k != rows; ++k)
m[j][k] += n*m[i][k];
}
} else g = T(0);
q[i] = g;
T s2 = T(0);
for(std::size_t j = l; j != cols; ++j)
s2 += Math::pow<2>(m[j][i]);
if(s2 > tol) {
const T f = m[i+1][i];
g = (f < T(0) ? std::sqrt(s2) : -std::sqrt(s2));
const T h = f*g - s2;
m[i+1][i] = f - g;
for(std::size_t j = l; j != cols; ++j)
e[j] = m[j][i]/h;
for(std::size_t j = l; j != rows; ++j) {
T s = T(0);
for(std::size_t k = l; k != cols; ++k)
s += m[k][j]*m[k][i];
for(std::size_t k = l; k != cols; ++k)
m[k][j] += s*e[k];
}
} else g = T(0);
const T y = std::abs(q[i]) + std::abs(e[i]);
if(y > epsilonX) epsilonX = y;
}
/* Accumulation of right hand transformations */
for(std::size_t l = cols; l != 0; --l) {
const std::size_t i = l-1;
if(g != T(0)) { /** @todo epsilon check? */
const T h = g*m[i+1][i];
for(std::size_t j = l; j != cols; ++j)
v[i][j] = m[j][i]/h;
for(std::size_t j = l; j != cols; ++j) {
T s = T(0);
for(std::size_t k = l; k != cols; ++k)
s += m[k][i]*v[j][k];
for(std::size_t k = l; k != cols; ++k)
v[j][k] += s*v[i][k];
}
}
for(std::size_t j = l; j != cols; ++j)
v[j][i] = v[i][j] = T(0);
v[i][i] = T(1);
g = e[i];
}
/* Accumulation of left hand transformations */
for(std::size_t l = cols; l != 0; --l) {
const std::size_t i = l-1;
for(std::size_t j = l; j != cols; ++j)
m[j][i] = T(0);
const T d = q[i];
if(d != T(0)) { /** @todo epsilon check? */
const T h = m[i][i]*d;
for(std::size_t j = l; j != cols; ++j) {
T s = T(0);
for(std::size_t k = l; k != rows; ++k)
s += m[i][k]*m[j][k];
const T f = s/h;
for(std::size_t k = i; k != rows; ++k)
m[j][k] += f*m[i][k];
}
for(std::size_t j = i; j != rows; ++j)
m[i][j] /= d;
} else for(std::size_t j = i; j != rows; ++j)
m[i][j] = T(0);
m[i][i] += T(1);
}
/* Diagonalization of the bidiagonal form */
const T epsilon = TypeTraits<T>::epsilon()*epsilonX;
for(std::size_t k2 = cols; k2 != 0; --k2) {
const std::size_t k = k2 - 1;
for(std::size_t iteration = 0; iteration != maxIterations; ++iteration) {
/* Test for splitting */
bool doCancellation = true;
std::size_t l = 0;
for(std::size_t l2 = k2; l2 != 0; --l2) {
l = l2 - 1;
if(std::abs(e[l]) <= epsilon) {
doCancellation = false;
break;
} else if(std::abs(q[l-1]) <= epsilon) {
break;
}
}
/* Cancellation */
if(doCancellation) {
const std::size_t l1 = l - 1;
T c = T(0);
T s = T(1);
for(std::size_t i = l; i != k+1; ++i) {
CORRADE_INTERNAL_ASSERT(i <= k+1);
const T f = s*e[i];
e[i] = c*e[i];
if(std::abs(f) <= epsilon) break;
const T j = q[i];
const T h = Implementation::pythagoras(f, j);
q[i] = h;
c = j/h;
s = -f/h;
const Vector<rows, T> a = m[l1];
const Vector<rows, T> b = m[i];
m[l1] = a*c+b*s;
m[i] = -a*s+b*c;
}
}
/* Test for convergence */
const T z = q[k];
if(l == k) {
/* Invert to non-negative */
if(z < T(0)) {
q[k] = -z;
v[k] = -v[k];
}
break;
/* Exceeded iteration count, done */
} else if(iteration >= maxIterations-1) {
Corrade::Utility::Error() << "Magnum::Math::Algorithms::svd(): no convergence";
return std::make_tuple(RectangularMatrix<cols, rows, T>{}, Vector<cols, T>{}, Matrix<cols, T>{ZeroInit});
}
/* Shift from bottom 2x2 minor */
const T y = q[k-1];
const T h = e[k];
const T d = e[k-1];
T x = q[l];
T f = ((y - z)*(y + z) + (d - h)*(d + h))/(T(2)*h*y);
const T b = Implementation::pythagoras(f, T(1));
if(f < T(0))
f = ((x - z)*(x + z) + h*(y/(f - b) - h))/x;
else
f = ((x - z)*(x + z) + h*(y/(f + b) - h))/x;
/* Next QR transformation */
/** @todo isn't this extractable elsewhere? */
T c = T(1);
T s = T(1);
for(std::size_t i = l+1; i != k+1; ++i) {
CORRADE_INTERNAL_ASSERT(i <= k+1);
const T g1 = c*e[i];
const T h1 = s*e[i];
const T y1 = q[i];
const T z1 = Implementation::pythagoras(f, h1);
e[i-1] = z1;
c = f/z1;
s = h1/z1;
f = x*c + g1*s;
const T g2 = -x*s + g1*c;
const T h2 = y1*s;
const T y2 = y1*c;
const Vector<cols, T> a1 = v[i-1];
const Vector<cols, T> b1 = v[i];
v[i-1] = a1*c+b1*s;
v[i] = -a1*s+b1*c;
const T z2 = Implementation::pythagoras(f, h2);
q[i-1] = z2;
c = f/z2;
s = h2/z2;
f = c*g2 + s*y2;
x = -s*g2 + c*y2;
const Vector<rows, T> a2 = m[i-1];
const Vector<rows, T> b2 = m[i];
m[i-1] = a2*c+b2*s;
m[i] = -a2*s+b2*c;
}
e[l] = T(0);
e[k] = f;
q[k] = x;
}
}
return std::make_tuple(m, q, v);
}
}}}
#endif
| [
"[email protected]"
] | |
7ed12236434260d41a206a4d846151790989105c | c591b56220405b715c1aaa08692023fca61f22d4 | /Milijolly/Milestone7/M7(Q44).cpp | a8801b9f6adc8d86a5352300cb7fcbeb517e0436 | [] | no_license | Girl-Code-It/Beginner-CPP-Submissions | ea99a2bcf8377beecba811d813dafc2593ea0ad9 | f6c80a2e08e2fe46b2af1164189272019759935b | refs/heads/master | 2022-07-24T22:37:18.878256 | 2021-11-16T04:43:08 | 2021-11-16T04:43:08 | 263,825,293 | 37 | 105 | null | 2023-06-05T09:16:10 | 2020-05-14T05:39:40 | C++ | UTF-8 | C++ | false | false | 983 | cpp | //Write a C++ program to convert Octal to Hexadecimal number system.
#include<fstream> // cin, cout and file related functions
#include<iostream>
#include<conio.h>
#include<math.h>
#include<stdio.h>
#include<string.h>
using namespace std;
int main()
{ char HEXVALUE[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
int sum,octal,digit,digit2,index,sumdeci,n;
long tempDecimal,temp;
char hex[65];
cout<<"Enter the octal number "<<endl;
cin>>octal;
temp=octal;
n=0;sumdeci=0;
while(temp!=0)
{
digit=temp%10;
sumdeci=sumdeci+ digit*pow(8,n);
temp=temp/10;
n++;
}
tempDecimal=sumdeci;
index=0;
while(tempDecimal !=0)
{
digit2 = tempDecimal % 16;
hex[index] = HEXVALUE[digit2];
tempDecimal /= 16;
index++;
}
hex[index] = '\0';
strrev(hex);
cout<<"Hexadecimal number";
puts(hex);
getch();
return 0;
}
| [
"[email protected]"
] | |
68c4b8294edfdc6afce7a3654cc2375368f7c459 | 93b786eacb5604e68daaeb880631285d6add7db7 | /Div2B/447B.cpp | ae034eed099d6290f5c93c098985df7c4fda0fc6 | [] | no_license | kunal1244/A2OJ-Ladders | bb33e3ccf6c804c3618fb690528e1f69186bc36d | 46579cd4192bbcf250604ae594acc78ee6da8807 | refs/heads/master | 2023-04-23T14:26:32.091401 | 2021-05-13T20:33:09 | 2021-05-13T20:33:09 | 337,064,078 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 626 | cpp | #include <bits/stdc++.h>
using namespace std;
#define ll long long int
void solve(){
string s;
ll k;
cin >> s >> k;
ll arr[26];
ll max_val = INT_MIN, result = 0;
for(ll i = 0; i < 26; i++){
cin >> arr[i];
max_val = max(max_val, arr[i]);
}
for(ll i = 0; i < s.size(); i++) result += (arr[s[i] - 'a']) * (i + 1);
result += max_val * (s.size() * k + k * (k + 1) / 2);
cout << result << endl;
}
int main(){
std::ios_base::sync_with_stdio(NULL);
cin.tie(NULL);
cout.tie(NULL);
ll t = 1;
// cin >> t;
while(t--){
solve();
}
return 0;
} | [
"[email protected]"
] | |
a404ff87edf2700a22356b6863ad7b52458db6c2 | 32132c3e77a82e071a8ba43adcd0e1432ef7aed1 | /src/TCPServer/TCPServer.cpp | 9c1eff4351a324cea00fefacafdf6bd690dc3a68 | [] | no_license | sanrree/game_server | aa0b08ad38b909ebd9ebd76a7833ec72ae1da3a5 | 8f701348e1dfc9fa64857add464f69eb53c0b338 | refs/heads/master | 2023-03-03T14:35:01.805411 | 2021-02-14T17:54:51 | 2021-02-14T17:54:51 | 297,174,778 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,525 | cpp | #include "TCPServer.h"
#include "string.h"
#include <iostream>
#include <unistd.h>
std::mutex TCPServer::mutex_;
TCPServer::TCPServer()
{
if ((sockfd_ = socket(AF_INET, SOCK_STREAM, 0)) < 0)
{
error("Socket creation failed");
}
}
void TCPServer::send(int client, byte *data)
{
int size = sizeof(data);
if (::send(client, data, size, 0) < 0)
{
std::cout << "error sending data" << std::endl;
}
}
void TCPServer::setFlag(int flag)
{
int opts = fcntl(sockfd_, F_GETFL) | flag;
if (fcntl(sockfd_, F_SETFL, opts) < 0)
{
error("set flag error");
}
}
void TCPServer::setAddress(int address, int port)
{
listen_addr_.sin_family = AF_INET;
listen_addr_.sin_addr.s_addr = ntohl(address);
listen_addr_.sin_port = htons(port);
};
void TCPServer::start(int port)
{
setAddress(INADDR_ANY, port);
if (bind(sockfd_, (sockaddr *)&listen_addr_, sizeof(listen_addr_)) < 0)
{
error("bind failed");
}
if (listen(sockfd_, 3) < 0)
{
error("listen error");
}
setFlag(NON_BLOCKING);
sockaddr address;
socklen_t addr_length = sizeof(address);
int clientfd;
listening_ = true;
printf("Waiting for Clients\n");
while (listening_)
{
clientfd = accept(sockfd_, &address, &addr_length);
if (clientfd < 0)
{
continue;
}
clients_.insert({clientfd, address});
std::thread clientThread(&TCPServer::handleClient, this, clientfd);
clientThread.detach();
}
}
void TCPServer::handleClient(int clientfd)
{
std::cout << "New Client!" << std::endl;
int readBytes = 0;
unsigned char buffer[BUFFER_SIZE];
bool listening = true;
while (listening)
{
readBytes = read(clientfd, buffer, BUFFER_SIZE);
if (readBytes < 0)
{
std::cout << "Error reading bytes" << std::endl;
}
else if (readBytes == 0)
{
std::cout << "Client Disconnected" << std::endl;
listening = false;
TCPServer::mutex_.lock();
clients_.erase(clientfd);
TCPServer::mutex_.unlock();
}
else
{
if (delegate != nullptr)
{
TCPServer::mutex_.lock();
delegate->onDataReceive(buffer, clientfd);
TCPServer::mutex_.unlock();
}
memset(&buffer, 0, BUFFER_SIZE);
}
}
} | [
"[email protected]"
] | |
c1eec992364bc5f3872767fc4e61571ae7d5799e | 295d1036365e1bc9625c68b633808daec19d9a72 | /Section_4/LinkerError/src/main.cpp | 485ce42a2a6d5f723def537ef46856a9ce63996e | [] | no_license | Cancain/udemy_CPP | e99a61cf9a52799670584c158623c166fb83110b | eff944ce3810c106e4367f50075d310e08cce56b | refs/heads/master | 2020-12-05T10:12:06.354011 | 2020-06-30T18:17:20 | 2020-06-30T18:17:20 | 232,076,904 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 125 | cpp | #include <iostream>
extern int x;
int main(){
std::cout << "Hello World" << std::endl;
std::cout << x;
return 0;
}
| [
"[email protected]"
] | |
aa5af9c7aee9bc3b5577ca2728bfa2d7550e1b62 | c8effd86fcef400d48ef420e1597a929078adde3 | /VSProjects (MFC)/BuildConfiguratorForAutodeskInventor/AssemblyConfig/ShestDlg.h | f7a0b528d9748237427a17d3b798f57443c6d049 | [] | no_license | proxzi/Projects | 60d7d7c4de8d3e377f4b01df679ef3fa7fe72098 | 09749cce546dba1122ff53c153d83be4bf7d5f9f | refs/heads/main | 2023-02-25T05:32:53.442023 | 2021-02-08T23:24:37 | 2021-02-08T23:24:37 | 337,149,007 | 1 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 606 | h | #pragma once
#include "CAcCtrl.h"
// диалоговое окно CShestDlg
class CShestDlg : public CDialog
{
DECLARE_DYNAMIC(CShestDlg)
public:
CShestDlg(CWnd* pParent = NULL); // стандартный конструктор
virtual ~CShestDlg();
// Данные диалогового окна
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_SHEST };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // поддержка DDX/DDV
DECLARE_MESSAGE_MAP()
public:
double Diam2;
double DiamVerh2;
double ZubVisota2;
int Kol_vo_Zubov2;
double DiamShest2;
double LongB4;
};
| [
"[email protected]"
] | |
e36924f19be51ff9901807df0d847574a9ab0659 | e6f3c509c564505dee34e551945ea165550d52ce | /libUnicornio/src/Eventos/EventosJoysticks.cpp | 27b4234d13e3ed8311588a504c735a797357c549 | [] | no_license | PaulaPrates/libUnicornio | c16c437537fbb4c0696359a33b6d436c46ee1e74 | 29181c1b7e09944b877602171c584a3c8126de53 | refs/heads/master | 2020-04-01T22:12:52.370011 | 2015-05-05T16:22:22 | 2015-05-05T16:22:22 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 4,379 | cpp | #include "Eventos.h"
Joystick::Joystick(): id(-1), deadZone(0.2f), x(0), y(0), z(0), xDir(0), yDir(0), zDir(0), sdl_joystick(NULL), sdl_haptic(NULL)
{
for(int i = 0; i < NUMERO_DE_BOTOES_JOYSTICK; ++i)
{
pressionou[i] = false;
segurando[i] = false;
soltou[i] = false;
}
};
Joystick::~Joystick()
{};
void Joystick::vibrar(float forca, float tempo)
{
if(sdl_haptic)
{
if(SDL_HapticRumbleSupported(sdl_haptic))
SDL_HapticRumblePlay(sdl_haptic, forca, tempo*1000);
}
}
void Joystick::pararDeVibrar()
{
if(sdl_haptic)
{
if(SDL_HapticRumbleSupported(sdl_haptic))
SDL_HapticRumbleStop(sdl_haptic);
}
}
int EventosJoysticks::nextId = 0;
EventosJoysticks::EventosJoysticks()
{}
EventosJoysticks::~EventosJoysticks()
{}
void EventosJoysticks::atualizar()
{
for(int i = 0; i < NUMERO_DE_BOTOES_JOYSTICK; ++i)
{
player1.pressionou[i] = false;
player1.soltou[i] = false;
player2.pressionou[i] = false;
player2.soltou[i] = false;
player3.pressionou[i] = false;
player3.soltou[i] = false;
player4.pressionou[i] = false;
player4.soltou[i] = false;
}
}
void EventosJoysticks::processarEvento(const SDL_Event& evento)
{
Joystick* joy;
switch(evento.type)
{
case SDL_JOYAXISMOTION:
joy = identificarJoystick(evento.jaxis.which);
if(joy)
{
switch(evento.jaxis.axis)
{
case SDL_CONTROLLER_AXIS_LEFTX:
joy->x = evento.caxis.value/32767.0;
filtrarInput(joy->x, joy);
break;
case SDL_CONTROLLER_AXIS_LEFTY:
joy->y = evento.caxis.value/32767.0;
filtrarInput(joy->y, joy);
break;
case SDL_CONTROLLER_AXIS_RIGHTX:
joy->xDir = evento.caxis.value/32767.0;
filtrarInput(joy->xDir, joy);
break;
case SDL_CONTROLLER_AXIS_RIGHTY:
joy->yDir = evento.caxis.value/32767.0;
filtrarInput(joy->yDir, joy);
break;
// nao testado
case SDL_CONTROLLER_AXIS_TRIGGERLEFT:
joy->z = evento.caxis.value/32767.0;
filtrarInput(joy->z, joy);
break;
// nao testado
case SDL_CONTROLLER_AXIS_TRIGGERRIGHT:
joy->zDir = evento.caxis.value/32767.0;
filtrarInput(joy->zDir, joy);
break;
}
}
break;
case SDL_JOYBUTTONDOWN:
joy = identificarJoystick(evento.jbutton.which);
if(joy)
{
joy->segurando[evento.jbutton.button] = true;
if(evento.jbutton.state == SDL_PRESSED)
{
joy->pressionou[evento.jbutton.button] = true;
}
}
break;
case SDL_JOYBUTTONUP:
joy = identificarJoystick(evento.jbutton.which);
if(joy)
{
joy->segurando[evento.jbutton.button] = false;
if(evento.jbutton.state == SDL_RELEASED)
{
joy->soltou[evento.jbutton.button] = true;
}
}
break;
case SDL_JOYDEVICEADDED:
joy = getPrimeiroJoystickLivre();
if(joy)
{
joy->id = nextId;
joy->sdl_joystick = SDL_JoystickOpen(evento.jdevice.which);
joy->sdl_haptic = SDL_HapticOpenFromJoystick(joy->sdl_joystick);
if(joy->sdl_haptic)
{
if(SDL_HapticRumbleSupported(joy->sdl_haptic))
SDL_HapticRumbleInit(joy->sdl_haptic);
}
nextId++;
}
break;
case SDL_JOYDEVICEREMOVED:
joy = identificarJoystick(evento.jdevice.which);
if(joy)
{
if(joy->sdl_haptic)
{
SDL_HapticClose(joy->sdl_haptic);
joy->sdl_haptic = NULL;
}
SDL_JoystickClose(joy->sdl_joystick);
joy->sdl_joystick = NULL;
joy->id = -1;
}
break;
}
}
Joystick* EventosJoysticks::identificarJoystick(const int id)
{
// compara o id como cada um dos players
if(id == player1.id)
{
return &player1;
}
else if(id == player2.id)
{
return &player2;
}
else if(id == player3.id)
{
return &player3;
}
else if(id == player4.id)
{
return &player4;
}
// se não tem nenhum player com este id pega o primeiro que estiver livre
else return getPrimeiroJoystickLivre();
}
Joystick* EventosJoysticks::getPrimeiroJoystickLivre()
{
if(player1.id == -1)
{
return &player1;
}
else if(player2.id == -1)
{
return &player2;
}
else if(player3.id == -1)
{
return &player3;
}
else if(player4.id == -1)
{
return &player4;
}
// se nenhum estiver livre, ignora (retorna nulo)
return NULL;
}
void EventosJoysticks::filtrarInput(float& f, Joystick* joy)
{
// verifica dead zone
if((f < 0) && (f > -joy->deadZone))
{
f = 0.0;
}
else if((f > 0) && (f < joy->deadZone))
{
f = 0.0;
}
// verifica se é maior que 1
else if(f > 1.0)
{
f = 1.0;
}
else if(f < -1.0)
{
f = -1.0;
}
} | [
"[email protected]"
] | |
d6adc9044d6594824619a1937e1b7ce0e1917c67 | 2229d2a45321004ddf4ff3bed488a2c6cd93c59a | /ChatClient/ChatClient.cpp | 206ee8f394ee7e8316101257e655cf86ed04afa2 | [] | no_license | alexis-pepe/visual-C-MFC | 3a43b6f2421a8fbffc9048df8ddb6021af45da23 | 19d2985e749af6d2200ebfec5454bbcfbcdbbf9e | refs/heads/master | 2023-02-19T06:34:38.374978 | 2021-01-24T02:40:52 | 2021-01-24T02:40:52 | 332,352,214 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,860 | cpp |
// ChatClient.cpp : 定义应用程序的类行为。
//
#include "stdafx.h"
#include "ChatClient.h"
#include "ChatClientDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CChatClientApp
BEGIN_MESSAGE_MAP(CChatClientApp, CWinApp)
ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
END_MESSAGE_MAP()
// CChatClientApp 构造
CChatClientApp::CChatClientApp()
{
// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}
// 唯一的一个 CChatClientApp 对象
CChatClientApp theApp;
// CChatClientApp 初始化
BOOL CChatClientApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。 否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}
AfxEnableControlContainer();
// 创建 shell 管理器,以防对话框包含
// 任何 shell 树视图控件或 shell 列表视图控件。
CShellManager *pShellManager = new CShellManager;
// 激活“Windows Native”视觉管理器,以便在 MFC 控件中启用主题
CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows));
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
CChatClientDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
// “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
// “取消”来关闭对话框的代码
}
else if (nResponse == -1)
{
TRACE(traceAppMsg, 0, "警告: 对话框创建失败,应用程序将意外终止。\n");
TRACE(traceAppMsg, 0, "警告: 如果您在对话框上使用 MFC 控件,则无法 #define _AFX_NO_MFC_CONTROLS_IN_DIALOGS。\n");
}
// 删除上面创建的 shell 管理器。
if (pShellManager != NULL)
{
delete pShellManager;
}
#ifndef _AFXDLL
ControlBarCleanUp();
#endif
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
// 而不是启动应用程序的消息泵。
return FALSE;
}
| [
"PEPE@LAPTOP-PEPE1"
] | PEPE@LAPTOP-PEPE1 |
a69cdab5ba7ea73d512eb879171d99369403472e | 86032d041f2d69cd53d8e39dc905b43b8a259642 | /От Влада/4_semester/qt_projects/MathModel6DOF/su_rov.cpp | cb5f32060421c870d545739fff24c4dd6e89479e | [] | no_license | edirab/Studying-Qt | 317477316c2acf992d63da37176d0ad9d1328bbc | 2fbebea58b6e456a0478dd85597c0ff35c707c79 | refs/heads/main | 2023-04-30T22:06:53.141315 | 2021-05-21T12:44:35 | 2021-05-21T12:44:35 | 304,873,190 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,633 | cpp | #include "su_rov.h"
SU_ROV::SU_ROV(QObject *parent) : QObject(parent)
{
K_Protocol = new Qkx_coeffs("protocols.conf", "ki");
X_Protocol = new x_protocol("protocols.conf", "xi", X);
timer_period = 0.01;
timer.start(timer_period*1000);
connect(&timer, SIGNAL(timeout()), this, SLOT(tick()));
resetModel();
k_gamma = 0.3;
m = 100;
delta_m = 2;
cv1[0] = 109; cv1[1] = 950; cv1[2] = 633;
cv2[0] = 10.9; cv2[1] = 114; cv2[2] = 76;
cw1[0] = 228.6; cw1[1] = 366; cw1[2] = 366; // kak v rabote Egorova
cw2[0] = 2.29; cw2[1] = 36.6; cw2[2] = 36.6;
lambda[1][1] = 50; lambda[2][2] = 101; lambda[3][3] = 101;
lambda[4][4] = 50; lambda[5][5] = 50; lambda[6][6] = 50;
J[0] = 4; J[1] = 19.8; J[2] = 19.8; //moment inercii apparata vdol sootvetstvuushih osei
kd = 3; //koefficient usilenija dvizhitelei
h = 0.018; //metacentricheskaya vysota
Td = 0.15; //postojannaya vremeni dvizhitelei
//koordinaty uporov dvizhitelei otnositelno centra mass apparata
l1=0.14;
l2=0.14;
depth_limit=100;
max_depth=100;
}
void SU_ROV::tick()
{
X[41][0]=K[41]; // задать курс
X[141][0] = K[141]; // задать дифферент
getDataFromModel();
yawControlChannel();
pitchControlChannel();
BFS_DRK(X[48][0],X[148][0],0,0);
runge(X[27][0], X[28][0], X[29][0], X[30][0], 0.01);
}
void SU_ROV::getDataFromModel()
{
X[142][0] = Tetta_g; // дифферент
X[42][0] = Psi_g; // курс
X[150][0] = W_Tetta_g; // угловая скорость по дифференту
X[50][0] = W_Psi_g; // угловая скорость по курсу
}
void SU_ROV::yawControlChannel()
{
X[43][0] = X[41][0] - X[42][0];
X[44][0] = X[43][0] * K[44];
X[45][0] = X[50][0] * K[45];
X[46][0] = X[44][0] - X[45][0] + X[41][0] * K[43];
X[48][0] = X[46][0];
}
void SU_ROV::pitchControlChannel()
{
// PI регулятор на координату
// U(n) = U(n-1) + Kp(E(n) - E(n-1)) + Ki*En
//
X[143][0] = X[141][0] - X[142][0]; // ошибка по углу. после надо вставить ПИ регулятор. E(n)
// пусть X[151][0] = E(n-1)
// X[152][0] = U(n-1)
// K[152] = Ki
X[144][0] = X[152][0] + K[144] * (X[143][0] - X[151][0]) + K[152] * X[143][0]; // U(n)
X[145][0] = X[150][0] * K[145];
X[146][0] = X[144][0] - X[145][0] + X[141][0] * K[143];
X[148][0] = X[146][0];
// E(n-1)
X[151][0] = X[143][0];
// U(n-1)
X[152][0] = saturation(X[144][0], K[13]); // это ограничение для интегратора по скорости
}
void SU_ROV::BFS_DRK(double Upsi, double Uteta, double Ugamma, double Ux)
{
//ограничим входные задающие сигналы в БФС ДРК
X[11][0] = saturation(Ux, K[11]);
X[12][0] = saturation(Upsi, K[12]);
X[13][0] = saturation(Uteta, K[13]);
X[14][0] = saturation(Ugamma, K[14]);
// далее вычисляем значения по структурной схеме
// после первого сумматора
X[15][0] = X[11][0] + X[12][0];
X[16][0] = X[11][0] + X[12][0];
X[17][0] = X[11][0] - X[12][0];
X[18][0] = X[11][0] - X[12][0];
// после второго сумматора
X[19][0] = X[15][0] - X[13][0];
X[20][0] = X[16][0] + X[13][0];
X[21][0] = X[17][0] - X[13][0];
X[22][0] = X[18][0] + X[13][0];
// после третьего сумматора
X[23][0] = X[19][0] - X[14][0];
X[24][0] = X[20][0] + X[14][0];
X[25][0] = X[21][0] + X[14][0];
X[26][0] = X[22][0] - X[14][0];
X[27][0] = saturation(X[23][0], K[23])*K[27];
X[28][0] = saturation(X[24][0], K[24])*K[28];
X[29][0] = saturation(X[25][0], K[25])*K[29];
X[30][0] = saturation(X[26][0], K[26])*K[30];
}
float SU_ROV::saturation(float input, float max) {
if (fabs(input)>= max)
return (sign(input)*max);
else return input;
}
void SU_ROV::model(const float Umvl, const float Umnl, const float Umvp, const float Umnp)
{
int limit1, limit2;
double G,delta_f;
//модули упоров движителей
Pmvp = a[7]; // маршевый верхний правый
Pmvl = a[8]; // маршевый верхний левый
Pmnp = a[9]; // маршевый нижний правый
Pmnl = a[10]; //маршевый нижний левый
//проекции упоров движителей на продольную ось апарата
Pmvp_x = Pmvp;
Pmnl_x = Pmnl;
Pmvl_x = Pmvl;
Pmnp_x = Pmnp;
double g = 9.81;
G = m*g; //вес аппарата
delta_f = delta_m * g; //плавучесть (H)
//obnulenie verticalnoi polozhitelnoi skorosti apparata pri dostizhenii poverhnosti
limit1 = limit2 = 0;
if (a[15] >= max_depth) {
a[15] = max_depth;
if (a[2] >= 0) {
a[2] = 0;
limit1 = 1;
}
};
//obnulenie verticalnoi polozhitelnoi skorosti apparata pri dostizhenii dna
if (a[15] <= 0)
{
a[15] = 0;
if (a[2] <= 0)
{
a[2] = 0;
limit2 = 1;
}
};
X[103][0]=Fdx = Pmvp_x + Pmvl_x + Pmnp_x + Pmnl_x;
Fgx = -cv1[0] * a[1] * fabs(a[1]) - cv2[0] * a[1];
FloatageX = sin(a[6]) * delta_f;
//FloatageX = 0; //обнуление остаточной плавучести
da[1] = (1/(m + lambda[1][1])) * (Fdx + Fgx + FloatageX); //vx'
Fdy = 0;
Fgy = -cv1[1] * a[2] * fabs(a[2]) - cv2[1] * a[2];
FloatageY = cos(a[6]) * cos(a[5]) * delta_f;
//FloatageY = 0; //обнуление остаточной плавучести
da[2] = (1/(m + lambda[2][2])) * (Fgy + Fdy + FloatageY); //vy'
Fdz = 0;
Fgz = -cv1[2] * a[3] * fabs(a[3]) - cv2[2] * a[3];
FloatageZ = -cos(a[6]) * sin(a[5]) * delta_f;
//FloatageZ = 0; //обнуление остаточной плавучести
da[3] = (1/(m + lambda[3][3])) * (Fdz + Fgz + FloatageZ); //vz'
da[4] = -(1/cos(a[6]) * ((-a[18]) * cos(a[5]) - sin(a[5]) * a[19])); //proizvodnaya kursa
da[5] = a[17] - tan(a[6]) * ((-a[18]) * cos(a[5]) - sin(a[5]) * a[19]); //proizvodnaya krena
da[6] = a[19] * cos(a[5]) + sin(a[5]) * (-a[18]); //proizvodnaya differenta
X[17][0]=da[7] = (1/Td) * (kd * (double)Umvp - Pmvp); // маршевый верхний правый
da[8] = (1/Td) * (kd * (double)Umvl - Pmvl); //маршевый верхний левый
da[9] = (1/Td) * (kd * (double)Umnp - Pmnp); // маршевый нижний правый
da[10] = (1/Td) * (kd * (double)Umnl - Pmnl); //маршевый нижний левый
da[11] = 0;
da[12] = 0;
da[13] = 0;
double alfa[4][4]; //матрица перевода из связанной СК в глобальную СК
a[4] = -a[4];
alfa[1][1] = cos(a[4])*cos(a[6]);
alfa[2][1] = sin(a[6]);
alfa[3][1] = -sin(a[4])*cos(a[6]);
alfa[1][2] = sin(a[5])*sin(a[4])-cos(a[5])*cos(a[4])*sin(a[6]);
alfa[2][2] = cos(a[5])*cos(a[6]);
alfa[3][2] = sin(a[5])*cos(a[4])+cos(a[5])*sin(a[4])*sin(a[6]);
alfa[1][3] = cos(a[5])*sin(a[4])+sin(a[5])*cos(a[4])*sin(a[6]);
alfa[2][3] = -sin(a[5])*cos(a[6]);
alfa[3][3] = cos(a[5])*cos(a[4])-sin(a[4])*sin(a[5])*sin(a[6]);
a[4] = -a[4];
da[14] = alfa[1][1] * a[1] + alfa[1][2] * a[2] + alfa[1][3] * a[3];
//dx_global
da[15] = alfa[2][1] * a[1] + alfa[2][2] * a[2] + alfa[2][3] * a[3];
//dy_global
da[16] = alfa[3][1] * a[1] + alfa[3][2] * a[2] + alfa[3][3] * a[3];
//dz_global
double Fa = G + delta_f;
double Fax = sin(a[6])*Fa;
//float Fay = cos(a[5])*cos(a[6])*Fa;
double Faz = -sin(a[5])*cos(a[6])*Fa;
X[101][0]=Mdx = k_gamma*( Pmvp_x + Pmnl_x - Pmnp_x - Pmvl_x );
Mgx = -cw1[0] * a[17] * fabs(a[17]) - cw2[0] * a[17];
Max = Faz*h;
//Max = 0; //obnulenie momenta ot sily Arhimeda
da[17] = (1/(J[0] + lambda[4][4])) * (Mdx + Mgx + Max);
X[105][0]=Pmvp_x;
X[106][0] =Pmvl_x;
X[107][0] = Pmnl_x;
X[108][0] = Pmnp_x;
X[100][0]=Mdy = l2*(-Pmvp_x + Pmvl_x + Pmnl_x - Pmnp_x);
Mgy = -cw1[1] * a[18] * fabs(a[18]) - cw2[1] * a[18];
da[18] = (1/(J[1] + lambda[5][5])) * (Mdy + Mgy);
X[102][0]=Mdz = l1*(-Pmvp_x - Pmvl_x + Pmnl_x + Pmnp_x);
Mgz = -cw1[2] * a[19] * fabs(a[19]) - cw2[2] * a[19];
Maz = -h*Fax;
//Maz = 0; //obnulenie momenta ot sily Arhimeda
da[19] = (1/(J[2] + lambda[6][6])) * (Mdz + Mgz +Maz);
da[20] = a[1];
da[21] = a[2];
da[22] = a[3];
}
void SU_ROV::runge(const float Umvl, const float Umnl, const float Umvp, const float Umnp, const float dt)
{
const double Kc = 180/M_PI;
double a1[23], y[23];
int i;
const double H1 = dt;
const int n = ANPA_MOD_CNT;
model(Umvl,Umnl,Umvp,Umnp);
for (i = 1; i < n; i++) {
a1[i] = a[i];
y[i] = da[i];
a[i] = a1[i] + 0.5 * H1 * da[i];
}
model(Umvl,Umnl,Umvp,Umnp);
for (i = 1; i < n; i++)
{
y[i] = y[i]+ 2 * da[i];
a[i] = a1[i] + 0.5 * H1 * da[i];
}
model(Umvl,Umnl,Umvp,Umnp);
for (i = 1; i < n; i++) {
y[i] = y[i] + 2 * da[i];
a[i] = a1[i] + H1 * da[i];
}
model(Umvl,Umnl,Umvp,Umnp);
for (i = 1; i < n; i++) {
a[i] = a1[i] + (H1 / 6) * (y[i] + da[i]);
}
//данные в СУ ( с преобразованием координат)
x_global = a[14]; //koordinata apparata v globalnoi SK
y_global = a[15]; //otstojanie ot dna otnositelno repernoi tochki, kotoraja na dne
cur_depth = max_depth - y_global; //tekush"aya glubina SPA
z_global = a[16]; //koordinaty apparata v globalnoi SK (преобразование координат)
Wx = a[17] * Kc; //uglovye skorosti SPA v svyazannyh osyah v gradus/sekunda
Wy = a[18] * Kc;
Wz = a[19] * Kc;
vx_local = a[1]; vy_local = a[2]; vz_local = a[3]; //lineinye skorosti SPA v svyazannyh osyah
vx_global = da[14]; vy_global = da[15]; vz_global = da[16]; // lineinye skorosti SPA v globalnyh osyah
Psi_g = a[4] * Kc; // ugol kursa (преобразование координат)
Gamma_g = a[5] * Kc; // ugol krena
Tetta_g = a[6] * Kc; // ugol differenta
W_Psi_g = da[4] * Kc; // proizvodnaya ugla kursa
W_Gamma_g = da[5] * Kc; // proizvodnaya ugla krena
W_Tetta_g = da[6] * Kc; // proizvodnaya ugla differenta
}
void SU_ROV::resetModel()
{
for (int i=0;i<ANPA_MOD_CNT;i++) {a[i] = 0.0f; da[i]=0.0f;}
}
| [
"[email protected]"
] | |
bc12cc1aa87853068916a7e9c0578919ed2241a1 | f2199478fb6a505a9d80bb26144712e411a4feeb | /TetrisBox/TetrisBox/Tetris.cpp | 5855c390f2ec0b52370f261d058ccd02425ae0e9 | [] | no_license | WhiteRabbt/hellow | e0a1b7fac97d45e96fd288b9bfb38830052fe325 | 60af5f66e022c5e6da2823811f04337fcf9e32f3 | refs/heads/master | 2020-04-07T20:51:33.004882 | 2019-05-28T09:04:04 | 2019-05-28T09:04:04 | 158,705,794 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,978 | cpp | #include "Tetris.h"
#include <iostream>
#include <ctime>
#include <stdlib.h>
int Box::s_IStates = 1;
void Box::InitBox()
{
SetRadom();
SetShape(m_CurType);
s_IStates = 1;
}
void Box::RightRotate()
{
static int OneCoords[4][2] = { { 0, -1 }, { 0, 0 }, { 0, 1 }, { 0, 2 } };
static int TwoCoords[4][2] = { { -1, 0,}, {0, 0},{1, 0},{2, 0} };
int coords[4][2];
memcpy(coords, m_Coords, sizeof(coords));
//田字形不旋转直接返回
if (MirroredLShape == m_CurType)
{
return;
}
//如果是I形状自己定义旋转
if (IShape == m_CurType )
{
if (s_IStates == 1)
{
memcpy(m_Coords, TwoCoords, sizeof(TwoCoords));
s_IStates = -1;
}
else
{
memcpy(m_Coords, OneCoords, sizeof(OneCoords));
s_IStates = 1;
}
return;
}
//(Y坐标变负赋给X坐标.X坐标不变赋给Y)
for (int i = 0; i < 4; ++i)
{
SetX(i, -coords[i][1]);
SetY(i, coords[i][0]);
}
}
void Box::RetNextBoxCoords(int nextCoords[][2])
{
memcpy(nextCoords,sm_coordsTable[m_NextType], sizeof(int)*8);
}
void Box::SetRadom()
{
m_CurType = m_NextType;
m_NextType = (emBoxType)(rand() % 8);
}
//设置形状
void Box::SetShape(emBoxType nType)
{
for (int i = 0; i < 4; i++)
{
m_Coords[i][0] = sm_coordsTable[nType][i][0];
m_Coords[i][1] = sm_coordsTable[nType][i][1];
}
}
const int Box::sm_coordsTable[8][4][2] = {
{ { 0, 0 },{ 0, 0 },{ 0, 0 },{ 0, 0 } },
{ { 0, -1 },{ 0, 0 },{ -1, 0 },{ -1, 1 } },
{ { 0, -1 },{ 0, 0 },{ 1, 0 },{ 1, 1 } },
{ { 0, -1 },{ 0, 0 },{ 0, 1 },{ 0, 2 } },
{ { -1, 0 },{ 0, 0 },{ 1, 0 },{ 0, 1 } },
{ { 0, 0 },{ 1, 0 },{ 0, 1 },{ 1, 1 } },
{ { -1, -1 },{ 0, -1 },{ 0, 0 },{ 0, 1 } },
{ { 1, -1 },{ 0, -1 },{ 0, 0 },{ 0, 1 } }
};
| [
"[email protected]"
] | |
85da710445d5da50518ff7a01fb01365e75a16b9 | 0c40e97b69dcd00f0b0b05f249d0fce448320fd8 | /src/consensus/tx_verify.cpp | b6f14494051e3653852159c866fd85933a635595 | [
"MIT"
] | permissive | Arhipovladimir/Earthcoin | 9908912df9b10b97512c545b855c3670767039d9 | bc5b5ee538c76e7232e93434aedd8688bae70792 | refs/heads/main | 2023-07-16T05:50:52.755250 | 2021-08-25T09:19:40 | 2021-08-25T09:19:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,915 | cpp | // Copyright (c) 2017-2017 The Earthcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <consensus/tx_verify.h>
#include <consensus/consensus.h>
#include <primitives/transaction.h>
#include <script/interpreter.h>
#include <consensus/validation.h>
// TODO remove the following dependencies
#include <chain.h>
#include <coins.h>
#include <utilmoneystr.h>
bool IsFinalTx(const CTransaction &tx, int nBlockHeight, int64_t nBlockTime)
{
if (tx.nLockTime == 0)
return true;
if ((int64_t)tx.nLockTime < ((int64_t)tx.nLockTime < LOCKTIME_THRESHOLD ? (int64_t)nBlockHeight : nBlockTime))
return true;
for (const auto& txin : tx.vin) {
if (!(txin.nSequence == CTxIn::SEQUENCE_FINAL))
return false;
}
return true;
}
std::pair<int, int64_t> CalculateSequenceLocks(const CTransaction &tx, int flags, std::vector<int>* prevHeights, const CBlockIndex& block)
{
assert(prevHeights->size() == tx.vin.size());
// Will be set to the equivalent height- and time-based nLockTime
// values that would be necessary to satisfy all relative lock-
// time constraints given our view of block chain history.
// The semantics of nLockTime are the last invalid height/time, so
// use -1 to have the effect of any height or time being valid.
int nMinHeight = -1;
int64_t nMinTime = -1;
// tx.nVersion is signed integer so requires cast to unsigned otherwise
// we would be doing a signed comparison and half the range of nVersion
// wouldn't support BIP 68.
bool fEnforceBIP68 = static_cast<uint32_t>(tx.nVersion) >= 2
&& flags & LOCKTIME_VERIFY_SEQUENCE;
// Do not enforce sequence numbers as a relative lock time
// unless we have been instructed to
if (!fEnforceBIP68) {
return std::make_pair(nMinHeight, nMinTime);
}
for (size_t txinIndex = 0; txinIndex < tx.vin.size(); txinIndex++) {
const CTxIn& txin = tx.vin[txinIndex];
// Sequence numbers with the most significant bit set are not
// treated as relative lock-times, nor are they given any
// consensus-enforced meaning at this point.
if (txin.nSequence & CTxIn::SEQUENCE_LOCKTIME_DISABLE_FLAG) {
// The height of this input is not relevant for sequence locks
(*prevHeights)[txinIndex] = 0;
continue;
}
int nCoinHeight = (*prevHeights)[txinIndex];
if (txin.nSequence & CTxIn::SEQUENCE_LOCKTIME_TYPE_FLAG) {
int64_t nCoinTime = block.GetAncestor(std::max(nCoinHeight-1, 0))->GetMedianTimePast();
// NOTE: Subtract 1 to maintain nLockTime semantics
// BIP 68 relative lock times have the semantics of calculating
// the first block or time at which the transaction would be
// valid. When calculating the effective block time or height
// for the entire transaction, we switch to using the
// semantics of nLockTime which is the last invalid block
// time or height. Thus we subtract 1 from the calculated
// time or height.
// Time-based relative lock-times are measured from the
// smallest allowed timestamp of the block containing the
// txout being spent, which is the median time past of the
// block prior.
nMinTime = std::max(nMinTime, nCoinTime + (int64_t)((txin.nSequence & CTxIn::SEQUENCE_LOCKTIME_MASK) << CTxIn::SEQUENCE_LOCKTIME_GRANULARITY) - 1);
} else {
nMinHeight = std::max(nMinHeight, nCoinHeight + (int)(txin.nSequence & CTxIn::SEQUENCE_LOCKTIME_MASK) - 1);
}
}
return std::make_pair(nMinHeight, nMinTime);
}
bool EvaluateSequenceLocks(const CBlockIndex& block, std::pair<int, int64_t> lockPair)
{
assert(block.pprev);
int64_t nBlockTime = block.pprev->GetMedianTimePast();
if (lockPair.first >= block.nHeight || lockPair.second >= nBlockTime)
return false;
return true;
}
bool SequenceLocks(const CTransaction &tx, int flags, std::vector<int>* prevHeights, const CBlockIndex& block)
{
return EvaluateSequenceLocks(block, CalculateSequenceLocks(tx, flags, prevHeights, block));
}
unsigned int GetLegacySigOpCount(const CTransaction& tx)
{
unsigned int nSigOps = 0;
for (const auto& txin : tx.vin)
{
nSigOps += txin.scriptSig.GetSigOpCount(false);
}
for (const auto& txout : tx.vout)
{
nSigOps += txout.scriptPubKey.GetSigOpCount(false);
}
return nSigOps;
}
unsigned int GetP2SHSigOpCount(const CTransaction& tx, const CCoinsViewCache& inputs)
{
if (tx.IsCoinBase())
return 0;
unsigned int nSigOps = 0;
for (unsigned int i = 0; i < tx.vin.size(); i++)
{
const Coin& coin = inputs.AccessCoin(tx.vin[i].prevout);
assert(!coin.IsSpent());
const CTxOut &prevout = coin.out;
if (prevout.scriptPubKey.IsPayToScriptHash())
nSigOps += prevout.scriptPubKey.GetSigOpCount(tx.vin[i].scriptSig);
}
return nSigOps;
}
int64_t GetTransactionSigOpCost(const CTransaction& tx, const CCoinsViewCache& inputs, int flags)
{
int64_t nSigOps = GetLegacySigOpCount(tx) * WITNESS_SCALE_FACTOR;
if (tx.IsCoinBase())
return nSigOps;
if (flags & SCRIPT_VERIFY_P2SH) {
nSigOps += GetP2SHSigOpCount(tx, inputs) * WITNESS_SCALE_FACTOR;
}
for (unsigned int i = 0; i < tx.vin.size(); i++)
{
const Coin& coin = inputs.AccessCoin(tx.vin[i].prevout);
assert(!coin.IsSpent());
const CTxOut &prevout = coin.out;
nSigOps += CountWitnessSigOps(tx.vin[i].scriptSig, prevout.scriptPubKey, &tx.vin[i].scriptWitness, flags);
}
return nSigOps;
}
bool CheckTransaction(const CTransaction& tx, CValidationState &state, bool fCheckDuplicateInputs)
{
// Basic checks that don't depend on any context
if (tx.vin.empty())
return state.DoS(10, false, REJECT_INVALID, "bad-txns-vin-empty");
if (tx.vout.empty())
return state.DoS(10, false, REJECT_INVALID, "bad-txns-vout-empty");
// Size limits (this doesn't take the witness into account, as that hasn't been checked for malleability)
if (::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION | SERIALIZE_TRANSACTION_NO_WITNESS) * WITNESS_SCALE_FACTOR > MAX_BLOCK_WEIGHT)
return state.DoS(100, false, REJECT_INVALID, "bad-txns-oversize");
// Check for negative or overflow output values
CAmount nValueOut = 0;
for (const auto& txout : tx.vout)
{
if (txout.nValue < 0)
return state.DoS(100, false, REJECT_INVALID, "bad-txns-vout-negative");
if (txout.nValue > MAX_MONEY)
return state.DoS(100, false, REJECT_INVALID, "bad-txns-vout-toolarge");
nValueOut += txout.nValue;
if (!MoneyRange(nValueOut))
return state.DoS(100, false, REJECT_INVALID, "bad-txns-txouttotal-toolarge");
}
// Check for duplicate inputs - note that this check is slow so we skip it in CheckBlock
if (fCheckDuplicateInputs) {
std::set<COutPoint> vInOutPoints;
for (const auto& txin : tx.vin)
{
if (!vInOutPoints.insert(txin.prevout).second)
return state.DoS(100, false, REJECT_INVALID, "bad-txns-inputs-duplicate");
}
}
if (tx.IsCoinBase())
{
if (tx.vin[0].scriptSig.size() < 2 || tx.vin[0].scriptSig.size() > 100)
return state.DoS(100, false, REJECT_INVALID, "bad-cb-length");
}
else
{
for (const auto& txin : tx.vin)
if (txin.prevout.IsNull())
return state.DoS(10, false, REJECT_INVALID, "bad-txns-prevout-null");
}
return true;
}
bool Consensus::CheckTxInputs(const CTransaction& tx, CValidationState& state, const CCoinsViewCache& inputs, int nSpendHeight, CAmount& txfee)
{
// are the actual inputs available?
if (!inputs.HaveInputs(tx)) {
return state.DoS(100, false, REJECT_INVALID, "bad-txns-inputs-missingorspent", false,
strprintf("%s: inputs missing/spent", __func__));
}
CAmount nValueIn = 0;
for (unsigned int i = 0; i < tx.vin.size(); ++i) {
const COutPoint &prevout = tx.vin[i].prevout;
const Coin& coin = inputs.AccessCoin(prevout);
assert(!coin.IsSpent());
// If prev is coinbase, check that it's matured
if (coin.IsCoinBase()) {
// Earthcoin: Switch maturity at depth 145,000
int nCoinbaseMaturity = coin.nHeight < COINBASE_MATURITY_SWITCH
? COINBASE_MATURITY_OLD
: COINBASE_MATURITY;
if (nSpendHeight - coin.nHeight < nCoinbaseMaturity)
return state.Invalid(false,
REJECT_INVALID, "bad-txns-premature-spend-of-coinbase",
strprintf("tried to spend coinbase at depth %d", nSpendHeight - coin.nHeight));
}
// Check for negative or overflow input values
nValueIn += coin.out.nValue;
if (!MoneyRange(coin.out.nValue) || !MoneyRange(nValueIn)) {
return state.DoS(100, false, REJECT_INVALID, "bad-txns-inputvalues-outofrange");
}
}
const CAmount value_out = tx.GetValueOut();
if (nValueIn < value_out) {
return state.DoS(100, false, REJECT_INVALID, "bad-txns-in-belowout", false,
strprintf("value in (%s) < value out (%s)", FormatMoney(nValueIn), FormatMoney(value_out)));
}
// Tally transaction fees
const CAmount txfee_aux = nValueIn - value_out;
if (!MoneyRange(txfee_aux)) {
return state.DoS(100, false, REJECT_INVALID, "bad-txns-fee-outofrange");
}
txfee = txfee_aux;
return true;
}
| [
"[email protected]"
] | |
8f9e9e0830e60335e1cf7920f4c9bf1d611973e3 | f371a1e57b354cc1b985dbfc17f057c186d9f7a0 | /acmicpc.net/source/2225.cpp | 4a64fd2036765033dabe1305e5553cd26870b9d8 | [
"MIT"
] | permissive | tdm1223/Algorithm | 7ea3d79eaa7244a1cfe8a420e25d89b783465e8f | c773ab0338e5a606ad0fc7d8989b0ee7cc1bf3fa | refs/heads/master | 2022-11-14T01:34:08.955376 | 2022-10-30T11:00:54 | 2022-10-30T11:00:54 | 143,304,153 | 8 | 9 | null | 2019-08-06T02:41:24 | 2018-08-02T14:16:00 | C++ | UTF-8 | C++ | false | false | 613 | cpp | // 2225. 합분해
// 2020.07.29
// 다이나믹 프로그래밍
#include<iostream>
using namespace std;
int d[201][201]; // d[i][j] : 정수 i개를 더해서 그 합이 j가 되는 경우의 수
int main()
{
int n, k;
cin >> n >> k;
for (int i = 0; i <= n; i++)
{
d[1][i] = 1;
}
for (int i = 1; i <= k; i++)
{
for (int j = 0; j <= n; j++)
{
for (int l = 0; l <= j; l++)
{
d[i][j] += d[i - 1][j - l];
d[i][j] %= 1000000000;
}
}
}
cout << d[k][n] << endl;
return 0;
}
| [
"[email protected]"
] | |
18a643e7b6020b167aa005f2868c6c3376f79b47 | 807df1d59c4051c2fa179de98ef9abf2aa7ea2b3 | /bachelor/year2/cpp/cpp_arcade/games/Snake/Snake.hpp | 53177f6dea3ecf121346a82b1b5bc87b7e6ad83c | [] | no_license | Petit-Pas/EpitechBachelor | 1624b9acbb1fa47342137469e5d735d971531b38 | 40244874e5cff14deb45cce0ce794d7249dcd852 | refs/heads/main | 2022-12-18T00:01:25.574204 | 2020-09-22T07:34:16 | 2020-09-22T07:34:16 | 296,012,690 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,437 | hpp | /*
** EPITECH PROJECT, 2021
** cpp_arcade
** File description:
** Created by angevil,
*/
#ifndef CPP_ARCADE_SNAKE_HPP
# define CPP_ARCADE_SNAKE_HPP
#include <vector>
#include <memory>
#include "Map.hpp"
#include "IGame.hpp"
#include "Arcade.hpp"
namespace ar {
/**
* Main class for the Snake game
*/
class Snake : public IGame {
public:
/*! This enum references all the possible texture*/
enum texture {
EMPTY = 2, /*!< The texture representing a empty area */
WALL = 3, /*!< The texture representing a wall area */
FOOD = 4, /*!< The texture representing a food */
BONUS = 5, /*!< The texture representing a bonus */
UP_HEAD = 6, /*!< The texture representing an head oriented to the top*/
RIGHT_HEAD = 7, /*!< The texture representing an head oriented to the right*/
DOWN_HEAD = 8, /*!< The texture representing an head oriented to the bottom*/
LEFT_HEAD = 9, /*!< The texture representing an head oriented to the left*/
BODY_HORIZ = 10, /*!< The texture representing a body oriented horizontally*/
BODY_VERT = 11, /*!< The texture representing a body oriented vertically*/
DOWN_TAIL = 12, /*!< The texture representing a tail oriented to the bottom*/
UP_TAIL = 13,/*!< The texture representing a tail oriented to the top*/
LEFT_TAIL = 14, /*!< The texture representing a tail oriented to the left*/
RIGHT_TAIL = 15, /*!< The texture representing a tail oriented to the right*/
DOWN_RIGHT = 16, /*!< The texture representing a corner*/
DOWN_LEFT = 17, /*!< The texture representing a corner*/
UP_RIGHT = 18, /*!< The texture representing a corner*/
UP_LEFT = 19 /*!< The texture representing a corner*/
};
/**
* A Simple structure that contains the information about a body cell in the Map
*/
typedef struct Body {
int posX; /*!< The x-coordinates of the body piece */
int posY; /*!< The y-coordinates of the body piece */
int span; /*!< How many ticks this body will remain*/
ar::Event direction; /*!< The body orientation */
} Body;
Snake();
~Snake();
const std::string getGameName() const override;
const std::map<unsigned char, spriteCoords> &getSprites() const override;
const std::map<unsigned char, colorVector> &getColors() const override;
const std::string getSpritesPath() const override;
void manageKey(const Event &) override;
int refreshScore() override;
int refreshTimer() override;
bool isGameOver() override;
void loop() override;
Map &getMap() override;
void setPause() override;
private:
/**
* Spawn a bonus randomly in the Map
*/
void manageBonus();
/**
* Move the snake depending of the direction
*/
void refreshSnake();
/**
* Get the right direction with the first set of keys
* @param event Asked direction
*/
void askedDirection(Event event);
/**
* Initialize the colors vector
*/
void initColorsVector();
/**
* Initialize the sprites vector
*/
void initSpriteVector();
/**
* Initialize the snake and put it in the map center
*/
void initSnake();
/**
* Fill the Map with the desired Snake Map
*/
void initMap();
/**
* Handle pause and calculate the time in pause to set the right timer
*/
void handlePause();
/**
* Move the snake's head
*/
void moveSnake();
/**
* Check if their is something to eat where the snake is headed
*/
void checkEat();
/**
* Spawn a food randomly on the map
*/
void spawnFood();
/**
* Spawn a bonus randomly on the map
*/
void spawnBonus();
/**
* Set the corner to the right orientation
*/
void putCorner();
/**
* Check which corner should be put
* @param it The iterator in the snake Body
* @param a The possible direction of the iterator -1
* @param b The possible direction of the iterator
* @param c The possible direction of the iterator + 1
* @return true if the directions match the snake, false otherwise
*/
bool checkCorner(std::vector<struct Body>::iterator &it, ar::Event a, ar::Event b, ar::Event c);
/**
* Do all checks by calling checkCorner().
* @param it The iterator in the snake Body
*/
void checkCorners(std::vector<struct Body>::iterator it);
int _score; /*!< The score of the current game */
Event _direction; /*!< the actual direction (set by IGame::manageKey()) */
Map _map; /*!< The map of the game */
clock_t _step; /*!< For timer calculations */
std::map<unsigned char, ar::spriteCoords> _mapSprites; /*!< The vector of sprites coordinates */
std::map<unsigned char, colorVector> _mapColors; /*!< The vector of colors */
int _posX; /*!< The x-coordinates of the player */
int _posY; /*!< The y-coordinates of the player */
bool _gameOver; /*!< true if the game is over, false otherwise */
int _length; /*!< The length of the snake*/
std::vector<Body> _body; /*!< The snake Body*/
bool _isDirectionValidated; /*!< Used to avoid multiple directional inputs between 2 frames */
Body _bonus; /*!< The bonus that spawn randomly*/
bool _askedRules; /*!< If true the direction are drunk (default: true) \n Undrunk it by pressing Space \n (Thanks Epitech)*/
time_t _start; /*!< Timer of the start of the pause, is modified by pause */
time_t _end; /*!< Timer of end of game*/
time_t _pause; /*!< Timer of the start of the pause */
bool _paused; /*!< true if the game is set to paused */
};
};
#endif //CPP_ARCADE_SNAKE_HPP
| [
"[email protected]"
] | |
54b467d0de85e515d41f849270b5e504a487bf17 | 444a6f3fb2c9d9dc042ffd54838bc3dc172ec531 | /test/unit_test/runtime/math_test.cpp | fc33ad3e5ab99e71f213050650f41e9d8982a147 | [
"MIT"
] | permissive | rtobar/units | ef5a86bdb73c896eac92698d9a8386e11c6dfe48 | 5dd9eaac87a50adc62b170987ebac2d1344d63c5 | refs/heads/master | 2022-09-11T17:37:57.868428 | 2020-05-24T20:49:53 | 2020-05-24T20:49:53 | 266,679,421 | 1 | 0 | MIT | 2020-05-25T04:03:18 | 2020-05-25T04:03:18 | null | UTF-8 | C++ | false | false | 3,115 | cpp | // The MIT License (MIT)
//
// Copyright (c) 2018 Mateusz Pusz
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#include "units/math.h"
#include "units/physical/si/area.h"
#include "units/physical/si/volume.h"
#include <catch2/catch.hpp>
using namespace units;
using namespace units::physical::si;
// classical
TEST_CASE("'pow<N>()' on quantity changes the value and the dimension accordingly", "[math][pow]")
{
SECTION ("'pow<0>(q)' returns '1'") {
CHECK(pow<0>(2q_m) == 1);
}
SECTION ("'pow<1>(q)' returns 'q'") {
CHECK(pow<1>(2q_m) == 2q_m);
}
SECTION ("'pow<2>(q)' squares both the value and a dimension") {
CHECK(pow<2>(2q_m) == 4q_m2);
}
SECTION ("'pow<3>(q)' cubes both the value and a dimension") {
CHECK(pow<3>(2q_m) == 8q_m3);
}
}
TEST_CASE("'sqrt()' on quantity changes the value and the dimension accordingly", "[math][sqrt]")
{
REQUIRE(sqrt(4q_m2) == 2q_m);
}
TEST_CASE("absolute functions on quantity returns the absolute value", "[math][abs][fabs]")
{
SECTION ("'abs()' on a negative quantity returns the abs")
{
SECTION ("integral representation")
{
REQUIRE(abs(-1q_m) == 1q_m);
}
SECTION ("floating-point representation")
{
REQUIRE(abs(-1.q_m) == 1q_m);
}
}
SECTION ("'abs()' on a positive quantity returns the abs")
{
SECTION ("integral representation")
{
REQUIRE(abs(1q_m) == 1q_m);
}
SECTION ("floating-point representation")
{
REQUIRE(abs(1.q_m) == 1q_m);
}
}
}
TEST_CASE("numeric_limits functions", "[limits]")
{
SECTION ("'epsilon' works as expected using default floating type") {
REQUIRE(epsilon<decltype(1.q_m)>().count() == std::numeric_limits<decltype(1.q_m)::rep>::epsilon());
}
SECTION ("'epsilon' works as expected using integers") {
REQUIRE(epsilon<decltype(1q_m)>().count() == std::numeric_limits<decltype(1q_m)::rep>::epsilon());
}
SECTION ("'epsilon' works as expected using mixed Rep types") {
REQUIRE(epsilon<decltype(1q_m)>().count() != std::numeric_limits<decltype(1.q_m)::rep>::epsilon());
}
}
| [
"[email protected]"
] | |
1bfa49c48c1aa20d5bb3fbb33a24b725b9405546 | a1809f8abdb7d0d5bbf847b076df207400e7b08a | /Simpsons Hit&Run/game/libs/pure3d/tools/commandline/Instancer/Param.hpp | 924345b1933ce7179c785bc703960cea8a3ff4c4 | [] | no_license | RolphWoggom/shr.tar | 556cca3ff89fff3ff46a77b32a16bebca85acabf | 147796d55e69f490fb001f8cbdb9bf7de9e556ad | refs/heads/master | 2023-07-03T19:15:13.649803 | 2021-08-27T22:24:13 | 2021-08-27T22:24:13 | 400,380,551 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,687 | hpp | /*===========================================================================
Automatically generated by Jeeves, don't edit. Edit Instancer.sc instead
File: Param.hpp
Command line parameters for Instancer
This tool creates Simpsons Instances.
Copyright (c) 2015 Radical Entertainment, Inc. All rights reserved.
===========================================================================*/
#ifndef _PARAM_HPP
#define _PARAM_HPP
#include "tlTable.hpp"
#include "tlStringTable.hpp"
class tFile;
class tlDataChunk;
class Parameters
{
public:
tlStringTable Files;
Parameters(int argc, char* argv[]);
~Parameters();
void ShortUsage(); //: Print a short usage message
void Usage(); //: Print a usage message
void VersionHistory(int count = 1); //: Print version history
tlDataChunk* HistoryChunk(); //: Return a File History chunk
// Tool specific parameters
char* OutputFile ;//: Specify output file name
char* LibraryPath ;//: Specify the path to the library files
int Duplicate ;//: Enable duplication of geometry instead of instances
// Standard parameters implemented by all tools
int Verbosity; //: How much noise should this program make?
int WriteHistory; //: Should the tool write a history chunk?
private:
void filebuildup(char* filename);
bool isPattern;
bool Recurse;
char* FilePattern;
int Argc;
char** Argv;
};
extern Parameters* Param;
#endif
| [
"[email protected]"
] | |
e4cc57f76e768371ba0e4e378be72fe7dfda8111 | 876ce3ed37bf9d638dedc6a5dc07803d824d365d | /Source/Foundation/bsfCore/BsCorePrerequisites.h | 17525ec9f3d67becf1c78952131d9b2602ee5520 | [
"MIT"
] | permissive | lcj0117/bsf | b9b5c0bf15a899eab5c17761fc2cc99b76ee7bb5 | 1e419938cc96921de95e416b374b504d7cf2b137 | refs/heads/master | 2020-03-27T15:15:51.366103 | 2018-08-24T11:07:09 | 2018-08-24T11:07:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,923 | h | //************************************ bs::framework - Copyright 2018 Marko Pintera **************************************//
//*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********//
#pragma once
#include "Prerequisites/BsPrerequisitesUtil.h"
/** @addtogroup Layers
* @{
*/
/** @defgroup Core Core
* Second lowest layer that provides core engine functionality and abstract interfaces for various systems.
* @{
*/
/** @defgroup Animation Animation
* %Animation clips, skeletal and blend shape animation, animation playback, blending and other features.
*/
/** @defgroup Application-Core Application
* Entry point into the application and other general functionality.
*/
/** @defgroup Audio Audio
* %Audio clips, 3D sound and music reproduction.
*/
/** @defgroup Components-Core Components
* Built-in components (elements that may be attached to scene objects).
*/
/** @defgroup CoreThread Core thread
* Core objects and interaction with the core (rendering) thread.
*/
/** @defgroup Importer Importer
* Import of resources into engine friendly format.
*/
/** @defgroup Input Input
* %Input (mouse, keyboard, gamepad, etc.).
*/
/** @defgroup Localization Localization
* GUI localization.
*/
/** @defgroup Material Material
* Materials, shaders and related functionality.
*/
/** @defgroup Physics Physics
* %Physics system: colliders, triggers, rigidbodies, joints, scene queries, etc.
*/
/** @defgroup Profiling Profiling
* Measuring CPU and GPU execution times and memory usage.
*/
/** @defgroup RenderAPI RenderAPI
* Interface for interacting with the render API (DirectX, OpenGL, etc.).
*/
/** @defgroup Renderer Renderer
* Abstract interface and helper functionality for rendering scene objects.
*/
/** @defgroup Resources Resources
* Core resource types and resource management functionality (loading, saving, etc.).
*/
/** @defgroup Particles Particles
* Emission, updated and rendering of particles in the particle system.
*/
/** @cond RTTI */
/** @defgroup RTTI-Impl-Core RTTI types
* RTTI implementations for classes within the core layer.
*/
/** @endcond */
/** @defgroup Scene Scene
* Managing scene objects and their hierarchy.
*/
/** @defgroup Text Text
* Generating text geometry.
*/
/** @defgroup Utility-Core Utility
* Various utility methods and types used by the core layer.
*/
/** @} */
/** @} */
/** @addtogroup Internals
* @{
*/
/** @defgroup Internal-Core Core
* Second lowest layer that provides core engine functionality and abstract interfaces for various systems.
* @{
*/
/** @defgroup Animation-Internal Animation
* Animation clips, skeletal and blend shape animation, animation playback, blending and other features.
*/
/** @defgroup Audio-Internal Audio
* Audio clips, 3D sound and music reproduction.
*/
/** @defgroup CoreThread-Internal Core thread
* Core objects and interaction with the core (rendering) thread.
*/
/** @defgroup Importer-Internal Importer
* Import of resources into engine friendly format.
*/
/** @defgroup Input-Internal Input
* Input (mouse, keyboard, gamepad, etc.).
*/
/** @defgroup Localization-Internal Localization
* GUI localization.
*/
/** @defgroup Material-Internal Material
* Materials, shaders and related functionality.
*/
/** @defgroup Particles-Internal Particles
* Emission, updated and rendering of particles in the particle system.
*/
/** @defgroup Physics-Internal Physics
* Physics system: colliders, triggers, rigidbodies, joints, scene queries, etc.
*/
/** @defgroup Platform-Internal Platform
* Interface for interacting with the platform (OS).
*/
/** @defgroup Profiling-Internal Profiling
* Measuring CPU and GPU execution times and memory usage.
*/
/** @defgroup RenderAPI-Internal RenderAPI
* Interface for interacting with the render API (DirectX, OpenGL, etc.).
*/
/** @defgroup Renderer-Internal Renderer
* Abstract interface and helper functionality for rendering scene objects.
*/
/** @defgroup Resources-Internal Resources
* Core resource types and resource management functionality (loading, saving, etc.).
*/
/** @defgroup Scene-Internal Scene
* Managing scene objects and their hierarchy.
*/
/** @defgroup Text-Internal Text
* Generating text geometry.
*/
/** @defgroup Utility-Core-Internal Utility
* Various utility methods and types used by the core layer.
*/
/** @} */
/** @} */
/** Maximum number of color surfaces that can be attached to a multi render target. */
#define BS_MAX_MULTIPLE_RENDER_TARGETS 8
#define BS_FORCE_SINGLETHREADED_RENDERING 0
/** Maximum number of individual GPU queues, per type. */
#define BS_MAX_QUEUES_PER_TYPE 8
/** Maximum number of hardware devices usable at once. */
#define BS_MAX_DEVICES 5U
/** Maximum number of devices one resource can exist at the same time. */
#define BS_MAX_LINKED_DEVICES 4U
// DLL export
#if BS_PLATFORM == BS_PLATFORM_WIN32 // Windows
# if BS_COMPILER == BS_COMPILER_MSVC
# if defined(BS_STATIC_LIB)
# define BS_CORE_EXPORT
# else
# if defined(BS_CORE_EXPORTS)
# define BS_CORE_EXPORT __declspec(dllexport)
# else
# define BS_CORE_EXPORT __declspec(dllimport)
# endif
# endif
# else
# if defined(BS_STATIC_LIB)
# define BS_CORE_EXPORT
# else
# if defined(BS_CORE_EXPORTS)
# define BS_CORE_EXPORT __attribute__ ((dllexport))
# else
# define BS_CORE_EXPORT __attribute__ ((dllimport))
# endif
# endif
# endif
# define BS_CORE_HIDDEN
#else // Linux/Mac settings
# define BS_CORE_EXPORT __attribute__ ((visibility ("default")))
# define BS_CORE_HIDDEN __attribute__ ((visibility ("hidden")))
#endif
#include "Localization/BsHString.h"
#include "String/BsStringID.h"
namespace bs
{
class Color;
class GpuProgram;
class GpuProgramManager;
class IndexBuffer;
class VertexBuffer;
class GpuBuffer;
class GpuProgramManager;
class GpuProgramFactory;
class IndexData;
class Pass;
class Technique;
class Shader;
class Material;
class RenderAPICapabilities;
class RenderTarget;
class RenderTexture;
class RenderWindow;
class RenderTargetProperties;
class SamplerState;
class TextureManager;
class Viewport;
class VertexDeclaration;
class Input;
struct PointerEvent;
class RendererFactory;
class AsyncOp;
class HardwareBufferManager;
class FontManager;
class DepthStencilState;
class RenderStateManager;
class RasterizerState;
class BlendState;
class GpuParamBlock;
class GpuParamBlockBuffer;
class GpuParams;
struct GpuParamDesc;
struct GpuParamDataDesc;
struct GpuParamObjectDesc;
struct GpuParamBlockDesc;
class ShaderInclude;
class CoreObject;
class ImportOptions;
class TextureImportOptions;
class FontImportOptions;
class GpuProgramImportOptions;
class MeshImportOptions;
struct FontBitmap;
class GameObject;
class GpuResourceData;
struct RenderOperation;
class RenderQueue;
struct ProfilerReport;
class VertexDataDesc;
class FrameAlloc;
class FolderMonitor;
class VideoMode;
class VideoOutputInfo;
class VideoModeInfo;
struct SubMesh;
class IResourceListener;
class TextureProperties;
class IShaderIncludeHandler;
class Prefab;
class PrefabDiff;
class RendererMeshData;
class Light;
class Win32Window;
class RenderAPIFactory;
class PhysicsManager;
class Physics;
class FCollider;
class Collider;
class Rigidbody;
class PhysicsMaterial;
class BoxCollider;
class SphereCollider;
class PlaneCollider;
class CapsuleCollider;
class MeshCollider;
class CCollider;
class CRigidbody;
class CBoxCollider;
class CSphereCollider;
class CPlaneCollider;
class CCapsuleCollider;
class CMeshCollider;
class Joint;
class FixedJoint;
class DistanceJoint;
class HingeJoint;
class SphericalJoint;
class SliderJoint;
class D6Joint;
class CharacterController;
class CJoint;
class CHingeJoint;
class CDistanceJoint;
class CFixedJoint;
class CSphericalJoint;
class CSliderJoint;
class CD6Joint;
class CCharacterController;
class ShaderDefines;
class ShaderImportOptions;
class AudioListener;
class AudioSource;
class AudioClipImportOptions;
class AnimationClip;
class CCamera;
class CRenderable;
class CLight;
class CAnimation;
class CBone;
class CAudioSource;
class CAudioListener;
class GpuPipelineParamInfo;
class MaterialParams;
template <class T> class TAnimationCurve;
struct AnimationCurves;
class Skeleton;
class Animation;
class GpuParamsSet;
class Camera;
class Renderable;
class MorphShapes;
class MorphShape;
class MorphChannel;
class GraphicsPipelineState;
class ComputePipelineState;
class ReflectionProbe;
class CReflectionProbe;
class CSkybox;
class CLightProbeVolume;
class Transform;
class SceneActor;
class CoreObjectManager;
struct CollisionData;
class ParticleSystem;
class CParticleSystem;
// Asset import
class SpecificImporter;
class Importer;
// Resources
class Resource;
class Resources;
class ResourceManifest;
class Texture;
class Mesh;
class MeshBase;
class TransientMesh;
class MeshHeap;
class Font;
class ResourceMetaData;
class DropTarget;
class StringTable;
class PhysicsMaterial;
class PhysicsMesh;
class AudioClip;
class SpriteTexture;
// Scene
class SceneObject;
class Component;
class SceneManager;
// RTTI
class MeshRTTI;
// Desc structs
struct SAMPLER_STATE_DESC;
struct DEPTH_STENCIL_STATE_DESC;
struct RASTERIZER_STATE_DESC;
struct BLEND_STATE_DESC;
struct RENDER_TARGET_BLEND_STATE_DESC;
struct RENDER_TEXTURE_DESC;
struct RENDER_WINDOW_DESC;
struct FONT_DESC;
struct CHAR_CONTROLLER_DESC;
struct JOINT_DESC;
struct FIXED_JOINT_DESC;
struct DISTANCE_JOINT_DESC;
struct HINGE_JOINT_DESC;
struct SLIDER_JOINT_DESC;
struct SPHERICAL_JOINT_DESC;
struct D6_JOINT_DESC;
struct AUDIO_CLIP_DESC;
template<class T>
class TCoreThreadQueue;
class CommandQueueNoSync;
class CommandQueueSync;
namespace ct
{
class Renderer;
class VertexData;
class SamplerState;
class IndexBuffer;
class VertexBuffer;
class RenderAPI;
class RenderTarget;
class RenderTexture;
class RenderWindow;
class DepthStencilState;
class RasterizerState;
class BlendState;
class CoreObject;
class Camera;
class Renderable;
class MeshBase;
class Mesh;
class TransientMesh;
class Texture;
class MeshHeap;
class VertexDeclaration;
class GpuBuffer;
class GpuParamBlockBuffer;
class GpuParams;
class Shader;
class Viewport;
class Pass;
class GpuParamsSet;
class Technique;
class Material;
class GpuProgram;
class Light;
class ComputePipelineState;
class GraphicsPipelineState;
class Camera;
class GpuParamsSet;
class MaterialParams;
class GpuPipelineParamInfo;
class CommandBuffer;
class EventQuery;
class TimerQuery;
class OcclusionQuery;
class TextureView;
class RenderElement;
class RenderWindowManager;
class RenderStateManager;
class HardwareBufferManager;
class ReflectionProbe;
class Skybox;
class ParticleSystem;
class SpriteTexture;
}
}
/************************************************************************/
/* Typedefs */
/************************************************************************/
namespace bs
{
typedef TCoreThreadQueue<CommandQueueNoSync> CoreThreadQueue;
}
/************************************************************************/
/* RTTI */
/************************************************************************/
namespace bs
{
enum TypeID_Core
{
TID_Texture = 1001,
TID_Mesh = 1002,
TID_MeshData = 1003,
TID_VertexDeclaration = 1004,
TID_VertexElementData = 1005,
TID_Component = 1006,
TID_ResourceHandle = 1009,
TID_GpuProgram = 1010,
TID_ResourceHandleData = 1011,
TID_CgProgram = 1012,
TID_Pass = 1014,
TID_Technique = 1015,
TID_Shader = 1016,
TID_Material = 1017,
TID_SamplerState = 1021,
TID_BlendState = 1023,
TID_RasterizerState = 1024,
TID_DepthStencilState = 1025,
TID_BLEND_STATE_DESC = 1034,
TID_SHADER_DATA_PARAM_DESC = 1035,
TID_SHADER_OBJECT_PARAM_DESC = 1036,
TID_SHADER_PARAM_BLOCK_DESC = 1047,
TID_ImportOptions = 1048,
TID_Font = 1051,
TID_FONT_DESC = 1052,
TID_CHAR_DESC = 1053,
TID_FontImportOptions = 1056,
TID_FontBitmap = 1057,
TID_SceneObject = 1059,
TID_GameObject = 1060,
TID_PixelData = 1062,
TID_GpuResourceData = 1063,
TID_VertexDataDesc = 1064,
TID_MeshBase = 1065,
TID_GameObjectHandleBase = 1066,
TID_ResourceManifest = 1067,
TID_ResourceManifestEntry = 1068,
TID_EmulatedParamBlock = 1069,
TID_TextureImportOptions = 1070,
TID_ResourceMetaData = 1071,
TID_ShaderInclude = 1072,
TID_Viewport = 1073,
TID_ResourceDependencies = 1074,
TID_ShaderMetaData = 1075,
TID_MeshImportOptions = 1076,
TID_Prefab = 1077,
TID_PrefabDiff = 1078,
TID_PrefabObjectDiff = 1079,
TID_PrefabComponentDiff = 1080,
TID_CGUIWidget = 1081,
/// TID_ProfilerOverlay = 1082,
TID_StringTable = 1083,
TID_LanguageData = 1084,
TID_LocalizedStringData = 1085,
TID_MaterialParamColor = 1086,
TID_WeakResourceHandle = 1087,
TID_TextureParamData = 1088,
TID_StructParamData = 1089,
TID_MaterialParams = 1090,
TID_MaterialRTTIParam = 1091,
TID_PhysicsMaterial = 1092,
TID_CCollider = 1093,
TID_CBoxCollider = 1094,
TID_CSphereCollider = 1095,
TID_CCapsuleCollider = 1096,
TID_CPlaneCollider = 1097,
TID_CRigidbody = 1098,
TID_PhysicsMesh = 1099,
TID_CMeshCollider = 1100,
TID_CJoint = 1101,
TID_CFixedJoint = 1102,
TID_CDistanceJoint = 1103,
TID_CHingeJoint = 1104,
TID_CSphericalJoint = 1105,
TID_CSliderJoint = 1106,
TID_CD6Joint = 1107,
TID_CCharacterController = 1108,
TID_FPhysicsMesh = 1109,
TID_ShaderImportOptions = 1110,
TID_AudioClip = 1111,
TID_AudioClipImportOptions = 1112,
TID_CAudioListener = 1113,
TID_CAudioSource = 1114,
TID_AnimationClip = 1115,
TID_AnimationCurve = 1116,
TID_KeyFrame = 1117,
TID_NamedAnimationCurve = 1118,
TID_Skeleton = 1119,
TID_SkeletonBoneInfo = 1120,
TID_AnimationSplitInfo = 1121,
TID_CAnimation = 1122,
TID_AnimationEvent = 1123,
TID_ImportedAnimationEvents = 1124,
TID_CBone = 1125,
TID_MaterialParamData = 1126,
TID_RenderSettings = 1127,
TID_MorphShape = 1128,
TID_MorphShapes = 1129,
TID_MorphChannel = 1130,
TID_ReflectionProbe = 1131,
TID_CReflectionProbe = 1132,
TID_CachedTextureData = 1133,
TID_Skybox = 1134,
TID_CSkybox = 1135,
TID_LightProbeVolume = 1136,
TID_SavedLightProbeInfo = 1137,
TID_CLightProbeVolume = 1138,
TID_Transform = 1139,
TID_SceneActor = 1140,
TID_AudioListener = 1141,
TID_AudioSource = 1142,
TID_ShaderVariationParam = 1143,
TID_ShaderVariation = 1144,
TID_GpuProgramBytecode = 1145,
TID_GpuParamBlockDesc = 1146,
TID_GpuParamDataDesc = 1147,
TID_GpuParamObjectDesc = 1148,
TID_GpuParamDesc = 1149,
TID_BlendStateDesc = 1150,
TID_RasterizerStateDesc = 1151,
TID_DepthStencilStateDesc = 1152,
TID_SerializedGpuProgramData = 1153,
TID_SubShader = 1154,
TID_ParticleSystem = 1155,
TID_ColorDistribution = 1156,
TID_TDistribution = 1157,
TID_SHADER_PARAM_ATTRIBUTE = 1158,
TID_DataParamInfo = 1159,
TID_SpriteSheetGridAnimation = 1160,
TID_ParticleEmitter = 1161,
TID_ParticleEmitterConeShape = 1162,
TID_ParticleEmitterSphereShape = 1163,
TID_ParticleEmitterHemisphereShape = 1164,
TID_ParticleEmitterBoxShape = 1165,
TID_ParticleEmitterCircleShape = 1166,
TID_ParticleEmitterRectShape = 1167,
TID_ParticleEmitterLineShape = 1168,
TID_ParticleEmitterStaticMeshShape = 1169,
TID_ParticleEmitterSkinnedMeshShape = 1170,
TID_ParticleTextureAnimation = 1171,
TID_ParticleCollisions = 1172,
TID_ParticleOrbit = 1173,
TID_ParticleVelocity = 1174,
TID_ParticleSystemSettings = 1175,
TID_ParticleSystemEmitters = 1176,
TID_ParticleSystemEvolvers = 1177,
TID_CParticleSystem = 1178,
TID_ParticleGravity = 1179,
// Moved from Engine layer
TID_CCamera = 30000,
TID_Camera = 30003,
TID_CRenderable = 30001,
TID_SpriteTexture = 30002,
TID_Renderable = 30004,
TID_Light = 30011,
TID_CLight = 30012,
TID_AutoExposureSettings = 30016,
TID_TonemappingSettings = 30017,
TID_WhiteBalanceSettings = 30018,
TID_ColorGradingSettings = 30019,
TID_DepthOfFieldSettings = 30020,
TID_AmbientOcclusionSettings = 30021,
TID_ScreenSpaceReflectionsSettings = 30022,
TID_ShadowSettings = 30023,
};
}
/************************************************************************/
/* Resource references */
/************************************************************************/
#include "Resources/BsResourceHandle.h"
namespace bs
{
/** @addtogroup Resources
* @{
*/
typedef ResourceHandle<Resource> HResource;
typedef ResourceHandle<Texture> HTexture;
typedef ResourceHandle<Mesh> HMesh;
typedef ResourceHandle<Material> HMaterial;
typedef ResourceHandle<ShaderInclude> HShaderInclude;
typedef ResourceHandle<Font> HFont;
typedef ResourceHandle<Shader> HShader;
typedef ResourceHandle<Prefab> HPrefab;
typedef ResourceHandle<StringTable> HStringTable;
typedef ResourceHandle<PhysicsMaterial> HPhysicsMaterial;
typedef ResourceHandle<PhysicsMesh> HPhysicsMesh;
typedef ResourceHandle<AudioClip> HAudioClip;
typedef ResourceHandle<AnimationClip> HAnimationClip;
typedef ResourceHandle<SpriteTexture> HSpriteTexture;
/** @} */
}
#include "Scene/BsGameObjectHandle.h"
namespace bs
{
/** @addtogroup Scene
* @{
*/
// Game object handles
typedef GameObjectHandle<GameObject> HGameObject;
typedef GameObjectHandle<SceneObject> HSceneObject;
typedef GameObjectHandle<Component> HComponent;
typedef GameObjectHandle<CCamera> HCamera;
typedef GameObjectHandle<CRenderable> HRenderable;
typedef GameObjectHandle<CLight> HLight;
typedef GameObjectHandle<CAnimation> HAnimation;
typedef GameObjectHandle<CBone> HBone;
typedef GameObjectHandle<CRigidbody> HRigidbody;
typedef GameObjectHandle<CCollider> HCollider;
typedef GameObjectHandle<CBoxCollider> HBoxCollider;
typedef GameObjectHandle<CSphereCollider> HSphereCollider;
typedef GameObjectHandle<CCapsuleCollider> HCapsuleCollider;
typedef GameObjectHandle<CPlaneCollider> HPlaneCollider;
typedef GameObjectHandle<CJoint> HJoint;
typedef GameObjectHandle<CHingeJoint> HHingeJoint;
typedef GameObjectHandle<CSliderJoint> HSliderJoint;
typedef GameObjectHandle<CDistanceJoint> HDistanceJoint;
typedef GameObjectHandle<CSphericalJoint> HSphericalJoint;
typedef GameObjectHandle<CFixedJoint> HFixedJoint;
typedef GameObjectHandle<CD6Joint> HD6Joint;
typedef GameObjectHandle<CCharacterController> HCharacterController;
typedef GameObjectHandle<CReflectionProbe> HReflectionProbe;
typedef GameObjectHandle<CSkybox> HSkybox;
typedef GameObjectHandle<CLightProbeVolume> HLightProbeVolume;
typedef GameObjectHandle<CAudioSource> HAudioSource;
typedef GameObjectHandle<CAudioListener> HAudioListener;
typedef GameObjectHandle<CParticleSystem> HParticleSystem;
/** @} */
}
namespace bs
{
/**
* Defers function execution until the next frame. If this function is called within another deferred call, then it will
* be executed the same frame, but only after all existing deferred calls are done.
*
* @note
* This method can be used for breaking dependencies among other things. If a class A depends on class B having
* something done, but class B also depends in some way on class A, you can break up the initialization into two
* separate steps, queuing the second step using this method.
* @note
* Similar situation can happen if you have multiple classes being initialized in an undefined order but some of them
* depend on others. Using this method you can defer the dependent step until next frame, which will ensure everything
* was initialized.
*
* @param[in] callback The callback.
*/
void BS_CORE_EXPORT deferredCall(std::function<void()> callback);
// Special types for use by profilers
typedef std::basic_string<char, std::char_traits<char>, StdAlloc<char, ProfilerAlloc>> ProfilerString;
template <typename T, typename A = StdAlloc<T, ProfilerAlloc>>
using ProfilerVector = std::vector<T, A>;
template <typename T, typename A = StdAlloc<T, ProfilerAlloc>>
using ProfilerStack = std::stack<T, std::deque<T, A>>;
/** Banshee thread policy that performs special startup/shutdown on threads managed by thread pool. */
class BS_CORE_EXPORT ThreadBansheePolicy
{
public:
static void onThreadStarted(const String& name)
{
MemStack::beginThread();
}
static void onThreadEnded(const String& name)
{
MemStack::endThread();
}
};
#define BS_ALL_LAYERS 0xFFFFFFFFFFFFFFFF
/** Used for marking a CoreObject dependency as dirty. */
static constexpr INT32 DIRTY_DEPENDENCY_MASK = 1 << 31;
}
#include "Utility/BsCommonTypes.h"
| [
"[email protected]"
] | |
555c00a651b48753b2f5560f7401d951b6f780ea | eb8d36a89dbaeffeedd8584d970aa2b33a8b2c6e | /CQ-0257/variance/variance.cpp | bd55afbe27b4f33c2f26b40740ab3d1d56413a43 | [] | no_license | mcfx0/CQ-NOIP-2021 | fe3f3a88c8b0cd594eb05b0ea71bfa2505818919 | 774d04aab2955fc4d8e833deabe43e91b79632c2 | refs/heads/main | 2023-09-05T12:41:42.711401 | 2021-11-20T08:59:40 | 2021-11-20T08:59:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 557 | cpp | #include <bits/stdc++.h>
using namespace std;
int n;
int ans=0x3f3f3f3f;
double a[401];
void ver()
{
double v_,s=0;
for (int i=1;i<=n;i++) s+=a[i];
v_=s/(double)n;
s=0;
for (int i=1;i<=n;i++) s+=(a[i]-v_)*(a[i]-v_);
s*=n;
ans=min(ans,(int)s);
}
void bt()
{
for (int i=2;i<n;i++)
{
int u=a[i];
a[i]=a[i-1]+a[i+1]-a[i];
ver();
a[i]=u;
}
}
int main()
{
freopen("variance.in","r",stdin);
freopen("variance.out","w",stdout);
scanf("%d",&n);
for (int i=1;i<=n;i+=1)
{
scanf("%lf",&a[i]);
}
ver();
bt();
printf("%d",ans);
return 0;
}
| [
"[email protected]"
] | |
73d4902267c6f3938f86b67fb3c25250d2de51dd | 013caff69e41c36c4efe9359c8ce2ecfb5f659ab | /排序.cpp | 2a88944e7e5cca4387f49df44aff671a504e8ac5 | [] | no_license | iamsile/ACM | cbe5754bed56b1abb3cfaed6b25b9bffa1ec04a5 | d51e43780e33b51c70007ba0702448909f9d0553 | refs/heads/master | 2016-08-04T02:31:51.523885 | 2013-09-09T05:36:35 | 2013-09-09T05:36:35 | 12,693,702 | 9 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 592 | cpp | #include <iostream>
using namespace::std;
int main()
{
int n,a[1001]={0};
cin >> n;
for(int i=0;i<n;i++)
cin >> a[i];
sort(a+0,a+n);
for(int i=0;i<n;i++)
{
if(i>0)
cout << " ";
cout << a[i];
}
cout << '\n';
return 0;
}
/*
Problem description
对输入的数字从小到大进行排序。
Input
第一行为输入的数字个数,第二行为需要进行排序的数字,每一个数字用空格隔开。
Output
排好序的数字,每个数字用空格隔开。
Sample Input
10
9 12 4 8 32 7 2 94 78 10
Sample Output
2 4 7 8 9 10 12 32 78 94
*/ | [
"[email protected]"
] | |
e3d0b936672e043b765a1eae9c4faa561f851d3b | 9160d5980d55c64c2bbc7933337e5e1f4987abb0 | /pde/src/sgpp/pde/operation/hash/OperationMatrixLTwoDotExplicitPolyClenshawCurtisBoundary.hpp | 01edcff3bf7264572ef05d47056cd260763f0721 | [
"LicenseRef-scancode-generic-exception",
"BSD-3-Clause"
] | permissive | SGpp/SGpp | 55e82ecd95ac98efb8760d6c168b76bc130a4309 | 52f2718e3bbca0208e5e08b3c82ec7c708b5ec06 | refs/heads/master | 2022-08-07T12:43:44.475068 | 2021-10-20T08:50:38 | 2021-10-20T08:50:38 | 123,916,844 | 68 | 44 | NOASSERTION | 2022-06-23T08:28:45 | 2018-03-05T12:33:52 | C++ | UTF-8 | C++ | false | false | 2,127 | hpp | // Copyright (C) 2008-today The SG++ project
// This file is part of the SG++ project. For conditions of distribution and
// use, please see the copyright notice provided with SG++ or at
// sgpp.sparsegrids.org
#pragma once
#include <sgpp/base/operation/hash/OperationMatrix.hpp>
#include <sgpp/base/datatypes/DataMatrix.hpp>
#include <sgpp/base/grid/Grid.hpp>
#include <sgpp/globaldef.hpp>
namespace sgpp {
namespace pde {
/**
* Explicit representation of the matrix \f$(\Phi_i,\Phi_j)_{L2}\f$ for a sparse grid
*/
class OperationMatrixLTwoDotExplicitPolyClenshawCurtisBoundary
: public sgpp::base::OperationMatrix {
public:
/**
* Constructor that uses a external matrix pointer to construct the matrix,
* i.e. matrix is NOT destroyed by the destructor of OperationMatrixLTwoDotExplicitPolyClenshawCurtisBoundaryFullGrid
*
* @param m pointer to datamatrix of size (number of grid point) x (number of grid points)
* @param grid the sparse grid
*/
OperationMatrixLTwoDotExplicitPolyClenshawCurtisBoundary(sgpp::base::DataMatrix* m,
sgpp::base::Grid* grid);
/**
* Constructor that creates an own matrix
* i.e. matrix is destroyed by the destructor of OperationMatrixLTwoDotExplicitPolyClenshawCurtisBoundaryFullGrid
*
* @param grid the sparse grid
*/
explicit OperationMatrixLTwoDotExplicitPolyClenshawCurtisBoundary(sgpp::base::Grid* grid);
/**
* Destructor
*/
virtual ~OperationMatrixLTwoDotExplicitPolyClenshawCurtisBoundary();
/**
* Implementation of standard matrix multiplication
*
* @param alpha DataVector that is multiplied to the matrix
* @param result DataVector into which the result of multiplication is stored
*/
virtual void mult(sgpp::base::DataVector& alpha, sgpp::base::DataVector& result);
private:
/**
* This method is used by both constructors to build the matrix
*/
void buildMatrix(sgpp::base::Grid* grid);
sgpp::base::DataMatrix* m_;
bool ownsMatrix_;
base::ClenshawCurtisTable& clenshawCurtisTable;
};
} // namespace pde
} // namespace sgpp
| [
"[email protected]"
] | |
00a44233fa3bbdab82a86d381376b1ebc6e190e7 | 83e241781b4c97b15758db885f1f49c34f498265 | /libcamera/ExifCreator.h | de1a3fd7efa58b39fd190987fbbbe71a6ae2d9f2 | [] | no_license | chenleicpp/ics-p970-device | 41b57d90505f7b08768464c13807ad48716b4a45 | 0ec472b81718fbc8f17e5da2590e1eb7ca977392 | refs/heads/master | 2021-01-23T14:51:05.537363 | 2012-09-24T03:26:55 | 2012-09-24T03:26:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,109 | h | #ifndef ANDROID_EXIFCREATOR_H
#define ANDROID_EXIFCREATOR_H
#include <utils/Errors.h>
#include "Exif.h"
namespace android {
//exif Type
#define TYPE_BYTE 1
#define TYPE_ASCII 2
#define TYPE_SHORT 3
#define TYPE_LONG 4
#define TYPE_RATIONAL 5
#define TYPE_UNDEFINED 7
#define TYPE_SLONG 9
#define TYPE_SRATIONAL 10
//TIFF IFD
#define MAKE_ID 0x010f
#define MODEL_ID 0x0110
#define ORIENTATION_ID 0x0112
#define SOFTWARE_ID 0x0131
#define DATE_TIME_ID 0x0132
#define YCBCR_POSITIONING_ID 0x0213
#define IMAGE_WIDTH_ID 0x0100
#define IMAGE_LENGTH_ID 0x0101
#define COMPRESSION_SCHEME_ID 0x0102
#define COMPRESSION_ID 0x0103
#define X_RESOLUTION_ID 0x011A
#define Y_RESOLUTION_ID 0x011B
#define RESOLUTION_UNIT_ID 0x0128
#define JFIF_ID 0x0201
#define JFIF_LENGTH_ID 0x0202
//EXIF IFD
#define EXPOSURE_TIME_ID 0x829A
#define FNUMBER_ID 0x829D
#define EXPOSURE_PROGRAM_ID 0x8822
#define ISO_SPEED_RATING_ID 0x8827
#define EXIF_VERSION_ID 0x9000
#define DATE_TIME_ORG_ID 0x9003
#define DATE_TIME_DIGITIZE_ID 0x9004
#define SHUTTER_SPEED_ID 0x9201
#define APERTURE_VALUE_ID 0x9202
#define BRIGHTNESS_VALUE_ID 0x9203
#define EXPOSURE_BIAS_ID 0x9204
#define MAX_APERTURE_VALUE_ID 0x9205
#define METERING_MODE_ID 0x9207
#define FLASH_ID 0x9209
#define FOCAL_LENGTH_ID 0x920A
#define USER_COMMENT_ID 0x9286
#define COLOR_SPACE_ID 0xA001
#define PIXEL_X_DIMENSION_ID 0xA002
#define PIXEL_Y_DIMENSION_ID 0xA003
#define EXPOSURE_MODE_ID 0xA402
#define WHITE_BALANCE_ID 0xA403
#define SCENCE_CAPTURE_TYPE_ID 0xA406
#define EXIF_IFD_ID 0x8769
#define GPS_IFD_ID 0x8825
#define COMPONENTS_CONIFG_ID 0x9101
#define FLASH_PIX_VERSION_ID 0xA000
#define CUSTOM_RENDER_ID 0xA401
#define DIGITAL_ZOOM_RATIO_ID 0xA404
#define CONTRAST_ID 0xA408
#define SATURATION_ID 0xA409
#define SHARPNESS_ID 0xA40A
#define SUBJECT_DIST_RANGE_ID 0xA40C
#define TAG_SIZE 12
#define NUMBER_SIZE 2
#define OFFSET_SIZE 4
#define NUM_0TH_IFD 10 // -1 by GPS
#define NUM_0TH_IFD_WO_GPS 11 // +1 by GPS
#define NUM_GPS_IDF 10
#define NUM_EXIF_IFD 25 // 22 // 12 // 11 // 14 // 20
#define NUM_1TH_IFD 10 // 7
class ExifCreator
{
public:
ExifCreator();
~ExifCreator();
unsigned int ExifCreate(unsigned char* dest, ExifInfoStructure *pSetExifInfo);
unsigned int ExifCreate_wo_GPS(unsigned char* dest, ExifInfoStructure *pSetExifInfo,int flag);
void * ExifMemcpy(void *dest, void *src, unsigned int count);
unsigned int __ExifCreate(unsigned char* pInput, ExifInfoStructure *pSetExifInfo);
unsigned int __ExifCreate_wo_GPS(unsigned char* pInput, ExifInfoStructure *pSetExifInfo,int flag);
void __ExifWriteGPSInfoTag(unsigned short tagID, Rational* pValue, unsigned int count, unsigned char* pInput, unsigned char* pCurBuff, unsigned int *pOffset);
void __ExifWriteRATIONALTag(unsigned short tagID, unsigned int numerator, unsigned int denominator, unsigned char* pInput, unsigned char* pCurBuff, unsigned int *pOffset);
void __ExifWriteSRATIONALTag(unsigned short tagID, int numerator, int denominator, unsigned char* pInput, unsigned char* pCurBuff, unsigned int *pOffset);
void __ExifWriteLONGTag(unsigned short tagID, unsigned int value, unsigned char* pInput, unsigned char* pCurBuff);
void __ExifWriteSHORTTag(unsigned short tagID, unsigned short value, unsigned char* pInput, unsigned char* pCurBuff );
void __ExifWriteBYTESTag(unsigned short tagID, unsigned char *pValue, unsigned int count, unsigned char* pInput, unsigned char* pCurBuff, unsigned int *pOffset);
void __ExifWriteASCIITag(unsigned short tagID, unsigned char* pString, unsigned int count, unsigned char* pInput, unsigned char* pCurBuff, unsigned int *pOffset);
void __ExifWriteUNDEFINEDTag(unsigned short tagID, unsigned char* pValue, unsigned int count, unsigned char* pInput, unsigned char* pCurBuff, unsigned int *pOffset);
void __ExifWriteIFDTag(unsigned short tagID, ExifInfoStructure *pSetExifInfo, unsigned char* pInput, unsigned char* pCurBuff, unsigned int *pOffset);
void __ExifWriteLONG_LE(unsigned char* pBuff, unsigned int value);
void __ExifWriteSLONG_LE(unsigned char* pBuff, int value);
void __ExifWriteSHORT_LE(unsigned char* pBuff, unsigned short value);
void __ExifWriteASCII(unsigned char* pBuff, unsigned char* pString, unsigned int count);
void __ExifWriteUNDEFINED(unsigned char* pBuff, unsigned char* pValue, unsigned int count);
void __ExifWriteRATIONAL(unsigned char* pBuff, unsigned int numerator, unsigned int denominator);
void __ExifWriteSRATIONAL(unsigned char* pBuff, int numerator, int denominator);
void __ExifWriteExifIFD(ExifInfoStructure *pSetExifInfo, unsigned char* pInput, unsigned char* pCurBuff, unsigned int *pOffset);
void __ExifWriteGPDIFD(ExifInfoStructure *pSetExifInfo, unsigned char* pInput, unsigned char* pCurBuff, unsigned int *pOffset);
unsigned int __ExifGetASCIILength(unsigned char* pString);
};
};// namespace android
#endif
| [
"[email protected]"
] | |
f97906016b8b558b048f2bb2f18e66f8ef060231 | 76e664b15c16a45e6102c17e8d32495afb46bb7c | /CPPWebFramework/tests/tst_cstlcompilerif.cpp | 0ff3d401ee54bec78d21c22ccf0e723626b6f80f | [
"MIT"
] | permissive | fmiguelgarcia/CPPWebFramework | 9d18968775164a02e9f9cbceae1db381524ebb41 | 5c7305e190b78aa8220147901e5f6a4ea7b46c4e | refs/heads/master | 2020-03-13T05:10:30.719808 | 2018-04-19T04:30:15 | 2018-04-19T04:30:15 | 130,977,522 | 0 | 0 | null | 2018-04-25T08:48:38 | 2018-04-25T08:48:38 | null | UTF-8 | C++ | false | false | 76 | cpp | #include "tst_cstlcompilerif.h"
void TST_CSTLCompilerIf::test()
{
}
| [
"[email protected]"
] | |
8cba910065917393d9978a2ec80355ab6bf028ed | 4bad28a678ddbb375f52d0a6b3a033036188e5fd | /deps/amtl/amtl/am-hashset.h | 8bd6e9dda2aefa738f3a28d7398aa72e0b475267 | [
"BSD-3-Clause"
] | permissive | Garey27/amxx-debugger-server | 9305df7856547daf939914a62a327cae7f56298e | 72f5ffbe427fb4e02eb55f27fbb10283cd682997 | refs/heads/master | 2021-08-10T00:52:58.635828 | 2020-10-09T17:52:31 | 2020-10-09T17:52:31 | 227,174,885 | 9 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 4,693 | h | // vim: set sts=8 ts=2 sw=2 tw=99 et:
//
// Copyright (C) 2013, David Anderson and AlliedModders LLC
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// * Neither the name of AlliedModders LLC nor the names of its contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#ifndef _include_amtl_hashset_h_
#define _include_amtl_hashset_h_
#include <amtl/am-hashtable.h>
namespace ke {
// Template parameters:
//
// K - Key type.
// HashPolicy - A struct with a hash and comparator function for each lookup type:
// static uint32_t hash(const Type& value);
// static bool matches(const Type& value, const K& key);
//
// Like HashMap and HashTable, init() must be called to construct the set.
template <typename K,
typename HashPolicy,
typename AllocPolicy = SystemAllocatorPolicy>
class HashSet : private AllocPolicy
{
struct Policy {
typedef K Payload;
template <typename Lookup>
static uint32_t hash(const Lookup& key) {
return HashPolicy::hash(key);
}
template <typename Lookup>
static bool matches(const Lookup& key, const Payload& payload) {
return HashPolicy::matches(key, payload);
}
};
typedef HashTable<Policy, AllocPolicy> Internal;
public:
explicit HashSet(AllocPolicy ap = AllocPolicy())
: table_(ap)
{
}
HashSet(HashSet&& other)
: table_(ke::Move(other.table_))
{
}
// capacity must be a power of two.
bool init(size_t capacity = 16) {
return table_.init(capacity);
}
typedef typename Internal::Result Result;
typedef typename Internal::Insert Insert;
typedef typename Internal::iterator iterator;
template <typename Lookup>
Result find(const Lookup& key) {
return table_.find(key);
}
template <typename Lookup>
Insert findForAdd(const Lookup& key) {
return table_.findForAdd(key);
}
template <typename Lookup>
void removeIfExists(const Lookup& key) {
return table_.removeIfExists(key);
}
void remove(Result& r) {
table_.remove(r);
}
// The map must not have been mutated in between findForAdd() and add().
// The Insert object is still valid after add() returns, however.
template <typename UK>
bool add(Insert& i, UK&& key) {
return table_.add(i, ke::Forward<UK>(key));
}
// This can be used to avoid compiler constructed temporaries, since AMTL
// does not yet support move semantics. If you use this, the key and value
// must be set after.
bool add(Insert& i) {
return table_.add(i);
}
iterator iter() {
return iterator(&table_);
}
void clear() {
table_.clear();
}
size_t elements() const {
return table_.elements();
}
size_t estimateMemoryUse() const {
return table_.estimateMemoryUse();
}
// Convenience wrapper for find().found().
template <typename Lookup>
bool has(const Lookup& key) {
Result r = table_.find(key);
return r.found();
}
// Convenience wrapper for findForAdd() + add(), if the item is not already
// in the set.
template <typename UK>
void add(UK&& key) {
Insert p = table_.findForAdd(key);
if (!p.found())
table_.add(p, ke::Forward<UK>(key));
}
AllocPolicy& allocPolicy() {
return *this;
}
const AllocPolicy& allocPolicy() const {
return *this;
}
private:
Internal table_;
};
}
#endif // _include_amtl_hashset_h_
| [
"[email protected]"
] | |
4c98ff5d8e6ca49ac812ea3429afe8ab581d3684 | 05bfb1626df055475a18d28bc99bb9c34064157f | /Test/src/Core/Test/IndexTree.cpp | ea0852b3b142af7d361d87443b9649c0e82f0c0f | [
"Apache-2.0",
"MIT",
"BSL-1.0"
] | permissive | undisputed-seraphim/TBTK | 8366351c2cae1f0c07647785afa0c64a72292740 | 45a0875a11da951f900b6fd5e0773ccdf8462915 | refs/heads/master | 2022-01-25T11:17:13.581537 | 2021-06-19T10:32:49 | 2021-06-19T10:32:49 | 126,213,024 | 0 | 0 | null | 2018-03-21T17:01:57 | 2018-03-21T17:01:57 | null | UTF-8 | C++ | false | false | 206 | cpp | #include "gtest/gtest.h"
#include "TBTK/TBTK.h"
#include "TBTK/Test/IndexTree.h"
int main(int argc, char **argv){
TBTK::Initialize();
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
| [
"[email protected]"
] | |
cbf1720d3213e066aaa59d64d3540c78f9eeb663 | bb8f6e8c09084c62ff3ae9bea2f717cbd25e340d | /15_test_thread_pool/XFtpServerCMD.cpp | 5865d07dc00f958c77b1940e727b8545a22ca3e5 | [] | no_license | mehome/libevent_demo | c60ab7264800df694f941a8bb50dcd00c848262b | b76e4bec83d662211b35d7e995054ddfb9bb8c93 | refs/heads/master | 2022-02-19T23:19:08.051170 | 2019-08-19T22:07:32 | 2019-08-19T22:07:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,225 | cpp | #include "XFtpServerCMD.h"
#include <event2/event.h>
#include <event2/bufferevent.h>
#include <iostream>
using namespace std;
void EventCB(struct bufferevent* bev, short what, void* arg)
{
XFtpServerCMD* cmd = (XFtpServerCMD*)arg;
//如果对方网络断掉,或在机器司机可能收不到EOF或者ERR
if(what & (BEV_EVENT_EOF|BEV_EVENT_ERROR|BEV_EVENT_TIMEOUT))
{
cout << "BEV_EVENT_EOF | BEV_EVENT_ERROR | BEV_EVENT_TIMEOUT" << endl;
bufferevent_free(bev);
delete cmd;
}
}
//子线程XThread event事件分发
static void ReadCB(bufferevent* bev, void* arg)
{
char data[1024] = {0};
for(;;)
{
int len = bufferevent_read(bev, data, sizeof(data) - 1);
if(len <= 0) return ;
data[len] = '\0';
cout << data << flush;
}
}
//初始化任务,运行在子线程中
bool XFtpServerCMD::Init()
{
cout << "XFtpServerCMD::Init()" << endl;
//监听socket
bufferevent* bev = bufferevent_socket_new(base, sock, BEV_OPT_CLOSE_ON_FREE);
bufferevent_setcb(bev, ReadCB, 0, EventCB, this);
bufferevent_enable(bev, EV_READ|EV_WRITE);
//添加超时
timeval rt = {10, 0};
bufferevent_set_timeouts(bev, &rt, 0);
return true;
}
XFtpServerCMD::XFtpServerCMD()
{
}
XFtpServerCMD::~XFtpServerCMD()
{
}
| [
"[email protected]"
] | |
d6f9504c836b31fc27bc34483d88269a421d9f05 | 48222fe4d2f73aa974e3652219bf8a2a0075462b | /RobotControl/ImageProcessing.cpp | 521e80d3c3349291d32013d3437c56cfa8385ad4 | [] | no_license | liurundan/Middle-size-robot-taiji-team | df2b849ce3986a4f7a9450c248b745ef48e3c89a | 6eec7e7f1ead2e558b447b75a7115ab3a3fbd47b | refs/heads/master | 2023-08-29T19:38:42.517286 | 2021-10-19T08:34:29 | 2021-10-19T08:34:29 | 418,821,682 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,169 | cpp | #include "StdAfx.h"
#include "ImageProcessing.h"
#include "ImageProcessing.h"
#include "ImageProcessingFactory.h"
#include "Journal.h"
using namespace std;
const char* ImageProcessing::get_image_processing_type () const throw () { return image_processing_descriptor; }
ImageProcessing::~ImageProcessing () throw ()
{
delete the_image_processing;
delete [] image_processing_descriptor;
}
ImageProcessing::ImageProcessing ( ConfigReader& vread) throw (RobotsException, bad_alloc)
: the_image_processing(NULL), configuration_list(vread)
{
string confline;
if (vread.get("image_processing_type", confline)<=0)
{
JERROR("no config line \"image_processing_type\" found");
throw InvalidConfigurationException ("image_processing_type");
}
really_change_image_processing_type (confline.c_str(), vread);
}
bool ImageProcessing::change_image_processing_type (const char* ipt) throw ()
{
return change_image_processing_type (ipt, configuration_list);
}
bool ImageProcessing::change_image_processing_type (const char* ipt, ConfigReader& vread) throw ()
{
try
{
really_change_image_processing_type (ipt, vread);
}
catch(bad_alloc&)
{
JWARNING("Change of image processing type failed due to lack of memory");
return false;
}
catch(RobotsException&)
{
JWARNING("Change of image processing type failed");
return false;
}
return true;
}
void ImageProcessing::really_change_image_processing_type (const char* ipt, ConfigReader& vread)
throw (RobotsException, bad_alloc)
{
ImageProcessingType* new_image_processing;
char* new_descriptor;
try
{
string ipts (ipt);
new_image_processing = ImageProcessingFactory::get_image_processing_factory()->get_image_processing(ipts, vread);
}
catch(invalid_argument&)
{
throw InvalidConfigurationException ("image_processing_type");
}
new_descriptor = new char [strlen(ipt)+1];
strcpy(new_descriptor,ipt);
if (the_image_processing!=NULL)
{
delete the_image_processing;
delete [] image_processing_descriptor;
}
the_image_processing = new_image_processing;
image_processing_descriptor = new_descriptor;
} | [
"[email protected]"
] | |
02573811904248ce0a75fc2004cc29f2901d29d3 | f8f3b88f9728cc25530d38b4d413ca4bd5e28419 | /moded_Master_example/moded_Master_example.ino | cfe0534b01c6fca4252c0b468c3c52234bf84abe | [
"MIT"
] | permissive | UAlberta-DORN/espnow_firmware | aba737dd8455b4eee28db7079585e893e4d07e96 | 0752fe8ef19e5d3150806427baf18b6ba3ef3d45 | refs/heads/main | 2023-04-08T03:28:57.206925 | 2021-04-16T05:32:29 | 2021-04-16T05:32:29 | 308,136,866 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 9,687 | ino | //#include "capstone_settings.h"
#include <custom_capstone_lib.h>
/**
ESPNOW - Basic communication - Master
Date: 26th September 2017
Author: Arvind Ravulavaru <https://github.com/arvindr21>
Purpose: ESPNow Communication between a Master ESP32 and multiple ESP32 Slaves
Description: This sketch consists of the code for the Master module.
Resources: (A bit outdated)
a. https://espressif.com/sites/default/files/documentation/esp-now_user_guide_en.pdf
b. http://www.esploradores.com/practica-6-conexion-esp-now/
<< This Device Master >>
Flow: Master
Step 1 : ESPNow Init on Master and set it in STA mode
Step 2 : Start scanning for Slave ESP32 (we have added a prefix of `slave` to the SSID of slave for an easy setup)
Step 3 : Once found, add Slave as peer
Step 4 : Register for send callback
Step 5 : Start Transmitting data from Master to Slave(s)
Flow: Slave
Step 1 : ESPNow Init on Slave
Step 2 : Update the SSID of Slave with a prefix of `slave`
Step 3 : Set Slave in AP mode
Step 4 : Register for receive callback and wait for data
Step 5 : Once data arrives, print it in the serial monitor
Note: Master and Slave have been defined to easily understand the setup.
Based on the ESPNOW API, there is no concept of Master and Slave.
Any devices can act as master or salve.
// Sample Serial log with 1 master & 2 slaves
Found 12 devices
1: Slave:24:0A:C4:81:CF:A4 [24:0A:C4:81:CF:A5] (-44)
3: Slave:30:AE:A4:02:6D:CC [30:AE:A4:02:6D:CD] (-55)
2 Slave(s) found, processing..
Processing: 24:A:C4:81:CF:A5 Status: Already Paired
Processing: 30:AE:A4:2:6D:CD Status: Already Paired
Sending: 9
Send Status: Success
Last Packet Sent to: 24:0a:c4:81:cf:a5
Last Packet Send Status: Delivery Success
Send Status: Success
Last Packet Sent to: 30:ae:a4:02:6d:cd
Last Packet Send Status: Delivery Success
*/
//#include <ArduinoJson.h>
//#include <esp_now.h>
//#include <WiFi.h>
//// Global copy of slave
//#define NUMSLAVES 20
//esp_now_peer_info_t slaves[NUMSLAVES] = {};
//int SlaveCnt = 0;
//#define CHANNEL 3
//#define PRINTSCANRESULTS 0
//// Init ESP Now with fallback
//void InitESPNow() {
// WiFi.disconnect();
// if (esp_now_init() == ESP_OK) {
// Serial.println("ESPNow Init Success");
// }
// else {
// Serial.println("ESPNow Init Failed");
// // Retry InitESPNow, add a counte and then restart?
// // InitESPNow();
// // or Simply Restart
// ESP.restart();
// }
//}
//
//// Scan for slaves in AP mode
//esp_now_peer_info_t ScanForSlave() {
//
// int8_t scanResults = WiFi.scanNetworks();
// //reset slaves
// esp_now_peer_info_t slaves[NUMSLAVES] = {};
// memset(slaves, 0, sizeof(slaves));
// int SlaveCnt = 0;
//
// Serial.println("");
// if (scanResults == 0) {
// Serial.println("No WiFi devices in AP Mode found");
// } else {
// Serial.print("Found "); Serial.print(scanResults); Serial.println(" devices ");
// for (int i = 0; i < scanResults; ++i) {
// // Print SSID and RSSI for each device found
// String SSID = WiFi.SSID(i);
// int32_t RSSI = WiFi.RSSI(i);
// String BSSIDstr = WiFi.BSSIDstr(i);
//
// if (PRINTSCANRESULTS) {
// Serial.print(i + 1); Serial.print(": "); Serial.print(SSID); Serial.print(" ["); Serial.print(BSSIDstr); Serial.print("]"); Serial.print(" ("); Serial.print(RSSI); Serial.print(")"); Serial.println("");
// }
// delay(10);
// // Check if the current device starts with `Slave`
// if (SSID.indexOf("Slave") == 0) {
// // SSID of interest
// Serial.print(i + 1); Serial.print(": "); Serial.print(SSID); Serial.print(" ["); Serial.print(BSSIDstr); Serial.print("]"); Serial.print(" ("); Serial.print(RSSI); Serial.print(")"); Serial.println("");
// // Get BSSID => Mac Address of the Slave
// int mac[6];
//
// if ( 6 == sscanf(BSSIDstr.c_str(), "%x:%x:%x:%x:%x:%x", &mac[0], &mac[1], &mac[2], &mac[3], &mac[4], &mac[5] ) ) {
// for (int ii = 0; ii < 6; ++ii ) {
// slaves[SlaveCnt].peer_addr[ii] = (uint8_t) mac[ii];
// }
// }
// slaves[SlaveCnt].channel = CHANNEL; // pick a channel
// slaves[SlaveCnt].encrypt = 0; // no encryption
// SlaveCnt++;
// }
// }
// }
//
// if (SlaveCnt > 0) {
// Serial.print(SlaveCnt); Serial.println(" Slave(s) found, processing..");
// } else {
// Serial.println("No Slave Found, trying again.");
// }
//
// // clean up ram
// WiFi.scanDelete();
//
// return *slaves;
//}
//// Check if the slave is already paired with the master.
//// If not, pair the slave with master
//void manageSlave(esp_now_peer_info_t* slaves) {
// int SlaveCnt = count_slaves(slaves);
// if (SlaveCnt > 0) {
// for (int i = 0; i < SlaveCnt; i++) {
// Serial.print("Processing: ");
// for (int ii = 0; ii < 6; ++ii ) {
// Serial.print((uint8_t) slaves[i].peer_addr[ii], HEX);
// if (ii != 5) Serial.print(":");
// }
// Serial.print(" Status: ");
// // check if the peer exists
// bool exists = esp_now_is_peer_exist(slaves[i].peer_addr);
// if (exists) {
// // Slave already paired.
// Serial.println("Already Paired");
// } else {
// // Slave not paired, attempt pair
// esp_err_t addStatus = esp_now_add_peer(&slaves[i]);
// if (addStatus == ESP_OK) {
// // Pair success
// Serial.println("Pair success");
// } else if (addStatus == ESP_ERR_ESPNOW_NOT_INIT) {
// // How did we get so far!!
// Serial.println("ESPNOW Not Init");
// } else if (addStatus == ESP_ERR_ESPNOW_ARG) {
// Serial.println("Add Peer - Invalid Argument");
// } else if (addStatus == ESP_ERR_ESPNOW_FULL) {
// Serial.println("Peer list full");
// } else if (addStatus == ESP_ERR_ESPNOW_NO_MEM) {
// Serial.println("Out of memory");
// } else if (addStatus == ESP_ERR_ESPNOW_EXIST) {
// Serial.println("Peer Exists");
// } else {
// Serial.println("Not sure what happened");
// }
// delay(100);
// }
// }
// } else {
// // No slave found to process
// Serial.println("No Slave found to process");
// }
//}
//
//
//// send data
//void sendData(esp_now_peer_info_t* slaves, const uint8_t mac_addr, String package) {
//
// Serial.print("Sending: ");
// Serial.println(package);
// //encode the string package
// const uint8_t* encoded_package = reinterpret_cast<const uint8_t*>(package.c_str());
// esp_err_t result = esp_now_send(&mac_addr, encoded_package, sizeof(encoded_package));
// Serial.print("Send Status: ");
// if (result == ESP_OK) {
// Serial.println("Success");
// } else if (result == ESP_ERR_ESPNOW_NOT_INIT) {
// // How did we get so far!!
// Serial.println("ESPNOW not Init.");
// } else if (result == ESP_ERR_ESPNOW_ARG) {
// Serial.println("Invalid Argument");
// } else if (result == ESP_ERR_ESPNOW_INTERNAL) {
// Serial.println("Internal Error");
// } else if (result == ESP_ERR_ESPNOW_NO_MEM) {
// Serial.println("ESP_ERR_ESPNOW_NO_MEM");
// } else if (result == ESP_ERR_ESPNOW_NOT_FOUND) {
// Serial.println("Peer not found.");
// } else {
// Serial.println("Not sure what happened");
// }
// delay(100);
//}
//StaticJsonDocument <200> decode_espnow_message (const uint8_t message){
// StaticJsonDocument <200> out_doc;
// String message_str((char*) message);
// deserializeJson(out_doc, message_str);
// return out_doc;
// }
// callback when data is sent from Master to Slave
void OnDataSent(const uint8_t *mac_addr, esp_now_send_status_t status) {
char macStr[18];
snprintf(macStr, sizeof(macStr), "%02x:%02x:%02x:%02x:%02x:%02x",
mac_addr[0], mac_addr[1], mac_addr[2], mac_addr[3], mac_addr[4], mac_addr[5]);
Serial.print("Last Packet Sent to: "); Serial.println(macStr);
Serial.print("Last Packet Send Status: "); Serial.println(status == ESP_NOW_SEND_SUCCESS ? "Delivery Success" : "Delivery Fail");
}
//
//int count_slaves(esp_now_peer_info_t* slaves){
// int slave_count=0;
// bool count_finished=false;
// for (int i = 0; i < NUMSLAVES; i++) {
// int zero_combo=0;
// if (esp_now_is_peer_exist(slaves[i].peer_addr)){
// slave_count++;
// }
// else{return slave_count;}
// }
// return slave_count;
// }
void setup() {
Serial.begin(115200);
//Set device in STA mode to begin with
WiFi.mode(WIFI_STA);
Serial.println("ESPNow/Multi-Slave/Master Example");
// This is the mac address of the Master in Station Mode
Serial.print("STA MAC: "); Serial.println(WiFi.macAddress());
// Init ESPNow with a fallback logic
InitESPNow();
// Once ESPNow is successfully Init, we will register for Send CB to
// get the status of Trasnmitted packet
esp_now_register_send_cb(OnDataSent);
}
esp_now_peer_info_t slaves[NUMSLAVES] = {};
int SlaveCnt = 0;
void loop() {
// In the loop we scan for slave
slaves[NUMSLAVES]=ScanForSlave();
// If Slave is found, it would be populate in `slave` variable
// We will check if `slave` is defined and then we proceed further
SlaveCnt=count_slaves(slaves);
if (SlaveCnt > 0) { // check if slave channel is defined
// `slave` is defined
// Add slave as peer if it has not been added already
manageSlave(slaves);
// pair success or already paired
// Send data to device
sendData(slaves,0,"test" );
} else {
// No slave found to process
}
// wait for 3seconds to run the logic again
delay(1000);
}
| [
"[email protected]"
] | |
cba0bd944e385a8012a25ed314d017e0b7b29fcb | 57b0279f10421e713ed1a07fbd6a65ea71bbfd0f | /include/Pong/PongGame.h | 4ff433a17f40302d4e009ab93e97cdcbff52fae1 | [] | no_license | mikoval/GraphicsProject | 97d37c25103c25f140138b022c188866c3cff304 | 6a28f0fc4f16c9670c9ed057ca790681b007d77c | refs/heads/master | 2021-07-16T21:55:18.544692 | 2020-06-30T01:53:47 | 2020-06-30T01:53:47 | 180,271,839 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,033 | h | #ifndef PONG_GAME_H
#define PONG_GAME_H
#include <Pong/PongGame.h>
#include <Pong/PongPlayer.h>
#include <Pong/PongBall.h>
#include <Pong/PongBrick.h>
#include <Math/MathTools.h>
#include <vector>
class PongGame {
#define LEFT -1
#define RIGHT 1
#define NONE 0
private:
PongPlayer *player;
PongBall *ball;
float time;
int width;
int height;
int score;
int direction;
float speed;
vector<PongBrick> walls;
void loadMap();
Vec3f getNearestPoint(PongPlayer *player, PongBall *ball);
Vec3f getNearestPoint(PongBrick *brick, PongBall *ball);
void processCollisions(float dt);
float getDistance(PongPlayer *player, PongBall *ball);
float getDistance(PongBrick *brick, PongBall *ball);
Vec3f reflect(Vec3f vec, Vec3f norm);
public:
PongGame();
void update(float dt);
PongPlayer *getPlayer();
PongBall *getBall();
void getDimensions(float &width, float &height);
void processUp();
void processLeft();
void processDown();
void processRight();
vector<PongBrick *> getBricks();
int getScore();
};
#endif | [
"[email protected]"
] | |
fba0f2c6cbd80c0c666eedbb200094295317b3fe | 56a617ccd0a09fa6c1e396c8d3b41da3ceb5f65d | /visitor_acyclic/src/main.cpp | 49ca356c2ce0f13b8415838c9b4236ccc847d02a | [
"MIT"
] | permissive | Thordreck/design-patterns-cpp | fa6c18dde29a705c111446338ef1363ba9800f39 | b7b8ccc76ba26b2f63b80a2022616f266001d85d | refs/heads/master | 2021-01-09T13:44:47.705630 | 2020-04-11T14:22:24 | 2020-04-11T14:22:24 | 242,322,440 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,230 | cpp | #include <iostream>
#include <sstream>
template <typename Visitable>
struct Visitor
{
virtual void visit(Visitable& obj) = 0;
};
struct VisitorBase
{
virtual ~VisitorBase() = default;
};
struct Expression
{
virtual ~Expression() = default;
virtual void accept(VisitorBase& obj)
{
using EV = Visitor<Expression>;
if(auto ev = dynamic_cast<EV*>(&obj))
{
ev->visit(*this);
}
}
};
struct DoubleExpression : public Expression
{
double value;
DoubleExpression(double value) : value(value) {}
virtual void accept(VisitorBase& obj)
{
using DEV = Visitor<DoubleExpression>;
if(auto ev = dynamic_cast<DEV*>(&obj))
{
ev->visit(*this);
}
}
};
struct AdditionExpression : public Expression
{
Expression* left;
Expression* right;
AdditionExpression(Expression* left, Expression* right)
: left { left }
, right { right }
{}
~AdditionExpression()
{
delete left;
delete right;
}
virtual void accept(VisitorBase& obj)
{
using AEV = Visitor<AdditionExpression>;
if(auto ev = dynamic_cast<AEV*>(&obj))
{
ev->visit(*this);
}
}
};
struct ExpressionPrinter : public VisitorBase,
public Visitor<DoubleExpression>,
public Visitor<AdditionExpression>
{
void visit(DoubleExpression& obj) override
{
oss << obj.value;
}
void visit(AdditionExpression& obj) override
{
oss << "(";
obj.left->accept(*this);
oss << "+";
obj.right->accept(*this);
oss << ")";
}
std::string str() const { return oss.str(); }
std::ostringstream oss;
};
int main()
{
auto e = new AdditionExpression
{
new DoubleExpression { 1 },
new AdditionExpression
{
new DoubleExpression { 2 },
new DoubleExpression { 3 }
}
};
ExpressionPrinter ep;
ep.visit(*e);
std::cout << ep.str() << std::endl;
return 0;
}
| [
"[email protected]"
] | |
6e3234248330b94f594392c6487060bb5f287a8a | 55ff90bde10ddeae56538c39ba7eca328f767089 | /680~689/684/1.cpp | 91d5e706877a1a77be694b49f42c862970c0ab5a | [] | no_license | Pluto-Jin/fromZero2GrandMaster | 74325a8fab73e54f8bf91fcfc6ce22981fb2d234 | cc666bdcf5b277db07b211693e20e505151b9848 | refs/heads/master | 2023-07-08T22:49:39.919961 | 2021-08-13T16:17:39 | 2021-08-13T16:17:39 | 302,216,409 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,477 | cpp | #include<iostream>
#include<algorithm>
#include<vector>
#include<stack>
#include<queue>
#include<deque>
#include<set>
#include<map>
#include<bitset>
#include<string>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<numeric>
#include<cstdlib>
#include<ctime>
#include<iomanip>
#define fi first
#define se second
#define endl '\n'
#define pb push_back
#define eb emplace_back
#define ppf pop_front
#define ppb pop_back
typedef long long ll;
typedef std::pair<int,int> pii;
typedef std::pair<ll,ll> pll;
typedef std::vector<int> vi;
typedef std::vector<pii> vii;
typedef std::vector<std::vector<int>> vvi;
using namespace std;
template<class T,class T2>
inline bool chkmax(T &x,const T2 &y){return x<y?(x=y,1):0;}
template<class T,class T2>
inline bool chkmin(T &x,const T2 &y){return x>y?(x=y,1):0;}
const int N=101;
int n,m;
bool a[N][N];
struct node {
int v[6];
};
vector<node> ans;
void emp(int a1,int a2,int a3,int a4,int a5,int a6) {
ans.pb({a1,a2,a3,a4,a5,a6});
a[a1][a2]^=1,a[a3][a4]^=1,a[a5][a6]^=1;
}
int cnt() {
return a[n-1][m-1]+a[n-1][m]+a[n][m-1]+a[n][m];
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int t; cin>>t;
while (t--) {
ans.resize(0);
cin>>n>>m;
for (int i=1;i<=n;i++) {
string s; cin>>s;
for (int j=0;j<m;j++) a[i][j+1]=s[j]=='1';
}
for (int i=1;i<n-1;i++) for (int j=1;j<=m;j++) if (a[i][j]) {
if (j==m) emp(i,j,i+1,j,i+1,j-1);
else emp(i,j,i+1,j,i+1,j+1);
}
for (int j=1;j<m-1;j++) if (a[n-1][j] or a[n][j]) {
if (a[n-1][j] and a[n][j]) emp(n-1,j,n,j,n-1,j+1);
else if (a[n-1][j]) emp(n-1,j,n-1,j+1,n,j+1);
else emp(n,j,n-1,j+1,n,j+1);
}
if (cnt()==4) emp(n-1,m-1,n-1,m,n,m-1);
if (cnt()==2) {
if (a[n-1][m-1] and !a[n][m]) emp(n-1,m-1,n-1,m,n,m-1);
else if (!a[n-1][m-1] and a[n][m]) emp(n-1,m,n,m-1,n,m);
}
if (cnt()==1) {
if (a[n-1][m-1]) emp(n-1,m-1,n-1,m,n,m-1);
else if (a[n-1][m]) emp(n-1,m-1,n-1,m,n,m);
else if (a[n][m-1]) emp(n-1,m-1,n,m-1,n,m);
else emp(n-1,m,n,m-1,n,m);
}
if (cnt()==2) {
if (a[n-1][m-1] and a[n][m]) emp(n-1,m-1,n-1,m,n,m-1);
else if (a[n-1][m] and a[n][m-1]) emp(n-1,m-1,n-1,m,n,m);
}
if (cnt()==3) {
if (!a[n-1][m-1]) emp(n-1,m,n,m-1,n,m);
else if (!a[n-1][m]) emp(n-1,m-1,n,m-1,n,m);
else if (!a[n][m-1]) emp(n-1,m-1,n-1,m,n,m);
else emp(n-1,m-1,n-1,m,n,m-1);
}
cout<<ans.size()<<endl;
for (auto i:ans) {
for (auto j:i.v) cout<<j<<' ';
cout<<endl;
}
}
return 0;
}
| [
"[email protected]"
] | |
7068c977aa957d28ac329b06ba2340c7ed97a5ce | 160dc51955968e969ffa0e15d4ba52f12b80532c | /objc4-756.2/编译素材/dyld-655.1.1/unit-tests/test-cases/executable-image-index/foo.c | 83c0b65e09a99bbb6746fa827dcb3a5f28d1dc25 | [
"APSL-2.0",
"MIT"
] | permissive | jayhe/objc4_debug | f7661995cff6278468378da4536c0cf3fc44650d | e6023c9bcaac7888950fa4b36d6260e5b313dc72 | refs/heads/master | 2021-03-18T01:12:44.941356 | 2021-01-30T03:39:15 | 2021-01-30T03:39:15 | 247,033,924 | 1 | 0 | MIT | 2020-03-13T09:29:22 | 2020-03-13T09:29:21 | null | UTF-8 | C++ | false | false | 16 | c | void foo() { }
| [
"[email protected]"
] | |
6490a5b30eb170b08b46d2e9c7cf0fce90cc332d | 75452de12ec9eea346e3b9c7789ac0abf3eb1d73 | /zircon/system/utest/runtests-utils/helper/profile-helper.cc | e7acc760171767f490a5f20f4025050b63c2d694 | [
"BSD-3-Clause",
"MIT"
] | permissive | oshunter/fuchsia | c9285cc8c14be067b80246e701434bbef4d606d1 | 2196fc8c176d01969466b97bba3f31ec55f7767b | refs/heads/master | 2022-12-22T11:30:15.486382 | 2020-08-16T03:41:23 | 2020-08-16T03:41:23 | 287,920,017 | 2 | 2 | BSD-3-Clause | 2022-12-16T03:30:27 | 2020-08-16T10:18:30 | C++ | UTF-8 | C++ | false | false | 1,212 | cc | // Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <lib/fdio/io.h>
#include <fbl/unique_fd.h>
#include <lib/zx/vmo.h>
#include <zircon/sanitizer.h>
#include <zxtest/zxtest.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string>
namespace {
constexpr char kTestName[] = "15822697145192797690.profraw";
constexpr char kTestData[] = "llvm-profile";
constexpr char kTestMessage[] = "{{{dumpfile:llvm-profile:15822697145192797690.profraw}}}";
TEST(RunTestHelper, PublishData) {
std::string test_root_dir{getenv("TEST_ROOT_DIR")};
std::string test_data_dir{test_root_dir + "/" + "test/sys/runtests-utils-testdata/profile"};
fbl::unique_fd fd{open((test_data_dir + "/" + kTestName).c_str(), O_RDONLY)};
ASSERT_TRUE(fd.is_valid());
zx::vmo vmo;
ASSERT_OK(fdio_get_vmo_copy(fd.get(), vmo.reset_and_get_address()));
vmo.set_property(ZX_PROP_NAME, kTestName, sizeof(kTestName) - 1);
__sanitizer_publish_data(kTestData, vmo.release());
__sanitizer_log_write(kTestMessage, sizeof(kTestMessage) - 1);
}
} // anonymous namespace
| [
"[email protected]"
] | |
cb0f11b94a8fccea7414a7cea6db17fe6add9c35 | ae6f32da28bb79158c8602fc63558aa3403e700c | /Examples/VTK/BuildPartiallyFixedModelExample.cxx | 398c1fa0eb95c024c11d1566830b412b2f3e2051 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | statismo-demo/statismo | 22e906d076d82f36e2aba095bf19d276c745d5a3 | bea6323a0bca3c84a3b92cecefa080109d64f2d1 | refs/heads/master | 2020-12-25T05:36:49.600388 | 2013-04-18T14:47:04 | 2013-04-18T14:47:04 | 9,515,104 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,511 | cxx | /*
* This file is part of the statismo library.
*
* Author: Marcel Luethi ([email protected])
*
* Copyright (c) 2011 University of Basel
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the project's author nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include "statismo/PartiallyFixedModelBuilder.h"
#include "statismo/StatisticalModel.h"
#include "statismo/DataManager.h"
#include "Representers/VTK/vtkPolyDataRepresenter.h"
#include "vtkPolyData.h"
#include <iostream>
#include <memory>
using namespace statismo;
using std::auto_ptr;
//
// This example shows how a statistical shape model can be built, when the position of some of the points
// is known and fixed. // The constraint model can either be built from data sets that are added to the DataManager (see e.g.
// BuildShapeModelExample.cxx) or from an already built model. We use the second option here.
// In this example we simply fix the first point in the domain to the mean value of our input model.
//
int main(int argc, char** argv) {
if (argc < 3) {
std::cout << "Usage " << argv[0] << " inputModel constraintModel" << std::endl;
exit(-1);
}
std::string inputModelName(argv[1]);
std::string constraintModelName(argv[2]);
// All the statismo classes have to be parameterized with the RepresenterType.
// For building a shape model with vtk, we use the vtkPolyDataRepresenter.
typedef vtkPolyDataRepresenter RepresenterType;
typedef StatisticalModel<RepresenterType> StatisticalModelType;
typedef PartiallyFixedModelBuilder<RepresenterType> PartiallyFixedModelBuilderType;
typedef StatisticalModelType::DomainType DomainType;
try {
// load the model
auto_ptr<StatisticalModelType> inputModel(StatisticalModelType::Load(inputModelName));
auto_ptr<PartiallyFixedModelBuilderType> pfmb(PartiallyFixedModelBuilderType::Create());
// For simplicity, we simply fix the 1st point in the domain
const DomainType::DomainPointsListType& domainPoints = inputModel->GetDomain().GetDomainPoints();
vtkPoint fixedPoint = domainPoints.front();
vtkPoint meanValueForPt = inputModel->DrawMeanAtPoint(fixedPoint);
// Create an empty list, holding the constraint and add the point
StatisticalModelType::PointValueListType constraints;
StatisticalModelType::PointValuePairType pointValue(fixedPoint, meanValueForPt);
constraints.push_back(pointValue);
// build the new model. In addition to the input model and the constraints, we also specify
// the inaccuracy of our value (variance of the error).
auto_ptr<StatisticalModelType> constraintModel(pfmb->BuildNewModelFromModel(inputModel.get(), constraints, 0.1));
// The resulting model is a normal statistical model, from which we could for example sample examples.
// Here we simply save it to disk for later use.
constraintModel->Save(constraintModelName);
std::cout << "successfully saved the model to " << constraintModelName << std::endl;
}
catch (StatisticalModelException& e) {
std::cout << "Exception occured while building the intenisity model" << std::endl;
std::cout << e.what() << std::endl;
}
}
| [
"[email protected]"
] | |
1b1a107fc0cde35b32916c7e3e4d5e3c09560114 | 3a73ec62701adfd8596f1d36de19850bf202a064 | /src/header/shader/RadiusShader.h | 38a72d9efc39892be94763128d7df23b71080cdd | [
"MIT"
] | permissive | rodrigobmg/3D-Graphics-Engine | 3df237d06019d3ddcc5faf5e6458559db32c77d2 | c8a2c98f3f9b810df18c49956e723a2df9b27a40 | refs/heads/master | 2020-06-01T20:21:53.571366 | 2018-03-23T22:00:35 | 2018-03-23T22:00:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 615 | h | #pragma once
#include "CollectiveShader.h"
#include "../shading utils/ProgressivePhotonMap.h"
#define SHADER_SOURCE_RADIUS_VERT "../bin/shaders/RadiusShader/radiusShaderVert.vs"
#define SHADER_SOURCE_RADIUS_GEOM "../bin/shaders/RadiusShader/radiusShaderGeom.gs"
#define SHADER_SOURCE_RADIUS_FRAG "../bin/shaders/RadiusShader/radiusShaderFrag.fs"
class RadiusShader : public CollectiveShader
{
public:
RadiusShader(std::vector<VertexRadiance*> vertexRadiance);
virtual ~RadiusShader();
virtual void render();
std::vector<VertexRadiance*> vertexRadiance;
Matrix4x4* mvm;
Matrix4x4* pm;
}; | [
"[email protected]"
] | |
55c4d45e50913b23664806d37703abf6c8c7704a | 051c898be81003a5c90f5a1ce77a252252774973 | /preliminary/G/33909364.cpp | 5ae195f49f38629d2bac32122158f2731fe377b5 | [] | no_license | mmatrosov/FKN2020 | 29caffa241882e672df654b4857b5674d5f96f6e | 38bfa7811d4af175415f7cc4da81df44b5b4a74c | refs/heads/master | 2022-12-27T19:15:05.849915 | 2020-10-16T07:12:27 | 2020-10-16T07:12:27 | 298,350,636 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,177 | cpp | #include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
#define int long long
#define double long double
#define ff first
#define ss second
#define pb push_back
#define pf push_front
#define all(x) x.begin(), x.end()
#define sz(x) (int)x.size()
#define TIME ((clock() - start_time) / CLOCKS_PER_SEC)
using namespace std;
//using namespace __gnu_pbds;
mt19937 rnd(chrono::high_resolution_clock::now().time_since_epoch().count() + 'd'+'o'+'i'+'n'+'g' + 'g'+'e'+'y');
const int inf = 1e18;
const double eps = 1e-6;
double start_time;
const int maxn = 1e5 + 1;
const int mb = 32;
int s[maxn];
vector<pair<int, int>> g[maxn];
void dfs(int v, int pr) {
for (auto to : g[v]) {
if (to.ff == pr) continue;
s[to.ff] = (s[v] ^ to.ss);
dfs(to.ff, v);
}
}
struct Node
{
int next[2] = {-1}, x;
};
vector<Node> bor;
void add(int x)
{
int v = 0;
for (int i = mb - 1; i >= 0; --i) {
int b = (((1ll << i) & x) >> i);
if (bor[v].next[b] == -1) {
bor[v].next[b] = (int)bor.size();
bor.pb({{-1, -1}, -1});
}
v = bor[v].next[b];
}
bor[v].x = x;
}
int get(int x)
{
int v = 0;
for (int i = mb - 1; i >= 0; --i) {
int b = (((1ll << i) & x) >> i);
if (bor[v].next[(b ^ 1)] != -1) {
v = bor[v].next[(b ^ 1)];
} else {
v = bor[v].next[b];
}
}
return bor[v].x;
};
signed main()
{
start_time = clock();
ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
int n;
cin >> n;
for (int i = 0; i < n - 1; ++i) {
int a, b, w;
cin >> a >> b >> w, --a, --b;
g[a].pb({b, w});
g[b].pb({a, w});
}
dfs(0, -1);
int ans = 0;
int p1 = 0, p2 = 0;
bor.pb({{-1, -1}, -1});
map<int, int> idx;
for (int i = 0; i < n; ++i) {
idx[s[i]] = i;
}
for (int i = 0; i < n; ++i) {
add(s[i]);
int val = get(s[i]);
if ((val ^ s[i]) > ans) {
ans = (val ^ s[i]);
p1 = i;
p2 = idx[val];
}
}
cout << p1 + 1 << " " << p2 + 1 << "\n";
return 0;
} | [
"[email protected]"
] | |
3369d758194eed9cf997907369a0f650a071940a | 6ca787fc18673d032a324a10a429d48bf257e11e | /core/src/output_writer/loop_collect_mesh_names.h | a84ebd878bffb84bd680a9788d791fecba2964d8 | [] | no_license | maierbn/opendihu-snapshot | 714375c85264e2b20ec808daadd79eae540ece75 | e726802b3efed87a2d0ac5deb5389fbe070e73a2 | refs/heads/master | 2020-04-07T09:41:15.815678 | 2018-11-19T18:30:18 | 2018-11-19T18:30:18 | 158,261,394 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,548 | h | #pragma once
#include <Python.h> // has to be the first included header
#include <set>
#include "utility/type_utility.h"
#include <cstdlib>
/** The functions in this file model a loop over the elements of a tuple, as it occurs as OutputFieldVariablesType in all data_management classes.
* (Because the types inside the tuple are static and fixed at compile-time, a simple for loop c not work here.)
* The two functions starting with loop recursively emulate the loop. One method is the break condition and does nothing, the other method does the work and calls the method without loop in the name.
* OutputFieldVariablesType is assumed to be of type std::tuple<...>> where the types can be (mixed) std::shared_ptr<FieldVariable> or std::vector<std::shared_ptr<FieldVariable>>.
*/
//! look for different meshes in the given data type and collect their names
namespace OutputWriter
{
namespace LoopOverTuple
{
/** Static recursive loop from 0 to number of entries in the tuple
* Stopping criterion
*/
template<typename OutputFieldVariablesType, int i=0>
inline typename std::enable_if<i == std::tuple_size<OutputFieldVariablesType>::value, void>::type
loopCollectMeshNames(const OutputFieldVariablesType &fieldVariables, std::set<std::string> &meshNames)
{}
/** Static recursive loop from 0 to number of entries in the tuple
* Loop body
*/
template<typename OutputFieldVariablesType, int i=0>
inline typename std::enable_if<i < std::tuple_size<OutputFieldVariablesType>::value, void>::type
loopCollectMeshNames(const OutputFieldVariablesType &fieldVariables, std::set<std::string> &meshNames);
/** Loop body for a vector element
*/
template<typename VectorType>
typename std::enable_if<TypeUtility::isVector<VectorType>::value, bool>::type
collectMeshNames(VectorType currentFieldVariableVector, std::set<std::string> &meshNames);
/** Loop body for a tuple element
*/
template<typename VectorType>
typename std::enable_if<TypeUtility::isTuple<VectorType>::value, bool>::type
collectMeshNames(VectorType currentFieldVariableVector, std::set<std::string> &meshNames);
/** Loop body for a pointer element
*/
template<typename CurrentFieldVariableType>
typename std::enable_if<!TypeUtility::isTuple<CurrentFieldVariableType>::value && !TypeUtility::isVector<CurrentFieldVariableType>::value, bool>::type
collectMeshNames(CurrentFieldVariableType currentFieldVariable, std::set<std::string> &meshNames);
}; //namespace ExfileLoopOverTuple
}; //namespace OutputWriter
#include "output_writer/loop_collect_mesh_names.tpp"
| [
"[email protected]"
] | |
c9e7127c8678cf4596c1a3cc396edb5dac46c424 | 68b8f66d3752f29ec8c39ef73faf02d907c80cb2 | /include/klibc/cxx/alignment.hpp | 2251813b2a981acf4e2f58a20007fb1a7cead621 | [
"MIT"
] | permissive | RoseLeBlood/CsOS-i386 | 728073b22b032f1a534392c9af67b98245a414ea | e1b8db4111349c8dfa51aaaa543075f220af50d4 | refs/heads/master | 2021-01-18T20:05:23.303729 | 2017-04-01T19:08:30 | 2017-04-01T19:08:30 | 86,936,091 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,242 | hpp | #ifndef _STD_ALIGNMENT_H_
#define _STD_ALIGNMENT_H_
#include "common.hpp"
#include <stddef.h>
namespace std
{
namespace internal
{
#pragma warning(push)
template<typename T>
struct alignof_helper
{
char x;
T y;
};
struct __attribute__ ((aligned (16))) aligned16 { uint64 member[2]; } ;
#pragma warning(pop)
template<size_t N> struct type_with_alignment
{
typedef char err_invalid_alignment[N > 0 ? -1 : 1];
};
template<> struct type_with_alignment<0> {};
template<> struct type_with_alignment<1> { uint8 member; };
template<> struct type_with_alignment<2> { uint16 member; };
template<> struct type_with_alignment<4> { uint32 member; };
template<> struct type_with_alignment<8> { uint64 member; };
template<> struct type_with_alignment<16> { aligned16 member; };
}
template<typename T>
struct alignof
{
enum
{
res = offsetof(internal::alignof_helper<T>, y)
};
};
template<typename T>
struct aligned_as
{
typedef typename internal::type_with_alignment<alignof<T>::res> res;
};
}
#endif
| [
"[email protected]"
] | |
2094f762f462763369375c12648ca8cc5103c7b6 | b88fbfea7f1f2aa82e668736f042e85a307724e1 | /software/flight_controller/main/tests/filters/test_slew.cpp | 6cd9d4c77ecb9ded9c3c38799b661294d7a32455 | [] | no_license | arnaudhe/quadcopter | 9abd7d47e6e0200c6e542b886c8a3d646c4d2ac3 | d7ae4778cb6a07f8a7d8e7fa0a59ccb948ae3bda | refs/heads/master | 2022-10-11T07:49:24.064747 | 2022-09-22T22:34:40 | 2022-09-22T22:34:40 | 79,062,139 | 19 | 3 | null | 2022-06-25T10:08:42 | 2017-01-15T21:55:47 | C++ | UTF-8 | C++ | false | false | 872 | cpp | #include <iostream>
#include <math.h>
#include <utils/filter.h>
using namespace std;
#define PERIOD 0.002
#define SIGNAL_FREQ 20.0
#define M_PIf 3.14159265359f
int main()
{
float input = 0.0;
SlewFilter filter(PERIOD, 50.0);
filter.init();
cout << "input" << ";" << "filtered" << endl;
for (int i = 0; i < 10; i++)
{
cout << input << ";" << filter.apply(input) << endl;
}
input = 1.0;
for (int i = 0; i < 50; i++)
{
cout << input << ";" << filter.apply(input) << endl;
}
input = 0.0;
for (int i = 0; i < 50; i++)
{
cout << input << ";" << filter.apply(input) << endl;
}
for (int i = 0; i < (1.0 / PERIOD); i++)
{
input = sinf(i * PERIOD * 2.0 * M_PIf * SIGNAL_FREQ);
cout << input << ";" << filter.apply(input) << endl;
}
return 0;
}
| [
"[email protected]"
] | |
f84d494bb56c9acb92ebf34f00c102f5365ef26e | b0acb45d8b77a509c16a80ac23c379e0b2ee7b7f | /Amendux/AddrLookup.h | de879eea0c2a135f41fcb4c429e5d03f00eee69d | [] | no_license | yorickdewid/Amendux | 2e6c527cfcc905261f0555d6d223240e755199a3 | 95e3fdabe4b14e26932fe1aeb78d539602327460 | refs/heads/master | 2020-04-16T04:20:11.736290 | 2017-03-19T00:36:47 | 2017-03-19T00:36:47 | 165,262,902 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 812 | h | #pragma once
#include <Ws2tcpip.h>
/* <AddrLookup>
* Internal class for looking up addresses.
* Basically an RAII wrapper for getaddrinfo().
*/
namespace SimpleSocksPrivateNS {
class AddrLookup {
public:
AddrLookup();
~AddrLookup();
//Perform DNS query or convert IP address string.
//Call to populate the internal list.
//Returns 0 on success.
//Calls 'clear()' internally before running, so
//an instance can be re-used for multiple lookups.
int lookup(const char* host, unsigned short port, int protocol);
//Return the next addrinfo in the internal list
//and moves the list node forward.
//Return value of NULL indicates no more addresses.
sockaddr* getNext();
//Clear the internal list if one exists.
void clear();
private:
addrinfo* list;
addrinfo* node;
};
};
| [
"[email protected]"
] | |
d218a5302ea46402ea624d2bc708039b3147a08f | c40605dcd09d694e9446853d9ddafa0cb15d2db1 | /mc_rtc_rviz_panel/src/SchemaWidget.cpp | c4b535eb66e3361658560039bccfb1adb1e7768a | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | anastasiabolotnikova/mc_rtc_ros | 4c0b97c14927a3319dd6e43e3cb6442b6fcf52db | 86c82c9e1e0b29ba9614106438436cd6c7f8f612 | refs/heads/master | 2022-04-18T04:28:24.756835 | 2020-04-17T09:02:05 | 2020-04-17T09:02:05 | 257,281,849 | 0 | 0 | BSD-2-Clause | 2020-04-20T12:59:52 | 2020-04-20T12:59:51 | null | UTF-8 | C++ | false | false | 9,529 | cpp | /*
* Copyright 2016-2019 CNRS-UM LIRMM, CNRS-AIST JRL
*/
#include "SchemaWidget.h"
#include "FormElement.h"
#include "FormWidget.h"
#include <mc_rtc/logging.h>
#include <boost/filesystem.hpp>
namespace bfs = boost::filesystem;
namespace mc_rtc_rviz
{
namespace
{
struct Schema;
using SchemaStore = std::map<std::string, Schema>;
using Form = std::vector<FormElement *>;
using FormMaker = std::function<Form(QWidget *, const mc_rtc::Configuration &)>;
struct Schema
{
Schema() = default;
Schema(const std::string & file);
const std::string & title() const
{
return title_;
}
bool is_object() const
{
return is_object_;
}
FormMaker create_form = [](QWidget *, const mc_rtc::Configuration &) -> Form { return {}; };
private:
std::string title_;
bool is_object_ = false;
};
static SchemaStore store = {};
static const std::string schema_dir = std::string(MC_RTC_DOCDIR) + "/json/schemas/";
Schema::Schema(const std::string & file)
{
mc_rtc::Configuration s{file};
title_ = s("title", "No title property in " + file);
auto required = s("required", std::vector<std::string>{});
auto is_required = [&required](const std::string & label) {
return std::find(required.begin(), required.end(), label) != required.end();
};
/** Handle enum entries */
auto handle_enum = [this](const std::string & k, bool required, const std::vector<std::string> & values) {
auto cf = create_form;
create_form = [cf, k, required, values](QWidget * parent, const mc_rtc::Configuration & data) {
auto v = cf(parent, data);
v.emplace_back(new form::ComboInput(parent, k, required, values, false));
if(values.size() == 1 && required)
{
v.back()->hidden(true);
}
return v;
};
};
/** Handle: boolean/integer/number/string */
auto handle_type = [this, &file](const std::string & k, bool required, const std::string & type) {
auto cf = create_form;
if(type == "boolean")
{
create_form = [cf, k, required](QWidget * parent, const mc_rtc::Configuration & data) {
auto v = cf(parent, data);
v.emplace_back(new form::Checkbox(parent, k, required, true));
return v;
};
}
else if(type == "integer")
{
if(k == "robotIndex")
{
create_form = [cf, required](QWidget * parent, const mc_rtc::Configuration & data) {
auto v = cf(parent, data);
v.emplace_back(new form::DataComboInput(parent, "robot", required, data, {"robots"}, true, "robotIndex"));
return v;
};
return;
}
create_form = [cf, k, required](QWidget * parent, const mc_rtc::Configuration & data) {
auto v = cf(parent, data);
v.emplace_back(new form::IntegerInput(parent, k, required, 0));
return v;
};
}
else if(type == "number")
{
create_form = [cf, k, required](QWidget * parent, const mc_rtc::Configuration & data) {
auto v = cf(parent, data);
v.emplace_back(new form::NumberInput(parent, k, required, 0));
return v;
};
}
else
{
if(type != "string")
{
LOG_WARNING("Property " << k << " in " << file << " has unknown or missing type (value: " << type
<< "), treating as string")
}
if(k == "body")
{
create_form = [cf, k, required](QWidget * parent, const mc_rtc::Configuration & data) {
auto v = cf(parent, data);
v.emplace_back(new form::DataComboInput(parent, "body", required, data, {"bodies", "$robot"}, false));
return v;
};
}
else if(k == "surface")
{
create_form = [cf, k, required](QWidget * parent, const mc_rtc::Configuration & data) {
auto v = cf(parent, data);
v.emplace_back(new form::DataComboInput(parent, "surface", required, data, {"surfaces", "$robot"}, false));
return v;
};
}
else
{
create_form = [cf, k, required](QWidget * parent, const mc_rtc::Configuration & data) {
auto v = cf(parent, data);
v.emplace_back(new form::StringInput(parent, k, required, ""));
return v;
};
}
}
};
/** Handle an array */
auto handle_array = [this, &file](const std::string & k, bool required, const std::string & type, size_t min,
size_t max) {
auto cf = create_form;
if(type == "integer")
{
create_form = [cf, k, required, min, max](QWidget * parent, const mc_rtc::Configuration & data) {
auto v = cf(parent, data);
v.emplace_back(new form::IntegerArrayInput(parent, k, required, min == max, min, max));
return v;
};
}
else if(type == "number")
{
create_form = [cf, k, required, min, max](QWidget * parent, const mc_rtc::Configuration & data) {
auto v = cf(parent, data);
v.emplace_back(new form::NumberArrayInput(parent, k, required, min == max, min, max));
return v;
};
}
else if(type == "array")
{
LOG_WARNING("Property " << k << " in " << file << " is an array of array, will not display for now")
}
else
{
if(type != "string")
{
LOG_WARNING("Property " << k << " in " << file << " has unknonw or missing array items' type (value: " << type
<< "), treating as string")
}
create_form = [cf, k, required, min, max](QWidget * parent, const mc_rtc::Configuration & data) {
auto v = cf(parent, data);
v.emplace_back(new form::StringArrayInput(parent, k, required, min == max, min, max));
return v;
};
}
};
std::string type = s("type");
if(type == "array")
{
handle_array(title_, false, s("items", mc_rtc::Configuration{})("type", std::string{""}), s("minItems", 0),
s("maxItems", 256));
return;
}
if(type != "object")
{
LOG_ERROR(title_ << " from " << file << " has unexpected type: " << type)
return;
}
is_object_ = true;
auto properties = s("properties", mc_rtc::Configuration{});
for(const auto & k : properties.keys())
{
auto prop = properties(k);
if(prop.has("enum"))
{
handle_enum(k, is_required(k), prop("enum"));
}
else if(prop.has("type"))
{
std::string type = prop("type");
if(type == "array")
{
handle_array(k, is_required(k), prop("items", mc_rtc::Configuration{})("type", std::string{""}),
prop("minItems", 0), prop("maxItems", 256));
}
else
{
handle_type(k, is_required(k), type);
}
}
else if(prop.has("$ref"))
{
std::string ref = prop("$ref");
ref = ref.substr(3); // remove leading /..
bfs::path ref_schema{file};
ref_schema = bfs::canonical(ref_schema.parent_path() / ref);
if(!store.count(ref_schema.string()))
{
store[ref_schema.string()] = Schema{ref_schema.string()};
}
auto cf = create_form;
bool required = is_required(k);
std::string ref_schema_str = ref_schema.string();
create_form = [cf, k, required, ref_schema_str](QWidget * parent, const mc_rtc::Configuration & data) {
auto v = cf(parent, data);
const auto & schema = store.at(ref_schema_str);
if(schema.is_object())
{
v.emplace_back(new form::Form(parent, k, required, store.at(ref_schema_str).create_form(parent, data)));
}
else
{
auto el = schema.create_form(parent, data).at(0);
el->name(k);
v.push_back(el);
}
return v;
};
}
else
{
LOG_ERROR("Cannot handle property " << k << " in " << file << ": " << prop.dump())
}
}
}
} // namespace
SchemaWidget::SchemaWidget(const ClientWidgetParam & params,
const std::string & schema,
const mc_rtc::Configuration & data)
: ClientWidget(params)
{
bfs::path schema_path = schema_dir;
schema_path /= schema;
if(!bfs::exists(schema_path))
{
LOG_ERROR("Schema path: " << schema_path.string() << " does not exist in this machine")
return;
}
bfs::directory_iterator dit(schema_path), endit;
std::vector<bfs::path> drange;
std::copy(dit, endit, std::back_inserter(drange));
std::sort(std::begin(drange), std::end(drange));
auto layout = new QVBoxLayout(this);
auto combo = new QComboBox(this);
stack_ = new QStackedWidget(this);
stack_->addWidget(new QWidget(this));
for(const auto & p : drange)
{
auto path = bfs::canonical(p);
Schema s{path.string()};
store[path.string()] = s;
auto form = new FormWidget(params);
for(auto el : s.create_form(this, data))
{
form->add_element(el);
}
form->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
combo->addItem(s.title().c_str());
stack_->addWidget(form);
}
combo->setCurrentIndex(-1);
stack_->setCurrentIndex(-1);
connect(combo, SIGNAL(currentIndexChanged(int)), this, SLOT(currentIndexChanged(int)));
layout->addWidget(combo);
layout->addWidget(stack_);
}
void SchemaWidget::currentIndexChanged(int idx)
{
stack_->currentWidget()->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
stack_->setCurrentIndex(idx + 1);
stack_->currentWidget()->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
stack_->currentWidget()->adjustSize();
stack_->adjustSize();
}
} // namespace mc_rtc_rviz
| [
"[email protected]"
] | |
74d424f843af8b598aaa592505bb64d1156515ee | 2a1365c24292ee4ea235301a1ead0403062f4645 | /他人代码_硕/数据结构试验代码(大二上)/实验1/实验1.cpp | 02f699dc6ccba5691b58eff9c9c20db2775ff088 | [] | no_license | trialley/DataStructuresLabs | 0a10f5bb8afe63585b111a820cf8d3b552018bd1 | 0d2cf9931175b96190a317d1ea14dd18793faf76 | refs/heads/master | 2020-09-27T10:16:31.437406 | 2019-12-31T07:32:11 | 2019-12-31T07:32:11 | 226,492,210 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,865 | cpp | #include<iostream>
using namespace std;
#define N 5
template <class T>
void permutations(T list[],int m,int n) //生成list[m:n]的全排列
{
if(m>n) cerr<<"math error!"<<endl;
if(m==n) { //LIST[M:N]仅有一个排列,输出它
/*copy(list,list+n+1,ostream_iterator<T>(cout,""));*/
for(int i=0;i<=n;i++) { cout<<list[i]; }
cout<<" ";
}
else
for(int i=m;i<=n;i++)
{
swap(list[i],list[m]); //为什么出错? call of overloaded 'swap(int&,int&) is ambiguous? std文件里已经定义了swap函数,你不要再写了
permutations(list,m+1,n);
swap(list[m],list[i]);
}
}
template <class T>
void Sub_Generation(T list[],int temp[],int n,int pos=0) //there is n elements in the list. And temp用于储存0、1序列
{//生成n位的0、1序列表示list的元素是否在子集中 ,pos是代表初始位置
/************************************************
if(list[0]==0) cout<<"error!"<<endl;
for(int i=0;i<n;i++)
{ cout<<list[i]<<" ";}
/************************************************/
if(pos==n) //前面跳出循环条件时pos已经等于n
{ cout<<"{";
for(int i=0;i<n;i++)
{
if(temp[i]==1)
{ /*if(list[i]==0) list[i]=1;*/ cout<<list[i]; //神bug.....
}
} cout<<"} "; //return;
}
else
{
temp[pos]=0;
Sub_Generation(list,temp,n,pos+1);
temp[pos]=1;
Sub_Generation(list,temp,n,pos+1);
}
}
int main()
{
int i,list[N],temp[N]; //害人不浅
cout<<"请输入"<<N<<"个数字"<<endl;
for(i=0;i<N;i++) { cin>>list[i]; }
cout<<"下面是它的全排列:"<<endl;
permutations(list,0,N-1);
//for(i=0;i<N;i++) { cout<<endl<<list[i]; } //这里检查发现list在传入第二个函数之前是正常的
cout<<endl;
cout<<"下面是它的子集:"<<endl;
Sub_Generation(list,temp,N,0);
return 0;
}
| [
"[email protected]"
] | |
2e4539950c929ac34106da0b4707228dd47b9839 | 27b3c7fa81a61d9f600ec3010c1e82002ef79b80 | /arm/mirrr/inc/msdaora.h | a6243c88e4846f02c7287df66800e11dda486c07 | [] | no_license | siemens-elfloader/elf | d9222a44481d3a6d2669446cd08c110a80f26225 | 878f7315e755a061967e6d8e0f59566829a9fbdf | refs/heads/master | 2023-02-13T06:59:48.187208 | 2021-01-06T09:41:52 | 2021-01-06T09:41:52 | 327,263,185 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,550 | h | //-----------------------------------------------------------------------------------
// Microsoft OLE DB Provider For Oracle
// (C) Copyright 1998 By Microsoft Corporation.
//
// @doc
//
// @module GUIDS.H | Internal GUIDS
//
// $Header: /usr/local/cvsroot/winrtl/include/windows/msdaora.h,v 9.4 2001/07/10 17:24:23 nyork Exp $
//
#ifndef __MSDAORAGUIDS_DEFINED__
#pragma option push -b -a8 -pc -A- /*P_O_Push*/
#define __MSDAORAGUIDS_DEFINED__
#ifdef DBINITCONSTANTS
EXTERN_C const CLSID CLSID_MSDAORA = {0xE8CC4CBE,0xFDFF,0x11D0,{0xB8,0x65,0x00,0xA0,0xC9,0x08,0x1C,0x1D}};
EXTERN_C const CLSID CLSID_MSDAORA_ERROR = {0xE8CC4CBF,0xFDFF,0x11D0,{0xB8,0x65,0x00,0xA0,0xC9,0x08,0x1C,0x1D}};
#else //DBINITCONSTANTS
EXTERN_C const CLSID CLSID_MSDAORA;
EXTERN_C const CLSID CLSID_MSDAORA_ERROR;
#endif //DBINITCONSTANTS
class DECLSPEC_UUID("E8CC4CBE-FDFF-11D0-B865-00A0C9081C1D")
MSDAORA;
class DECLSPEC_UUID("E8CC4CBF-FDFF-11D0-B865-00A0C9081C1D")
MSDAORA_ERROR;
//----------------------------------------------------------------------------
// MSDAORA specific properties
//
#ifdef DBINITCONSTANTS
extern const GUID OLEDBDECLSPEC DBPROPSET_MSDAORA_ROWSET = {0xE8CC4CBD,0xFDFF,0x11D0,{0xB8,0x65,0x00,0xA0,0xC9,0x08,0x1C,0x1D}};
#else // !DBINITCONSTANTS
extern const GUID DBPROPSET_MSDAORA_ROWSET;
#endif // DBINITCONSTANTS
// PropIds under DBPROPSET_MSDAORA_ROWSET
#define DBPROP_MSDAORA_DETERMINEKEYCOLUMNS 1
#pragma option pop /*P_O_Pop*/
#endif // __MSDAORAGUIDS_DEFINED__
| [
"[email protected]"
] | |
1c312fa168bb5b4c4f676ae78b45d3ca6de26220 | c0caed81b5b3e1498cbca4c1627513c456908e38 | /src/core/fragment/BBTorsionAndAnglesSRFD.cc | ff741909e628fd87b3ffecb4c3344d2daa65fa7f | [] | no_license | malaifa/source | 5b34ac0a4e7777265b291fc824da8837ecc3ee84 | fc0af245885de0fb82e0a1144422796a6674aeae | refs/heads/master | 2021-01-19T22:10:22.942155 | 2017-04-19T14:13:07 | 2017-04-19T14:13:07 | 88,761,668 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 4,514 | cc | // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
// vi: set ts=2 noet:
//
// (c) Copyright Rosetta Commons Member Institutions.
// (c) This file is part of the Rosetta software suite and is made available under license.
// (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
// (c) For more information, see http://www.rosettacommons.org. Questions about this can be
// (c) addressed to University of Washington UW TechTransfer, email: [email protected].
/// @file
/// @brief
/// @author Florian Richter ([email protected])
/// @date Wed Oct 20 12:08:31 2007
// Unit Headers
#include <core/fragment/BBTorsionAndAnglesSRFD.hh>
// Project Headers
#include <core/pose/Pose.hh>
#include <core/kinematics/MoveMap.hh>
#include <core/conformation/Conformation.hh>
// Utility headers
#include <basic/Tracer.hh>
#include <utility/vector1.hh>
namespace core {
namespace fragment {
static THREAD_LOCAL basic::Tracer tr( "core.fragment.BBTorsionAndAnglesSRFD" );
bool BBTorsionAndAnglesSRFD::apply( pose::Pose& pose, Size seqpos ) const {
bool const success ( Parent::apply( pose, seqpos ) );
// only move forward with changes if prior ops successful
if ( success ) {
for ( Size i = 1; i <= angles_.size(); ++i ) {
pose.conformation().set_bond_angle(
core::id::AtomID ((angles_[i].first)[0], seqpos),
core::id::AtomID ((angles_[i].first)[1], seqpos ),
core::id::AtomID ((angles_[i].first)[2], seqpos ),
angles_[i].second
);
}
}
return success; //can something go wrong ?
}
/// @brief insert backbone torsions and angles into pose at position seqpos
/// if all bb torsions are moveable in MoveMap
/// @return True if *all* torsions and angles are inserted and superclass apply()
/// is successful, otherwise False.
/// @remarks This is currently all or nothing -- all torsions for seqpos
/// must be moveable because it's not entirely clear what the behavior
/// of partial angle insertion is. In addition, DOF_IDs are not made
/// explicitly available within this class, meaning there is no way to
/// look them up within the MoveMap; the implementation in this class
/// must be changed if this is desired.
bool BBTorsionAndAnglesSRFD::apply( kinematics::MoveMap const & movemap, pose::Pose & pose, Size const seqpos ) const {
// parent apply() successful?
if ( !Parent::apply( movemap, pose, seqpos ) ) {
return false; // punt
}
// first check to see if all torsions moveable
bool success2 = true; // true only if all torsions moveable
for ( Size j = 1, je = nbb(); j <= je; ++j ) {
success2 = success2 && movemap.get( id::TorsionID( seqpos, id::BB, j ) );
}
// insert all angles only if all torsions moveable
if ( success2 ) {
for ( Size i = 1; i <= angles_.size(); ++i ) {
pose.conformation().set_bond_angle(
core::id::AtomID ((angles_[i].first)[0], seqpos),
core::id::AtomID ((angles_[i].first)[1], seqpos ),
core::id::AtomID ((angles_[i].first)[2], seqpos ),
angles_[i].second
);
}
}
return success2;
}
bool BBTorsionAndAnglesSRFD::steal( pose::Pose const& pose, Size seqpos ) {
runtime_assert( angles_.size() > 0 );
bool success ( Parent::steal( pose, seqpos ) );
for ( Size i=1; i<= angles_.size(); ++i ) {
angles_[i].second = pose.conformation().bond_angle(
core::id::AtomID ((angles_[i].first)[0], seqpos),
core::id::AtomID ((angles_[i].first)[1], seqpos),
core::id::AtomID ((angles_[i].first)[2], seqpos) );
}
return success; //can something go wrong ?
}
bool BBTorsionAndAnglesSRFD::is_compatible( SingleResidueFragData const& aSRFD) const {
if ( dynamic_cast< BBTorsionAndAnglesSRFD const * > ( & aSRFD ) ) {
BBTorsionAndAnglesSRFD const & bbtaasrfd = static_cast< BBTorsionAndAnglesSRFD const & > ( aSRFD );
return ( (bbtaasrfd.nbb() == nbb()) && (bbtaasrfd.nangles() == nangles()) );
}
return false; //wrong SRFD-type (cast not successfull)
}
/// @details there is no information in the MoveMap as to which angles can be moved, so this function
/// @details will return its value solely based on the parent
bool BBTorsionAndAnglesSRFD::is_applicable( kinematics::MoveMap const& move_map, Size seqpos) const {
if ( ! Parent::is_applicable( move_map, seqpos ) ) return false;
return true;
}
void BBTorsionAndAnglesSRFD::show( std::ostream &out ) const {
Parent::show( out );
}
void BBTorsionAndAnglesSRFD::read( std::istream &in ) {
Parent::read_data( in );
}
} //fragment
} //core
| [
"[email protected]"
] | |
633a987246bcd9973b4c786f3d1cd80c97d8b7e7 | 72362b7d813e5986f6698a07a1c98853399e1534 | /Core/Controllers/Teacher/Menus/StudentsEditor/Models/Add/Impl_add/Register.cpp | c3b1aeb0521679ae6ac194ab2c40bf35f4cc2533 | [] | no_license | Hanawaro/StudentTesting | a33f681e053be9a6afcd6d3f58388d41df43c797 | a3e018a12932e06d801068a02a1b9e4359812203 | refs/heads/master | 2022-04-26T10:03:26.944440 | 2020-04-16T22:33:10 | 2020-04-16T22:33:10 | 255,332,473 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,094 | cpp | #include "../Add.hpp"
bool Add::active_register(void) {
draw_active_register();
int tmp = wgetch(m_Window);
switch (tmp) {
case KEY_UP:
draw();
locale = Locale::Password;
break;
case KEY_LEFT:
case KEY_DOWN:
case '\t':
draw();
locale = Locale::Exit;
break;
case '\n':
if (!real_login.size()) {
draw();
wattron(m_Window, COLOR_PAIR(iomanager::ERROR));
mvwaddstr(m_Window, LINES/4 + 11, (COLS - (int) iomanager::strlen(error_empty_login))/2, error_empty_login.c_str());
wattroff(m_Window, COLOR_PAIR(iomanager::ERROR));
locale = Locale::Login;
} else if (!check_login()) {
draw();
wattron(m_Window, COLOR_PAIR(iomanager::ERROR));
mvwaddstr(m_Window, LINES/4 + 11, (COLS - (int) iomanager::strlen(error_login))/2, error_login.c_str());
wattroff(m_Window, COLOR_PAIR(iomanager::ERROR));
locale = Locale::Login;
} else if (!real_name.size()) {
draw();
wattron(m_Window, COLOR_PAIR(iomanager::ERROR));
mvwaddstr(m_Window, LINES/4 + 11, (COLS - (int) iomanager::strlen(error_empty_name))/2, error_empty_name.c_str());
wattroff(m_Window, COLOR_PAIR(iomanager::ERROR));
locale = Locale::Name;
} else if (!real_second_name.size()) {
draw();
wattron(m_Window, COLOR_PAIR(iomanager::ERROR));
mvwaddstr(m_Window, LINES/4 + 11, (COLS - (int) iomanager::strlen(error_empty_second_name))/2, error_empty_second_name.c_str());
wattroff(m_Window, COLOR_PAIR(iomanager::ERROR));
locale = Locale::SecondName;
} else if (!real_password.size()) {
draw();
wattron(m_Window, COLOR_PAIR(iomanager::ERROR));
mvwaddstr(m_Window, LINES/4 + 11, (COLS - (int) iomanager::strlen(error_empty_password))/2, error_empty_password.c_str());
wattroff(m_Window, COLOR_PAIR(iomanager::ERROR));
locale = Locale::Password;
} else {
add_user();
real_login = "";
reset_login();
real_name = "";
reset_name();
real_second_name = "";
reset_second_name();
real_password = "";
reset_password();
draw();
wattron(m_Window, COLOR_PAIR(iomanager::SUCSESS));
mvwaddstr(m_Window, LINES/4 + 11, (COLS - (int) iomanager::strlen(sucsess_register))/2, sucsess_register.c_str());
wattroff(m_Window, COLOR_PAIR(iomanager::SUCSESS));
locale = Locale::Exit;
}
break;
default:
break;
}
return false;
}
| [
"[email protected]"
] | |
f26ba1ae355012ad46abf7a71a855d08de4e9cca | eec9b2cbb667d606a6e44ab1ea9d457f4b688271 | /docs/code-quality/codesnippet/CPP/ca2217-do-not-mark-enums-with-flagsattribute_1.cpp | a81921a4bf6a6d37572018e25a21191c3777e65f | [
"CC-BY-4.0",
"MIT"
] | permissive | olholder/visualstudio-docs | 4bc823f7d3b68a0852105fc51a7328c99d505100 | a285aa39aab9c06b3a66d86f51e99f605d38a9aa | refs/heads/master | 2021-07-12T03:17:37.931036 | 2020-02-06T22:31:16 | 2020-02-06T22:31:16 | 238,795,678 | 3 | 0 | NOASSERTION | 2020-02-06T22:13:35 | 2020-02-06T22:13:34 | null | UTF-8 | C++ | false | false | 227 | cpp | using namespace System;
namespace Samples
{
// Violates this rule
[FlagsAttribute]
public enum class Color
{
None = 0,
Red = 1,
Orange = 3,
Yellow = 4
};
} | [
"[email protected]"
] | |
05a0ca1a5181bacd29b5a5b01affbb54ec515e7f | c9cf0586ace11aa32fa67606d237a130a06364ee | /circular-cylinder-2-20/w_20/39.5/p | 814fbae96142b001bf59504a20e9b8b9bccbaa10 | [] | no_license | jezvonek/CFD-Final-Project | c74cfa21f22545c27d97d85cf30eb6dc8c824dc1 | 7c9a7fb032d74f20888effa0a0b75b212bf899f4 | refs/heads/master | 2022-07-05T14:43:52.967657 | 2020-05-14T03:40:56 | 2020-05-14T03:40:56 | 262,370,756 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 91,136 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "39.5";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
9600
(
-41.4657
-36.1999
-32.9721
-30.234
-27.7279
-25.4607
-23.404
-21.5298
-19.8207
-18.263
-16.844
-15.5517
-14.3748
-13.3024
-12.3245
-11.4316
-10.6154
-9.86778
-9.18135
-8.5539
-42.2235
-36.9403
-33.6766
-30.8958
-28.3447
-26.0335
-23.9355
-22.0237
-20.2808
-18.6931
-17.2478
-15.9324
-14.7352
-13.645
-12.6513
-11.7443
-10.9153
-10.156
-9.45849
-8.82179
-42.9831
-37.6768
-34.3758
-31.552
-28.9557
-26.6003
-24.461
-22.5116
-20.7352
-19.1179
-17.6465
-16.3084
-15.0912
-13.9834
-12.9741
-12.0531
-11.2115
-10.4406
-9.73207
-9.08632
-43.7411
-38.4088
-35.0692
-32.2017
-29.5599
-27.1602
-24.9796
-22.9928
-21.1831
-19.5364
-18.0394
-16.6789
-15.4421
-14.317
-13.2923
-12.3576
-11.5036
-10.7211
-10.0017
-9.34714
-44.4947
-39.1349
-35.7557
-32.8439
-30.1562
-27.7121
-25.4904
-23.4664
-21.6236
-19.9481
-18.4258
-17.0432
-15.7871
-14.645
-13.6053
-12.6571
-11.7909
-10.9972
-10.2669
-9.60398
-45.2416
-39.8537
-36.4341
-33.4774
-30.7435
-28.255
-25.9923
-23.9314
-22.0561
-20.3519
-18.8048
-17.4006
-16.1257
-14.967
-13.9126
-12.9513
-12.0732
-11.2683
-10.5275
-9.85657
-45.9802
-40.5635
-37.1032
-34.1012
-31.3209
-28.788
-26.4844
-24.387
-22.4795
-20.7473
-19.1759
-17.7505
-16.4572
-15.2823
-14.2136
-13.2395
-12.3499
-11.5341
-10.7831
-10.1046
-46.709
-41.2632
-37.7618
-34.714
-31.8873
-29.31
-26.9659
-24.8323
-22.8931
-21.1334
-19.5381
-18.0921
-16.7808
-15.5903
-14.5077
-13.5213
-12.6204
-11.7943
-11.0334
-10.3478
-47.4265
-41.9514
-38.4086
-35.3148
-32.4415
-29.8201
-27.4357
-25.2664
-23.296
-21.5093
-19.8908
-18.4247
-17.096
-15.8903
-14.7943
-13.796
-12.8844
-12.0482
-11.2778
-10.5859
-48.1315
-42.6268
-39.0424
-35.9024
-32.9826
-30.3173
-27.8931
-25.6885
-23.6874
-21.8743
-20.2331
-18.7475
-17.4019
-16.1816
-15.0727
-14.0629
-13.1411
-12.2953
-11.5159
-10.8184
-48.8229
-43.2885
-39.6623
-36.476
-33.5097
-30.8007
-28.3369
-26.0976
-24.0665
-22.2276
-20.5642
-19.0597
-17.6978
-16.4632
-15.342
-14.3213
-13.3897
-12.5349
-11.7472
-11.0446
-49.4998
-43.9353
-40.2672
-37.0344
-34.0218
-31.2693
-28.7666
-26.493
-24.4324
-22.5682
-20.8833
-19.3604
-17.9826
-16.7344
-15.6013
-14.5703
-13.6295
-12.7662
-11.9706
-11.2639
-50.1615
-44.5664
-40.8563
-37.5769
-34.518
-31.7224
-29.1811
-26.8739
-24.7843
-22.8954
-21.1895
-19.6486
-18.2556
-16.9942
-15.8496
-14.8088
-13.8594
-12.9882
-12.1855
-11.4754
-50.8074
-45.181
-41.4286
-38.1026
-34.9975
-32.1592
-29.5798
-27.2394
-25.1214
-23.2084
-21.4819
-19.9235
-18.5155
-17.2413
-16.0857
-15.0355
-14.0781
-13.1997
-12.3907
-11.6786
-51.4368
-45.7783
-41.9834
-38.6107
-35.4597
-32.579
-29.962
-27.589
-25.4431
-23.5064
-21.7597
-20.1841
-18.7614
-17.4745
-16.3081
-15.2486
-14.2834
-13.3983
-12.5839
-11.8714
-52.0494
-46.3576
-42.52
-39.1007
-35.9039
-32.9813
-30.3272
-27.9222
-25.7489
-23.7888
-22.0223
-20.4297
-18.9923
-17.6928
-16.5156
-15.4468
-14.4738
-13.582
-12.7624
-12.0486
-52.6465
-46.9186
-43.0376
-39.5717
-36.3295
-33.3653
-30.6747
-28.2382
-26.0381
-24.0551
-22.269
-20.6595
-19.2074
-17.8953
-16.7071
-15.6291
-14.6487
-13.7507
-12.9251
-12.2068
-53.2323
-47.4626
-43.5356
-40.0228
-36.7355
-33.7305
-31.0041
-28.537
-26.3105
-24.305
-22.4993
-20.8727
-19.4055
-18.08
-16.8803
-15.7929
-14.8054
-13.9017
-13.0712
-12.3573
-53.809
-47.989
-44.0123
-40.4528
-37.1216
-34.0769
-31.3158
-28.8187
-26.5666
-24.5389
-22.7137
-21.0696
-19.5863
-18.2456
-17.0318
-15.9316
-14.932
-14.0175
-13.1857
-12.5042
-54.3548
-48.4902
-44.4668
-40.8624
-37.4891
-34.4061
-31.6113
-29.0853
-26.8083
-24.7589
-22.9144
-21.2525
-19.7523
-18.3948
-17.1634
-16.0436
-15.0203
-14.0802
-13.2375
-12.5622
-59.7993
-59.7679
-59.6987
-59.6064
-59.4903
-59.3478
-59.1785
-58.9828
-58.7614
-58.5147
-58.2433
-57.9478
-57.6288
-57.2871
-56.9233
-56.5383
-56.1334
-55.71
-55.2712
-54.82
-53.4518
-53.4492
-53.4135
-53.3503
-53.2603
-53.1431
-52.9987
-52.8281
-52.6317
-52.4104
-52.1647
-51.8951
-51.6023
-51.2871
-50.9499
-50.5914
-50.2124
-49.8133
-49.3946
-48.9543
-48.8099
-48.8316
-48.8241
-48.7878
-48.7241
-48.6338
-48.5176
-48.376
-48.2097
-48.0194
-47.8054
-47.5686
-47.3093
-47.0281
-46.7256
-46.4021
-46.0581
-45.6934
-45.3078
-44.8995
-44.5818
-44.6212
-44.6341
-44.6199
-44.5795
-44.5139
-44.4239
-44.31
-44.1728
-44.0126
-43.8302
-43.6261
-43.4006
-43.1544
-42.8877
-42.6009
-42.2942
-41.9674
-41.6204
-41.2523
-40.6727
-40.7219
-40.7473
-40.7481
-40.7246
-40.6777
-40.608
-40.5161
-40.4025
-40.2676
-40.1119
-39.936
-39.7403
-39.5252
-39.2911
-39.0382
-38.7666
-38.4762
-38.1669
-37.8381
-37.1621
-37.2155
-37.2473
-37.2567
-37.2438
-37.2093
-37.1538
-37.0777
-36.9816
-36.866
-36.7312
-36.5779
-36.4064
-36.2171
-36.0104
-35.7865
-35.5455
-35.2874
-35.0118
-34.7184
-34.041
-34.0944
-34.128
-34.1411
-34.1337
-34.1064
-34.0598
-33.9944
-33.9105
-33.8087
-33.6894
-33.5532
-33.4005
-33.2316
-33.0471
-32.847
-32.6316
-32.4007
-32.1541
-31.8913
-31.2725
-31.323
-31.3553
-31.3687
-31.3633
-31.3395
-31.2979
-31.239
-31.1631
-31.0708
-30.9626
-30.8389
-30.7003
-30.5472
-30.38
-30.1991
-30.0045
-29.7963
-29.5741
-29.3375
-28.8167
-28.8628
-28.892
-28.9036
-28.8978
-28.875
-28.8358
-28.7805
-28.7096
-28.6236
-28.523
-28.4084
-28.2802
-28.1391
-27.9855
-27.8197
-27.6421
-27.4526
-27.251
-27.0367
-26.634
-26.675
-26.7001
-26.7088
-26.7013
-26.6781
-26.6395
-26.586
-26.5181
-26.4362
-26.3409
-26.2327
-26.1123
-25.9803
-25.8372
-25.6836
-25.5198
-25.346
-25.1618
-24.9666
-24.6873
-24.7229
-24.7437
-24.7491
-24.7393
-24.7148
-24.676
-24.6232
-24.5569
-24.4776
-24.386
-24.2825
-24.1679
-24.0428
-23.908
-23.7642
-23.6118
-23.4511
-23.282
-23.1037
-22.9435
-22.9741
-22.9906
-22.9926
-22.9804
-22.9543
-22.9147
-22.862
-22.7966
-22.7191
-22.63
-22.53
-22.4197
-22.3001
-22.1719
-22.0359
-21.893
-21.7437
-21.5879
-21.4248
-21.3745
-21.4004
-21.413
-21.4118
-21.3972
-21.3694
-21.3289
-21.276
-21.2111
-21.1348
-21.0476
-20.9501
-20.8433
-20.7278
-20.6048
-20.4753
-20.3405
-20.201
-20.0573
-19.9084
-19.9564
-19.9782
-19.9872
-19.9832
-19.9663
-19.937
-19.8956
-19.8424
-19.7778
-19.7024
-19.6166
-19.5212
-19.4169
-19.3048
-19.1859
-19.0616
-18.9333
-18.8024
-18.6699
-18.5346
-18.6694
-18.6876
-18.6934
-18.6868
-18.668
-18.6374
-18.5951
-18.5417
-18.4773
-18.4026
-18.318
-18.2242
-18.122
-18.0123
-17.8966
-17.7763
-17.6534
-17.5297
-17.4076
-17.2858
-17.4971
-17.5119
-17.5149
-17.5061
-17.4856
-17.4538
-17.4109
-17.3572
-17.2931
-17.219
-17.1354
-17.0428
-16.9422
-16.8344
-16.7209
-16.6034
-16.4846
-16.3666
-16.254
-16.1455
-16.4257
-16.4375
-16.438
-16.4272
-16.4052
-16.3724
-16.3289
-16.275
-16.2111
-16.1374
-16.0546
-15.963
-15.8634
-15.7568
-15.6446
-15.5285
-15.4119
-15.2977
-15.1933
-15.0964
-15.4431
-15.4525
-15.4511
-15.4388
-15.4158
-15.3822
-15.3384
-15.2845
-15.2209
-15.1478
-15.0656
-14.9749
-14.8761
-14.7701
-14.6582
-14.5422
-14.4259
-14.3131
-14.2157
-14.128
-14.5383
-14.5463
-14.5439
-14.5311
-14.508
-14.4748
-14.4317
-14.3789
-14.3167
-14.2452
-14.1649
-14.076
-13.9791
-13.8747
-13.7638
-13.6481
-13.5311
-13.418
-13.3274
-13.2538
-13.706
-13.7108
-13.7058
-13.6912
-13.6671
-13.6335
-13.5907
-13.5388
-13.478
-13.4085
-13.3306
-13.2444
-13.1504
-13.0488
-12.9401
-12.8255
-12.7066
-12.5888
-12.4918
-12.4424
-53.5186
-54.0929
-54.6301
-55.1523
-55.6566
-56.1371
-56.5909
-57.0169
-57.4142
-57.7819
-58.1194
-58.426
-58.7017
-58.9458
-59.1578
-59.3379
-59.4868
-59.6058
-59.6967
-59.7616
-47.0373
-47.6169
-48.1686
-48.6979
-49.2045
-49.6858
-50.1406
-50.568
-50.9674
-51.3382
-51.6798
-51.992
-52.275
-52.5294
-52.7532
-52.9458
-53.1077
-53.2394
-53.3414
-53.4125
-42.3953
-42.9627
-43.5065
-44.027
-44.524
-44.997
-45.445
-45.8674
-46.2636
-46.6329
-46.9743
-47.2876
-47.5726
-47.8279
-48.0548
-48.2536
-48.4239
-48.5654
-48.6778
-48.7597
-38.2736
-38.8158
-39.3384
-39.8394
-40.3183
-40.7748
-41.2082
-41.6179
-42.0034
-42.3639
-42.6982
-43.0058
-43.2876
-43.5432
-43.7726
-43.9756
-44.1518
-44.3009
-44.4225
-44.5162
-34.598
-35.1103
-35.6055
-36.0811
-36.5361
-36.9702
-37.3828
-37.7732
-38.1407
-38.4849
-38.8062
-39.1043
-39.3777
-39.6266
-39.8511
-40.051
-40.2259
-40.3756
-40.5002
-40.5994
-31.4014
-31.8823
-32.3477
-32.7953
-33.2238
-33.6326
-34.0215
-34.3898
-34.737
-35.0627
-35.367
-35.6491
-35.9085
-36.1452
-36.3597
-36.5516
-36.7203
-36.8657
-36.9879
-37.0869
-28.6313
-29.0814
-29.5172
-29.9365
-30.338
-30.7211
-31.0854
-31.4305
-31.7558
-32.0611
-32.3462
-32.6105
-32.854
-33.0763
-33.2771
-33.4583
-33.6181
-33.7561
-33.8725
-33.9676
-26.2209
-26.6421
-27.05
-27.4423
-27.8179
-28.176
-28.5164
-28.8385
-29.1421
-29.4268
-29.6923
-29.9386
-30.1655
-30.3729
-30.5607
-30.7275
-30.8767
-31.0057
-31.1145
-31.2035
-24.1116
-24.5065
-24.8887
-25.2561
-25.6075
-25.9423
-26.2601
-26.5606
-26.8433
-27.1082
-27.3551
-27.5839
-27.7944
-27.9867
-28.1606
-28.3162
-28.4522
-28.5712
-28.6716
-28.7535
-22.2533
-22.6245
-22.9835
-23.3283
-23.6577
-23.9711
-24.2681
-24.5485
-24.8119
-25.0584
-25.2878
-25.5
-25.695
-25.8728
-26.0334
-26.1765
-26.3022
-26.4108
-26.5026
-26.5771
-20.6044
-20.9544
-21.2927
-21.6174
-21.9269
-22.2209
-22.4989
-22.7608
-23.0066
-23.236
-23.4493
-23.6463
-23.827
-23.9914
-24.1395
-24.2713
-24.3867
-24.4858
-24.5692
-24.6365
-19.1313
-19.4626
-19.7827
-20.0893
-20.381
-20.6573
-20.918
-21.1631
-21.3927
-21.6067
-21.8052
-21.9882
-22.1558
-22.308
-22.4448
-22.5661
-22.6721
-22.7628
-22.838
-22.8985
-17.807
-18.1218
-18.4261
-18.7168
-18.9923
-19.2525
-19.4975
-19.7272
-19.942
-20.1418
-20.3268
-20.4971
-20.6529
-20.7939
-20.9204
-21.0323
-21.1297
-21.2124
-21.2803
-21.3348
-16.6099
-16.9103
-17.201
-17.4777
-17.7386
-17.984
-18.2145
-18.4301
-18.6312
-18.818
-18.9907
-19.1495
-19.2944
-19.4255
-19.5427
-19.646
-19.7356
-19.8114
-19.8738
-19.9217
-15.5229
-15.811
-16.0903
-16.3543
-16.6017
-16.8335
-17.0504
-17.2529
-17.4414
-17.6162
-17.7777
-17.9259
-18.061
-18.183
-18.2918
-18.3875
-18.47
-18.5395
-18.5959
-18.639
-14.5313
-14.811
-15.0811
-15.3331
-15.5677
-15.7866
-15.9907
-16.1808
-16.3574
-16.5212
-16.6722
-16.8108
-16.9369
-17.0506
-17.1518
-17.2405
-17.3167
-17.3805
-17.4317
-17.4706
-13.6174
-13.896
-14.161
-14.4016
-14.6236
-14.8301
-15.022
-15.2003
-15.3659
-15.5194
-15.6609
-15.7907
-15.9087
-16.0149
-16.1092
-16.1917
-16.2623
-16.3209
-16.3677
-16.4025
-12.7607
-13.0434
-13.3097
-13.541
-13.751
-13.9459
-14.1267
-14.2945
-14.4503
-14.5948
-14.7282
-14.8504
-14.9616
-15.0615
-15.1502
-15.2275
-15.2934
-15.3479
-15.3911
-15.4228
-11.9743
-12.2477
-12.5147
-12.7412
-12.9411
-13.1246
-13.295
-13.4533
-13.6004
-13.737
-13.8632
-13.979
-14.0843
-14.179
-14.263
-14.3362
-14.3984
-14.4498
-14.4901
-14.5197
-11.3845
-11.6351
-11.8627
-12.0792
-12.2673
-12.4331
-12.587
-12.731
-12.8649
-12.989
-13.1036
-13.2088
-13.3042
-13.3898
-13.4653
-13.5308
-13.5862
-13.6313
-13.6662
-13.6906
-5.99128
-6.48212
-7.02007
-7.60208
-8.23458
-8.92499
-9.68098
-10.512
-11.4303
-12.4514
-13.5959
-14.8906
-16.371
-18.0831
-20.0873
-22.4628
-25.2906
-28.5931
-32.5895
-38.5846
-6.26146
-6.7658
-7.31423
-7.90826
-8.5545
-9.26005
-10.0327
-10.8822
-11.8209
-12.8649
-14.0349
-15.3582
-16.8705
-18.6186
-20.6628
-23.0823
-25.9571
-29.3063
-33.3411
-39.3572
-6.53308
-7.05091
-7.60995
-8.21624
-8.87647
-9.5974
-10.387
-11.2552
-12.2147
-13.2818
-14.4776
-15.8298
-17.3746
-19.1589
-21.2434
-23.7069
-26.6282
-30.023
-34.0944
-40.127
-6.80564
-7.33692
-7.90663
-8.5254
-9.19983
-9.93635
-10.7431
-11.6302
-12.6107
-13.7012
-14.9231
-16.3044
-17.8818
-19.7025
-21.8274
-24.3349
-27.3025
-30.7427
-34.8518
-40.9055
-7.07871
-7.62334
-8.20382
-8.83526
-9.5241
-10.2764
-11.1004
-12.0067
-13.0084
-14.1224
-15.3705
-16.7811
-18.3913
-20.2485
-22.4139
-24.9653
-27.9791
-31.4648
-35.6124
-41.6904
-7.35191
-7.90978
-8.50108
-9.14541
-9.84883
-10.6171
-11.4586
-12.3841
-13.4072
-14.5449
-15.8194
-17.2594
-18.9024
-20.7964
-23.0022
-25.5976
-28.6574
-32.1883
-36.374
-42.4773
-7.62493
-8.19587
-8.79804
-9.45544
-10.1736
-10.958
-11.817
-12.762
-13.8065
-14.968
-16.269
-17.7386
-19.4146
-21.3452
-23.5916
-26.2308
-29.3365
-32.9122
-37.1353
-43.2641
-7.89752
-8.48133
-9.09439
-9.76501
-10.4981
-11.2986
-12.1754
-13.1398
-14.2058
-15.3912
-16.7187
-18.2179
-19.9269
-21.8943
-24.1811
-26.864
-30.0152
-33.6352
-37.895
-44.0492
-8.16952
-8.76594
-9.38987
-10.0739
-10.822
-11.6387
-12.5332
-13.5171
-14.6047
-15.8139
-17.168
-18.6968
-20.4388
-22.4427
-24.7698
-27.4962
-30.6926
-34.3564
-38.6519
-44.8312
-8.4409
-9.04961
-9.68433
-10.3818
-11.1449
-11.9779
-12.8901
-13.8935
-15.0025
-16.2356
-17.6161
-19.1744
-20.9493
-22.9897
-25.3569
-28.1264
-31.3674
-35.0744
-39.4046
-45.6086
-8.71176
-9.33236
-9.97772
-10.6886
-11.4668
-12.316
-13.2458
-14.2685
-15.3988
-16.6556
-18.0625
-19.6501
-21.4577
-23.5344
-25.9414
-28.7536
-32.0386
-35.788
-40.152
-46.3798
-8.9824
-9.61437
-10.2701
-10.9944
-11.7874
-12.6526
-13.5998
-14.6416
-15.7932
-17.0734
-18.5064
-20.1232
-21.9632
-24.0758
-26.5222
-29.3766
-32.7051
-36.4961
-40.8926
-47.1435
-9.25329
-9.89591
-10.5615
-11.2989
-12.1066
-12.9875
-13.9518
-15.0125
-16.1849
-17.4883
-18.9471
-20.5927
-22.4649
-24.6131
-27.0985
-29.9945
-33.3656
-37.1974
-41.625
-47.8984
-9.52517
-10.1774
-10.8522
-11.6023
-12.4242
-13.3203
-14.3014
-15.3805
-16.5735
-17.8997
-19.384
-21.058
-22.9619
-25.1453
-27.669
-30.606
-34.019
-37.8906
-42.3482
-48.643
-9.79878
-10.4592
-11.1422
-11.9043
-12.7397
-13.6506
-14.6479
-15.7451
-16.9581
-18.3067
-19.8161
-21.5182
-23.4533
-25.6713
-28.2328
-31.21
-34.664
-38.5745
-43.0607
-49.3764
-10.0751
-10.7415
-11.4311
-12.2042
-13.0526
-13.9776
-14.9906
-16.1053
-17.338
-18.7086
-20.2425
-21.9722
-23.938
-26.19
-28.7887
-31.8051
-35.2993
-39.2479
-43.7615
-50.0974
-10.3539
-11.0232
-11.7175
-12.5009
-13.3616
-14.3003
-15.3285
-16.4604
-17.7122
-19.1043
-20.6623
-22.419
-24.4149
-26.7003
-29.3353
-32.3902
-35.9234
-39.9092
-44.4497
-50.8055
-10.6344
-11.3018
-11.999
-12.7923
-13.6654
-14.6175
-15.6606
-16.8092
-18.0797
-19.4928
-21.0745
-22.8575
-24.883
-27.201
-29.8714
-32.9638
-36.5349
-40.557
-45.1238
-51.5006
-10.9094
-11.5689
-12.2693
-13.0752
-13.9619
-14.9275
-15.9854
-17.1504
-18.4394
-19.8731
-21.4778
-23.2866
-25.3409
-27.6907
-30.3956
-33.5243
-37.1321
-41.1894
-45.7829
-52.1842
-11.1602
-11.8045
-12.524
-13.3506
-14.2515
-15.2302
-16.3024
-17.4835
-18.7904
-20.2441
-21.8713
-23.7053
-25.7875
-28.1682
-30.9065
-34.07
-37.7127
-41.8032
-46.4221
-52.858
-1.57868
-1.83282
-2.18094
-2.57017
-2.98913
-3.44318
-3.93865
-4.48148
-5.07917
-5.74199
-6.4839
-7.32392
-8.28819
-9.41274
-10.7484
-12.3695
-14.3656
-16.7977
-19.9739
-25.3693
-1.73158
-2.00211
-2.36864
-2.76377
-3.18612
-3.64548
-4.14782
-4.6987
-5.30576
-5.97953
-6.73424
-7.58924
-8.57109
-9.71636
-11.0765
-12.7262
-14.7551
-17.2225
-20.4309
-25.8401
-1.87874
-2.17332
-2.55297
-2.95621
-3.38628
-3.85399
-4.36525
-4.92577
-5.54357
-6.22954
-6.99822
-7.86935
-8.86996
-10.0371
-11.4228
-13.1022
-15.1646
-17.6674
-20.9072
-26.3249
-2.04814
-2.35353
-2.74136
-3.1533
-3.59253
-4.06976
-4.59102
-5.16231
-5.79199
-6.49123
-7.27494
-8.16326
-9.18368
-10.3738
-11.7861
-13.4962
-15.5931
-18.1325
-21.4071
-26.8424
-2.22883
-2.5413
-2.93695
-3.35783
-3.80652
-4.29371
-4.82561
-5.40847
-6.0509
-6.76435
-7.56404
-8.47052
-9.51175
-10.7259
-12.1659
-13.9077
-16.0403
-18.6179
-21.9298
-27.3892
-2.415
-2.73606
-3.14002
-3.57
-4.02845
-4.52604
-5.06918
-5.66432
-6.32026
-7.04873
-7.86529
-8.79086
-9.85389
-11.0931
-12.5619
-14.3367
-16.5061
-19.1231
-22.4737
-27.9601
-2.60816
-2.93871
-3.35089
-3.78999
-4.25846
-4.7669
-5.32181
-5.92981
-6.59994
-7.34419
-8.17843
-9.124
-10.2098
-11.475
-12.9737
-14.7826
-16.9901
-19.6476
-23.0376
-28.5527
-2.80971
-3.14972
-3.56992
-4.01812
-4.49682
-5.01642
-5.58352
-6.20491
-6.88984
-7.65054
-8.50322
-9.4696
-10.579
-11.8713
-13.401
-15.245
-17.4917
-20.1907
-23.6209
-29.1659
-3.01942
-3.36895
-3.79713
-4.25448
-4.74357
-5.27462
-5.85427
-6.48951
-7.18977
-7.96755
-8.83937
-9.82734
-10.9613
-12.2815
-13.8431
-15.7233
-18.0103
-20.7517
-24.223
-29.7988
-3.23671
-3.59606
-4.03232
-4.49892
-4.99859
-5.54134
-6.1339
-6.78341
-7.4995
-8.29495
-9.18656
-10.1968
-11.3561
-12.7052
-14.2996
-16.2171
-18.5452
-21.3301
-24.8429
-30.4502
-3.46114
-3.83071
-4.27519
-4.75117
-5.26162
-5.81634
-6.42214
-7.08633
-7.81874
-8.63239
-9.54442
-10.5777
-11.7631
-13.1418
-14.77
-16.7256
-19.0959
-21.9249
-25.4799
-31.119
-3.69232
-4.0725
-4.52536
-5.01088
-5.53232
-6.09931
-6.71868
-7.39793
-8.14712
-8.9795
-9.91253
-10.9695
-12.1817
-13.5909
-15.2537
-17.2483
-19.6615
-22.5356
-26.1331
-31.8042
-3.92979
-4.32095
-4.78237
-5.27763
-5.81032
-6.38983
-7.02311
-7.71782
-8.48422
-9.33583
-10.2904
-11.3717
-12.6114
-14.0518
-15.75
-17.7844
-20.2414
-23.1611
-26.8016
-32.5049
-4.17303
-4.57555
-5.04574
-5.55095
-6.09513
-6.68748
-7.33498
-8.04552
-8.82956
-9.70089
-10.6776
-11.7838
-13.0517
-14.524
-16.2584
-18.3334
-20.8349
-23.8008
-27.4846
-33.2201
-4.4215
-4.83573
-5.31492
-5.83031
-6.38627
-6.99174
-7.6538
-8.38053
-9.18263
-10.0741
-11.0735
-12.2052
-13.5018
-15.0068
-16.7781
-18.8944
-21.441
-24.4538
-28.1811
-33.949
-4.67463
-5.10094
-5.58935
-6.11518
-6.68318
-7.30208
-7.97902
-8.72231
-9.54287
-10.455
-11.4775
-12.6352
-13.9613
-15.4995
-17.3083
-19.4666
-22.059
-25.1192
-28.8904
-34.6908
-4.93188
-5.37058
-5.86846
-6.40499
-6.98532
-7.61794
-8.31009
-9.07028
-9.90969
-10.8429
-11.889
-13.0732
-14.4292
-16.0013
-17.8483
-20.0491
-22.688
-25.796
-29.6117
-35.4449
-5.19271
-5.64409
-6.15166
-6.69915
-7.29211
-7.93875
-8.64643
-9.42387
-10.2825
-11.2371
-12.3073
-13.5185
-14.905
-16.5115
-18.3972
-20.6412
-23.3269
-26.4833
-30.344
-36.211
-5.45655
-5.92087
-6.43837
-6.9971
-7.60297
-8.26392
-8.98742
-9.78243
-10.6606
-11.6371
-12.7317
-13.9704
-15.3878
-17.0292
-18.954
-21.2416
-23.9746
-27.1798
-31.0864
-36.9896
-5.72292
-6.20041
-6.72804
-7.29829
-7.91735
-8.5929
-9.33252
-10.1454
-11.0435
-12.0422
-13.1616
-14.4282
-15.8769
-17.5535
-19.518
-21.8495
-24.6299
-27.8837
-31.8361
-37.7816
-1.33123
-1.12494
-0.971543
-0.835176
-0.715454
-0.609834
-0.517203
-0.436767
-0.368026
-0.310622
-0.264287
-0.228812
-0.204025
-0.189784
-0.18595
-0.192318
-0.20869
-0.235197
-0.271938
-0.318795
-1.66121
-1.47818
-1.32081
-1.17923
-1.05469
-0.944611
-0.848026
-0.76413
-0.692409
-0.632485
-0.584078
-0.546965
-0.520963
-0.505917
-0.501683
-0.508091
-0.524995
-0.552393
-0.590299
-0.638613
-1.99398
-1.81883
-1.66148
-1.51876
-1.3921
-1.27986
-1.18132
-1.09582
-1.02287
-0.962114
-0.913281
-0.876145
-0.850521
-0.83625
-0.833184
-0.841172
-0.860095
-0.889909
-0.930539
-0.982002
-2.37801
-2.20121
-2.04084
-1.89517
-1.76494
-1.6492
-1.54747
-1.45918
-1.38394
-1.32139
-1.27127
-1.23336
-1.20746
-1.1934
-1.19104
-1.20022
-1.22083
-1.25278
-1.29599
-1.35043
-2.7971
-2.61786
-2.45354
-2.30395
-2.16952
-2.04974
-1.94427
-1.8527
-1.77468
-1.7099
-1.65809
-1.61905
-1.59257
-1.57848
-1.57662
-1.58685
-1.60903
-1.64307
-1.68885
-1.74635
-3.24883
-3.06639
-2.89791
-2.74401
-2.60514
-2.48111
-2.37172
-2.27667
-2.19568
-2.12848
-2.07483
-2.03453
-2.00737
-1.99319
-1.99181
-2.0031
-2.02692
-2.06314
-2.11163
-2.17231
-3.73938
-3.55224
-3.37887
-3.22006
-3.07631
-2.94764
-2.83397
-2.73511
-2.65085
-2.58095
-2.52521
-2.48342
-2.45541
-2.441
-2.44003
-2.45234
-2.47779
-2.51624
-2.56755
-2.63166
-4.27555
-4.08222
-3.90289
-3.7383
-3.58897
-3.45505
-3.33656
-3.23338
-3.14537
-3.07235
-3.01413
-2.97053
-2.94137
-2.92649
-2.92572
-2.93892
-2.96592
-3.00657
-3.06072
-3.12834
-4.86505
-4.66409
-4.47755
-4.30612
-4.1503
-4.01033
-3.88627
-3.77811
-3.68573
-3.60902
-3.5478
-3.50191
-3.4712
-3.4555
-3.45464
-3.46848
-3.49685
-3.53959
-3.59654
-3.66769
-5.51803
-5.30788
-5.11272
-4.93316
-4.76972
-4.62265
-4.49209
-4.37806
-4.28052
-4.19936
-4.13445
-4.08566
-4.05283
-4.0358
-4.03442
-4.04853
-4.07797
-4.12257
-4.18215
-4.25674
-6.24823
-6.02709
-5.82163
-5.63241
-5.45992
-5.30444
-5.16617
-5.04515
-4.94138
-4.85479
-4.78529
-4.73274
-4.69702
-4.67797
-4.67544
-4.68927
-4.7193
-4.76534
-4.82723
-4.90501
-7.07438
-6.84013
-6.62237
-6.42159
-6.23828
-6.07275
-5.9252
-5.79573
-5.68436
-5.59106
-5.51575
-5.45833
-5.41867
-5.39663
-5.39206
-5.4048
-5.4347
-5.48154
-5.54516
-5.62565
-8.02222
-7.77232
-7.53982
-7.32515
-7.12881
-6.95113
-6.79233
-6.65253
-6.53179
-6.4301
-6.34739
-6.28359
-6.23858
-6.21222
-6.20438
-6.2149
-6.2436
-6.29027
-6.35474
-6.43714
-9.12727
-8.85865
-8.60842
-8.37699
-8.16488
-7.97242
-7.79986
-7.64734
-7.51494
-7.40267
-7.31049
-7.23832
-7.18607
-7.15362
-7.14081
-7.14752
-7.17354
-7.21864
-7.28264
-7.36573
-10.4398
-10.1487
-9.87716
-9.62545
-9.39417
-9.18367
-8.99421
-8.82596
-8.679
-8.55336
-8.44901
-8.36591
-8.30396
-8.26303
-8.243
-8.24373
-8.26501
-8.30657
-8.36821
-8.45019
-12.0333
-11.7155
-11.4182
-11.1421
-10.8876
-10.6551
-10.4449
-10.2573
-10.0922
-9.94972
-9.82987
-9.73257
-9.65775
-9.6053
-9.57509
-9.56697
-9.58075
-9.61613
-9.67287
-9.75125
-13.9971
-13.6477
-13.3201
-13.0149
-12.7328
-12.4741
-12.2391
-12.028
-11.8409
-11.6777
-11.5386
-11.4235
-11.3323
-11.2648
-11.2211
-11.2009
-11.2041
-11.2303
-11.2794
-11.3512
-16.3925
-16.0076
-15.6455
-15.3074
-14.9938
-14.7053
-14.4419
-14.204
-13.9914
-13.8043
-13.6427
-13.5065
-13.3958
-13.3104
-13.2502
-13.2151
-13.205
-13.2197
-13.2589
-13.3216
-19.5301
-19.1054
-18.7045
-18.33
-17.982
-17.6608
-17.3662
-17.0983
-16.857
-16.6424
-16.4544
-16.2931
-16.1585
-16.0503
-15.9687
-15.9133
-15.8842
-15.8816
-15.9054
-15.9535
-24.8675
-24.3979
-23.9626
-23.5587
-23.1839
-22.8373
-22.5185
-22.2273
-21.9638
-21.7278
-21.5196
-21.339
-21.1862
-21.0613
-20.9643
-20.8953
-20.8551
-20.8459
-20.8691
-20.9145
-0.375623
-0.442108
-0.51821
-0.603849
-0.69894
-0.803375
-0.917023
-1.03972
-1.17125
-1.31135
-1.45963
-1.61558
-1.7784
-1.94686
-2.11932
-2.29349
-2.46491
-2.62377
-2.7547
-2.88403
-0.697318
-0.766074
-0.84481
-0.933413
-1.03178
-1.13978
-1.25726
-1.38404
-1.51987
-1.66445
-1.81738
-1.97809
-2.1458
-2.31938
-2.49718
-2.67758
-2.85879
-3.03308
-3.18525
-3.35701
-1.04418
-1.11678
-1.19972
-1.29289
-1.39614
-1.50935
-1.63234
-1.76489
-1.90675
-2.05759
-2.21698
-2.38436
-2.55899
-2.73983
-2.92552
-3.11489
-3.30695
-3.49734
-3.68031
-3.88578
-1.41603
-1.49247
-1.57968
-1.6775
-1.7858
-1.90441
-2.03314
-2.17177
-2.32
-2.4775
-2.64382
-2.8184
-3.00056
-3.18937
-3.38376
-3.58287
-3.78589
-3.99051
-4.19721
-4.42636
-1.81547
-1.89591
-1.98758
-2.09031
-2.20394
-2.3283
-2.46316
-2.6083
-2.76341
-2.92812
-3.10202
-3.28455
-3.47507
-3.67281
-3.87694
-4.08686
-4.30194
-4.52115
-4.74713
-4.99302
-2.24528
-2.33002
-2.42648
-2.5345
-2.65389
-2.78448
-2.92603
-3.07828
-3.24093
-3.41362
-3.59592
-3.78733
-3.98726
-4.19507
-4.41013
-4.63203
-4.86038
-5.09495
-5.3385
-5.59887
-2.70863
-2.7979
-2.89948
-3.01316
-3.13876
-3.27608
-3.42487
-3.58488
-3.7558
-3.93726
-4.12886
-4.33014
-4.54057
-4.75962
-4.98681
-5.22185
-5.46453
-5.71505
-5.97564
-6.25073
-3.2094
-3.30351
-3.4105
-3.53019
-3.66242
-3.80695
-3.96356
-4.13197
-4.31187
-4.50293
-4.70475
-4.9169
-5.13893
-5.37038
-5.61089
-5.86022
-6.11829
-6.38542
-6.66319
-6.95406
-3.75303
-3.85205
-3.96467
-4.09067
-4.22988
-4.38209
-4.54704
-4.72448
-4.91409
-5.11554
-5.32848
-5.5525
-5.78721
-6.03221
-6.2872
-6.55199
-6.82652
-7.11108
-7.40668
-7.71469
-4.34633
-4.45031
-4.56874
-4.70124
-4.84773
-5.00799
-5.18176
-5.36877
-5.56874
-5.78135
-6.00625
-6.24308
-6.49148
-6.75112
-7.02171
-7.30308
-7.59516
-7.89813
-8.21255
-8.53921
-4.9987
-5.10757
-5.23163
-5.37082
-5.52475
-5.6933
-5.87623
-6.07327
-6.28414
-6.50853
-6.74612
-6.9966
-7.25961
-7.53486
-7.82208
-8.12109
-8.4318
-8.75422
-9.08861
-9.43544
-5.72305
-5.83651
-5.96609
-6.11163
-6.27302
-6.44991
-6.64214
-6.84946
-7.07158
-7.30819
-7.55904
-7.82381
-8.10218
-8.39386
-8.69859
-9.01618
-9.34648
-9.68937
-10.0449
-10.4133
-6.53755
-6.65496
-6.78954
-6.94104
-7.10935
-7.29455
-7.49603
-7.71348
-7.94686
-8.19588
-8.46025
-8.73969
-9.03388
-9.34254
-9.66542
-10.0023
-10.353
-10.7172
-11.0949
-11.4862
-7.46802
-7.58831
-7.72693
-7.88361
-8.05812
-8.25049
-8.46149
-8.68824
-8.93251
-9.19363
-9.47136
-9.76541
-10.0755
-10.4014
-10.7427
-11.0993
-11.4708
-11.8569
-12.2574
-12.6725
-8.55266
-8.67414
-8.81518
-8.97558
-9.15516
-9.35345
-9.56992
-9.80699
-10.0619
-10.3342
-10.6244
-10.9326
-11.2583
-11.6011
-11.9607
-12.3368
-12.7291
-13.1373
-13.5608
-14.0001
-9.85138
-9.9715
-10.1125
-10.2744
-10.4568
-10.6596
-10.8822
-11.1246
-11.3871
-11.6702
-11.9723
-12.2938
-12.6342
-12.9928
-13.3694
-13.764
-14.1763
-14.6057
-15.0518
-15.5147
-11.4457
-11.5613
-11.6994
-11.86
-12.0427
-12.2472
-12.4732
-12.7207
-12.9894
-13.2795
-13.5918
-13.925
-14.2772
-14.648
-15.0383
-15.4489
-15.8791
-16.3283
-16.7953
-17.28
-13.4063
-13.5143
-13.6465
-13.8025
-13.981
-14.1825
-14.4071
-14.6547
-14.925
-15.2174
-15.5314
-15.8672
-16.2264
-16.6096
-17.0151
-17.4415
-17.8885
-18.3556
-18.8419
-19.3464
-16.0238
-16.1158
-16.2318
-16.3732
-16.5415
-16.7357
-16.9551
-17.1992
-17.4678
-17.7605
-18.0767
-18.416
-18.7787
-19.1654
-19.5759
-20.0095
-20.4662
-20.9466
-21.4506
-21.9732
-20.9564
-21.0288
-21.1321
-21.264
-21.4232
-21.6092
-21.8214
-22.0594
-22.3228
-22.6114
-22.925
-23.2634
-23.6269
-24.0156
-24.4298
-24.8694
-25.3354
-25.8319
-26.3612
-26.9057
-27.4211
-22.5065
-19.8687
-17.7828
-15.9944
-14.455
-13.1022
-11.8912
-10.7947
-9.79463
-8.87802
-8.03507
-7.25816
-6.54105
-5.87852
-5.26603
-4.69831
-4.16975
-3.68883
-3.28447
-27.9643
-23.0559
-20.4066
-18.3004
-16.4883
-14.9233
-13.5445
-12.308
-11.1873
-10.1647
-9.22731
-8.36572
-7.57237
-6.84116
-6.16707
-5.54562
-4.97209
-4.44407
-3.97467
-3.57224
-28.5361
-23.6241
-20.9617
-18.8342
-16.997
-15.4052
-13.9993
-12.7365
-11.5907
-10.5448
-9.58617
-8.70542
-7.89513
-7.14921
-6.46259
-5.83074
-5.24902
-4.71512
-4.23862
-3.81672
-29.1322
-24.2118
-21.5339
-19.3836
-17.5197
-15.8998
-14.4659
-13.1757
-12.0041
-10.9341
-9.95349
-9.05287
-8.22478
-7.46305
-6.76237
-6.11797
-5.52493
-4.9803
-4.49083
-4.05023
-29.7495
-24.8183
-22.1226
-19.9482
-18.0561
-16.4067
-14.9434
-13.625
-12.4266
-11.3318
-10.3284
-9.40718
-8.56051
-7.78205
-7.06627
-6.40806
-5.80222
-5.24524
-4.742
-4.28529
-30.3865
-25.4442
-22.726
-20.5269
-18.6053
-16.9251
-15.4313
-14.0835
-12.8575
-11.7371
-10.7103
-9.7677
-8.90175
-8.10585
-7.37423
-6.70149
-6.08223
-5.51256
-4.99607
-4.52531
-31.0421
-26.0879
-23.3437
-21.1188
-19.1664
-17.4541
-15.9287
-14.5506
-13.2961
-12.1493
-11.0984
-10.1339
-9.24818
-8.43438
-7.68651
-6.99896
-6.36616
-5.78398
-5.25495
-4.77154
-31.7149
-26.7475
-23.9754
-21.723
-19.7386
-17.9929
-16.4349
-15.0255
-13.7417
-12.5679
-11.4923
-10.5054
-9.5995
-8.76748
-8.00317
-7.30073
-6.65446
-6.06007
-5.51907
-5.02391
-32.4036
-27.4215
-24.6204
-22.3387
-20.3209
-18.5408
-16.949
-15.5074
-14.1936
-12.9921
-11.8914
-10.8818
-9.95536
-9.10495
-8.3241
-7.60678
-6.94718
-6.34081
-5.78824
-5.28194
-33.107
-28.1087
-25.2776
-22.965
-20.9125
-19.0967
-17.4702
-15.9957
-14.6511
-13.4215
-12.2951
-11.2625
-10.3154
-9.44644
-8.64902
-7.91687
-7.24405
-6.62585
-6.06197
-5.54488
-33.8238
-28.808
-25.9459
-23.601
-21.5124
-19.6598
-17.9976
-16.4893
-15.1134
-13.8551
-12.7029
-11.6469
-10.679
-9.7915
-8.9775
-8.23057
-7.54459
-6.91467
-6.33961
-5.81197
-34.553
-29.5183
-26.6243
-24.2455
-22.1197
-20.2292
-18.5304
-16.9876
-15.5799
-14.2925
-13.114
-12.0346
-11.0457
-10.1396
-9.30902
-8.54733
-7.84824
-7.20662
-6.62046
-6.0824
-35.2934
-30.2385
-27.3115
-24.8974
-22.7331
-20.8039
-19.0676
-17.4897
-16.0495
-14.7328
-13.5278
-12.4248
-11.4149
-10.4901
-9.64298
-8.86655
-8.15438
-7.50105
-6.90379
-6.35541
-36.0439
-30.9675
-28.0065
-25.5558
-23.3518
-21.3828
-19.6083
-17.9947
-16.5217
-15.1752
-13.9436
-12.8168
-11.7859
-10.8424
-9.97874
-9.1876
-8.46233
-7.79727
-7.18891
-6.63027
-36.8034
-31.7039
-28.7078
-26.2192
-23.9745
-21.9648
-20.1515
-18.5016
-16.9954
-15.6189
-14.3605
-13.21
-12.158
-11.1959
-10.3157
-9.50981
-8.77145
-8.09463
-7.47513
-6.90631
-37.5707
-32.4464
-29.4143
-26.8867
-24.6002
-22.549
-20.6961
-19.0094
-17.4698
-16.0632
-14.7779
-13.6036
-12.5305
-11.5498
-10.653
-9.83253
-9.08109
-8.39247
-7.7618
-7.18287
-38.3454
-33.194
-30.1247
-27.5567
-25.2275
-23.134
-21.241
-19.5173
-17.9439
-16.507
-15.1949
-13.9968
-12.9027
-11.9034
-10.9902
-10.1551
-9.3906
-8.69016
-8.04831
-7.45935
-39.1289
-33.9462
-30.8373
-28.2279
-25.8551
-23.7186
-21.7851
-20.024
-18.4167
-16.9496
-15.6106
-14.3888
-13.2738
-12.2561
-11.3266
-10.4769
-9.69933
-8.98708
-8.33404
-7.7352
-39.9212
-34.7016
-31.5504
-28.8984
-26.4815
-24.3017
-22.3273
-20.5287
-18.8875
-17.3901
-16.0243
-14.7789
-13.6431
-12.6071
-11.6613
-10.7971
-10.0067
-9.28263
-8.61844
-8.00989
-40.7098
-35.4554
-32.2622
-29.5673
-27.1061
-24.8827
-22.8672
-21.0309
-19.3557
-17.8281
-16.4357
-15.1667
-14.0103
-12.956
-11.9941
-11.1156
-10.3122
-9.57636
-8.90105
-8.28299
-6.76347
-4.66139
-3.30431
-2.26149
-1.52919
-0.99144
-0.605284
-0.331176
-0.140872
-0.0126841
0.0699546
0.119642
0.145919
0.155923
0.154944
0.146842
0.134421
0.119673
0.104002
0.0883738
0.0734299
0.0595803
0.0470601
0.0359888
0.0263871
0.0182352
0.0114384
0.00593431
0.00155017
-0.00173717
-0.00419957
-0.00571416
-0.00675273
-0.0068679
-0.00695304
-0.00592947
-0.00550484
-0.00347457
-0.00298848
0.000150577
-7.01867
-4.84343
-3.45033
-2.37647
-1.62011
-1.06498
-0.665274
-0.380736
-0.182199
-0.0473976
0.0406549
0.0948373
0.124889
0.138091
0.139838
0.134067
0.123642
0.110605
0.0964
0.082024
0.0681494
0.0552089
0.0434596
0.0330402
0.0239853
0.0162919
0.00987553
0.00468546
0.000560239
-0.00251705
-0.00480863
-0.00618537
-0.00711598
-0.00714351
-0.00715864
-0.00608184
-0.0056128
-0.00355165
-0.00302554
0.000119388
-7.27227
-5.0271
-3.59785
-2.49303
-1.71213
-1.13921
-0.725619
-0.430363
-0.223388
-0.0818302
0.0117243
0.0704465
0.104286
0.120677
0.125126
0.121652
0.113187
0.101821
0.0890434
0.0758845
0.063046
0.0509856
0.0399815
0.0301908
0.0216641
0.0144123
0.00836303
0.00347665
-0.000399619
-0.00327328
-0.00540028
-0.00664426
-0.00746845
-0.00741196
-0.00735936
-0.00623151
-0.00571638
-0.00362866
-0.00306102
8.70933e-05
-7.52436
-5.21215
-3.7469
-2.61126
-1.80537
-1.21424
-0.786414
-0.48014
-0.264506
-0.11604
-0.0168866
0.046428
0.0840748
0.10365
0.110781
0.109576
0.103036
0.0933067
0.0819207
0.0699454
0.058112
0.0469039
0.0366203
0.0274369
0.0194201
0.0125944
0.00689931
0.00230596
-0.00132995
-0.00400695
-0.0059749
-0.0070905
-0.00781167
-0.0076739
-0.00755522
-0.00637824
-0.00581758
-0.00370472
-0.00309531
5.38448e-05
-7.77498
-5.39845
-3.89748
-2.73131
-1.89995
-1.29018
-0.84776
-0.530152
-0.305625
-0.150087
-0.0452291
0.022739
0.0642192
0.0869806
0.0967791
0.0978184
0.0931726
0.0850474
0.0750205
0.0641973
0.05334
0.0429577
0.0333713
0.0247748
0.0172503
0.0108358
0.00548255
0.00117201
-0.00223184
-0.00471892
-0.00653314
-0.00752461
-0.00814599
-0.0079296
-0.00774645
-0.00652213
-0.00591649
-0.00377991
-0.00312847
1.96257e-05
-8.02414
-5.58597
-4.04957
-2.85332
-1.99604
-1.36716
-0.909771
-0.580496
-0.346825
-0.184038
-0.0733576
-0.000665535
0.044682
0.0706375
0.0830944
0.0863573
0.0835799
0.077029
0.068331
0.0586308
0.0487223
0.0391409
0.0302295
0.0222006
0.0151517
0.00913437
0.00411099
7.33997e-05
-0.00310636
-0.00541005
-0.00707561
-0.00794711
-0.00847174
-0.00817931
-0.00793325
-0.0066633
-0.00601322
-0.0038543
-0.00316054
-1.55727e-05
-8.27182
-5.7748
-4.20319
-2.97747
-2.09382
-1.44534
-0.972573
-0.631278
-0.388192
-0.217963
-0.10133
-0.0238329
0.0254244
0.0545888
0.0697006
0.0751717
0.07424
0.0692371
0.0618408
0.0532366
0.0442514
0.0354476
0.0271903
0.0197106
0.0131214
0.00748765
0.00278282
-0.000991248
-0.00395459
-0.00608115
-0.00760294
-0.00835848
-0.00878925
-0.00842331
-0.00811583
-0.0068019
-0.00610788
-0.00392793
-0.00319158
-5.17485e-05
-8.51804
-5.96517
-4.35837
-3.10392
-2.19348
-1.52487
-1.0363
-0.68261
-0.429817
-0.251937
-0.129207
-0.0468125
0.00640617
0.0388019
0.0565709
0.0642397
0.0651352
0.0616575
0.0555381
0.0480053
0.0399198
0.0318719
0.024249
0.017301
0.0111565
0.00589339
0.00149627
-0.0020233
-0.00477758
-0.00673303
-0.00811574
-0.00875917
-0.00909889
-0.00866185
-0.00829437
-0.00693806
-0.00620055
-0.00400087
-0.00322165
-8.88945e-05
-8.76281
-6.15735
-4.51505
-3.23274
-2.29519
-1.60588
-1.10108
-0.734599
-0.471791
-0.286034
-0.15705
-0.0696549
-0.0124135
0.0232433
0.0436785
0.0535393
0.0562476
0.0542757
0.0494115
0.0429276
0.0357201
0.0284077
0.0214008
0.0149682
0.00925401
0.00434934
0.000249599
-0.00302411
-0.00557635
-0.00736646
-0.0086146
-0.00914963
-0.00940098
-0.00889516
-0.00846906
-0.00707189
-0.00629135
-0.00407316
-0.00325079
-0.000126995
-9.00603
-6.35139
-4.67288
-3.36379
-2.399
-1.68846
-1.16699
-0.787338
-0.514196
-0.320328
-0.18492
-0.0924097
-0.0310752
0.00788029
0.0309963
0.0430489
0.0475597
0.0470776
0.0434494
0.0379944
0.031645
0.0250493
0.0186412
0.0127085
0.0074112
0.00285331
-0.000958895
-0.00399498
-0.00635191
-0.00798222
-0.00910012
-0.0095303
-0.00969585
-0.0091235
-0.00864008
-0.00720353
-0.00638036
-0.00414485
-0.00327905
-0.000166028
-9.24716
-6.5472
-4.83163
-3.49702
-2.50505
-1.77275
-1.23417
-0.840944
-0.557125
-0.354891
-0.21288
-0.115127
-0.0496195
-0.00732019
0.0184979
0.032747
0.0390542
0.0400492
0.0376407
0.0331966
0.0276874
0.021791
0.0159656
0.0105185
0.00562526
0.00140314
-0.00213088
-0.00493719
-0.00710525
-0.00858105
-0.00957285
-0.0099016
-0.00998382
-0.00934708
-0.00880759
-0.00733309
-0.00646767
-0.00421597
-0.00330648
-0.000205964
-9.48558
-6.74583
-4.99243
-3.6334
-2.61416
-1.85935
-1.30302
-0.895691
-0.600759
-0.389849
-0.241017
-0.137874
-0.0680965
-0.0223966
0.00615324
0.02261
0.0307125
0.0331757
0.0319737
0.0285251
0.0238398
0.0186271
0.0133695
0.00839445
0.00389342
-3.32047e-06
-0.00326802
-0.00585203
-0.00783733
-0.00916369
-0.0100333
-0.0102639
-0.0102652
-0.00956614
-0.00897177
-0.00746068
-0.00655337
-0.00428657
-0.00333313
-0.000246767
-9.72219
-6.95101
-5.15819
-3.77484
-2.7277
-1.94926
-1.3742
-0.951992
-0.645399
-0.4254
-0.269468
-0.160746
-0.086576
-0.0374002
-0.00607609
0.0126089
0.0225123
0.0264401
0.0264351
0.0239694
0.0200942
0.0155511
0.010848
0.00633264
0.00221272
-0.00136836
-0.00437206
-0.00674082
-0.00854918
-0.0097309
-0.0104822
-0.0106178
-0.0105403
-0.00978089
-0.00913277
-0.0075864
-0.00663755
-0.00435667
-0.00335905
-0.000288395
-9.95926
-7.16455
-5.32851
-3.92048
-2.84522
-2.04216
-1.4475
-1.00974
-0.69109
-0.461621
-0.298303
-0.183802
-0.105104
-0.0523684
-0.01822
0.00271972
0.0144347
0.0198271
0.0210129
0.0195202
0.0164432
0.0125573
0.00839659
0.00432952
0.000580424
-0.00269409
-0.00544461
-0.0076048
-0.00924171
-0.0102834
-0.0109199
-0.0109634
-0.0108094
-0.00999155
-0.00929076
-0.00771036
-0.00672028
-0.00442631
-0.00338428
-0.0003308
-10.1914
-7.374
-5.49167
-4.06144
-2.96103
-2.1339
-1.52025
-1.06743
-0.736859
-0.497996
-0.327229
-0.206865
-0.123576
-0.0672371
-0.03024
-0.0070343
0.0064934
0.0133451
0.0157119
0.0151799
0.0128881
0.0096462
0.0060153
0.00238496
-0.0010037
-0.00398077
-0.00648595
-0.00844421
-0.00991516
-0.0108213
-0.0113466
-0.0113011
-0.0110726
-0.0101982
-0.00944578
-0.00783258
-0.00680159
-0.00449548
-0.00340886
-0.000373921
-10.3983
-7.56037
-5.63562
-4.18953
-3.07005
-2.22106
-1.59043
-1.12392
-0.781515
-0.5338
-0.355809
-0.229665
-0.141812
-0.0818866
-0.0420548
-0.0165975
-0.00127295
0.00702066
0.0105506
0.0109617
0.00943791
0.00682418
0.00370857
0.00050198
-0.00253761
-0.00522702
-0.00749516
-0.00925845
-0.0105691
-0.0113445
-0.0117622
-0.0116306
-0.0113298
-0.0104007
-0.00959779
-0.00795303
-0.00688146
-0.00456415
-0.00343277
-0.00041768
-10.5869
-7.76185
-5.79417
-4.3296
-3.19003
-2.31833
-1.66779
-1.18537
-0.828838
-0.571082
-0.38542
-0.253147
-0.160464
-0.0967685
-0.05398
-0.0261932
-0.00902464
0.000737646
0.00544386
0.00680236
0.00604561
0.00405582
0.00144972
-0.00133953
-0.00403644
-0.00644424
-0.00848076
-0.0100539
-0.0112083
-0.0118563
-0.0121691
-0.0119538
-0.0115823
-0.0106001
-0.00974744
-0.00807209
-0.00696021
-0.00463242
-0.00345617
-0.000462026
-10.8586
-8.09759
-6.05554
-4.54938
-3.36745
-2.45568
-1.77231
-1.26497
-0.89043
-0.616651
-0.420574
-0.28043
-0.181739
-0.113456
-0.0671501
-0.0366486
-0.0173704
-0.00595581
5.43237e-05
0.00244905
0.00252109
0.00119811
-0.000868872
-0.00322044
-0.00556085
-0.00767771
-0.00947648
-0.0108554
-0.0118511
-0.0123702
-0.0125773
-0.0122777
-0.0118354
-0.0107999
-0.00989747
-0.00819152
-0.00703918
-0.00470096
-0.00347957
-0.000507105
-11.2216
-8.51566
-6.39498
-4.81532
-3.57793
-2.61711
-1.89362
-1.35603
-0.959043
-0.668884
-0.459776
-0.310385
-0.204835
-0.131387
-0.0811746
-0.0476905
-0.0261171
-0.0129212
-0.00551749
-0.00202438
-0.00108067
-0.00170754
-0.00321571
-0.00511671
-0.00709248
-0.00891354
-0.0104719
-0.0116554
-0.012492
-0.0128823
-0.0129842
-0.0126009
-0.0120881
-0.0109998
-0.0100477
-0.00831146
-0.00711838
-0.00477003
-0.00350292
-0.000553073
-11.1408
-8.51475
-6.40811
-4.83757
-3.61464
-2.6562
-1.92883
-1.38655
-0.984891
-0.690293
-0.477094
-0.324527
-0.21614
-0.140475
-0.0885096
-0.053629
-0.0309421
-0.0168558
-0.00873793
-0.00466933
-0.00325959
-0.00350702
-0.00470448
-0.00634985
-0.00811396
-0.00975941
-0.011171
-0.0122324
-0.0129659
-0.0132713
-0.0133
-0.0128587
-0.0122926
-0.0111667
-0.0101732
-0.00841639
-0.00718552
-0.00483378
-0.00352156
-0.000598241
-10.3912
-8.00208
-5.99081
-4.54466
-3.42708
-2.5346
-1.84747
-1.33206
-0.948252
-0.665157
-0.459376
-0.311626
-0.206627
-0.133304
-0.0830411
-0.0494373
-0.0277358
-0.014425
-0.00692462
-0.00334992
-0.00233423
-0.0028935
-0.0043339
-0.00616513
-0.00806659
-0.00981071
-0.0112875
-0.0123904
-0.0131426
-0.0134561
-0.0134761
-0.0130277
-0.0124376
-0.0113027
-0.0102758
-0.00851767
-0.00724409
-0.004906
-0.00353476
-0.000655722
-9.48877
-7.4281
-5.58614
-4.27404
-3.26863
-2.44967
-1.80583
-1.31748
-0.950518
-0.676785
-0.475381
-0.329065
-0.22388
-0.149403
-0.0975436
-0.0621938
-0.0387684
-0.0238473
-0.0148932
-0.0100352
-0.0079044
-0.00750583
-0.00813051
-0.00927264
-0.0105948
-0.011856
-0.0129307
-0.0137032
-0.014182
-0.014276
-0.0141129
-0.0135248
-0.0128122
-0.0115952
-0.0104824
-0.00868578
-0.00734213
-0.00500413
-0.00355512
-0.000726888
-8.59395
-6.86998
-5.20989
-4.00923
-3.10153
-2.355
-1.75579
-1.29539
-0.946646
-0.683964
-0.488505
-0.344922
-0.240536
-0.165628
-0.112651
-0.0758397
-0.0508275
-0.0343281
-0.0238814
-0.017658
-0.0143064
-0.0128355
-0.0125308
-0.0128771
-0.0135241
-0.0142185
-0.0148201
-0.0152033
-0.0153609
-0.0151973
-0.0148218
-0.0140713
-0.0132197
-0.0119081
-0.0107012
-0.0088599
-0.00744306
-0.00510306
-0.00357528
-0.000800254
-7.69501
-6.28042
-4.82483
-3.74173
-2.92683
-2.25282
-1.70063
-1.26932
-0.939396
-0.688365
-0.499347
-0.35886
-0.255552
-0.180463
-0.126586
-0.0885053
-0.0620752
-0.0441435
-0.0323293
-0.0248455
-0.0203611
-0.0178903
-0.0167154
-0.0163141
-0.0163245
-0.0164832
-0.0166361
-0.0166493
-0.0165003
-0.0160907
-0.0155109
-0.0146046
-0.0136178
-0.0122156
-0.0109156
-0.00903275
-0.00754166
-0.00520307
-0.00359391
-0.000877045
-6.8172
-5.67647
-4.42974
-3.46726
-2.74012
-2.13783
-1.63578
-1.23627
-0.92697
-0.689086
-0.507697
-0.371134
-0.269453
-0.194553
-0.140018
-0.100827
-0.0730825
-0.0537869
-0.0406509
-0.0319384
-0.0263431
-0.0228884
-0.0208554
-0.0197157
-0.0190968
-0.0187256
-0.0184345
-0.0180817
-0.0176293
-0.0169764
-0.016194
-0.015134
-0.0140126
-0.0125216
-0.011128
-0.00920556
-0.00763863
-0.00530437
-0.00361111
-0.00095689
-5.98071
-5.07222
-4.02653
-3.18853
-2.54709
-2.0143
-1.56343
-1.19747
-0.909966
-0.686262
-0.513469
-0.381598
-0.282107
-0.207812
-0.152918
-0.112821
-0.0839011
-0.0633327
-0.0489328
-0.0390263
-0.0323394
-0.02791
-0.0250214
-0.023142
-0.0218907
-0.0209857
-0.0202467
-0.0195242
-0.0187652
-0.0178667
-0.0168798
-0.0156648
-0.0144075
-0.0128275
-0.0113393
-0.0093782
-0.00773409
-0.00540627
-0.00362702
-0.00103913
-5.20216
-4.48607
-3.62511
-2.90989
-2.35128
-1.88451
-1.4844
-1.15321
-0.888586
-0.67994
-0.516588
-0.39012
-0.293358
-0.220077
-0.165125
-0.124342
-0.0944018
-0.0726701
-0.0570819
-0.0460329
-0.0382887
-0.0329063
-0.0291757
-0.0265642
-0.0246842
-0.0232468
-0.0220598
-0.0209671
-0.0199008
-0.0187559
-0.0175637
-0.0161935
-0.0147999
-0.0131312
-0.011548
-0.00954923
-0.0078274
-0.00550775
-0.0036417
-0.00112308
-4.49261
-3.9328
-3.23513
-2.63623
-2.15699
-1.7523
-1.40102
-1.10469
-0.863472
-0.670414
-0.517109
-0.396641
-0.3031
-0.231221
-0.176512
-0.135269
-0.104475
-0.0817012
-0.0650119
-0.0528832
-0.0441263
-0.0378231
-0.0332729
-0.0299451
-0.0274474
-0.025485
-0.0238554
-0.0223959
-0.0210248
-0.0196353
-0.0182394
-0.0167151
-0.0151862
-0.0134299
-0.0117523
-0.00971696
-0.00791786
-0.00560773
-0.00365525
-0.00120795
-3.85927
-3.42428
-2.86664
-2.37356
-1.96842
-1.6211
-1.31559
-1.05314
-0.835329
-0.658079
-0.515189
-0.401171
-0.311272
-0.241151
-0.186976
-0.145501
-0.114028
-0.0903426
-0.0726502
-0.0595143
-0.0497989
-0.0426149
-0.0372753
-0.0332536
-0.0301549
-0.02768
-0.0256171
-0.0237978
-0.0221273
-0.0204972
-0.0189009
-0.0172249
-0.0155631
-0.0137206
-0.0119505
-0.00987972
-0.00800487
-0.00570504
-0.00366783
-0.0012928
-3.30575
-2.96878
-2.52791
-2.12758
-1.78953
-1.49423
-1.23063
-1.00015
-0.805083
-0.643478
-0.511103
-0.403803
-0.317867
-0.249809
-0.196434
-0.154947
-0.122972
-0.0985147
-0.079926
-0.065865
-0.0552539
-0.0472373
-0.0411454
-0.0364586
-0.0327814
-0.0298113
-0.0273285
-0.0251598
-0.0231982
-0.0213337
-0.0195422
-0.0177183
-0.0159271
-0.0140008
-0.0121408
-0.0100358
-0.00808789
-0.0057984
-0.00367969
-0.00137655
-2.8322
-2.57088
-2.22496
-1.9032
-1.62388
-1.37463
-1.1485
-0.947334
-0.773746
-0.627242
-0.505214
-0.404711
-0.322939
-0.257179
-0.204831
-0.163537
-0.131233
-0.106143
-0.0867714
-0.0718749
-0.0604387
-0.0516454
-0.0448453
-0.0395284
-0.0353005
-0.0318573
-0.0289724
-0.0264682
-0.0242267
-0.0221364
-0.0201571
-0.0181904
-0.0162748
-0.0142674
-0.0123217
-0.0101834
-0.00816639
-0.00588646
-0.00369108
-0.001458
-2.43563
-2.23172
-1.96117
-1.70388
-1.47425
-1.26469
-1.07129
-0.896275
-0.742388
-0.61007
-0.49796
-0.404135
-0.326595
-0.263285
-0.212143
-0.171219
-0.138746
-0.113163
-0.0931237
-0.0774864
-0.0653024
-0.0557947
-0.0483371
-0.0424309
-0.0376856
-0.0337962
-0.0305312
-0.0277088
-0.0252018
-0.0228966
-0.0207389
-0.0186359
-0.0166025
-0.0145177
-0.0124913
-0.010321
-0.00823988
-0.00596789
-0.00370225
-0.00153588
-2.11042
-1.94936
-1.73731
-1.53139
-1.34248
-1.16616
-1.00064
-0.848359
-0.712035
-0.592675
-0.489821
-0.402373
-0.328995
-0.268195
-0.21838
-0.177967
-0.145466
-0.11952
-0.0989273
-0.0826469
-0.0697968
-0.0596428
-0.0515839
-0.045135
-0.0399106
-0.0356064
-0.0319872
-0.0288675
-0.0261123
-0.0236057
-0.0212811
-0.01905
-0.0169067
-0.0147488
-0.012648
-0.0104468
-0.00830787
-0.00604142
-0.00371336
-0.0016089
-1.84905
-1.71954
-1.55191
-1.38585
-1.22934
-1.0801
-0.93773
-0.804702
-0.683605
-0.575748
-0.481288
-0.399753
-0.330339
-0.272013
-0.223579
-0.183778
-0.151365
-0.125173
-0.104136
-0.0873094
-0.0738778
-0.0631498
-0.0545508
-0.0476106
-0.0419502
-0.0372669
-0.0333232
-0.0299306
-0.0269474
-0.0242552
-0.0217772
-0.0194278
-0.017184
-0.0149581
-0.0127902
-0.0105596
-0.00836984
-0.00610597
-0.0037245
-0.00167578
-1.6431
-1.53652
-1.40199
-1.26609
-1.13467
-1.0069
-0.883263
-0.766119
-0.657852
-0.559908
-0.472838
-0.396617
-0.330851
-0.274872
-0.227808
-0.18867
-0.156433
-0.130093
-0.108712
-0.0914335
-0.0775057
-0.0662789
-0.0572051
-0.0498294
-0.0437803
-0.0387578
-0.034523
-0.030885
-0.0276966
-0.0248371
-0.0222211
-0.0197647
-0.017431
-0.0151435
-0.0129164
-0.0106581
-0.00842523
-0.0061607
-0.00373561
-0.00173532
-1.48419
-1.39407
-1.2837
-1.17012
-1.05764
-0.94644
-0.837548
-0.733138
-0.635361
-0.545688
-0.464908
-0.393298
-0.330766
-0.276922
-0.23115
-0.19268
-0.160671
-0.134263
-0.112625
-0.0949845
-0.0806448
-0.0689962
-0.0595159
-0.0517644
-0.045378
-0.04006
-0.0355709
-0.0317181
-0.0283502
-0.0253438
-0.0226072
-0.0200568
-0.0176448
-0.0153029
-0.0130252
-0.0107417
-0.00847345
-0.00620514
-0.0037465
-0.00178646
-1.36476
-1.28626
-1.19312
-1.09564
-0.997064
-0.898273
-0.800615
-0.70607
-0.61656
-0.533526
-0.457884
-0.390109
-0.330316
-0.278321
-0.233698
-0.195855
-0.164093
-0.137672
-0.115853
-0.0979309
-0.0832615
-0.0712688
-0.0614532
-0.0533891
-0.0467208
-0.0411548
-0.0364518
-0.0324179
-0.0288986
-0.0257684
-0.0229301
-0.0203002
-0.0178228
-0.0154346
-0.0131154
-0.0108097
-0.00851386
-0.00623923
-0.00375684
-0.00182827
-1.27875
-1.20821
-1.1269
-1.04059
-0.951799
-0.861892
-0.772395
-0.685116
-0.601786
-0.52379
-0.452108
-0.387332
-0.329716
-0.279215
-0.235545
-0.198239
-0.166709
-0.140307
-0.118367
-0.10024
-0.0853201
-0.0730621
-0.062985
-0.0546755
-0.0477847
-0.0420223
-0.0371496
-0.0329719
-0.0293323
-0.0261034
-0.0231846
-0.0204914
-0.0179624
-0.0155373
-0.0131858
-0.0108617
-0.0085458
-0.00626329
-0.00376638
-0.00185976
-1.22194
-1.15646
-1.08267
-1.00352
-0.921081
-0.837004
-0.75292
-0.670514
-0.591374
-0.516834
-0.4479
-0.38523
-0.32916
-0.279736
-0.236763
-0.19986
-0.168516
-0.142144
-0.120131
-0.101866
-0.0867752
-0.0743326
-0.0640721
-0.0555894
-0.0485409
-0.042639
-0.0376455
-0.0333653
-0.0296399
-0.0263406
-0.0233644
-0.0206261
-0.0180606
-0.0156091
-0.0132352
-0.0108975
-0.00856857
-0.00627751
-0.00377609
-0.00187912
-1.19279
-1.1298
-1.05978
-0.984244
-0.905031
-0.823932
-0.742634
-0.662755
-0.585804
-0.513085
-0.445608
-0.384063
-0.328825
-0.279985
-0.237394
-0.200715
-0.169476
-0.143126
-0.121076
-0.10274
-0.0875589
-0.0750179
-0.0646589
-0.056083
-0.0489495
-0.0429721
-0.0379132
-0.0335774
-0.0298055
-0.0264682
-0.0234611
-0.0206983
-0.0181132
-0.0156474
-0.0132614
-0.0109161
-0.00858131
-0.00628145
-0.00378846
-0.0018838
-12.455
-12.4422
-12.4212
-12.392
-12.3546
-12.3093
-12.2561
-12.1951
-12.1263
-12.0498
-11.9656
-11.8739
-11.7745
-11.6675
-11.5524
-11.4292
-11.2947
-11.1541
-10.9935
-10.9181
-10.9116
-10.8973
-10.8773
-10.8514
-10.8202
-10.784
-10.7429
-10.6972
-10.6469
-10.5923
-10.5335
-10.4705
-10.4034
-10.3322
-10.2565
-10.1768
-10.0905
-10.0056
-9.90786
-9.88419
-9.54491
-9.52657
-9.50559
-9.48197
-9.45545
-9.42606
-9.39394
-9.35927
-9.32215
-9.2827
-9.24098
-9.19706
-9.15093
-9.10269
-9.052
-8.99955
-8.9432
-8.88919
-8.82594
-8.82408
-8.31061
-8.29273
-8.2733
-8.2523
-8.22961
-8.20528
-8.17948
-8.15234
-8.12399
-8.09453
-8.06407
-8.03271
-8.0005
-7.9676
-7.93389
-7.89993
-7.86449
-7.83243
-7.79666
-7.81062
-7.20803
-7.19157
-7.17413
-7.1558
-7.13661
-7.11666
-7.09607
-7.07498
-7.05352
-7.03182
-7.00999
-6.98818
-6.96649
-6.94508
-6.92398
-6.90361
-6.88332
-6.86626
-6.84792
-6.86679
-6.22926
-6.21459
-6.19938
-6.18372
-6.16769
-6.15137
-6.13488
-6.11834
-6.10186
-6.08558
-6.06961
-6.05409
-6.03912
-6.02486
-6.01137
-5.99895
-5.98728
-5.97835
-5.96966
-5.98839
-5.36813
-5.35542
-5.34239
-5.32912
-5.31566
-5.30212
-5.28858
-5.27516
-5.26197
-5.24912
-5.23673
-5.22492
-5.21382
-5.20356
-5.19424
-5.18609
-5.17903
-5.17423
-5.17045
-5.18595
-4.61875
-4.60791
-4.59681
-4.5855
-4.57405
-4.56252
-4.55102
-4.53964
-4.52848
-4.51764
-4.50724
-4.49738
-4.48818
-4.47977
-4.47225
-4.46579
-4.46041
-4.45676
-4.45436
-4.46488
-3.9744
-3.96524
-3.95576
-3.94602
-3.93606
-3.92596
-3.91579
-3.90565
-3.89561
-3.88578
-3.87623
-3.86709
-3.85844
-3.85039
-3.84306
-3.83656
-3.83097
-3.82664
-3.82346
-3.82857
-3.42769
-3.41992
-3.41175
-3.4032
-3.39433
-3.38519
-3.37585
-3.36639
-3.35687
-3.34739
-3.33801
-3.32883
-3.31994
-3.31142
-3.30338
-3.29591
-3.2891
-3.28312
-3.27803
-3.27802
-2.97025
-2.9636
-2.95644
-2.94878
-2.94067
-2.93217
-2.92332
-2.9142
-2.90486
-2.89537
-2.8858
-2.87623
-2.86673
-2.85737
-2.84824
-2.83942
-2.83098
-2.82304
-2.81562
-2.81128
-2.59284
-2.58703
-2.58065
-2.57366
-2.56609
-2.55801
-2.54947
-2.54051
-2.53119
-2.52156
-2.51169
-2.50163
-2.49145
-2.48121
-2.47098
-2.46082
-2.45081
-2.441
-2.43138
-2.42369
-2.28565
-2.28048
-2.27466
-2.26815
-2.26099
-2.25323
-2.24491
-2.23606
-2.22674
-2.21698
-2.20684
-2.19638
-2.18564
-2.17468
-2.16355
-2.15231
-2.14102
-2.12971
-2.11832
-2.10824
-2.03894
-2.03428
-2.02879
-2.02262
-2.0158
-2.00831
-2.00019
-1.99146
-1.98217
-1.97237
-1.96209
-1.95138
-1.94028
-1.92884
-1.91711
-1.90513
-1.89296
-1.88061
-1.86801
-1.85635
-1.84328
-1.83896
-1.83386
-1.82803
-1.82148
-1.81423
-1.8063
-1.79773
-1.78855
-1.7788
-1.7685
-1.75771
-1.74646
-1.73479
-1.72274
-1.71036
-1.69769
-1.68473
-1.67143
-1.6588
-1.69072
-1.68668
-1.68186
-1.67629
-1.66998
-1.66296
-1.65525
-1.64687
-1.63785
-1.62823
-1.61803
-1.6073
-1.59606
-1.58435
-1.57222
-1.55969
-1.54681
-1.53358
-1.51998
-1.50678
-1.57445
-1.57062
-1.56602
-1.56067
-1.55459
-1.54779
-1.54029
-1.53212
-1.5233
-1.51386
-1.50383
-1.49324
-1.48212
-1.47051
-1.45843
-1.44593
-1.43303
-1.41975
-1.40609
-1.39258
-1.48955
-1.48588
-1.48147
-1.47631
-1.47042
-1.46382
-1.45654
-1.44857
-1.43996
-1.43072
-1.42089
-1.41047
-1.39952
-1.38804
-1.37608
-1.36367
-1.35084
-1.3376
-1.32397
-1.31027
-1.43269
-1.42914
-1.42486
-1.41985
-1.41412
-1.40769
-1.40057
-1.39279
-1.38435
-1.37529
-1.36562
-1.35538
-1.34457
-1.33324
-1.3214
-1.30909
-1.29633
-1.28315
-1.26957
-1.25572
-1.40342
-1.39997
-1.3958
-1.39091
-1.38532
-1.37904
-1.37208
-1.36446
-1.35618
-1.34727
-1.33774
-1.32762
-1.31692
-1.30566
-1.29388
-1.28158
-1.2688
-1.25557
-1.2419
-1.22783
-10.8933
-11.2267
-11.2532
-11.3911
-11.543
-11.6589
-11.7622
-11.863
-11.9573
-12.0433
-12.1216
-12.1923
-12.255
-12.3095
-12.3557
-12.3934
-12.4227
-12.4437
-12.4561
-12.46
-10.1013
-10.3305
-10.1798
-10.2053
-10.3222
-10.4086
-10.4724
-10.5379
-10.6042
-10.6651
-10.7193
-10.7675
-10.8097
-10.8455
-10.8748
-10.8976
-10.9137
-10.9232
-10.926
-10.922
-9.14582
-9.34447
-9.13458
-9.11107
-9.21701
-9.29796
-9.34108
-9.37947
-9.42074
-9.45837
-9.48948
-9.51506
-9.53605
-9.55254
-9.56446
-9.57185
-9.57481
-9.57346
-9.56794
-9.55842
-8.18975
-8.382
-8.15779
-8.09599
-8.17698
-8.24503
-8.26994
-8.2844
-8.30338
-8.32246
-8.33719
-8.34766
-8.35503
-8.35964
-8.36135
-8.36008
-8.35586
-8.34876
-8.33883
-8.32611
-7.27618
-7.44862
-7.23103
-7.14316
-7.19468
-7.24733
-7.26072
-7.26062
-7.26487
-7.27192
-7.27688
-7.27868
-7.27824
-7.27604
-7.27202
-7.26605
-7.25812
-7.24827
-7.23658
-7.22314
-6.40079
-6.54081
-6.34455
-6.24947
-6.27799
-6.31704
-6.32479
-6.31855
-6.3151
-6.31527
-6.31487
-6.31225
-6.30788
-6.30229
-6.29555
-6.28754
-6.27824
-6.26769
-6.25596
-6.24313
-5.56861
-5.67611
-5.51169
-5.42515
-5.43979
-5.46816
-5.47337
-5.46607
-5.45989
-5.45684
-5.45398
-5.44965
-5.44396
-5.43735
-5.42996
-5.42172
-5.4126
-5.40263
-5.39185
-5.38034
-4.79931
-4.88107
-4.7529
-4.68273
-4.69013
-4.71042
-4.71442
-4.70839
-4.70239
-4.6986
-4.69519
-4.69083
-4.68544
-4.6793
-4.67255
-4.66517
-4.65712
-4.64841
-4.63908
-4.62918
-4.11136
-4.17449
-4.08101
-4.02868
-4.03268
-4.04713
-4.05062
-4.04674
-4.0424
-4.0394
-4.03667
-4.03328
-4.02908
-4.02423
-4.01883
-4.01285
-4.00629
-3.99914
-3.99142
-3.98317
-3.51381
-3.56347
-3.49968
-3.46358
-3.46649
-3.47716
-3.48077
-3.47931
-3.47724
-3.47583
-3.47447
-3.47254
-3.46993
-3.4667
-3.46289
-3.4585
-3.45351
-3.44792
-3.44174
-3.43499
-3.00759
-3.04728
-3.00709
-2.98458
-2.98788
-2.99655
-3.0008
-3.00169
-3.00193
-3.00235
-3.00257
-3.00223
-3.00123
-2.99959
-2.99732
-2.99442
-2.99088
-2.98668
-2.98183
-2.97635
-2.58878
-2.62093
-2.59844
-2.5866
-2.59107
-2.59895
-2.60408
-2.60699
-2.60925
-2.61134
-2.61303
-2.61411
-2.61452
-2.61426
-2.6133
-2.61166
-2.60931
-2.60624
-2.60247
-2.598
-2.25013
-2.27647
-2.26644
-2.26241
-2.2682
-2.27596
-2.28195
-2.28641
-2.29022
-2.29362
-2.29649
-2.29871
-2.30022
-2.30101
-2.30108
-2.30039
-2.29896
-2.29676
-2.29381
-2.2901
-1.98192
-2.0037
-2.00188
-2.00317
-2.01007
-2.01795
-2.0246
-2.03013
-2.035
-2.03932
-2.04304
-2.04605
-2.04834
-2.04988
-2.05066
-2.05067
-2.0499
-2.04833
-2.04598
-2.04285
-1.7734
-1.79155
-1.79481
-1.79948
-1.80714
-1.81514
-1.8222
-1.82837
-1.83387
-1.83877
-1.843
-1.84651
-1.84928
-1.8513
-1.85254
-1.85299
-1.85265
-1.85151
-1.84956
-1.84682
-1.61426
-1.62956
-1.63577
-1.64243
-1.65051
-1.65852
-1.66577
-1.67224
-1.67806
-1.68324
-1.68773
-1.69151
-1.69454
-1.69682
-1.69833
-1.69905
-1.69898
-1.69811
-1.69645
-1.69398
-1.49567
-1.50877
-1.51657
-1.52431
-1.53252
-1.54044
-1.54769
-1.55425
-1.56016
-1.56542
-1.57
-1.57386
-1.577
-1.57939
-1.58103
-1.58189
-1.58197
-1.58127
-1.57978
-1.57751
-1.41078
-1.42229
-1.43087
-1.43911
-1.44731
-1.45508
-1.46223
-1.46874
-1.47462
-1.47985
-1.4844
-1.48826
-1.4914
-1.49382
-1.49549
-1.49641
-1.49658
-1.49597
-1.4946
-1.49246
-1.35501
-1.36546
-1.37437
-1.38281
-1.39091
-1.39852
-1.40554
-1.41194
-1.41772
-1.42286
-1.42734
-1.43114
-1.43424
-1.43663
-1.4383
-1.43923
-1.43942
-1.43886
-1.43755
-1.4355
-1.32649
-1.33649
-1.34556
-1.35409
-1.36215
-1.36967
-1.3766
-1.38293
-1.38863
-1.39369
-1.3981
-1.40182
-1.40486
-1.40721
-1.40884
-1.40975
-1.40994
-1.40941
-1.40814
-1.40614
0.403721
0.398231
0.384586
0.361501
0.327443
0.280045
0.215982
0.130743
0.0182588
-0.129553
-0.323428
-0.577337
-0.909908
-1.34465
-1.91448
-2.65978
-3.64023
-4.9467
-6.64145
-9.22273
0.346524
0.340687
0.326751
0.303098
0.268278
0.219982
0.15494
0.0687374
-0.0445468
-0.19278
-0.386373
-0.638882
-0.968115
-1.3969
-1.95499
-2.68317
-3.62337
-4.8832
-6.42081
-8.72384
0.287175
0.281404
0.267642
0.244123
0.209513
0.161661
0.0974893
0.012852
-0.0977773
-0.241717
-0.428574
-0.670847
-0.984528
-1.39061
-1.91314
-2.59227
-3.4437
-4.58969
-5.89562
-7.8142
0.225667
0.219865
0.206122
0.182632
0.148164
0.100746
0.0375258
-0.0453149
-0.152821
-0.291634
-0.47035
-0.700186
-0.994811
-1.37333
-1.85255
-2.47296
-3.22422
-4.23239
-5.34499
-6.91416
0.16227
0.156405
0.142643
0.119174
0.0848524
0.0378809
-0.0243609
-0.105362
-0.209679
-0.343266
-0.513665
-0.73084
-1.00596
-1.35657
-1.79219
-2.35319
-3.01374
-3.88358
-4.85887
-6.134
0.0973192
0.0914314
0.0777245
0.0544169
0.0204393
-0.025824
-0.0867502
-0.165491
-0.266101
-0.393854
-0.555222
-0.758968
-1.01379
-1.33569
-1.72855
-2.22906
-2.81158
-3.54895
-4.41019
-5.44328
0.0312062
0.0253446
0.0117888
-0.0111878
-0.0445727
-0.0897928
-0.148963
-0.224878
-0.321074
-0.442129
-0.593441
-0.782557
-1.01598
-1.30754
-1.65862
-2.0966
-2.60926
-3.22243
-3.96793
-4.80084
-0.035604
-0.0413931
-0.0547026
-0.0771813
-0.10973
-0.153583
-0.210581
-0.283148
-0.374293
-0.487889
-0.628316
-0.801793
-1.01326
-1.27318
-1.58402
-1.95931
-2.40568
-2.90677
-3.53313
-4.19921
-0.102567
-0.108237
-0.121202
-0.143016
-0.174491
-0.216669
-0.271115
-0.339881
-0.425469
-0.531041
-0.660099
-0.817391
-1.00706
-1.23526
-1.50773
-1.82368
-2.2055
-2.61081
-3.12224
-3.64912
-0.16906
-0.174563
-0.187084
-0.208071
-0.238241
-0.278455
-0.330009
-0.394593
-0.474237
-0.571417
-0.688922
-0.829985
-0.998479
-1.19631
-1.43226
-1.69541
-2.01524
-2.34202
-2.75015
-3.16173
-0.234385
-0.239676
-0.251657
-0.271664
-0.30032
-0.338315
-0.386691
-0.446799
-0.520248
-0.608874
-0.714895
-0.840186
-0.988401
-1.15841
-1.35992
-1.57823
-1.84091
-2.10424
-2.42472
-2.7423
-0.297777
-0.302813
-0.314171
-0.333066
-0.360033
-0.395605
-0.440595
-0.496046
-0.563195
-0.643335
-0.738173
-0.848598
-0.977724
-1.12309
-1.29298
-1.47407
-1.68672
-1.89865
-2.14788
-2.39063
-0.35841
-0.363158
-0.373825
-0.391508
-0.416658
-0.449671
-0.491159
-0.541899
-0.602807
-0.674749
-0.758953
-0.855737
-0.967347
-1.09135
-1.23333
-1.38361
-1.55456
-1.72485
-1.91792
-2.10289
-0.415411
-0.419846
-0.429777
-0.446187
-0.469452
-0.499851
-0.537827
-0.583938
-0.63883
-0.703059
-0.777417
-0.861959
-0.957997
-1.0637
-1.18203
-1.30682
-1.44431
-1.58127
-1.73113
-1.8727
-0.467858
-0.471969
-0.481149
-0.496272
-0.517652
-0.545474
-0.580043
-0.621746
-0.671011
-0.728178
-0.793683
-0.867472
-0.950101
-1.04034
-1.13927
-1.24321
-1.35458
-1.46537
-1.58262
-1.69222
-0.514783
-0.518575
-0.52702
-0.540899
-0.560471
-0.585853
-0.617241
-0.654893
-0.699075
-0.749974
-0.807775
-0.872359
-0.943796
-1.02124
-1.10471
-1.19194
-1.28334
-1.37402
-1.4671
-1.55348
-0.555151
-0.558644
-0.56641
-0.579148
-0.597075
-0.620258
-0.648816
-0.682912
-0.722699
-0.768257
-0.819614
-0.876599
-0.93902
-1.00621
-1.07771
-1.15197
-1.22847
-1.30407
-1.37965
-1.44944
-0.587815
-0.591051
-0.598234
-0.61
-0.626535
-0.647872
-0.674079
-0.705253
-0.741475
-0.782755
-0.829027
-0.880083
-0.935607
-0.995011
-1.05764
-1.12231
-1.18811
-1.25288
-1.31624
-1.37454
-0.611441
-0.614481
-0.621224
-0.632256
-0.647748
-0.667714
-0.692186
-0.721223
-0.754862
-0.793072
-0.835739
-0.882628
-0.933377
-0.987425
-1.04407
-1.10228
-1.16103
-1.21865
-1.27416
-1.32509
-0.624356
-0.627289
-0.633785
-0.644402
-0.659307
-0.678506
-0.702015
-0.729873
-0.762095
-0.798632
-0.839349
-0.883999
-0.932204
-0.983416
-1.03692
-1.09177
-1.14688
-1.20083
-1.25238
-1.29962
1.12035
1.11852
1.11367
1.10487
1.09112
1.07068
1.04123
0.999602
0.941702
0.862033
0.753919
0.607953
0.413836
0.154353
-0.185242
-0.641156
-1.23397
-2.04915
-3.13326
-4.66611
1.08186
1.0798
1.07433
1.06468
1.0498
1.02792
0.9967
0.952921
0.892423
0.80961
0.697664
0.546969
0.346928
0.0799879
-0.269446
-0.737611
-1.34836
-2.18426
-3.3052
-4.87656
1.04363
1.04134
1.03526
1.02478
1.00877
0.98547
0.952494
0.906573
0.84348
0.757515
0.641713
0.486257
0.280218
0.00575406
-0.353678
-0.834201
-1.46316
-2.31994
-3.47832
-5.08773
1.00567
1.00316
0.996484
0.98519
0.968077
0.943369
0.908649
0.860597
0.794912
0.705791
0.586109
0.425859
0.21375
-0.0683062
-0.437896
-0.930873
-1.57835
-2.45607
-3.65257
-5.2993
0.968014
0.965285
0.958035
0.94594
0.927742
0.901647
0.865199
0.815028
0.746756
0.654474
0.53089
0.365812
0.147558
-0.142161
-0.522071
-1.02759
-1.69389
-2.59251
-3.82789
-5.5109
0.930668
0.927734
0.919931
0.907058
0.887795
0.860333
0.822176
0.769899
0.699044
0.603596
0.476088
0.306144
0.0816693
-0.215789
-0.606185
-1.12434
-1.80979
-2.72922
-4.00422
-5.72219
0.893654
0.890527
0.882196
0.868566
0.848263
0.819455
0.779608
0.72524
0.651809
0.55319
0.421732
0.246884
0.0161072
-0.289175
-0.690229
-1.22112
-1.92606
-2.86615
-4.18156
-5.93292
0.856989
0.853682
0.844851
0.830489
0.80917
0.779042
0.737525
0.68108
0.605078
0.503283
0.36785
0.188055
-0.0491089
-0.362307
-0.774199
-1.31793
-2.04271
-3.0033
-4.35992
-6.1429
0.820687
0.817215
0.807916
0.79285
0.770543
0.739119
0.695953
0.637448
0.55888
0.453903
0.314466
0.129675
-0.113964
-0.435184
-0.858097
-1.4148
-2.15975
-3.14069
-4.53926
-6.35202
0.784764
0.781144
0.77141
0.755669
0.732403
0.69971
0.654917
0.594367
0.51324
0.405071
0.261601
0.0717611
-0.178446
-0.50781
-0.941927
-1.51177
-2.2772
-3.27838
-4.71953
-6.56027
0.749231
0.745483
0.735353
0.718967
0.694773
0.660837
0.614441
0.551862
0.46818
0.35681
0.209274
0.0143244
-0.242549
-0.580194
-1.0257
-1.60888
-2.39506
-3.4165
-4.90056
-6.76787
0.714101
0.710248
0.69976
0.682763
0.657672
0.622523
0.574546
0.509954
0.423722
0.309138
0.157501
-0.0426272
-0.306269
-0.652355
-1.10943
-1.70622
-2.51332
-3.55527
-5.08201
-6.97529
0.679384
0.675451
0.664648
0.647075
0.62112
0.584786
0.535252
0.468662
0.379883
0.26207
0.106293
-0.0990893
-0.369607
-0.724318
-1.19312
-1.80388
-2.63193
-3.69497
-5.26337
-7.18337
0.645089
0.641104
0.630032
0.611919
0.585135
0.547647
0.49658
0.428006
0.336681
0.215621
0.0556618
-0.155061
-0.432569
-0.796114
-1.27681
-1.90197
-2.75083
-3.83604
-5.44383
-7.39353
0.611223
0.607216
0.595923
0.577308
0.549731
0.511119
0.458542
0.388
0.29413
0.169802
0.00561329
-0.210545
-0.495164
-0.867779
-1.36051
-2.00062
-2.86994
-3.97895
-5.62227
-7.60785
0.577793
0.573795
0.562328
0.543248
0.514913
0.475208
0.421146
0.348649
0.252234
0.124615
-0.0438536
-0.265549
-0.557408
-0.939354
-1.44427
-2.09997
-2.98918
-4.12431
-5.79738
-7.82965
0.544808
0.54086
0.529274
0.509773
0.480717
0.43995
0.384426
0.309983
0.211017
0.0800747
-0.0927333
-0.320081
-0.619321
-1.01088
-1.52814
-2.20014
-3.10851
-4.27258
-5.96727
-8.06249
0.512287
0.50847
0.496856
0.477005
0.447294
0.40552
0.348573
0.272203
0.170674
0.0363557
-0.140886
-0.374043
-0.68085
-1.08234
-1.61212
-2.3012
-3.22807
-4.4247
-6.13209
-8.31549
0.480213
0.476596
0.465052
0.444931
0.414644
0.371938
0.313635
0.235384
0.131306
-0.00642494
-0.188202
-0.427364
-0.741995
-1.15382
-1.69637
-2.40313
-3.3475
-4.579
-6.2866
-8.58635
0.448406
0.444655
0.4329
0.412232
0.381104
0.33722
0.277339
0.197023
0.090266
-0.0509477
-0.237278
-0.482475
-0.805067
-1.22774
-1.78419
-2.51127
-3.47733
-4.7537
-6.47154
-8.94167
1.9087
1.90944
1.91399
1.92087
1.92909
1.93703
1.94263
1.9432
1.93537
1.91502
1.87717
1.81578
1.72361
1.59152
1.40848
1.15784
0.818423
0.37649
-0.202468
-1.16457
1.86974
1.87018
1.87418
1.87993
1.88658
1.89248
1.89551
1.89294
1.88133
1.8564
1.81297
1.74467
1.64384
1.50064
1.30331
1.03446
0.670952
0.192547
-0.398115
-1.38455
1.83079
1.83145
1.8354
1.84067
1.84649
1.8512
1.85272
1.84834
1.83463
1.80735
1.76135
1.69031
1.58665
1.44066
1.2409
0.970495
0.607188
0.122968
-0.453056
-1.44676
1.79167
1.79248
1.79634
1.80112
1.80614
1.80975
1.80989
1.80385
1.78824
1.75884
1.71053
1.63702
1.53082
1.38228
1.18021
0.907752
0.544133
0.0504939
-0.52804
-1.5504
1.75236
1.75321
1.75684
1.76102
1.76512
1.76749
1.76607
1.75815
1.74035
1.70841
1.65718
1.58027
1.47013
1.31688
1.10922
0.829485
0.458376
-0.0546718
-0.650334
-1.69632
1.71291
1.71375
1.71708
1.72059
1.7237
1.72475
1.72169
1.71179
1.69163
1.65692
1.60245
1.52167
1.40691
1.24794
1.03325
0.743997
0.362875
-0.170981
-0.785562
-1.84664
1.67335
1.67415
1.67713
1.67994
1.68203
1.68175
1.67702
1.6651
1.64257
1.60506
1.54729
1.4626
1.34315
1.17839
0.956702
0.65792
0.267299
-0.284935
-0.918987
-1.99707
1.63369
1.63442
1.63701
1.63909
1.64015
1.63851
1.6321
1.61816
1.59324
1.55292
1.49185
1.40323
1.2791
1.10854
0.879955
0.57171
0.171676
-0.397883
-1.05468
-2.15433
1.59396
1.59458
1.59674
1.59808
1.59807
1.59505
1.58694
1.57096
1.54362
1.50045
1.43603
1.34341
1.2145
1.03797
0.802291
0.484172
0.0738079
-0.513355
-1.19631
-2.31989
1.55419
1.55468
1.55637
1.55692
1.55583
1.55141
1.54158
1.52353
1.49374
1.44768
1.37985
1.28312
1.14929
0.966562
0.723461
0.394945
-0.0268985
-0.631953
-1.34326
-2.49222
1.51439
1.51473
1.51591
1.51567
1.51347
1.50763
1.49605
1.47591
1.44365
1.39466
1.32335
1.22243
1.08355
0.894426
0.643615
0.304321
-0.129963
-0.752925
-1.49406
-2.67029
1.47459
1.47475
1.47541
1.47434
1.47102
1.46374
1.4504
1.42816
1.39339
1.34143
1.26661
1.16143
1.01739
0.821705
0.562944
0.212623
-0.234908
-0.875801
-1.64802
-2.8537
1.43481
1.43479
1.43488
1.43298
1.42852
1.41979
1.40468
1.38031
1.34302
1.28807
1.20968
1.10017
0.95089
0.748499
0.481563
0.120026
-0.341504
-1.0005
-1.80491
-3.04207
1.39508
1.39486
1.39437
1.39162
1.386
1.37582
1.35893
1.33242
1.29259
1.23461
1.15262
1.03871
0.884102
0.674886
0.399553
0.0266343
-0.449602
-1.12697
-1.96449
-3.2349
1.35543
1.35499
1.3539
1.3503
1.34352
1.33186
1.31318
1.28452
1.24214
1.18111
1.09548
0.977121
0.817095
0.600944
0.316995
-0.0674518
-0.559031
-1.2551
-2.12644
-3.43163
1.31587
1.31521
1.31351
1.30904
1.30109
1.28797
1.26748
1.23667
1.19172
1.12762
1.03831
0.915456
0.74993
0.526747
0.233975
-0.162127
-0.669601
-1.38472
-2.29047
-3.63177
1.27643
1.27554
1.27322
1.26788
1.25876
1.24416
1.22188
1.1889
1.14138
1.07419
0.981172
0.853773
0.682672
0.452369
0.150578
-0.257291
-0.781132
-1.51566
-2.45631
-3.83481
1.23714
1.23602
1.23306
1.22685
1.21656
1.2005
1.17642
1.14127
1.09116
1.02087
0.924114
0.792128
0.615377
0.37788
0.0668845
-0.352853
-0.893465
-1.64773
-2.62371
-4.04027
1.19801
1.19665
1.19306
1.18598
1.17453
1.157
1.13113
1.09382
1.04111
0.967703
0.867186
0.730574
0.548103
0.303341
-0.0170296
-0.448733
-1.00646
-1.78078
-2.79246
-4.24765
1.15907
1.15748
1.15325
1.14531
1.13271
1.11372
1.08605
1.04658
0.991274
0.914741
0.810437
0.669164
0.480904
0.228811
-0.101096
-0.544861
-1.12
-1.91465
-2.96237
-4.45644
3.44755
3.45229
3.46256
3.47881
3.50057
3.52691
3.55681
3.58923
3.6231
3.65737
3.69103
3.72314
3.75296
3.77987
3.80345
3.82346
3.83985
3.85267
3.86203
3.8681
3.4263
3.43118
3.44178
3.45857
3.48106
3.50834
3.53937
3.57313
3.60855
3.64456
3.68012
3.71431
3.74633
3.77553
3.80144
3.82378
3.8424
3.8573
3.86842
3.87585
3.38757
3.3927
3.40385
3.42153
3.44527
3.47412
3.50708
3.54311
3.58115
3.62011
3.65894
3.69668
3.73248
3.76563
3.79558
3.82194
3.84447
3.86304
3.8772
3.88687
3.33433
3.33976
3.35158
3.37036
3.3956
3.42637
3.46168
3.5005
3.54175
3.58435
3.62723
3.66937
3.70988
3.74797
3.783
3.81446
3.84199
3.8653
3.88338
3.89518
3.26906
3.2748
3.2873
3.30721
3.33401
3.36678
3.40453
3.44625
3.49086
3.53728
3.58439
3.63118
3.67668
3.72004
3.76052
3.79747
3.83041
3.859
3.88173
3.89358
3.19395
3.19996
3.2131
3.23403
3.26227
3.29686
3.33685
3.38123
3.42893
3.47885
3.52989
3.58099
3.63114
3.67942
3.72501
3.76713
3.8051
3.83831
3.86533
3.87816
3.11102
3.11725
3.13089
3.15265
3.18203
3.21809
3.25987
3.30638
3.35656
3.40929
3.46348
3.51802
3.5719
3.62414
3.67383
3.72008
3.76215
3.79929
3.82691
3.8414
3.02216
3.02853
3.0425
3.06482
3.09495
3.13197
3.17492
3.22281
3.27458
3.32911
3.38528
3.44198
3.49816
3.5528
3.60491
3.65352
3.69787
3.73649
3.76287
3.77574
2.92913
2.93555
2.94965
2.9722
3.00264
3.04002
3.0834
3.13177
3.18407
3.23915
3.29587
3.35309
3.40972
3.46469
3.51695
3.56543
3.6093
3.64638
3.66787
3.67525
2.83354
2.83991
2.85394
2.87638
2.90665
2.94376
2.98678
3.03468
3.08634
3.14059
3.19623
3.25208
3.30699
3.35983
3.40942
3.45462
3.4945
3.52595
3.53749
3.53451
2.73683
2.74306
2.75681
2.77883
2.80844
2.84468
2.88655
2.93301
2.98285
3.03485
3.08771
3.14017
3.19099
3.23892
3.28265
3.32083
3.35246
3.37323
3.36846
3.34881
2.64025
2.64626
2.65957
2.68084
2.70938
2.74416
2.78416
2.82825
2.87514
2.92349
2.97189
3.01892
3.0632
3.1033
3.13767
3.16467
3.18317
3.18737
3.15866
3.11424
2.54488
2.55059
2.5633
2.58358
2.61066
2.64348
2.68095
2.72184
2.76476
2.80818
2.85051
2.89016
2.92549
2.95481
2.9762
2.98757
2.98758
2.96871
2.90721
2.82789
2.45158
2.45695
2.46893
2.48801
2.51331
2.54375
2.57815
2.61515
2.65318
2.69053
2.72539
2.75584
2.77995
2.79564
2.80049
2.79164
2.76756
2.71874
2.6146
2.48792
2.36106
2.36605
2.37722
2.39491
2.41821
2.44593
2.47682
2.50936
2.54178
2.57212
2.59827
2.61795
2.62881
2.62824
2.61311
2.57953
2.52565
2.44004
2.28279
2.09378
2.27385
2.27842
2.28871
2.30492
2.32603
2.35081
2.37787
2.40551
2.43176
2.45435
2.4708
2.47841
2.47427
2.45514
2.41696
2.35441
2.26505
2.1361
1.91523
1.64623
2.19032
2.19445
2.20383
2.21848
2.23729
2.25897
2.28199
2.30446
2.32414
2.33845
2.34447
2.33898
2.31839
2.2787
2.21475
2.11931
1.98885
1.81077
1.51721
1.14758
2.11075
2.11447
2.12297
2.13601
2.15245
2.17093
2.18977
2.20689
2.21977
2.22545
2.22058
2.20129
2.16327
2.10155
2.00979
1.87842
1.7015
1.46834
1.09499
0.600448
2.03533
2.03877
2.04657
2.05811
2.07225
2.08754
2.10214
2.11376
2.11958
2.11627
2.09993
2.06608
2.0095
1.92408
1.80214
1.63164
1.4026
1.10808
0.655916
0.0095182
1.96383
1.96672
1.9737
1.98369
1.99558
2.00782
2.01842
2.02484
2.02396
2.012
1.98448
1.93612
1.86073
1.7508
1.59714
1.38516
1.09851
0.728887
0.19557
-0.63524
3.87027
3.87083
3.87113
3.87123
3.87113
3.87083
3.87032
3.86959
3.86865
3.86748
3.86609
3.86446
3.86258
3.86046
3.85809
3.85545
3.85254
3.84935
3.84587
3.84209
3.87991
3.88074
3.881
3.88106
3.88094
3.8806
3.88002
3.8792
3.87813
3.87683
3.87527
3.87345
3.87136
3.86899
3.86635
3.86341
3.86018
3.85664
3.85279
3.84862
3.89462
3.89603
3.8963
3.89634
3.89623
3.89587
3.89521
3.89428
3.89305
3.89155
3.88974
3.88763
3.8852
3.88246
3.8794
3.87601
3.87228
3.8682
3.86377
3.85898
3.90871
3.91109
3.91153
3.91173
3.9118
3.91156
3.91096
3.91002
3.90872
3.90706
3.90504
3.90265
3.89988
3.89673
3.8932
3.88927
3.88494
3.8802
3.87506
3.86949
3.91679
3.92018
3.9208
3.9216
3.92219
3.92234
3.92203
3.92127
3.92008
3.91842
3.91631
3.91373
3.91068
3.90716
3.90315
3.89867
3.89369
3.88822
3.88226
3.8758
3.90935
3.91531
3.91749
3.9192
3.92071
3.92172
3.92214
3.92196
3.9212
3.91984
3.91789
3.91533
3.91217
3.9084
3.90402
3.89903
3.89342
3.8872
3.88036
3.8729
3.88235
3.89094
3.89507
3.89849
3.90158
3.90399
3.9056
3.90644
3.9065
3.90577
3.90428
3.902
3.89894
3.89508
3.89045
3.88504
3.87884
3.87186
3.8641
3.85556
3.82775
3.83983
3.8469
3.8529
3.8583
3.86277
3.86621
3.86862
3.87
3.87035
3.86969
3.86801
3.86532
3.86161
3.8569
3.85118
3.84446
3.83675
3.82804
3.81833
3.73916
3.7557
3.76682
3.77635
3.78492
3.79223
3.79817
3.80278
3.80605
3.808
3.80858
3.80787
3.80586
3.80254
3.79794
3.79205
3.78489
3.77646
3.76675
3.75578
3.61064
3.63273
3.64911
3.66321
3.67587
3.68685
3.69608
3.70356
3.70932
3.71335
3.71565
3.71633
3.71534
3.71269
3.70839
3.70247
3.69492
3.68576
3.67499
3.66261
3.43715
3.46601
3.48888
3.50863
3.52636
3.54192
3.55523
3.56632
3.5752
3.58192
3.58649
3.5889
3.58922
3.58746
3.58363
3.57775
3.56983
3.55988
3.54791
3.53391
3.21445
3.25141
3.28201
3.3085
3.3323
3.35335
3.37157
3.38699
3.39966
3.40963
3.41689
3.42132
3.42334
3.42273
3.41952
3.41375
3.40543
3.39459
3.38122
3.36532
2.9391
2.98558
3.02508
3.05937
3.09026
3.11771
3.14166
3.16216
3.17925
3.193
3.20348
3.2107
3.21445
3.21513
3.21264
3.20699
3.1982
3.1863
3.17129
3.15315
2.60839
2.66585
2.71528
2.75835
2.79725
2.83195
2.8624
2.88866
2.91079
2.92886
2.94294
2.95307
2.95907
2.96122
2.95959
2.9541
2.9448
2.93169
2.91478
2.89407
2.22053
2.29041
2.35063
2.40331
2.451
2.49365
2.53122
2.56381
2.59146
2.61426
2.63229
2.64566
2.65432
2.65785
2.65708
2.65176
2.64184
2.62737
2.60833
2.58471
1.77473
1.85831
1.92987
1.99273
2.04976
2.10085
2.146
2.18529
2.2188
2.24659
2.26875
2.28539
2.29665
2.30241
2.30183
2.29654
2.28587
2.26977
2.24827
2.22135
1.27186
1.37028
1.45356
1.52712
1.59396
1.65385
1.7068
1.75292
1.79229
1.82502
1.85116
1.87083
1.88416
1.89139
1.89231
1.88547
1.87352
1.85526
1.83069
1.79981
0.712136
0.827032
0.922262
1.00648
1.08291
1.15132
1.21181
1.26452
1.30956
1.34701
1.37697
1.39948
1.41465
1.42265
1.42376
1.41777
1.40265
1.38171
1.35364
1.31835
0.0973012
0.224554
0.32991
0.425557
0.513302
0.592198
0.662057
0.722871
0.774697
0.817623
0.851747
0.877161
0.893952
0.902228
0.902174
0.89404
0.877713
0.851835
0.818839
0.777236
-0.562552
-0.393105
-0.264121
-0.153477
-0.0560031
0.0295509
0.104045
0.167978
0.221647
0.265252
0.298943
0.322835
0.33702
0.341571
0.336605
0.322388
0.299182
0.266296
0.222648
0.170048
3.83801
3.83361
3.82888
3.82383
3.81843
3.81269
3.80659
3.80012
3.79329
3.78609
3.7785
3.77053
3.76217
3.75343
3.74429
3.73475
3.72482
3.71449
3.70377
3.69277
3.84411
3.83927
3.83409
3.82855
3.82265
3.81639
3.80976
3.80276
3.79538
3.78762
3.77948
3.77095
3.76204
3.75274
3.74307
3.73302
3.7226
3.71176
3.70052
3.68943
3.85383
3.8483
3.84239
3.8361
3.82942
3.82234
3.81487
3.807
3.79872
3.79004
3.78096
3.77147
3.76159
3.7513
3.74063
3.72958
3.71815
3.70621
3.69383
3.68229
3.86351
3.85709
3.85025
3.84297
3.83525
3.82708
3.81848
3.80943
3.79993
3.78999
3.77961
3.76878
3.75752
3.74582
3.73371
3.72119
3.70824
3.69464
3.68046
3.66809
3.86882
3.86135
3.85336
3.84485
3.83583
3.8263
3.81624
3.80566
3.79457
3.78296
3.77083
3.75819
3.74504
3.73138
3.71724
3.70264
3.68752
3.67147
3.65459
3.64097
3.86482
3.85612
3.84679
3.83683
3.82624
3.81502
3.80318
3.7907
3.77759
3.76386
3.7495
3.73451
3.7189
3.70268
3.68586
3.66851
3.6505
3.63109
3.61043
3.59538
3.84623
3.83611
3.82522
3.81354
3.80107
3.78781
3.77376
3.75893
3.7433
3.72688
3.70967
3.69167
3.67288
3.65329
3.63295
3.61196
3.5901
3.56623
3.54048
3.52229
3.80762
3.79592
3.78322
3.76952
3.75483
3.73913
3.72242
3.7047
3.68598
3.66623
3.64547
3.62368
3.60086
3.57698
3.55213
3.52647
3.49964
3.46983
3.43702
3.41481
3.74352
3.73001
3.71523
3.69918
3.68185
3.66323
3.64332
3.62212
3.59961
3.57578
3.55062
3.52413
3.49626
3.46699
3.43645
3.40492
3.37184
3.33427
3.29196
3.26493
3.64862
3.63302
3.61582
3.597
3.57655
3.55447
3.53074
3.50534
3.47827
3.4495
3.41902
3.3868
3.35278
3.3169
3.27939
3.24074
3.20005
3.15268
3.09799
3.06544
3.51789
3.49985
3.47979
3.45769
3.43354
3.40733
3.37904
3.34864
3.3161
3.28141
3.24453
3.20544
3.164
3.12015
3.07425
3.02714
2.97744
2.91794
2.8474
2.80861
3.3469
3.32597
3.30252
3.27652
3.24798
3.21685
3.18312
3.14676
3.10772
3.06598
3.02151
2.97425
2.924
2.87065
2.81478
2.75776
2.6976
2.62336
2.53278
2.48696
3.1319
3.10756
3.0801
3.0495
3.01575
2.97882
2.93868
2.89527
2.84856
2.79851
2.74508
2.68821
2.62762
2.56305
2.49543
2.42692
2.35476
2.26293
2.1476
2.09386
2.86955
2.84125
2.80916
2.77323
2.73345
2.68978
2.64218
2.5906
2.53497
2.47527
2.41146
2.34347
2.27089
2.19333
2.11204
2.03032
1.94469
1.83269
1.68808
1.62593
2.55651
2.52377
2.48644
2.4445
2.39792
2.34664
2.29062
2.22981
2.16411
2.09349
2.01793
1.93737
1.85131
1.75914
1.66243
1.56595
1.46587
1.33237
1.15563
1.08528
2.189
2.15128
2.10814
2.05954
2.00543
1.94577
1.88048
1.8095
1.73275
1.65016
1.56175
1.46754
1.36701
1.25931
1.14615
1.03393
0.919425
0.765449
0.55645
0.477493
1.76264
1.71925
1.66957
1.61356
1.55115
1.4823
1.40696
1.32505
1.23651
1.1413
1.03948
0.931166
0.81601
0.692975
0.563442
0.434938
0.306108
0.1344
-0.104306
-0.19562
1.27584
1.22622
1.16943
1.10546
1.03426
0.955818
0.870091
0.777054
0.676676
0.568928
0.453855
0.331621
0.202056
0.0640281
-0.0821103
-0.229172
-0.375369
-0.563135
-0.825823
-0.934026
0.727236
0.66916
0.603031
0.528858
0.44664
0.356385
0.258107
0.151826
0.0375617
-0.0846841
-0.214901
-0.352979
-0.498867
-0.653304
-0.816873
-0.984405
-1.14992
-1.34508
-1.60724
-1.7136
0.108462
0.0378157
-0.0419812
-0.130917
-0.228958
-0.336051
-0.452123
-0.577074
-0.71077
-0.853033
-1.00363
-1.16216
-1.32796
-1.50024
-1.67827
-1.8586
-2.03238
-2.20596
-2.40238
-2.4525
3.66546
3.61252
3.54965
3.47615
3.39085
3.2927
3.18112
3.05595
2.91744
2.7663
2.60375
2.43149
2.25169
2.06688
1.87987
1.69356
1.51084
1.33441
1.16666
1.00955
0.864586
0.732733
0.614485
0.509852
0.418497
0.339725
0.272682
0.216285
0.169472
0.131036
0.0999461
0.0750346
0.0554454
0.0401409
0.0285387
0.0196689
0.0131922
0.00812765
0.00444321
0.00105285
3.66369
3.60815
3.54236
3.4663
3.37835
3.27739
3.163
3.03518
2.89427
2.74106
2.57681
2.40331
2.22274
2.03769
1.85095
1.6654
1.4839
1.30906
1.14321
0.988214
0.845475
0.715877
0.599834
0.497296
0.40788
0.330862
0.265372
0.210326
0.164668
0.127204
0.0969222
0.0726816
0.0536442
0.0387766
0.0275126
0.018922
0.0126597
0.00779153
0.00426286
0.00103201
3.65881
3.59832
3.5276
3.447
3.35426
3.24838
3.12923
2.997
2.85214
2.69557
2.52867
2.35329
2.1717
1.9865
1.80048
1.61649
1.43728
1.26538
1.10293
0.951667
0.812826
0.687143
0.574907
0.475968
0.38987
0.315845
0.253
0.200251
0.156552
0.12074
0.0918235
0.0687149
0.0505911
0.0364711
0.025771
0.0176634
0.0117509
0.00723215
0.00394382
0.00100696
3.64691
3.57935
3.50279
3.41621
3.31716
3.20514
3.08029
2.94287
2.7935
2.6332
2.46349
2.2863
2.10398
1.91914
1.73456
1.55302
1.37716
1.20933
1.05151
0.905212
0.771485
0.650884
0.543545
0.449201
0.367314
0.297071
0.237554
0.187688
0.14644
0.112692
0.0854769
0.0637683
0.0467607
0.0335899
0.0235964
0.0160939
0.0106133
0.00653612
0.00353385
0.000977878
3.62299
3.54499
3.46316
3.37002
3.26414
3.14588
3.01541
2.87305
2.71952
2.55598
2.38404
2.20575
2.02349
1.83991
1.65774
1.47968
1.30821
1.1455
0.993308
0.852926
0.725185
0.610451
0.508704
0.419564
0.34241
0.276391
0.220573
0.173897
0.135355
0.103876
0.078531
0.0583618
0.0425882
0.0304302
0.0212106
0.014374
0.00936287
0.00577317
0.00307183
0.000945731
3.58326
3.48692
3.40321
3.30408
3.19223
3.06874
2.93373
2.78757
2.63106
2.46549
2.29255
2.11438
1.93341
1.75228
1.57369
1.4002
1.23414
1.07746
0.931702
0.797927
0.676752
0.568361
0.472591
0.388956
0.316771
0.255155
0.203173
0.159791
0.124032
0.0948818
0.0714506
0.0528542
0.0383324
0.0271974
0.0187763
0.0126202
0.00808423
0.00499459
0.00258744
0.00091407
3.50901
3.40862
3.31934
3.21484
3.09914
2.97238
2.83474
2.6867
2.52911
2.36332
2.19113
2.0147
1.83654
1.65925
1.48547
1.31764
1.1579
1.00801
0.869278
0.742559
0.628273
0.526443
0.436779
0.358715
0.291517
0.234293
0.186116
0.145986
0.112966
0.0861011
0.0645443
0.047484
0.0341855
0.0240524
0.0164016
0.010909
0.00683402
0.0042344
0.00210222
0.000886294
3.40279
3.29783
3.20687
3.09976
2.9831
2.8559
2.71841
2.57113
2.41496
2.25126
2.0819
1.90912
1.73541
1.5634
1.39564
1.23444
1.08179
0.939249
0.807933
0.688501
0.581208
0.485944
0.402324
0.329723
0.267378
0.214401
0.169884
0.13287
0.102466
0.0777762
0.0580011
0.0423983
0.0302611
0.0210775
0.0141517
0.00928731
0.00564705
0.00351309
0.00163099
0.000864115
3.25765
3.14975
3.06282
2.95671
2.84305
2.71913
2.58534
2.44208
2.29025
2.13127
1.96704
1.79986
1.63228
1.46691
1.30625
1.1525
1.00752
0.872695
0.748977
0.636871
0.536498
0.447651
0.369874
0.302507
0.24478
0.19582
0.15475
0.120658
0.0926994
0.0700396
0.0519238
0.0376762
0.0266184
0.0183155
0.0120623
0.00778095
0.00454235
0.00284154
0.00118333
0.000847458
3.06742
2.96094
2.88424
2.78434
2.67873
2.56263
2.43672
2.30118
2.15691
2.00541
1.84863
1.68898
1.52908
1.37155
1.21888
1.07321
0.936274
0.809346
0.69324
0.588345
0.494689
0.411996
0.339769
0.277335
0.223931
0.178711
0.140836
0.109445
0.0837408
0.0629479
0.0463555
0.0333511
0.0232819
0.0157858
0.0101473
0.00640052
0.00352803
0.00222431
0.0007649
0.000835037
2.82608
2.72856
2.66886
2.58218
2.49056
2.38767
2.27428
2.15042
2.01704
1.87574
1.72864
1.57828
1.42739
1.27871
1.13471
0.99753
0.868833
0.749809
0.641185
0.543272
0.456036
0.379162
0.312138
0.254295
0.204891
0.163115
0.128171
0.0992495
0.075601
0.0565081
0.0413008
0.029426
0.0202538
0.0134907
0.00841047
0.00514701
0.00260522
0.00166192
0.000378508
0.000825042
2.52761
2.45043
2.41515
2.35049
2.27979
2.19598
2.1001
1.99197
1.87274
1.74424
1.60881
1.46925
1.32849
1.1894
1.05454
0.926068
0.805635
0.694388
0.593009
0.501764
0.420591
0.349162
0.286967
0.233358
0.187622
0.148993
0.116717
0.0900376
0.0682518
0.0506971
0.0367407
0.0258861
0.0175224
0.0114212
0.006843
0.00401576
0.00177093
0.00115251
2.49915e-05
0.000815672
2.16681
2.12595
2.12335
2.09084
2.04873
1.99012
1.9167
1.8282
1.72612
1.6127
1.49065
1.36311
1.23331
1.10432
0.97886
0.859147
0.746866
0.643166
0.548716
0.463774
0.388274
0.321897
0.264153
0.214423
0.172033
0.136262
0.106402
0.0817496
0.0616436
0.0454743
0.0326431
0.0227061
0.0150683
0.00956237
0.00543392
0.0029992
0.00101983
0.000692868
-0.000296162
0.000805446
1.74186
1.75792
1.79709
1.80688
1.80123
1.77375
1.72731
1.66188
1.57948
1.48296
1.37557
1.26091
1.14259
1.02397
0.907957
0.796896
0.69254
0.596074
0.508187
0.429153
0.358925
0.297207
0.243542
0.19735
0.157999
0.124816
0.0971379
0.074311
0.0557157
0.0407914
0.0289696
0.0198561
0.0128684
0.00789676
0.00417034
0.00208794
0.000345402
0.000279086
-0.000586341
0.000793327
1.25459
1.35134
1.44222
1.50332
1.54191
1.55105
1.53557
1.49603
1.43525
1.35692
1.26499
1.16366
1.05701
0.948751
0.842037
0.73937
0.642603
0.552988
0.471255
0.397714
0.332351
0.274908
0.224965
0.181988
0.145389
0.114542
0.088829
0.0676439
0.0504052
0.0365979
0.0256804
0.0173052
0.0108989
0.00640617
0.00303873
0.00127216
-0.000259226
-9.29364e-05
-0.000847465
0.000778726
0.702171
0.903753
1.05966
1.18115
1.27251
1.3242
1.34348
1.33246
1.29495
1.2358
1.15985
1.07205
0.977039
0.878952
0.781231
0.68658
0.596983
0.513777
0.437755
0.369276
0.30837
0.254824
0.208261
0.168193
0.134077
0.105333
0.081387
0.0616756
0.0456527
0.0328462
0.022738
0.0150237
0.00913703
0.00507328
0.00202609
0.000542389
-0.00080076
-0.000427218
-0.00108172
0.000761419
0.0656025
0.393685
0.637853
0.833112
0.988135
1.08999
1.14872
1.16947
1.15732
1.1186
1.05937
0.985433
0.902133
0.814096
0.725119
0.638148
0.555332
0.478124
0.407398
0.343579
0.286751
0.236752
0.193253
0.155813
0.123935
0.0970839
0.0747234
0.0563337
0.0414002
0.0294901
0.0201058
0.0129833
0.00756084
0.00388121
0.00111984
-0.000110592
-0.00128569
-0.000727759
-0.00129136
0.000741399
-0.67356
-0.201274
0.166567
0.453861
0.684243
0.844195
0.947759
1.00357
1.01905
1.0023
0.960783
0.90136
0.830149
0.752341
0.672135
0.592757
0.516555
0.445121
0.379437
0.320009
0.266992
0.220284
0.179611
0.144584
0.114752
0.0896247
0.0687054
0.0515144
0.0375668
0.0264671
0.0177362
0.0111476
0.0061433
0.00280982
0.000305466
-0.000697283
-0.00172102
-0.000999023
-0.0014786
0.000718811
-1.4596
-0.837028
-0.314787
0.0746303
0.383533
0.602704
0.75134
0.841848
0.884497
0.889283
0.865115
0.819929
0.760602
0.692865
0.621294
0.54938
0.479656
0.413852
0.353056
0.297861
0.248494
0.204921
0.166926
0.134174
0.106261
0.0827452
0.0631681
0.0470899
0.0340548
0.0237032
0.015574
0.00947591
0.00485483
0.00183791
-0.000431942
-0.00122774
-0.00211357
-0.00124469
-0.00164602
0.000694602
-2.08332
-1.35108
-0.67749
-0.209178
0.160177
0.421993
0.603009
0.718181
0.780154
0.800357
0.788743
0.754017
0.703588
0.64355
0.578719
0.512746
0.448269
0.387094
0.330368
0.278735
0.232466
0.191571
0.155876
0.125087
0.0988377
0.0767222
0.0583142
0.0432075
0.0309703
0.0212744
0.0136723
0.00800554
0.00372007
0.000982817
-0.00108272
-0.00169429
-0.00246184
-0.00146059
-0.00179707
0.000671412
-2.25381
-1.53683
-0.773169
-0.284682
0.105001
0.376879
0.56576
0.686752
0.753279
0.777096
0.768366
0.735993
0.687535
0.629196
0.565872
0.501262
0.43804
0.378026
0.322375
0.271734
0.226376
0.18631
0.151364
0.121245
0.0955901
0.0739984
0.0560456
0.0413345
0.0294334
0.0200271
0.0126633
0.00720316
0.00307897
0.000487886
-0.00147527
-0.00197984
-0.00268812
-0.00159853
-0.0019062
0.000652758
-2.33944
-1.65738
-0.848921
-0.356013
0.0426435
0.319918
0.51351
0.638405
0.708413
0.735581
0.730217
0.701275
0.656288
0.6014
0.541428
0.479998
0.419724
0.362395
0.309149
0.260632
0.217127
0.178662
0.145084
0.116126
0.0914462
0.0706686
0.0533892
0.0392319
0.0277807
0.0187397
0.0116667
0.00644084
0.00249757
5.37115e-05
-0.00180181
-0.00221299
-0.0028603
-0.00170632
-0.00198026
0.000631438
-2.48742
-1.80517
-0.949013
-0.441377
-0.0296956
0.256435
0.456564
0.586502
0.660613
0.691437
0.689551
0.66407
0.622572
0.571171
0.514627
0.456497
0.399335
0.344884
0.294251
0.248072
0.206629
0.16996
0.13793
0.110293
0.0867281
0.0668839
0.0503781
0.0368572
0.0259235
0.0173013
0.0105616
0.00560195
0.00186513
-0.000414492
-0.00214759
-0.00245845
-0.00303582
-0.00181785
-0.00205076
0.000607786
-2.65827
-1.95097
-1.055
-0.528694
-0.104013
0.192088
0.399363
0.534934
0.613643
0.648532
0.650436
0.628617
0.590697
0.54278
0.489582
0.434616
0.380397
0.328638
0.280435
0.236417
0.196877
0.161864
0.13126
0.104841
0.0823067
0.0633271
0.0475397
0.0346117
0.0241615
0.0159321
0.00950626
0.00479818
0.00125713
-0.000865952
-0.00248205
-0.00269653
-0.00320636
-0.0019268
-0.00211898
0.000584513
-2.84865
-2.09651
-1.16704
-0.61807
-0.180234
0.126741
0.341602
0.483185
0.566798
0.606003
0.6119
0.593896
0.559656
0.515274
0.465432
0.413604
0.362275
0.313138
0.267283
0.225344
0.187623
0.154187
0.124939
0.0996741
0.0781149
0.0599527
0.0448443
0.0324767
0.0224838
0.0146264
0.00849778
0.00402864
0.000673632
-0.00130011
-0.00280463
-0.00292664
-0.0033717
-0.00203282
-0.00218517
0.000561539
-3.05343
-2.24144
-1.28385
-0.709183
-0.258036
0.0605098
0.283349
0.431264
0.520031
0.563737
0.573758
0.559651
0.529133
0.488294
0.441793
0.393073
0.344593
0.298034
0.254481
0.214575
0.17863
0.146732
0.118803
0.0946598
0.0740478
0.056679
0.0422293
0.0304051
0.0208556
0.0133587
0.00751834
0.00328093
0.000106361
-0.00172246
-0.0031186
-0.00315085
-0.00353274
-0.00213655
-0.00224927
0.000538544
-3.26988
-2.38673
-1.40478
-0.802019
-0.337199
-0.00649334
0.224722
0.379275
0.473439
0.521827
0.536097
0.525961
0.499194
0.461896
0.418708
0.373051
0.327369
0.283332
0.242027
0.204103
0.169887
0.139484
0.112838
0.089786
0.0700943
0.0534963
0.0396864
0.0283902
0.0192714
0.0121249
0.00656474
0.00255263
-0.000446385
-0.00213421
-0.00342475
-0.00336972
-0.00368973
-0.0022382
-0.0023113
0.000515438
-3.49561
-2.53305
-1.52912
-0.89654
-0.41752
-0.074167
0.16582
0.327296
0.427091
0.480331
0.498968
0.492871
0.469882
0.436118
0.396212
0.353573
0.310633
0.269061
0.229946
0.193948
0.161412
0.13246
0.107057
0.0850618
0.0662615
0.05041
0.0372198
0.0264349
0.0177334
0.0109265
0.00563789
0.00184433
-0.000984265
-0.00253518
-0.00372298
-0.00358323
-0.0038427
-0.00233781
-0.00237129
0.000492192
-3.72882
-2.68104
-1.65628
-0.992714
-0.498831
-0.142422
0.106725
0.275398
0.381043
0.439293
0.462403
0.460402
0.44121
0.410967
0.374309
0.334639
0.294386
0.255219
0.218236
0.184111
0.153204
0.125658
0.101459
0.0804872
0.0625495
0.0474201
0.0348294
0.0245393
0.0162416
0.00976337
0.00473785
0.00115604
-0.00150729
-0.00292543
-0.00401336
-0.00379143
-0.00399167
-0.0024354
-0.00242929
0.000468761
-3.96804
-2.83113
-1.78577
-1.0905
-0.580996
-0.211179
0.0475093
0.223637
0.335341
0.398747
0.426424
0.428569
0.413184
0.386444
0.352996
0.316244
0.27862
0.241799
0.206891
0.174583
0.145257
0.119074
0.09604
0.0760583
0.0589551
0.0445243
0.0325134
0.022702
0.0147949
0.00863484
0.00386401
0.000487317
-0.00201579
-0.00330518
-0.00429603
-0.00399447
-0.00413674
-0.00253105
-0.00248534
0.000445085
-4.21208
-2.98366
-1.91719
-1.18986
-0.663912
-0.280373
-0.0117727
0.172059
0.290019
0.35872
0.39105
0.397382
0.385809
0.36255
0.33227
0.298383
0.26333
0.228795
0.195904
0.16536
0.137565
0.112701
0.0907956
0.0717716
0.0554754
0.0417201
0.03027
0.0209214
0.0133923
0.00754004
0.00301575
-0.000162309
-0.00251009
-0.0036747
-0.0045712
-0.00419249
-0.004278
-0.00262482
-0.0025395
0.000421101
-4.45999
-3.13882
-2.05024
-1.29073
-0.747502
-0.349948
-0.0710783
0.120701
0.245106
0.31923
0.356292
0.366845
0.359084
0.33928
0.312125
0.28105
0.248507
0.2162
0.185268
0.156435
0.130124
0.106537
0.085722
0.067624
0.0521079
0.0390056
0.0280975
0.0191964
0.0120326
0.00647816
0.00219246
-0.000793301
-0.00299055
-0.00403426
-0.00483904
-0.00438564
-0.00441553
-0.00271679
-0.00259181
0.000396744
-4.71095
-3.29676
-2.18469
-1.39306
-0.83172
-0.419865
-0.130378
0.0695857
0.200618
0.280288
0.322154
0.336958
0.333006
0.316629
0.292554
0.264235
0.234145
0.204006
0.174976
0.147803
0.122927
0.100575
0.0808154
0.0636122
0.0488499
0.0363784
0.0259941
0.0175254
0.0107149
0.0054484
0.00139353
-0.00140613
-0.0034575
-0.00438411
-0.00509974
-0.00457406
-0.00454944
-0.00280702
-0.00264232
0.000371949
-4.96429
-3.45752
-2.32039
-1.49681
-0.91654
-0.490097
-0.189657
0.0187277
0.156563
0.241896
0.288635
0.307715
0.307565
0.294585
0.273544
0.247928
0.220233
0.192204
0.165022
0.139456
0.11597
0.0948124
0.0760717
0.0597329
0.0456986
0.0338365
0.023958
0.0159072
0.00943809
0.00444991
0.000618314
-0.00200127
-0.00391132
-0.00472453
-0.00535351
-0.00475791
-0.00467984
-0.0028956
-0.00269109
0.00034665
-5.21941
-3.62112
-2.45727
-1.60193
-1.00196
-0.560632
-0.248911
-0.0318706
0.112939
0.204051
0.255725
0.279106
0.28275
0.273136
0.255085
0.232118
0.206761
0.180785
0.155396
0.131388
0.109246
0.0892428
0.0714867
0.0559826
0.0426513
0.0313775
0.0219876
0.0143403
0.00820099
0.00348185
-0.000133835
-0.00257923
-0.00435237
-0.00505581
-0.00560055
-0.00493734
-0.00480681
-0.00298258
-0.00273817
0.000320783
-5.47582
-3.78754
-2.59528
-1.7084
-1.08799
-0.631472
-0.308149
-0.0822169
0.0697379
0.166739
0.223412
0.251115
0.258545
0.252267
0.237161
0.21679
0.193716
0.169738
0.14609
0.12359
0.10275
0.0838614
0.0670561
0.0523579
0.039705
0.0289991
0.0200808
0.0128232
0.00700251
0.00254333
-0.000863585
-0.00314051
-0.00478103
-0.00537824
-0.00584106
-0.00511252
-0.00493047
-0.00306806
-0.00278361
0.000294286
-5.73307
-3.95675
-2.73444
-1.8162
-1.17467
-0.702633
-0.367391
-0.132329
0.0269408
0.129944
0.191678
0.223725
0.234932
0.23196
0.219757
0.201931
0.181086
0.159052
0.137094
0.116055
0.0964731
0.0786627
0.0627755
0.048855
0.036857
0.0266991
0.0182359
0.0113546
0.00584152
0.00163349
-0.00157161
-0.00368563
-0.00519769
-0.0056921
-0.00607525
-0.0052836
-0.00505094
-0.00315211
-0.00282747
0.000267098
-5.99082
-4.12876
-2.87481
-1.92536
-1.26205
-0.774149
-0.42667
-0.182234
-0.0154779
0.0936409
0.160497
0.196912
0.211889
0.212196
0.202853
0.187525
0.168857
0.148715
0.128397
0.108775
0.0904101
0.0736411
0.0586404
0.0454705
0.0341042
0.024475
0.0164511
0.00993286
0.00471686
0.000751437
-0.00225859
-0.0042151
-0.00560272
-0.00599768
-0.00630335
-0.00545075
-0.00516832
-0.00323479
-0.00286981
0.000239164
-6.2488
-4.30362
-3.01652
-2.03592
-1.35021
-0.846076
-0.486035
-0.231973
-0.0575542
0.0577966
0.129842
0.170649
0.189392
0.192952
0.186432
0.173554
0.157014
0.138716
0.119991
0.101741
0.0845536
0.0687909
0.0546461
0.0422005
0.0314438
0.0223246
0.0147245
0.00855664
0.00362742
-0.000103723
-0.00292518
-0.00472947
-0.0059965
-0.00629527
-0.00652558
-0.00561409
-0.00528272
-0.0033162
-0.00291067
0.000210432
-6.50663
-4.48129
-3.15969
-2.14796
-1.43924
-0.918486
-0.545553
-0.281602
-0.0993355
0.0223699
0.0996741
0.144905
0.167413
0.174203
0.17047
0.16
0.145541
0.12904
0.111863
0.094944
0.0788961
0.0641061
0.0507879
0.0390412
0.0288725
0.0202453
0.0130542
0.00722443
0.00257203
-0.000932917
-0.00357207
-0.00522932
-0.00637937
-0.00658516
-0.00674219
-0.00577379
-0.00539425
-0.00339642
-0.00295012
0.000180854
)
;
boundaryField
{
inlet
{
type freestreamPressure;
freestreamValue uniform 0;
value nonuniform List<scalar>
80
(
0.403721
0.346524
0.287175
0.225667
0.16227
0.0973192
0.0312062
-0.035604
-0.102567
-0.16906
-0.234385
-0.297777
-0.35841
-0.415411
-0.467858
-0.514783
-0.555151
-0.587815
-0.611441
-0.624356
1.12035
1.08186
1.04363
1.00567
0.968014
0.930668
0.893654
0.856989
0.820687
0.784764
0.749231
0.714101
0.679384
0.645089
0.611223
0.577793
0.544808
0.512287
0.480213
0.448406
1.9087
1.86974
1.83079
1.79167
1.75236
1.71291
1.67335
1.63369
1.59396
1.55419
1.51439
1.47459
1.43481
1.39508
1.35543
1.31587
1.27643
1.23714
1.19801
1.15907
3.44755
3.4263
3.38757
3.33433
3.26906
3.19395
3.11102
3.02216
2.92913
2.83354
2.73683
2.64025
2.54488
2.45158
2.36106
2.27385
2.19032
2.11075
2.03533
1.96383
)
;
}
outlet
{
type freestreamPressure;
freestreamValue uniform 0;
value nonuniform List<scalar>
80
(
-5.44832e-08
-6.78707e-08
-8.41449e-08
-1.03994e-07
-1.28043e-07
-1.56897e-07
-1.91094e-07
-2.30963e-07
-2.76417e-07
-3.26632e-07
-3.79617e-07
-4.31653e-07
-4.76677e-07
-5.05846e-07
-5.07761e-07
-4.70327e-07
-3.85579e-07
-2.5834e-07
-1.16527e-07
-1.48867e-08
2.1647e-09
1.93597e-09
1.58428e-09
1.09324e-09
4.42705e-10
-3.88626e-10
-1.42314e-09
-2.68436e-09
-4.19682e-09
-5.98607e-09
-8.07862e-09
-1.05019e-08
-1.32841e-08
-1.64546e-08
-2.00429e-08
-2.40785e-08
-2.85935e-08
-3.36349e-08
-3.92572e-08
-4.5377e-08
7.98488e-13
6.58184e-12
3.68624e-11
9.24034e-11
1.7339e-10
2.79312e-10
4.09022e-10
5.60723e-10
7.31894e-10
9.19235e-10
1.11862e-09
1.32503e-09
1.53251e-09
1.73411e-09
1.9218e-09
2.08647e-09
2.21782e-09
2.3044e-09
2.33347e-09
2.29108e-09
1.26595e-10
9.86446e-10
2.2123e-09
3.38297e-09
4.2723e-09
4.8174e-09
5.0452e-09
5.01189e-09
4.77326e-09
4.37773e-09
3.86904e-09
3.28955e-09
2.68095e-09
2.08246e-09
1.52805e-09
1.04403e-09
6.47668e-10
3.47386e-10
1.44101e-10
3.21603e-11
)
;
}
top
{
type symmetryPlane;
}
bottom
{
type symmetryPlane;
}
cylinder
{
type zeroGradient;
}
frontandback
{
type empty;
}
}
// ************************************************************************* //
| [
"[email protected]"
] | ||
21382a7bcb0c5b4c349531a57cd716a3d8d29d8f | 0efb71923c02367a1194a9b47779e8def49a7b9f | /Oblig1/les/0.37/U | 6068968245d29d734029d8de312790989bf10763 | [] | no_license | andergsv/blandet | bbff505e8663c7547b5412700f51e3f42f088d78 | f648b164ea066c918e297001a8049dd5e6f786f9 | refs/heads/master | 2021-01-17T13:23:44.372215 | 2016-06-14T21:32:00 | 2016-06-14T21:32:00 | 41,495,450 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 189,865 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0.37";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
8800
(
(8.09223 0.387887 0)
(5.44882 0.242717 0)
(3.91241 0.0427484 0)
(3.15519 -0.0154061 0)
(2.80326 -0.0183709 0)
(2.59592 -0.0110291 0)
(2.48629 -0.00539052 0)
(2.37811 -0.00274385 0)
(2.32133 -0.00121754 0)
(2.24466 -0.000113487 0)
(2.22168 -0.00204595 0)
(2.15823 0.00159234 0)
(2.14545 -0.000637764 0)
(2.09246 -0.000112731 0)
(2.0759 0.00186596 0)
(2.01796 0.00127267 0)
(1.99077 6.88706e-05 0)
(1.93969 0.00223689 0)
(1.88405 0.00715398 0)
(1.768 -0.0457506 0)
(10.0876 0.83842 0)
(9.65334 0.868105 0)
(8.87691 0.506328 0)
(8.07569 0.262155 0)
(7.50168 0.137732 0)
(6.9993 0.0823822 0)
(6.70391 0.0545222 0)
(6.39458 0.0397629 0)
(6.22991 0.0307908 0)
(6.01346 0.0257484 0)
(5.94196 0.015003 0)
(5.75359 0.022983 0)
(5.73658 0.0128428 0)
(5.5783 0.0158565 0)
(5.54684 0.0192396 0)
(5.41816 0.0214387 0)
(5.35991 0.0155489 0)
(5.23854 0.0296503 0)
(5.154 0.0273654 0)
(4.99798 -0.00222539 0)
(10.0704 0.631786 0)
(10.6491 0.864593 0)
(10.8791 0.600206 0)
(10.6776 0.373655 0)
(10.4721 0.254076 0)
(10.0744 0.197811 0)
(9.84687 0.153925 0)
(9.49244 0.12223 0)
(9.31878 0.0962361 0)
(9.02143 0.0778911 0)
(8.95021 0.0536725 0)
(8.66132 0.0615366 0)
(8.66706 0.0377296 0)
(8.42554 0.0440503 0)
(8.40027 0.0446712 0)
(8.21601 0.0475604 0)
(8.17161 0.040352 0)
(7.96607 0.0632113 0)
(7.92651 0.0587843 0)
(7.68911 0.0104023 0)
(10.018 0.457646 0)
(10.5508 0.705421 0)
(11.1853 0.544928 0)
(11.3514 0.355078 0)
(11.5778 0.259782 0)
(11.4486 0.228876 0)
(11.4988 0.198044 0)
(11.3027 0.175985 0)
(11.3027 0.15177 0)
(11.0599 0.127651 0)
(11.1134 0.100115 0)
(10.8165 0.107296 0)
(10.8983 0.0696585 0)
(10.6489 0.0825481 0)
(10.6638 0.0757782 0)
(10.4571 0.0809838 0)
(10.4732 0.0674924 0)
(10.2065 0.111923 0)
(10.2348 0.0737737 0)
(9.92016 0.143121 0)
(10.0705 0.347758 0)
(10.3769 0.569487 0)
(11.0716 0.457852 0)
(11.2791 0.294231 0)
(11.6694 0.202431 0)
(11.673 0.201535 0)
(11.8821 0.175675 0)
(11.8212 0.168632 0)
(12.0134 0.152829 0)
(11.8624 0.131856 0)
(12.0667 0.101918 0)
(11.8993 0.132206 0)
(12.043 0.0692528 0)
(11.9174 0.108488 0)
(12.0186 0.0905887 0)
(11.865 0.105055 0)
(11.9581 0.0772017 0)
(11.7675 0.151201 0)
(11.8646 0.0880176 0)
(11.4935 0.192724 0)
(10.0814 0.252299 0)
(10.2921 0.454414 0)
(10.9113 0.376673 0)
(11.1746 0.259283 0)
(11.5236 0.149835 0)
(11.6313 0.153225 0)
(11.7972 0.14038 0)
(11.7928 0.133988 0)
(12.0379 0.135163 0)
(11.9849 0.116765 0)
(12.1554 0.0812027 0)
(12.1642 0.122108 0)
(12.2587 0.0577907 0)
(12.252 0.0828982 0)
(12.4183 0.096556 0)
(12.3697 0.0871691 0)
(12.4534 0.087336 0)
(12.4578 0.124713 0)
(12.5541 0.109094 0)
(12.3318 0.136811 0)
(10.0253 0.177041 0)
(10.2816 0.358849 0)
(10.7779 0.27728 0)
(11.0868 0.210716 0)
(11.3835 0.107714 0)
(11.5899 0.127664 0)
(11.7043 0.118517 0)
(11.7268 0.0940925 0)
(11.8898 0.0946389 0)
(11.9349 0.0957443 0)
(12.0511 0.0518021 0)
(12.1303 0.10957 0)
(12.2034 0.0477605 0)
(12.266 0.0624275 0)
(12.3502 0.0718466 0)
(12.4167 0.0811745 0)
(12.402 0.0579248 0)
(12.5752 0.0938624 0)
(12.6411 0.0839512 0)
(12.3697 0.137354 0)
(9.99287 0.11582 0)
(10.2799 0.245241 0)
(10.689 0.208014 0)
(11.0036 0.175896 0)
(11.2995 0.0542543 0)
(11.5306 0.0708946 0)
(11.6205 0.094668 0)
(11.7228 0.071172 0)
(11.7729 0.0766837 0)
(11.8954 0.0705824 0)
(11.9775 0.0285334 0)
(12.0303 0.0838808 0)
(12.1457 0.0241439 0)
(12.2314 0.0387818 0)
(12.2699 0.0663123 0)
(12.2994 0.0609035 0)
(12.4422 0.0375266 0)
(12.4656 0.043345 0)
(12.5449 0.0890081 0)
(12.3148 0.121667 0)
(10.0102 0.0665316 0)
(10.2391 0.148157 0)
(10.5944 0.121264 0)
(10.9861 0.105198 0)
(11.3481 0.0239306 0)
(11.4247 0.0538818 0)
(11.5075 0.0661756 0)
(11.7279 0.0302356 0)
(11.7124 0.0480749 0)
(11.8695 0.0294225 0)
(11.9492 0.0213484 0)
(11.9558 0.0651387 0)
(12.123 0.00714075 0)
(12.1736 0.0231463 0)
(12.2231 0.0623643 0)
(12.2973 0.0246825 0)
(12.366 0.00249608 0)
(12.4333 0.0334867 0)
(12.3986 0.0651966 0)
(12.4483 0.0525547 0)
(9.99247 0.020597 0)
(10.2327 0.0512854 0)
(10.5972 0.0454358 0)
(10.962 0.0281185 0)
(11.2954 -0.00453232 0)
(11.3475 0.0428451 0)
(11.566 0.0141437 0)
(11.7241 -0.00530395 0)
(11.6711 0.0349359 0)
(11.8679 -0.000622742 0)
(11.8988 0.00898116 0)
(11.9266 0.0385795 0)
(12.0853 -0.0228876 0)
(12.1305 0.00452401 0)
(12.2266 0.0439114 0)
(12.3293 0.00853674 0)
(12.3292 -0.0115677 0)
(12.3645 0.00829294 0)
(12.4285 0.0229871 0)
(12.3683 0.0322914 0)
(9.97918 -0.0186892 0)
(10.2577 -0.0504469 0)
(10.5947 -0.0442094 0)
(10.9572 -0.0321655 0)
(11.2558 -0.0191669 0)
(11.3939 0.00315177 0)
(11.6221 -0.0320703 0)
(11.6426 -0.0219205 0)
(11.6763 0.00132825 0)
(11.8791 -0.0369813 0)
(11.8557 0.00594185 0)
(11.9805 0.0182106 0)
(12.1001 -0.0391712 0)
(12.1028 -0.0143899 0)
(12.23 0.012124 0)
(12.3083 -0.0116725 0)
(12.3492 -0.0237671 0)
(12.3754 -0.0191874 0)
(12.3947 0.00652816 0)
(12.309 0.0512575 0)
(9.99763 -0.0673004 0)
(10.2635 -0.151819 0)
(10.6016 -0.110602 0)
(10.9925 -0.0974534 0)
(11.269 -0.061145 0)
(11.4328 -0.0349861 0)
(11.6144 -0.0529151 0)
(11.6515 -0.0436781 0)
(11.752 -0.0339768 0)
(11.8471 -0.0568992 0)
(11.8762 -0.0158145 0)
(12.0491 -0.0225244 0)
(12.0915 -0.0465957 0)
(12.1504 -0.0343927 0)
(12.2289 -0.00552992 0)
(12.3202 -0.0346295 0)
(12.3758 -0.0445742 0)
(12.404 -0.0327794 0)
(12.4131 -0.016956 0)
(12.4095 -0.0249628 0)
(10.0078 -0.116737 0)
(10.266 -0.247424 0)
(10.6557 -0.20498 0)
(11.0557 -0.160696 0)
(11.3048 -0.0774566 0)
(11.4886 -0.068683 0)
(11.6353 -0.0904476 0)
(11.7059 -0.0812279 0)
(11.8103 -0.0573783 0)
(11.8689 -0.0772894 0)
(11.9556 -0.044092 0)
(12.0638 -0.0390611 0)
(12.1348 -0.0562141 0)
(12.2025 -0.0526363 0)
(12.2626 -0.0288146 0)
(12.3782 -0.059582 0)
(12.4132 -0.0597411 0)
(12.4458 -0.0599435 0)
(12.4841 -0.0514611 0)
(12.4517 -0.0337389 0)
(10.0264 -0.17856 0)
(10.2927 -0.352259 0)
(10.7555 -0.281575 0)
(11.1057 -0.208284 0)
(11.3925 -0.123475 0)
(11.5558 -0.112506 0)
(11.703 -0.114411 0)
(11.7658 -0.108618 0)
(11.857 -0.0823257 0)
(11.9436 -0.1024 0)
(12.0485 -0.0632122 0)
(12.1162 -0.0702793 0)
(12.2202 -0.0734059 0)
(12.2638 -0.0721166 0)
(12.3422 -0.047267 0)
(12.4264 -0.0827872 0)
(12.4747 -0.0737713 0)
(12.5078 -0.0844735 0)
(12.5512 -0.0803316 0)
(12.5032 -0.0634586 0)
(10.0704 -0.254474 0)
(10.3064 -0.451195 0)
(10.8911 -0.375689 0)
(11.1888 -0.256926 0)
(11.544 -0.156856 0)
(11.5983 -0.147702 0)
(11.8118 -0.150434 0)
(11.8168 -0.138238 0)
(11.9809 -0.111224 0)
(12.0057 -0.132111 0)
(12.1531 -0.0869606 0)
(12.1549 -0.0908674 0)
(12.2878 -0.0851521 0)
(12.271 -0.0914582 0)
(12.3837 -0.0641884 0)
(12.3886 -0.105601 0)
(12.4631 -0.0852187 0)
(12.4438 -0.114367 0)
(12.4863 -0.102874 0)
(12.3762 -0.113886 0)
(10.0638 -0.350312 0)
(10.3785 -0.562374 0)
(11.0688 -0.460879 0)
(11.3005 -0.298821 0)
(11.6629 -0.206843 0)
(11.6555 -0.189603 0)
(11.8965 -0.18642 0)
(11.8075 -0.163215 0)
(12.0008 -0.141693 0)
(11.8862 -0.147215 0)
(12.0499 -0.106192 0)
(11.9134 -0.104427 0)
(12.0506 -0.0988582 0)
(11.9017 -0.100347 0)
(12.0272 -0.0759851 0)
(11.8693 -0.11 0)
(11.9512 -0.0885429 0)
(11.7899 -0.122644 0)
(11.8121 -0.105923 0)
(11.5834 -0.135486 0)
(10.0133 -0.458084 0)
(10.553 -0.703127 0)
(11.1884 -0.548051 0)
(11.3569 -0.355543 0)
(11.5674 -0.257097 0)
(11.4483 -0.225876 0)
(11.5056 -0.20671 0)
(11.2813 -0.172447 0)
(11.3254 -0.144473 0)
(11.0501 -0.137252 0)
(11.1052 -0.101134 0)
(10.8367 -0.0915223 0)
(10.8941 -0.083836 0)
(10.6237 -0.0837218 0)
(10.7095 -0.0621229 0)
(10.4221 -0.0885475 0)
(10.4983 -0.0678772 0)
(10.2105 -0.105291 0)
(10.236 -0.0795427 0)
(9.91285 -0.144896 0)
(10.0656 -0.632637 0)
(10.653 -0.862639 0)
(10.8786 -0.601351 0)
(10.6778 -0.374165 0)
(10.4668 -0.254182 0)
(10.0798 -0.196003 0)
(9.84486 -0.157385 0)
(9.48143 -0.120322 0)
(9.34025 -0.0920694 0)
(9.00308 -0.0824699 0)
(8.95437 -0.0576059 0)
(8.66996 -0.0493567 0)
(8.66819 -0.0462578 0)
(8.40249 -0.0467162 0)
(8.44911 -0.0350314 0)
(8.16878 -0.0500636 0)
(8.22584 -0.044254 0)
(7.93265 -0.062012 0)
(7.95403 -0.0600604 0)
(7.62706 -0.0764774 0)
(10.0855 -0.838599 0)
(9.65493 -0.867486 0)
(8.87612 -0.506875 0)
(8.07543 -0.262407 0)
(7.49922 -0.137346 0)
(7.00384 -0.0814029 0)
(6.70011 -0.0562905 0)
(6.3906 -0.0399172 0)
(6.24195 -0.0276535 0)
(6.00254 -0.0279463 0)
(5.94574 -0.0182652 0)
(5.75554 -0.0155595 0)
(5.74323 -0.0163679 0)
(5.56177 -0.0192 0)
(5.57973 -0.0127202 0)
(5.38639 -0.0225633 0)
(5.40858 -0.0202362 0)
(5.19187 -0.0284107 0)
(5.19749 -0.0321121 0)
(4.92653 -0.0111548 0)
(8.09176 -0.388019 0)
(5.4489 -0.242569 0)
(3.91253 -0.0427814 0)
(3.1551 0.0152783 0)
(2.8022 0.0183114 0)
(2.59794 0.0113915 0)
(2.48534 0.00498861 0)
(2.37577 0.00242996 0)
(2.32498 0.00247518 0)
(2.24445 -0.000592341 0)
(2.21978 0.000796964 0)
(2.15835 0.00073719 0)
(2.15272 -0.000160666 0)
(2.08534 -0.00136185 0)
(2.0845 0.000567215 0)
(2.01326 -0.00243686 0)
(2.00594 -0.0010307 0)
(1.91923 -0.00297507 0)
(1.89205 -0.00342838 0)
(1.75313 0.0101982 0)
(2.02195 0.00457601 0)
(2.12482 0.0309827 0)
(2.32509 -0.0320649 0)
(2.46138 -0.0691586 0)
(2.58999 -0.0789276 0)
(2.65214 -0.0629647 0)
(2.72912 -0.0582342 0)
(2.7421 -0.0255373 0)
(2.74843 -0.0184861 0)
(2.75298 -0.000906156 0)
(2.73231 0.0161499 0)
(2.74317 0.0445504 0)
(2.75147 0.0776743 0)
(2.81675 0.118384 0)
(2.88224 0.158405 0)
(3.01487 0.19199 0)
(3.14467 0.210649 0)
(3.30249 0.204575 0)
(3.42657 0.171652 0)
(3.56333 0.128079 0)
(3.65099 0.0714791 0)
(3.71186 0.0240584 0)
(3.72928 0.00307892 0)
(3.80153 -0.0314595 0)
(3.82822 -0.0781417 0)
(3.81283 -0.113842 0)
(3.72707 -0.108171 0)
(3.66689 -0.0891492 0)
(3.59888 -0.0481218 0)
(3.58994 0.00882764 0)
(3.59503 0.078621 0)
(3.63383 0.155956 0)
(3.68898 0.226874 0)
(3.77071 0.299004 0)
(3.85362 0.367255 0)
(3.98828 0.406493 0)
(4.10934 0.46537 0)
(4.28529 0.473802 0)
(4.48467 0.448467 0)
(4.6634 0.443598 0)
(4.85356 0.346527 0)
(5.00852 0.248538 0)
(5.15302 0.161477 0)
(5.18484 -0.0114649 0)
(5.30844 -0.121705 0)
(5.24012 -0.226905 0)
(5.29219 -0.351892 0)
(5.25564 -0.406382 0)
(5.23269 -0.465759 0)
(5.2673 -0.485142 0)
(5.25963 -0.495146 0)
(5.31837 -0.488897 0)
(5.38747 -0.449385 0)
(5.48278 -0.433056 0)
(5.59778 -0.384935 0)
(5.74129 -0.34154 0)
(5.93756 -0.314091 0)
(6.08273 -0.29501 0)
(6.30665 -0.280104 0)
(6.51722 -0.293661 0)
(6.73035 -0.316706 0)
(6.93695 -0.359019 0)
(7.15406 -0.424803 0)
(7.34137 -0.47019 0)
(7.56213 -0.531427 0)
(7.75217 -0.599635 0)
(7.99601 -0.687532 0)
(8.15356 -0.696037 0)
(8.39188 -0.765446 0)
(8.49173 -0.765086 0)
(8.776 -0.824057 0)
(8.87104 -0.763406 0)
(9.12215 -0.766804 0)
(9.29811 -0.795004 0)
(9.47643 -0.697869 0)
(9.7178 -0.762679 0)
(9.88931 -0.706298 0)
(10.0957 -0.742771 0)
(10.3264 -0.808821 0)
(10.4542 -0.758785 0)
(10.6816 -0.896594 0)
(10.8014 -0.871697 0)
(11.0101 -1.00732 0)
(11.1261 -1.08094 0)
(11.2394 -1.11134 0)
(11.3809 -1.25129 0)
(11.4543 -1.24095 0)
(11.6108 -1.42038 0)
(11.6881 -1.43111 0)
(11.7989 -1.56045 0)
(11.9273 -1.71873 0)
(11.9406 -1.75687 0)
(12.1215 -2.01476 0)
(12.0998 -2.00623 0)
(12.2711 -2.29963 0)
(12.2378 -2.44018 0)
(12.19 -2.54715 0)
(12.2554 -2.88571 0)
(11.9774 -2.87755 0)
(11.9878 -3.1706 0)
(11.6444 -3.26938 0)
(11.3182 -3.28158 0)
(11.1955 -3.54813 0)
(10.5648 -3.3889 0)
(10.396 -3.50649 0)
(10.1343 -3.58262 0)
(9.50873 -3.31152 0)
(9.65073 -3.54854 0)
(9.2697 -3.45468 0)
(8.82722 -3.25398 0)
(9.04436 -3.71707 0)
(8.6222 -3.70242 0)
(7.93968 -3.42153 0)
(8.05356 -4.0668 0)
(7.81202 -4.28969 0)
(6.53454 -3.60171 0)
(5.47201 -3.18546 0)
(4.92345 -3.51446 0)
(4.77585 -4.23628 0)
(4.93287 -5.19928 0)
(5.46423 -6.12938 0)
(5.97512 -6.63689 0)
(6.29046 -6.90978 0)
(6.63795 -6.78416 0)
(6.83596 -6.48146 0)
(7.17309 -5.97286 0)
(7.42198 -5.17281 0)
(7.5263 -4.29127 0)
(7.75977 -3.42995 0)
(7.9975 -3.0665 0)
(8.4376 -2.65776 0)
(8.81606 -1.69465 0)
(9.16781 -0.554963 0)
(9.08518 0.0947084 0)
(9.21114 0.668365 0)
(9.46634 1.68252 0)
(9.70933 3.08471 0)
(9.6409 4.0838 0)
(9.50306 4.57407 0)
(9.4851 4.86674 0)
(9.49446 5.38638 0)
(9.99396 6.16255 0)
(10.0895 6.78827 0)
(10.1208 7.15296 0)
(10.0389 7.18347 0)
(9.69193 6.82779 0)
(9.66023 6.64949 0)
(9.65942 6.22575 0)
(9.30176 5.67833 0)
(9.7452 5.49445 0)
(9.45617 4.93645 0)
(9.35976 4.33695 0)
(9.61425 4.07089 0)
(9.15611 3.58448 0)
(9.41406 3.05313 0)
(8.78453 2.79266 0)
(9.13729 2.51213 0)
(8.29189 2.33074 0)
(8.7225 2.22029 0)
(7.68728 2.04787 0)
(8.17091 2.23112 0)
(7.36192 2.37881 0)
(7.16828 2.33835 0)
(6.72122 2.57309 0)
(6.44572 2.87702 0)
(6.3812 3.2889 0)
(5.96098 3.58587 0)
(5.88742 4.03067 0)
(5.6565 4.20645 0)
(5.36123 4.63112 0)
(5.53808 5.13189 0)
(5.28568 5.27657 0)
(5.51753 5.54332 0)
(5.55243 5.83375 0)
(5.69174 4.93991 0)
(5.29774 5.79961 0)
(7.24338 4.14668 0)
(3.91826 5.08566 0)
(9.50032 2.60266 0)
(3.17339 4.26284 0)
(10.7974 1.00985 0)
(3.6608 3.57225 0)
(10.7991 -0.422287 0)
(4.60298 2.89372 0)
(10.25 -1.71035 0)
(5.23461 1.83628 0)
(9.20684 -2.70296 0)
(5.56701 0.683457 0)
(8.95671 -3.4191 0)
(5.884 -0.114617 0)
(8.46524 -3.36028 0)
(4.84665 -0.0863453 0)
(6.69067 -4.19408 0)
(3.2693 -0.717468 0)
(5.49734 -5.12667 0)
(2.79147 -1.00336 0)
(4.67474 -4.69875 0)
(2.41827 -0.609322 0)
(4.36848 -3.02072 0)
(4.47579 1.51185 0)
(5.07 0.0123533 0)
(5.04537 0.0285035 0)
(5.07962 -0.0107779 0)
(5.15023 -0.0673131 0)
(5.23617 -0.100266 0)
(5.29406 -0.103372 0)
(5.32841 -0.0876676 0)
(5.3346 -0.0596506 0)
(5.31486 -0.0364423 0)
(5.30908 -0.0152105 0)
(5.2769 0.00395849 0)
(5.26512 0.0297738 0)
(5.245 0.0598989 0)
(5.2566 0.0936353 0)
(5.26933 0.123852 0)
(5.30537 0.152683 0)
(5.34858 0.162865 0)
(5.40311 0.159591 0)
(5.45497 0.140621 0)
(5.50578 0.100859 0)
(5.54839 0.0654096 0)
(5.57985 0.0183764 0)
(5.58259 -0.00793104 0)
(5.59613 -0.0369027 0)
(5.60304 -0.0787103 0)
(5.60166 -0.0918696 0)
(5.54503 -0.096616 0)
(5.50641 -0.0812931 0)
(5.45791 -0.0456532 0)
(5.44978 -0.00994652 0)
(5.44099 0.0629935 0)
(5.45659 0.107112 0)
(5.47509 0.175622 0)
(5.52922 0.239386 0)
(5.55667 0.264804 0)
(5.66578 0.337662 0)
(5.71144 0.343152 0)
(5.8474 0.34837 0)
(5.96618 0.358509 0)
(6.08446 0.28694 0)
(6.25646 0.244602 0)
(6.328 0.163928 0)
(6.51465 0.0480916 0)
(6.57099 -0.0542366 0)
(6.6458 -0.170054 0)
(6.77589 -0.269636 0)
(6.75368 -0.37157 0)
(6.892 -0.447049 0)
(6.88338 -0.48773 0)
(6.99405 -0.559748 0)
(7.05624 -0.543352 0)
(7.13906 -0.566868 0)
(7.27264 -0.564606 0)
(7.37589 -0.531868 0)
(7.51769 -0.514504 0)
(7.67181 -0.493012 0)
(7.85613 -0.468191 0)
(8.01792 -0.470968 0)
(8.20728 -0.4622 0)
(8.45169 -0.488805 0)
(8.59657 -0.506341 0)
(8.85007 -0.561041 0)
(9.02687 -0.598058 0)
(9.24241 -0.646985 0)
(9.41016 -0.71042 0)
(9.64393 -0.74423 0)
(9.83245 -0.827452 0)
(9.99548 -0.83152 0)
(10.205 -0.916231 0)
(10.329 -0.900924 0)
(10.5419 -0.94229 0)
(10.6352 -0.946432 0)
(10.8386 -0.910311 0)
(10.9909 -0.977688 0)
(11.1204 -0.863203 0)
(11.2798 -0.931989 0)
(11.4437 -0.897955 0)
(11.5834 -0.906406 0)
(11.7309 -0.935273 0)
(11.8313 -0.918901 0)
(11.9832 -1.02113 0)
(12.0713 -0.978696 0)
(12.1996 -1.10433 0)
(12.2522 -1.11518 0)
(12.3405 -1.1946 0)
(12.3787 -1.26279 0)
(12.4362 -1.28583 0)
(12.5227 -1.45737 0)
(12.4597 -1.43061 0)
(12.5967 -1.63303 0)
(12.5246 -1.68737 0)
(12.5897 -1.80878 0)
(12.5828 -1.99509 0)
(12.4715 -2.02885 0)
(12.5736 -2.3336 0)
(12.2844 -2.35271 0)
(12.3434 -2.58358 0)
(12.0925 -2.73253 0)
(11.839 -2.78305 0)
(11.7675 -3.06393 0)
(11.2142 -2.96342 0)
(11.1407 -3.16979 0)
(10.8126 -3.247 0)
(10.3032 -3.05722 0)
(10.3976 -3.36188 0)
(9.90104 -3.14286 0)
(9.65543 -3.08731 0)
(9.78315 -3.38523 0)
(9.13374 -3.08447 0)
(9.15197 -3.26872 0)
(9.13357 -3.58999 0)
(8.26092 -3.11722 0)
(7.96942 -3.23418 0)
(7.94717 -3.86975 0)
(7.12459 -3.55982 0)
(5.76647 -2.7643 0)
(4.67657 -2.48934 0)
(4.12517 -3.12596 0)
(4.17807 -4.32408 0)
(4.5272 -5.65726 0)
(4.85429 -6.54617 0)
(5.14077 -6.93047 0)
(5.40178 -6.99222 0)
(5.63807 -6.88038 0)
(5.91949 -6.54576 0)
(6.26255 -5.93192 0)
(6.42346 -5.14063 0)
(6.49366 -4.29337 0)
(6.82436 -3.51003 0)
(7.1682 -3.1727 0)
(7.36734 -2.74026 0)
(7.6327 -1.85405 0)
(7.8821 -0.702548 0)
(7.90986 0.0354098 0)
(8.17334 0.619149 0)
(8.36752 1.6088 0)
(8.54046 2.98333 0)
(8.65296 4.03309 0)
(8.5758 4.51349 0)
(8.57675 4.83399 0)
(8.65505 5.18449 0)
(9.02658 5.88002 0)
(9.30101 6.59112 0)
(9.33387 7.09321 0)
(9.36518 7.21993 0)
(9.22214 6.98169 0)
(8.91995 6.59601 0)
(8.95589 6.21941 0)
(8.91218 5.73269 0)
(8.62195 5.37466 0)
(9.13832 4.94018 0)
(8.63712 4.48617 0)
(9.04582 3.95246 0)
(8.81919 3.69734 0)
(8.82183 3.28123 0)
(8.75745 2.81528 0)
(8.47868 2.75095 0)
(8.72449 2.50029 0)
(7.99839 2.33413 0)
(8.49453 2.28232 0)
(7.54438 2.42193 0)
(8.08664 2.62537 0)
(7.18351 2.72081 0)
(7.22847 2.82925 0)
(6.75615 3.07644 0)
(6.78479 3.32903 0)
(6.54282 3.93575 0)
(6.42691 4.03885 0)
(6.45514 4.53187 0)
(6.10847 4.71782 0)
(6.06709 5.04551 0)
(6.31925 5.50291 0)
(6.28445 5.15116 0)
(5.95826 6.05724 0)
(7.96794 4.72895 0)
(4.37543 5.75454 0)
(10.3238 3.52721 0)
(3.649 5.33306 0)
(11.3887 1.90985 0)
(4.46921 4.47216 0)
(11.1302 0.556591 0)
(5.29419 3.6908 0)
(10.6062 -0.592655 0)
(5.87957 2.82135 0)
(10.3339 -1.24595 0)
(5.97572 2.04323 0)
(9.69789 -1.9136 0)
(5.999 0.435934 0)
(9.67433 -2.90462 0)
(5.5106 0.165546 0)
(8.5555 -2.5737 0)
(3.69585 0.881548 0)
(7.47889 -2.72225 0)
(2.60512 -0.409329 0)
(6.65401 -3.1909 0)
(2.22434 -0.741033 0)
(5.58249 -2.81768 0)
(2.56064 -0.234785 0)
(4.76181 -2.34702 0)
(3.36329 0.103283 0)
(7.71318 -0.00474977 0)
(7.69452 -0.027772 0)
(7.68688 -0.0777008 0)
(7.73769 -0.109939 0)
(7.80294 -0.118452 0)
(7.87854 -0.106655 0)
(7.90173 -0.0802407 0)
(7.91788 -0.0472709 0)
(7.88586 -0.0111226 0)
(7.86965 0.0136958 0)
(7.82979 0.0377287 0)
(7.80606 0.0558476 0)
(7.77866 0.0769385 0)
(7.76809 0.100671 0)
(7.7641 0.112597 0)
(7.77212 0.140147 0)
(7.79385 0.132623 0)
(7.81712 0.139306 0)
(7.85004 0.116411 0)
(7.87259 0.0896805 0)
(7.89711 0.0636435 0)
(7.90624 0.0181916 0)
(7.9078 -0.000189309 0)
(7.89529 -0.0358565 0)
(7.89416 -0.0455632 0)
(7.86186 -0.0758276 0)
(7.83217 -0.0644195 0)
(7.78225 -0.0495718 0)
(7.72871 -0.0283395 0)
(7.73336 0.0288497 0)
(7.66342 0.0445323 0)
(7.72543 0.119583 0)
(7.6579 0.157945 0)
(7.72953 0.189879 0)
(7.73554 0.26328 0)
(7.75868 0.252295 0)
(7.8636 0.286803 0)
(7.87162 0.296178 0)
(8.01163 0.235589 0)
(8.06236 0.229041 0)
(8.20672 0.152701 0)
(8.27484 0.0600023 0)
(8.383 -0.015187 0)
(8.51872 -0.123776 0)
(8.53121 -0.236823 0)
(8.69996 -0.339426 0)
(8.7188 -0.398893 0)
(8.82146 -0.517827 0)
(8.90263 -0.547664 0)
(8.97064 -0.594527 0)
(9.06936 -0.639973 0)
(9.17285 -0.63655 0)
(9.27379 -0.660376 0)
(9.40018 -0.636689 0)
(9.5348 -0.64175 0)
(9.66582 -0.62517 0)
(9.81515 -0.612483 0)
(10.0068 -0.617062 0)
(10.1151 -0.627425 0)
(10.3505 -0.644883 0)
(10.4774 -0.657874 0)
(10.7074 -0.717955 0)
(10.7979 -0.746919 0)
(11.0463 -0.78654 0)
(11.1462 -0.856194 0)
(11.3519 -0.870403 0)
(11.4531 -0.958646 0)
(11.6376 -0.969091 0)
(11.7498 -1.03427 0)
(11.8474 -1.04443 0)
(11.9909 -1.07175 0)
(12.0519 -1.08198 0)
(12.1969 -1.0436 0)
(12.2616 -1.08503 0)
(12.3786 -0.996894 0)
(12.4339 -1.04666 0)
(12.5518 -0.973888 0)
(12.6298 -1.01798 0)
(12.6734 -0.991414 0)
(12.7787 -1.0093 0)
(12.7954 -1.05799 0)
(12.8643 -1.03793 0)
(12.9101 -1.14413 0)
(12.8749 -1.12819 0)
(12.9614 -1.2486 0)
(12.849 -1.25314 0)
(12.9232 -1.3526 0)
(12.8453 -1.43784 0)
(12.7835 -1.46388 0)
(12.8606 -1.6514 0)
(12.6223 -1.63235 0)
(12.7559 -1.86339 0)
(12.4931 -1.92127 0)
(12.4868 -2.03389 0)
(12.3969 -2.2293 0)
(12.0889 -2.24334 0)
(12.1872 -2.48482 0)
(11.6491 -2.511 0)
(11.6588 -2.64107 0)
(11.3722 -2.78704 0)
(10.9391 -2.73626 0)
(11.0368 -2.95132 0)
(10.4707 -2.87933 0)
(10.3794 -2.90831 0)
(10.3465 -3.07432 0)
(9.76647 -2.89 0)
(9.92989 -3.09618 0)
(9.68117 -3.15459 0)
(9.22876 -2.94309 0)
(9.36629 -3.17215 0)
(8.8248 -3.09175 0)
(8.21694 -2.75885 0)
(8.05234 -3.08421 0)
(7.64649 -3.31359 0)
(6.53851 -2.65462 0)
(4.96355 -1.74251 0)
(3.80704 -1.77524 0)
(3.63125 -3.07606 0)
(3.71866 -4.58096 0)
(3.78137 -5.87822 0)
(4.01579 -6.7313 0)
(4.39329 -7.13115 0)
(4.74796 -7.28511 0)
(4.96777 -7.28001 0)
(5.32881 -6.98514 0)
(5.56218 -6.32268 0)
(5.53949 -5.45116 0)
(5.68278 -4.56272 0)
(5.95184 -3.87068 0)
(6.21451 -3.35215 0)
(6.46967 -2.75803 0)
(6.62213 -1.84915 0)
(6.64796 -0.794907 0)
(6.87875 -0.109898 0)
(7.01953 0.486547 0)
(7.37623 1.48218 0)
(7.37617 2.803 0)
(7.55617 3.98523 0)
(7.47288 4.55513 0)
(7.48166 4.83268 0)
(7.68033 5.14227 0)
(7.89667 5.69746 0)
(8.29909 6.53734 0)
(8.45706 7.09195 0)
(8.45953 7.25948 0)
(8.40146 7.16454 0)
(8.3778 6.75394 0)
(8.07099 6.29782 0)
(8.31844 5.86921 0)
(8.07615 5.36569 0)
(8.0758 4.96447 0)
(8.5193 4.34777 0)
(7.84754 4.13536 0)
(8.70999 3.59133 0)
(8.02208 3.32452 0)
(8.60649 3.0015 0)
(8.06498 2.70755 0)
(8.34087 2.64789 0)
(8.06341 2.50041 0)
(8.04223 2.43964 0)
(7.93414 2.54142 0)
(7.69717 2.88111 0)
(7.75802 2.96657 0)
(7.18468 2.9726 0)
(7.35495 3.33569 0)
(6.93187 3.40629 0)
(7.18804 3.88494 0)
(7.03627 4.28238 0)
(6.91836 4.41309 0)
(7.11721 5.02358 0)
(7.14182 4.71827 0)
(6.48472 5.73659 0)
(8.75658 4.73592 0)
(5.22866 6.09969 0)
(11.0105 4.26519 0)
(4.57848 6.24718 0)
(12.0721 2.79258 0)
(5.11238 5.55678 0)
(11.6715 1.20376 0)
(5.88296 4.53798 0)
(11.268 0.485798 0)
(6.41252 3.65167 0)
(11.1907 -0.36637 0)
(6.27982 2.61479 0)
(10.7912 -0.819003 0)
(6.21436 1.80271 0)
(10.7688 -1.41436 0)
(6.11028 -0.013718 0)
(10.1137 -2.10317 0)
(3.79664 0.419969 0)
(8.77829 -1.32065 0)
(2.25387 0.468047 0)
(8.66646 -1.86659 0)
(2.55369 -0.997392 0)
(7.96367 -2.88068 0)
(2.77033 -1.0939 0)
(7.32178 -2.67958 0)
(3.21428 -1.19472 0)
(7.2146 -1.28299 0)
(4.00686 -0.881728 0)
(9.95684 -0.0272678 0)
(9.94597 -0.153053 0)
(9.94197 -0.215658 0)
(10.0089 -0.232218 0)
(10.051 -0.196484 0)
(10.1183 -0.14867 0)
(10.1155 -0.088133 0)
(10.1353 -0.0415961 0)
(10.091 0.00179149 0)
(10.0729 0.0300986 0)
(10.0224 0.0465298 0)
(10.0067 0.0674022 0)
(9.97379 0.0775598 0)
(9.97702 0.110782 0)
(9.97966 0.107949 0)
(9.97072 0.145136 0)
(10.019 0.125897 0)
(9.96969 0.119361 0)
(10.0661 0.116088 0)
(9.98749 0.0571379 0)
(10.0835 0.0751614 0)
(10.0263 0.0103487 0)
(10.0529 0.00186625 0)
(10.0505 -0.00675694 0)
(9.99922 -0.0604032 0)
(10.0336 -0.0196934 0)
(9.94519 -0.065727 0)
(9.95172 -0.0132486 0)
(9.88658 0.0110714 0)
(9.87301 0.0185203 0)
(9.84845 0.10171 0)
(9.84883 0.0902469 0)
(9.84109 0.156018 0)
(9.85333 0.201583 0)
(9.89605 0.188295 0)
(9.87976 0.25818 0)
(9.99976 0.231975 0)
(9.98271 0.222872 0)
(10.1048 0.21015 0)
(10.1564 0.148336 0)
(10.2408 0.0803946 0)
(10.3301 0.0137877 0)
(10.3943 -0.0952415 0)
(10.5045 -0.205408 0)
(10.5355 -0.265671 0)
(10.6493 -0.410578 0)
(10.6944 -0.462801 0)
(10.76 -0.544059 0)
(10.8365 -0.622358 0)
(10.8947 -0.648059 0)
(10.9543 -0.699654 0)
(11.0567 -0.717092 0)
(11.11 -0.737208 0)
(11.2161 -0.724684 0)
(11.3148 -0.751617 0)
(11.4158 -0.726219 0)
(11.5119 -0.728932 0)
(11.6713 -0.740251 0)
(11.7399 -0.750966 0)
(11.9247 -0.749145 0)
(11.9981 -0.797317 0)
(12.1831 -0.828636 0)
(12.2245 -0.857601 0)
(12.4261 -0.895466 0)
(12.4392 -0.971145 0)
(12.6207 -0.97059 0)
(12.6346 -1.0488 0)
(12.7723 -1.07434 0)
(12.802 -1.11426 0)
(12.8602 -1.12042 0)
(12.9377 -1.15272 0)
(12.9281 -1.1147 0)
(13.0339 -1.11104 0)
(12.9945 -1.10615 0)
(13.0889 -1.04684 0)
(13.044 -1.06723 0)
(13.1067 -1.0038 0)
(13.1185 -1.04008 0)
(13.0795 -1.00361 0)
(13.1565 -1.06073 0)
(13.0627 -1.02154 0)
(13.1323 -1.08741 0)
(13.0731 -1.11911 0)
(13.0131 -1.12119 0)
(13.0356 -1.24661 0)
(12.8476 -1.20429 0)
(12.9558 -1.3469 0)
(12.6812 -1.33867 0)
(12.7615 -1.45563 0)
(12.597 -1.54852 0)
(12.4196 -1.59576 0)
(12.5186 -1.78769 0)
(12.1121 -1.79809 0)
(12.2718 -1.98125 0)
(11.9008 -2.05883 0)
(11.7952 -2.19194 0)
(11.7187 -2.32962 0)
(11.2691 -2.3568 0)
(11.4155 -2.5459 0)
(10.9534 -2.54179 0)
(10.8659 -2.6521 0)
(10.808 -2.76145 0)
(10.3642 -2.69038 0)
(10.5037 -2.87667 0)
(10.2052 -2.86742 0)
(9.96605 -2.84784 0)
(10.0755 -3.01603 0)
(9.61634 -2.86158 0)
(9.46588 -2.80402 0)
(9.33337 -2.90275 0)
(8.7347 -2.67085 0)
(8.23661 -2.43389 0)
(7.89108 -2.70799 0)
(7.22485 -2.63806 0)
(5.73893 -1.58156 0)
(4.12877 -0.604345 0)
(3.30956 -1.3043 0)
(3.05368 -3.00751 0)
(2.97264 -4.60971 0)
(3.09552 -6.037 0)
(3.39993 -7.01649 0)
(3.70385 -7.38244 0)
(3.83219 -7.41689 0)
(3.96919 -7.38623 0)
(4.27895 -7.00064 0)
(4.39663 -6.2689 0)
(4.48952 -5.46406 0)
(4.62666 -4.74599 0)
(4.60264 -4.26324 0)
(4.97983 -3.75111 0)
(5.29225 -2.99619 0)
(5.4837 -2.02573 0)
(5.72136 -1.02199 0)
(5.88278 -0.334888 0)
(6.08411 0.313915 0)
(6.21873 1.39617 0)
(6.10565 2.72059 0)
(6.33568 3.88824 0)
(6.36995 4.46595 0)
(6.44957 4.65138 0)
(6.77575 4.84325 0)
(6.99983 5.31676 0)
(7.24507 6.14646 0)
(7.67882 6.88829 0)
(7.53377 7.15453 0)
(7.64117 7.15964 0)
(7.65515 6.88749 0)
(7.35802 6.32106 0)
(7.43286 5.8572 0)
(7.61149 5.41201 0)
(7.34364 4.834 0)
(7.63532 4.54313 0)
(7.80929 3.83155 0)
(7.37179 3.70825 0)
(8.43007 3.16864 0)
(7.27613 3.01024 0)
(8.32657 2.83228 0)
(7.48494 2.60632 0)
(8.06416 2.58098 0)
(7.75416 2.37309 0)
(7.93351 2.80322 0)
(7.86279 2.67506 0)
(7.80369 3.2406 0)
(7.77203 3.18141 0)
(7.43612 3.23708 0)
(7.66511 3.60799 0)
(7.3588 3.74377 0)
(7.63374 4.43379 0)
(8.04209 4.15787 0)
(6.90789 5.25871 0)
(9.54461 4.36976 0)
(5.90799 5.83917 0)
(11.3874 4.31562 0)
(5.39503 6.33819 0)
(12.5554 3.36993 0)
(5.8755 6.21807 0)
(12.4888 2.58122 0)
(6.47589 5.58365 0)
(12.1602 1.60975 0)
(6.37475 4.30998 0)
(11.805 0.747236 0)
(6.36043 3.32351 0)
(11.7598 0.138712 0)
(6.27635 2.34869 0)
(11.5253 -0.279096 0)
(6.6775 1.05768 0)
(11.4541 -1.11449 0)
(5.64117 0.312384 0)
(9.76237 -0.991738 0)
(3.39177 1.12424 0)
(8.53154 -1.24677 0)
(3.82524 0.288848 0)
(8.84267 -2.20779 0)
(4.9395 -1.15851 0)
(8.21076 -2.6398 0)
(4.82865 -1.93974 0)
(8.03951 -2.32443 0)
(5.60273 -1.9129 0)
(7.97869 -2.26774 0)
(6.94112 -1.55341 0)
(11.466 -0.00793414 0)
(11.5433 -0.169307 0)
(11.6112 -0.251288 0)
(11.7453 -0.254402 0)
(11.7647 -0.222575 0)
(11.82 -0.155136 0)
(11.7857 -0.0832363 0)
(11.7813 -0.0368955 0)
(11.7319 0.0219177 0)
(11.7125 0.04313 0)
(11.6476 0.0651793 0)
(11.6386 0.0816 0)
(11.5996 0.0792835 0)
(11.5819 0.104695 0)
(11.639 0.087872 0)
(11.5655 0.118525 0)
(11.7064 0.107459 0)
(11.5912 0.0978762 0)
(11.7256 0.0993169 0)
(11.6647 0.0630623 0)
(11.686 0.0527507 0)
(11.7404 0.0429363 0)
(11.6548 -0.00280563 0)
(11.7613 0.0135025 0)
(11.6693 -0.0122139 0)
(11.7108 -0.0266606 0)
(11.6727 0.00555211 0)
(11.6252 -0.0224207 0)
(11.6106 0.0278096 0)
(11.564 0.047816 0)
(11.5419 0.0654064 0)
(11.5431 0.11724 0)
(11.5514 0.133808 0)
(11.5476 0.172115 0)
(11.6136 0.183689 0)
(11.6088 0.206034 0)
(11.6992 0.190703 0)
(11.7169 0.178126 0)
(11.8188 0.144495 0)
(11.8538 0.0900427 0)
(11.9511 0.0279264 0)
(12.0051 -0.0572188 0)
(12.0737 -0.128986 0)
(12.1506 -0.252037 0)
(12.1983 -0.308309 0)
(12.248 -0.42731 0)
(12.2981 -0.506794 0)
(12.337 -0.568929 0)
(12.357 -0.646428 0)
(12.4055 -0.691243 0)
(12.4103 -0.725395 0)
(12.4736 -0.765233 0)
(12.4682 -0.773853 0)
(12.5523 -0.789367 0)
(12.5533 -0.806607 0)
(12.6456 -0.7918 0)
(12.6579 -0.819963 0)
(12.7684 -0.806513 0)
(12.7936 -0.835417 0)
(12.9109 -0.838503 0)
(12.9257 -0.880422 0)
(13.0722 -0.893032 0)
(13.0458 -0.942629 0)
(13.173 -0.970418 0)
(13.1512 -1.00758 0)
(13.2595 -1.05026 0)
(13.1963 -1.07598 0)
(13.2942 -1.11621 0)
(13.2607 -1.13309 0)
(13.2666 -1.12572 0)
(13.284 -1.15532 0)
(13.2308 -1.09576 0)
(13.2665 -1.11768 0)
(13.1627 -1.05951 0)
(13.2226 -1.06689 0)
(13.0966 -1.01589 0)
(13.1368 -1.0083 0)
(13.0642 -1.0261 0)
(13.0152 -0.975414 0)
(13.0524 -1.04903 0)
(12.905 -0.98473 0)
(12.9912 -1.08274 0)
(12.8084 -1.0539 0)
(12.8491 -1.11342 0)
(12.7273 -1.14078 0)
(12.6158 -1.16874 0)
(12.6542 -1.27177 0)
(12.3514 -1.25865 0)
(12.4806 -1.43892 0)
(12.1906 -1.4322 0)
(12.1998 -1.58803 0)
(12.0945 -1.66369 0)
(11.8534 -1.74799 0)
(11.95 -1.92387 0)
(11.5463 -1.93943 0)
(11.6523 -2.11013 0)
(11.4193 -2.14255 0)
(11.2607 -2.27084 0)
(11.2796 -2.34524 0)
(10.9415 -2.3844 0)
(11.0281 -2.52539 0)
(10.7949 -2.48791 0)
(10.608 -2.58263 0)
(10.6363 -2.69021 0)
(10.2817 -2.66624 0)
(10.1334 -2.72959 0)
(9.99106 -2.74652 0)
(9.6978 -2.70386 0)
(9.46038 -2.61368 0)
(9.146 -2.52053 0)
(8.58235 -2.23598 0)
(8.0425 -2.04704 0)
(7.72612 -2.21716 0)
(6.58023 -1.64384 0)
(4.83971 -0.28333 0)
(3.45328 0.249514 0)
(2.75203 -0.89807 0)
(2.5 -2.88906 0)
(2.47545 -4.73845 0)
(2.47636 -6.24846 0)
(2.52469 -7.18806 0)
(2.69652 -7.43567 0)
(2.9252 -7.46568 0)
(3.08102 -7.44028 0)
(3.29311 -7.03238 0)
(3.51496 -6.29404 0)
(3.73118 -5.4458 0)
(3.66515 -4.7614 0)
(3.58233 -4.34346 0)
(3.83909 -3.89749 0)
(4.01363 -3.24957 0)
(4.35478 -2.28675 0)
(4.5599 -1.28965 0)
(4.70225 -0.444132 0)
(4.89338 0.403497 0)
(4.76459 1.48452 0)
(4.89374 2.77121 0)
(4.93441 3.78331 0)
(5.18406 4.42865 0)
(5.24707 4.59501 0)
(5.63902 4.87359 0)
(5.86213 5.31721 0)
(6.18974 5.99303 0)
(6.60571 6.75167 0)
(6.66388 7.09283 0)
(6.6477 7.09794 0)
(6.88986 6.94148 0)
(6.77487 6.37569 0)
(6.62707 5.82028 0)
(6.88466 5.4356 0)
(6.88882 4.81828 0)
(6.75509 4.27041 0)
(7.26365 4.02549 0)
(7.16685 3.27345 0)
(6.98489 3.42264 0)
(7.98157 2.89745 0)
(6.75747 2.84572 0)
(8.19776 2.5757 0)
(6.92452 2.66249 0)
(8.09872 2.33297 0)
(7.25363 2.65428 0)
(7.98982 2.99581 0)
(7.5865 2.90664 0)
(7.88575 3.56053 0)
(7.83915 3.14064 0)
(7.47852 3.94962 0)
(8.54205 3.33803 0)
(6.85146 4.71515 0)
(10.0533 3.6994 0)
(6.20336 5.52193 0)
(11.6689 3.85225 0)
(5.94736 5.99981 0)
(12.8275 3.55325 0)
(6.58938 6.46343 0)
(13.1401 3.326 0)
(7.11653 6.11936 0)
(12.9775 2.6862 0)
(7.42266 5.31939 0)
(12.9047 2.07772 0)
(7.60714 4.28048 0)
(12.5216 1.10658 0)
(7.52498 3.11719 0)
(12.0705 0.442467 0)
(7.7381 1.96216 0)
(11.403 -0.447285 0)
(7.63435 1.12737 0)
(10.8109 -0.379052 0)
(6.74045 0.809544 0)
(9.052 0.183203 0)
(5.97013 0.747823 0)
(8.93726 -0.557034 0)
(7.27824 -1.00556 0)
(9.53767 -1.51815 0)
(8.07059 -1.7004 0)
(9.02047 -1.93304 0)
(8.11659 -2.03744 0)
(8.82261 -2.47725 0)
(8.64981 -2.22278 0)
(9.50635 -2.02452 0)
(9.19889 -1.6298 0)
(12.1118 0.0025757 0)
(12.2159 -0.101027 0)
(12.3245 -0.182965 0)
(12.5295 -0.212328 0)
(12.6062 -0.179318 0)
(12.7125 -0.154855 0)
(12.6537 -0.0617222 0)
(12.6682 -0.0259754 0)
(12.5439 0.0441167 0)
(12.5405 0.0671837 0)
(12.4267 0.0989726 0)
(12.4548 0.0895124 0)
(12.4264 0.108176 0)
(12.4368 0.105353 0)
(12.5382 0.0864776 0)
(12.4671 0.139733 0)
(12.6094 0.0823519 0)
(12.5028 0.13 0)
(12.5754 0.090734 0)
(12.5593 0.0660285 0)
(12.5128 0.0770721 0)
(12.6058 0.00837268 0)
(12.5156 0.0228223 0)
(12.6185 -0.0220479 0)
(12.5828 -0.012907 0)
(12.6073 -0.022224 0)
(12.6275 0.004169 0)
(12.5936 0.0172533 0)
(12.6139 0.0437008 0)
(12.5848 0.0890956 0)
(12.5747 0.085333 0)
(12.5861 0.135236 0)
(12.5737 0.133428 0)
(12.591 0.139322 0)
(12.6259 0.169031 0)
(12.629 0.151297 0)
(12.7216 0.142315 0)
(12.7148 0.147974 0)
(12.845 0.0769192 0)
(12.8406 0.0483496 0)
(12.9555 -0.0118058 0)
(12.9847 -0.122091 0)
(13.0494 -0.166353 0)
(13.0927 -0.275788 0)
(13.1423 -0.375915 0)
(13.1446 -0.425527 0)
(13.1905 -0.537649 0)
(13.2064 -0.590837 0)
(13.1835 -0.63295 0)
(13.2354 -0.717884 0)
(13.1739 -0.712263 0)
(13.2299 -0.771401 0)
(13.1482 -0.785308 0)
(13.201 -0.789885 0)
(13.1268 -0.820753 0)
(13.1694 -0.821809 0)
(13.106 -0.83671 0)
(13.191 -0.844726 0)
(13.1219 -0.880113 0)
(13.2245 -0.874274 0)
(13.1915 -0.920816 0)
(13.2751 -0.935186 0)
(13.2306 -0.96892 0)
(13.3196 -0.997694 0)
(13.2486 -1.01946 0)
(13.3294 -1.06362 0)
(13.2367 -1.07602 0)
(13.3164 -1.09748 0)
(13.2367 -1.10706 0)
(13.2437 -1.10863 0)
(13.2059 -1.10084 0)
(13.1456 -1.07323 0)
(13.1264 -1.08133 0)
(13.0025 -1.01192 0)
(13.067 -1.03485 0)
(12.8656 -0.965675 0)
(12.9609 -1.00044 0)
(12.8192 -0.946677 0)
(12.8429 -0.963064 0)
(12.8 -0.987125 0)
(12.7085 -0.963034 0)
(12.743 -1.036 0)
(12.5996 -0.977163 0)
(12.6545 -1.08216 0)
(12.4453 -1.0395 0)
(12.4877 -1.14788 0)
(12.3443 -1.18252 0)
(12.2575 -1.22806 0)
(12.2496 -1.34909 0)
(12.0466 -1.36313 0)
(12.0925 -1.5368 0)
(11.8675 -1.54624 0)
(11.824 -1.7104 0)
(11.7632 -1.76909 0)
(11.5585 -1.83074 0)
(11.5768 -1.97889 0)
(11.3969 -2.01668 0)
(11.316 -2.15876 0)
(11.243 -2.19042 0)
(11.0903 -2.3022 0)
(10.9864 -2.36818 0)
(10.8258 -2.41485 0)
(10.6045 -2.52486 0)
(10.4661 -2.56181 0)
(10.1997 -2.58376 0)
(9.95709 -2.58047 0)
(9.85908 -2.59092 0)
(9.52355 -2.47451 0)
(9.20963 -2.34136 0)
(8.95395 -2.23052 0)
(8.30185 -1.81548 0)
(7.87307 -1.72143 0)
(7.20644 -1.53822 0)
(5.80683 -0.435116 0)
(4.14662 0.917693 0)
(2.8145 1.06278 0)
(2.47412 -0.587657 0)
(2.1714 -2.78719 0)
(1.92656 -4.66984 0)
(1.77112 -6.27692 0)
(1.77745 -7.3184 0)
(2.03019 -7.74539 0)
(2.21644 -7.85228 0)
(2.28715 -7.77699 0)
(2.33119 -7.3152 0)
(2.52131 -6.48733 0)
(2.75226 -5.5421 0)
(2.73343 -4.77071 0)
(2.75858 -4.34861 0)
(2.72312 -3.96956 0)
(2.79873 -3.33948 0)
(3.07907 -2.40325 0)
(3.13194 -1.46318 0)
(3.47457 -0.54481 0)
(3.42778 0.330093 0)
(3.43367 1.41257 0)
(3.58692 2.57727 0)
(3.64548 3.5137 0)
(3.9036 4.07686 0)
(4.22376 4.2612 0)
(4.63937 4.45796 0)
(4.98466 4.9064 0)
(5.25117 5.62287 0)
(5.50714 6.45997 0)
(5.78526 6.99208 0)
(5.73061 6.93189 0)
(5.96451 6.84086 0)
(6.00576 6.44514 0)
(5.92911 5.76345 0)
(6.05119 5.22318 0)
(6.34186 4.90757 0)
(6.28313 4.15693 0)
(6.29719 3.77539 0)
(6.89128 3.60132 0)
(6.42427 2.86351 0)
(7.14892 2.98769 0)
(7.2527 2.68378 0)
(6.71035 2.66138 0)
(7.71777 2.27427 0)
(6.68875 2.75705 0)
(7.82584 2.12491 0)
(7.0475 3.22257 0)
(8.38594 2.50343 0)
(6.94469 3.70192 0)
(9.37845 2.65384 0)
(6.66155 4.11254 0)
(10.5054 2.8527 0)
(6.31765 4.80566 0)
(11.9552 2.97758 0)
(6.19533 5.60514 0)
(13.047 3.13572 0)
(6.73788 6.06409 0)
(13.4095 2.98175 0)
(7.47466 6.15441 0)
(13.6473 3.13937 0)
(8.44703 6.06437 0)
(13.5071 2.96124 0)
(8.79095 5.0313 0)
(12.9978 2.19513 0)
(9.12008 4.01966 0)
(12.7187 1.50989 0)
(9.05308 2.80719 0)
(12.0122 0.968533 0)
(9.08218 1.68272 0)
(11.1795 0.795625 0)
(8.07789 0.605142 0)
(10.3901 0.550995 0)
(8.17424 0.71969 0)
(9.97781 0.877185 0)
(8.98569 0.153477 0)
(10.4667 -1.11301 0)
(10.5458 -1.43564 0)
(10.6883 -2.08562 0)
(10.4395 -1.57916 0)
(10.4706 -1.67242 0)
(10.2816 -2.29248 0)
(10.866 -2.40013 0)
(11.1584 -2.31609 0)
(11.3698 -2.55406 0)
(11.3524 -1.99576 0)
(12.2652 0.0569306 0)
(12.3843 -0.102577 0)
(12.5566 -0.174099 0)
(12.7263 -0.232995 0)
(12.8723 -0.220447 0)
(12.8592 -0.160451 0)
(12.8721 -0.0604851 0)
(12.797 0.0185685 0)
(12.7059 0.096923 0)
(12.7023 0.10995 0)
(12.5677 0.119694 0)
(12.6464 0.0777244 0)
(12.5761 0.0688172 0)
(12.6524 0.0462951 0)
(12.7148 0.0359917 0)
(12.7159 0.0993226 0)
(12.8264 0.0533627 0)
(12.7477 0.14166 0)
(12.8183 0.0770361 0)
(12.766 0.0862116 0)
(12.7417 0.0696724 0)
(12.7897 -0.00649938 0)
(12.7087 0.0327313 0)
(12.8118 -0.0535014 0)
(12.7725 -0.00489619 0)
(12.8273 -0.0348756 0)
(12.8468 -0.0226671 0)
(12.8533 0.0209048 0)
(12.8768 -0.00598238 0)
(12.8934 0.080371 0)
(12.8853 0.0680751 0)
(12.9223 0.113562 0)
(12.9052 0.142219 0)
(12.9413 0.125907 0)
(12.941 0.15139 0)
(12.9666 0.128023 0)
(13.0176 0.096076 0)
(13.0313 0.0897815 0)
(13.1282 0.0181718 0)
(13.1486 -0.0158783 0)
(13.2402 -0.0741547 0)
(13.2555 -0.15028 0)
(13.3317 -0.224956 0)
(13.3132 -0.282323 0)
(13.3592 -0.400357 0)
(13.3509 -0.446477 0)
(13.3412 -0.529402 0)
(13.3943 -0.613177 0)
(13.3394 -0.636753 0)
(13.4 -0.706304 0)
(13.3487 -0.722254 0)
(13.369 -0.749851 0)
(13.2822 -0.766092 0)
(13.3031 -0.769577 0)
(13.1564 -0.797865 0)
(13.2002 -0.80306 0)
(13.0547 -0.831916 0)
(13.1239 -0.859814 0)
(13.0061 -0.885884 0)
(13.1044 -0.909433 0)
(13.0146 -0.947697 0)
(13.1075 -0.953322 0)
(13.0524 -0.995551 0)
(13.1221 -0.999403 0)
(13.0678 -1.03039 0)
(13.1649 -1.05951 0)
(13.0751 -1.05509 0)
(13.1878 -1.08399 0)
(13.0839 -1.09103 0)
(13.149 -1.07231 0)
(13.0439 -1.06423 0)
(13.0516 -1.06312 0)
(12.9827 -1.00277 0)
(12.925 -0.989438 0)
(12.9561 -0.998525 0)
(12.8095 -0.916193 0)
(12.9304 -0.974337 0)
(12.78 -0.907056 0)
(12.8482 -0.949872 0)
(12.7269 -0.951071 0)
(12.7621 -0.941622 0)
(12.6555 -0.972569 0)
(12.6303 -0.949184 0)
(12.5779 -1.03467 0)
(12.4521 -1.00686 0)
(12.4833 -1.09618 0)
(12.3136 -1.11698 0)
(12.3492 -1.19525 0)
(12.1591 -1.25262 0)
(12.143 -1.30586 0)
(12.0116 -1.44375 0)
(11.9069 -1.45215 0)
(11.819 -1.57985 0)
(11.7292 -1.67431 0)
(11.5964 -1.75089 0)
(11.5018 -1.86611 0)
(11.462 -1.9561 0)
(11.2504 -2.01735 0)
(11.241 -2.11076 0)
(10.9874 -2.18613 0)
(10.9003 -2.25661 0)
(10.7438 -2.32265 0)
(10.4437 -2.34414 0)
(10.4367 -2.39727 0)
(10.0221 -2.33612 0)
(9.87653 -2.36129 0)
(9.73493 -2.36518 0)
(9.21709 -2.16089 0)
(9.1192 -2.14376 0)
(8.753 -1.91892 0)
(8.14538 -1.49742 0)
(7.58711 -1.12724 0)
(6.57126 -0.509761 0)
(4.9985 0.774843 0)
(3.36265 2.01189 0)
(2.56872 1.6533 0)
(2.26368 -0.310101 0)
(1.82947 -2.51213 0)
(1.58629 -4.58402 0)
(1.32313 -6.22854 0)
(1.07719 -7.31501 0)
(1.1619 -7.78792 0)
(1.27723 -7.80256 0)
(1.34034 -7.65135 0)
(1.35222 -7.27257 0)
(1.45456 -6.50388 0)
(1.57192 -5.58246 0)
(1.64007 -4.79247 0)
(1.70631 -4.30058 0)
(1.54264 -3.89283 0)
(1.49287 -3.30773 0)
(1.66525 -2.46928 0)
(1.71029 -1.56183 0)
(1.89707 -0.536784 0)
(1.83113 0.427793 0)
(2.05303 1.58489 0)
(1.99063 2.56663 0)
(2.48997 3.46741 0)
(2.65182 3.79569 0)
(3.31086 4.109 0)
(3.53453 4.25417 0)
(3.90036 4.88059 0)
(4.17557 5.54056 0)
(4.43071 6.23527 0)
(4.80396 6.78596 0)
(4.84393 6.87858 0)
(4.98168 6.69653 0)
(5.24376 6.38992 0)
(5.30878 5.81082 0)
(5.34944 5.10376 0)
(5.58045 4.71672 0)
(5.88872 4.25342 0)
(5.65105 3.51501 0)
(6.09122 3.36463 0)
(6.57981 2.8575 0)
(5.9283 2.80553 0)
(7.26082 2.57255 0)
(6.23076 3.02074 0)
(7.43346 1.93537 0)
(6.60683 2.96639 0)
(7.9749 1.78489 0)
(6.49317 3.24391 0)
(9.05849 2.2442 0)
(6.21497 3.86666 0)
(10.144 2.16854 0)
(5.98822 4.37368 0)
(11.5059 2.13799 0)
(5.92938 4.92932 0)
(12.5344 2.34517 0)
(6.52905 5.62579 0)
(13.1033 2.46401 0)
(7.4267 6.0315 0)
(13.4031 2.95668 0)
(8.33334 5.88957 0)
(13.4442 3.18785 0)
(9.3772 5.55265 0)
(13.6125 3.34716 0)
(10.1679 4.72574 0)
(13.2376 2.68712 0)
(10.2082 3.49026 0)
(12.864 2.00286 0)
(10.2939 2.49172 0)
(12.2605 1.53367 0)
(10.4711 1.56869 0)
(11.7731 1.29484 0)
(10.4717 0.960923 0)
(11.0767 0.502012 0)
(10.3696 0.332601 0)
(11.1965 0.155031 0)
(12.009 0.180987 0)
(11.7671 -1.70753 0)
(11.9698 -1.34626 0)
(11.5102 -1.38582 0)
(11.3462 -1.56296 0)
(11.6191 -1.96371 0)
(12.184 -2.36696 0)
(12.0266 -2.92142 0)
(12.2363 -2.93927 0)
(12.3254 -2.32731 0)
(12.0417 -2.09521 0)
(12.3864 -0.0425524 0)
(12.43 -0.112774 0)
(12.5575 -0.134524 0)
(12.6833 -0.193212 0)
(12.7057 -0.142954 0)
(12.7052 -0.127188 0)
(12.6735 -0.0542643 0)
(12.6107 0.0437761 0)
(12.6317 0.0660021 0)
(12.6071 0.119344 0)
(12.6466 0.103612 0)
(12.6836 0.0663202 0)
(12.6511 0.0516741 0)
(12.7149 0.0173877 0)
(12.6464 0.013345 0)
(12.679 0.0625694 0)
(12.6538 0.0634251 0)
(12.6191 0.124405 0)
(12.7012 0.123763 0)
(12.666 0.104922 0)
(12.7781 0.0971799 0)
(12.7892 0.020359 0)
(12.8285 0.0128886 0)
(12.8695 -0.0495584 0)
(12.8291 -0.0501605 0)
(12.8562 -0.0518874 0)
(12.7919 -0.0487844 0)
(12.8077 -0.00725522 0)
(12.7784 0.00950995 0)
(12.8168 0.0440849 0)
(12.8199 0.0937009 0)
(12.8691 0.0887875 0)
(12.911 0.135501 0)
(12.9179 0.122975 0)
(12.9969 0.10937 0)
(12.9654 0.11555 0)
(13.0484 0.0550816 0)
(13.0471 0.0434386 0)
(13.0935 -0.0132256 0)
(13.1394 -0.062985 0)
(13.1751 -0.11297 0)
(13.176 -0.166002 0)
(13.2502 -0.248907 0)
(13.1995 -0.29853 0)
(13.2587 -0.386482 0)
(13.2472 -0.471447 0)
(13.2563 -0.53059 0)
(13.2982 -0.625151 0)
(13.2895 -0.662584 0)
(13.3069 -0.706558 0)
(13.289 -0.731892 0)
(13.2626 -0.724113 0)
(13.2146 -0.738916 0)
(13.1745 -0.720413 0)
(13.0955 -0.751671 0)
(13.1115 -0.764513 0)
(12.9986 -0.792743 0)
(13.0651 -0.857326 0)
(12.9688 -0.872054 0)
(13.0134 -0.914071 0)
(12.9532 -0.966381 0)
(13.0057 -0.950293 0)
(12.9483 -1.00315 0)
(13.0156 -1.02448 0)
(12.9921 -1.02459 0)
(13.0553 -1.05372 0)
(13.0321 -1.08153 0)
(13.0867 -1.05276 0)
(13.0402 -1.07851 0)
(13.0855 -1.06619 0)
(12.9744 -1.01307 0)
(13.0678 -1.03301 0)
(12.9324 -0.978273 0)
(13.0018 -0.954422 0)
(12.9529 -0.981513 0)
(12.9526 -0.908514 0)
(12.9851 -0.941509 0)
(12.8718 -0.929796 0)
(12.9589 -0.917388 0)
(12.8018 -0.915431 0)
(12.8326 -0.90401 0)
(12.705 -0.940577 0)
(12.6778 -0.905596 0)
(12.5642 -0.970421 0)
(12.5806 -0.964581 0)
(12.4078 -1.00004 0)
(12.416 -1.0655 0)
(12.3073 -1.10506 0)
(12.1473 -1.16394 0)
(12.1575 -1.22457 0)
(11.9145 -1.31186 0)
(11.9438 -1.3648 0)
(11.7099 -1.49885 0)
(11.7001 -1.57463 0)
(11.5127 -1.66437 0)
(11.468 -1.77989 0)
(11.3035 -1.83673 0)
(11.1166 -1.93748 0)
(11.1369 -2.02204 0)
(10.7408 -2.04771 0)
(10.8364 -2.13517 0)
(10.525 -2.13718 0)
(10.2981 -2.2114 0)
(10.2361 -2.17522 0)
(9.76093 -2.18126 0)
(9.66084 -2.22121 0)
(9.35843 -2.07946 0)
(8.90884 -2.00434 0)
(8.77617 -1.86522 0)
(8.37978 -1.51343 0)
(7.46038 -0.969336 0)
(6.79219 -0.417814 0)
(5.86422 0.51174 0)
(4.31568 2.04158 0)
(3.05041 2.9161 0)
(2.39943 2.10946 0)
(2.19865 0.0140285 0)
(1.88743 -2.27105 0)
(1.4439 -4.27493 0)
(0.938585 -5.89574 0)
(0.601617 -7.19468 0)
(0.625533 -7.8356 0)
(0.636977 -7.88622 0)
(0.619088 -7.77248 0)
(0.572661 -7.3561 0)
(0.67138 -6.5744 0)
(0.706141 -5.6606 0)
(0.778478 -4.8491 0)
(0.776316 -4.19896 0)
(0.486616 -3.7347 0)
(0.422954 -3.25492 0)
(0.365386 -2.47834 0)
(0.270829 -1.59437 0)
(0.446582 -0.626132 0)
(0.405127 0.332417 0)
(0.601943 1.40588 0)
(0.919073 2.26222 0)
(1.29782 2.97372 0)
(1.70851 3.35908 0)
(2.30202 3.69336 0)
(2.56859 3.96437 0)
(2.86796 4.52751 0)
(3.36074 5.23259 0)
(3.42596 5.93419 0)
(3.71857 6.5878 0)
(3.95532 6.7375 0)
(4.1799 6.46015 0)
(4.29398 6.17226 0)
(4.54908 5.74514 0)
(4.81928 4.96368 0)
(4.84854 4.49338 0)
(5.18024 4.16713 0)
(5.52385 3.3443 0)
(5.08864 3.34099 0)
(6.51303 2.36973 0)
(5.43713 3.27393 0)
(6.89915 1.62951 0)
(5.9517 3.3304 0)
(7.56306 1.12438 0)
(5.94881 3.12199 0)
(8.7809 1.08379 0)
(5.86885 3.51461 0)
(9.84853 1.3942 0)
(5.87519 4.16761 0)
(11.1227 1.41177 0)
(5.66432 4.52202 0)
(11.8242 1.42108 0)
(6.16864 5.02467 0)
(12.2185 1.63977 0)
(6.85236 5.55532 0)
(12.4914 2.10207 0)
(7.83694 5.51101 0)
(12.9129 2.81746 0)
(9.10331 5.35851 0)
(13.1298 3.23977 0)
(10.2305 4.87129 0)
(13.3129 3.40446 0)
(11.2979 4.30856 0)
(13.5844 2.90875 0)
(11.7555 3.48304 0)
(13.3427 2.42769 0)
(11.9257 2.24141 0)
(12.5818 1.82633 0)
(12.1199 1.37625 0)
(12.5084 1.48461 0)
(12.2674 0.795717 0)
(12.3594 0.561681 0)
(12.5359 0.600828 0)
(12.3214 -0.32384 0)
(12.9209 -0.195895 0)
(12.8737 -1.42745 0)
(12.5729 -1.04143 0)
(12.303 -1.44124 0)
(13.0265 -1.66761 0)
(12.9386 -1.98606 0)
(13.1711 -2.80978 0)
(13.1422 -2.62158 0)
(12.9535 -2.72259 0)
(12.7187 -2.41007 0)
(12.4585 -2.19357 0)
(12.355 0.00242883 0)
(12.2615 -0.0666862 0)
(12.4226 -0.0803521 0)
(12.4746 -0.113616 0)
(12.5922 -0.089087 0)
(12.6188 -0.0620134 0)
(12.6607 -0.0110509 0)
(12.6546 0.0221161 0)
(12.6639 0.047884 0)
(12.6604 0.0423552 0)
(12.628 0.0316037 0)
(12.6141 0.033673 0)
(12.5633 0.0179999 0)
(12.5119 0.0642963 0)
(12.5456 0.0657617 0)
(12.4803 0.112929 0)
(12.5788 0.108729 0)
(12.5709 0.102394 0)
(12.6468 0.0753884 0)
(12.7519 0.0161023 0)
(12.7336 0.000528522 0)
(12.8596 -0.046846 0)
(12.7958 -0.0344589 0)
(12.8211 -0.0184416 0)
(12.8146 -0.0252933 0)
(12.7202 0.0247475 0)
(12.7794 0.00130701 0)
(12.6791 0.00674072 0)
(12.722 0.0295396 0)
(12.7366 -0.0176837 0)
(12.7087 0.0589772 0)
(12.7868 0.0249588 0)
(12.7991 0.0857555 0)
(12.8195 0.0888786 0)
(12.928 0.0776528 0)
(12.9154 0.0937684 0)
(13.0171 0.0274491 0)
(13.0557 0.0135066 0)
(13.0835 -0.0355699 0)
(13.1403 -0.101227 0)
(13.154 -0.123173 0)
(13.1422 -0.196111 0)
(13.1846 -0.251878 0)
(13.1428 -0.315537 0)
(13.1704 -0.398769 0)
(13.1506 -0.486118 0)
(13.1505 -0.555326 0)
(13.1542 -0.626967 0)
(13.1323 -0.670213 0)
(13.1124 -0.690411 0)
(13.1069 -0.701203 0)
(13.0712 -0.687741 0)
(13.0773 -0.697166 0)
(13.0776 -0.69804 0)
(13.0631 -0.719841 0)
(13.1194 -0.76485 0)
(13.0689 -0.789028 0)
(13.1026 -0.844196 0)
(13.0741 -0.871181 0)
(13.0211 -0.900624 0)
(13.0342 -0.932079 0)
(13.0017 -0.953718 0)
(12.9699 -0.982629 0)
(13.0356 -1.02493 0)
(12.9936 -1.02775 0)
(13.0258 -1.07388 0)
(13.0543 -1.08392 0)
(12.9978 -1.0537 0)
(13.0459 -1.08917 0)
(13.0126 -1.03408 0)
(12.9769 -1.01385 0)
(13.0535 -1.01326 0)
(12.9397 -0.982248 0)
(13.0489 -0.965976 0)
(12.9646 -0.956262 0)
(13.0149 -0.947344 0)
(12.9609 -0.91627 0)
(12.9317 -0.912913 0)
(12.9451 -0.883422 0)
(12.8123 -0.844283 0)
(12.8244 -0.875809 0)
(12.714 -0.861183 0)
(12.6625 -0.833487 0)
(12.5792 -0.919115 0)
(12.5135 -0.876156 0)
(12.3661 -0.956146 0)
(12.3488 -0.963007 0)
(12.1568 -1.02669 0)
(12.1186 -1.07565 0)
(11.9864 -1.11084 0)
(11.8713 -1.2491 0)
(11.8362 -1.27272 0)
(11.6482 -1.42599 0)
(11.6327 -1.45364 0)
(11.4289 -1.59259 0)
(11.3351 -1.68115 0)
(11.1442 -1.69056 0)
(11.0794 -1.9086 0)
(10.9009 -1.81875 0)
(10.6935 -1.96595 0)
(10.6385 -1.9595 0)
(10.2746 -1.9538 0)
(10.081 -2.02635 0)
(9.92997 -1.91491 0)
(9.38401 -1.97564 0)
(9.17751 -1.92219 0)
(8.79635 -1.73783 0)
(8.27257 -1.72562 0)
(8.13 -1.56098 0)
(7.27814 -0.867957 0)
(6.20098 -0.199211 0)
(5.61276 0.321196 0)
(4.75912 1.44263 0)
(3.60465 2.90187 0)
(2.65589 3.54211 0)
(2.39641 2.37243 0)
(2.30654 0.237655 0)
(1.97174 -1.86293 0)
(1.49739 -3.79999 0)
(0.894881 -5.60284 0)
(0.370477 -7.05624 0)
(0.0302339 -7.7924 0)
(-0.18627 -7.88122 0)
(-0.367875 -7.75295 0)
(-0.441154 -7.3379 0)
(-0.261142 -6.61945 0)
(-0.159224 -5.82863 0)
(-0.0592575 -4.97259 0)
(-0.0528717 -4.16855 0)
(-0.305055 -3.60322 0)
(-0.468409 -3.05087 0)
(-0.758849 -2.32116 0)
(-0.756898 -1.51794 0)
(-0.698244 -0.599804 0)
(-0.719142 0.271663 0)
(-0.3785 1.16384 0)
(-0.0567686 1.92123 0)
(0.282052 2.5662 0)
(1.02092 3.03392 0)
(1.20807 3.28134 0)
(1.74475 3.83992 0)
(1.83947 4.29161 0)
(2.26655 5.18974 0)
(2.34674 5.84791 0)
(2.58981 6.29053 0)
(3.18927 6.47729 0)
(3.21113 6.38796 0)
(3.53387 5.92258 0)
(3.78596 5.46337 0)
(4.26719 4.92016 0)
(4.44596 4.23126 0)
(4.16954 4.14338 0)
(5.44858 2.90804 0)
(4.5789 3.63694 0)
(5.77637 1.43354 0)
(5.4272 3.73864 0)
(5.85581 0.804132 0)
(5.6227 3.547 0)
(6.77203 0.532501 0)
(5.39505 3.14749 0)
(8.00027 0.310537 0)
(5.366 3.64989 0)
(9.21546 0.468979 0)
(5.42627 4.18809 0)
(10.4255 0.853822 0)
(6.00678 4.65913 0)
(10.9983 1.10114 0)
(6.31083 4.85271 0)
(11.4613 1.68347 0)
(7.21263 5.36108 0)
(11.5832 2.12668 0)
(7.88871 5.08394 0)
(11.9496 2.7784 0)
(9.35014 4.71384 0)
(12.4671 3.25141 0)
(10.8057 4.30083 0)
(12.8304 3.30625 0)
(11.7335 3.89018 0)
(13.438 2.95574 0)
(12.5502 3.13699 0)
(13.6706 2.74856 0)
(13.1677 2.44705 0)
(13.3698 1.90621 0)
(13.1179 1.23968 0)
(13.3679 1.29972 0)
(13.562 1.19973 0)
(13.312 0.227066 0)
(13.6163 0.324576 0)
(13.7344 -0.242227 0)
(14.0715 -0.0497945 0)
(13.7361 -1.34382 0)
(14.047 -1.15362 0)
(13.7833 -1.33564 0)
(14.0327 -2.16406 0)
(14.1337 -2.28893 0)
(14.0293 -2.54768 0)
(13.6913 -2.40031 0)
(13.3853 -2.62359 0)
(13.1892 -2.02789 0)
(13.4266 -2.38731 0)
(12.1559 0.0739856 0)
(12.1898 0.0224083 0)
(12.3678 -0.0205198 0)
(12.5016 -0.0659838 0)
(12.6718 -0.111137 0)
(12.6919 -0.0958127 0)
(12.7395 -0.0971588 0)
(12.6924 -0.0223993 0)
(12.6209 0.0163908 0)
(12.6118 0.061707 0)
(12.4867 0.108311 0)
(12.5226 0.0730028 0)
(12.463 0.0926741 0)
(12.4896 0.0549519 0)
(12.5809 0.0242341 0)
(12.5803 0.0518593 0)
(12.7247 0.0023388 0)
(12.6955 0.0502637 0)
(12.7522 0.0284295 0)
(12.7463 0.0234264 0)
(12.6647 0.0334853 0)
(12.7146 -0.00705401 0)
(12.6136 0.0131407 0)
(12.6648 -0.00546737 0)
(12.6908 -0.00878397 0)
(12.6741 0.00179708 0)
(12.7898 -0.0132078 0)
(12.7328 -0.00457956 0)
(12.7902 0.0102506 0)
(12.7695 0.00339174 0)
(12.7309 0.0417569 0)
(12.7319 0.0415032 0)
(12.7352 0.0473763 0)
(12.7264 0.0546927 0)
(12.8138 0.018399 0)
(12.855 0.00315029 0)
(12.9155 -0.0178791 0)
(13.0436 -0.0682037 0)
(13.0293 -0.0656971 0)
(13.1451 -0.108643 0)
(13.1448 -0.143831 0)
(13.134 -0.172204 0)
(13.188 -0.240187 0)
(13.1237 -0.305542 0)
(13.1306 -0.377336 0)
(13.1151 -0.45929 0)
(13.0513 -0.540161 0)
(13.0679 -0.580079 0)
(12.9989 -0.650329 0)
(12.9822 -0.666808 0)
(12.9893 -0.684008 0)
(12.9549 -0.704656 0)
(12.9918 -0.720653 0)
(13.027 -0.727764 0)
(13.0044 -0.759411 0)
(13.0969 -0.785537 0)
(13.0471 -0.796375 0)
(13.0713 -0.830556 0)
(13.0947 -0.861651 0)
(13.0277 -0.86535 0)
(13.0889 -0.924215 0)
(13.0661 -0.954579 0)
(13.0557 -0.974261 0)
(13.0903 -1.04373 0)
(13.0668 -1.03675 0)
(13.0234 -1.08127 0)
(13.0647 -1.06691 0)
(12.9776 -1.07213 0)
(13.0055 -1.05769 0)
(13.0122 -1.02589 0)
(12.9831 -1.03585 0)
(13.0238 -0.997373 0)
(13.0283 -0.997667 0)
(13.052 -0.975165 0)
(12.9864 -0.937318 0)
(13.0691 -0.953891 0)
(12.9395 -0.880657 0)
(12.9449 -0.859564 0)
(12.9462 -0.864698 0)
(12.7711 -0.77751 0)
(12.8579 -0.831252 0)
(12.6891 -0.75382 0)
(12.6843 -0.787429 0)
(12.5389 -0.813015 0)
(12.4607 -0.775084 0)
(12.3622 -0.894487 0)
(12.1924 -0.821128 0)
(12.1285 -0.958154 0)
(12.0137 -0.985706 0)
(11.8526 -1.02174 0)
(11.7879 -1.17947 0)
(11.7034 -1.17681 0)
(11.4949 -1.2834 0)
(11.449 -1.38818 0)
(11.2679 -1.44972 0)
(11.1008 -1.52873 0)
(11.0559 -1.65263 0)
(10.7647 -1.66402 0)
(10.7031 -1.74571 0)
(10.3934 -1.76572 0)
(10.2338 -1.76106 0)
(9.85528 -1.74009 0)
(9.57595 -1.74689 0)
(9.27788 -1.70737 0)
(8.4636 -1.64998 0)
(8.34374 -1.56573 0)
(7.91602 -1.44926 0)
(7.14236 -1.3776 0)
(6.67867 -0.767784 0)
(5.86367 0.0719208 0)
(5.10665 0.36301 0)
(4.6486 0.825975 0)
(4.05548 2.19877 0)
(3.17827 3.7449 0)
(2.60776 4.01854 0)
(2.51169 2.57084 0)
(2.46763 0.487874 0)
(2.28337 -1.49478 0)
(1.64177 -3.30426 0)
(0.755661 -4.95735 0)
(0.0293444 -6.45472 0)
(-0.492599 -7.34108 0)
(-0.756052 -7.5393 0)
(-1.00608 -7.49809 0)
(-1.19615 -7.2752 0)
(-1.17912 -6.71892 0)
(-1.14294 -5.95662 0)
(-1.00193 -5.00324 0)
(-0.922924 -4.16472 0)
(-1.01698 -3.54951 0)
(-1.12464 -2.95909 0)
(-1.43534 -2.32435 0)
(-1.41721 -1.55877 0)
(-1.52982 -0.724787 0)
(-1.35517 0.0604582 0)
(-1.1113 0.893152 0)
(-0.876233 1.58679 0)
(-0.372626 2.15019 0)
(0.102344 2.60552 0)
(0.329752 3.03927 0)
(0.803855 3.5997 0)
(0.867255 4.12478 0)
(1.16325 4.93649 0)
(1.53663 5.60738 0)
(1.65039 5.88114 0)
(2.1612 6.18032 0)
(2.45786 6.18832 0)
(2.85719 5.65003 0)
(3.15294 5.00287 0)
(3.29088 4.84288 0)
(4.21897 3.99601 0)
(3.59298 4.11829 0)
(4.62389 2.19615 0)
(4.90868 4.08848 0)
(3.93756 0.518879 0)
(5.8572 4.20608 0)
(4.01503 0.239618 0)
(5.64849 3.68656 0)
(5.33454 -0.0511427 0)
(5.09814 3.56622 0)
(6.21422 -0.470784 0)
(5.06393 4.10457 0)
(7.10663 -0.219673 0)
(5.11054 4.24299 0)
(7.99552 -0.112086 0)
(5.69417 4.32103 0)
(9.3554 0.942227 0)
(6.06773 4.46091 0)
(10.2234 1.34482 0)
(7.36723 4.98959 0)
(10.8665 2.33476 0)
(8.56129 4.54961 0)
(11.0823 2.49557 0)
(9.74983 4.0402 0)
(11.6667 3.21848 0)
(11.3093 3.6815 0)
(12.485 3.23478 0)
(12.1466 3.51813 0)
(13.1661 2.78464 0)
(13.0051 2.61212 0)
(13.6963 2.53383 0)
(13.8742 2.31244 0)
(14.0337 1.93674 0)
(14.1524 1.40873 0)
(14.119 1.02383 0)
(14.4324 1.17264 0)
(14.4584 0.324034 0)
(14.568 0.247691 0)
(14.559 -0.382098 0)
(14.8731 -0.315243 0)
(14.7648 -1.15125 0)
(14.7954 -1.43971 0)
(14.6328 -1.36408 0)
(14.8858 -1.86415 0)
(14.6155 -2.04908 0)
(14.2556 -2.40194 0)
(14.3508 -2.08886 0)
(14.2249 -2.39193 0)
(13.9995 -2.18376 0)
(14.1855 -2.59239 0)
(12.24 0.029463 0)
(12.3304 -0.0739016 0)
(12.4665 -0.0747951 0)
(12.6341 -0.10414 0)
(12.6964 -0.0894777 0)
(12.6906 -0.0214556 0)
(12.6818 -0.00583716 0)
(12.5647 0.0697336 0)
(12.5592 0.0823126 0)
(12.5012 0.0768372 0)
(12.4895 0.0730602 0)
(12.5605 0.0111544 0)
(12.5182 -0.00246745 0)
(12.6257 -0.0235628 0)
(12.6088 -0.0245406 0)
(12.6525 0.015928 0)
(12.6755 0.0270581 0)
(12.6447 0.0799284 0)
(12.6606 0.0771607 0)
(12.6608 0.0840299 0)
(12.624 0.0506359 0)
(12.6694 0.0172036 0)
(12.6654 -0.0190268 0)
(12.6602 -0.0420893 0)
(12.7647 -0.0550829 0)
(12.7015 -0.0629167 0)
(12.8037 -0.0288926 0)
(12.765 -0.0422827 0)
(12.7659 0.0288117 0)
(12.7754 0.0153668 0)
(12.7514 0.0525714 0)
(12.7316 0.0711692 0)
(12.7968 0.0329979 0)
(12.7476 0.0460316 0)
(12.8344 -0.00792033 0)
(12.8551 -0.0536385 0)
(12.8545 -0.0697968 0)
(12.9609 -0.122239 0)
(12.9193 -0.136367 0)
(13.0175 -0.140999 0)
(13.0361 -0.180107 0)
(13.0647 -0.187298 0)
(13.127 -0.239285 0)
(13.1362 -0.286322 0)
(13.142 -0.36861 0)
(13.1543 -0.418172 0)
(13.1019 -0.509254 0)
(13.0871 -0.559806 0)
(13.0301 -0.610213 0)
(12.9839 -0.650876 0)
(12.9821 -0.679873 0)
(12.9297 -0.698774 0)
(12.9599 -0.725896 0)
(12.9717 -0.743566 0)
(12.9457 -0.765672 0)
(13.0272 -0.78839 0)
(12.9952 -0.815046 0)
(13.0205 -0.839604 0)
(13.0863 -0.874829 0)
(13.0396 -0.899773 0)
(13.1008 -0.948739 0)
(13.1073 -0.965124 0)
(13.078 -1.0033 0)
(13.0721 -1.03267 0)
(13.08 -1.02763 0)
(12.9938 -1.06268 0)
(13.0332 -1.04009 0)
(13.01 -1.06449 0)
(12.9757 -1.03486 0)
(13.0674 -1.06252 0)
(12.9798 -1.04939 0)
(13.0608 -1.02044 0)
(13.0387 -1.03122 0)
(13.0183 -0.957428 0)
(12.9909 -0.959033 0)
(13.0089 -0.884584 0)
(12.8858 -0.860866 0)
(12.9229 -0.824146 0)
(12.807 -0.777462 0)
(12.7672 -0.780385 0)
(12.7358 -0.722517 0)
(12.5749 -0.725798 0)
(12.6257 -0.738461 0)
(12.3512 -0.671387 0)
(12.415 -0.750295 0)
(12.1597 -0.705876 0)
(12.0848 -0.782658 0)
(11.9603 -0.804571 0)
(11.7776 -0.884616 0)
(11.6495 -0.959807 0)
(11.5033 -0.990964 0)
(11.3304 -1.12896 0)
(11.1439 -1.14876 0)
(11.0876 -1.28308 0)
(10.7687 -1.31576 0)
(10.7717 -1.44118 0)
(10.4895 -1.51709 0)
(10.2275 -1.48293 0)
(10.1238 -1.59638 0)
(9.74705 -1.55678 0)
(9.35939 -1.41806 0)
(9.15946 -1.55972 0)
(8.59792 -1.48075 0)
(7.89844 -1.17184 0)
(7.58879 -1.34883 0)
(7.16819 -1.2287 0)
(6.16364 -0.710961 0)
(5.44798 -0.584686 0)
(5.35502 -0.26669 0)
(5.12 0.364292 0)
(4.53702 0.808361 0)
(4.16582 1.41615 0)
(3.61735 2.72659 0)
(2.90111 4.08915 0)
(2.58243 4.11026 0)
(2.62891 2.60734 0)
(2.80648 0.576625 0)
(2.46657 -1.14985 0)
(1.83208 -2.58346 0)
(1.08528 -4.20784 0)
(0.157989 -5.89317 0)
(-0.679386 -6.96332 0)
(-1.19834 -7.30321 0)
(-1.5356 -7.33684 0)
(-1.86911 -7.17468 0)
(-1.9636 -6.65438 0)
(-1.97789 -5.86223 0)
(-1.93001 -5.02008 0)
(-1.83536 -4.29256 0)
(-1.78365 -3.56201 0)
(-1.76842 -2.77904 0)
(-2.02688 -2.16304 0)
(-2.0252 -1.49146 0)
(-2.0983 -0.796904 0)
(-1.82751 -0.0893215 0)
(-1.84197 0.597664 0)
(-1.43489 1.23197 0)
(-1.12389 1.73424 0)
(-0.782847 2.2745 0)
(-0.495892 2.79923 0)
(-0.351055 3.4068 0)
(-0.0614389 4.06677 0)
(-0.000532364 4.6851 0)
(0.442726 5.45629 0)
(0.763168 5.74112 0)
(1.05795 5.77692 0)
(1.71037 5.7606 0)
(2.15512 5.53334 0)
(2.60947 4.65566 0)
(2.59695 4.72348 0)
(3.54246 3.42872 0)
(3.59769 4.3926 0)
(3.14818 1.25446 0)
(5.19903 4.56867 0)
(2.28101 -0.421792 0)
(5.87991 4.32938 0)
(3.47764 -0.205179 0)
(5.14989 3.64578 0)
(5.00939 -0.191598 0)
(4.8302 3.76353 0)
(5.38609 -0.769917 0)
(5.0207 4.16089 0)
(5.52173 -0.442925 0)
(5.34071 4.45415 0)
(5.79068 -0.172151 0)
(5.29968 4.10227 0)
(7.23438 0.838252 0)
(5.75855 3.84833 0)
(8.38724 1.28017 0)
(7.13555 4.07329 0)
(9.33244 2.04021 0)
(8.8336 4.10775 0)
(10.2279 2.57862 0)
(10.1901 3.29501 0)
(11.127 2.7611 0)
(11.502 3.07731 0)
(12.3601 2.94139 0)
(12.2575 2.91538 0)
(13.1172 2.63688 0)
(13.2786 2.25899 0)
(13.617 2.06726 0)
(14.2199 2.16292 0)
(14.3298 1.64922 0)
(14.7191 1.37151 0)
(14.7493 0.990379 0)
(14.9057 1.00839 0)
(15.0493 0.223211 0)
(15.0957 0.0591162 0)
(15.3705 -0.332615 0)
(15.0919 -0.48609 0)
(15.3276 -1.07341 0)
(15.3365 -1.30069 0)
(15.0378 -1.34133 0)
(15.2291 -1.73116 0)
(15.0369 -1.9639 0)
(14.7331 -2.21882 0)
(14.7307 -2.18692 0)
(14.4879 -2.55466 0)
(14.0206 -2.21308 0)
(14.178 -2.55963 0)
(12.3664 0.0114739 0)
(12.2994 0.0229224 0)
(12.4206 -0.00241485 0)
(12.5189 0.0183143 0)
(12.562 -0.00821866 0)
(12.6327 0.00134284 0)
(12.6278 0.0165995 0)
(12.656 0.00576083 0)
(12.6638 0.0436237 0)
(12.6732 0.0223172 0)
(12.6508 0.0257067 0)
(12.6399 0.0185994 0)
(12.5839 -0.0205779 0)
(12.5544 0.00956259 0)
(12.5335 -0.0145475 0)
(12.5355 0.0183859 0)
(12.5695 0.0381347 0)
(12.6377 0.0400452 0)
(12.6664 0.0730236 0)
(12.7904 0.0428955 0)
(12.7561 0.0363238 0)
(12.8277 0.00644522 0)
(12.8065 -0.0297177 0)
(12.7191 -0.0370904 0)
(12.7908 -0.0523844 0)
(12.63 -0.0552354 0)
(12.7175 -0.022948 0)
(12.6621 -0.0277144 0)
(12.6611 0.0194689 0)
(12.7481 0.0175453 0)
(12.7214 0.0319372 0)
(12.8072 0.033737 0)
(12.8628 0.0171677 0)
(12.8643 -0.00230778 0)
(12.9389 -0.0190136 0)
(12.9304 -0.06053 0)
(12.9159 -0.0864383 0)
(12.9596 -0.106878 0)
(12.9015 -0.157375 0)
(12.9522 -0.159494 0)
(12.9681 -0.218477 0)
(12.9894 -0.232079 0)
(13.0537 -0.290602 0)
(13.0912 -0.323483 0)
(13.0941 -0.376991 0)
(13.1453 -0.42079 0)
(13.0881 -0.471327 0)
(13.1017 -0.515865 0)
(13.065 -0.564879 0)
(13.0132 -0.603581 0)
(13.0366 -0.652056 0)
(12.9784 -0.686019 0)
(12.9969 -0.716398 0)
(12.9909 -0.765319 0)
(12.9866 -0.767174 0)
(12.9864 -0.820398 0)
(13.0229 -0.837769 0)
(12.9842 -0.858186 0)
(13.0494 -0.904098 0)
(13.0158 -0.924796 0)
(13.0326 -0.934238 0)
(13.0409 -0.989693 0)
(13.0157 -0.979919 0)
(13.0023 -1.01449 0)
(13.0345 -1.02808 0)
(12.9662 -1.04343 0)
(13.0136 -1.05061 0)
(13.0089 -1.05847 0)
(12.9312 -1.07336 0)
(13.0249 -1.05033 0)
(12.8737 -1.06927 0)
(12.9428 -1.00629 0)
(12.8335 -1.01207 0)
(12.8164 -0.945951 0)
(12.7537 -0.921574 0)
(12.7163 -0.852498 0)
(12.663 -0.844047 0)
(12.6047 -0.792324 0)
(12.5417 -0.710665 0)
(12.5008 -0.781868 0)
(12.3032 -0.60561 0)
(12.3225 -0.721814 0)
(12.1045 -0.610156 0)
(12.0089 -0.584932 0)
(11.9446 -0.681578 0)
(11.6805 -0.536381 0)
(11.6884 -0.707766 0)
(11.3923 -0.670833 0)
(11.3136 -0.682183 0)
(11.123 -0.883362 0)
(10.8776 -0.776906 0)
(10.7501 -0.985899 0)
(10.5998 -1.07404 0)
(10.2115 -1.01854 0)
(10.2191 -1.30193 0)
(9.84539 -1.22598 0)
(9.46757 -1.21597 0)
(9.53803 -1.44852 0)
(8.86155 -1.25369 0)
(8.64724 -1.18478 0)
(8.46389 -1.3598 0)
(7.58127 -1.03318 0)
(7.1812 -0.834101 0)
(6.81646 -1.0901 0)
(5.76882 -0.77014 0)
(4.86031 -0.188415 0)
(4.53131 -0.239718 0)
(4.54823 -0.597364 0)
(4.86523 -0.252053 0)
(4.81475 0.562569 0)
(4.49655 0.925244 0)
(4.06812 1.56133 0)
(3.29424 3.22995 0)
(2.91257 4.57708 0)
(2.69184 4.41188 0)
(3.01358 2.61528 0)
(2.92721 0.691892 0)
(2.76344 -0.737992 0)
(2.33275 -1.96435 0)
(1.36331 -3.45589 0)
(0.121143 -5.09084 0)
(-1.01319 -6.32452 0)
(-1.73999 -6.89642 0)
(-2.08151 -7.0061 0)
(-2.462 -6.83987 0)
(-2.63831 -6.42468 0)
(-2.76544 -5.84158 0)
(-2.83328 -5.19327 0)
(-2.77908 -4.40974 0)
(-2.7375 -3.5228 0)
(-2.68832 -2.7392 0)
(-2.76698 -2.18087 0)
(-2.6669 -1.53043 0)
(-2.74776 -0.801101 0)
(-2.64007 -0.112884 0)
(-2.59945 0.461478 0)
(-2.08506 1.02281 0)
(-2.253 1.53263 0)
(-1.80557 2.20012 0)
(-1.65708 2.69005 0)
(-1.48979 3.29651 0)
(-1.20988 3.94834 0)
(-1.03192 4.52178 0)
(-0.671619 5.02224 0)
(0.0979034 5.41869 0)
(0.35374 5.33955 0)
(0.823555 5.17154 0)
(1.6119 5.28565 0)
(1.99374 4.21369 0)
(2.3073 4.64623 0)
(2.18552 2.68336 0)
(3.63402 4.68169 0)
(1.78354 0.136059 0)
(5.22326 5.3566 0)
(2.06528 -1.41052 0)
(5.40964 4.72727 0)
(4.04357 -0.393933 0)
(4.92503 3.71047 0)
(5.13765 -0.690616 0)
(5.17928 3.68451 0)
(5.22914 -0.850886 0)
(5.09975 4.11777 0)
(5.34283 -0.362841 0)
(5.21011 4.27497 0)
(5.91458 0.152314 0)
(5.08727 3.77421 0)
(6.33682 0.626635 0)
(5.6489 3.22691 0)
(7.29036 1.28008 0)
(6.82531 3.17507 0)
(7.83301 1.64815 0)
(8.5909 3.09485 0)
(9.28338 1.97534 0)
(10.0166 2.87038 0)
(10.3982 2.37862 0)
(11.1434 2.43573 0)
(12.1166 2.7084 0)
(12.0051 2.50542 0)
(12.9787 2.33995 0)
(13.2637 1.99045 0)
(13.4151 1.7755 0)
(14.2541 1.99933 0)
(14.1122 1.36999 0)
(14.9165 1.1913 0)
(14.6498 0.876095 0)
(15.1489 0.761512 0)
(15.3765 0.20075 0)
(15.1937 -0.0325953 0)
(15.6904 -0.299612 0)
(15.2922 -0.53347 0)
(15.7906 -0.987195 0)
(15.5033 -1.21987 0)
(15.2768 -1.33214 0)
(15.313 -1.70216 0)
(15.2103 -2.01837 0)
(14.6815 -2.07939 0)
(14.4998 -1.89273 0)
(14.1165 -2.05528 0)
(13.9364 -1.83139 0)
(14.0814 -2.41127 0)
(12.2857 0.0693591 0)
(12.3241 0.0586585 0)
(12.4819 0.0267855 0)
(12.6149 0.0428809 0)
(12.7283 -0.0197017 0)
(12.7357 0.000893686 0)
(12.7565 -0.0154141 0)
(12.7055 -0.0167152 0)
(12.6686 0.0279616 0)
(12.6692 0.0128233 0)
(12.6019 0.0462031 0)
(12.6473 0.0405739 0)
(12.6061 0.0200577 0)
(12.6282 0.0295047 0)
(12.6525 -0.0136657 0)
(12.6423 -0.00201448 0)
(12.7017 -0.0232631 0)
(12.7033 -0.0131556 0)
(12.7329 -0.000217896 0)
(12.7767 0.00272076 0)
(12.7596 0.0262723 0)
(12.7896 0.0186527 0)
(12.7994 0.0243346 0)
(12.7455 0.00780479 0)
(12.7986 0.00378355 0)
(12.7334 -0.0243078 0)
(12.7537 -0.0182794 0)
(12.7674 -0.0389367 0)
(12.7424 -0.0305569 0)
(12.7949 -0.0272699 0)
(12.8118 -0.033346 0)
(12.8244 -0.0171357 0)
(12.8813 -0.0274707 0)
(12.9115 -0.0329383 0)
(12.9014 -0.029952 0)
(12.9951 -0.0676808 0)
(12.932 -0.0755882 0)
(13.0117 -0.104823 0)
(12.9801 -0.160793 0)
(13.0066 -0.158925 0)
(13.0164 -0.240392 0)
(13.0258 -0.247507 0)
(13.0323 -0.303753 0)
(13.0645 -0.340427 0)
(13.0437 -0.379237 0)
(13.0779 -0.421134 0)
(13.0626 -0.466604 0)
(13.0723 -0.505233 0)
(13.0781 -0.555009 0)
(13.0499 -0.596055 0)
(13.0726 -0.633914 0)
(13.0294 -0.677396 0)
(13.0343 -0.697594 0)
(12.9993 -0.745908 0)
(13.0034 -0.753437 0)
(12.9456 -0.807426 0)
(12.9888 -0.815646 0)
(12.9062 -0.867692 0)
(12.9457 -0.879784 0)
(12.8906 -0.930539 0)
(12.8757 -0.928943 0)
(12.8588 -0.984565 0)
(12.8117 -0.979979 0)
(12.812 -1.0011 0)
(12.7494 -1.03411 0)
(12.7555 -1.01161 0)
(12.6838 -1.0549 0)
(12.6605 -1.02514 0)
(12.575 -1.06505 0)
(12.5419 -0.989363 0)
(12.4417 -1.03347 0)
(12.4002 -0.953112 0)
(12.3032 -0.931989 0)
(12.2585 -0.943592 0)
(12.1319 -0.825635 0)
(12.101 -0.877159 0)
(11.9538 -0.770577 0)
(11.8618 -0.737006 0)
(11.8062 -0.68961 0)
(11.5609 -0.607806 0)
(11.5927 -0.61204 0)
(11.3351 -0.485646 0)
(11.2526 -0.562027 0)
(11.1496 -0.488137 0)
(10.8815 -0.460481 0)
(10.8979 -0.578895 0)
(10.5736 -0.457472 0)
(10.4908 -0.566924 0)
(10.3523 -0.644994 0)
(9.94526 -0.567079 0)
(10.0557 -0.79366 0)
(9.49309 -0.7347 0)
(9.42405 -0.791434 0)
(9.18335 -1.03368 0)
(8.69868 -0.858814 0)
(8.63529 -1.05582 0)
(8.26898 -1.16013 0)
(7.70918 -0.885425 0)
(7.63743 -1.10012 0)
(7.23262 -1.04925 0)
(6.39274 -0.528949 0)
(6.18439 -0.65222 0)
(5.80463 -0.734714 0)
(4.22546 -0.066562 0)
(3.30608 0.169981 0)
(3.43899 -0.135704 0)
(3.744 -0.529187 0)
(4.15835 -0.809267 0)
(4.41176 -0.363083 0)
(4.47773 0.511085 0)
(4.46518 1.17605 0)
(3.78932 2.22879 0)
(3.27054 3.64031 0)
(2.88834 4.58605 0)
(2.86002 4.14301 0)
(3.0586 2.46066 0)
(2.9997 0.749876 0)
(2.9676 -0.501576 0)
(2.40296 -1.48393 0)
(1.67433 -2.66769 0)
(0.710089 -4.15343 0)
(-0.627849 -5.48437 0)
(-1.6382 -6.35313 0)
(-2.21773 -6.66278 0)
(-2.80022 -6.58621 0)
(-3.25321 -6.28383 0)
(-3.5298 -5.67912 0)
(-3.70819 -4.95226 0)
(-3.74776 -4.2213 0)
(-3.75027 -3.51913 0)
(-3.6734 -2.88513 0)
(-3.61479 -2.17379 0)
(-3.67274 -1.42859 0)
(-3.72223 -0.891301 0)
(-3.45915 -0.333781 0)
(-3.46507 0.355577 0)
(-3.31812 0.937738 0)
(-3.32079 1.37305 0)
(-2.66529 1.94573 0)
(-2.97504 2.46978 0)
(-2.52504 3.15285 0)
(-2.24469 3.68897 0)
(-1.87869 4.24634 0)
(-1.572 4.53023 0)
(-0.862018 4.91939 0)
(-0.166532 5.13906 0)
(0.132351 4.5563 0)
(1.14565 4.92068 0)
(1.38267 3.57034 0)
(2.36399 4.98148 0)
(1.39353 1.55624 0)
(4.03325 5.33184 0)
(1.08222 -1.41867 0)
(5.78836 5.37715 0)
(2.54313 -1.36408 0)
(5.3412 3.96909 0)
(4.40555 -0.602431 0)
(4.90199 3.42765 0)
(5.05235 -0.815003 0)
(5.10641 3.8149 0)
(5.13026 -0.370719 0)
(4.70063 3.75472 0)
(5.54889 0.0623518 0)
(5.24573 3.39532 0)
(5.91377 0.567744 0)
(4.98654 3.25928 0)
(6.31209 0.628855 0)
(6.21836 2.47598 0)
(6.91175 1.08766 0)
(7.23691 2.41603 0)
(7.66221 1.40869 0)
(7.96223 2.08725 0)
(8.29849 1.65483 0)
(9.792 2.21412 0)
(10.1602 1.50951 0)
(10.719 1.88344 0)
(11.5448 2.24219 0)
(11.4282 1.95131 0)
(12.6283 2.06909 0)
(12.9743 1.63377 0)
(12.9501 1.37853 0)
(14.129 1.71463 0)
(13.7561 0.906182 0)
(14.7145 0.970416 0)
(14.3977 0.752464 0)
(15.1479 0.395008 0)
(15.3017 0.14925 0)
(15.0442 -0.177622 0)
(15.6495 -0.249871 0)
(15.2308 -0.649124 0)
(15.5573 -0.965987 0)
(15.2269 -1.16042 0)
(15.1001 -1.3295 0)
(14.8826 -1.55806 0)
(14.9523 -1.75788 0)
(14.3103 -1.53547 0)
(14.2103 -1.54481 0)
(13.7589 -1.90395 0)
(14.084 -1.95263 0)
(13.7429 -2.25182 0)
(12.3943 0.0449547 0)
(12.4496 0.0626788 0)
(12.5703 0.0573149 0)
(12.7119 0.0777174 0)
(12.758 0.0384795 0)
(12.7618 0.0391757 0)
(12.7515 0.0346199 0)
(12.6983 0.0072529 0)
(12.684 0.0366838 0)
(12.6715 0.00901751 0)
(12.6581 -0.00163137 0)
(12.6947 0.00758959 0)
(12.693 -0.0440327 0)
(12.7222 -0.0107833 0)
(12.7324 -0.0293421 0)
(12.7374 -0.0193814 0)
(12.746 0.0226536 0)
(12.7405 -0.00411166 0)
(12.7438 0.0470446 0)
(12.7541 0.0209818 0)
(12.7641 0.0150782 0)
(12.774 0.0228088 0)
(12.8243 -0.0286804 0)
(12.7946 -0.0141473 0)
(12.8582 -0.0316401 0)
(12.8191 -0.0505417 0)
(12.8422 -0.0175708 0)
(12.8403 -0.0416046 0)
(12.8196 -0.022651 0)
(12.8392 -0.00820974 0)
(12.8393 -0.037159 0)
(12.8458 -0.0145259 0)
(12.8756 -0.0388427 0)
(12.9006 -0.0576205 0)
(12.903 -0.0565414 0)
(12.9648 -0.0927734 0)
(12.942 -0.106806 0)
(13.0005 -0.124067 0)
(12.9805 -0.165343 0)
(13.0148 -0.17777 0)
(12.9979 -0.223595 0)
(13.0197 -0.255511 0)
(12.9954 -0.290186 0)
(13.02 -0.338212 0)
(12.9878 -0.374224 0)
(12.9955 -0.419842 0)
(12.986 -0.460579 0)
(12.9558 -0.498534 0)
(12.9617 -0.549722 0)
(12.9055 -0.572379 0)
(12.9126 -0.618258 0)
(12.8387 -0.653882 0)
(12.8511 -0.667324 0)
(12.7632 -0.724933 0)
(12.7751 -0.729675 0)
(12.6852 -0.777599 0)
(12.6801 -0.795051 0)
(12.5856 -0.836683 0)
(12.5581 -0.845063 0)
(12.4636 -0.889865 0)
(12.3917 -0.899239 0)
(12.3276 -0.917616 0)
(12.2104 -0.947931 0)
(12.1522 -0.942861 0)
(12.0173 -0.979607 0)
(11.9616 -0.94912 0)
(11.7816 -1.00216 0)
(11.7524 -0.947062 0)
(11.5534 -0.977492 0)
(11.5114 -0.949034 0)
(11.3495 -0.925535 0)
(11.2368 -0.923442 0)
(11.1353 -0.85242 0)
(10.9428 -0.847012 0)
(10.867 -0.761158 0)
(10.6658 -0.732047 0)
(10.5724 -0.663394 0)
(10.404 -0.617724 0)
(10.2771 -0.572704 0)
(10.1692 -0.514632 0)
(9.98777 -0.469066 0)
(9.9129 -0.434639 0)
(9.70499 -0.397834 0)
(9.59656 -0.379418 0)
(9.4245 -0.369098 0)
(9.23971 -0.358503 0)
(9.09058 -0.388593 0)
(8.87776 -0.392333 0)
(8.68492 -0.427999 0)
(8.49337 -0.492042 0)
(8.23297 -0.477402 0)
(8.00106 -0.598939 0)
(7.73148 -0.628811 0)
(7.32307 -0.627333 0)
(7.20548 -0.828456 0)
(6.64758 -0.723924 0)
(6.35425 -0.682786 0)
(6.09428 -0.893925 0)
(5.522 -0.57916 0)
(5.09303 -0.335012 0)
(5.01616 -0.604547 0)
(4.40746 -0.299182 0)
(2.92011 0.637744 0)
(1.97415 0.691599 0)
(2.30781 -0.0284096 0)
(2.82554 -0.587366 0)
(3.24165 -0.962351 0)
(3.61621 -0.976091 0)
(3.75401 -0.374547 0)
(3.92102 0.483138 0)
(3.79466 1.38827 0)
(3.41687 2.53524 0)
(3.23436 3.8751 0)
(2.77276 4.94865 0)
(3.1647 4.29324 0)
(3.34706 2.55279 0)
(3.21451 0.891235 0)
(2.78745 -0.287206 0)
(2.62317 -1.17002 0)
(2.66763 -2.05015 0)
(1.73421 -3.08086 0)
(0.0528023 -4.34457 0)
(-1.35629 -5.51062 0)
(-2.30828 -6.05367 0)
(-3.07675 -6.06044 0)
(-3.6506 -5.80277 0)
(-4.0484 -5.31778 0)
(-4.32863 -4.81089 0)
(-4.559 -4.25178 0)
(-4.71644 -3.48258 0)
(-4.80022 -2.69001 0)
(-4.80108 -2.03236 0)
(-4.78309 -1.46902 0)
(-4.71521 -0.882295 0)
(-4.68562 -0.229735 0)
(-4.73928 0.299923 0)
(-4.44058 0.760872 0)
(-4.37097 1.30568 0)
(-4.05595 1.89895 0)
(-4.14798 2.40355 0)
(-3.42189 3.01809 0)
(-3.59061 3.31413 0)
(-2.61023 4.03973 0)
(-2.29036 4.1615 0)
(-1.72565 4.14975 0)
(-0.68548 4.5203 0)
(-0.0299146 4.03136 0)
(0.448718 4.3101 0)
(1.4245 2.8311 0)
(2.30125 5.23435 0)
(1.35352 0.296546 0)
(4.28078 5.67259 0)
(0.949809 -2.35224 0)
(4.95592 5.34573 0)
(2.47812 -1.2432 0)
(4.34148 3.92871 0)
(4.0287 -0.333362 0)
(3.87923 3.59789 0)
(4.79143 -0.742194 0)
(4.64517 3.49147 0)
(5.15509 0.235985 0)
(4.70547 3.0447 0)
(5.48271 -0.0118361 0)
(5.42585 2.85439 0)
(5.64606 1.16536 0)
(5.54663 2.27724 0)
(6.45369 0.167489 0)
(7.08606 1.96377 0)
(7.01873 0.746772 0)
(7.82487 1.92917 0)
(7.70886 1.61472 0)
(8.19432 1.49817 0)
(8.51625 1.0496 0)
(9.70414 1.20962 0)
(9.84294 0.933327 0)
(10.1934 1.8276 0)
(10.8735 1.83591 0)
(11.0135 1.37016 0)
(12.2028 1.41128 0)
(12.1336 1.28633 0)
(12.3517 1.01425 0)
(13.6012 1.18322 0)
(13.1338 0.593497 0)
(14.1276 0.795852 0)
(13.8226 0.428591 0)
(14.7298 0.123316 0)
(14.5207 0.128306 0)
(14.4619 -0.264373 0)
(15.1882 -0.396299 0)
(14.5203 -0.758923 0)
(14.8719 -0.911065 0)
(14.4973 -0.96818 0)
(14.5735 -1.08701 0)
(14.475 -1.43693 0)
(14.2836 -1.43152 0)
(13.6559 -1.23011 0)
(13.7223 -1.63084 0)
(13.7062 -2.14004 0)
(13.7571 -1.94066 0)
(12.5294 -1.52861 0)
(12.2673 0.0412996 0)
(12.3165 0.11396 0)
(12.4422 0.128114 0)
(12.5552 0.146103 0)
(12.6046 0.0853495 0)
(12.5973 0.0564768 0)
(12.5808 0.0260955 0)
(12.5465 -0.0155715 0)
(12.5233 0.000621784 0)
(12.5292 -0.0226701 0)
(12.5151 -0.015287 0)
(12.5384 -0.000814715 0)
(12.5389 -0.02648 0)
(12.538 0.00175843 0)
(12.5469 -0.0155222 0)
(12.536 -0.00838095 0)
(12.542 0.00408714 0)
(12.5526 -0.0144422 0)
(12.5577 0.0122572 0)
(12.587 -0.00929364 0)
(12.5964 -0.00218948 0)
(12.6112 -0.00223118 0)
(12.634 -0.0187078 0)
(12.6123 -0.0132689 0)
(12.6264 -0.0177334 0)
(12.6032 -0.0284529 0)
(12.5964 -0.0157886 0)
(12.5982 -0.0306221 0)
(12.5922 -0.0331999 0)
(12.6009 -0.0250479 0)
(12.6193 -0.0547128 0)
(12.6224 -0.0401391 0)
(12.6469 -0.0591584 0)
(12.6571 -0.0719515 0)
(12.6599 -0.0717396 0)
(12.6749 -0.0979402 0)
(12.6698 -0.111386 0)
(12.6777 -0.126733 0)
(12.6624 -0.168869 0)
(12.6744 -0.176702 0)
(12.6402 -0.22622 0)
(12.6503 -0.251232 0)
(12.616 -0.277826 0)
(12.5994 -0.333391 0)
(12.5745 -0.3456 0)
(12.5372 -0.401085 0)
(12.4948 -0.42998 0)
(12.4614 -0.467876 0)
(12.393 -0.508765 0)
(12.3418 -0.542983 0)
(12.2857 -0.570795 0)
(12.1855 -0.614263 0)
(12.1498 -0.630135 0)
(12.0144 -0.668695 0)
(11.9695 -0.691603 0)
(11.8213 -0.711373 0)
(11.75 -0.746315 0)
(11.5943 -0.752997 0)
(11.5004 -0.783808 0)
(11.3319 -0.799192 0)
(11.2198 -0.804932 0)
(11.0583 -0.823265 0)
(10.889 -0.834717 0)
(10.781 -0.830896 0)
(10.5355 -0.858535 0)
(10.4617 -0.851593 0)
(10.1929 -0.862797 0)
(10.0985 -0.838785 0)
(9.84545 -0.842143 0)
(9.70351 -0.803152 0)
(9.49562 -0.791356 0)
(9.30122 -0.75909 0)
(9.16993 -0.708958 0)
(8.9227 -0.698725 0)
(8.86036 -0.610987 0)
(8.61185 -0.607917 0)
(8.52022 -0.530417 0)
(8.35877 -0.499659 0)
(8.19005 -0.443741 0)
(8.10796 -0.382985 0)
(7.90776 -0.369279 0)
(7.82586 -0.286424 0)
(7.66358 -0.295737 0)
(7.51815 -0.237701 0)
(7.39408 -0.232239 0)
(7.19664 -0.244583 0)
(7.05693 -0.215353 0)
(6.8772 -0.26423 0)
(6.65813 -0.255006 0)
(6.50528 -0.294633 0)
(6.2159 -0.332886 0)
(5.99193 -0.336946 0)
(5.65871 -0.402566 0)
(5.31699 -0.391989 0)
(5.04827 -0.412311 0)
(4.61545 -0.522265 0)
(4.31524 -0.458965 0)
(3.82295 -0.302107 0)
(3.65458 -0.350879 0)
(3.44726 -0.370166 0)
(2.68498 0.204123 0)
(1.65067 1.0089 0)
(1.02338 1.13273 0)
(1.36239 0.271987 0)
(1.95319 -0.562317 0)
(2.50403 -0.973455 0)
(2.77307 -1.18385 0)
(2.85397 -1.01894 0)
(3.07481 -0.404118 0)
(3.2302 0.534957 0)
(3.07692 1.62894 0)
(3.01476 2.7595 0)
(2.74725 4.11698 0)
(2.72763 4.6141 0)
(3.27182 3.5786 0)
(3.51048 2.27854 0)
(3.26154 1.1772 0)
(3.01456 -0.171452 0)
(3.2282 -1.30768 0)
(3.52269 -1.66091 0)
(2.75426 -2.00407 0)
(1.09388 -3.07907 0)
(-0.64223 -4.39086 0)
(-2.01909 -5.22973 0)
(-3.00089 -5.49683 0)
(-3.75492 -5.44108 0)
(-4.31432 -5.0527 0)
(-4.77093 -4.49858 0)
(-5.17458 -3.93535 0)
(-5.41592 -3.27162 0)
(-5.55265 -2.65407 0)
(-5.70889 -2.11143 0)
(-5.77426 -1.50466 0)
(-5.78075 -0.881388 0)
(-5.79013 -0.333325 0)
(-5.76115 0.226766 0)
(-5.64718 0.76025 0)
(-5.58471 1.12585 0)
(-5.06098 1.58095 0)
(-4.88761 2.19433 0)
(-4.42439 2.8441 0)
(-4.47293 2.77339 0)
(-3.26766 3.18934 0)
(-2.67942 3.81463 0)
(-1.96733 3.49825 0)
(-1.30141 3.59491 0)
(-0.357277 3.75785 0)
(0.177415 3.43592 0)
(1.12913 2.28191 0)
(2.20438 5.70552 0)
(1.15935 -1.17573 0)
(4.97206 6.06695 0)
(0.442148 -2.43378 0)
(5.55372 4.61983 0)
(2.34539 -0.89604 0)
(4.68256 2.69813 0)
(4.52529 -0.0293126 0)
(4.11988 2.18983 0)
(5.35795 -0.632318 0)
(4.57645 2.46744 0)
(5.24529 0.482369 0)
(5.01276 2.3548 0)
(4.93076 0.185153 0)
(5.69784 2.28382 0)
(5.71966 1.31175 0)
(6.78471 1.53794 0)
(6.60154 0.153201 0)
(7.71562 1.46463 0)
(7.31052 0.673923 0)
(7.96235 1.93653 0)
(8.40486 1.28197 0)
(8.85118 0.980908 0)
(9.00807 1.07819 0)
(9.73965 0.75655 0)
(9.47786 1.01623 0)
(10.004 1.51195 0)
(10.6059 1.10362 0)
(10.6451 1.11418 0)
(11.4851 1.04153 0)
(11.4942 0.946786 0)
(12.078 0.653431 0)
(12.7012 0.755914 0)
(12.2953 0.468076 0)
(13.553 0.562094 0)
(13.1131 0.000242331 0)
(13.9203 0.0769077 0)
(13.6826 0.0732846 0)
(13.7888 -0.459769 0)
(14.4261 -0.407922 0)
(13.612 -0.617678 0)
(14.3686 -0.900085 0)
(13.9726 -0.914452 0)
(13.8902 -0.991099 0)
(13.8446 -1.43041 0)
(13.6117 -1.28019 0)
(13.2774 -1.1561 0)
(13.3007 -1.66405 0)
(13.3409 -1.87906 0)
(12.544 -1.18387 0)
(11.4246 -0.804866 0)
(11.4873 0.0470531 0)
(11.5234 0.139258 0)
(11.6374 0.172464 0)
(11.7405 0.173479 0)
(11.7802 0.119462 0)
(11.7931 0.0830585 0)
(11.7721 0.0413465 0)
(11.7394 0.00373864 0)
(11.721 -0.00235715 0)
(11.7039 -0.0254321 0)
(11.6962 -0.0287712 0)
(11.7089 -0.0218004 0)
(11.6996 -0.0362766 0)
(11.7172 -0.0135352 0)
(11.7137 -0.0157144 0)
(11.7129 -0.00986634 0)
(11.7281 0.0100849 0)
(11.7127 -0.0091514 0)
(11.734 0.0111189 0)
(11.7274 -0.00633305 0)
(11.7278 -0.0118858 0)
(11.7376 0.00144865 0)
(11.725 -0.0245084 0)
(11.7261 -0.00957696 0)
(11.7247 -0.0141918 0)
(11.7086 -0.0287923 0)
(11.7248 -0.0111183 0)
(11.7146 -0.0332057 0)
(11.7217 -0.0344568 0)
(11.7302 -0.0311114 0)
(11.7187 -0.0566063 0)
(11.7333 -0.0466393 0)
(11.7188 -0.0590712 0)
(11.7188 -0.0754031 0)
(11.7111 -0.0710735 0)
(11.6967 -0.0947913 0)
(11.6866 -0.107766 0)
(11.6733 -0.118176 0)
(11.641 -0.15481 0)
(11.6342 -0.164932 0)
(11.5883 -0.198828 0)
(11.5618 -0.231957 0)
(11.5245 -0.252092 0)
(11.4677 -0.29655 0)
(11.4266 -0.323715 0)
(11.3552 -0.354929 0)
(11.2875 -0.395505 0)
(11.2085 -0.416844 0)
(11.1148 -0.452938 0)
(11.0103 -0.481528 0)
(10.908 -0.498044 0)
(10.7695 -0.536593 0)
(10.655 -0.544582 0)
(10.5011 -0.570785 0)
(10.3573 -0.59073 0)
(10.1969 -0.601255 0)
(10.0335 -0.621177 0)
(9.8524 -0.639846 0)
(9.68272 -0.648441 0)
(9.48579 -0.662063 0)
(9.2963 -0.677792 0)
(9.0991 -0.67126 0)
(8.88461 -0.689669 0)
(8.68267 -0.682236 0)
(8.44195 -0.691789 0)
(8.25346 -0.679497 0)
(7.99345 -0.669745 0)
(7.81809 -0.660444 0)
(7.55856 -0.637344 0)
(7.38931 -0.632275 0)
(7.15064 -0.609597 0)
(6.97406 -0.593953 0)
(6.79269 -0.549893 0)
(6.58074 -0.529596 0)
(6.46855 -0.482184 0)
(6.24717 -0.443174 0)
(6.16223 -0.413329 0)
(5.97527 -0.361901 0)
(5.86636 -0.331594 0)
(5.75266 -0.28073 0)
(5.60156 -0.238029 0)
(5.52846 -0.200806 0)
(5.36241 -0.158259 0)
(5.27635 -0.145686 0)
(5.11459 -0.115593 0)
(4.98883 -0.109122 0)
(4.84241 -0.112714 0)
(4.65683 -0.0814498 0)
(4.55031 -0.0846387 0)
(4.30826 -0.0769814 0)
(4.10353 -0.0751802 0)
(3.87521 -0.148948 0)
(3.52637 -0.185847 0)
(3.26352 -0.162459 0)
(2.81366 -0.107801 0)
(2.40469 -0.0620708 0)
(2.30125 -0.135483 0)
(2.12447 -0.275158 0)
(1.93775 -0.114965 0)
(1.30909 0.365892 0)
(0.631838 0.935359 0)
(0.409116 1.23261 0)
(0.857388 0.756217 0)
(1.43639 -0.208143 0)
(1.88797 -0.985757 0)
(2.25701 -1.27147 0)
(2.31871 -1.37179 0)
(2.35968 -1.22967 0)
(2.42872 -0.551086 0)
(2.30709 0.557358 0)
(2.22895 1.6385 0)
(2.37629 2.82516 0)
(2.28514 4.15636 0)
(2.70741 4.41729 0)
(3.51355 3.66814 0)
(4.31679 2.65811 0)
(4.5173 1.4883 0)
(4.47463 -0.22479 0)
(4.36366 -1.72306 0)
(4.52312 -1.66534 0)
(4.18083 -1.19173 0)
(2.62615 -1.61563 0)
(0.650606 -2.88863 0)
(-1.24656 -4.0677 0)
(-2.72217 -4.62811 0)
(-3.68327 -4.68947 0)
(-4.40888 -4.48388 0)
(-4.9219 -4.14913 0)
(-5.36661 -3.67959 0)
(-5.81579 -3.0543 0)
(-6.18277 -2.43042 0)
(-6.46689 -1.92107 0)
(-6.4798 -1.31872 0)
(-6.51888 -0.785617 0)
(-6.5981 -0.353562 0)
(-6.61683 0.183405 0)
(-6.57721 0.608997 0)
(-6.30338 0.85087 0)
(-5.8356 1.29089 0)
(-5.7956 1.8285 0)
(-4.95305 2.47929 0)
(-4.27254 2.51116 0)
(-4.55952 2.21242 0)
(-2.81696 3.12408 0)
(-2.29675 3.18022 0)
(-1.53833 2.79341 0)
(-1.38518 3.20056 0)
(1.01913 2.42605 0)
(-0.474556 2.03088 0)
(3.12353 4.8464 0)
(0.465924 -1.50048 0)
(4.27753 6.91678 0)
(1.34579 -2.54271 0)
(4.67536 3.56694 0)
(2.92708 -0.870837 0)
(3.45067 1.53226 0)
(4.13855 0.163797 0)
(2.94653 1.68396 0)
(4.34775 -0.203822 0)
(3.41129 2.11514 0)
(4.54314 0.807218 0)
(4.78739 2.0292 0)
(5.09557 0.202964 0)
(5.73565 1.6141 0)
(6.35042 1.04124 0)
(7.55365 0.869387 0)
(7.01658 0.158814 0)
(8.27231 1.05346 0)
(7.63778 0.539025 0)
(8.37744 1.48691 0)
(9.21919 0.799286 0)
(9.11379 0.85341 0)
(9.65963 0.79524 0)
(9.7429 0.493938 0)
(9.66637 0.954649 0)
(10.3897 0.931292 0)
(10.3613 0.979292 0)
(10.8541 0.994805 0)
(11.4276 0.517769 0)
(11.281 0.596854 0)
(11.8588 0.54966 0)
(12.2045 0.490772 0)
(12.3271 0.0939408 0)
(13.1692 0.130646 0)
(12.6398 -0.0542802 0)
(13.4773 0.0383712 0)
(13.3869 -0.316526 0)
(13.4052 -0.60139 0)
(13.5694 -0.244108 0)
(13.1785 -0.632372 0)
(13.8241 -0.9171 0)
(13.0869 -0.828628 0)
(13.3878 -1.16508 0)
(13.2484 -1.20828 0)
(12.83 -0.894811 0)
(12.7416 -1.07946 0)
(12.5236 -1.53766 0)
(12.3068 -1.27277 0)
(10.7415 -0.374125 0)
(9.82768 -0.26713 0)
(9.85409 0.0725074 0)
(9.88353 0.188851 0)
(9.98082 0.218279 0)
(10.0657 0.200641 0)
(10.1067 0.139868 0)
(10.1364 0.0822424 0)
(10.1286 0.0381823 0)
(10.1231 -0.00211711 0)
(10.118 -0.0140484 0)
(10.1059 -0.0255465 0)
(10.1056 -0.0292733 0)
(10.1012 -0.0190792 0)
(10.0915 -0.0232196 0)
(10.0982 -0.0122524 0)
(10.0887 -0.00751609 0)
(10.0938 -0.00991575 0)
(10.0986 -0.000195375 0)
(10.0934 -0.00688094 0)
(10.1078 -0.00251882 0)
(10.0994 -0.00306027 0)
(10.1044 -0.00709025 0)
(10.1053 -0.0027673 0)
(10.0995 -0.00957539 0)
(10.1048 -0.012917 0)
(10.101 -0.0134385 0)
(10.0971 -0.0241581 0)
(10.1035 -0.0227526 0)
(10.0932 -0.0295304 0)
(10.092 -0.0394895 0)
(10.0867 -0.0334356 0)
(10.071 -0.0474999 0)
(10.0666 -0.045676 0)
(10.0497 -0.0483545 0)
(10.0354 -0.0624431 0)
(10.0204 -0.062991 0)
(9.99942 -0.0771206 0)
(9.97858 -0.0938133 0)
(9.95332 -0.103438 0)
(9.91957 -0.129911 0)
(9.88704 -0.147232 0)
(9.83769 -0.170107 0)
(9.78899 -0.200175 0)
(9.72725 -0.216389 0)
(9.65445 -0.248967 0)
(9.57539 -0.270288 0)
(9.48118 -0.292751 0)
(9.37766 -0.319554 0)
(9.26523 -0.33812 0)
(9.13856 -0.359318 0)
(9.00367 -0.381877 0)
(8.86242 -0.395404 0)
(8.70452 -0.415471 0)
(8.54701 -0.429753 0)
(8.37261 -0.441158 0)
(8.1958 -0.455136 0)
(8.00424 -0.464164 0)
(7.80977 -0.473678 0)
(7.60143 -0.48079 0)
(7.3877 -0.486941 0)
(7.1661 -0.489971 0)
(6.93998 -0.48907 0)
(6.70974 -0.48693 0)
(6.4777 -0.489097 0)
(6.24654 -0.481055 0)
(6.01113 -0.484121 0)
(5.78205 -0.477456 0)
(5.5524 -0.474901 0)
(5.33212 -0.467989 0)
(5.1141 -0.462425 0)
(4.91752 -0.451684 0)
(4.71297 -0.434464 0)
(4.53809 -0.424628 0)
(4.35213 -0.398702 0)
(4.18959 -0.386642 0)
(4.03765 -0.35822 0)
(3.88664 -0.331338 0)
(3.76876 -0.302733 0)
(3.62568 -0.264374 0)
(3.52312 -0.230695 0)
(3.40627 -0.180817 0)
(3.29925 -0.141205 0)
(3.20588 -0.0904501 0)
(3.09831 -0.0527917 0)
(2.99516 -0.0242947 0)
(2.8699 -0.00902032 0)
(2.76875 -0.0141971 0)
(2.63009 -0.00728108 0)
(2.52585 0.00911274 0)
(2.39767 0.0445035 0)
(2.23952 0.0478382 0)
(1.96788 0.0793101 0)
(1.58647 0.148823 0)
(1.31898 0.209901 0)
(1.13802 0.23771 0)
(0.990203 0.105861 0)
(1.05969 -0.112616 0)
(1.12857 -0.18928 0)
(0.763609 0.0166662 0)
(0.464542 0.433398 0)
(0.156574 0.83333 0)
(0.144924 1.01771 0)
(0.572 0.810244 0)
(1.33341 0.183803 0)
(1.7593 -0.599937 0)
(1.86792 -1.13459 0)
(1.82944 -1.29534 0)
(1.71765 -1.26137 0)
(1.50957 -0.923302 0)
(1.27124 -0.210827 0)
(1.24984 0.672758 0)
(1.48259 1.54906 0)
(1.58115 2.72847 0)
(1.7169 3.65271 0)
(2.41389 3.49239 0)
(3.48133 2.4754 0)
(4.37125 1.81452 0)
(5.05088 1.66614 0)
(5.87243 0.533262 0)
(5.81578 -1.35398 0)
(5.61478 -1.57536 0)
(5.52604 -0.406963 0)
(4.30605 -0.16304 0)
(2.44648 -1.28218 0)
(0.167622 -2.53128 0)
(-1.70638 -3.45497 0)
(-2.91892 -3.98492 0)
(-3.91077 -4.015 0)
(-4.73888 -3.65938 0)
(-5.47539 -3.10226 0)
(-6.11673 -2.55344 0)
(-6.48255 -2.12294 0)
(-6.72458 -1.81404 0)
(-6.79679 -1.3697 0)
(-6.93945 -0.811482 0)
(-7.11378 -0.229472 0)
(-7.20544 0.27928 0)
(-7.13611 0.471149 0)
(-6.61105 0.6096 0)
(-6.10741 1.02697 0)
(-6.15836 1.33264 0)
(-5.49671 1.87132 0)
(-4.31364 2.40707 0)
(-4.3397 1.78669 0)
(-3.43702 2.07301 0)
(-2.49513 2.61801 0)
(-1.25357 2.22549 0)
(-2.17796 2.20343 0)
(1.81979 2.00675 0)
(-2.25866 1.47878 0)
(4.72824 3.19767 0)
(-1.58206 -1.17624 0)
(4.65248 6.31223 0)
(1.62742 -2.01693 0)
(2.18027 4.37253 0)
(2.9895 -0.45358 0)
(1.50471 2.11069 0)
(3.62908 0.208843 0)
(2.32246 1.87177 0)
(4.4536 -0.488769 0)
(3.68851 1.53719 0)
(4.55728 0.421879 0)
(5.89513 1.17201 0)
(6.02884 -0.0641356 0)
(6.49088 0.721689 0)
(7.44788 0.495497 0)
(7.79702 0.347931 0)
(7.76957 -0.0560803 0)
(8.72383 0.724959 0)
(7.86476 0.486052 0)
(8.96969 0.776431 0)
(9.36812 0.463412 0)
(9.14973 0.704351 0)
(9.95616 0.45862 0)
(9.69142 0.614359 0)
(9.98158 0.774339 0)
(10.4989 0.604013 0)
(10.3985 0.775328 0)
(11.227 0.542933 0)
(11.3521 0.445923 0)
(11.4401 0.649588 0)
(12.0244 0.208835 0)
(12.0823 0.0848027 0)
(12.3399 0.0675132 0)
(12.7513 0.0112441 0)
(12.6933 -0.218545 0)
(13.2097 -0.246616 0)
(12.8067 -0.230996 0)
(12.874 -0.240826 0)
(13.0339 -0.606657 0)
(12.8312 -0.826385 0)
(12.8249 -0.6549 0)
(12.2536 -0.682204 0)
(12.4879 -0.925382 0)
(12.4428 -0.98856 0)
(11.9649 -0.940904 0)
(11.4707 -0.874647 0)
(10.6005 -1.09784 0)
(10.076 -0.427745 0)
(9.24004 0.512486 0)
(9.02118 0.202944 0)
(7.63412 0.0937355 0)
(7.66463 0.162441 0)
(7.72008 0.175349 0)
(7.78405 0.157106 0)
(7.84049 0.110062 0)
(7.88534 0.0663642 0)
(7.90369 0.0303221 0)
(7.91437 -6.08905e-05 0)
(7.9141 -0.010394 0)
(7.90859 -0.0190389 0)
(7.90591 -0.0205358 0)
(7.90055 -0.0139187 0)
(7.89782 -0.0159785 0)
(7.90063 -0.00926922 0)
(7.89817 -0.00712146 0)
(7.90264 -0.00722595 0)
(7.90326 -0.000316281 0)
(7.90321 -0.00557016 0)
(7.9083 -0.00169826 0)
(7.90486 -0.00418606 0)
(7.91018 -0.00872962 0)
(7.90942 -0.00400668 0)
(7.90831 -0.0119378 0)
(7.90957 -0.0125916 0)
(7.90371 -0.0127289 0)
(7.89939 -0.0205071 0)
(7.89472 -0.0177042 0)
(7.8831 -0.0231167 0)
(7.87528 -0.0280178 0)
(7.86209 -0.0256193 0)
(7.84637 -0.0338968 0)
(7.83379 -0.0349425 0)
(7.81371 -0.0381919 0)
(7.79582 -0.0474384 0)
(7.77323 -0.050556 0)
(7.74709 -0.0608 0)
(7.71735 -0.071405 0)
(7.68115 -0.0805058 0)
(7.63739 -0.0977724 0)
(7.58834 -0.10953 0)
(7.52694 -0.125973 0)
(7.45967 -0.144039 0)
(7.38092 -0.156933 0)
(7.29194 -0.176168 0)
(7.19453 -0.191187 0)
(7.0843 -0.205479 0)
(6.96635 -0.221863 0)
(6.83653 -0.233708 0)
(6.69704 -0.246774 0)
(6.54792 -0.258469 0)
(6.38928 -0.265877 0)
(6.21968 -0.276461 0)
(6.04375 -0.281255 0)
(5.85663 -0.28606 0)
(5.66492 -0.290902 0)
(5.46317 -0.291787 0)
(5.25842 -0.293885 0)
(5.0459 -0.29483 0)
(4.83003 -0.29468 0)
(4.60943 -0.293938 0)
(4.38854 -0.292825 0)
(4.16798 -0.288918 0)
(3.95003 -0.28824 0)
(3.73521 -0.286828 0)
(3.5236 -0.290417 0)
(3.31969 -0.293844 0)
(3.12159 -0.295904 0)
(2.93488 -0.297579 0)
(2.74974 -0.297348 0)
(2.5763 -0.296475 0)
(2.40178 -0.293035 0)
(2.23765 -0.284972 0)
(2.07437 -0.270411 0)
(1.91684 -0.259095 0)
(1.77011 -0.240331 0)
(1.6299 -0.226387 0)
(1.50207 -0.205146 0)
(1.39273 -0.179 0)
(1.29223 -0.15189 0)
(1.19541 -0.114736 0)
(1.11476 -0.0757194 0)
(1.03356 -0.0266133 0)
(0.954138 0.0133024 0)
(0.848343 0.0430571 0)
(0.69963 0.0679797 0)
(0.542157 0.1027 0)
(0.419632 0.126341 0)
(0.346132 0.155531 0)
(0.28755 0.214658 0)
(0.226931 0.317087 0)
(0.168227 0.35294 0)
(0.175959 0.283599 0)
(0.205426 0.240561 0)
(0.367052 0.114381 0)
(0.478791 -0.0874751 0)
(0.431129 -0.125037 0)
(0.126713 0.116656 0)
(-0.192245 0.32624 0)
(-0.161275 0.468506 0)
(0.0663804 0.619488 0)
(0.551207 0.617997 0)
(1.21928 0.344434 0)
(1.76285 -0.162219 0)
(1.85936 -0.665653 0)
(1.58885 -1.04685 0)
(1.21402 -1.2116 0)
(0.750291 -1.12458 0)
(0.251799 -0.751819 0)
(-0.0839245 -0.181818 0)
(-0.0759244 0.559313 0)
(0.136114 1.54367 0)
(0.510903 2.61132 0)
(1.40927 3.21452 0)
(2.63106 2.91033 0)
(3.68474 1.86723 0)
(4.1537 1.0918 0)
(4.95416 0.467746 0)
(6.09902 -0.750506 0)
(6.04393 -1.96691 0)
(5.40062 -1.91538 0)
(5.34017 -0.373336 0)
(4.97243 0.712067 0)
(4.03968 0.285439 0)
(2.29057 -0.929248 0)
(0.370755 -2.1994 0)
(-1.42489 -2.88659 0)
(-2.98083 -2.99944 0)
(-4.15176 -2.82432 0)
(-4.99018 -2.51818 0)
(-5.70831 -2.21611 0)
(-6.20741 -1.88764 0)
(-6.69146 -1.56098 0)
(-7.13589 -1.20842 0)
(-7.26638 -0.628182 0)
(-7.27283 -0.0523904 0)
(-7.3547 0.145172 0)
(-7.42404 -0.062524 0)
(-6.92037 0.0683123 0)
(-6.25078 0.718489 0)
(-6.05019 1.12743 0)
(-5.8552 1.14705 0)
(-4.96249 1.25466 0)
(-3.63126 1.11468 0)
(-3.55506 1.70148 0)
(-2.57286 1.46491 0)
(-1.0317 1.75411 0)
(-2.12741 1.17054 0)
(1.96264 1.89068 0)
(-2.09753 0.375085 0)
(5.52276 2.59043 0)
(-2.02701 -0.964363 0)
(7.39052 3.78023 0)
(0.891641 -1.11309 0)
(5.85209 3.33881 0)
(2.74909 -0.0672981 0)
(5.872 1.10847 0)
(3.88131 -0.170229 0)
(6.09896 1.24438 0)
(5.09654 -0.5653 0)
(6.78331 0.756258 0)
(5.39049 0.0853602 0)
(7.65753 0.487664 0)
(6.77079 -0.304651 0)
(7.42202 0.438248 0)
(7.61581 0.156181 0)
(7.84503 0.235825 0)
(7.7219 -0.0873358 0)
(8.36759 0.525913 0)
(7.62858 0.477992 0)
(8.88977 0.329433 0)
(8.56995 0.382482 0)
(8.94829 0.612923 0)
(9.2652 0.186404 0)
(9.32023 0.506533 0)
(9.65591 0.503002 0)
(9.9823 0.378642 0)
(10.1221 0.506051 0)
(10.6854 0.351865 0)
(10.7378 0.190301 0)
(11.1852 0.125242 0)
(11.4496 0.0820351 0)
(11.4555 0.0328718 0)
(11.7574 -0.219268 0)
(11.7673 -0.347405 0)
(11.929 -0.218107 0)
(11.9963 -0.137478 0)
(11.7751 -0.254407 0)
(11.8903 -0.207435 0)
(11.4082 -0.459625 0)
(11.375 -0.338693 0)
(11.3353 -0.63921 0)
(11.2517 -0.920129 0)
(10.7136 -0.889125 0)
(10.2313 -0.666286 0)
(9.45288 -0.348485 0)
(8.91385 -0.142648 0)
(8.41306 -0.293079 0)
(7.77547 0.0262989 0)
(7.74238 0.492305 0)
(7.82558 0.28147 0)
(4.98265 0.0492875 0)
(5.01335 0.0431168 0)
(5.05325 0.0444113 0)
(5.11682 0.0474444 0)
(5.18222 0.0369793 0)
(5.23496 0.0208328 0)
(5.26577 0.00394626 0)
(5.28013 -0.0110632 0)
(5.2816 -0.0186414 0)
(5.27686 -0.0241063 0)
(5.27017 -0.0241064 0)
(5.26219 -0.0198968 0)
(5.25525 -0.019131 0)
(5.25024 -0.0150664 0)
(5.24477 -0.0122711 0)
(5.24268 -0.0109545 0)
(5.23986 -0.00718991 0)
(5.23747 -0.0078677 0)
(5.23651 -0.0063769 0)
(5.23273 -0.00675828 0)
(5.23071 -0.00836379 0)
(5.22644 -0.00704051 0)
(5.22184 -0.00956889 0)
(5.21648 -0.010206 0)
(5.20846 -0.0106554 0)
(5.19988 -0.0140213 0)
(5.19 -0.0137729 0)
(5.17732 -0.0160737 0)
(5.16434 -0.0185619 0)
(5.14834 -0.0178168 0)
(5.13097 -0.0214543 0)
(5.11266 -0.0220993 0)
(5.0906 -0.0234715 0)
(5.06749 -0.0280209 0)
(5.04045 -0.03005 0)
(5.00951 -0.0349394 0)
(4.97437 -0.0408076 0)
(4.93315 -0.0459829 0)
(4.88533 -0.0544976 0)
(4.83082 -0.061555 0)
(4.76715 -0.0697623 0)
(4.69596 -0.0792406 0)
(4.61521 -0.0861368 0)
(4.52574 -0.0953635 0)
(4.4274 -0.102607 0)
(4.31956 -0.10916 0)
(4.20373 -0.116072 0)
(4.07913 -0.120366 0)
(3.94655 -0.124661 0)
(3.80665 -0.128166 0)
(3.65973 -0.129066 0)
(3.50628 -0.130483 0)
(3.34777 -0.129954 0)
(3.18413 -0.128195 0)
(3.01757 -0.12652 0)
(2.84824 -0.124116 0)
(2.67868 -0.122343 0)
(2.5088 -0.120848 0)
(2.34078 -0.120637 0)
(2.17471 -0.123175 0)
(2.01403 -0.127944 0)
(1.8579 -0.133248 0)
(1.70515 -0.139841 0)
(1.55365 -0.146354 0)
(1.40258 -0.15433 0)
(1.24946 -0.16108 0)
(1.094 -0.166588 0)
(0.935081 -0.169178 0)
(0.77396 -0.169099 0)
(0.609222 -0.165942 0)
(0.442478 -0.159339 0)
(0.275768 -0.150576 0)
(0.10876 -0.138381 0)
(-0.0528352 -0.127935 0)
(-0.208468 -0.115781 0)
(-0.351318 -0.103357 0)
(-0.478561 -0.0893714 0)
(-0.585347 -0.069612 0)
(-0.676167 -0.0468278 0)
(-0.747286 -0.017678 0)
(-0.794641 0.0196238 0)
(-0.820753 0.0722365 0)
(-0.822457 0.13092 0)
(-0.807687 0.1784 0)
(-0.772364 0.190913 0)
(-0.733765 0.159512 0)
(-0.660152 0.118761 0)
(-0.611824 0.130213 0)
(-0.524635 0.161333 0)
(-0.404745 0.191908 0)
(-0.233614 0.192437 0)
(-0.115345 0.185335 0)
(0.018483 0.0889357 0)
(0.187172 -0.0375072 0)
(0.11645 0.00663734 0)
(0.00420351 0.192576 0)
(-0.0920066 0.361068 0)
(-0.0354539 0.291067 0)
(0.172664 0.187851 0)
(0.503047 0.117794 0)
(0.973348 0.00468418 0)
(1.45269 -0.170525 0)
(1.59119 -0.34961 0)
(1.26763 -0.512323 0)
(0.692498 -0.598437 0)
(-0.0406419 -0.555769 0)
(-0.775602 -0.389705 0)
(-1.2616 -0.160998 0)
(-1.42285 0.109594 0)
(-1.34821 0.604363 0)
(-0.925546 1.25638 0)
(-0.0669947 1.73106 0)
(1.28967 1.89086 0)
(2.88132 1.71681 0)
(4.21806 1.39942 0)
(4.98957 0.879603 0)
(5.66132 0.00235949 0)
(6.32804 -0.663878 0)
(6.00526 -0.905882 0)
(4.91843 -0.804056 0)
(4.2614 -0.0470846 0)
(4.31309 0.722379 0)
(4.90698 1.00601 0)
(4.80863 0.683409 0)
(3.35811 -0.275214 0)
(1.16415 -1.2852 0)
(-0.790387 -1.88364 0)
(-2.32838 -1.97507 0)
(-3.56989 -1.75704 0)
(-4.66259 -1.5004 0)
(-5.49905 -1.20497 0)
(-6.1915 -1.00232 0)
(-6.9405 -0.93084 0)
(-7.2475 -0.574553 0)
(-7.09497 -0.000719275 0)
(-6.96149 0.236981 0)
(-6.97789 0.018362 0)
(-6.90738 -0.136723 0)
(-6.68254 0.13111 0)
(-6.09089 0.710533 0)
(-5.17375 1.09421 0)
(-4.82947 0.630201 0)
(-4.5004 0.111867 0)
(-2.82421 1.50134 0)
(-2.85264 0.676645 0)
(-1.13818 1.12065 0)
(-1.83526 0.473013 0)
(1.25884 1.35203 0)
(-1.00948 -0.0808447 0)
(3.58061 1.50218 0)
(-0.568451 -0.560065 0)
(5.71894 1.7071 0)
(0.574878 -0.33885 0)
(7.03985 1.43256 0)
(2.37228 0.108563 0)
(7.31282 0.328061 0)
(3.40639 0.091823 0)
(7.17468 0.535316 0)
(4.17064 -0.269475 0)
(7.1041 0.465781 0)
(4.7033 0.108757 0)
(7.20024 0.12092 0)
(5.31779 -0.0211713 0)
(6.85751 0.160275 0)
(5.94028 0.078 0)
(6.79828 0.225357 0)
(6.27183 -0.133732 0)
(6.95685 0.45213 0)
(6.53166 0.227969 0)
(7.54146 0.126407 0)
(7.05891 0.328958 0)
(7.82787 0.253362 0)
(7.70736 0.137058 0)
(8.18201 0.350061 0)
(8.22889 0.213619 0)
(8.70845 0.259049 0)
(8.83535 0.165922 0)
(9.22666 0.0656613 0)
(9.33543 0.0682028 0)
(9.53289 -0.00199085 0)
(9.62176 -0.039683 0)
(9.75882 -0.093472 0)
(9.76603 -0.265542 0)
(9.73726 -0.293893 0)
(9.63937 -0.279149 0)
(9.66785 -0.295957 0)
(9.4255 -0.115121 0)
(9.4941 -0.168334 0)
(8.98847 -0.374761 0)
(8.94881 -0.293523 0)
(8.10996 -0.440074 0)
(7.79296 -0.068929 0)
(7.09553 -0.133043 0)
(6.87269 -0.132596 0)
(6.40491 0.187046 0)
(6.40551 0.0587915 0)
(6.29933 0.0375313 0)
(6.17104 0.179624 0)
(6.37172 0.199429 0)
(6.71385 0.256314 0)
(1.86555 0.0795148 0)
(1.90617 0.0463443 0)
(1.94948 0.0360483 0)
(2.0051 0.0346985 0)
(2.05628 0.0274433 0)
(2.09293 0.0149699 0)
(2.1082 0.00244991 0)
(2.10701 -0.00698654 0)
(2.09386 -0.0108092 0)
(2.07472 -0.0112294 0)
(2.05396 -0.00902136 0)
(2.03526 -0.00566866 0)
(2.01988 -0.00349871 0)
(2.00774 -0.00131701 0)
(1.99824 -0.00019788 0)
(1.99125 0.000271223 0)
(1.98589 0.00106366 0)
(1.98183 0.000564802 0)
(1.97837 0.00056958 0)
(1.97459 0.000163163 0)
(1.97069 -0.000248156 0)
(1.96622 4.94488e-05 0)
(1.96145 -0.000717543 0)
(1.95582 -0.000792731 0)
(1.94941 -0.000800215 0)
(1.94207 -0.00132071 0)
(1.93383 -0.000854336 0)
(1.92465 -0.00109682 0)
(1.91455 -0.00127638 0)
(1.90355 -0.00079999 0)
(1.89183 -0.00134473 0)
(1.87911 -0.00129094 0)
(1.8653 -0.00147662 0)
(1.85009 -0.00237028 0)
(1.83255 -0.00274986 0)
(1.81263 -0.00381609 0)
(1.78936 -0.00503536 0)
(1.76221 -0.00611308 0)
(1.73042 -0.00783728 0)
(1.6936 -0.00905516 0)
(1.6513 -0.0104882 0)
(1.60348 -0.0118987 0)
(1.55005 -0.0126533 0)
(1.49146 -0.01369 0)
(1.42778 -0.0141251 0)
(1.35964 -0.0141374 0)
(1.28776 -0.01407 0)
(1.21267 -0.0133241 0)
(1.13543 -0.0124053 0)
(1.05662 -0.0112124 0)
(0.97729 -0.00960648 0)
(0.898127 -0.00833669 0)
(0.819753 -0.00707961 0)
(0.742535 -0.00651297 0)
(0.666691 -0.00701394 0)
(0.591574 -0.00851034 0)
(0.516662 -0.0114652 0)
(0.440665 -0.0156857 0)
(0.362737 -0.0207031 0)
(0.280976 -0.0258271 0)
(0.193769 -0.0306036 0)
(0.100635 -0.0342404 0)
(0.00121503 -0.0374167 0)
(-0.104038 -0.0399553 0)
(-0.214592 -0.0417726 0)
(-0.331186 -0.0421329 0)
(-0.451537 -0.0402536 0)
(-0.57377 -0.0364196 0)
(-0.694142 -0.0308906 0)
(-0.810447 -0.0244742 0)
(-0.919638 -0.0177631 0)
(-1.0204 -0.0119322 0)
(-1.11162 -0.00811572 0)
(-1.19435 -0.00803686 0)
(-1.27069 -0.0121846 0)
(-1.34572 -0.0193398 0)
(-1.41858 -0.0266779 0)
(-1.48682 -0.0293181 0)
(-1.54641 -0.0281878 0)
(-1.58574 -0.0220891 0)
(-1.59659 -0.0126574 0)
(-1.56902 0.00057663 0)
(-1.50292 0.0152652 0)
(-1.40329 0.0286861 0)
(-1.28101 0.0380816 0)
(-1.17605 0.0385585 0)
(-1.08199 0.0458025 0)
(-0.982894 0.0447091 0)
(-0.864434 0.0331428 0)
(-0.732493 0.0408701 0)
(-0.580195 0.0557381 0)
(-0.423412 0.0343159 0)
(-0.324973 -0.000752953 0)
(-0.327967 0.0417741 0)
(-0.33212 0.0698596 0)
(-0.23259 0.0870175 0)
(-0.00134404 0.127291 0)
(0.293705 0.0584948 0)
(0.484969 -0.0281311 0)
(0.538706 -0.104463 0)
(0.496293 -0.140257 0)
(0.393411 -0.112641 0)
(0.186987 -0.0935473 0)
(-0.114106 -0.127901 0)
(-0.520959 -0.149343 0)
(-1.03184 -0.15327 0)
(-1.43222 -0.180022 0)
(-1.70384 -0.145726 0)
(-1.78215 -0.0391906 0)
(-1.58634 0.157602 0)
(-0.943527 0.335778 0)
(0.122044 0.358668 0)
(1.43736 0.294305 0)
(2.68617 0.295569 0)
(3.75517 0.270577 0)
(4.68233 -0.0912016 0)
(4.76196 -0.623354 0)
(3.79805 -0.720767 0)
(2.7482 -0.392067 0)
(2.04853 -0.0742096 0)
(1.81919 0.15839 0)
(2.12341 0.258152 0)
(2.71355 0.226134 0)
(3.33043 0.363051 0)
(3.96731 0.648844 0)
(4.08901 0.390974 0)
(3.04589 -0.261867 0)
(1.32046 -0.638564 0)
(-0.350495 -0.661732 0)
(-1.80854 -0.596503 0)
(-2.98621 -0.538249 0)
(-3.88253 -0.431483 0)
(-4.79522 -0.372163 0)
(-5.53819 -0.375576 0)
(-5.80824 -0.251834 0)
(-5.90636 -0.0934217 0)
(-5.87621 -0.00758076 0)
(-5.7253 -0.00116953 0)
(-5.96799 -0.104056 0)
(-6.00078 -0.0211494 0)
(-4.90085 0.419558 0)
(-4.07577 0.365773 0)
(-4.49922 -0.17145 0)
(-3.25744 0.478384 0)
(-2.79857 0.186017 0)
(-1.70508 0.271531 0)
(-1.95856 0.0501403 0)
(0.213323 0.354996 0)
(-1.08037 -0.185769 0)
(0.791093 0.169705 0)
(-0.56165 -0.272894 0)
(0.932217 0.262904 0)
(0.611497 -0.174506 0)
(2.05875 0.396634 0)
(1.8353 0.0480808 0)
(3.20123 0.149635 0)
(2.20673 0.0242556 0)
(3.57631 0.131923 0)
(2.77311 -0.0775122 0)
(3.66832 0.0201084 0)
(3.03512 -0.00988727 0)
(3.84806 -0.00222838 0)
(3.21934 -0.0605961 0)
(3.798 0.00314155 0)
(3.40161 0.02055 0)
(3.90028 -0.0149534 0)
(3.57638 -0.0248638 0)
(3.97809 0.0540556 0)
(3.93588 -0.0138502 0)
(4.29418 0.00703162 0)
(4.21419 -0.00177049 0)
(4.5742 -0.0106169 0)
(4.54225 -0.0279889 0)
(4.804 -0.0322255 0)
(4.82324 -0.0309163 0)
(5.09564 -0.0607503 0)
(5.05262 -0.0627275 0)
(5.21419 -0.0464421 0)
(5.11831 -0.104836 0)
(5.14682 -0.109009 0)
(5.03406 -0.117395 0)
(4.94542 -0.1349 0)
(4.72689 -0.114475 0)
(4.49684 -0.0968643 0)
(4.22615 -0.0628947 0)
(4.04533 0.0211023 0)
(3.91895 0.0153172 0)
(3.85757 0.0956658 0)
(3.76958 0.153651 0)
(3.73551 0.057536 0)
(3.40509 0.0663349 0)
(3.56567 0.0317957 0)
(3.25195 -0.0597013 0)
(3.3309 0.0181239 0)
(3.20119 0.00545906 0)
(3.35391 -0.0629728 0)
(3.28179 -0.0360595 0)
(3.40196 -0.0437859 0)
(3.35932 0.11232 0)
(3.84456 0.0113686 0)
(-0.200456 0.1081 0)
(-0.325709 -0.0248386 0)
(-0.0696649 -0.155797 0)
(0.284508 -0.119117 0)
(0.53343 -0.0683711 0)
(0.706628 -0.0326183 0)
(0.740794 0.105499 0)
(0.519792 0.129086 0)
(0.270855 0.0160283 0)
(0.110466 -0.0623396 0)
(0.187411 -0.0932954 0)
(0.352748 -0.0569963 0)
(0.480797 -0.078196 0)
(0.558489 -0.065888 0)
(0.481296 -0.00118304 0)
(0.377389 0.00583424 0)
(0.110819 0.111141 0)
(-0.199073 0.136307 0)
(-0.377276 0.0362277 0)
(-0.60654 0.0397718 0)
(-0.812456 0.0855551 0)
(-0.873626 0.0788037 0)
(-0.830837 0.0152911 0)
(-0.703092 -0.0289805 0)
(-0.496594 -0.0620771 0)
(-0.181032 -0.127352 0)
(0.264861 -0.152068 0)
(0.749231 -0.188614 0)
(1.22939 -0.174611 0)
(1.63656 -0.120048 0)
(1.92303 -0.0672256 0)
(2.1053 -0.0378518 0)
(2.23543 0.00190201 0)
(2.29066 0.0493335 0)
(2.23351 0.0817157 0)
(2.10784 0.111838 0)
(1.9133 0.132192 0)
(1.66675 0.138649 0)
(1.40416 0.14353 0)
(1.10603 0.118406 0)
(0.884596 0.0646719 0)
(0.769116 -0.0078699 0)
(0.797713 -0.107348 0)
(0.964745 -0.179321 0)
(1.25944 -0.173599 0)
(1.57278 -0.13929 0)
(1.86092 -0.111617 0)
(2.10906 -0.0934031 0)
(2.30383 -0.0914979 0)
(2.46605 -0.0211489 0)
(2.55192 0.101519 0)
(2.50183 0.144786 0)
(2.26526 0.188202 0)
(1.92185 0.277305 0)
(1.4305 0.33346 0)
(0.668354 0.342497 0)
(-0.11107 0.142204 0)
(-0.605831 -0.126777 0)
(-0.767353 -0.243698 0)
(-0.690584 -0.271308 0)
(-0.467788 -0.258851 0)
(-0.114683 -0.246222 0)
(0.326673 -0.232476 0)
(0.829527 -0.227295 0)
(1.34989 -0.198195 0)
(1.80282 -0.129726 0)
(2.19081 -0.0544731 0)
(2.43152 0.0497566 0)
(2.37779 0.173178 0)
(2.12784 0.251492 0)
(1.66115 0.327453 0)
(0.932481 0.29363 0)
(0.311375 0.162741 0)
(-0.174558 0.0529634 0)
(-0.396011 -0.0557533 0)
(-0.221456 -0.176402 0)
(0.145321 -0.209715 0)
(0.585808 -0.194993 0)
(0.923569 -0.225695 0)
(1.04483 -0.299163 0)
(0.994243 0.0561541 0)
(0.861 0.667349 0)
(0.960712 0.561973 0)
(1.34007 -0.277024 0)
(1.56557 -0.99434 0)
(1.89627 -1.26869 0)
(2.40607 -0.759424 0)
(1.42915 0.301029 0)
(-0.148681 0.58251 0)
(-1.19724 0.438109 0)
(-2.01177 0.34898 0)
(-2.66456 0.288347 0)
(-3.20415 0.241931 0)
(-3.66152 0.212017 0)
(-4.06253 0.202738 0)
(-4.41154 0.191254 0)
(-4.68917 0.16976 0)
(-4.9122 0.153611 0)
(-5.10642 0.147712 0)
(-5.25766 0.138665 0)
(-5.35863 0.122297 0)
(-5.41877 0.10988 0)
(-5.43676 0.0941649 0)
(-5.40693 0.0667591 0)
(-5.33086 0.0443748 0)
(-5.19817 0.0161399 0)
(-5.01958 -0.0115277 0)
(-4.80475 -0.0324025 0)
(-4.54335 -0.06188 0)
(-4.2415 -0.0853956 0)
(-3.90771 -0.10636 0)
(-3.52141 -0.135175 0)
(-3.09465 -0.152654 0)
(-2.6322 -0.171649 0)
(-2.1664 -0.177891 0)
(-1.64123 -0.188589 0)
(-1.11383 -0.197768 0)
(-0.56365 -0.196065 0)
(-0.00932064 -0.194738 0)
(0.537631 -0.18525 0)
(1.07199 -0.171862 0)
(1.57991 -0.152968 0)
(2.04791 -0.125591 0)
(2.4603 -0.0943611 0)
(2.80573 -0.0658352 0)
(3.08365 -0.0370117 0)
(3.29074 -0.00574407 0)
(3.41235 0.0238959 0)
(3.45223 0.042565 0)
(3.42988 0.0563029 0)
(3.35023 0.069213 0)
(3.21489 0.0749873 0)
(3.03669 0.0858273 0)
(2.81091 0.112734 0)
(2.52992 0.123048 0)
(2.18771 0.105644 0)
(1.82464 0.0875818 0)
(1.48448 0.0735977 0)
(1.18746 0.0603704 0)
(0.92272 0.0545031 0)
(0.6831 0.0548437 0)
(0.442646 0.0617995 0)
(0.176748 0.0663355 0)
(-0.0900753 0.0583244 0)
(-0.319744 0.0458435 0)
(-0.497225 0.0297949 0)
(-0.634479 0.0201936 0)
(-0.720995 0.0284762 0)
(-0.769868 0.0431644 0)
(-0.788154 0.0580726 0)
(-0.774749 0.0600232 0)
(-0.702247 0.0372786 0)
(-0.537549 0.0109515 0)
(-0.239622 -0.018698 0)
(0.202405 -0.0213591 0)
(0.727785 0.00600539 0)
(1.20205 0.0548059 0)
(1.46723 0.0577638 0)
(1.53434 -0.00268618 0)
(1.52121 -0.0665466 0)
(1.53081 -0.0983679 0)
(1.61639 -0.0968576 0)
(1.73069 -0.0447881 0)
(1.69058 -0.018215 0)
(1.56905 -0.0743151 0)
(1.54078 -0.0909357 0)
(1.54613 -0.0275301 0)
(1.46747 -0.0119335 0)
(1.43976 -0.0934064 0)
(1.53351 -0.183061 0)
(1.69873 -0.201932 0)
(1.8405 -0.140252 0)
(1.84001 -0.0676533 0)
(1.67135 -0.0205618 0)
(1.39671 0.00946799 0)
(1.04054 0.051868 0)
(0.579452 0.116371 0)
(0.0400024 0.172505 0)
(-0.520192 0.2076 0)
(-1.09825 0.22628 0)
(-1.68343 0.226198 0)
(-2.25853 0.226424 0)
(-2.81783 0.237707 0)
(-3.35406 0.247574 0)
(-3.83041 0.242017 0)
(-4.23626 0.233027 0)
(-4.60609 0.227458 0)
(-4.91536 0.206915 0)
(-5.15018 0.177355 0)
(-5.33824 0.160642 0)
(-5.45802 0.140896 0)
(-5.47883 0.0969536 0)
(-5.37177 0.0374318 0)
(-5.13255 -0.0256807 0)
(-4.74419 -0.101829 0)
(-4.1525 -0.203654 0)
(-3.30148 -0.325279 0)
(-2.2183 -0.42099 0)
(-0.982655 -0.422013 0)
(-0.0566686 -0.11335 0)
(-0.171818 0.282485 0)
(-0.0357924 -0.0398705 0)
(0.327133 -0.380732 0)
(0.633363 -0.406962 0)
(0.901061 -0.267726 0)
(1.03737 -0.100115 0)
(1.03928 0.0760681 0)
(1.00441 0.224741 0)
(0.811427 0.299684 0)
(0.595176 0.161734 0)
(0.453627 -0.135775 0)
(0.460007 -0.227835 0)
(0.45417 -0.0777363 0)
(0.34661 0.0717721 0)
(0.146695 0.159542 0)
(-0.196072 0.299977 0)
(-0.447773 0.330963 0)
(-0.653666 0.265195 0)
(-1.07025 0.335757 0)
(-1.50175 0.353407 0)
(-1.58554 0.149639 0)
(-1.46104 -0.0467127 0)
(-1.36412 -0.131031 0)
(-1.16402 -0.222055 0)
(-0.923112 -0.356368 0)
(-0.572426 -0.509585 0)
(-0.174975 -0.617496 0)
(0.341677 -0.670481 0)
(0.775038 -0.59519 0)
(1.19978 -0.449565 0)
(1.53738 -0.329881 0)
(1.78663 -0.25437 0)
(2.00152 -0.136611 0)
(2.16973 -0.0277979 0)
(2.2195 0.0621181 0)
(2.21772 0.137628 0)
(2.16479 0.219835 0)
(2.05117 0.268443 0)
(1.92493 0.288318 0)
(1.77221 0.298152 0)
(1.63394 0.185635 0)
(1.56966 0.0885683 0)
(1.62975 -0.0279974 0)
(1.66891 -0.237751 0)
(1.87513 -0.376464 0)
(2.12582 -0.38615 0)
(2.36151 -0.361125 0)
(2.65315 -0.298387 0)
(2.88618 -0.230459 0)
(3.04555 -0.195296 0)
(3.32865 -0.113085 0)
(3.40151 0.100135 0)
(3.33455 0.313244 0)
(3.4173 0.393172 0)
(3.18252 0.602566 0)
(2.87285 0.783865 0)
(2.50694 0.803449 0)
(2.14504 0.631407 0)
(1.83087 0.326678 0)
(1.52037 0.000826847 0)
(1.42009 -0.283302 0)
(1.52892 -0.494952 0)
(1.80996 -0.61533 0)
(2.19567 -0.700199 0)
(2.65571 -0.714585 0)
(3.08554 -0.602523 0)
(3.50545 -0.462273 0)
(3.83663 -0.177254 0)
(3.76045 0.23274 0)
(3.74146 0.45533 0)
(3.32674 0.628687 0)
(2.50572 0.910812 0)
(2.22966 0.691763 0)
(1.34479 0.436583 0)
(1.14413 0.142727 0)
(1.29786 -0.355258 0)
(1.3373 -0.530178 0)
(1.54853 -0.542247 0)
(1.78994 -0.120677 0)
(2.04228 0.333897 0)
(2.21463 0.0614421 0)
(2.32322 -0.574655 0)
(2.84136 -0.947674 0)
(2.40546 -0.371353 0)
(-0.00566734 0.553111 0)
(-2.074 0.9821 0)
(-3.0807 1.24248 0)
(-3.92776 1.4262 0)
(-4.64313 1.24426 0)
(-5.17586 1.02301 0)
(-5.62274 0.824657 0)
(-5.97715 0.667845 0)
(-6.23517 0.547121 0)
(-6.44486 0.466009 0)
(-6.59577 0.383723 0)
(-6.67766 0.295514 0)
(-6.70153 0.223923 0)
(-6.68206 0.16639 0)
(-6.62735 0.120791 0)
(-6.52589 0.0648391 0)
(-6.37326 0.0020142 0)
(-6.19552 -0.0474651 0)
(-5.97442 -0.11027 0)
(-5.71764 -0.171527 0)
(-5.43527 -0.222934 0)
(-5.09944 -0.287261 0)
(-4.74417 -0.33769 0)
(-4.37041 -0.377151 0)
(-3.95471 -0.424999 0)
(-3.53643 -0.466765 0)
(-3.09866 -0.511349 0)
(-2.60874 -0.566063 0)
(-2.12425 -0.602203 0)
(-1.57186 -0.632988 0)
(-1.05816 -0.656678 0)
(-0.488546 -0.683596 0)
(0.0818325 -0.70041 0)
(0.66591 -0.714259 0)
(1.26041 -0.713182 0)
(1.84699 -0.694924 0)
(2.43046 -0.671768 0)
(2.9852 -0.633799 0)
(3.50653 -0.573217 0)
(3.98621 -0.498148 0)
(4.41079 -0.415888 0)
(4.75802 -0.331947 0)
(5.05228 -0.238418 0)
(5.25524 -0.13461 0)
(5.37475 -0.0395483 0)
(5.42473 0.044329 0)
(5.39249 0.126749 0)
(5.27273 0.214831 0)
(5.06295 0.276503 0)
(4.79646 0.306638 0)
(4.50621 0.375317 0)
(4.18714 0.471547 0)
(3.80911 0.514485 0)
(3.37389 0.491652 0)
(2.8847 0.452844 0)
(2.37063 0.410363 0)
(1.89952 0.361266 0)
(1.48039 0.342855 0)
(1.09607 0.36238 0)
(0.758943 0.355714 0)
(0.478102 0.293549 0)
(0.283221 0.224513 0)
(0.129399 0.170901 0)
(0.00572738 0.0999601 0)
(-0.112375 0.0141289 0)
(-0.200782 -0.0535762 0)
(-0.250663 -0.112879 0)
(-0.23721 -0.217805 0)
(-0.140527 -0.369075 0)
(0.0851821 -0.559197 0)
(0.465987 -0.741921 0)
(1.05355 -0.817158 0)
(1.81686 -0.659354 0)
(2.6104 -0.306545 0)
(3.17023 -0.00508574 0)
(3.37561 0.0905135 0)
(3.3358 0.0460226 0)
(3.17066 -0.0493641 0)
(3.037 -0.014095 0)
(2.86772 0.168502 0)
(2.35239 0.197667 0)
(1.69364 0.11221 0)
(1.31443 0.138523 0)
(1.06751 0.157803 0)
(0.633482 0.0481713 0)
(0.0416075 -0.0557908 0)
(-0.401489 -0.0657602 0)
(-0.616111 0.0544868 0)
(-0.783216 0.243785 0)
(-1.19571 0.387743 0)
(-1.75457 0.532266 0)
(-2.25079 0.65475 0)
(-2.79968 0.693966 0)
(-3.38642 0.708818 0)
(-3.94699 0.705212 0)
(-4.47156 0.702194 0)
(-4.97496 0.71631 0)
(-5.4647 0.688015 0)
(-5.85558 0.635246 0)
(-6.16849 0.556458 0)
(-6.4352 0.465543 0)
(-6.61953 0.388314 0)
(-6.7475 0.297549 0)
(-6.83408 0.222261 0)
(-6.87341 0.161713 0)
(-6.85124 0.0806557 0)
(-6.72692 -0.0272687 0)
(-6.50378 -0.176653 0)
(-6.19349 -0.320484 0)
(-5.80692 -0.473555 0)
(-5.31495 -0.677101 0)
(-4.63789 -0.949395 0)
(-3.76276 -1.27595 0)
(-2.70194 -1.53937 0)
(-1.43855 -1.57876 0)
(-0.230032 -0.569296 0)
(-0.232383 0.277112 0)
(0.38775 -0.40046 0)
(0.729982 -0.682629 0)
(1.02216 -0.629759 0)
(1.21333 -0.419938 0)
(1.31054 -0.124257 0)
(1.24408 0.124367 0)
(1.19718 0.319213 0)
(0.979562 0.412341 0)
(0.815141 0.276214 0)
(0.643743 0.0320084 0)
(0.429782 -0.0491735 0)
(0.258336 0.0362114 0)
(0.0770887 0.226791 0)
(-0.232497 0.443324 0)
(-0.554898 0.549402 0)
(-0.805254 0.529583 0)
(-1.33284 0.659619 0)
(-1.84997 0.736352 0)
(-1.9101 0.414007 0)
(-1.74529 0.0608537 0)
(-1.71246 -0.0716079 0)
(-1.53718 -0.278096 0)
(-1.32025 -0.427278 0)
(-1.16757 -0.582208 0)
(-0.842935 -0.828322 0)
(-0.583129 -0.998687 0)
(-0.176132 -1.04971 0)
(0.17513 -0.934308 0)
(0.517314 -0.747009 0)
(0.835263 -0.597637 0)
(1.02504 -0.475879 0)
(1.27276 -0.270152 0)
(1.43518 -0.12402 0)
(1.48204 0.0310427 0)
(1.54383 0.161801 0)
(1.51156 0.277089 0)
(1.50825 0.350828 0)
(1.37719 0.393093 0)
(1.39808 0.390839 0)
(1.24059 0.231767 0)
(1.22982 0.0730998 0)
(1.26878 -0.142085 0)
(1.25574 -0.372331 0)
(1.33341 -0.512648 0)
(1.42603 -0.545967 0)
(1.5987 -0.563473 0)
(1.83376 -0.546973 0)
(2.04961 -0.471185 0)
(2.22488 -0.387969 0)
(2.49098 -0.157897 0)
(2.68994 0.0884987 0)
(2.81074 0.220145 0)
(2.97356 0.461157 0)
(3.11021 0.723188 0)
(3.12672 0.871901 0)
(3.10939 0.887464 0)
(3.00882 0.741558 0)
(2.83247 0.451024 0)
(2.62782 0.11061 0)
(2.57962 -0.226549 0)
(2.6173 -0.505912 0)
(2.78744 -0.725439 0)
(3.06145 -0.914387 0)
(3.39283 -1.00282 0)
(3.7641 -0.889858 0)
(4.18355 -0.764875 0)
(4.42298 -0.291082 0)
(4.44383 0.340846 0)
(4.77157 0.526723 0)
(4.03176 1.17523 0)
(3.61828 1.3069 0)
(3.33245 0.846529 0)
(2.13611 1.14282 0)
(2.53088 0.224994 0)
(2.04626 -0.37315 0)
(1.82414 -0.380107 0)
(2.19367 -0.491036 0)
(2.35383 -0.642153 0)
(2.75247 -0.817115 0)
(2.51512 -0.534572 0)
(0.64396 0.338554 0)
(-1.51135 1.23198 0)
(-2.79274 1.66645 0)
(-4.00275 1.6752 0)
(-4.75343 1.52947 0)
(-5.35413 1.5893 0)
(-5.69989 1.64903 0)
(-5.86475 1.47949 0)
(-5.92559 1.24771 0)
(-5.95938 1.02511 0)
(-5.98207 0.807094 0)
(-5.97684 0.634853 0)
(-5.98105 0.513954 0)
(-5.9528 0.394817 0)
(-5.87536 0.276648 0)
(-5.75954 0.182833 0)
(-5.63015 0.0941551 0)
(-5.49275 0.0160632 0)
(-5.3238 -0.063083 0)
(-5.09717 -0.155677 0)
(-4.87486 -0.231364 0)
(-4.60259 -0.315213 0)
(-4.31266 -0.399221 0)
(-4.01806 -0.476129 0)
(-3.66814 -0.560103 0)
(-3.30226 -0.632909 0)
(-2.92417 -0.697701 0)
(-2.51967 -0.759423 0)
(-2.08814 -0.814977 0)
(-1.65301 -0.87714 0)
(-1.1707 -0.949107 0)
(-0.665484 -1.01128 0)
(-0.159973 -1.05331 0)
(0.396005 -1.09438 0)
(0.944246 -1.13402 0)
(1.53203 -1.16037 0)
(2.10598 -1.18104 0)
(2.69399 -1.19286 0)
(3.28378 -1.16569 0)
(3.87883 -1.12453 0)
(4.43251 -1.06315 0)
(4.96239 -0.963229 0)
(5.45569 -0.848007 0)
(5.88599 -0.70838 0)
(6.24451 -0.564357 0)
(6.54304 -0.423282 0)
(6.75715 -0.233119 0)
(6.88473 -0.0734164 0)
(6.92797 0.0383187 0)
(6.90363 0.210415 0)
(6.77994 0.369837 0)
(6.57516 0.463152 0)
(6.31886 0.592264 0)
(5.95759 0.690459 0)
(5.55395 0.740517 0)
(5.18986 0.806324 0)
(4.79584 0.859413 0)
(4.33988 0.862424 0)
(3.84817 0.821013 0)
(3.37492 0.759982 0)
(2.89181 0.743067 0)
(2.35623 0.733239 0)
(1.84515 0.631012 0)
(1.41663 0.445566 0)
(1.10774 0.279879 0)
(0.883942 0.206956 0)
(0.718879 0.185892 0)
(0.591477 0.177691 0)
(0.477251 0.14653 0)
(0.391015 0.0637524 0)
(0.348613 -0.0979066 0)
(0.339587 -0.32427 0)
(0.386957 -0.627438 0)
(0.515573 -1.01455 0)
(0.858725 -1.33839 0)
(1.3808 -1.38451 0)
(2.13141 -1.04883 0)
(2.82045 -0.580346 0)
(3.26615 -0.181618 0)
(3.45916 0.0603618 0)
(3.46255 0.144072 0)
(3.26114 0.196782 0)
(3.04617 0.485924 0)
(2.65735 0.776312 0)
(1.89945 0.700538 0)
(1.16408 0.527451 0)
(0.709711 0.564836 0)
(0.254605 0.680749 0)
(-0.428912 0.577266 0)
(-1.22838 0.33336 0)
(-1.88978 0.282587 0)
(-2.31061 0.562793 0)
(-2.72683 0.82594 0)
(-3.24414 0.877745 0)
(-3.70468 0.95967 0)
(-4.09126 1.07708 0)
(-4.48107 1.11489 0)
(-4.88431 1.09945 0)
(-5.25891 1.08303 0)
(-5.63684 1.05349 0)
(-5.94514 0.980086 0)
(-6.17441 0.864359 0)
(-6.32529 0.728724 0)
(-6.46521 0.622352 0)
(-6.56484 0.519662 0)
(-6.63222 0.376406 0)
(-6.65477 0.277798 0)
(-6.63075 0.181248 0)
(-6.527 0.0291657 0)
(-6.36937 -0.163853 0)
(-6.11159 -0.373321 0)
(-5.80042 -0.565266 0)
(-5.41584 -0.789061 0)
(-4.97192 -1.08997 0)
(-4.34543 -1.54 0)
(-3.59833 -2.07639 0)
(-2.72162 -2.59568 0)
(-1.60471 -2.77735 0)
(-0.566257 -1.33083 0)
(-0.1598 0.171199 0)
(0.718562 -0.84029 0)
(1.00225 -1.01621 0)
(1.23795 -0.839023 0)
(1.35243 -0.537971 0)
(1.39733 -0.122795 0)
(1.32507 0.200939 0)
(1.21628 0.4108 0)
(1.03752 0.583329 0)
(0.814927 0.458931 0)
(0.55215 0.149555 0)
(0.359451 0.0760728 0)
(0.122402 0.236891 0)
(-0.189009 0.491468 0)
(-0.512353 0.69376 0)
(-0.753301 0.78169 0)
(-1.18049 0.949188 0)
(-1.89241 1.08327 0)
(-2.17476 0.815431 0)
(-1.91765 0.260334 0)
(-1.76254 0.000411874 0)
(-1.66924 -0.206036 0)
(-1.40739 -0.467392 0)
(-1.38142 -0.51714 0)
(-1.19754 -0.768633 0)
(-1.04898 -1.02618 0)
(-0.912608 -1.22087 0)
(-0.722215 -1.32988 0)
(-0.476046 -1.19202 0)
(-0.23388 -0.97603 0)
(-0.00178597 -0.789129 0)
(0.123624 -0.634239 0)
(0.428326 -0.404026 0)
(0.525688 -0.225841 0)
(0.61579 -0.0260411 0)
(0.708307 0.132574 0)
(0.69368 0.255228 0)
(0.713597 0.355665 0)
(0.574375 0.405008 0)
(0.579579 0.411604 0)
(0.374514 0.290807 0)
(0.445698 0.104533 0)
(0.350775 -0.132727 0)
(0.305215 -0.338357 0)
(0.238856 -0.514897 0)
(0.253686 -0.620678 0)
(0.43076 -0.648445 0)
(0.586857 -0.641836 0)
(0.860765 -0.593811 0)
(1.07 -0.534178 0)
(1.3147 -0.384848 0)
(1.57299 -0.121195 0)
(1.80596 0.0860963 0)
(2.07422 0.267684 0)
(2.21205 0.59956 0)
(2.49333 0.721374 0)
(2.5554 0.852208 0)
(2.65026 0.779948 0)
(2.63372 0.566286 0)
(2.53401 0.231683 0)
(2.46049 -0.197683 0)
(2.45186 -0.595883 0)
(2.5656 -0.909419 0)
(2.7563 -1.17525 0)
(3.02618 -1.36116 0)
(3.41171 -1.30372 0)
(3.80498 -1.03693 0)
(4.03525 -0.4715 0)
(4.32266 0.147295 0)
(4.49695 0.833889 0)
(3.87202 1.60167 0)
(3.8949 1.63668 0)
(3.07419 1.80847 0)
(2.84505 1.04188 0)
(2.30215 0.380734 0)
(1.67496 0.210686 0)
(2.14278 -0.840507 0)
(2.41765 -1.38887 0)
(1.28339 -0.427567 0)
(-0.576036 0.87587 0)
(-2.00382 1.61415 0)
(-3.27095 1.9491 0)
(-4.26875 2.07634 0)
(-4.91499 2.15717 0)
(-5.33749 2.06251 0)
(-5.49031 1.90641 0)
(-5.59405 1.77329 0)
(-5.5364 1.63551 0)
(-5.41721 1.43541 0)
(-5.28589 1.1945 0)
(-5.17023 0.968876 0)
(-5.05278 0.762445 0)
(-4.93595 0.601501 0)
(-4.85685 0.469202 0)
(-4.7712 0.325229 0)
(-4.66943 0.17297 0)
(-4.56085 0.056984 0)
(-4.4173 -0.0363215 0)
(-4.25272 -0.134462 0)
(-4.08442 -0.251569 0)
(-3.86363 -0.35892 0)
(-3.62642 -0.452003 0)
(-3.34752 -0.561428 0)
(-3.04827 -0.662075 0)
(-2.75717 -0.754049 0)
(-2.39474 -0.862542 0)
(-2.04398 -0.952661 0)
(-1.65408 -1.0295 0)
(-1.24356 -1.11171 0)
(-0.828077 -1.18691 0)
(-0.374341 -1.2649 0)
(0.108267 -1.35649 0)
(0.603027 -1.44038 0)
(1.12692 -1.50492 0)
(1.69493 -1.56244 0)
(2.25038 -1.61452 0)
(2.83873 -1.66786 0)
(3.43872 -1.68776 0)
(4.02694 -1.68751 0)
(4.61006 -1.67563 0)
(5.23151 -1.62258 0)
(5.7824 -1.53969 0)
(6.31908 -1.41205 0)
(6.83668 -1.2424 0)
(7.27397 -1.05283 0)
(7.6538 -0.861798 0)
(7.981 -0.644575 0)
(8.20434 -0.38616 0)
(8.33584 -0.159855 0)
(8.41066 0.0367242 0)
(8.37042 0.258896 0)
(8.26911 0.497904 0)
(8.1031 0.697144 0)
(7.73706 0.829576 0)
(7.37749 0.98767 0)
(7.02105 1.11026 0)
(6.51029 1.16112 0)
(6.01353 1.18018 0)
(5.61019 1.26684 0)
(5.1045 1.26918 0)
(4.52589 1.10537 0)
(4.04076 1.07112 0)
(3.60409 1.16687 0)
(3.20902 1.12711 0)
(2.83834 0.886076 0)
(2.40343 0.651106 0)
(1.99977 0.535143 0)
(1.70367 0.422058 0)
(1.47633 0.274143 0)
(1.26507 0.146997 0)
(1.10301 0.0349474 0)
(1.01151 -0.126333 0)
(0.947783 -0.332287 0)
(0.941747 -0.627162 0)
(0.945837 -1.0926 0)
(1.0456 -1.57419 0)
(1.30415 -1.77331 0)
(1.83732 -1.53576 0)
(2.37517 -1.01422 0)
(2.84853 -0.477659 0)
(3.03027 -0.148879 0)
(3.13476 0.121727 0)
(3.16524 0.358768 0)
(3.06954 0.667027 0)
(2.81044 1.05067 0)
(2.23196 1.27755 0)
(1.50995 1.14326 0)
(0.843278 0.979693 0)
(0.326713 1.06933 0)
(-0.214466 1.11426 0)
(-0.921304 0.98496 0)
(-1.64515 0.870732 0)
(-2.25784 0.940542 0)
(-2.73245 1.14652 0)
(-3.14967 1.28087 0)
(-3.54102 1.33254 0)
(-3.92033 1.38486 0)
(-4.32186 1.4066 0)
(-4.67568 1.38181 0)
(-5.00835 1.33934 0)
(-5.35986 1.28016 0)
(-5.61201 1.12845 0)
(-5.77137 0.94152 0)
(-5.8817 0.810277 0)
(-5.99317 0.681876 0)
(-6.08889 0.543932 0)
(-6.08287 0.371053 0)
(-6.0384 0.212801 0)
(-5.92923 0.0882462 0)
(-5.77913 -0.125127 0)
(-5.52972 -0.392514 0)
(-5.25928 -0.624788 0)
(-4.88455 -0.879033 0)
(-4.419 -1.18467 0)
(-3.92122 -1.54348 0)
(-3.28527 -2.08209 0)
(-2.65369 -2.71585 0)
(-2.06507 -3.39257 0)
(-1.35798 -3.66719 0)
(-0.761299 -2.44205 0)
(0.26594 -0.222174 0)
(0.844041 -1.16483 0)
(1.10865 -1.23878 0)
(1.23292 -0.949102 0)
(1.27037 -0.554074 0)
(1.26706 -0.0851274 0)
(1.20955 0.291634 0)
(1.08507 0.541662 0)
(0.926981 0.704739 0)
(0.758601 0.629921 0)
(0.556765 0.379965 0)
(0.299383 0.304607 0)
(-0.0170032 0.496112 0)
(-0.33993 0.750472 0)
(-0.596986 0.923134 0)
(-0.931132 1.1209 0)
(-1.55985 1.42522 0)
(-2.16207 1.36965 0)
(-2.13148 0.743044 0)
(-1.7851 0.102575 0)
(-1.74059 -0.0770305 0)
(-1.53355 -0.34955 0)
(-1.36271 -0.516743 0)
(-1.37202 -0.562415 0)
(-1.2054 -0.837296 0)
(-1.2397 -1.02742 0)
(-1.2008 -1.29901 0)
(-1.21503 -1.42413 0)
(-1.10992 -1.29056 0)
(-0.920531 -1.06486 0)
(-0.80146 -0.912078 0)
(-0.62491 -0.801284 0)
(-0.337485 -0.548253 0)
(-0.282498 -0.310408 0)
(-0.158978 -0.0973342 0)
(-0.143107 0.118053 0)
(-0.224643 0.335024 0)
(-0.214637 0.497829 0)
(-0.339904 0.539576 0)
(-0.293421 0.472753 0)
(-0.434441 0.259594 0)
(-0.518824 0.109889 0)
(-0.797988 -0.0235972 0)
(-0.972568 -0.211769 0)
(-1.09529 -0.461832 0)
(-1.05494 -0.691127 0)
(-0.922659 -0.815671 0)
(-0.733488 -0.864436 0)
(-0.414526 -0.830504 0)
(-0.213688 -0.715515 0)
(0.0774429 -0.578638 0)
(0.330073 -0.36762 0)
(0.649407 -0.111817 0)
(0.860683 0.113407 0)
(1.14695 0.337967 0)
(1.39532 0.613112 0)
(1.57278 0.694359 0)
(1.71754 0.684825 0)
(1.75137 0.556745 0)
(1.76187 0.238038 0)
(1.69126 -0.167865 0)
(1.64779 -0.605658 0)
(1.68874 -0.999947 0)
(1.85422 -1.37767 0)
(2.04802 -1.66234 0)
(2.38546 -1.65139 0)
(2.74598 -1.37745 0)
(3.05155 -0.787611 0)
(3.35955 0.0657549 0)
(3.48892 0.948722 0)
(3.34733 1.63635 0)
(3.28873 1.86088 0)
(2.78637 1.73456 0)
(2.19474 1.64461 0)
(1.54879 1.21469 0)
(2.25087 -0.497475 0)
(1.35663 -0.598736 0)
(-0.918342 0.71841 0)
(-2.30295 1.41043 0)
(-3.48069 1.91697 0)
(-4.32069 2.26804 0)
(-4.9068 2.44287 0)
(-5.17544 2.44404 0)
(-5.28274 2.32066 0)
(-5.2326 2.13338 0)
(-5.10941 1.93017 0)
(-4.91926 1.72079 0)
(-4.6936 1.49614 0)
(-4.47781 1.28774 0)
(-4.28878 1.08799 0)
(-4.12455 0.885677 0)
(-3.99528 0.680005 0)
(-3.86967 0.521705 0)
(-3.75128 0.391564 0)
(-3.64615 0.248663 0)
(-3.52794 0.0994333 0)
(-3.42309 -0.0283648 0)
(-3.27055 -0.155791 0)
(-3.0875 -0.283454 0)
(-2.9118 -0.399404 0)
(-2.67663 -0.532965 0)
(-2.42948 -0.671367 0)
(-2.16514 -0.79024 0)
(-1.83802 -0.907344 0)
(-1.5371 -1.02304 0)
(-1.18824 -1.14343 0)
(-0.807715 -1.24974 0)
(-0.444996 -1.34702 0)
(-0.0271635 -1.44801 0)
(0.40508 -1.54607 0)
(0.858591 -1.6363 0)
(1.3166 -1.73712 0)
(1.80142 -1.85955 0)
(2.325 -1.95096 0)
(2.90631 -2.01589 0)
(3.48892 -2.08346 0)
(4.08954 -2.13764 0)
(4.70179 -2.18648 0)
(5.32536 -2.19082 0)
(5.909 -2.15499 0)
(6.48843 -2.08942 0)
(7.06 -1.97936 0)
(7.58691 -1.85447 0)
(8.0991 -1.64572 0)
(8.549 -1.36587 0)
(8.95171 -1.15453 0)
(9.22941 -0.91242 0)
(9.5321 -0.515937 0)
(9.70704 -0.231694 0)
(9.75869 -0.022149 0)
(9.79517 0.343648 0)
(9.7172 0.6241 0)
(9.53288 0.873239 0)
(9.27996 1.17963 0)
(8.86642 1.30931 0)
(8.44041 1.49246 0)
(7.95124 1.63047 0)
(7.38543 1.62008 0)
(6.83212 1.67738 0)
(6.33129 1.7144 0)
(5.76585 1.58724 0)
(5.14229 1.50636 0)
(4.651 1.53352 0)
(4.28177 1.44363 0)
(3.92106 1.23281 0)
(3.4124 1.02456 0)
(2.84932 0.798204 0)
(2.41461 0.558779 0)
(2.0981 0.443281 0)
(1.83657 0.406745 0)
(1.59005 0.271531 0)
(1.42694 0.0221691 0)
(1.32889 -0.251404 0)
(1.29436 -0.582745 0)
(1.28764 -1.08044 0)
(1.23452 -1.68553 0)
(1.29716 -2.0406 0)
(1.63473 -1.86386 0)
(1.9739 -1.31744 0)
(2.33732 -0.658326 0)
(2.38152 -0.211978 0)
(2.41215 0.0544761 0)
(2.48476 0.299254 0)
(2.70645 0.780977 0)
(2.70258 1.40284 0)
(2.33691 1.69858 0)
(1.78522 1.60826 0)
(1.22307 1.49689 0)
(0.753185 1.54719 0)
(0.309412 1.65008 0)
(-0.324396 1.56934 0)
(-1.04829 1.40097 0)
(-1.69101 1.39775 0)
(-2.18954 1.52069 0)
(-2.62513 1.58731 0)
(-3.04262 1.63564 0)
(-3.47014 1.69815 0)
(-3.87102 1.70744 0)
(-4.22652 1.67544 0)
(-4.5109 1.61161 0)
(-4.79167 1.53402 0)
(-4.97884 1.35122 0)
(-5.12379 1.11963 0)
(-5.19764 0.925526 0)
(-5.21416 0.784184 0)
(-5.25477 0.617136 0)
(-5.23495 0.349212 0)
(-5.08529 0.0761149 0)
(-4.93293 -0.0998913 0)
(-4.66156 -0.295025 0)
(-4.27635 -0.639175 0)
(-3.91129 -0.924802 0)
(-3.47375 -1.23086 0)
(-2.85264 -1.59775 0)
(-2.32966 -2.03847 0)
(-1.78851 -2.50674 0)
(-1.24894 -3.04705 0)
(-0.95605 -3.66347 0)
(-0.758501 -4.07938 0)
(-0.512612 -3.3592 0)
(0.408162 -0.830212 0)
(0.760263 -1.50037 0)
(0.952309 -1.39257 0)
(0.993761 -0.994925 0)
(0.980137 -0.529988 0)
(0.959025 -0.0270704 0)
(0.909587 0.361809 0)
(0.805048 0.64779 0)
(0.70199 0.852277 0)
(0.576011 0.75853 0)
(0.439039 0.54482 0)
(0.212311 0.562267 0)
(-0.125048 0.765018 0)
(-0.424585 0.977727 0)
(-0.675196 1.19737 0)
(-1.15535 1.55527 0)
(-1.81943 1.84494 0)
(-2.20347 1.51973 0)
(-2.00693 0.596936 0)
(-1.79383 0.00472669 0)
(-1.78986 -0.190898 0)
(-1.54076 -0.52339 0)
(-1.53211 -0.578002 0)
(-1.43494 -0.649486 0)
(-1.30954 -0.852067 0)
(-1.33933 -0.991065 0)
(-1.39927 -1.25501 0)
(-1.51491 -1.42479 0)
(-1.50394 -1.35623 0)
(-1.36455 -1.14867 0)
(-1.23405 -1.03482 0)
(-1.06796 -0.923206 0)
(-0.857749 -0.646137 0)
(-0.801086 -0.36539 0)
(-0.695597 -0.0808515 0)
(-0.725109 0.152452 0)
(-0.754443 0.279335 0)
(-0.724058 0.392 0)
(-0.931933 0.495298 0)
(-1.11982 0.583685 0)
(-1.63232 0.560841 0)
(-1.93351 0.43564 0)
(-2.22175 0.15166 0)
(-2.32561 -0.177778 0)
(-2.44757 -0.466621 0)
(-2.3928 -0.74313 0)
(-2.32883 -0.948244 0)
(-2.06094 -1.05396 0)
(-1.8212 -1.01896 0)
(-1.5111 -0.930602 0)
(-1.14023 -0.803681 0)
(-0.958428 -0.587508 0)
(-0.567155 -0.346711 0)
(-0.32027 -0.11569 0)
(-0.0481566 0.160204 0)
(0.208693 0.402931 0)
(0.408602 0.569235 0)
(0.567741 0.611604 0)
(0.663049 0.503813 0)
(0.637231 0.239039 0)
(0.607318 -0.146476 0)
(0.516581 -0.576659 0)
(0.529175 -1.09309 0)
(0.474987 -1.54449 0)
(0.405131 -1.80764 0)
(0.52231 -1.83401 0)
(0.79617 -1.57817 0)
(1.10457 -0.953346 0)
(1.45273 -0.00695388 0)
(1.72074 0.999584 0)
(1.8656 1.78197 0)
(1.8681 2.21082 0)
(1.59278 2.37148 0)
(1.38995 1.93169 0)
(1.60103 0.624282 0)
(0.240111 0.559483 0)
(-1.72478 1.25765 0)
(-3.18354 1.72562 0)
(-4.0869 2.14519 0)
(-4.72974 2.44209 0)
(-5.02036 2.56313 0)
(-5.10156 2.5483 0)
(-4.99016 2.42941 0)
(-4.78088 2.22609 0)
(-4.52255 1.99574 0)
(-4.25811 1.76915 0)
(-3.97196 1.53472 0)
(-3.71695 1.30788 0)
(-3.49381 1.10284 0)
(-3.30126 0.916898 0)
(-3.12061 0.74444 0)
(-2.98926 0.573166 0)
(-2.86706 0.424213 0)
(-2.7372 0.28867 0)
(-2.62926 0.146585 0)
(-2.49742 0.00175184 0)
(-2.35356 -0.154056 0)
(-2.22068 -0.298605 0)
(-2.00294 -0.439636 0)
(-1.79751 -0.591302 0)
(-1.57396 -0.739611 0)
(-1.30034 -0.890411 0)
(-0.999158 -1.03755 0)
(-0.713484 -1.17621 0)
(-0.370678 -1.31304 0)
(-0.0237508 -1.4484 0)
(0.358769 -1.56921 0)
(0.712034 -1.67445 0)
(1.12646 -1.80095 0)
(1.54124 -1.91838 0)
(1.99919 -2.02159 0)
(2.48168 -2.12474 0)
(2.96075 -2.27546 0)
(3.43961 -2.4449 0)
(4.0435 -2.525 0)
(4.63168 -2.59741 0)
(5.22159 -2.67506 0)
(5.85501 -2.68689 0)
(6.51428 -2.71117 0)
(7.13425 -2.6749 0)
(7.69753 -2.56611 0)
(8.24281 -2.44162 0)
(8.73176 -2.28114 0)
(9.23015 -2.05698 0)
(9.67192 -1.74258 0)
(10.0897 -1.42471 0)
(10.3655 -1.13488 0)
(10.5842 -0.754099 0)
(10.9017 -0.343743 0)
(10.9454 -0.0602392 0)
(10.976 0.32402 0)
(11.031 0.726498 0)
(10.8155 1.02446 0)
(10.6174 1.41554 0)
(10.3307 1.67879 0)
(9.81042 1.81748 0)
(9.42291 2.08523 0)
(8.84853 2.14614 0)
(8.13069 2.13547 0)
(7.61056 2.21614 0)
(6.99124 2.09718 0)
(6.25397 1.94628 0)
(5.73493 1.95136 0)
(5.2901 1.8393 0)
(4.72895 1.54856 0)
(4.19471 1.33653 0)
(3.80682 1.27562 0)
(3.39709 1.09664 0)
(2.89469 0.797489 0)
(2.47455 0.624943 0)
(2.21019 0.449688 0)
(2.01789 0.102878 0)
(1.86998 -0.253252 0)
(1.77994 -0.583776 0)
(1.7085 -1.01158 0)
(1.55434 -1.60274 0)
(1.3842 -2.12019 0)
(1.50339 -2.07793 0)
(1.72363 -1.54901 0)
(2.02257 -0.825683 0)
(2.10977 -0.256647 0)
(2.15952 0.0937662 0)
(2.0566 0.223884 0)
(2.27189 0.669931 0)
(2.5729 1.3752 0)
(2.55479 1.96921 0)
(2.21036 2.11886 0)
(1.55852 1.89017 0)
(0.983389 1.78777 0)
(0.618871 1.93635 0)
(0.202104 2.05592 0)
(-0.341032 2.00864 0)
(-0.980785 1.93823 0)
(-1.57766 1.91522 0)
(-2.03675 1.97083 0)
(-2.50098 2.02624 0)
(-2.93901 2.05366 0)
(-3.30356 2.02725 0)
(-3.66379 1.93001 0)
(-3.92141 1.80928 0)
(-4.13687 1.63852 0)
(-4.25607 1.41081 0)
(-4.34218 1.15916 0)
(-4.38876 0.914115 0)
(-4.29564 0.705907 0)
(-4.21862 0.513949 0)
(-4.10763 0.295596 0)
(-3.92609 -0.0531162 0)
(-3.71031 -0.337658 0)
(-3.42219 -0.636919 0)
(-2.95824 -0.955957 0)
(-2.45019 -1.34265 0)
(-2.03798 -1.66856 0)
(-1.44224 -2.02407 0)
(-0.866057 -2.42407 0)
(-0.545939 -2.81432 0)
(-0.194435 -3.20482 0)
(-0.0202044 -3.61532 0)
(-0.160729 -4.01241 0)
(-0.187576 -3.5816 0)
(0.312768 -1.31272 0)
(0.553192 -1.69564 0)
(0.699626 -1.42849 0)
(0.670864 -0.973106 0)
(0.624718 -0.486148 0)
(0.587685 0.0117746 0)
(0.534757 0.427439 0)
(0.425481 0.73123 0)
(0.354902 0.895521 0)
(0.278088 0.783466 0)
(0.192778 0.652195 0)
(0.00203143 0.766046 0)
(-0.234818 0.997556 0)
(-0.478795 1.1951 0)
(-0.752802 1.54097 0)
(-1.30428 2.00822 0)
(-1.93896 2.15599 0)
(-2.16717 1.56037 0)
(-1.97559 0.488644 0)
(-1.92908 -0.0624353 0)
(-1.8567 -0.347368 0)
(-1.67842 -0.612173 0)
(-1.72534 -0.62047 0)
(-1.51404 -0.783683 0)
(-1.41792 -0.877825 0)
(-1.35152 -0.950377 0)
(-1.40987 -1.15791 0)
(-1.58018 -1.36583 0)
(-1.64402 -1.36921 0)
(-1.55453 -1.23332 0)
(-1.40368 -1.18505 0)
(-1.23361 -1.11349 0)
(-1.09812 -0.851537 0)
(-1.07096 -0.504076 0)
(-1.10226 -0.152551 0)
(-1.24995 0.141157 0)
(-1.46433 0.416246 0)
(-1.73673 0.666671 0)
(-2.09294 0.83691 0)
(-2.27736 0.923504 0)
(-2.66654 0.809533 0)
(-2.9187 0.611798 0)
(-3.38088 0.372855 0)
(-3.62511 0.0470385 0)
(-3.83111 -0.414833 0)
(-3.7804 -0.817306 0)
(-3.75119 -1.08828 0)
(-3.39614 -1.23827 0)
(-3.18268 -1.30823 0)
(-2.66513 -1.21948 0)
(-2.39571 -1.00786 0)
(-2.11362 -0.852266 0)
(-1.64865 -0.611355 0)
(-1.48468 -0.348399 0)
(-1.18028 -0.0529261 0)
(-0.937275 0.21512 0)
(-0.742652 0.402251 0)
(-0.592181 0.500749 0)
(-0.530147 0.462544 0)
(-0.506674 0.271407 0)
(-0.587642 -0.0751367 0)
(-0.672771 -0.568331 0)
(-0.994863 -0.933195 0)
(-1.42212 -1.29301 0)
(-1.60699 -1.71432 0)
(-1.61372 -1.93164 0)
(-1.43238 -1.78334 0)
(-1.17651 -1.20386 0)
(-0.778942 -0.291021 0)
(-0.370239 0.726724 0)
(-0.0369722 1.55042 0)
(0.174549 2.06457 0)
(0.27481 2.08614 0)
(0.116723 1.67713 0)
(-0.855203 1.63179 0)
(-2.41678 1.95926 0)
(-3.55525 2.24683 0)
(-4.27537 2.40099 0)
(-4.68214 2.55108 0)
(-4.82243 2.61603 0)
(-4.76266 2.55196 0)
(-4.542 2.42436 0)
(-4.26876 2.23403 0)
(-3.94356 1.99824 0)
(-3.62331 1.74898 0)
(-3.32722 1.50832 0)
(-3.02596 1.30018 0)
(-2.77561 1.11567 0)
(-2.55195 0.925052 0)
(-2.3672 0.752248 0)
(-2.20432 0.610595 0)
(-2.05952 0.464386 0)
(-1.92312 0.313476 0)
(-1.81091 0.19286 0)
(-1.64169 0.0365792 0)
(-1.51988 -0.122673 0)
(-1.33967 -0.271776 0)
(-1.15696 -0.443527 0)
(-0.924651 -0.621796 0)
(-0.717035 -0.780512 0)
(-0.444496 -0.953841 0)
(-0.158457 -1.14227 0)
(0.142025 -1.29212 0)
(0.453561 -1.43409 0)
(0.780228 -1.59863 0)
(1.13511 -1.74872 0)
(1.48228 -1.88115 0)
(1.86104 -2.00114 0)
(2.25031 -2.14691 0)
(2.6113 -2.28364 0)
(3.04739 -2.41662 0)
(3.55221 -2.53578 0)
(4.08472 -2.67323 0)
(4.53591 -2.87305 0)
(5.10641 -3.03122 0)
(5.76338 -3.0917 0)
(6.33725 -3.22621 0)
(6.92856 -3.2985 0)
(7.56694 -3.26295 0)
(8.1456 -3.19939 0)
(8.71404 -3.05038 0)
(9.24529 -2.90355 0)
(9.70779 -2.73441 0)
(10.1526 -2.45477 0)
(10.5496 -2.11543 0)
(10.917 -1.74495 0)
(11.2654 -1.3885 0)
(11.5048 -0.957313 0)
(11.7583 -0.520091 0)
(11.9303 -0.116495 0)
(11.9832 0.287935 0)
(12.0593 0.734827 0)
(11.9628 1.16421 0)
(11.7577 1.61147 0)
(11.5525 1.9456 0)
(11.1425 2.23845 0)
(10.6933 2.50276 0)
(10.2414 2.60376 0)
(9.53958 2.68881 0)
(8.90733 2.73318 0)
(8.29827 2.64833 0)
(7.52159 2.54473 0)
(6.7978 2.3953 0)
(6.27098 2.2378 0)
(5.73453 2.06535 0)
(5.12926 1.81959 0)
(4.57006 1.62236 0)
(4.14472 1.40669 0)
(3.68061 1.11171 0)
(3.20585 0.895656 0)
(2.9038 0.663094 0)
(2.71099 0.29918 0)
(2.45262 -0.0553623 0)
(2.28789 -0.367965 0)
(2.13185 -0.795585 0)
(1.90325 -1.40411 0)
(1.60737 -1.99604 0)
(1.4913 -2.12108 0)
(1.60238 -1.69277 0)
(1.84496 -0.969713 0)
(1.98945 -0.345307 0)
(2.15341 0.0646819 0)
(2.10972 0.218314 0)
(2.0738 0.482751 0)
(2.39087 1.22049 0)
(2.64137 2.01317 0)
(2.58614 2.40571 0)
(2.2653 2.42122 0)
(1.71949 2.32045 0)
(1.12757 2.35727 0)
(0.721953 2.43917 0)
(0.225153 2.42266 0)
(-0.370483 2.37774 0)
(-0.885918 2.36436 0)
(-1.45183 2.34879 0)
(-1.90531 2.37749 0)
(-2.33704 2.35623 0)
(-2.68675 2.28146 0)
(-2.95643 2.15613 0)
(-3.20279 1.97942 0)
(-3.31161 1.75514 0)
(-3.37235 1.50794 0)
(-3.39595 1.23533 0)
(-3.3871 0.962303 0)
(-3.31353 0.667079 0)
(-3.15779 0.43872 0)
(-3.08497 0.143618 0)
(-2.84362 -0.178929 0)
(-2.58838 -0.555354 0)
(-2.27557 -0.885463 0)
(-1.97019 -1.29177 0)
(-1.39139 -1.70356 0)
(-1.00269 -2.06575 0)
(-0.62466 -2.43355 0)
(-0.0945957 -2.73369 0)
(0.178533 -2.98433 0)
(0.25918 -3.28592 0)
(0.420501 -3.49919 0)
(0.0573335 -3.79786 0)
(-0.0520067 -3.55554 0)
(0.230329 -1.61279 0)
(0.332727 -1.81224 0)
(0.400447 -1.42885 0)
(0.307809 -0.923066 0)
(0.24671 -0.416428 0)
(0.199893 0.0653387 0)
(0.155503 0.487918 0)
(0.0808153 0.811179 0)
(0.0404619 0.95021 0)
(0.0373995 0.844555 0)
(-0.00506425 0.781928 0)
(-0.194103 0.937048 0)
(-0.32482 1.18509 0)
(-0.521906 1.41883 0)
(-0.828423 1.89953 0)
(-1.36359 2.42018 0)
(-1.87588 2.43192 0)
(-2.02697 1.62145 0)
(-1.92947 0.486808 0)
(-1.97263 -0.102761 0)
(-1.86718 -0.465382 0)
(-1.77662 -0.622001 0)
(-1.77412 -0.718816 0)
(-1.56466 -0.93358 0)
(-1.47313 -0.98822 0)
(-1.30007 -1.00569 0)
(-1.30835 -1.08204 0)
(-1.46686 -1.29514 0)
(-1.63844 -1.4194 0)
(-1.63342 -1.35588 0)
(-1.58758 -1.32401 0)
(-1.56143 -1.2267 0)
(-1.57234 -0.860979 0)
(-1.64868 -0.359958 0)
(-1.82737 0.0815771 0)
(-2.06174 0.404412 0)
(-2.33171 0.649119 0)
(-2.58149 0.893431 0)
(-2.96354 1.08593 0)
(-3.20043 1.20416 0)
(-3.6811 1.15866 0)
(-4.12634 0.995178 0)
(-4.58019 0.653474 0)
(-4.73358 0.154304 0)
(-4.99261 -0.382714 0)
(-4.92287 -0.878962 0)
(-4.89231 -1.2843 0)
(-4.55518 -1.53512 0)
(-4.26316 -1.67723 0)
(-3.75933 -1.46965 0)
(-3.44697 -1.31923 0)
(-2.98268 -1.13628 0)
(-2.64224 -0.808368 0)
(-2.47306 -0.585406 0)
(-2.16812 -0.256867 0)
(-1.97773 0.0539611 0)
(-1.82813 0.290276 0)
(-1.70999 0.448504 0)
(-1.6589 0.442298 0)
(-1.66909 0.256767 0)
(-1.87539 -0.0265425 0)
(-2.31806 -0.207071 0)
(-2.67666 -0.567081 0)
(-2.81335 -1.28716 0)
(-2.94271 -1.86739 0)
(-3.28468 -1.94716 0)
(-3.39708 -1.85272 0)
(-3.33701 -1.36644 0)
(-3.04699 -0.491484 0)
(-2.69714 0.47183 0)
(-2.37052 1.36241 0)
(-2.06211 1.95756 0)
(-2.05923 2.27211 0)
(-2.47527 2.4373 0)
(-3.25806 2.62253 0)
(-3.95871 2.73566 0)
(-4.30365 2.74888 0)
(-4.49149 2.70609 0)
(-4.47232 2.65267 0)
(-4.32408 2.5377 0)
(-4.04059 2.36447 0)
(-3.71263 2.16965 0)
(-3.35379 1.9439 0)
(-3.01874 1.70881 0)
(-2.69721 1.49222 0)
(-2.40611 1.27748 0)
(-2.11263 1.07266 0)
(-1.90043 0.908141 0)
(-1.68992 0.759251 0)
(-1.48139 0.611296 0)
(-1.33484 0.468421 0)
(-1.19968 0.350645 0)
(-0.991258 0.190047 0)
(-0.915391 0.0659893 0)
(-0.67488 -0.0929185 0)
(-0.520834 -0.268535 0)
(-0.322477 -0.445339 0)
(-0.111703 -0.634338 0)
(0.150389 -0.826007 0)
(0.408178 -1.00064 0)
(0.651636 -1.17317 0)
(0.982109 -1.38672 0)
(1.23477 -1.55639 0)
(1.5603 -1.72462 0)
(1.88433 -1.88524 0)
(2.17982 -2.02493 0)
(2.51126 -2.18734 0)
(2.86247 -2.2869 0)
(3.25846 -2.45286 0)
(3.63228 -2.61063 0)
(3.97908 -2.81456 0)
(4.44574 -2.9599 0)
(5.05829 -3.12009 0)
(5.57599 -3.37445 0)
(6.09985 -3.57489 0)
(6.74373 -3.63725 0)
(7.36793 -3.69209 0)
(7.92767 -3.83327 0)
(8.51413 -3.81501 0)
(9.01609 -3.72423 0)
(9.45402 -3.53979 0)
(9.92442 -3.3477 0)
(10.3499 -3.16552 0)
(10.736 -2.82431 0)
(11.0575 -2.42904 0)
(11.4042 -2.09699 0)
(11.7921 -1.65835 0)
(12.0073 -1.19908 0)
(12.2952 -0.722912 0)
(12.5501 -0.254608 0)
(12.6449 0.206823 0)
(12.7969 0.691799 0)
(12.8133 1.22562 0)
(12.6422 1.7041 0)
(12.559 2.15197 0)
(12.2384 2.53471 0)
(11.8301 2.84721 0)
(11.446 3.07261 0)
(10.8189 3.22985 0)
(10.202 3.24561 0)
(9.54913 3.23174 0)
(8.77339 3.17677 0)
(8.05799 2.95664 0)
(7.33241 2.76525 0)
(6.73312 2.57972 0)
(6.11773 2.30341 0)
(5.44344 2.02932 0)
(4.94498 1.74439 0)
(4.51897 1.51783 0)
(4.03965 1.28971 0)
(3.71659 0.94296 0)
(3.35967 0.534319 0)
(2.9942 0.0875749 0)
(2.78472 -0.320975 0)
(2.60439 -0.682926 0)
(2.33417 -1.18902 0)
(1.95058 -1.81978 0)
(1.69308 -2.08621 0)
(1.66223 -1.81606 0)
(1.80438 -1.15744 0)
(2.03066 -0.537496 0)
(2.27753 -0.0660708 0)
(2.34001 0.235566 0)
(2.27993 0.510028 0)
(2.20681 1.00601 0)
(2.53348 1.84345 0)
(2.76055 2.44601 0)
(2.67634 2.66172 0)
(2.27034 2.68512 0)
(1.80281 2.70535 0)
(1.32068 2.7776 0)
(0.933852 2.86214 0)
(0.408989 2.88264 0)
(-0.14119 2.84745 0)
(-0.598089 2.85245 0)
(-1.07245 2.76769 0)
(-1.46878 2.70054 0)
(-1.75257 2.59249 0)
(-1.97001 2.41041 0)
(-2.19266 2.16244 0)
(-2.2917 1.84745 0)
(-2.44879 1.55506 0)
(-2.47885 1.25934 0)
(-2.57964 0.908697 0)
(-2.54145 0.616764 0)
(-2.42881 0.278592 0)
(-2.36351 0.0125619 0)
(-2.25365 -0.376312 0)
(-1.99789 -0.824026 0)
(-1.81749 -1.17566 0)
(-1.50451 -1.59685 0)
(-1.17542 -2.03309 0)
(-0.740121 -2.31064 0)
(-0.473994 -2.67143 0)
(-0.0433901 -2.94786 0)
(0.262814 -3.083 0)
(0.285705 -3.27515 0)
(0.521635 -3.3349 0)
(0.102762 -3.57647 0)
(0.0387783 -3.48418 0)
(0.139297 -1.78476 0)
(0.117008 -1.8145 0)
(0.116501 -1.35279 0)
(-0.0200041 -0.836693 0)
(-0.102044 -0.360333 0)
(-0.17296 0.115314 0)
(-0.2391 0.542446 0)
(-0.274082 0.841583 0)
(-0.276245 0.932705 0)
(-0.233658 0.830697 0)
(-0.260142 0.859872 0)
(-0.368906 1.04182 0)
(-0.394904 1.29358 0)
(-0.526469 1.64341 0)
(-0.846682 2.23491 0)
(-1.30127 2.77071 0)
(-1.71726 2.64469 0)
(-1.80076 1.70976 0)
(-1.8127 0.559591 0)
(-1.93996 -0.119592 0)
(-1.86328 -0.562046 0)
(-1.84859 -0.666192 0)
(-1.77193 -0.831191 0)
(-1.61132 -1.03788 0)
(-1.52365 -1.09043 0)
(-1.38606 -1.06923 0)
(-1.32844 -1.01898 0)
(-1.43293 -1.11857 0)
(-1.70003 -1.27358 0)
(-1.84654 -1.27062 0)
(-1.99394 -1.23897 0)
(-2.11307 -1.11996 0)
(-2.24489 -0.741033 0)
(-2.34463 -0.223833 0)
(-2.56306 0.224749 0)
(-2.77778 0.654596 0)
(-3.00459 0.964274 0)
(-3.23457 1.14079 0)
(-3.58351 1.31374 0)
(-3.96665 1.48732 0)
(-4.4972 1.48992 0)
(-4.80796 1.28331 0)
(-5.2154 0.869571 0)
(-5.45306 0.373837 0)
(-5.66899 -0.353737 0)
(-5.57641 -1.00826 0)
(-5.63012 -1.44894 0)
(-5.32555 -1.90021 0)
(-5.11348 -2.05315 0)
(-4.67094 -1.88764 0)
(-4.13826 -1.76221 0)
(-3.75612 -1.42379 0)
(-3.37412 -1.06702 0)
(-3.13507 -0.763791 0)
(-2.91473 -0.363017 0)
(-2.69464 -0.0353507 0)
(-2.57963 0.209968 0)
(-2.46645 0.369836 0)
(-2.50629 0.402952 0)
(-2.74336 0.468919 0)
(-3.2039 0.452065 0)
(-3.50936 0.063229 0)
(-3.54861 -0.584398 0)
(-3.95845 -1.01938 0)
(-4.31762 -1.46104 0)
(-4.49809 -1.88217 0)
(-4.90465 -1.72562 0)
(-4.9807 -1.38447 0)
(-4.9568 -0.52926 0)
(-4.75773 0.406291 0)
(-4.47049 1.28118 0)
(-4.29259 2.10587 0)
(-4.20343 2.58616 0)
(-4.30602 2.87929 0)
(-4.4314 2.99841 0)
(-4.42587 2.96733 0)
(-4.31032 2.83768 0)
(-4.11512 2.68662 0)
(-3.85 2.51758 0)
(-3.52293 2.32325 0)
(-3.15136 2.10378 0)
(-2.79901 1.88233 0)
(-2.43537 1.64724 0)
(-2.10526 1.42957 0)
(-1.79517 1.23076 0)
(-1.52788 1.0406 0)
(-1.26581 0.872368 0)
(-1.04729 0.723242 0)
(-0.847488 0.572553 0)
(-0.664783 0.470317 0)
(-0.447232 0.323716 0)
(-0.346441 0.205616 0)
(-0.0673292 0.0561715 0)
(0.0235769 -0.0876218 0)
(0.282551 -0.269584 0)
(0.48868 -0.442989 0)
(0.703925 -0.620258 0)
(0.945208 -0.809989 0)
(1.1811 -1.03511 0)
(1.45486 -1.24414 0)
(1.71476 -1.41013 0)
(1.97736 -1.6134 0)
(2.281 -1.77083 0)
(2.50208 -1.9295 0)
(2.85216 -2.14747 0)
(3.1186 -2.2648 0)
(3.39529 -2.4611 0)
(3.70023 -2.58918 0)
(4.0674 -2.766 0)
(4.52103 -2.90304 0)
(4.95581 -3.145 0)
(5.35254 -3.43125 0)
(5.97248 -3.56547 0)
(6.5635 -3.83349 0)
(7.09355 -4.09128 0)
(7.69665 -4.2092 0)
(8.2456 -4.27522 0)
(8.75261 -4.32245 0)
(9.21557 -4.25017 0)
(9.5898 -4.08471 0)
(9.93608 -3.90302 0)
(10.2799 -3.67626 0)
(10.6143 -3.47813 0)
(10.9127 -3.13716 0)
(11.2514 -2.69703 0)
(11.5761 -2.37602 0)
(11.9382 -1.97418 0)
(12.2343 -1.40651 0)
(12.4845 -0.934554 0)
(12.7989 -0.44758 0)
(12.9465 0.103661 0)
(13.1786 0.637186 0)
(13.2698 1.1539 0)
(13.2062 1.75535 0)
(13.2369 2.26797 0)
(13.0359 2.75405 0)
(12.7115 3.13386 0)
(12.4612 3.43513 0)
(11.9035 3.70637 0)
(11.3547 3.80589 0)
(10.7516 3.8107 0)
(10.0135 3.75313 0)
(9.22372 3.59418 0)
(8.5335 3.41295 0)
(7.87095 3.11928 0)
(7.11437 2.80918 0)
(6.41977 2.53639 0)
(5.91078 2.2175 0)
(5.31879 1.93444 0)
(4.86943 1.58388 0)
(4.50101 1.22298 0)
(4.12137 0.876691 0)
(3.73403 0.375234 0)
(3.40889 -0.119139 0)
(3.1367 -0.429952 0)
(2.9053 -0.870303 0)
(2.59322 -1.47233 0)
(2.18 -1.90749 0)
(2.00892 -1.77676 0)
(2.01665 -1.29234 0)
(2.24509 -0.709292 0)
(2.42678 -0.206444 0)
(2.55754 0.208629 0)
(2.47925 0.511455 0)
(2.42236 0.954571 0)
(2.51474 1.67575 0)
(2.68762 2.35624 0)
(2.78226 2.76937 0)
(2.63481 2.99152 0)
(2.23707 3.11068 0)
(1.9336 3.10548 0)
(1.48024 3.2345 0)
(1.06963 3.30528 0)
(0.678744 3.23955 0)
(0.169251 3.14142 0)
(-0.101559 3.12692 0)
(-0.489116 2.99678 0)
(-0.78696 2.82609 0)
(-1.00913 2.58932 0)
(-1.23106 2.39021 0)
(-1.43495 2.04836 0)
(-1.73869 1.77574 0)
(-1.97015 1.42418 0)
(-2.18177 1.0882 0)
(-2.37539 0.652639 0)
(-2.23034 0.265058 0)
(-2.33737 0.00828336 0)
(-2.22712 -0.383396 0)
(-2.12981 -0.888568 0)
(-2.08417 -1.24526 0)
(-1.85501 -1.80176 0)
(-1.68122 -2.2427 0)
(-1.31043 -2.58838 0)
(-1.01855 -3.00084 0)
(-0.662582 -3.30334 0)
(-0.168434 -3.33037 0)
(-0.120214 -3.4578 0)
(0.355977 -3.30879 0)
(0.029705 -3.40621 0)
(0.0939364 -3.36902 0)
(0.065736 -1.80793 0)
(-0.0803593 -1.75163 0)
(-0.156638 -1.24757 0)
(-0.331527 -0.735719 0)
(-0.419716 -0.279435 0)
(-0.482584 0.191389 0)
(-0.524571 0.596693 0)
(-0.498385 0.862744 0)
(-0.447725 0.901053 0)
(-0.39269 0.820755 0)
(-0.453302 0.897421 0)
(-0.514467 1.06929 0)
(-0.46429 1.3461 0)
(-0.522922 1.84601 0)
(-0.781438 2.50049 0)
(-1.09928 3.01556 0)
(-1.38671 2.79972 0)
(-1.46957 1.8108 0)
(-1.55744 0.693736 0)
(-1.6897 -0.0827175 0)
(-1.63345 -0.607207 0)
(-1.61391 -0.7394 0)
(-1.51478 -0.919199 0)
(-1.40693 -1.11627 0)
(-1.37407 -1.15764 0)
(-1.32676 -1.13837 0)
(-1.26725 -1.02344 0)
(-1.29967 -0.947248 0)
(-1.60861 -1.05738 0)
(-1.90915 -1.0839 0)
(-2.19633 -1.07308 0)
(-2.4891 -0.986518 0)
(-2.70183 -0.608016 0)
(-2.8579 -0.0465394 0)
(-3.03702 0.467549 0)
(-3.25301 0.812417 0)
(-3.52499 1.08934 0)
(-3.73399 1.37472 0)
(-4.00662 1.64573 0)
(-4.31256 1.86871 0)
(-4.75198 1.8115 0)
(-5.00308 1.52268 0)
(-5.30967 1.11846 0)
(-5.4274 0.513888 0)
(-5.54577 -0.30298 0)
(-5.55696 -0.961875 0)
(-5.62348 -1.61257 0)
(-5.49499 -2.14472 0)
(-5.43799 -2.3635 0)
(-5.12096 -2.40432 0)
(-4.76063 -2.17578 0)
(-4.37869 -1.80013 0)
(-3.88456 -1.42682 0)
(-3.59177 -1.04723 0)
(-3.35702 -0.64553 0)
(-3.18382 -0.25879 0)
(-3.17707 0.0729204 0)
(-3.2361 0.440072 0)
(-3.49628 0.725599 0)
(-3.68147 0.794671 0)
(-3.64925 0.514628 0)
(-3.71597 0.122153 0)
(-3.97766 -0.244946 0)
(-4.18384 -0.857247 0)
(-4.41757 -1.31055 0)
(-5.08869 -1.41442 0)
(-5.33507 -1.59329 0)
(-5.74593 -1.17833 0)
(-5.89483 -0.509626 0)
(-5.7139 0.216157 0)
(-5.60834 1.16642 0)
(-5.34131 1.93606 0)
(-5.09058 2.43558 0)
(-4.83038 2.73521 0)
(-4.52413 2.82898 0)
(-4.1798 2.76834 0)
(-3.79276 2.61853 0)
(-3.41746 2.45061 0)
(-3.01249 2.25109 0)
(-2.61739 2.02155 0)
(-2.23896 1.78934 0)
(-1.8825 1.57622 0)
(-1.51458 1.37674 0)
(-1.21397 1.18124 0)
(-0.940982 0.99397 0)
(-0.668022 0.818064 0)
(-0.4363 0.668752 0)
(-0.229147 0.555261 0)
(0.0212551 0.413225 0)
(0.140114 0.303901 0)
(0.462134 0.166354 0)
(0.522941 0.0436851 0)
(0.830162 -0.118218 0)
(1.00656 -0.248087 0)
(1.22097 -0.429386 0)
(1.43915 -0.616434 0)
(1.70256 -0.847446 0)
(1.89025 -1.00663 0)
(2.18506 -1.23184 0)
(2.36916 -1.42351 0)
(2.63397 -1.59793 0)
(2.88548 -1.84959 0)
(3.12548 -2.00686 0)
(3.35631 -2.14277 0)
(3.60019 -2.34835 0)
(3.94109 -2.50321 0)
(4.21498 -2.68125 0)
(4.55199 -2.87165 0)
(4.90634 -3.09828 0)
(5.32648 -3.32922 0)
(5.87614 -3.54791 0)
(6.40202 -3.87682 0)
(6.95738 -4.12163 0)
(7.54976 -4.35207 0)
(8.04282 -4.58432 0)
(8.50981 -4.63578 0)
(8.98898 -4.68104 0)
(9.28404 -4.70819 0)
(9.56956 -4.54056 0)
(9.76478 -4.34207 0)
(9.99179 -4.14551 0)
(10.2785 -3.87631 0)
(10.5212 -3.6552 0)
(10.8626 -3.3126 0)
(11.1925 -2.93056 0)
(11.5401 -2.60574 0)
(11.9353 -2.20468 0)
(12.2501 -1.62472 0)
(12.5339 -1.14974 0)
(12.8672 -0.699077 0)
(13.0893 -0.0532748 0)
(13.2706 0.481988 0)
(13.4068 1.11003 0)
(13.4457 1.72318 0)
(13.562 2.27311 0)
(13.4391 2.85855 0)
(13.3182 3.33286 0)
(13.1586 3.6729 0)
(12.8283 4.0597 0)
(12.3372 4.25707 0)
(11.7543 4.37074 0)
(11.1141 4.36346 0)
(10.3773 4.16556 0)
(9.68848 4.02281 0)
(8.96811 3.73697 0)
(8.11883 3.41112 0)
(7.52541 3.09037 0)
(6.93973 2.71189 0)
(6.2537 2.35276 0)
(5.76212 1.9504 0)
(5.28686 1.55089 0)
(4.91565 1.21907 0)
(4.61145 0.691931 0)
(4.15469 0.163151 0)
(3.82003 -0.224056 0)
(3.67581 -0.64377 0)
(3.3559 -1.2326 0)
(2.88206 -1.6723 0)
(2.51431 -1.72934 0)
(2.429 -1.35867 0)
(2.49047 -0.877271 0)
(2.65927 -0.290494 0)
(2.63923 0.149378 0)
(2.77012 0.578238 0)
(2.61986 0.91543 0)
(2.7045 1.58227 0)
(2.71853 2.2272 0)
(2.81912 2.83811 0)
(2.64173 3.18921 0)
(2.50149 3.32596 0)
(2.20338 3.45508 0)
(1.81577 3.49742 0)
(1.51399 3.51874 0)
(1.19457 3.50138 0)
(0.882668 3.52422 0)
(0.552101 3.34531 0)
(0.228624 3.27163 0)
(-0.104561 3.02658 0)
(-0.434877 2.81175 0)
(-0.835695 2.48866 0)
(-1.1752 2.25035 0)
(-1.66051 1.91561 0)
(-2.02098 1.6038 0)
(-2.36278 1.17249 0)
(-2.53376 0.666378 0)
(-2.59927 0.186344 0)
(-2.70258 -0.0314698 0)
(-2.67345 -0.59474 0)
(-2.6035 -1.05152 0)
(-2.64319 -1.49186 0)
(-2.37272 -2.14246 0)
(-2.30895 -2.57014 0)
(-1.97202 -3.00154 0)
(-1.5975 -3.38952 0)
(-1.34067 -3.68208 0)
(-0.672057 -3.63675 0)
(-0.617532 -3.75594 0)
(0.0507742 -3.43377 0)
(-0.161542 -3.39844 0)
(0.163195 -3.35364 0)
(-0.00895416 -1.75031 0)
(-0.247549 -1.62386 0)
(-0.373892 -1.10849 0)
(-0.587993 -0.63097 0)
(-0.695264 -0.206222 0)
(-0.766853 0.220872 0)
(-0.757032 0.561443 0)
(-0.635031 0.783124 0)
(-0.514743 0.817737 0)
(-0.432256 0.853484 0)
(-0.51399 0.955818 0)
(-0.550682 1.06777 0)
(-0.495669 1.35741 0)
(-0.501717 1.97157 0)
(-0.631744 2.71548 0)
(-0.815792 3.16804 0)
(-0.934948 2.93428 0)
(-0.998605 1.96387 0)
(-1.10048 0.839452 0)
(-1.21277 -0.0393735 0)
(-1.16079 -0.65324 0)
(-1.18786 -0.829482 0)
(-1.12868 -0.966547 0)
(-1.0973 -1.13926 0)
(-1.11226 -1.17094 0)
(-1.11521 -1.1437 0)
(-1.13803 -1.06573 0)
(-1.09667 -0.853045 0)
(-1.28825 -0.776645 0)
(-1.68917 -0.81898 0)
(-2.04647 -0.778516 0)
(-2.49487 -0.733415 0)
(-2.81495 -0.417142 0)
(-3.05901 0.0916079 0)
(-3.2337 0.606204 0)
(-3.35481 1.03979 0)
(-3.42386 1.35669 0)
(-3.63852 1.62097 0)
(-3.9168 1.91006 0)
(-4.15339 2.08954 0)
(-4.37779 1.99687 0)
(-4.43963 1.6784 0)
(-4.54579 1.20935 0)
(-4.52971 0.571219 0)
(-4.53214 -0.203309 0)
(-4.52084 -0.88931 0)
(-4.58017 -1.51238 0)
(-4.72761 -2.07979 0)
(-4.84405 -2.44093 0)
(-5.00404 -2.53678 0)
(-4.96962 -2.37644 0)
(-4.6987 -2.12147 0)
(-4.42454 -1.68252 0)
(-4.16904 -1.14631 0)
(-3.99599 -0.644201 0)
(-3.89093 -0.161595 0)
(-3.89566 0.278898 0)
(-3.86809 0.616627 0)
(-3.80151 0.75462 0)
(-3.69366 0.716009 0)
(-3.57976 0.545261 0)
(-3.6864 0.251498 0)
(-3.8041 -0.141345 0)
(-3.96373 -0.587947 0)
(-4.23987 -0.945998 0)
(-4.68686 -1.19494 0)
(-5.09682 -1.21072 0)
(-5.47835 -0.981774 0)
(-5.70717 -0.464835 0)
(-5.68671 0.174247 0)
(-5.54696 0.907841 0)
(-5.2755 1.5659 0)
(-4.85778 1.99433 0)
(-4.43258 2.27615 0)
(-3.94919 2.38684 0)
(-3.46231 2.34714 0)
(-2.97918 2.23546 0)
(-2.52952 2.08117 0)
(-2.08928 1.89421 0)
(-1.68323 1.69365 0)
(-1.29957 1.50065 0)
(-0.951488 1.30363 0)
(-0.653334 1.11472 0)
(-0.337052 0.924156 0)
(-0.0686366 0.768723 0)
(0.170251 0.628818 0)
(0.417777 0.492823 0)
(0.575265 0.360144 0)
(0.899153 0.21735 0)
(0.978494 0.130046 0)
(1.31318 -0.0159241 0)
(1.44569 -0.11426 0)
(1.68968 -0.293717 0)
(1.90349 -0.463538 0)
(2.14571 -0.634559 0)
(2.31634 -0.783538 0)
(2.58 -1.01576 0)
(2.80164 -1.19478 0)
(2.98498 -1.40741 0)
(3.26964 -1.6357 0)
(3.38195 -1.75938 0)
(3.71643 -2.03348 0)
(3.87663 -2.19265 0)
(4.1947 -2.36494 0)
(4.38585 -2.58707 0)
(4.71002 -2.7623 0)
(5.02087 -2.95622 0)
(5.44187 -3.20162 0)
(5.91228 -3.44763 0)
(6.36411 -3.72386 0)
(6.87111 -4.01532 0)
(7.38528 -4.36856 0)
(7.97404 -4.57898 0)
(8.37261 -4.78261 0)
(8.79672 -4.97227 0)
(9.07643 -4.99106 0)
(9.32727 -4.93169 0)
(9.48493 -4.82508 0)
(9.49274 -4.61558 0)
(9.63865 -4.3624 0)
(9.78894 -4.22647 0)
(10.1315 -4.03798 0)
(10.4154 -3.79065 0)
(10.8075 -3.53091 0)
(11.2409 -3.16816 0)
(11.5819 -2.82241 0)
(11.987 -2.38514 0)
(12.3346 -1.86601 0)
(12.6294 -1.3518 0)
(12.9267 -0.836211 0)
(13.1781 -0.2358 0)
(13.3417 0.409436 0)
(13.459 1.02845 0)
(13.5594 1.69984 0)
(13.7198 2.22251 0)
(13.6796 2.85362 0)
(13.5538 3.38888 0)
(13.5352 3.82967 0)
(13.308 4.3292 0)
(12.9532 4.62226 0)
(12.5698 4.83495 0)
(12.0935 4.87047 0)
(11.3401 4.80483 0)
(10.6454 4.60713 0)
(9.99395 4.37767 0)
(9.23709 4.04358 0)
(8.50446 3.64277 0)
(7.86959 3.24898 0)
(7.27185 2.87216 0)
(6.79478 2.38848 0)
(6.23513 1.9345 0)
(5.77345 1.50231 0)
(5.43899 1.04159 0)
(4.94117 0.501843 0)
(4.51832 -0.00347249 0)
(4.20463 -0.474626 0)
(3.84491 -0.866186 0)
(3.3547 -1.30999 0)
(2.98909 -1.45678 0)
(2.79437 -1.30199 0)
(2.81036 -0.876738 0)
(2.83877 -0.356347 0)
(2.88815 0.185975 0)
(2.92074 0.580651 0)
(2.7899 1.00914 0)
(2.72291 1.52768 0)
(2.83651 2.24201 0)
(2.80952 2.81696 0)
(2.67223 3.26172 0)
(2.62683 3.51013 0)
(2.29354 3.60023 0)
(2.06419 3.82118 0)
(1.8705 3.82949 0)
(1.55262 3.8631 0)
(1.14784 3.64863 0)
(0.863742 3.58065 0)
(0.476334 3.46472 0)
(0.153054 3.33149 0)
(-0.29386 3.04508 0)
(-0.673048 2.90806 0)
(-1.21711 2.58967 0)
(-1.53891 2.34455 0)
(-2.00626 1.86497 0)
(-2.21403 1.44242 0)
(-2.38893 0.798618 0)
(-2.37859 0.350195 0)
(-2.62504 -0.013536 0)
(-2.43358 -0.563406 0)
(-2.62011 -1.0308 0)
(-2.49085 -1.56798 0)
(-2.4345 -2.21235 0)
(-2.31648 -2.62135 0)
(-2.2043 -3.26209 0)
(-1.76902 -3.61101 0)
(-1.76005 -4.04967 0)
(-0.958391 -3.98242 0)
(-0.863747 -4.05387 0)
(-0.190055 -3.65708 0)
(-0.318614 -3.5984 0)
(0.21142 -3.46806 0)
(-0.0636143 -1.60177 0)
(-0.383408 -1.44037 0)
(-0.552175 -0.927728 0)
(-0.780715 -0.487973 0)
(-0.874824 -0.102825 0)
(-0.942483 0.260155 0)
(-0.897497 0.495678 0)
(-0.726065 0.645922 0)
(-0.588444 0.702593 0)
(-0.506477 0.855211 0)
(-0.539414 0.988404 0)
(-0.587754 1.03865 0)
(-0.504624 1.32886 0)
(-0.446056 1.9795 0)
(-0.415285 2.749 0)
(-0.390262 3.22462 0)
(-0.37978 3.00588 0)
(-0.347799 2.10258 0)
(-0.404357 0.990261 0)
(-0.551722 0.0235274 0)
(-0.537985 -0.626645 0)
(-0.684831 -0.838553 0)
(-0.735023 -0.951711 0)
(-0.832707 -1.11735 0)
(-0.899073 -1.1717 0)
(-0.897972 -1.10613 0)
(-0.940465 -1.02332 0)
(-0.996949 -0.834805 0)
(-0.918955 -0.530093 0)
(-1.21722 -0.513993 0)
(-1.62333 -0.44599 0)
(-2.13926 -0.38735 0)
(-2.55755 -0.152204 0)
(-2.80666 0.269304 0)
(-2.91803 0.723786 0)
(-3.10153 1.08608 0)
(-3.26645 1.39882 0)
(-3.32101 1.73187 0)
(-3.37904 2.02559 0)
(-3.46048 2.1419 0)
(-3.44404 2.01271 0)
(-3.29382 1.71054 0)
(-3.16239 1.2381 0)
(-3.00088 0.584127 0)
(-2.92135 -0.142998 0)
(-2.83892 -0.747642 0)
(-2.86863 -1.26925 0)
(-3.01178 -1.71259 0)
(-3.30511 -2.04962 0)
(-3.73015 -2.27393 0)
(-4.07794 -2.37877 0)
(-4.29291 -2.17996 0)
(-4.35798 -1.73969 0)
(-4.24218 -1.23654 0)
(-4.09424 -0.742622 0)
(-3.99202 -0.26093 0)
(-3.85478 0.174496 0)
(-3.73688 0.506416 0)
(-3.54907 0.644432 0)
(-3.35103 0.59577 0)
(-3.1915 0.490543 0)
(-3.2467 0.294156 0)
(-3.2991 -0.0467313 0)
(-3.4136 -0.420667 0)
(-3.61899 -0.657433 0)
(-4.00815 -0.830372 0)
(-4.34055 -0.925468 0)
(-4.63403 -0.722774 0)
(-4.87963 -0.378171 0)
(-4.89277 0.102567 0)
(-4.72406 0.670931 0)
(-4.4529 1.16953 0)
(-4.009 1.5205 0)
(-3.54257 1.76883 0)
(-3.00975 1.88792 0)
(-2.50971 1.88311 0)
(-2.02624 1.80927 0)
(-1.55345 1.67743 0)
(-1.12396 1.53118 0)
(-0.715541 1.3749 0)
(-0.39821 1.22323 0)
(-0.0489543 1.00992 0)
(0.258074 0.851751 0)
(0.555022 0.698632 0)
(0.769241 0.577409 0)
(1.03078 0.416335 0)
(1.27273 0.275897 0)
(1.44639 0.189404 0)
(1.74425 0.0462204 0)
(1.88005 -0.0365653 0)
(2.12496 -0.191734 0)
(2.36737 -0.352154 0)
(2.51883 -0.42677 0)
(2.81221 -0.6396 0)
(2.95822 -0.796173 0)
(3.24219 -0.990111 0)
(3.34407 -1.19011 0)
(3.62835 -1.37582 0)
(3.80271 -1.60239 0)
(4.06471 -1.80994 0)
(4.22684 -1.94656 0)
(4.50018 -2.21751 0)
(4.68132 -2.40154 0)
(4.99052 -2.57566 0)
(5.28116 -2.84127 0)
(5.68316 -3.05164 0)
(5.97548 -3.30907 0)
(6.432 -3.5838 0)
(6.90527 -3.86723 0)
(7.38331 -4.20208 0)
(7.92919 -4.42593 0)
(8.32054 -4.77472 0)
(8.77214 -4.95838 0)
(8.99728 -5.08088 0)
(9.18248 -5.18094 0)
(9.31076 -5.06987 0)
(9.24403 -4.9522 0)
(9.258 -4.77257 0)
(9.17666 -4.56571 0)
(9.37891 -4.44463 0)
(9.73708 -4.42003 0)
(10.1421 -4.31501 0)
(10.525 -4.148 0)
(10.9684 -3.92673 0)
(11.404 -3.59456 0)
(11.6781 -3.19893 0)
(12.0381 -2.72486 0)
(12.367 -2.17036 0)
(12.6281 -1.62163 0)
(12.9104 -1.03875 0)
(13.1576 -0.386269 0)
(13.4017 0.224477 0)
(13.5594 0.949481 0)
(13.7005 1.64864 0)
(13.792 2.27991 0)
(13.7975 2.88727 0)
(13.7144 3.46353 0)
(13.5708 3.94955 0)
(13.4418 4.42288 0)
(13.3122 4.89072 0)
(12.9669 5.10257 0)
(12.6909 5.30158 0)
(12.1524 5.29878 0)
(11.5411 5.26143 0)
(10.864 4.91122 0)
(10.2021 4.59018 0)
(9.60075 4.19711 0)
(8.90023 3.77283 0)
(8.24732 3.31649 0)
(7.63906 2.86785 0)
(7.09816 2.4272 0)
(6.62023 1.91019 0)
(6.23024 1.35906 0)
(5.83622 0.874611 0)
(5.40373 0.358806 0)
(5.05195 -0.085076 0)
(4.56466 -0.522388 0)
(4.04852 -0.935894 0)
(3.50079 -1.27284 0)
(3.28118 -1.2039 0)
(3.12308 -0.90923 0)
(3.1427 -0.3159 0)
(3.11415 0.0910645 0)
(3.11394 0.670749 0)
(2.96595 1.03253 0)
(2.87538 1.59371 0)
(2.77225 2.17351 0)
(2.89215 2.90703 0)
(2.88592 3.29936 0)
(2.67458 3.60341 0)
(2.55511 3.96132 0)
(2.27174 3.90733 0)
(1.9225 3.99755 0)
(1.6356 3.98047 0)
(1.44934 4.03163 0)
(0.954072 3.92128 0)
(0.536764 3.79277 0)
(0.108124 3.57939 0)
(-0.26405 3.45778 0)
(-0.830791 3.17288 0)
(-1.0538 2.9577 0)
(-1.44272 2.5113 0)
(-1.57745 2.126 0)
(-1.86809 1.50953 0)
(-1.81647 0.913419 0)
(-1.9169 0.361127 0)
(-2.06612 0.028494 0)
(-1.93046 -0.535541 0)
(-2.17425 -0.943971 0)
(-2.05944 -1.57661 0)
(-2.21556 -2.25916 0)
(-2.11147 -2.7607 0)
(-2.17299 -3.44173 0)
(-1.88289 -3.8108 0)
(-1.90888 -4.41918 0)
(-1.25082 -4.45257 0)
(-0.909018 -4.46316 0)
(-0.306666 -3.95281 0)
(-0.318622 -3.82602 0)
(0.160234 -3.54052 0)
(-0.109393 -1.39507 0)
(-0.482608 -1.22388 0)
(-0.673903 -0.756374 0)
(-0.919368 -0.378422 0)
(-1.00605 -0.0509962 0)
(-1.05738 0.242094 0)
(-1.00007 0.379721 0)
(-0.835597 0.492941 0)
(-0.718362 0.607165 0)
(-0.600653 0.86399 0)
(-0.571574 1.02621 0)
(-0.562736 1.05366 0)
(-0.489289 1.29394 0)
(-0.332392 1.92791 0)
(-0.181684 2.63866 0)
(0.0458824 3.11789 0)
(0.245464 2.96631 0)
(0.390173 2.14471 0)
(0.417003 1.11348 0)
(0.281984 0.127291 0)
(0.23209 -0.534178 0)
(0.0148586 -0.734464 0)
(-0.135288 -0.813397 0)
(-0.340643 -0.959414 0)
(-0.556399 -1.11151 0)
(-0.653309 -1.13123 0)
(-0.608421 -1.00458 0)
(-0.689848 -0.840798 0)
(-0.678787 -0.59121 0)
(-0.608749 -0.22779 0)
(-1.01688 -0.0782664 0)
(-1.37934 0.0459761 0)
(-1.97884 0.0650018 0)
(-2.19167 0.390963 0)
(-2.25124 0.817203 0)
(-2.30199 1.21763 0)
(-2.38435 1.51694 0)
(-2.45247 1.74433 0)
(-2.38882 2.00964 0)
(-2.28714 2.10956 0)
(-2.16982 1.93494 0)
(-1.96703 1.55845 0)
(-1.74607 1.06113 0)
(-1.53069 0.443379 0)
(-1.40813 -0.211679 0)
(-1.37029 -0.771118 0)
(-1.38657 -1.20716 0)
(-1.45906 -1.50841 0)
(-1.57265 -1.70349 0)
(-1.84712 -1.84117 0)
(-2.35864 -1.96971 0)
(-2.99751 -2.00467 0)
(-3.40204 -1.82311 0)
(-3.54154 -1.37477 0)
(-3.53205 -0.826056 0)
(-3.45185 -0.356416 0)
(-3.31553 0.0547855 0)
(-3.17142 0.346511 0)
(-2.93819 0.449545 0)
(-2.72817 0.467814 0)
(-2.60156 0.435291 0)
(-2.54861 0.286719 0)
(-2.60003 0.00889264 0)
(-2.65001 -0.272163 0)
(-2.78202 -0.451548 0)
(-3.06457 -0.59327 0)
(-3.34438 -0.645047 0)
(-3.55407 -0.51197 0)
(-3.71233 -0.271688 0)
(-3.7699 0.0786933 0)
(-3.57109 0.487951 0)
(-3.28675 0.845854 0)
(-2.90844 1.13084 0)
(-2.44399 1.32562 0)
(-1.9471 1.43282 0)
(-1.46783 1.44693 0)
(-0.990903 1.38919 0)
(-0.539934 1.30372 0)
(-0.158913 1.22113 0)
(0.208976 1.04913 0)
(0.536962 0.916521 0)
(0.939983 0.755527 0)
(1.09962 0.646582 0)
(1.48538 0.459266 0)
(1.62609 0.362972 0)
(1.96313 0.226687 0)
(2.1405 0.120196 0)
(2.36515 -0.0108241 0)
(2.57711 -0.145589 0)
(2.83502 -0.26368 0)
(2.95527 -0.299005 0)
(3.29136 -0.544478 0)
(3.3777 -0.648015 0)
(3.65571 -0.814495 0)
(3.80566 -0.971117 0)
(4.08553 -1.13882 0)
(4.25289 -1.36859 0)
(4.43974 -1.519 0)
(4.63292 -1.77059 0)
(4.86905 -2.01367 0)
(5.08643 -2.16464 0)
(5.37817 -2.4428 0)
(5.61932 -2.63453 0)
(5.93878 -2.84448 0)
(6.19231 -3.15001 0)
(6.69626 -3.36254 0)
(7.01714 -3.67468 0)
(7.52509 -3.94696 0)
(7.96927 -4.22806 0)
(8.36781 -4.56182 0)
(8.73696 -4.82383 0)
(9.05846 -5.04936 0)
(9.22527 -5.14647 0)
(9.25093 -5.15989 0)
(9.27397 -5.17399 0)
(9.15939 -5.02225 0)
(8.97729 -4.77767 0)
(8.9135 -4.66562 0)
(9.01775 -4.68434 0)
(9.40464 -4.76526 0)
(9.90049 -4.88479 0)
(10.2922 -4.8396 0)
(10.6402 -4.61845 0)
(10.9342 -4.39149 0)
(11.2308 -4.00365 0)
(11.3649 -3.56621 0)
(11.6651 -3.05573 0)
(11.9414 -2.50653 0)
(12.1932 -1.94934 0)
(12.5171 -1.35664 0)
(12.7694 -0.674329 0)
(13.0998 0.0571801 0)
(13.3834 0.719117 0)
(13.6437 1.50162 0)
(13.819 2.23105 0)
(13.8886 2.9159 0)
(13.8436 3.57745 0)
(13.7331 4.11912 0)
(13.4895 4.56057 0)
(13.2989 4.93014 0)
(13.1988 5.35278 0)
(12.9365 5.50912 0)
(12.6583 5.76915 0)
(12.0807 5.63569 0)
(11.6928 5.53285 0)
(11.0424 5.14109 0)
(10.4094 4.79363 0)
(9.71993 4.29891 0)
(9.11076 3.83836 0)
(8.68896 3.37322 0)
(8.08327 2.8011 0)
(7.63604 2.23639 0)
(7.06541 1.7278 0)
(6.63846 1.27107 0)
(6.10799 0.716298 0)
(5.74579 0.210927 0)
(5.36876 -0.133996 0)
(4.91706 -0.43404 0)
(4.39532 -0.823352 0)
(3.85403 -0.978966 0)
(3.6793 -0.726916 0)
(3.48009 -0.339163 0)
(3.37017 0.271275 0)
(3.34016 0.571488 0)
(3.2271 1.26074 0)
(2.99855 1.69073 0)
(2.87908 2.26095 0)
(2.88635 2.87993 0)
(2.86283 3.38063 0)
(2.85292 3.74446 0)
(2.62123 3.89414 0)
(2.42261 4.27446 0)
(2.14959 4.21312 0)
(1.82501 4.33922 0)
(1.37711 4.23584 0)
(1.01418 4.27935 0)
(0.524052 4.14361 0)
(0.174376 4.00739 0)
(-0.322623 3.80112 0)
(-0.527747 3.53888 0)
(-0.954339 3.07891 0)
(-0.860416 2.75683 0)
(-1.12043 2.17996 0)
(-1.02429 1.69102 0)
(-1.10964 0.953023 0)
(-1.05595 0.507841 0)
(-1.38232 -0.0129269 0)
(-1.16911 -0.506219 0)
(-1.57159 -0.997738 0)
(-1.33287 -1.50822 0)
(-1.6712 -2.28677 0)
(-1.59528 -2.74452 0)
(-1.77852 -3.48965 0)
(-1.71371 -3.96771 0)
(-1.73794 -4.60783 0)
(-1.48538 -4.82774 0)
(-1.06118 -4.9392 0)
(-0.453866 -4.18865 0)
(-0.2902 -3.94265 0)
(-0.0669591 -3.52991 0)
(-0.142565 -1.13527 0)
(-0.558107 -0.970907 0)
(-0.746828 -0.535079 0)
(-0.969638 -0.218529 0)
(-1.03649 0.0295935 0)
(-1.06188 0.266153 0)
(-1.00725 0.310562 0)
(-0.871124 0.400502 0)
(-0.834199 0.511535 0)
(-0.765676 0.772464 0)
(-0.671338 0.935732 0)
(-0.5755 0.996476 0)
(-0.465043 1.19774 0)
(-0.212764 1.75259 0)
(0.101172 2.41827 0)
(0.475526 2.8404 0)
(0.844527 2.75014 0)
(1.11666 2.05635 0)
(1.19294 1.17814 0)
(1.11891 0.251871 0)
(1.04457 -0.410536 0)
(0.75295 -0.600101 0)
(0.506261 -0.642413 0)
(0.279844 -0.739363 0)
(0.00157725 -0.895715 0)
(-0.237002 -1.04653 0)
(-0.318438 -1.02007 0)
(-0.328797 -0.809586 0)
(-0.355548 -0.630477 0)
(-0.237982 -0.207178 0)
(-0.336082 0.157451 0)
(-0.551425 0.337283 0)
(-0.87195 0.50273 0)
(-1.34011 0.547398 0)
(-1.6118 0.752479 0)
(-1.64953 1.13926 0)
(-1.51191 1.48642 0)
(-1.4094 1.71922 0)
(-1.23097 1.89696 0)
(-1.04231 1.94072 0)
(-0.810769 1.78406 0)
(-0.617311 1.40335 0)
(-0.398535 0.908875 0)
(-0.258727 0.329412 0)
(-0.178038 -0.240093 0)
(-0.176234 -0.764754 0)
(-0.278242 -1.19735 0)
(-0.421777 -1.53205 0)
(-0.554144 -1.68445 0)
(-0.688062 -1.6126 0)
(-0.84946 -1.41247 0)
(-1.28707 -1.34243 0)
(-1.93606 -1.4135 0)
(-2.44411 -1.2756 0)
(-2.64302 -0.868519 0)
(-2.59878 -0.42905 0)
(-2.52107 -0.0809764 0)
(-2.39316 0.159726 0)
(-2.2143 0.263136 0)
(-2.00913 0.307763 0)
(-1.86313 0.328286 0)
(-1.75745 0.247784 0)
(-1.78194 0.0393323 0)
(-1.82753 -0.21162 0)
(-1.90004 -0.331353 0)
(-2.04198 -0.399836 0)
(-2.24181 -0.454585 0)
(-2.4013 -0.370257 0)
(-2.44918 -0.218986 0)
(-2.48812 0.0369988 0)
(-2.31135 0.288184 0)
(-2.04234 0.579106 0)
(-1.71576 0.815186 0)
(-1.28362 0.957496 0)
(-0.833672 1.02567 0)
(-0.386591 1.07324 0)
(0.0539378 1.05785 0)
(0.452291 0.971903 0)
(0.772868 0.885332 0)
(1.28334 0.765396 0)
(1.42009 0.691359 0)
(1.91639 0.480023 0)
(2.01982 0.427931 0)
(2.43655 0.251978 0)
(2.5556 0.162919 0)
(2.86322 0.0250394 0)
(3.07111 -0.102884 0)
(3.30076 -0.17017 0)
(3.52062 -0.30254 0)
(3.71812 -0.45142 0)
(3.91345 -0.52916 0)
(4.1396 -0.649324 0)
(4.34084 -0.819908 0)
(4.55074 -0.990186 0)
(4.69055 -1.15308 0)
(4.92489 -1.30327 0)
(5.11608 -1.54957 0)
(5.35922 -1.71866 0)
(5.58827 -1.96801 0)
(5.78544 -2.1718 0)
(6.02272 -2.35861 0)
(6.31413 -2.68181 0)
(6.58623 -2.88463 0)
(6.95603 -3.13431 0)
(7.28274 -3.45976 0)
(7.76689 -3.70179 0)
(8.03742 -4.03427 0)
(8.54349 -4.31283 0)
(8.8293 -4.5937 0)
(9.17251 -4.81632 0)
(9.38018 -5.00208 0)
(9.46744 -5.14625 0)
(9.40354 -5.12312 0)
(9.20775 -5.11704 0)
(9.06912 -5.0231 0)
(8.77135 -4.8097 0)
(8.58434 -4.71132 0)
(8.75476 -4.85619 0)
(9.12377 -5.09495 0)
(9.62177 -5.31405 0)
(9.98703 -5.32155 0)
(10.1347 -5.1304 0)
(10.1553 -4.82088 0)
(10.273 -4.49039 0)
(10.3929 -4.08987 0)
(10.5062 -3.59289 0)
(10.8013 -3.20556 0)
(11.151 -2.67198 0)
(11.4029 -2.15585 0)
(11.7569 -1.56317 0)
(12.0861 -0.924158 0)
(12.4132 -0.252673 0)
(12.816 0.479392 0)
(13.0781 1.19546 0)
(13.459 1.98416 0)
(13.6698 2.82622 0)
(13.8544 3.59507 0)
(13.7571 4.25888 0)
(13.7131 4.76818 0)
(13.342 5.16359 0)
(13.1134 5.45715 0)
(13.0232 5.76091 0)
(12.6566 5.87485 0)
(12.5796 6.11504 0)
(12.011 5.77707 0)
(11.7077 5.65976 0)
(11.0671 5.22103 0)
(10.5479 4.85256 0)
(9.95581 4.38114 0)
(9.31321 3.76532 0)
(8.81407 3.27399 0)
(8.2649 2.67463 0)
(7.95068 2.21866 0)
(7.47541 1.60196 0)
(7.12322 1.10697 0)
(6.59744 0.517661 0)
(6.14649 0.216395 0)
(5.74386 -0.116234 0)
(5.17192 -0.410003 0)
(4.66767 -0.633024 0)
(4.21063 -0.606155 0)
(3.97253 -0.057405 0)
(3.74288 0.197641 0)
(3.61419 0.917986 0)
(3.39583 1.21894 0)
(3.31282 1.84674 0)
(3.03393 2.38752 0)
(2.90436 2.84042 0)
(2.92419 3.3673 0)
(2.88483 3.84243 0)
(2.6749 4.29828 0)
(2.55981 4.25625 0)
(2.20007 4.57952 0)
(1.84792 4.59468 0)
(1.53123 4.66548 0)
(1.01736 4.63 0)
(0.702619 4.53345 0)
(0.200575 4.21701 0)
(0.0790829 4.02355 0)
(-0.286295 3.72358 0)
(-0.0930558 3.35701 0)
(-0.301214 2.71063 0)
(-0.0493887 2.23523 0)
(-0.176461 1.56547 0)
(0.0173713 0.989736 0)
(-0.128971 0.568204 0)
(-0.245644 0.0730937 0)
(-0.243347 -0.295528 0)
(-0.421868 -0.91345 0)
(-0.43582 -1.30104 0)
(-0.493173 -2.08921 0)
(-0.691449 -2.62087 0)
(-0.713426 -3.37513 0)
(-0.944988 -3.93419 0)
(-1.0435 -4.54181 0)
(-1.17763 -5.14178 0)
(-1.2422 -5.31913 0)
(-0.827151 -4.6092 0)
(-0.450276 -4.22421 0)
(-0.356634 -3.8422 0)
(-0.16418 -0.860115 0)
(-0.604179 -0.746504 0)
(-0.788755 -0.398102 0)
(-0.978625 -0.145198 0)
(-1.02942 0.0289641 0)
(-0.994912 0.221887 0)
(-0.955718 0.206751 0)
(-0.817159 0.337745 0)
(-0.745118 0.507605 0)
(-0.7325 0.748869 0)
(-0.68781 0.844555 0)
(-0.633814 0.893078 0)
(-0.516229 1.02968 0)
(-0.242123 1.44752 0)
(0.225357 2.03711 0)
(0.776322 2.42453 0)
(1.24256 2.41384 0)
(1.66401 1.88399 0)
(1.78566 1.18935 0)
(1.79493 0.390544 0)
(1.74149 -0.233923 0)
(1.44802 -0.412093 0)
(1.13118 -0.399625 0)
(0.870315 -0.506476 0)
(0.577719 -0.696169 0)
(0.377206 -0.887982 0)
(0.205938 -0.914053 0)
(0.0617668 -0.82039 0)
(0.123419 -0.610888 0)
(0.00443178 -0.297318 0)
(0.154272 0.204497 0)
(0.184979 0.519772 0)
(0.0495526 0.715232 0)
(-0.182086 0.913462 0)
(-0.413173 1.021 0)
(-0.623531 1.16809 0)
(-0.593836 1.35172 0)
(-0.496076 1.52646 0)
(-0.247853 1.6472 0)
(-0.00636929 1.65206 0)
(0.309503 1.51527 0)
(0.546983 1.18874 0)
(0.781464 0.752383 0)
(0.910499 0.243518 0)
(0.953753 -0.27032 0)
(0.985891 -0.729094 0)
(0.894739 -1.09246 0)
(0.771837 -1.35978 0)
(0.593956 -1.52338 0)
(0.314207 -1.57926 0)
(0.0395308 -1.49333 0)
(-0.101882 -1.17773 0)
(-0.267027 -0.84259 0)
(-0.799177 -0.816646 0)
(-1.3738 -0.79941 0)
(-1.56803 -0.505486 0)
(-1.55446 -0.122933 0)
(-1.45923 0.0959831 0)
(-1.34678 0.150393 0)
(-1.26193 0.155689 0)
(-1.14362 0.177044 0)
(-0.998471 0.164097 0)
(-0.942915 0.0426734 0)
(-0.982699 -0.120136 0)
(-1.01125 -0.237243 0)
(-1.11346 -0.334937 0)
(-1.2039 -0.324432 0)
(-1.28447 -0.262189 0)
(-1.18338 -0.237702 0)
(-1.2471 -0.0201588 0)
(-0.999717 0.142747 0)
(-0.778156 0.343042 0)
(-0.480799 0.498496 0)
(-0.0579738 0.612751 0)
(0.310595 0.70666 0)
(0.72341 0.731921 0)
(1.06392 0.693514 0)
(1.5821 0.645605 0)
(1.77717 0.60052 0)
(2.23246 0.43961 0)
(2.46313 0.402417 0)
(2.83306 0.29013 0)
(3.03079 0.150998 0)
(3.33704 0.0650206 0)
(3.60133 -0.0678872 0)
(3.75994 -0.111116 0)
(4.08571 -0.306802 0)
(4.19682 -0.379657 0)
(4.47432 -0.472765 0)
(4.61262 -0.575597 0)
(4.87961 -0.737873 0)
(5.04682 -0.837927 0)
(5.25896 -0.967918 0)
(5.44859 -1.11765 0)
(5.66598 -1.32102 0)
(5.8664 -1.49412 0)
(6.08202 -1.7067 0)
(6.23764 -1.86828 0)
(6.56105 -2.18787 0)
(6.75225 -2.38704 0)
(7.06363 -2.61456 0)
(7.37996 -2.9377 0)
(7.67913 -3.13579 0)
(8.01912 -3.43182 0)
(8.36588 -3.78237 0)
(8.83807 -4.00285 0)
(9.00205 -4.30804 0)
(9.4842 -4.55983 0)
(9.59676 -4.7326 0)
(9.66889 -4.96492 0)
(9.74384 -5.0769 0)
(9.48688 -5.05319 0)
(9.19088 -4.9705 0)
(8.97337 -4.90541 0)
(8.67073 -4.82258 0)
(8.41418 -4.64376 0)
(8.48669 -4.82249 0)
(8.87896 -5.28616 0)
(9.33467 -5.60059 0)
(9.50745 -5.59724 0)
(9.45481 -5.34684 0)
(9.1995 -4.96251 0)
(9.13522 -4.6051 0)
(9.23789 -4.32079 0)
(9.43574 -3.93631 0)
(9.77943 -3.62511 0)
(10.2013 -3.29701 0)
(10.7032 -2.80417 0)
(10.975 -2.23269 0)
(11.3146 -1.73503 0)
(11.6582 -1.10971 0)
(11.9126 -0.438646 0)
(12.1639 0.248164 0)
(12.4375 0.956027 0)
(12.7052 1.75489 0)
(13.0698 2.55685 0)
(13.2878 3.40812 0)
(13.6399 4.24713 0)
(13.562 4.90905 0)
(13.4917 5.32639 0)
(13.0968 5.70066 0)
(12.9009 5.90949 0)
(12.6846 6.13799 0)
(12.4102 6.11821 0)
(12.4432 6.22484 0)
(11.8675 5.93204 0)
(11.6678 5.74753 0)
(10.9128 5.28805 0)
(10.6014 4.74627 0)
(10.1433 4.27965 0)
(9.62742 3.59769 0)
(9.24684 3.15652 0)
(8.6331 2.36348 0)
(8.23685 2.02766 0)
(7.72269 1.39695 0)
(7.23544 1.05579 0)
(6.80548 0.542448 0)
(6.31734 0.346431 0)
(5.98431 0.0732367 0)
(5.3059 -0.251239 0)
(4.85667 -0.162813 0)
(4.48781 0.00339477 0)
(4.21756 0.661133 0)
(3.89131 0.830494 0)
(3.78401 1.49685 0)
(3.46231 2.01778 0)
(3.34781 2.42238 0)
(3.23771 3.03151 0)
(3.03937 3.40481 0)
(2.90375 3.95595 0)
(2.77819 4.19958 0)
(2.61322 4.76035 0)
(2.23276 4.71301 0)
(1.84944 4.95791 0)
(1.61827 4.92219 0)
(1.19073 4.97477 0)
(0.926685 4.82585 0)
(0.81986 4.61433 0)
(0.576511 4.22253 0)
(0.624561 3.84212 0)
(0.595299 3.12015 0)
(0.925013 2.74111 0)
(0.87601 2.14119 0)
(1.13685 1.80966 0)
(1.09332 0.996398 0)
(1.01303 0.81204 0)
(0.928598 0.0568038 0)
(0.749642 -0.168891 0)
(0.820813 -0.922304 0)
(0.463442 -1.23613 0)
(0.70005 -2.09264 0)
(0.40511 -2.47792 0)
(0.578093 -3.19956 0)
(0.308325 -3.62691 0)
(0.124814 -4.30132 0)
(-0.0717105 -4.71245 0)
(-0.73902 -4.97629 0)
(-0.795544 -4.83329 0)
(-0.458175 -4.2455 0)
(-0.160593 -4.33976 0)
(-0.18135 -0.564983 0)
(-0.632173 -0.470326 0)
(-0.793548 -0.192177 0)
(-0.941934 -0.0113374 0)
(-1.01479 0.0564235 0)
(-0.933847 0.213981 0)
(-0.925168 0.149326 0)
(-0.724262 0.237171 0)
(-0.674255 0.402657 0)
(-0.47163 0.699623 0)
(-0.401569 0.812975 0)
(-0.310383 0.858049 0)
(-0.272481 0.896684 0)
(-0.136038 1.0945 0)
(0.272895 1.4851 0)
(0.864982 1.86685 0)
(1.39111 1.88686 0)
(1.90253 1.53122 0)
(2.14391 1.0663 0)
(2.25999 0.419033 0)
(2.21643 -0.122509 0)
(1.95026 -0.27288 0)
(1.64054 -0.202942 0)
(1.45454 -0.260244 0)
(1.16515 -0.491747 0)
(1.0026 -0.70395 0)
(0.785012 -0.82071 0)
(0.664117 -0.727767 0)
(0.586514 -0.543315 0)
(0.46696 -0.255603 0)
(0.458956 0.0296484 0)
(0.69398 0.425378 0)
(0.799694 0.771445 0)
(0.829134 1.01248 0)
(0.813118 1.16017 0)
(0.693607 1.28356 0)
(0.693396 1.3605 0)
(0.724296 1.42884 0)
(0.91461 1.46272 0)
(1.12594 1.4272 0)
(1.41184 1.27853 0)
(1.67976 0.997618 0)
(1.91005 0.619519 0)
(2.06247 0.178576 0)
(2.10897 -0.260675 0)
(2.1204 -0.65055 0)
(2.05076 -0.968101 0)
(1.87418 -1.19069 0)
(1.65789 -1.28153 0)
(1.38873 -1.21481 0)
(1.11342 -1.08348 0)
(0.71544 -1.02611 0)
(0.52548 -0.887221 0)
(0.519229 -0.52702 0)
(0.388887 -0.193294 0)
(-0.00827477 -0.198792 0)
(-0.33371 -0.19501 0)
(-0.408033 -0.0451322 0)
(-0.413494 0.0595326 0)
(-0.352245 0.129143 0)
(-0.28502 0.127368 0)
(-0.234833 0.0987009 0)
(-0.122629 0.0114537 0)
(-0.116878 -0.131081 0)
(-0.204649 -0.200464 0)
(-0.161694 -0.278713 0)
(-0.259815 -0.334171 0)
(-0.269572 -0.307593 0)
(-0.0903778 -0.285179 0)
(-0.149054 -0.126328 0)
(0.191155 -0.0456893 0)
(0.313454 0.0927312 0)
(0.754324 0.222461 0)
(0.986198 0.329796 0)
(1.42303 0.348705 0)
(1.78793 0.428211 0)
(2.15689 0.395958 0)
(2.49728 0.357025 0)
(2.90585 0.322334 0)
(3.16986 0.278395 0)
(3.45622 0.135524 0)
(3.75117 0.073795 0)
(4.01574 -0.042722 0)
(4.21816 -0.129163 0)
(4.53669 -0.269158 0)
(4.68982 -0.336496 0)
(4.96748 -0.439354 0)
(5.12986 -0.54393 0)
(5.42336 -0.648156 0)
(5.53167 -0.731328 0)
(5.79205 -0.892219 0)
(5.94304 -1.00807 0)
(6.2257 -1.15642 0)
(6.42587 -1.33154 0)
(6.63144 -1.44423 0)
(6.83944 -1.68598 0)
(7.1125 -1.90789 0)
(7.26782 -2.08046 0)
(7.66301 -2.43334 0)
(7.83487 -2.59621 0)
(8.14455 -2.8454 0)
(8.44777 -3.18838 0)
(8.80128 -3.39387 0)
(9.08968 -3.71266 0)
(9.49297 -4.03696 0)
(9.74442 -4.21456 0)
(9.84035 -4.49607 0)
(10.1415 -4.6775 0)
(9.91731 -4.80721 0)
(9.93447 -4.89054 0)
(9.67828 -4.87549 0)
(9.19137 -4.75362 0)
(8.89071 -4.69491 0)
(8.62027 -4.71768 0)
(8.29455 -4.6144 0)
(8.23388 -4.7007 0)
(8.61146 -5.22822 0)
(9.02974 -5.69135 0)
(9.04795 -5.60909 0)
(8.71575 -5.27363 0)
(8.27942 -4.86721 0)
(8.15468 -4.66688 0)
(8.28812 -4.57262 0)
(8.69335 -4.51876 0)
(9.25023 -4.32049 0)
(9.75907 -4.12478 0)
(10.3552 -3.7931 0)
(10.8118 -3.17589 0)
(11.0458 -2.55943 0)
(11.3429 -1.963 0)
(11.5635 -1.28907 0)
(11.8175 -0.603886 0)
(11.9438 0.107338 0)
(12.1852 0.854267 0)
(12.2665 1.54967 0)
(12.4322 2.37031 0)
(12.6157 3.12071 0)
(12.8893 4.04089 0)
(13.1894 4.85045 0)
(13.1895 5.53277 0)
(13.1572 5.9501 0)
(12.6749 6.11323 0)
(12.5237 6.23704 0)
(12.3422 6.30209 0)
(11.9691 6.25337 0)
(12.1667 6.30234 0)
(11.4616 5.93989 0)
(11.6066 5.69242 0)
(10.8794 5.21725 0)
(10.5198 4.56795 0)
(10.0694 4.21589 0)
(9.61059 3.37907 0)
(9.28245 3.06031 0)
(8.78103 2.27097 0)
(8.49347 1.95238 0)
(7.9791 1.29897 0)
(7.51182 0.932618 0)
(7.08712 0.632885 0)
(6.61587 0.439878 0)
(6.04822 0.298114 0)
(5.45585 0.0599709 0)
(5.00469 0.432513 0)
(4.67548 0.705964 0)
(4.41957 1.28528 0)
(3.95225 1.54684 0)
(3.87176 2.1571 0)
(3.6655 2.77265 0)
(3.39201 3.09308 0)
(3.31345 3.52543 0)
(3.12802 4.04156 0)
(2.97594 4.64876 0)
(2.67545 4.69893 0)
(2.44087 5.19854 0)
(2.07436 5.16796 0)
(1.88769 5.31885 0)
(1.65044 5.18301 0)
(1.50245 4.9694 0)
(1.32932 4.67525 0)
(1.57862 4.14749 0)
(1.33799 3.83641 0)
(2.08148 3.18363 0)
(1.52942 2.69687 0)
(2.15779 2.03286 0)
(1.57091 1.60889 0)
(2.11727 0.899279 0)
(1.5863 0.941181 0)
(2.01225 0.0466328 0)
(1.59463 0.029053 0)
(2.1817 -0.974675 0)
(1.50623 -0.934324 0)
(2.23954 -2.21008 0)
(1.48268 -2.28999 0)
(2.18338 -3.29937 0)
(1.47498 -3.39758 0)
(1.73973 -4.24651 0)
(0.861722 -4.22375 0)
(0.38507 -4.80272 0)
(-0.170262 -4.91706 0)
(0.00245754 -4.53146 0)
(0.514548 -4.27864 0)
(-0.176137 -0.181518 0)
(-0.614232 -0.170493 0)
(-0.784576 -0.111469 0)
(-0.848909 0.0448201 0)
(-0.967022 -0.000225105 0)
(-0.928054 0.123391 0)
(-0.891186 0.00785537 0)
(-0.775272 0.118223 0)
(-0.650526 0.287496 0)
(-0.408417 0.526452 0)
(-0.174744 0.685563 0)
(0.0739767 0.799983 0)
(0.204376 0.886917 0)
(0.332853 0.972419 0)
(0.637514 1.12928 0)
(1.05168 1.37877 0)
(1.57129 1.4229 0)
(2.08007 1.19454 0)
(2.35022 0.863126 0)
(2.57144 0.431959 0)
(2.51331 0.0373467 0)
(2.31211 -0.0686875 0)
(2.04319 -0.0230084 0)
(1.94841 -0.0223701 0)
(1.78738 -0.232574 0)
(1.58165 -0.570331 0)
(1.39009 -0.695278 0)
(1.21897 -0.675673 0)
(1.10942 -0.486807 0)
(1.02854 -0.203677 0)
(0.99365 0.0488119 0)
(1.03208 0.261873 0)
(1.16093 0.589731 0)
(1.4122 0.911012 0)
(1.62834 1.12597 0)
(1.76589 1.28822 0)
(1.91421 1.3826 0)
(2.02333 1.40458 0)
(2.17881 1.3599 0)
(2.37887 1.26659 0)
(2.59707 1.0858 0)
(2.79597 0.803953 0)
(2.99076 0.447489 0)
(3.1102 0.0762545 0)
(3.12278 -0.290089 0)
(3.06762 -0.61976 0)
(2.96943 -0.872 0)
(2.7042 -1.06515 0)
(2.44025 -1.1524 0)
(2.09192 -1.13997 0)
(1.88071 -1.02559 0)
(1.71075 -0.809819 0)
(1.52364 -0.60317 0)
(1.25973 -0.507134 0)
(1.17585 -0.361628 0)
(1.25759 -0.0763567 0)
(1.25954 0.167247 0)
(1.13802 0.211652 0)
(1.05055 0.157539 0)
(0.971411 0.0900357 0)
(0.952368 0.0571854 0)
(0.967801 0.00625643 0)
(0.96173 -0.0759605 0)
(1.06695 -0.0965341 0)
(0.970374 -0.174189 0)
(1.011 -0.297952 0)
(1.10537 -0.301959 0)
(0.899074 -0.333178 0)
(1.2418 -0.339743 0)
(1.02004 -0.264849 0)
(1.5112 -0.244019 0)
(1.4678 -0.0935274 0)
(1.89852 -0.0687754 0)
(2.134 0.0475274 0)
(2.52008 0.0728372 0)
(2.77544 0.0922321 0)
(3.22662 0.0973231 0)
(3.43958 0.0807515 0)
(3.81613 0.0126298 0)
(4.14076 -0.0299199 0)
(4.36509 -0.0663174 0)
(4.67411 -0.18381 0)
(4.92515 -0.271771 0)
(5.16496 -0.365241 0)
(5.4023 -0.434248 0)
(5.6616 -0.54385 0)
(5.88888 -0.63102 0)
(6.09991 -0.765623 0)
(6.34292 -0.851999 0)
(6.52101 -0.919081 0)
(6.78801 -1.08162 0)
(6.97936 -1.2052 0)
(7.25747 -1.34758 0)
(7.50841 -1.54997 0)
(7.67133 -1.62009 0)
(7.93743 -1.91322 0)
(8.23363 -2.09919 0)
(8.41111 -2.30738 0)
(8.79703 -2.64031 0)
(8.98315 -2.79946 0)
(9.3118 -3.09295 0)
(9.64381 -3.43138 0)
(9.90684 -3.59048 0)
(10.1117 -3.95937 0)
(10.405 -4.18412 0)
(10.3539 -4.2707 0)
(10.4141 -4.58658 0)
(10.3961 -4.57309 0)
(9.93697 -4.60612 0)
(9.81745 -4.72359 0)
(9.26497 -4.55175 0)
(8.73181 -4.45825 0)
(8.62573 -4.55203 0)
(8.33134 -4.48023 0)
(8.07598 -4.48222 0)
(8.40056 -4.95664 0)
(8.76881 -5.51479 0)
(8.61406 -5.57743 0)
(8.08861 -5.12151 0)
(7.45897 -4.69208 0)
(7.24871 -4.67962 0)
(7.59607 -4.84776 0)
(8.10724 -5.14102 0)
(8.71832 -5.21387 0)
(9.33689 -5.05469 0)
(9.84048 -4.85432 0)
(10.3083 -4.40987 0)
(10.6949 -3.63834 0)
(10.8043 -2.90931 0)
(10.9815 -2.33928 0)
(11.3338 -1.60305 0)
(11.448 -0.867883 0)
(11.7477 -0.151003 0)
(12.059 0.688307 0)
(12.244 1.6053 0)
(12.1381 2.3488 0)
(12.1392 3.08424 0)
(12.1201 3.72501 0)
(12.4153 4.62283 0)
(12.7043 5.42304 0)
(12.6694 6.16289 0)
(12.6531 6.46549 0)
(12.1342 6.46898 0)
(12.0988 6.51665 0)
(11.8918 6.41365 0)
(11.6052 6.31423 0)
(11.8008 6.18637 0)
(11.0309 5.77152 0)
(11.423 5.45122 0)
(10.6616 4.97961 0)
(10.5976 4.22158 0)
(10.2153 3.86808 0)
(9.76082 3.0993 0)
(9.39243 2.73161 0)
(8.98794 2.07716 0)
(8.60176 1.78455 0)
(8.11507 1.32402 0)
(7.53798 0.983982 0)
(7.17156 0.852521 0)
(6.73544 0.811054 0)
(5.91767 0.583258 0)
(5.53587 0.750318 0)
(5.13051 1.09866 0)
(4.74653 1.44445 0)
(4.59247 1.91997 0)
(4.05766 2.311 0)
(3.94341 2.83453 0)
(3.92204 3.31316 0)
(3.59359 3.68779 0)
(3.33541 4.215 0)
(3.31488 4.58875 0)
(3.15695 5.07514 0)
(2.78384 5.30775 0)
(2.69905 5.43534 0)
(2.38877 5.36604 0)
(2.33458 5.31143 0)
(2.14576 5.10403 0)
(2.2917 4.58964 0)
(2.33901 4.15818 0)
(2.33524 3.55571 0)
(2.46633 2.81623 0)
(2.52707 2.65618 0)
(2.41453 1.8018 0)
(2.49139 2.07933 0)
(2.4221 0.513881 0)
(2.09759 1.26209 0)
(3.02207 -0.420731 0)
(1.8607 0.245857 0)
(3.94913 -1.35213 0)
(1.92244 -0.762932 0)
(4.56087 -2.37701 0)
(2.35489 -2.21521 0)
(4.34864 -3.33609 0)
(2.77078 -3.10579 0)
(3.90024 -3.77144 0)
(2.07248 -3.62354 0)
(2.50385 -4.12344 0)
(0.839236 -4.45286 0)
(0.827312 -4.94651 0)
(0.467171 -3.85394 0)
(-0.334507 0.0400374 0)
(-0.772952 -0.0141789 0)
(-0.879915 0.0300221 0)
(-0.835595 0.141705 0)
(-0.768387 0.152109 0)
(-0.760295 0.158891 0)
(-0.628393 0.0684626 0)
(-0.659833 0.0765641 0)
(-0.526177 0.115803 0)
(-0.308715 0.278215 0)
(-0.0576444 0.413807 0)
(0.260137 0.53935 0)
(0.518254 0.689317 0)
(0.739656 0.803502 0)
(1.06058 0.878523 0)
(1.37785 1.0266 0)
(1.77986 1.02254 0)
(2.20607 0.884559 0)
(2.46906 0.671026 0)
(2.63786 0.362709 0)
(2.62047 0.110738 0)
(2.47462 0.0135987 0)
(2.36827 0.0795504 0)
(2.31948 0.00599063 0)
(2.29825 -0.192812 0)
(2.25546 -0.388871 0)
(2.03175 -0.527381 0)
(1.8445 -0.50605 0)
(1.65303 -0.383899 0)
(1.54635 -0.191701 0)
(1.52234 0.0390365 0)
(1.57387 0.254078 0)
(1.59173 0.447001 0)
(1.80376 0.642993 0)
(2.0535 0.857759 0)
(2.33868 1.05752 0)
(2.61714 1.187 0)
(2.90658 1.2489 0)
(3.14958 1.22052 0)
(3.37612 1.1174 0)
(3.61969 0.940215 0)
(3.79409 0.699682 0)
(3.94239 0.389294 0)
(4.01716 0.0680911 0)
(4.00967 -0.228907 0)
(3.88761 -0.482048 0)
(3.78359 -0.674709 0)
(3.52106 -0.795589 0)
(3.3298 -0.833578 0)
(3.0271 -0.799376 0)
(2.82705 -0.726684 0)
(2.54082 -0.645576 0)
(2.37738 -0.543155 0)
(2.26756 -0.385299 0)
(2.2432 -0.186432 0)
(2.11719 -0.117342 0)
(2.12094 -0.041915 0)
(2.21189 0.0613716 0)
(2.31668 0.130886 0)
(2.46186 0.176152 0)
(2.44473 0.133889 0)
(2.60182 0.0675589 0)
(2.58527 -0.00720959 0)
(2.62863 -0.130062 0)
(2.73607 -0.163238 0)
(2.64947 -0.258782 0)
(2.79648 -0.336546 0)
(2.68838 -0.364156 0)
(2.83684 -0.415251 0)
(2.89311 -0.382338 0)
(3.00997 -0.382162 0)
(3.2307 -0.353589 0)
(3.38866 -0.271144 0)
(3.64168 -0.260268 0)
(3.95322 -0.179885 0)
(4.15979 -0.173586 0)
(4.4936 -0.166537 0)
(4.77125 -0.193256 0)
(4.98447 -0.21187 0)
(5.37379 -0.272459 0)
(5.55862 -0.282092 0)
(5.84915 -0.369605 0)
(6.05849 -0.475944 0)
(6.34588 -0.567811 0)
(6.54293 -0.634845 0)
(6.84009 -0.774047 0)
(7.05104 -0.828111 0)
(7.29896 -0.930947 0)
(7.532 -1.00271 0)
(7.71408 -1.06997 0)
(8.00815 -1.31139 0)
(8.19315 -1.40983 0)
(8.42052 -1.55903 0)
(8.72623 -1.75002 0)
(8.84786 -1.77901 0)
(9.19604 -2.12352 0)
(9.42945 -2.30611 0)
(9.64148 -2.53557 0)
(9.98439 -2.86292 0)
(10.1496 -2.99398 0)
(10.4404 -3.32634 0)
(10.6727 -3.58402 0)
(10.7443 -3.72836 0)
(10.9057 -4.06426 0)
(10.885 -4.13145 0)
(10.6675 -4.2654 0)
(10.6258 -4.4297 0)
(10.1405 -4.32402 0)
(9.7094 -4.40426 0)
(9.49295 -4.37029 0)
(8.77954 -4.10249 0)
(8.55482 -4.17795 0)
(8.58848 -4.37804 0)
(8.11538 -4.27045 0)
(8.10691 -4.56044 0)
(8.55279 -5.25264 0)
(8.38089 -5.41233 0)
(7.5969 -4.92644 0)
(6.85917 -4.38704 0)
(6.59109 -4.55418 0)
(6.91828 -5.02799 0)
(7.41051 -5.50361 0)
(7.89094 -5.72916 0)
(8.42732 -5.71032 0)
(8.8687 -5.46013 0)
(9.33945 -5.08167 0)
(9.68393 -4.55722 0)
(10.0294 -3.67998 0)
(10.1102 -2.94334 0)
(10.204 -2.48646 0)
(10.5842 -1.80124 0)
(10.7944 -1.09441 0)
(10.9543 -0.433175 0)
(11.3189 0.34405 0)
(11.7424 1.41786 0)
(11.964 2.45062 0)
(11.7395 3.18148 0)
(11.6153 3.75133 0)
(11.6086 4.30747 0)
(12.0542 5.24915 0)
(12.214 5.9084 0)
(12.2112 6.49719 0)
(12.1559 6.64599 0)
(11.6252 6.59285 0)
(11.6253 6.65673 0)
(11.2853 6.42538 0)
(11.146 6.35206 0)
(11.3839 6.02903 0)
(10.553 5.5662 0)
(11.1146 5.24811 0)
(10.2642 4.67739 0)
(10.4024 4.02052 0)
(9.97919 3.71454 0)
(9.59563 2.94143 0)
(9.31688 2.47685 0)
(8.94611 2.0932 0)
(8.56071 1.76748 0)
(8.07545 1.33588 0)
(7.64838 1.22461 0)
(7.19407 1.08501 0)
(6.74469 1.2606 0)
(5.89837 0.98639 0)
(5.64633 1.39574 0)
(5.26333 1.78971 0)
(4.94672 2.07072 0)
(4.61555 2.57631 0)
(4.35539 3.01379 0)
(4.16835 3.42717 0)
(3.92428 3.83019 0)
(3.83532 4.41639 0)
(3.5614 4.82072 0)
(3.45877 5.21526 0)
(3.29913 5.55269 0)
(3.19402 5.5228 0)
(2.91289 5.57887 0)
(3.07431 5.26568 0)
(2.98 5.06962 0)
(3.0754 4.53858 0)
(3.23519 3.9537 0)
(3.12883 3.70863 0)
(3.47482 2.67163 0)
(2.91251 2.89178 0)
(3.81897 1.49949 0)
(2.35261 2.01658 0)
(4.94091 0.382471 0)
(1.61233 1.17017 0)
(6.27765 -0.700483 0)
(1.74991 0.0957827 0)
(7.01638 -1.86598 0)
(2.53861 -0.704717 0)
(7.11275 -2.69386 0)
(3.47776 -1.92236 0)
(6.41121 -3.48833 0)
(4.00952 -2.7546 0)
(5.88434 -3.50801 0)
(3.51031 -3.13506 0)
(4.5631 -3.32592 0)
(2.35645 -3.76481 0)
(1.99899 -3.76116 0)
(-0.331393 -3.42037 0)
(-0.0657587 0.611649 0)
(-0.33409 0.341871 0)
(-0.509215 0.0139424 0)
(-0.635599 -0.080707 0)
(-0.568597 -0.0878219 0)
(-0.541591 -0.0521498 0)
(-0.389727 -0.0788366 0)
(-0.379134 0.000789571 0)
(-0.236533 -0.0152816 0)
(-0.0956743 0.07839 0)
(0.13939 0.19752 0)
(0.412648 0.305076 0)
(0.722469 0.450061 0)
(1.02249 0.573006 0)
(1.35837 0.64481 0)
(1.71601 0.740393 0)
(2.05692 0.749559 0)
(2.41005 0.672037 0)
(2.64534 0.54814 0)
(2.83674 0.380864 0)
(2.87257 0.194737 0)
(2.85698 0.114954 0)
(2.78321 0.0892916 0)
(2.87946 0.0565221 0)
(2.85285 -0.0929829 0)
(2.7925 -0.306149 0)
(2.57843 -0.395249 0)
(2.38242 -0.371765 0)
(2.14981 -0.246842 0)
(2.04026 -0.0823957 0)
(1.92497 0.0699476 0)
(1.96916 0.218252 0)
(2.00728 0.385156 0)
(2.17042 0.506238 0)
(2.33441 0.625049 0)
(2.61032 0.768514 0)
(2.90431 0.889284 0)
(3.24835 0.941839 0)
(3.56895 0.938396 0)
(3.83573 0.887824 0)
(4.1145 0.721822 0)
(4.2844 0.534716 0)
(4.41943 0.307278 0)
(4.46322 0.0392878 0)
(4.46139 -0.196121 0)
(4.28799 -0.391899 0)
(4.2078 -0.536308 0)
(3.94215 -0.625182 0)
(3.7916 -0.662345 0)
(3.53101 -0.654333 0)
(3.36908 -0.616737 0)
(3.19652 -0.545511 0)
(3.11783 -0.423961 0)
(3.08095 -0.301622 0)
(3.02742 -0.23373 0)
(3.17355 -0.118508 0)
(3.15719 -0.0187079 0)
(3.4148 0.0513412 0)
(3.41022 0.078036 0)
(3.64922 0.00656479 0)
(3.72727 -0.016575 0)
(3.9233 -0.0855651 0)
(4.01787 -0.132883 0)
(4.12294 -0.191125 0)
(4.24532 -0.245646 0)
(4.3988 -0.292047 0)
(4.47567 -0.350443 0)
(4.64948 -0.388472 0)
(4.71719 -0.430979 0)
(4.92539 -0.481333 0)
(5.02243 -0.460599 0)
(5.22764 -0.458316 0)
(5.42861 -0.414904 0)
(5.5857 -0.405303 0)
(5.84571 -0.372247 0)
(6.08006 -0.347046 0)
(6.26801 -0.352457 0)
(6.57633 -0.393083 0)
(6.70694 -0.426724 0)
(6.99913 -0.490027 0)
(7.23486 -0.529333 0)
(7.45247 -0.556165 0)
(7.65353 -0.700879 0)
(7.89974 -0.813111 0)
(8.07286 -0.862579 0)
(8.36471 -0.995773 0)
(8.48716 -1.02385 0)
(8.7313 -1.16237 0)
(8.92164 -1.25186 0)
(9.12481 -1.29959 0)
(9.41739 -1.54107 0)
(9.53747 -1.58037 0)
(9.75611 -1.76772 0)
(10.022 -1.92679 0)
(10.1188 -2.00555 0)
(10.4984 -2.34843 0)
(10.6406 -2.46978 0)
(10.8725 -2.734 0)
(11.1001 -2.96748 0)
(11.1436 -3.10782 0)
(11.395 -3.46377 0)
(11.3285 -3.58819 0)
(11.3259 -3.76409 0)
(11.2486 -4.03826 0)
(10.9056 -3.94517 0)
(10.671 -4.13494 0)
(10.3006 -4.14868 0)
(9.72867 -3.94225 0)
(9.48957 -4.09702 0)
(9.06951 -3.91777 0)
(8.51587 -3.77231 0)
(8.6666 -4.18762 0)
(8.51291 -4.17733 0)
(7.93029 -4.05639 0)
(8.25854 -4.69979 0)
(8.3243 -5.11778 0)
(7.36839 -4.71522 0)
(6.41108 -4.14712 0)
(6.01349 -4.29977 0)
(6.22338 -4.87987 0)
(6.52442 -5.48518 0)
(6.88274 -5.85176 0)
(7.35128 -5.9735 0)
(7.81009 -5.91229 0)
(8.36259 -5.64603 0)
(8.78538 -5.27658 0)
(9.17488 -4.68707 0)
(9.54569 -3.71095 0)
(9.58353 -2.91273 0)
(9.71585 -2.46569 0)
(9.97109 -1.90176 0)
(10.3331 -1.06474 0)
(10.2957 -0.48739 0)
(10.385 0.153772 0)
(10.7255 1.09509 0)
(11.2377 2.27903 0)
(11.2968 3.23836 0)
(11.0921 3.87722 0)
(10.9204 4.37874 0)
(11.0611 5.05909 0)
(11.406 5.96566 0)
(11.5186 6.47596 0)
(11.6329 6.96397 0)
(11.4097 6.86671 0)
(10.9113 6.69484 0)
(11.1156 6.64291 0)
(10.5976 6.24964 0)
(10.6871 6.12393 0)
(10.8648 5.70259 0)
(10.1978 5.22579 0)
(10.7943 4.80715 0)
(9.88127 4.19415 0)
(10.2707 3.73635 0)
(9.6743 3.30877 0)
(9.52951 2.67316 0)
(9.14126 2.40008 0)
(8.9252 2.03128 0)
(8.46209 1.7974 0)
(7.98376 1.43886 0)
(7.6951 1.69709 0)
(7.13288 1.4992 0)
(6.72569 1.63948 0)
(5.99606 1.60295 0)
(5.78819 2.09963 0)
(5.47768 2.39683 0)
(5.04213 2.82449 0)
(4.85794 3.22992 0)
(4.58235 3.56181 0)
(4.5303 4.0256 0)
(4.16583 4.39023 0)
(4.15074 4.95641 0)
(4.02433 5.28115 0)
(3.84768 5.52416 0)
(3.90199 5.72357 0)
(3.84584 5.49576 0)
(3.78719 5.36903 0)
(3.92862 4.88448 0)
(3.8977 4.77884 0)
(4.06904 3.55009 0)
(3.89373 3.90297 0)
(4.93209 2.44233 0)
(3.21333 3.17336 0)
(6.64487 1.29984 0)
(2.41546 2.50697 0)
(8.48832 -0.121 0)
(2.35213 1.56905 0)
(9.43974 -1.7041 0)
(3.38668 0.621104 0)
(9.44601 -2.81451 0)
(4.3051 -0.336788 0)
(9.12831 -3.45174 0)
(4.83371 -1.38597 0)
(8.06512 -4.137 0)
(4.67721 -2.19237 0)
(7.16033 -3.66393 0)
(4.74359 -1.98038 0)
(5.71689 -3.23362 0)
(4.38972 -1.79672 0)
(3.02005 -2.93611 0)
(1.81884 -2.4524 0)
(0.205229 0.433498 0)
(0.489893 0.344034 0)
(0.713469 0.2317 0)
(0.723976 0.174537 0)
(0.728012 0.0981535 0)
(0.676644 0.0317214 0)
(0.729921 -0.0424528 0)
(0.647656 -0.0463582 0)
(0.686653 -0.0757737 0)
(0.704724 -0.0432089 0)
(0.739799 0.00713381 0)
(0.884486 0.0619856 0)
(1.06714 0.13029 0)
(1.33848 0.234317 0)
(1.57859 0.309336 0)
(1.92331 0.382862 0)
(2.2026 0.418109 0)
(2.51391 0.389707 0)
(2.74002 0.344217 0)
(2.93343 0.256681 0)
(3.0417 0.149265 0)
(3.09343 0.076925 0)
(3.09081 0.0657329 0)
(3.16983 0.00938066 0)
(3.20638 -0.0942064 0)
(3.14979 -0.18818 0)
(2.91778 -0.223479 0)
(2.75083 -0.187955 0)
(2.57307 -0.0991119 0)
(2.51843 -0.00660591 0)
(2.47759 0.101616 0)
(2.52554 0.200598 0)
(2.58272 0.304021 0)
(2.70697 0.394546 0)
(2.83381 0.481616 0)
(3.02088 0.556876 0)
(3.22695 0.623644 0)
(3.50439 0.654813 0)
(3.7894 0.656703 0)
(4.02649 0.608812 0)
(4.29338 0.514008 0)
(4.45762 0.376939 0)
(4.58185 0.198201 0)
(4.62067 0.0368935 0)
(4.66044 -0.140529 0)
(4.51311 -0.291141 0)
(4.46899 -0.412218 0)
(4.28424 -0.488413 0)
(4.19311 -0.534875 0)
(4.0846 -0.533873 0)
(3.99727 -0.510851 0)
(3.99462 -0.436069 0)
(3.95009 -0.38836 0)
(4.02868 -0.334163 0)
(4.03522 -0.261612 0)
(4.21363 -0.220076 0)
(4.29675 -0.161728 0)
(4.48578 -0.148419 0)
(4.65439 -0.112648 0)
(4.86553 -0.121175 0)
(5.07237 -0.141715 0)
(5.25461 -0.163835 0)
(5.46301 -0.217815 0)
(5.61162 -0.253365 0)
(5.80122 -0.345071 0)
(6.02325 -0.404176 0)
(6.1822 -0.483196 0)
(6.36586 -0.537487 0)
(6.55445 -0.603728 0)
(6.67308 -0.612184 0)
(6.91976 -0.661397 0)
(7.00653 -0.642092 0)
(7.27083 -0.624528 0)
(7.43115 -0.592012 0)
(7.64777 -0.580113 0)
(7.91733 -0.596807 0)
(8.07658 -0.527132 0)
(8.3983 -0.571133 0)
(8.61485 -0.613002 0)
(8.79159 -0.624291 0)
(9.05702 -0.72604 0)
(9.27332 -0.684269 0)
(9.50795 -0.819919 0)
(9.69648 -0.924032 0)
(9.8278 -0.962623 0)
(10.0671 -1.12355 0)
(10.157 -1.11189 0)
(10.3679 -1.27715 0)
(10.507 -1.34615 0)
(10.6462 -1.40343 0)
(10.8988 -1.64592 0)
(10.9444 -1.65493 0)
(11.1335 -1.89137 0)
(11.2992 -1.98722 0)
(11.4103 -2.1636 0)
(11.6728 -2.42345 0)
(11.6473 -2.52281 0)
(11.8715 -2.85408 0)
(11.8003 -2.95182 0)
(11.8174 -3.19698 0)
(11.8304 -3.44503 0)
(11.4964 -3.45751 0)
(11.4489 -3.75151 0)
(11.0553 -3.72697 0)
(10.5903 -3.69892 0)
(10.4571 -3.91587 0)
(9.80815 -3.64397 0)
(9.48743 -3.67998 0)
(9.39732 -3.8405 0)
(8.80497 -3.50281 0)
(8.7403 -3.7217 0)
(8.85418 -4.03627 0)
(8.15401 -3.70114 0)
(7.89964 -4.04095 0)
(8.28559 -4.79322 0)
(7.47547 -4.56667 0)
(6.24162 -3.84118 0)
(5.63302 -3.77632 0)
(5.51919 -4.3512 0)
(5.56064 -5.05838 0)
(5.8687 -5.69798 0)
(6.37019 -6.16866 0)
(6.89475 -6.40411 0)
(7.42755 -6.47864 0)
(7.86722 -6.23977 0)
(8.21725 -5.84414 0)
(8.61692 -5.15952 0)
(8.78845 -4.09302 0)
(8.97224 -3.19361 0)
(9.1042 -2.76174 0)
(9.41511 -2.22976 0)
(9.87885 -1.24566 0)
(9.95089 -0.425045 0)
(9.80264 0.109017 0)
(9.91217 0.792531 0)
(10.3087 1.9486 0)
(10.6235 3.20231 0)
(10.4434 3.94672 0)
(10.3781 4.34921 0)
(10.2695 4.78676 0)
(10.5306 5.51254 0)
(10.814 6.31607 0)
(10.873 6.8492 0)
(10.9141 7.16002 0)
(10.5272 6.89607 0)
(10.3068 6.75156 0)
(10.4632 6.49733 0)
(9.86418 5.94324 0)
(10.2289 5.78736 0)
(10.1636 5.39641 0)
(9.74711 4.83294 0)
(10.2175 4.42352 0)
(9.55635 3.90536 0)
(9.89395 3.46095 0)
(9.25681 3.00239 0)
(9.3693 2.55068 0)
(8.84161 2.36963 0)
(8.80135 2.08088 0)
(8.1166 1.87704 0)
(7.97767 1.77067 0)
(7.57669 2.0412 0)
(7.10071 1.95299 0)
(6.70475 2.04474 0)
(6.16765 2.26329 0)
(6.14022 2.68377 0)
(5.64479 2.967 0)
(5.33009 3.47805 0)
(5.21903 3.78031 0)
(4.86451 4.16072 0)
(4.86289 4.64896 0)
(4.54944 4.99833 0)
(4.65345 5.34343 0)
(4.61125 5.72492 0)
(4.49224 5.58757 0)
(4.73432 5.58222 0)
(4.59544 5.48202 0)
(4.828 4.51153 0)
(4.49325 4.87465 0)
(6.18491 3.31573 0)
(3.44359 4.07133 0)
(8.30659 1.96912 0)
(2.60163 3.32889 0)
(10.1576 0.451533 0)
(2.69283 2.60419 0)
(10.886 -1.20283 0)
(3.71624 1.76536 0)
(10.5274 -2.22396 0)
(4.65191 0.660555 0)
(10.1284 -3.00775 0)
(5.39374 -0.220651 0)
(9.7637 -3.2804 0)
(4.99786 -0.794397 0)
(8.46405 -3.99841 0)
(3.68413 -1.77922 0)
(7.41005 -4.01385 0)
(3.23543 -2.1196 0)
(6.9748 -2.92317 0)
(2.65408 -1.74797 0)
(6.16891 -0.853191 0)
(0.389111 0.756374 0)
(5.2322 0.740944 0)
(1.4828 -0.0344245 0)
(3.31316 -0.121546 0)
(2.24463 -0.00584123 0)
(1.78805 0.189139 0)
(-0.79186 0.181854 0)
(-1.16862 0.090628 0)
(-1.26473 -0.0450452 0)
(-0.403315 -0.034279 0)
(0.082697 -0.00741005 0)
(0.967705 -0.0445687 0)
(2.3971 -0.138587 0)
(3.53679 -0.124413 0)
(3.42956 0.0384906 0)
(1.68103 0.20386 0)
(-0.349296 0.205738 0)
(-1.57804 0.140009 0)
(-1.49636 -0.0839238 0)
(1.15342 -0.229835 0)
(4.27988 -0.149646 0)
(9.19083 0.41267 0)
(6.03864 0.463469 0)
(6.69878 0.0149935 0)
(3.25387 0.30882 0)
(2.97629 0.611823 0)
(-0.206103 0.58817 0)
(0.11795 0.0749871 0)
(0.0418295 -0.232953 0)
(1.14806 -0.323321 0)
(1.79383 -0.307234 0)
(3.12989 -0.494034 0)
(5.09328 -0.611158 0)
(5.90591 -0.142938 0)
(4.48509 0.481033 0)
(2.08034 0.748388 0)
(0.482338 0.529369 0)
(-0.122467 0.156205 0)
(0.402584 -0.577101 0)
(4.0334 -1.32322 0)
(8.08011 -0.764647 0)
(10.6745 -0.527793 0)
(9.57491 0.59448 0)
(9.97615 0.621265 0)
(5.1056 0.785568 0)
(4.62494 1.01035 0)
(1.67365 0.968708 0)
(2.3346 0.0439638 0)
(2.45962 -0.394009 0)
(3.52408 -0.505317 0)
(4.01971 -0.472916 0)
(4.83643 -0.840062 0)
(6.11315 -0.983572 0)
(6.62267 -0.0295544 0)
(5.33546 0.930962 0)
(3.46741 1.16508 0)
(2.68801 0.718971 0)
(2.67089 0.143098 0)
(3.25705 -0.95262 0)
(7.0328 -2.43454 0)
(10.6674 -1.38382 0)
(10.6197 -1.67222 0)
(11.3212 0.482912 0)
(12.8588 1.23639 0)
(7.92605 1.42942 0)
(6.75804 1.44607 0)
(4.18471 1.26123 0)
(4.96583 -0.0621501 0)
(5.36808 -0.665946 0)
(6.26887 -0.677255 0)
(6.91695 -0.493642 0)
(7.47113 -0.911079 0)
(7.75114 -1.1852 0)
(7.44969 0.0534164 0)
(6.49096 1.27473 0)
(5.33229 1.41635 0)
(5.14892 0.740229 0)
(5.71589 0.0995886 0)
(6.25674 -1.3387 0)
(10.0868 -3.50134 0)
(13.1128 -1.93757 0)
(10.9864 -2.26734 0)
(11.6526 -0.0887841 0)
(14.8828 1.41866 0)
(11.1246 2.02956 0)
(9.35759 1.96729 0)
(7.14986 1.55338 0)
(7.80177 -0.13449 0)
(8.52693 -0.915612 0)
(9.01791 -0.869309 0)
(9.41324 -0.585912 0)
(10.0878 -0.908021 0)
(10.0064 -1.17082 0)
(8.72357 0.221048 0)
(7.93001 1.51109 0)
(7.40982 1.54246 0)
(7.33616 0.637543 0)
(8.63771 0.00115377 0)
(9.32903 -1.69877 0)
(12.605 -4.55569 0)
(15.1763 -2.46381 0)
(12.5522 -2.27156 0)
(11.6956 -0.438646 0)
(15.7025 1.45941 0)
(13.7689 2.56071 0)
(11.9679 2.54887 0)
(10.1748 1.83362 0)
(10.1294 -0.256316 0)
(11.1755 -1.14555 0)
(11.9391 -0.903926 0)
(11.6148 -0.635369 0)
(12.0114 -0.980378 0)
(12.136 -1.09386 0)
(10.2119 0.474848 0)
(9.46651 1.65425 0)
(9.64237 1.60486 0)
(9.05099 0.451515 0)
(10.8693 -0.224057 0)
(12.3757 -1.99943 0)
(14.7466 -5.40631 0)
(16.684 -2.92567 0)
(13.4133 -2.58711 0)
(11.9205 -0.934364 0)
(15.6024 1.07561 0)
(15.5975 2.8019 0)
(14.3032 3.08972 0)
(13.2572 2.21987 0)
(11.8538 -0.328671 0)
(11.9679 -1.60611 0)
(14.0196 -0.995632 0)
(13.717 -0.496573 0)
(13.453 -1.01122 0)
(13.7838 -1.02166 0)
(11.697 0.803757 0)
(10.8737 1.70108 0)
(11.9311 1.64704 0)
(10.6459 0.361922 0)
(12.3749 -0.64335 0)
(14.8532 -2.44227 0)
(16.302 -6.03798 0)
(17.5291 -3.27813 0)
(13.702 -2.32369 0)
(12.1592 -0.98821 0)
(14.6537 0.558745 0)
(16.2754 2.60365 0)
(15.9856 3.34187 0)
(16.2661 2.66695 0)
(14.061 0.0602308 0)
(11.7648 -1.98712 0)
(14.3491 -1.38631 0)
(14.9808 -0.363398 0)
(14.5252 -0.926074 0)
(14.7767 -0.956046 0)
(12.9218 1.15261 0)
(12.064 1.63185 0)
(13.9839 1.63323 0)
(12.3144 0.391445 0)
(13.7235 -1.14049 0)
(16.8415 -2.9337 0)
(17.2174 -6.35476 0)
(17.6923 -3.45742 0)
(14.5479 -2.62528 0)
(12.996 -1.09235 0)
(13.7323 0.191638 0)
(15.8489 2.2722 0)
(16.4326 3.29856 0)
(18.3238 2.94518 0)
(16.5799 0.820632 0)
(12.707 -1.83129 0)
(14.101 -1.81438 0)
(15.0197 -0.405593 0)
(15.0464 -0.871392 0)
(14.9784 -0.920089 0)
(13.5877 1.48829 0)
(13.0027 1.47609 0)
(15.495 1.57054 0)
(13.9702 0.51258 0)
(15.2024 -1.55038 0)
(18.1874 -3.36792 0)
(17.4102 -6.36179 0)
(17.2191 -3.44878 0)
(14.2005 -2.51022 0)
(13.0414 -0.979109 0)
(13.0957 -0.111083 0)
(14.7077 1.71363 0)
(15.7876 2.83443 0)
(19.0619 2.87612 0)
(18.1385 1.47817 0)
(14.4368 -1.37954 0)
(14.1803 -1.99056 0)
(14.2549 -0.510125 0)
(15.248 -0.85927 0)
(14.5116 -0.838161 0)
(13.5637 1.7296 0)
(13.528 1.1813 0)
(16.157 1.41532 0)
(15.3137 0.565092 0)
(16.4272 -1.85965 0)
(18.6219 -3.68125 0)
(16.8912 -6.1273 0)
(16.2201 -3.27153 0)
(13.4746 -2.1592 0)
(12.707 -0.706722 0)
(12.6333 -0.134893 0)
(13.1182 1.3566 0)
(14.5578 2.22086 0)
(18.5796 2.51242 0)
(18.4109 1.88897 0)
(15.7372 -0.802128 0)
(14.2162 -1.79536 0)
(13.2663 -0.619722 0)
(15.3537 -0.905238 0)
(13.5541 -0.644369 0)
(13.1809 1.84657 0)
(13.4707 0.83799 0)
(15.9147 1.19703 0)
(16.0051 0.49834 0)
(16.8213 -2.06091 0)
(18.1528 -3.83811 0)
(15.8489 -5.74449 0)
(14.8817 -2.99565 0)
(12.9724 -2.10133 0)
(13.0592 -0.789672 0)
(12.3673 -0.142693 0)
(11.4059 1.05512 0)
(13.2046 1.44552 0)
(17.1982 1.97123 0)
(17.8349 2.04717 0)
(16.2483 -0.24237 0)
(13.91 -1.34118 0)
(12.6955 -0.705794 0)
(15.2412 -0.896191 0)
(12.4318 -0.375796 0)
(12.8392 1.71098 0)
(12.8918 0.505273 0)
(15.0899 0.855398 0)
(15.7701 0.308809 0)
(16.3463 -2.19846 0)
(17.1657 -3.88103 0)
(14.4789 -5.26939 0)
(13.3222 -2.65967 0)
(12.0931 -1.85229 0)
(12.5584 -0.658115 0)
(10.7505 0.262804 0)
(9.74678 0.948414 0)
(12.0224 0.785453 0)
(15.2933 1.4873 0)
(16.5271 1.97224 0)
(15.8827 0.166437 0)
(13.5673 -0.932044 0)
(12.6857 -0.892409 0)
(14.9023 -0.830858 0)
(11.7502 -0.0281787 0)
(12.3807 1.52434 0)
(12.2775 0.316768 0)
(14.0676 0.510141 0)
(14.8468 0.0446843 0)
(15.6012 -2.28216 0)
(15.9871 -3.78586 0)
(12.832 -4.70177 0)
(11.5633 -2.2859 0)
(10.9433 -1.35532 0)
(10.8871 -0.36513 0)
(8.9451 0.566991 0)
(9.27887 0.603694 0)
(11.3989 0.200414 0)
(13.5776 1.01989 0)
(14.9123 1.72019 0)
(15.0156 0.436029 0)
(13.4721 -0.619175 0)
(12.9337 -1.01043 0)
(14.575 -0.710703 0)
(11.7613 0.265354 0)
(12.2662 1.33984 0)
(12.3216 0.20906 0)
(13.1416 0.241497 0)
(14.112 -0.27826 0)
(15.0019 -2.29015 0)
(14.5482 -3.52123 0)
(10.8822 -4.05112 0)
(9.60672 -1.89261 0)
(10.3413 -1.16043 0)
(9.44322 -0.161985 0)
(8.45145 0.637592 0)
(9.64499 0.242261 0)
(10.8772 -0.140857 0)
(11.8612 0.736347 0)
(12.9538 1.48244 0)
(13.7731 0.557621 0)
(13.5773 -0.465324 0)
(13.3072 -1.11827 0)
(13.922 -0.618962 0)
(11.7183 0.491875 0)
(12.5492 1.20947 0)
(12.4355 0.26747 0)
(12.6167 0.0921924 0)
(14.0537 -0.554841 0)
(14.2943 -2.12636 0)
(12.7085 -3.04575 0)
(8.68336 -3.34286 0)
(7.5107 -1.51737 0)
(8.80489 -0.740015 0)
(7.81746 0.0472201 0)
(8.55925 0.42982 0)
(9.61757 -0.0610967 0)
(9.29043 -0.182995 0)
(9.2919 0.664703 0)
(10.7442 1.12409 0)
(12.5466 0.317571 0)
(13.4523 -0.505742 0)
(12.8393 -0.993729 0)
(12.3313 -0.360849 0)
(11.1169 0.641546 0)
(12.2692 1.07656 0)
(12.0751 0.332571 0)
(12.8647 -0.0955003 0)
(14.0896 -0.718875 0)
(12.9372 -1.7465 0)
(10.425 -2.40693 0)
(6.33979 -2.63995 0)
(5.33083 -1.1892 0)
(7.96677 -0.393211 0)
(7.43032 -0.032315 0)
(8.54669 0.156738 0)
(8.62009 0.0529448 0)
(7.71237 0.0745377 0)
(8.05584 0.429815 0)
(10.0638 0.50512 0)
(11.8371 -0.103128 0)
(12.3113 -0.555813 0)
(11.0202 -0.720184 0)
(10.3082 -0.14693 0)
(10.0182 0.584951 0)
(11.1237 0.862746 0)
(11.4321 0.24055 0)
(12.5697 -0.298342 0)
(12.6135 -0.670776 0)
(10.506 -1.20458 0)
(7.85394 -1.7081 0)
(4.00236 -1.97878 0)
(3.1234 -0.917208 0)
(7.17183 -0.246816 0)
(7.32097 -0.117279 0)
(7.93755 0.0695682 0)
(7.96578 0.0999352 0)
(7.95432 0.031772 0)
(8.70388 0.0494022 0)
(9.88168 0.0705029 0)
(10.2582 -0.205981 0)
(9.80484 -0.348569 0)
(8.46915 -0.400817 0)
(8.02165 -0.0637888 0)
(8.17702 0.395284 0)
(9.34216 0.545984 0)
(9.91839 0.0613918 0)
(10.399 -0.321673 0)
(9.62389 -0.379111 0)
(7.72133 -0.627445 0)
(5.5194 -1.05711 0)
(1.94285 -1.37905 0)
(1.01594 -0.696484 0)
(6.34426 -0.146156 0)
(6.34904 -0.147046 0)
(6.46037 -0.00332576 0)
(6.52307 0.02254 0)
(6.69465 -0.0569229 0)
(6.93121 -0.0478027 0)
(7.14287 0.0241593 0)
(6.92021 -0.0784531 0)
(6.373 -0.139381 0)
(5.3956 -0.180107 0)
(5.08955 -0.0293629 0)
(5.44515 0.191062 0)
(6.53841 0.25026 0)
(6.96847 0.0115406 0)
(6.93755 -0.149213 0)
(6.22117 -0.0564855 0)
(5.16908 -0.137876 0)
(3.6719 -0.501161 0)
(0.48921 -0.840638 0)
(-0.857292 -0.503827 0)
(3.17038 -0.197 0)
(2.80753 -0.0659193 0)
(2.67822 0.000202845 0)
(2.69242 0.00159322 0)
(2.65788 -0.0224077 0)
(2.5572 -0.00767454 0)
(2.55994 0.0292891 0)
(2.51849 0.0142665 0)
(2.3211 -0.00422466 0)
(1.8563 -0.0384465 0)
(1.59156 -0.0322544 0)
(1.78089 0.0142464 0)
(2.41787 0.0476685 0)
(2.69285 0.0110476 0)
(2.57154 -0.00478365 0)
(2.43526 0.0648759 0)
(2.55402 0.0736893 0)
(2.37893 -0.0657446 0)
(0.0760464 -0.248218 0)
(-1.99713 -0.200774 0)
)
;
boundaryField
{
inlet
{
type fixedValue;
value uniform (10 0 0);
}
outlet
{
type zeroGradient;
}
walls
{
type fixedValue;
value uniform (0 0 0);
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //
| [
"[email protected]"
] | ||
a15440693602f09c2ce44f55708fa94923ed93f0 | c7ea96ca84dd69b7767f18821f1bebbb10b4e104 | /group4/81966_Georgi_Gerginov/Set/comp_implementation/set/set.cpp | 97891807b5dcf1ad9654187c93bac0fd30d668cf | [] | no_license | NickGeorgiev/sdp-kn-20-21-playground | feb57b1d57cec49f7a2e9ef96784b92fc2e1aac0 | a1dc0c077630944bd22cd3d2e064abb9e5f2fb1c | refs/heads/master | 2023-02-20T03:27:38.108460 | 2020-11-25T09:30:51 | 2020-11-25T09:30:51 | 302,135,051 | 3 | 0 | null | 2020-12-10T23:05:38 | 2020-10-07T19:06:46 | C++ | UTF-8 | C++ | false | false | 3,082 | cpp | #include "set.h"
Set::Node::Node(Comparable* _data, Node* _next = nullptr, Node* _prev = nullptr) : data{_data}, next{_next}, prev{_prev} {}
void Set::del() {
while(m_start -> next) {
m_start = m_start -> next;
delete m_start -> prev;
}
delete m_start;
}
void Set::push_front(Comparable* new_data) {
if(is_unique(new_data)) {
m_length++;
m_start = new (std::nothrow) Node{new_data, m_start};
if(!m_start -> next) {
m_end = m_start;
} else {
m_start -> next -> prev = m_start;
}
} else {
std::cout << "$ error: element is not unique\n";
}
}
void Set::push_back(Comparable* new_data) {
if(is_unique(new_data)) {
m_length++;
m_end = new (std::nothrow) Node{new_data, nullptr, m_end};
if(!m_end -> prev) {
m_start = m_end;
} else {
m_end -> prev -> next = m_end;
}
} else {
std::cout << "$ error: element is not unique\n";
}
}
bool Set::is_unique(Comparable* _data) const {
Node* curr{m_start};
while(curr) {
if(curr -> data -> compareTo(_data) == 0) {
return false;
}
curr = curr -> next;
}
return true;
}
Set::Set() : m_length{0}, m_start{nullptr}, m_end{nullptr} {}
Set::Set(const std::initializer_list<Comparable*>& init_list) : Set{} {
for(Comparable* curr : init_list) {
push(curr);
}
}
Set::~Set() {
del();
}
void Set::pop_front() {
if(m_start) {
m_length--;
if(m_start -> next) {
m_start = m_start -> next;
delete m_start -> prev;
m_start -> prev = nullptr;
} else {
delete m_start;
}
} else {
std::cout << "$ error: list is empty\n";
}
}
void Set::pop_back() {
if(m_end) {
m_length--;
if(m_end -> prev) {
m_end = m_end -> prev;
delete m_end -> next;
m_end -> next = nullptr;
} else {
delete m_end;
}
} else {
std::cout << "$ error: list is empty\n";
}
}
void Set::push(Comparable* new_data) {
Node* curr{m_start};
while(curr && curr -> data -> compareTo(new_data) == -1) {
curr = curr -> next;
}
if(curr == m_start) {
push_front(new_data);
} else if(curr == m_end -> next) {
push_back(new_data);
} else {
if(is_unique(new_data)) {
m_length++;
curr -> prev = new (std::nothrow) Node{new_data, curr, curr -> prev};
curr -> prev -> prev -> next = curr -> prev;
} else {
std::cout << "$ error: element is not unique\n";
}
}
}
std::ostream& operator<<(std::ostream& out, const Set& _set) {
Set::Node* curr{_set.m_start};
out << "$ ";
while(curr) {
out << "[" << curr -> data -> get_data() << "]";
if(curr -> next) {
out << " <-> ";
}
curr = curr -> next;
}
out << "\n";
return out;
}
| [
"[email protected]"
] | |
696e2295e8cf425644dc31d09a0993773be0c0c9 | efbc6b185d0d1fe0520e08da5ea9c7589b35d00f | /qmlffmpeg/Encoder.h | 3c3153b990550d8516b93ac33bd6a33fec198db0 | [
"MIT"
] | permissive | bianshifeng/qmlffmpeg | fa96da484ee307e5bc6d00d6a227a0eaaa34a8bd | c44f30ef3a2e5630e863cba0d5417e0402ea6f88 | refs/heads/master | 2020-04-06T04:43:04.751232 | 2017-05-09T01:42:03 | 2017-05-09T01:42:03 | 82,887,096 | 0 | 0 | null | 2017-02-23T05:15:52 | 2017-02-23T05:15:52 | null | UTF-8 | C++ | false | false | 661 | h | #ifndef _FFMPEG_ENCODER_H__
#define _FFMPEG_ENCODER_H__
#include "Codec.h"
namespace ffmpeg {
struct Encoder : Codec
{
Encoder() {}
virtual ~Encoder(){}
virtual AVCodec* find(AVCodecID id) { return avcodec_find_encoder(id); }
virtual AVCodec* find(const char* name) { return avcodec_find_encoder_by_name(name); }
virtual bool open()
{
context->pix_fmt = codec->pix_fmts[0];
return Codec::open();
}
bool encode(AVFrame* frame, AVPacket* packet)
{
int got_packet = 0;
return !avcodec_encode_video2(context, packet, frame, &got_packet) && got_packet;
}
};
} //namespace ffmpeg
#endif // _FFMPEG_ENCODER_H__ | [
"[email protected]"
] | |
13e25d44f64976ae4f8c757bd9efa9f1d5353ad4 | 5eb65551a70bd65232169dfab41ef396c1365ced | /src/UAlbertaBot/Source/base/BuildOrderGoalManager.cpp | bea4fac42cc2f7564fd247946dd4377c9df4e447 | [] | no_license | dougschneider/cmput350 | 5222b5eee118c3fe50299af799b1482743c69646 | d880da91e74faffe0829dcd511daeac25e730edc | refs/heads/master | 2016-09-05T23:37:20.335995 | 2014-08-25T02:14:23 | 2014-08-25T02:14:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,355 | cpp | #include "Common.h"
#include "BuildOrderGoalManager.h"
BuildOrderGoalManager::BuildOrderGoalManager() {}
bool BuildOrderGoalManager::isCompleted(const BuildOrderGoal & bog) const
{
// for each item in the goal
BOOST_FOREACH (const BuildOrderGoalItem & bogi, bog.getGoal())
{
if (bogi.metaType().type == MetaType::Unit)
{
// if we do not have that many of the unit type, return false
if (BWAPI::Broodwar->self()->allUnitCount(bogi.metaType().unitType) < bogi.num())
{
return false;
}
}
// if we have not researched that tech, return false
else if (bogi.metaType().type == MetaType::Tech)
{
if (!BWAPI::Broodwar->self()->hasResearched(bogi.metaType().techType))
{
return false;
}
}
// if we have not upgraded to that level, return false
else if (bogi.metaType().type == MetaType::Upgrade)
{
if (BWAPI::Broodwar->self()->getUpgradeLevel(bogi.metaType().upgradeType) < bogi.num())
{
return false;
}
}
}
// return true only if everything meets the criteria
return true;
}
void BuildOrderGoalManager::addGoal(const MetaType t, int num, int p)
{
// create the build order item
BuildOrderGoalItem bogi(t, num);
// see if an item with this priority already exists
int existingIndex = -1;
for (int i(0); i<(int)goals.size(); ++i)
{
if (goals[i].getPriority() == p)
{
existingIndex = i;
break;
}
}
// if it already exists, add it to that goal
if (existingIndex != -1)
{
goals[existingIndex].addItem(bogi);
}
// otherwise create a new goal
else
{
BuildOrderGoal temp(p);
temp.addItem(bogi);
goals.push_back(temp);
}
}
void BuildOrderGoalManager::setBuildOrderGoals()
{
addGoal(MetaType(BWAPI::UnitTypes::Protoss_Nexus), 1, 1000); // 1 Nexus
addGoal(MetaType(BWAPI::UnitTypes::Protoss_Probe), 1, 1000); // 1 Probe
addGoal(MetaType(BWAPI::UnitTypes::Protoss_Zealot), 12, 98); // 12 Zealot
addGoal(MetaType(BWAPI::UnitTypes::Protoss_Nexus), 2, 96); // 2 Nexus
addGoal(MetaType(BWAPI::UnitTypes::Protoss_Gateway), 3, 94); // 3 Gateway
addGoal(MetaType(BWAPI::UnitTypes::Protoss_Zealot), 18, 92); // 18 Zealot
addGoal(MetaType(BWAPI::UnitTypes::Protoss_Gateway), 5, 90);
// sort the goals to make things quicker for us
std::sort(goals.begin(), goals.end());
}
/*
BuildOrderGoal & BuildOrderGoalManager::getNextBuildOrderGoal() const
{
}*/ | [
"[email protected]"
] | |
2ad49ee5697689c2d5cb165081c8bd19c99c1648 | 2d3ed9770adc4023a39549b14a5b7f5ee744fa35 | /trunk/legacy/tools/utils/set_cfg/set_cfg.cpp | beae0e4d38d811ab2766aa33545e6b0a7abff96c | [
"Apache-2.0"
] | permissive | SFU-HiAccel/merlin-compiler | 7425d3e90e0c5e7c58e93f8f34a7e4d2f303e91a | f47241ccf26186c60bd8aa6e0390c7dd3edabb3c | refs/heads/main | 2023-07-05T05:13:54.819114 | 2021-08-21T04:40:18 | 2021-08-21T04:40:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,322 | cpp | // (C) Copyright 2016-2021 Xilinx, Inc.
// All Rights Reserved.
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include "cmdline_parser.h"
#include "xml_parser.h"
#include "file_parser.h"
// 1. cfg.xml to perl definitions
// void set_cfg(CInputOptions & options)
// {
// int i;
//
// string sXMLFile = options.get_option("", 1);
//
// vector<string> vecFields;
// for (i = 2; i < options.get_option_num(""); i++)
// {
// vecFields.push_back(options.get_option("", i));
// }
//
// string sOut = "";
//
// // configurations
// CXMLParser xml_parser;
// CXMLNode * pRoot = xml_parser.parse_from_file(sXMLFile);
//
// CXMLNode * pNode = pRoot;
// i = 0;
// while (1)
// {
// int j = 0;
// string sName = get_sub_delimited(vecFields[i], j, ':');
// j+=sName.size() + 1; string sParam =
// get_sub_delimited(vecFields[i], j,
// ':'); j+=sParam.size() + 1; string sParamValue =
// get_sub_delimited(vecFields[i], j, ':'); j+=sParamValue.size() + 1;;
//
// sParamValue = RemoveQuote(sParamValue);
//
// vector<CXMLNode *> ConfigNodes = pNode->TraverseByName(sName);
// if (ConfigNodes.size() == 0) break;
//
// for (j = 0; j < ConfigNodes.size(); j++)
// {
// pNode = ConfigNodes[j]; // only modify the first match
// if (sParam == "" || pNode->GetParam(sParam) == sParamValue)
// break;
// }
// if (j == ConfigNodes.size()) break;
//
// if (i == vecFields.size()-2)
// {
// if (options.get_option("-i", 0) == string("set"))
// pNode->SetValue(vecFields[i+1]); else printf("%s\n",
// pNode->GetValue().c_str()); break;
// }
// i++;
// }
// if (options.get_option("-i", 0) == string("set"))
// xml_parser.write_into_file(sXMLFile);
// }
int main(int argc, char *argv[]) {
CInputOptions options;
options.set_flag("", 10, 3);
options.set_flag("-i", 1, 0);
if (options.parse(argc, argv) == 0) {
printf("Usage: set_cfg [-i get|set] cfg_xml hier1 hier2 ... value\n");
printf(" Set/Get the configuration xxx/hier1/xxx/hier2/.../hierx into "
"value.\n");
printf(" each hier can be \"name\" or \"name:param:param_value\"\n");
exit(1);
}
// default values;
if (0 == options.get_option_num("-i")) {
options.add_option("-i", "set");
}
string sOut = set_xml_cfg(options);
if (!sOut.empty()) {
printf("%s\n", sOut.c_str());
}
return 0;
}
| [
"[email protected]"
] | |
fa017e1a46b2be92fc5293b58fb26e1ffefbe733 | 033bfd320943a28bca881bd9ab01e770c1c90c88 | /NgramsToStudents/P1/p1.cpp | 0bf3614330fd09e736ea52cf95f5f7cfaccef282 | [] | no_license | nnur/NLP-AI2 | 726b29ec878338de3538a7aef4e9a763950c6f45 | df705ab08eb50ec84ed53c753a38cf7145cc268b | refs/heads/master | 2021-01-18T16:44:21.365288 | 2017-04-12T07:21:37 | 2017-04-12T07:21:37 | 86,760,429 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,540 | cpp | #include <string>
#include <unordered_map>
#include <fstream>
#include <iostream>
#include <algorithm>
using namespace std;
#include "../Ngrams/fileRead.cpp"
#include "../Ngrams/VectorHash.h"
#include "../Ngrams/utilsToStudents.h"
typedef string T; // Currently tests string language model.
bool comp(pair<T, int> a, pair<T, int> b) {
return a.second > b.second;
}
void p1(string fileName, int k) {
int size = 0;
unordered_map<T, int> wordCounts;
try {
// First read all tokens from file into a vector
vector<T> tokens; // stores tokens read from file
read_tokens(fileName, tokens, false); // reads tokens from file without EOS
int size = tokens.size();
if ( size < k )
cout << "\nInput file is too small to create any nGrams of size " << k;
else {
for ( int i = 0; i < size; i++ ) {
++wordCounts[tokens[i]];
}
vector<pair<T, int>> bestCounts(wordCounts.begin(), wordCounts.end());
sort(bestCounts.begin(), bestCounts.end(), comp);
bestCounts.erase(bestCounts.begin() + k, bestCounts.end());
double numWords = 0;
for (int i = 0; i < bestCounts.size(); i++) {
cout << bestCounts[i].first << ", " << bestCounts[i].second << endl;
numWords += bestCounts[i].second;
}
double percent = numWords/size;
cout << percent << endl;
}
}
catch (FileReadException e) {
e.Report();
}
}
int main() {
string fileName = "C:/Users/nnur3/Downloads/toStudents/toStudents/Texts/Novels/DostoevskyKaramazov.txt";
p1(fileName, 49);
cin.get();
return 1;
} | [
"[email protected]"
] | |
11347c63d0588a8db58898af6deb0fbcef938884 | ac1f5e8925d74a7460ccb040f70ca0504e301075 | /ERAnaEventdata.cxx | b92035ced0fa7bcb85a1454bd3ce3084335cb1be | [] | no_license | grossora/Goldenpi0ana | 8c141192f99a6949d490c2e35e227b50487e23bf | 2e313b9090567eacaaa7928ddeaaa36849f3bab8 | refs/heads/master | 2016-09-14T07:55:18.631542 | 2016-05-26T20:32:00 | 2016-05-26T20:32:00 | 56,928,226 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,863 | cxx | #ifndef ERTOOL_ERANAEVENTDATA_CXX
#define ERTOOL_ERANAEVENTDATA_CXX
#include "ERAnaEventdata.h"
namespace ertool {
ERAnaEventdata::ERAnaEventdata(const std::string& name) : AnaBase(name)
,_edtree(nullptr)
{
delete _edtree;
_edtree = new TTree("edtree","edt");
_edtree->Branch("_eventid",&_eventid,"eventID/I");
_edtree->Branch("_run",&_run,"run/I");
_edtree->Branch("_subrun",&_subrun,"subrun/I");
_edtree->Branch("_nshowers",&_nshowers,"nshowers/I");
_edtree->Branch("_Eshr",&_Eshr,"eshr[100]/D");
_edtree->Branch("_SPshr",&_SPshr,"spshr[50][3]/D");
_edtree->Branch("_Dirshr",&_Dirshr,"dirshr[50][3]/D");
}
void ERAnaEventdata::Reset()
{}
void ERAnaEventdata::AcceptPSet(const ::fcllite::PSet& cfg)
{}
void ERAnaEventdata::ProcessBegin()
{}
bool ERAnaEventdata::Analyze(const EventData &data, const ParticleGraph &graph)
{
// basic info for the events
_eventid = data.Event_ID();
_run = data.Run();
_subrun = data.SubRun();
//just looking at all the shower objects in this events
// Not making a mass or anything like that....
auto const& shrIDs = graph.GetParticleNodes(RecoType_t::kShower);
_nshowers=shrIDs.size();
// if nshowers==0 clear everything...there is no need to do this.. just make sure you are cutting nshowers!=0 in the tree
for (unsigned int a = 0; a<shrIDs.size(); a++){
auto const& shr = data.Shower(graph.GetParticle(shrIDs[a]).RecoID());
auto spshr = shr.Start();
auto dirshr = shr.Dir();
std::cout<<" Energy"<< shr._energy<<std::endl;
_Eshr[a] = shr._energy;
for( unsigned int i=0; i <3;i++){
_SPshr[a][i] = spshr[i];
_Dirshr[a][i] = dirshr[i];
}// for to fill out the xyz's
}
_edtree->Fill();
return true; }
void ERAnaEventdata::ProcessEnd(TFile* fout)
{
_edtree->Write();
}
}
#endif
| [
"[email protected]"
] | |
86df616b6286ea6a88882d935b5a82ffec3e95db | 78918391a7809832dc486f68b90455c72e95cdda | /boost_lib/boost/thread/csbl/memory/allocator_traits.hpp | 549956d25af2a5021384d3a53cd755aca5580d75 | [
"MIT"
] | permissive | kyx0r/FA_Patcher | 50681e3e8bb04745bba44a71b5fd04e1004c3845 | 3f539686955249004b4483001a9e49e63c4856ff | refs/heads/master | 2022-03-28T10:03:28.419352 | 2020-01-02T09:16:30 | 2020-01-02T09:16:30 | 141,066,396 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 734 | hpp | // Copyright (C) 2013 Vicente J. Botet Escriba
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_MEMORY_ALLOCATOR_TRAITS_HPP
#define BOOST_CSBL_MEMORY_ALLOCATOR_TRAITS_HPP
#include <boost/thread/csbl/memory/config.hpp>
// 20.7.8, allocator traits
#if defined BOOST_NO_CXX11_ALLOCATOR
#include <boost/container/allocator_traits.hpp>
namespace boost
{
namespace csbl
{
using ::boost::container::allocator_traits;
}
}
#else
namespace boost
{
namespace csbl
{
using ::std::allocator_traits;
}
}
#endif // BOOST_NO_CXX11_POINTER_TRAITS
#endif // header
| [
"[email protected]"
] | |
388754fb406e009d9bc62c7c2306e780a99ac301 | e4355967555857fd536787dce39ca30426ffa702 | /867/Game Platform/工具/SolutionAndroid/10Ox/SmallNineDlg.h | 69405f466dab4a4ae89bcfe7a5212559a35652cf | [] | no_license | herox25000/oathx-ogrex-editor | f0fd6044f8065db9cb50a80376e52f502734e877 | f645c7997f27e11a9063a0d352accd98a474cef1 | refs/heads/master | 2020-12-24T14:35:34.912603 | 2013-08-24T06:20:06 | 2013-08-24T06:20:06 | 32,935,652 | 6 | 9 | null | null | null | null | UTF-8 | C++ | false | false | 1,503 | h | #pragma once
#include "afxcmn.h"
#include "ConfigDialog.h"
#include "SmallNineAndroid.h"
#include "AndroidManager.h"
#include "BankerDialog.h"
#include "ServerConfig.h"
class CSmallNineDlg : public CDialog
{
public:
CSmallNineDlg(CWnd* pParent = NULL);
enum { IDD = IDD_SMALLNINE_DIALOG };
public:
void SaveScore(INT64 nScore);
void GetScore(INT64 nScore);
protected:
HICON m_hIcon;
CListCtrl m_ListView;
CRichEditTrace m_AndroidLog;
CConfigDialog m_ConfigDlg;
CServerConfig m_ServerConfigDlg;
O2::AndroidManager* m_pManager;
double m_fLostTime;
O2::SmallNineFactroy* m_pFactroy;
int m_nSelectItem;
CBankerDialog m_BankerDialog;
protected:
virtual BOOL OnInitDialog();
virtual void DoDataExchange(CDataExchange* pDX);
virtual BOOL OnUpdateListView();
virtual DWORD GetUserID();
protected:
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedConfig();
afx_msg void OnBnClickedOk();
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnBnClickedCancel();
afx_msg void OnDestroy();
afx_msg void OnBnClickedUpdate();
afx_msg void OnNMRclickListUserView(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnOffline();
afx_msg void OnParticulars();
afx_msg void OnSaveScore();
afx_msg void OnGetScore();
afx_msg void OnBnClickedAdvanced();
};
| [
"[email protected]@a113e17c-5e0c-ebba-c532-3ad10810a225"
] | [email protected]@a113e17c-5e0c-ebba-c532-3ad10810a225 |
49de5243366444c980603ac073f8e4777823c66c | 4c1abce6baabb84c9cd2ce320a42380aed9f9fd7 | /simulate3/simulate3.cpp | ba96c43c337392271f02fff8347997d2f9cfc923 | [] | no_license | louise365/To-be-SDE | 1a1d9ad2fa3acf5acff5f10045c59090440beb95 | cbdb12c5c69f720b5ddebf2636af9617a2452014 | refs/heads/master | 2020-12-28T02:23:41.191921 | 2020-04-14T07:18:36 | 2020-04-14T07:18:36 | 238,149,414 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 969 | cpp | // simulate3.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
int splitArray(vector<int>& nums, int m) {
}
};
int main()
{
std::cout << "Hello World!\n";
}
// 运行程序: Ctrl + F5 或调试 >“开始执行(不调试)”菜单
// 调试程序: F5 或调试 >“开始调试”菜单
// 入门使用技巧:
// 1. 使用解决方案资源管理器窗口添加/管理文件
// 2. 使用团队资源管理器窗口连接到源代码管理
// 3. 使用输出窗口查看生成输出和其他消息
// 4. 使用错误列表窗口查看错误
// 5. 转到“项目”>“添加新项”以创建新的代码文件,或转到“项目”>“添加现有项”以将现有代码文件添加到项目
// 6. 将来,若要再次打开此项目,请转到“文件”>“打开”>“项目”并选择 .sln 文件
| [
"[email protected]"
] | |
68866db03f0d6534f82722adad1f9eb19d7eb827 | ee82cd64d58563d701a5856ec887d3fada5620ef | /H5IconHelp/hdigitalpage.h | 6efe66d93b915ea2a1efe4a5e109bca527096ebc | [] | no_license | rcswhuang/include | 237920454bb8e1bd0dfc74f867aed6f26fd1061b | cceef2902f99bf41326f7a4cd19474b3ecc11297 | refs/heads/master | 2021-03-27T09:46:06.315429 | 2019-01-30T12:26:06 | 2019-01-30T12:26:06 | 107,921,720 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 860 | h | #ifndef HDATAPROPERTYDLG_H
#define HDATAPROPERTYDLG_H
#include <QDialog>
#include "h5iconhelpexport.h"
class HBaseObj;
class HIconObj;
class HDigital;
namespace Ui {
class digitalPage;
}
class H5ICONHELP_EXPORT HDigitalPage : public QDialog
{
Q_OBJECT
public:
explicit HDigitalPage(QWidget *parent = 0);
HDigitalPage(HBaseObj* pObj,QWidget *parent = 0);
~HDigitalPage();
public:
void initDataProper();
void initBaseProper();
void setDigitalAttr(HDigital* pDigital);
public slots:
void onStationCurrentIndexChanged(int index);
void onIntervalCurrentIndexChanged(int index);
void onPointList_clicked();
void onOk();
void onCancel();
private:
Ui::digitalPage *ui;
HIconObj* pCurObj;
ushort wStation;//厂站
ushort wPoint;//测点
ushort wAttrib;//属性
};
#endif // HDATAPROPERTYDLG_H
| [
"[email protected]"
] | |
0befeb3d46339c2e863d3f3978590413bfeb5f8e | 9ea624a093561c87e47b822008e35d40a136a953 | /src/OpcUaStackCore/ServiceSet/TimestampsToReturn.h | 6618766b032b2f329b545134b0ddcdef8ac69dc6 | [
"Apache-2.0"
] | permissive | ASNeG/OpcUaStack | 399828371ed4c128360c710dcd831b41f192f27d | e7c365f006be878dcb588a83af9a0dde49bf2b5a | refs/heads/master | 2023-08-30T16:12:24.823685 | 2022-06-27T21:35:44 | 2022-06-27T21:35:44 | 149,216,768 | 141 | 41 | Apache-2.0 | 2023-08-22T09:10:17 | 2018-09-18T02:25:58 | C++ | UTF-8 | C++ | false | false | 1,019 | h | /*
Copyright 2015 Kai Huebl ([email protected])
Lizenziert gemäß Apache Licence Version 2.0 (die „Lizenz“); Nutzung dieser
Datei nur in Übereinstimmung mit der Lizenz erlaubt.
Eine Kopie der Lizenz erhalten Sie auf http://www.apache.org/licenses/LICENSE-2.0.
Sofern nicht gemäß geltendem Recht vorgeschrieben oder schriftlich vereinbart,
erfolgt die Bereitstellung der im Rahmen der Lizenz verbreiteten Software OHNE
GEWÄHR ODER VORBEHALTE – ganz gleich, ob ausdrücklich oder stillschweigend.
Informationen über die jeweiligen Bedingungen für Genehmigungen und Einschränkungen
im Rahmen der Lizenz finden Sie in der Lizenz.
Autor: Kai Huebl ([email protected])
*/
#ifndef __OpcUaStackCore_TimestampsToReturn_h__
#define __OpcUaStackCore_TimestampsToReturn_h__
namespace OpcUaStackCore
{
typedef enum {
TimestampsToReturn_Source = 0,
TimestampsToReturn_Server = 1,
TimestampsToReturn_Both = 2,
TimestampsToReturn_Neither = 3
} TimestampsToReturn;
}
#endif
| [
"[email protected]"
] | |
0e102ef5046b7bd619bcadfc2d82106d90eac70e | 5456502f97627278cbd6e16d002d50f1de3da7bb | /cc/surfaces/surface_manager_ref_unittest.cc | fd0f96db4e1e3708c73ad7060e4ace0cfe366a4c | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/Chromium_7C66 | 72d108a413909eb3bd36c73a6c2f98de1573b6e5 | c8649ab2a0f5a747369ed50351209a42f59672ee | refs/heads/master | 2023-03-16T12:51:40.231959 | 2017-12-20T10:38:26 | 2017-12-20T10:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,899 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stddef.h>
#include <unordered_map>
#include <vector>
#include "base/memory/ptr_util.h"
#include "cc/surfaces/surface.h"
#include "cc/surfaces/surface_factory.h"
#include "cc/surfaces/surface_id.h"
#include "cc/surfaces/surface_manager.h"
#include "cc/surfaces/surface_sequence_generator.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace cc {
namespace {
constexpr FrameSinkId kFrameSink1(1, 0);
constexpr FrameSinkId kFrameSink2(2, 0);
constexpr FrameSinkId kFrameSink3(3, 0);
const LocalFrameId kLocalFrame1(1, base::UnguessableToken::Create());
const LocalFrameId kLocalFrame2(2, base::UnguessableToken::Create());
// Tests for reference tracking in SurfaceManager.
class SurfaceManagerRefTest : public testing::Test {
public:
SurfaceManager& manager() { return *manager_; }
// Creates a new Surface with the provided SurfaceId. Will first create the
// SurfaceFactory for |frame_sink_id| if necessary.
SurfaceId CreateSurface(const FrameSinkId& frame_sink_id,
const LocalFrameId& local_frame_id) {
GetFactory(frame_sink_id).Create(local_frame_id);
return SurfaceId(frame_sink_id, local_frame_id);
}
// Destroy Surface with |surface_id|.
void DestroySurface(const SurfaceId& surface_id) {
GetFactory(surface_id.frame_sink_id()).Destroy(surface_id.local_frame_id());
}
protected:
SurfaceFactory& GetFactory(const FrameSinkId& frame_sink_id) {
auto& factory_ptr = factories_[frame_sink_id];
if (!factory_ptr)
factory_ptr = base::MakeUnique<SurfaceFactory>(frame_sink_id,
manager_.get(), nullptr);
return *factory_ptr;
}
// testing::Test:
void SetUp() override {
// Start each test with a fresh SurfaceManager instance.
manager_ = base::MakeUnique<SurfaceManager>();
}
void TearDown() override {
factories_.clear();
manager_.reset();
}
std::unordered_map<FrameSinkId,
std::unique_ptr<SurfaceFactory>,
FrameSinkIdHash>
factories_;
std::unique_ptr<SurfaceManager> manager_;
};
} // namespace
TEST_F(SurfaceManagerRefTest, AddReference) {
SurfaceId id1 = CreateSurface(kFrameSink1, kLocalFrame1);
manager().AddSurfaceReference(manager().GetRootSurfaceId(), id1);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id1), 1u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id1), 0u);
}
TEST_F(SurfaceManagerRefTest, AddRemoveReference) {
SurfaceId id1 = CreateSurface(kFrameSink1, kLocalFrame1);
SurfaceId id2 = CreateSurface(kFrameSink2, kLocalFrame1);
manager().AddSurfaceReference(manager().GetRootSurfaceId(), id1);
manager().AddSurfaceReference(id1, id2);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id1), 1u);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id2), 1u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id1), 1u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id2), 0u);
manager().RemoveSurfaceReference(id1, id2);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id1), 1u);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id2), 0u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id1), 0u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id2), 0u);
}
TEST_F(SurfaceManagerRefTest, AddRemoveReferenceRecursive) {
SurfaceId id1 = CreateSurface(kFrameSink1, kLocalFrame1);
SurfaceId id2 = CreateSurface(kFrameSink2, kLocalFrame1);
SurfaceId id3 = CreateSurface(kFrameSink3, kLocalFrame1);
manager().AddSurfaceReference(manager().GetRootSurfaceId(), id1);
manager().AddSurfaceReference(id1, id2);
manager().AddSurfaceReference(id2, id3);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id1), 1u);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id2), 1u);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id3), 1u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id1), 1u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id2), 1u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id3), 0u);
// Should remove reference from id1 -> id2 and then since id2 has zero
// references all references it holds should be removed.
manager().RemoveSurfaceReference(id1, id2);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id1), 1u);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id2), 0u);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id3), 0u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id1), 0u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id2), 0u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id3), 0u);
}
TEST_F(SurfaceManagerRefTest, NewSurfaceFromFrameSink) {
SurfaceId id1 = CreateSurface(kFrameSink1, kLocalFrame1);
SurfaceId id2 = CreateSurface(kFrameSink2, kLocalFrame1);
SurfaceId id3 = CreateSurface(kFrameSink3, kLocalFrame1);
manager().AddSurfaceReference(manager().GetRootSurfaceId(), id1);
manager().AddSurfaceReference(id1, id2);
manager().AddSurfaceReference(id2, id3);
// |kFramesink2| received a CompositorFrame with a new size, so it destroys
// |id2| and creates |id2_next|. No reference have been removed yet.
DestroySurface(id2);
SurfaceId id2_next = CreateSurface(kFrameSink2, kLocalFrame2);
EXPECT_NE(manager().GetSurfaceForId(id2), nullptr);
EXPECT_NE(manager().GetSurfaceForId(id2_next), nullptr);
// Add references to and from |id2_next|.
manager().AddSurfaceReference(id1, id2_next);
manager().AddSurfaceReference(id2_next, id3);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id2), 1u);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id2_next), 1u);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id3), 2u);
manager().RemoveSurfaceReference(id1, id2);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id2), 0u);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id2_next), 1u);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id3), 1u);
// |id2| should be deleted during GC but other surfaces shouldn't.
EXPECT_EQ(manager().GetSurfaceForId(id2), nullptr);
EXPECT_NE(manager().GetSurfaceForId(id2_next), nullptr);
EXPECT_NE(manager().GetSurfaceForId(id3), nullptr);
}
TEST_F(SurfaceManagerRefTest, CheckGC) {
SurfaceId id1 = CreateSurface(kFrameSink1, kLocalFrame1);
SurfaceId id2 = CreateSurface(kFrameSink2, kLocalFrame1);
manager().AddSurfaceReference(manager().GetRootSurfaceId(), id1);
manager().AddSurfaceReference(id1, id2);
EXPECT_NE(manager().GetSurfaceForId(id1), nullptr);
EXPECT_NE(manager().GetSurfaceForId(id2), nullptr);
// Destroying the surfaces shouldn't delete them yet, since there is still an
// active reference on all surfaces.
DestroySurface(id1);
DestroySurface(id2);
EXPECT_NE(manager().GetSurfaceForId(id1), nullptr);
EXPECT_NE(manager().GetSurfaceForId(id2), nullptr);
// Should delete |id2| when the only reference to it is removed.
manager().RemoveSurfaceReference(id1, id2);
EXPECT_EQ(manager().GetSurfaceForId(id2), nullptr);
// Should delete |id1| when the only reference to it is removed.
manager().RemoveSurfaceReference(manager().GetRootSurfaceId(), id1);
EXPECT_EQ(manager().GetSurfaceForId(id1), nullptr);
}
TEST_F(SurfaceManagerRefTest, CheckGCRecusiveFull) {
SurfaceId id1 = CreateSurface(kFrameSink1, kLocalFrame1);
SurfaceId id2 = CreateSurface(kFrameSink2, kLocalFrame1);
SurfaceId id3 = CreateSurface(kFrameSink3, kLocalFrame1);
manager().AddSurfaceReference(manager().GetRootSurfaceId(), id1);
manager().AddSurfaceReference(id1, id2);
manager().AddSurfaceReference(id2, id3);
DestroySurface(id3);
DestroySurface(id2);
DestroySurface(id1);
// Destroying the surfaces shouldn't delete them yet, since there is still an
// active reference on all surfaces.
EXPECT_NE(manager().GetSurfaceForId(id3), nullptr);
EXPECT_NE(manager().GetSurfaceForId(id2), nullptr);
EXPECT_NE(manager().GetSurfaceForId(id1), nullptr);
manager().RemoveSurfaceReference(manager().GetRootSurfaceId(), id1);
// Removing the reference from the root to id1 should allow all three surfaces
// to be deleted during GC.
EXPECT_EQ(manager().GetSurfaceForId(id1), nullptr);
EXPECT_EQ(manager().GetSurfaceForId(id2), nullptr);
EXPECT_EQ(manager().GetSurfaceForId(id3), nullptr);
}
TEST_F(SurfaceManagerRefTest, CheckGCWithSequences) {
SurfaceId id1 = CreateSurface(kFrameSink1, kLocalFrame1);
SurfaceId id2 = CreateSurface(kFrameSink2, kLocalFrame1);
manager().AddSurfaceReference(manager().GetRootSurfaceId(), id1);
manager().AddSurfaceReference(id1, id2);
SurfaceId id3 = CreateSurface(kFrameSink3, kLocalFrame1);
Surface* surface3 = manager().GetSurfaceForId(id3);
// Add destruction dependency from |id2| to |id3|.
manager().RegisterFrameSinkId(kFrameSink2);
SurfaceSequence sequence(kFrameSink2, 1u);
surface3->AddDestructionDependency(sequence);
EXPECT_EQ(surface3->GetDestructionDependencyCount(), 1u);
// Surface for |id3| isn't delete yet because it has a valid destruction
// dependency from |kFrameSink2|.
DestroySurface(id3);
EXPECT_NE(manager().GetSurfaceForId(id3), nullptr);
// Surface for |id2| isn't deleted because it has a reference.
DestroySurface(id2);
EXPECT_NE(manager().GetSurfaceForId(id2), nullptr);
// Satisfy destruction dependency on |id3| and delete during GC.
std::vector<uint32_t> satisfied({sequence.sequence});
manager().DidSatisfySequences(kFrameSink2, &satisfied);
EXPECT_EQ(manager().GetSurfaceForId(id3), nullptr);
// Remove ref on |id2| and delete during GC.
manager().RemoveSurfaceReference(id1, id2);
EXPECT_EQ(manager().GetSurfaceForId(id2), nullptr);
}
TEST_F(SurfaceManagerRefTest, TryAddReferenceToBadSurface) {
// Not creating an accompanying Surface and SurfaceFactory.
SurfaceId id(FrameSinkId(100u, 200u),
LocalFrameId(1u, base::UnguessableToken::Create()));
// Adding reference from root to the Surface should do nothing because
// SurfaceManager doesn't know Surface for |id| exists.
manager().AddSurfaceReference(manager().GetRootSurfaceId(), id);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id), 0u);
}
TEST_F(SurfaceManagerRefTest, TryDoubleAddReference) {
SurfaceId id1 = CreateSurface(kFrameSink1, kLocalFrame1);
SurfaceId id2 = CreateSurface(kFrameSink2, kLocalFrame1);
manager().AddSurfaceReference(manager().GetRootSurfaceId(), id1);
manager().AddSurfaceReference(id1, id2);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id2), 1u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id1), 1u);
// The second request should be ignored without crashing.
manager().AddSurfaceReference(id1, id2);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id2), 1u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id1), 1u);
}
TEST_F(SurfaceManagerRefTest, TryAddSelfReference) {
SurfaceId id1 = CreateSurface(kFrameSink1, kLocalFrame1);
// Adding a self reference should be ignored without crashing.
manager().AddSurfaceReference(id1, id1);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id1), 0u);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id1), 0u);
}
TEST_F(SurfaceManagerRefTest, TryRemoveBadReference) {
SurfaceId id1 = CreateSurface(kFrameSink1, kLocalFrame1);
SurfaceId id2 = CreateSurface(kFrameSink2, kLocalFrame1);
// Removing non-existent reference should be ignored.
manager().AddSurfaceReference(id1, id2);
manager().RemoveSurfaceReference(id2, id1);
EXPECT_EQ(manager().GetReferencedSurfaceCount(id1), 1u);
EXPECT_EQ(manager().GetSurfaceReferenceCount(id2), 1u);
}
} // namespace cc
| [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.