Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 229 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 18180067 | 902 days ago | IN | 0 ETH | 0.00030555 | ||||
| Approve | 15682265 | 1253 days ago | IN | 0 ETH | 0.00076685 | ||||
| Approve | 15644834 | 1258 days ago | IN | 0 ETH | 0.00053227 | ||||
| Approve | 15641355 | 1258 days ago | IN | 0 ETH | 0.00102639 | ||||
| Approve | 15635336 | 1259 days ago | IN | 0 ETH | 0.00038159 | ||||
| Approve | 15635322 | 1259 days ago | IN | 0 ETH | 0.00049293 | ||||
| Approve | 15634778 | 1259 days ago | IN | 0 ETH | 0.00283566 | ||||
| Approve | 15634697 | 1259 days ago | IN | 0 ETH | 0.00065763 | ||||
| Approve | 15633989 | 1259 days ago | IN | 0 ETH | 0.000729 | ||||
| Approve | 15633083 | 1260 days ago | IN | 0 ETH | 0.00075525 | ||||
| Approve | 15632628 | 1260 days ago | IN | 0 ETH | 0.0010184 | ||||
| Approve | 15629657 | 1260 days ago | IN | 0 ETH | 0.00045563 | ||||
| Approve | 15627790 | 1260 days ago | IN | 0 ETH | 0.00033029 | ||||
| Approve | 15627227 | 1260 days ago | IN | 0 ETH | 0.00052764 | ||||
| Approve | 15626840 | 1260 days ago | IN | 0 ETH | 0.00236305 | ||||
| Approve | 15626800 | 1260 days ago | IN | 0 ETH | 0.00073096 | ||||
| Approve | 15626526 | 1260 days ago | IN | 0 ETH | 0.00102048 | ||||
| Approve | 15625850 | 1261 days ago | IN | 0 ETH | 0.00254695 | ||||
| Approve | 15625785 | 1261 days ago | IN | 0 ETH | 0.00174028 | ||||
| Approve | 15625765 | 1261 days ago | IN | 0 ETH | 0.00188878 | ||||
| Approve | 15625576 | 1261 days ago | IN | 0 ETH | 0.00136764 | ||||
| Approve | 15625470 | 1261 days ago | IN | 0 ETH | 0.0016531 | ||||
| Approve | 15625354 | 1261 days ago | IN | 0 ETH | 0.00080106 | ||||
| Approve | 15625352 | 1261 days ago | IN | 0 ETH | 0.00143162 | ||||
| Approve | 15625317 | 1261 days ago | IN | 0 ETH | 0.00102438 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 15649299 | 1257 days ago | 0.00034167 ETH | ||||
| Add Liquidity ET... | 15649299 | 1257 days ago | 0.0007703 ETH | ||||
| Transfer | 15649299 | 1257 days ago | 0.00308121 ETH | ||||
| Transfer | 15649299 | 1257 days ago | 0.00385152 ETH | ||||
| Transfer | 15641358 | 1258 days ago | 0.00032009 ETH | ||||
| Add Liquidity ET... | 15641358 | 1258 days ago | 0.00072175 ETH | ||||
| Transfer | 15641358 | 1258 days ago | 0.00288702 ETH | ||||
| Transfer | 15641358 | 1258 days ago | 0.00360878 ETH | ||||
| Transfer | 15637911 | 1259 days ago | 0.0003865 ETH | ||||
| Add Liquidity ET... | 15637911 | 1259 days ago | 0.00087127 ETH | ||||
| Transfer | 15637911 | 1259 days ago | 0.00348509 ETH | ||||
| Transfer | 15637911 | 1259 days ago | 0.00435637 ETH | ||||
| Transfer | 15636092 | 1259 days ago | 0.00034823 ETH | ||||
| Add Liquidity ET... | 15636092 | 1259 days ago | 0.00078518 ETH | ||||
| Transfer | 15636092 | 1259 days ago | 0.00314074 ETH | ||||
| Transfer | 15636092 | 1259 days ago | 0.00392592 ETH | ||||
| Transfer | 15635343 | 1259 days ago | 0.00040019 ETH | ||||
| Add Liquidity ET... | 15635343 | 1259 days ago | 0.00090218 ETH | ||||
| Transfer | 15635343 | 1259 days ago | 0.00360872 ETH | ||||
| Transfer | 15635343 | 1259 days ago | 0.0045109 ETH | ||||
| Transfer | 15635338 | 1259 days ago | 0.00036839 ETH | ||||
| Add Liquidity ET... | 15635338 | 1259 days ago | 0.00083064 ETH | ||||
| Transfer | 15635338 | 1259 days ago | 0.00332259 ETH | ||||
| Transfer | 15635338 | 1259 days ago | 0.00415323 ETH | ||||
| Transfer | 15635335 | 1259 days ago | 0.00039806 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Khon2u
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-09-26
*/
/*
🌙 Web: https://www.worshipchons.com/
🌙 Telegram: https://t.me/CHONS_portal
*/
// SPDX-License-Identifier: MIT
pragma solidity = 0.8.12;
// ##### Context #####
// This contract is only required for intermediate, library-like contracts.
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// ##### Ownable #####
// Contract module which provides a basic access control mechanism
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
// Initializes the contract setting the deployer as the initial owner.
constructor() {
_transferOwnership(_msgSender());
}
// Returns the address of the current owner.
function owner() public view virtual returns (address) {
return _owner;
}
// Throws if called by any account other than the owner.
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
// Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
// Transfers ownership of the contract to a new account (`newOwner`).
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
// Transfers ownership of the contract to a new account (`newOwner`).
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// ##### IERC20 #####
interface IERC20 {
// Returns the amount of tokens in existence.
function totalSupply() external view returns (uint256);
// Returns the amount of tokens owned by `account`.
function balanceOf(address account) external view returns (uint256);
// Moves `amount` tokens from the caller's account to `recipient`.
function transfer(address recipient, uint256 amount) external returns (bool);
// Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default.
function allowance(address owner, address spender) external view returns (uint256);
// Sets `amount` as the allowance of `spender` over the caller's tokens.
function approve(address spender, uint256 amount) external returns (bool);
// Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism. `amount` is then deducted from the caller's allowance.
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
// Emitted when `value` tokens are moved from one account (`from`) to another (`to`).
event Transfer(address indexed from, address indexed to, uint256 value);
// Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// ##### IERC20Metadata #####
// Interface for the optional metadata functions from the ERC20 standard.
interface IERC20Metadata is IERC20 {
// Returns the name of the token.
function name() external view returns (string memory);
// Returns the symbol of the token.
function symbol() external view returns (string memory);
// Returns the decimals places of the token.
function decimals() external view returns (uint8);
}
// ##### ERC20 #####
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
// Sets the values for {name} and {symbol}.
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
// Returns the name of the token.
function name() public view virtual override returns (string memory) {
return _name;
}
// Returns the symbol of the token, usually a shorter version of the
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
// Returns the number of decimals used to get its user representation.
// For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`).
function decimals() public view virtual override returns (uint8) {
return 18;
}
// See {IERC20-totalSupply}.
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
// See {IERC20-balanceOf}.
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
// See {IERC20-transfer}.
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
// See {IERC20-allowance}.
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
// See {IERC20-approve}.
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
// See {IERC20-transferFrom}.
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
// Atomically increases the allowance granted to `spender` by the caller.
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
// Atomically decreases the allowance granted to `spender` by the caller.
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
// Moves `amount` of tokens from `sender` to `recipient`.
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
// Creates `amount` tokens and assigns them to `account`, increasing the total supply.
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
// Destroys `amount` tokens from `account`, reducing the total supply.
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
// Sets `amount` as the allowance of `spender` over the `owner` s tokens.
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
// Hook that is called before any transfer of tokens. This includes minting and burning.
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
// Hook that is called after any transfer of tokens. This includes minting and burning.
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// ##### SafeMath #####
// CAUTION: This version of SafeMath should only be used with Solidity 0.8 or later, because it relies on the compiler's built in overflow checks.
// NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler now has built in overflow checking.
library SafeMath {
// Returns the addition of two unsigned integers, with an overflow flag.
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
// Returns the substraction of two unsigned integers, with an overflow flag.
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
// Returns the multiplication of two unsigned integers, with an overflow flag.
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
// Returns the division of two unsigned integers, with a division by zero flag.
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
// Returns the remainder of dividing two unsigned integers, with a division by zero flag.
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
// Returns the addition of two unsigned integers, reverting on overflow.
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
// Returns the subtraction of two unsigned integers, reverting on overflow (when the result is negative).
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
// Returns the multiplication of two unsigned integers, reverting on overflow.
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
// Returns the integer division of two unsigned integers, reverting on division by zero. The result is rounded towards zero.
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
// Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), reverting when dividing by zero.
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
// Returns the subtraction of two unsigned integers, reverting with custom message on overflow (when the result is negative).
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
// Returns the integer division of two unsigned integers, reverting with custom message on division by zero. The result is rounded towards zero.
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
// Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), reverting with custom message when dividing by zero.
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// ##### IUniswapV2Factory #####
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view
returns (address pair);
function allPairs(uint256) external view returns (address pair);
function allPairsLength() external view returns (uint256);
function createPair(address tokenA, address tokenB) external
returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
// ##### IUniswapV2Factory #####
interface IUniswapV2Pair {
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
event Transfer(address indexed from, address indexed to, uint256 value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint256);
function balanceOf(address owner) external view returns (uint256);
function allowance(address owner, address spender) external view
returns (uint256);
function approve(address spender, uint256 value) external returns (bool);
function transfer(address to, uint256 value) external returns (bool);
function transferFrom(
address from,
address to,
uint256 value
) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint256);
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
event Mint(address indexed sender, uint256 amount0, uint256 amount1);
event Burn(
address indexed sender,
uint256 amount0,
uint256 amount1,
address indexed to
);
event Swap(
address indexed sender,
uint256 amount0In,
uint256 amount1In,
uint256 amount0Out,
uint256 amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint256);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves() external view
returns (
uint112 reserve0,
uint112 reserve1,
uint32 blockTimestampLast
);
function price0CumulativeLast() external view returns (uint256);
function price1CumulativeLast() external view returns (uint256);
function kLast() external view returns (uint256);
function mint(address to) external returns (uint256 liquidity);
function burn(address to)
external
returns (uint256 amount0, uint256 amount1);
function swap(
uint256 amount0Out,
uint256 amount1Out,
address to,
bytes calldata data
) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
// ##### IUniswapV2Router02 #####
interface IUniswapV2Router02 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint256 amountADesired,
uint256 amountBDesired,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
)
external
returns (
uint256 amountA,
uint256 amountB,
uint256 liquidity
);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
) external payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}
// ##### GENERAL #####
contract Khon2u is ERC20, Ownable {
using SafeMath for uint256;
// Namings
string private projectName = "Khon2u";
string private tokenName = string.concat("$", "CHON2");
// Wallets
address public devWallet;
// address public marketingWallet;
// address public charityWallet;
// Tokens
uint256 public tokensForDev;
// uint256 public tokensForMarketing;
// uint256 public tokensForCharity;
uint256 public tokensForLiquidity;
// Buy fees
uint256 public buyTotalFees;
uint256 public buyDevFee;
// uint256 public buyMarketingFee;
// uint256 public buyCharityFee;
uint256 public buyLiquidityFee;
// Sell fees
uint256 public sellTotalFees;
uint256 public sellDevFee;
// uint256 public sellMarketingFee;
// uint256 public sellCharityFee;
uint256 public sellLiquidityFee;
// Limits
uint256 public maxTransactionAmount;
uint256 public swapTokensAtAmount;
uint256 public maxWalletAmount;
// Restrictions
bool public limitsInEffect = true;
bool public tradingActive = false;
bool public swapEnabled = false;
bool public transferDelayEnabled = true;
// Anti-bot and anti-whale mappings and variables
mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
// UniswapV2Router02
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
address public constant deadAddress = address(0xdead);
// Etc.
bool private swapping;
// Exlcude from fees and max transaction amount
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) public _isExcludedMaxTransactionAmount;
// store addresses that a automatic market maker pairs. Any transfer *to* these addresses
// could be subject to a maximum transfer amount
mapping(address => bool) public automatedMarketMakerPairs;
event UpdateUniswapV2Router(
address indexed newAddress,
address indexed oldAddress
);
// Exclude from fees
event ExcludeFromFees(address indexed account, bool isExcluded);
// Set automated market maker pair
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
// Swap and liquify
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 ethReceived,
uint256 tokensIntoLiquidity
);
// Constructor
constructor() ERC20(projectName, tokenName) {
// Uniswap
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
excludeFromMaxTransaction(address(_uniswapV2Router), true);
uniswapV2Router = _uniswapV2Router;
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
excludeFromMaxTransaction(address(uniswapV2Pair), true);
_setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
// Wallets
devWallet = address(0xF8Df94681f7885351D711776A56AD2B19BC33543);
// marketingWallet = address(0x000000000000000000000000000000000000dEaD);
// charityWallet = address(0x000000000000000000000000000000000000dEaD);
// Total supply
uint256 totalSupply = 1000000000 * 1e18;
// Swap Tokens At Amount
swapTokensAtAmount = (totalSupply * 1) / 1000; // 0.1% of totalSupply
// Max Transaction Amount
maxTransactionAmount = (totalSupply * 10) / 1000; // 1% of totalSupply
// Max Wallet
maxWalletAmount = (totalSupply * 10) / 1000; // 1% of totalSupply
// Buy fees
buyDevFee = 5;
//buyMarketingFee = 0;
// buyCharityFee = 0;
buyLiquidityFee = 5;
buyTotalFees = buyDevFee/* + buyMarketingFee + buyCharityFee*/ + buyLiquidityFee;
// Sell fees
sellDevFee = 5;
//sellMarketingFee = 0;
// sellCharityFee = 0;
sellLiquidityFee = 5;
sellTotalFees = sellDevFee/* + sellMarketingFee + sellCharityFee*/ + sellLiquidityFee;
// Exclude from paying fees or having max transaction amount
excludeFromFees(owner(), true);
excludeFromFees(address(this), true);
excludeFromFees(address(0xdead), true);
excludeFromMaxTransaction(owner(), true);
excludeFromMaxTransaction(address(this), true);
excludeFromMaxTransaction(address(0xdead), true);
// _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again.
_mint(msg.sender, totalSupply);
}
receive() external payable {}
// Update limits to *First Stable
function updateLimitsToFirstStable() external onlyOwner {
// Max Transaction Amount
maxTransactionAmount = (totalSupply() * 15) / 1000; // 1.5% of totalSupply
// Max Wallet
maxWalletAmount = (totalSupply() * 15) / 1000; // 1.5% of totalSupply
// Buy fees
buyDevFee = 5;
buyLiquidityFee = 1;
buyTotalFees = buyDevFee/* + buyMarketingFee + buyCharityFee*/ + buyLiquidityFee;
// Sell fees
sellDevFee = 5;
sellLiquidityFee = 1;
sellTotalFees = sellDevFee/* + sellMarketingFee + sellCharityFee*/ + sellLiquidityFee;
}
// Update limits to *Second Stable
function updateLimitsToSecondStable() external onlyOwner {
// Max Transaction Amount
maxTransactionAmount = (totalSupply() * 25) / 1000; // 2.5% of totalSupply
// Max Wallet
maxWalletAmount = (totalSupply() * 25) / 1000; // 2.5% of totalSupply
// Buy fees
buyDevFee = 4;
buyLiquidityFee = 1;
buyTotalFees = buyDevFee/* + buyMarketingFee + buyCharityFee*/ + buyLiquidityFee;
// Sell fees
sellDevFee = 4;
sellLiquidityFee = 1;
sellTotalFees = sellDevFee/* + sellMarketingFee + sellCharityFee*/ + sellLiquidityFee;
}
// Enable trading (once enabled, can never be turned off)
function enableTrading() external onlyOwner {
tradingActive = true;
swapEnabled = true;
}
// Remove limits
function removeLimits() external onlyOwner returns (bool) {
limitsInEffect = false;
return true;
}
// Disable transfer delay (once enabled, can never be turned off)
function disableTransferDelay() external onlyOwner returns (bool) {
transferDelayEnabled = false;
return true;
}
// Change the minimum amount of tokens to sell from fees
function updateSwapTokensAtAmount(uint256 newAmount)
external
onlyOwner
returns (bool)
{
require(newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply.");
require(newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply.");
swapTokensAtAmount = newAmount;
return true;
}
// Update maximum transaction amount
function updateMaxTxnAmount(uint256 newAmount) external onlyOwner {
require(newAmount >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%");
maxTransactionAmount = newAmount * 1e18;
}
// Update maximum wallet amount
function updateMaxWalletAmount(uint256 newAmount) external onlyOwner {
require(newAmount >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%");
maxWalletAmount = newAmount * 1e18;
}
// Exclude from max transaction
function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner
{
_isExcludedMaxTransactionAmount[updAds] = isEx;
}
// Disable contract sales if absolutely necessary (emergency use only)
function updateSwapEnabled(bool enabled) external onlyOwner {
swapEnabled = enabled;
}
// Update buy fees
function updateBuyFees(
uint256 _devFee,
// uint256 _marketingFee,
// uint256 _charityFee,
uint256 _liquidityFee
) external onlyOwner {
require((_devFee/* + _marketingFee + _charityFee*/ + _liquidityFee) <= 10, "Max buy fee is <= 10%");
buyDevFee = _devFee;
//buyMarketingFee = _marketingFee;
// buyCharityFee = _charityFee;
buyLiquidityFee = _liquidityFee;
buyTotalFees = buyDevFee/* + buyMarketingFee + buyCharityFee*/ + buyLiquidityFee;
}
// Update sell fees
function updateSellFees(
uint256 _devFee,
// uint256 _marketingFee,
// uint256 _charityFee,
uint256 _liquidityFee
) external onlyOwner {
require((_devFee/* + _marketingFee + _charityFee*/ + _liquidityFee) <= 10, "Max sell fee is <= 10%");
sellDevFee = _devFee;
// sellMarketingFee = _marketingFee;
// sellCharityFee = _charityFee;
sellLiquidityFee = _liquidityFee;
sellTotalFees = sellDevFee/* + sellMarketingFee + sellCharityFee*/ + sellLiquidityFee;
}
// Exclude from fees
function excludeFromFees(address account, bool excluded) public onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
// Market Maker Pair
function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner
{
require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
_setAutomatedMarketMakerPair(pair, value);
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
automatedMarketMakerPairs[pair] = value;
emit SetAutomatedMarketMakerPair(pair, value);
}
// READ: Verify if account is excluded from fees
function isExcludedFromFees(address account) public view returns (bool) {
return _isExcludedFromFees[account];
}
// Transfer
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
if (amount == 0) {
super._transfer(from, to, 0);
return;
}
if (limitsInEffect) {
if (
from != owner() &&
to != owner() &&
to != address(0) &&
to != address(0xdead) &&
!swapping
) {
if (!tradingActive) {
require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
}
// at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
if (transferDelayEnabled) {
if (
to != owner() &&
to != address(uniswapV2Router) &&
to != address(uniswapV2Pair)
) {
require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed.");
_holderLastTransferTimestamp[tx.origin] = block.number;
}
}
// when buy
if (
automatedMarketMakerPairs[from] &&
!_isExcludedMaxTransactionAmount[to]
) {
require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
require(amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded");
}
// when sell
else if (
automatedMarketMakerPairs[to] &&
!_isExcludedMaxTransactionAmount[from]
) {
require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
} else if (!_isExcludedMaxTransactionAmount[to]) {
require(amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded");
}
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if (
canSwap &&
swapEnabled &&
!swapping &&
!automatedMarketMakerPairs[from] &&
!_isExcludedFromFees[from] &&
!_isExcludedFromFees[to]
) {
swapping = true;
swapBack();
swapping = false;
}
bool takeFee = !swapping;
// if any account belongs to _isExcludedFromFee account then remove the fee
if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
uint256 fees = 0;
// only take fees on buys/sells, do not take on wallet transfers
if (takeFee) {
// on sell
if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
fees = amount.mul(sellTotalFees).div(100);
tokensForDev += (fees * sellDevFee) / sellTotalFees;
//tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
// tokensForCharity += (fees * sellCharityFee) / sellTotalFees;
tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
}
// on buy
else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
fees = amount.mul(buyTotalFees).div(100);
tokensForDev += (fees * buyDevFee) / buyTotalFees;
//tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
// tokensForCharity += (fees * buyCharityFee) / buyTotalFees;
tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
}
if (fees > 0) {
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
// Swap tokens for Eth.
function swapTokensForEth(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
// Add Liquidity
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
// approve token transfer to cover all possible scenarios
_approve(address(this), address(uniswapV2Router), tokenAmount);
// add the liquidity
uniswapV2Router.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0, // slippage is unavoidable
0, // slippage is unavoidable
devWallet,
block.timestamp
);
}
// Swap back
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForDev/* + tokensForMarketing + tokensForCharity*/ + tokensForLiquidity;
bool success;
if (contractBalance == 0 || totalTokensToSwap == 0) {
return;
}
if (contractBalance > swapTokensAtAmount * 20) {
contractBalance = swapTokensAtAmount * 20;
}
// Halve the amount of liquidity tokens
uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
uint256 initialETHBalance = address(this).balance;
swapTokensForEth(amountToSwapForETH);
uint256 ethBalance = address(this).balance.sub(initialETHBalance);
uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
//uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
// uint256 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap);
uint256 ethForLiquidity = ethBalance - ethForDev/* - ethForMarketing - ethForCharity*/;
tokensForLiquidity = 0;
// tokensForCharity = 0;
// tokensForMarketing = 0;
tokensForDev = 0;
(success, ) = address(devWallet).call{value: ethForDev}("");
// (success, ) = address(marketingWallet).call{value: ethForMarketing}("");
if (liquidityTokens > 0 && ethForLiquidity > 0) {
addLiquidity(liquidityTokens, ethForLiquidity);
emit SwapAndLiquify(
amountToSwapForETH,
ethForLiquidity,
tokensForLiquidity
);
}
// (success, ) = address(charityWallet).call{value: address(this).balance}("");
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateLimitsToFirstStable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateLimitsToSecondStable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c06040526040518060400160405280600681526020017f4b686f6e32750000000000000000000000000000000000000000000000000000815250600690805190602001906200005192919062000bb0565b50604051602001620000639062000cac565b604051602081830303815290604052600790805190602001906200008992919062000bb0565b506001601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff0219169083151502179055506001601460036101000a81548160ff0219169083151502179055503480156200010357600080fd5b5060068054620001139062000d07565b80601f0160208091040260200160405190810160405280929190818152602001828054620001419062000d07565b8015620001925780601f10620001665761010080835404028352916020019162000192565b820191906000526020600020905b8154815290600101906020018083116200017457829003601f168201915b505050505060078054620001a69062000d07565b80601f0160208091040260200160405190810160405280929190818152602001828054620001d49062000d07565b8015620002255780601f10620001f95761010080835404028352916020019162000225565b820191906000526020600020905b8154815290600101906020018083116200020757829003601f168201915b505050505081600390805190602001906200024292919062000bb0565b5080600490805190602001906200025b92919062000bb0565b5050506200027e620002726200067060201b60201c565b6200067860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620002aa8160016200073e60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200032a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000350919062000da7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003de919062000da7565b6040518363ffffffff1660e01b8152600401620003fd92919062000dea565b6020604051808303816000875af11580156200041d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000443919062000da7565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200048b60a05160016200073e60201b60201c565b620004a060a05160016200082860201b60201c565b73f8df94681f7885351d711776a56ad2b19bc33543600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006b033b2e3c9fd0803ce800000090506103e860018262000518919062000e50565b62000524919062000ee0565b6012819055506103e8600a826200053c919062000e50565b62000548919062000ee0565b6011819055506103e8600a8262000560919062000e50565b6200056c919062000ee0565b6013819055506005600c819055506005600d81905550600d54600c5462000594919062000f18565b600b819055506005600f819055506005601081905550601054600f54620005bc919062000f18565b600e81905550620005e4620005d6620008c960201b60201c565b6001620008f360201b60201c565b620005f7306001620008f360201b60201c565b6200060c61dead6001620008f360201b60201c565b6200062e62000620620008c960201b60201c565b60016200073e60201b60201c565b620006413060016200073e60201b60201c565b6200065661dead60016200073e60201b60201c565b62000668338262000a2d60201b60201c565b5050620010d2565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200074e6200067060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000774620008c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c49062000fd6565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620009036200067060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000929620008c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000982576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009799062000fd6565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a21919062001015565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000aa0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a979062001082565b60405180910390fd5b62000ab46000838362000ba660201b60201c565b806002600082825462000ac8919062000f18565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000b1f919062000f18565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b869190620010b5565b60405180910390a362000ba26000838362000bab60201b60201c565b5050565b505050565b505050565b82805462000bbe9062000d07565b90600052602060002090601f01602090048101928262000be2576000855562000c2e565b82601f1062000bfd57805160ff191683800117855562000c2e565b8280016001018555821562000c2e579182015b8281111562000c2d57825182559160200191906001019062000c10565b5b50905062000c3d919062000c41565b5090565b5b8082111562000c5c57600081600090555060010162000c42565b5090565b7f2400000000000000000000000000000000000000000000000000000000000000815250565b7f43484f4e32000000000000000000000000000000000000000000000000000000815250565b600062000cb98262000c60565b60018201915062000cca8262000c86565b600582019150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d2057607f821691505b6020821081141562000d375762000d3662000cd8565b5b50919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d6f8262000d42565b9050919050565b62000d818162000d62565b811462000d8d57600080fd5b50565b60008151905062000da18162000d76565b92915050565b60006020828403121562000dc05762000dbf62000d3d565b5b600062000dd08482850162000d90565b91505092915050565b62000de48162000d62565b82525050565b600060408201905062000e01600083018562000dd9565b62000e10602083018462000dd9565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e5d8262000e17565b915062000e6a8362000e17565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ea65762000ea562000e21565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000eed8262000e17565b915062000efa8362000e17565b92508262000f0d5762000f0c62000eb1565b5b828204905092915050565b600062000f258262000e17565b915062000f328362000e17565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f6a5762000f6962000e21565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000fbe60208362000f75565b915062000fcb8262000f86565b602082019050919050565b6000602082019050818103600083015262000ff18162000faf565b9050919050565b60008115159050919050565b6200100f8162000ff8565b82525050565b60006020820190506200102c600083018462001004565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200106a601f8362000f75565b9150620010778262001032565b602082019050919050565b600060208201905081810360008301526200109d816200105b565b9050919050565b620010af8162000e17565b82525050565b6000602082019050620010cc6000830184620010a4565b92915050565b60805160a051614d9c620011306000396000818161128e01528181611919015261266c015260008181610d6801528181612614015281816135c8015281816136a9015281816136d00152818161376c01526137930152614d9c6000f3fe6080604052600436106102cd5760003560e01c80638da5cb5b11610175578063bbc0c742116100dc578063d85ba06311610095578063e884f2601161006f578063e884f26014610af9578063f11a24d314610b24578063f2fde38b14610b4f578063f637434214610b78576102d4565b8063d85ba06314610a66578063dd62ed3e14610a91578063e2f4560514610ace576102d4565b8063bbc0c74214610956578063c024666814610981578063c18bc195146109aa578063c876d0b9146109d3578063c8c8ebe4146109fe578063d257b34f14610a29576102d4565b80639fccce321161012e5780639fccce321461081e578063a0d82dc514610849578063a457c2d714610874578063a9059cbb146108b1578063aa4bde28146108ee578063b62496f514610919576102d4565b80638da5cb5b146107205780638ea5220f1461074b578063924de9b71461077657806395d89b411461079f5780639a7a23d6146107ca5780639c3b4fdc146107f3576102d4565b806339509351116102345780636a486a8e116101ed578063715018a6116101c7578063715018a61461069e578063751039fc146106b55780637571336a146106e05780638a8c523c14610709576102d4565b80636a486a8e1461060b5780636ddd17131461063657806370a0823114610661576102d4565b806339509351146104fb57806344be88eb1461053857806349bd5a5e1461054f5780634a62bb651461057a5780634fbee193146105a557806366ca9b83146105e2576102d4565b80631a8145bb116102865780631a8145bb146103fd578063203e727e1461042857806323b872dd146104515780632580a0891461048e57806327c8f835146104a5578063313ce567146104d0576102d4565b806302dbd8f8146102d957806306fdde0314610302578063095ea7b31461032d57806310d5de531461036a5780631694505e146103a757806318160ddd146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb919061389d565b610ba3565b005b34801561030e57600080fd5b50610317610c96565b6040516103249190613976565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906139f6565b610d28565b6040516103619190613a51565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190613a6c565b610d46565b60405161039e9190613a51565b60405180910390f35b3480156103b357600080fd5b506103bc610d66565b6040516103c99190613af8565b60405180910390f35b3480156103de57600080fd5b506103e7610d8a565b6040516103f49190613b22565b60405180910390f35b34801561040957600080fd5b50610412610d94565b60405161041f9190613b22565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190613b3d565b610d9a565b005b34801561045d57600080fd5b5061047860048036038101906104739190613b6a565b610ea9565b6040516104859190613a51565b60405180910390f35b34801561049a57600080fd5b506104a3610fa1565b005b3480156104b157600080fd5b506104ba6110b9565b6040516104c79190613bcc565b60405180910390f35b3480156104dc57600080fd5b506104e56110bf565b6040516104f29190613c03565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d91906139f6565b6110c8565b60405161052f9190613a51565b60405180910390f35b34801561054457600080fd5b5061054d611174565b005b34801561055b57600080fd5b5061056461128c565b6040516105719190613bcc565b60405180910390f35b34801561058657600080fd5b5061058f6112b0565b60405161059c9190613a51565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190613a6c565b6112c3565b6040516105d99190613a51565b60405180910390f35b3480156105ee57600080fd5b506106096004803603810190610604919061389d565b611319565b005b34801561061757600080fd5b5061062061140c565b60405161062d9190613b22565b60405180910390f35b34801561064257600080fd5b5061064b611412565b6040516106589190613a51565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190613a6c565b611425565b6040516106959190613b22565b60405180910390f35b3480156106aa57600080fd5b506106b361146d565b005b3480156106c157600080fd5b506106ca6114f5565b6040516106d79190613a51565b60405180910390f35b3480156106ec57600080fd5b5061070760048036038101906107029190613c4a565b611595565b005b34801561071557600080fd5b5061071e61166c565b005b34801561072c57600080fd5b50610735611720565b6040516107429190613bcc565b60405180910390f35b34801561075757600080fd5b5061076061174a565b60405161076d9190613bcc565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190613c8a565b611770565b005b3480156107ab57600080fd5b506107b4611809565b6040516107c19190613976565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613c4a565b61189b565b005b3480156107ff57600080fd5b506108086119b4565b6040516108159190613b22565b60405180910390f35b34801561082a57600080fd5b506108336119ba565b6040516108409190613b22565b60405180910390f35b34801561085557600080fd5b5061085e6119c0565b60405161086b9190613b22565b60405180910390f35b34801561088057600080fd5b5061089b600480360381019061089691906139f6565b6119c6565b6040516108a89190613a51565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d391906139f6565b611ab1565b6040516108e59190613a51565b60405180910390f35b3480156108fa57600080fd5b50610903611acf565b6040516109109190613b22565b60405180910390f35b34801561092557600080fd5b50610940600480360381019061093b9190613a6c565b611ad5565b60405161094d9190613a51565b60405180910390f35b34801561096257600080fd5b5061096b611af5565b6040516109789190613a51565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190613c4a565b611b08565b005b3480156109b657600080fd5b506109d160048036038101906109cc9190613b3d565b611c2d565b005b3480156109df57600080fd5b506109e8611d3c565b6040516109f59190613a51565b60405180910390f35b348015610a0a57600080fd5b50610a13611d4f565b604051610a209190613b22565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b9190613b3d565b611d55565b604051610a5d9190613a51565b60405180910390f35b348015610a7257600080fd5b50610a7b611eaa565b604051610a889190613b22565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613cb7565b611eb0565b604051610ac59190613b22565b60405180910390f35b348015610ada57600080fd5b50610ae3611f37565b604051610af09190613b22565b60405180910390f35b348015610b0557600080fd5b50610b0e611f3d565b604051610b1b9190613a51565b60405180910390f35b348015610b3057600080fd5b50610b39611fdd565b604051610b469190613b22565b60405180910390f35b348015610b5b57600080fd5b50610b766004803603810190610b719190613a6c565b611fe3565b005b348015610b8457600080fd5b50610b8d6120db565b604051610b9a9190613b22565b60405180910390f35b610bab6120e1565b73ffffffffffffffffffffffffffffffffffffffff16610bc9611720565b73ffffffffffffffffffffffffffffffffffffffff1614610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1690613d43565b60405180910390fd5b600a8183610c2d9190613d92565b1115610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613e34565b60405180910390fd5b81600f8190555080601081905550601054600f54610c8c9190613d92565b600e819055505050565b606060038054610ca590613e83565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd190613e83565b8015610d1e5780601f10610cf357610100808354040283529160200191610d1e565b820191906000526020600020905b815481529060010190602001808311610d0157829003601f168201915b5050505050905090565b6000610d3c610d356120e1565b84846120e9565b6001905092915050565b60186020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600a5481565b610da26120e1565b73ffffffffffffffffffffffffffffffffffffffff16610dc0611720565b73ffffffffffffffffffffffffffffffffffffffff1614610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90613d43565b60405180910390fd5b670de0b6b3a76400006103e86001610e2c610d8a565b610e369190613eb5565b610e409190613f3e565b610e4a9190613f3e565b811015610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390613fe1565b60405180910390fd5b670de0b6b3a764000081610ea09190613eb5565b60118190555050565b6000610eb68484846122b4565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f016120e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890614073565b60405180910390fd5b610f9585610f8d6120e1565b8584036120e9565b60019150509392505050565b610fa96120e1565b73ffffffffffffffffffffffffffffffffffffffff16610fc7611720565b73ffffffffffffffffffffffffffffffffffffffff161461101d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101490613d43565b60405180910390fd5b6103e8601961102a610d8a565b6110349190613eb5565b61103e9190613f3e565b6011819055506103e86019611051610d8a565b61105b9190613eb5565b6110659190613f3e565b6013819055506004600c819055506001600d81905550600d54600c5461108b9190613d92565b600b819055506004600f819055506001601081905550601054600f546110b19190613d92565b600e81905550565b61dead81565b60006012905090565b600061116a6110d56120e1565b8484600160006110e36120e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111659190613d92565b6120e9565b6001905092915050565b61117c6120e1565b73ffffffffffffffffffffffffffffffffffffffff1661119a611720565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790613d43565b60405180910390fd5b6103e8600f6111fd610d8a565b6112079190613eb5565b6112119190613f3e565b6011819055506103e8600f611224610d8a565b61122e9190613eb5565b6112389190613f3e565b6013819055506005600c819055506001600d81905550600d54600c5461125e9190613d92565b600b819055506005600f819055506001601081905550601054600f546112849190613d92565b600e81905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b601460009054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6113216120e1565b73ffffffffffffffffffffffffffffffffffffffff1661133f611720565b73ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90613d43565b60405180910390fd5b600a81836113a39190613d92565b11156113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906140df565b60405180910390fd5b81600c8190555080600d81905550600d54600c546114029190613d92565b600b819055505050565b600e5481565b601460029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114756120e1565b73ffffffffffffffffffffffffffffffffffffffff16611493611720565b73ffffffffffffffffffffffffffffffffffffffff16146114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090613d43565b60405180910390fd5b6114f36000612ee8565b565b60006114ff6120e1565b73ffffffffffffffffffffffffffffffffffffffff1661151d611720565b73ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a90613d43565b60405180910390fd5b6000601460006101000a81548160ff0219169083151502179055506001905090565b61159d6120e1565b73ffffffffffffffffffffffffffffffffffffffff166115bb611720565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890613d43565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6116746120e1565b73ffffffffffffffffffffffffffffffffffffffff16611692611720565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90613d43565b60405180910390fd5b6001601460016101000a81548160ff0219169083151502179055506001601460026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117786120e1565b73ffffffffffffffffffffffffffffffffffffffff16611796611720565b73ffffffffffffffffffffffffffffffffffffffff16146117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390613d43565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b60606004805461181890613e83565b80601f016020809104026020016040519081016040528092919081815260200182805461184490613e83565b80156118915780601f1061186657610100808354040283529160200191611891565b820191906000526020600020905b81548152906001019060200180831161187457829003601f168201915b5050505050905090565b6118a36120e1565b73ffffffffffffffffffffffffffffffffffffffff166118c1611720565b73ffffffffffffffffffffffffffffffffffffffff1614611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90613d43565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90614171565b60405180910390fd5b6119b08282612fae565b5050565b600c5481565b60095481565b600f5481565b600080600160006119d56120e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990614203565b60405180910390fd5b611aa6611a9d6120e1565b858584036120e9565b600191505092915050565b6000611ac5611abe6120e1565b84846122b4565b6001905092915050565b60135481565b60196020528060005260406000206000915054906101000a900460ff1681565b601460019054906101000a900460ff1681565b611b106120e1565b73ffffffffffffffffffffffffffffffffffffffff16611b2e611720565b73ffffffffffffffffffffffffffffffffffffffff1614611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b90613d43565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c219190613a51565b60405180910390a25050565b611c356120e1565b73ffffffffffffffffffffffffffffffffffffffff16611c53611720565b73ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090613d43565b60405180910390fd5b670de0b6b3a76400006103e86005611cbf610d8a565b611cc99190613eb5565b611cd39190613f3e565b611cdd9190613f3e565b811015611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690614295565b60405180910390fd5b670de0b6b3a764000081611d339190613eb5565b60138190555050565b601460039054906101000a900460ff1681565b60115481565b6000611d5f6120e1565b73ffffffffffffffffffffffffffffffffffffffff16611d7d611720565b73ffffffffffffffffffffffffffffffffffffffff1614611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca90613d43565b60405180910390fd5b620186a06001611de1610d8a565b611deb9190613eb5565b611df59190613f3e565b821015611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e90614327565b60405180910390fd5b6103e86005611e44610d8a565b611e4e9190613eb5565b611e589190613f3e565b821115611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906143b9565b60405180910390fd5b8160128190555060019050919050565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60125481565b6000611f476120e1565b73ffffffffffffffffffffffffffffffffffffffff16611f65611720565b73ffffffffffffffffffffffffffffffffffffffff1614611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb290613d43565b60405180910390fd5b6000601460036101000a81548160ff0219169083151502179055506001905090565b600d5481565b611feb6120e1565b73ffffffffffffffffffffffffffffffffffffffff16612009611720565b73ffffffffffffffffffffffffffffffffffffffff161461205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690613d43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c69061444b565b60405180910390fd5b6120d881612ee8565b50565b60105481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612159576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612150906144dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c09061456f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122a79190613b22565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b90614601565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b90614693565b60405180910390fd5b60008114156123ae576123a98383600061304f565b612ee3565b601460009054906101000a900460ff1615612a71576123cb611720565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124395750612409611720565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124725750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124ac575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124c55750601660009054906101000a900460ff16155b15612a7057601460019054906101000a900460ff166125bf57601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061257f5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b5906146ff565b60405180910390fd5b5b601460039054906101000a900460ff1615612787576125dc611720565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561266357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126bb57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127865743601560003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612741576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612738906147b7565b60405180910390fd5b43601560003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561282a5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128d157601154811115612874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286b90614849565b60405180910390fd5b60135461288083611425565b8261288b9190613d92565b11156128cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c3906148b5565b60405180910390fd5b612a6f565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129745750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129c3576011548111156129be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b590614947565b60405180910390fd5b612a6e565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a6d57601354612a2083611425565b82612a2b9190613d92565b1115612a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a63906148b5565b60405180910390fd5b5b5b5b5b5b6000612a7c30611425565b905060006012548210159050808015612aa15750601460029054906101000a900460ff165b8015612aba5750601660009054906101000a900460ff16155b8015612b105750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b665750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bbc5750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c00576001601660006101000a81548160ff021916908315150217905550612be46132d0565b6000601660006101000a81548160ff0219169083151502179055505b6000601660009054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cb65750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cc057600090505b60008115612ed357601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d2357506000600e54115b15612dbd57612d506064612d42600e54886134dd90919063ffffffff16565b6134f390919063ffffffff16565b9050600e54600f5482612d639190613eb5565b612d6d9190613f3e565b60096000828254612d7e9190613d92565b92505081905550600e5460105482612d969190613eb5565b612da09190613f3e565b600a6000828254612db19190613d92565b92505081905550612eaf565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e1857506000600b54115b15612eae57612e456064612e37600b54886134dd90919063ffffffff16565b6134f390919063ffffffff16565b9050600b54600c5482612e589190613eb5565b612e629190613f3e565b60096000828254612e739190613d92565b92505081905550600b54600d5482612e8b9190613eb5565b612e959190613f3e565b600a6000828254612ea69190613d92565b925050819055505b5b6000811115612ec457612ec387308361304f565b5b8085612ed09190614967565b94505b612ede87878761304f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b690614601565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561312f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312690614693565b60405180910390fd5b61313a838383613509565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156131c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b790614a0d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132539190613d92565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516132b79190613b22565b60405180910390a36132ca84848461350e565b50505050565b60006132db30611425565b90506000600a546009546132ef9190613d92565b90506000808314806133015750600082145b1561330e575050506134db565b601460125461331d9190613eb5565b8311156133365760146012546133339190613eb5565b92505b6000600283600a54866133499190613eb5565b6133539190613f3e565b61335d9190613f3e565b90506000613374828661351390919063ffffffff16565b9050600047905061338482613529565b6000613399824761351390919063ffffffff16565b905060006133c4876133b6600954856134dd90919063ffffffff16565b6134f390919063ffffffff16565b9050600081836133d49190614967565b90506000600a819055506000600981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161342c90614a5e565b60006040518083038185875af1925050503d8060008114613469576040519150601f19603f3d011682016040523d82523d6000602084013e61346e565b606091505b5050809750506000861180156134845750600081115b156134d1576134938682613766565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582600a546040516134c893929190614a73565b60405180910390a15b5050505050505050505b565b600081836134eb9190613eb5565b905092915050565b600081836135019190613f3e565b905092915050565b505050565b505050565b600081836135219190614967565b905092915050565b6000600267ffffffffffffffff81111561354657613545614aaa565b5b6040519080825280602002602001820160405280156135745781602001602082028036833780820191505090505b509050308160008151811061358c5761358b614ad9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613631573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136559190614b1d565b8160018151811061366957613668614ad9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506136ce307f0000000000000000000000000000000000000000000000000000000000000000846120e9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613730959493929190614c43565b600060405180830381600087803b15801561374a57600080fd5b505af115801561375e573d6000803e3d6000fd5b505050505050565b613791307f0000000000000000000000000000000000000000000000000000000000000000846120e9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161381896959493929190614c9d565b60606040518083038185885af1158015613836573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061385b9190614d13565b5050505050565b600080fd5b6000819050919050565b61387a81613867565b811461388557600080fd5b50565b60008135905061389781613871565b92915050565b600080604083850312156138b4576138b3613862565b5b60006138c285828601613888565b92505060206138d385828601613888565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139175780820151818401526020810190506138fc565b83811115613926576000848401525b50505050565b6000601f19601f8301169050919050565b6000613948826138dd565b61395281856138e8565b93506139628185602086016138f9565b61396b8161392c565b840191505092915050565b60006020820190508181036000830152613990818461393d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139c382613998565b9050919050565b6139d3816139b8565b81146139de57600080fd5b50565b6000813590506139f0816139ca565b92915050565b60008060408385031215613a0d57613a0c613862565b5b6000613a1b858286016139e1565b9250506020613a2c85828601613888565b9150509250929050565b60008115159050919050565b613a4b81613a36565b82525050565b6000602082019050613a666000830184613a42565b92915050565b600060208284031215613a8257613a81613862565b5b6000613a90848285016139e1565b91505092915050565b6000819050919050565b6000613abe613ab9613ab484613998565b613a99565b613998565b9050919050565b6000613ad082613aa3565b9050919050565b6000613ae282613ac5565b9050919050565b613af281613ad7565b82525050565b6000602082019050613b0d6000830184613ae9565b92915050565b613b1c81613867565b82525050565b6000602082019050613b376000830184613b13565b92915050565b600060208284031215613b5357613b52613862565b5b6000613b6184828501613888565b91505092915050565b600080600060608486031215613b8357613b82613862565b5b6000613b91868287016139e1565b9350506020613ba2868287016139e1565b9250506040613bb386828701613888565b9150509250925092565b613bc6816139b8565b82525050565b6000602082019050613be16000830184613bbd565b92915050565b600060ff82169050919050565b613bfd81613be7565b82525050565b6000602082019050613c186000830184613bf4565b92915050565b613c2781613a36565b8114613c3257600080fd5b50565b600081359050613c4481613c1e565b92915050565b60008060408385031215613c6157613c60613862565b5b6000613c6f858286016139e1565b9250506020613c8085828601613c35565b9150509250929050565b600060208284031215613ca057613c9f613862565b5b6000613cae84828501613c35565b91505092915050565b60008060408385031215613cce57613ccd613862565b5b6000613cdc858286016139e1565b9250506020613ced858286016139e1565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d2d6020836138e8565b9150613d3882613cf7565b602082019050919050565b60006020820190508181036000830152613d5c81613d20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d9d82613867565b9150613da883613867565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ddd57613ddc613d63565b5b828201905092915050565b7f4d61782073656c6c20666565206973203c3d2031302500000000000000000000600082015250565b6000613e1e6016836138e8565b9150613e2982613de8565b602082019050919050565b60006020820190508181036000830152613e4d81613e11565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e9b57607f821691505b60208210811415613eaf57613eae613e54565b5b50919050565b6000613ec082613867565b9150613ecb83613867565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f0457613f03613d63565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f4982613867565b9150613f5483613867565b925082613f6457613f63613f0f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613fcb602f836138e8565b9150613fd682613f6f565b604082019050919050565b60006020820190508181036000830152613ffa81613fbe565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061405d6028836138e8565b915061406882614001565b604082019050919050565b6000602082019050818103600083015261408c81614050565b9050919050565b7f4d61782062757920666565206973203c3d203130250000000000000000000000600082015250565b60006140c96015836138e8565b91506140d482614093565b602082019050919050565b600060208201905081810360008301526140f8816140bc565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061415b6039836138e8565b9150614166826140ff565b604082019050919050565b6000602082019050818103600083015261418a8161414e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141ed6025836138e8565b91506141f882614191565b604082019050919050565b6000602082019050818103600083015261421c816141e0565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061427f6024836138e8565b915061428a82614223565b604082019050919050565b600060208201905081810360008301526142ae81614272565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143116035836138e8565b915061431c826142b5565b604082019050919050565b6000602082019050818103600083015261434081614304565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006143a36034836138e8565b91506143ae82614347565b604082019050919050565b600060208201905081810360008301526143d281614396565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144356026836138e8565b9150614440826143d9565b604082019050919050565b6000602082019050818103600083015261446481614428565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144c76024836138e8565b91506144d28261446b565b604082019050919050565b600060208201905081810360008301526144f6816144ba565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006145596022836138e8565b9150614564826144fd565b604082019050919050565b600060208201905081810360008301526145888161454c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145eb6025836138e8565b91506145f68261458f565b604082019050919050565b6000602082019050818103600083015261461a816145de565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061467d6023836138e8565b915061468882614621565b604082019050919050565b600060208201905081810360008301526146ac81614670565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146e96016836138e8565b91506146f4826146b3565b602082019050919050565b60006020820190508181036000830152614718816146dc565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006147a16049836138e8565b91506147ac8261471f565b606082019050919050565b600060208201905081810360008301526147d081614794565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006148336035836138e8565b915061483e826147d7565b604082019050919050565b6000602082019050818103600083015261486281614826565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061489f6013836138e8565b91506148aa82614869565b602082019050919050565b600060208201905081810360008301526148ce81614892565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006149316036836138e8565b915061493c826148d5565b604082019050919050565b6000602082019050818103600083015261496081614924565b9050919050565b600061497282613867565b915061497d83613867565b9250828210156149905761498f613d63565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006149f76026836138e8565b9150614a028261499b565b604082019050919050565b60006020820190508181036000830152614a26816149ea565b9050919050565b600081905092915050565b50565b6000614a48600083614a2d565b9150614a5382614a38565b600082019050919050565b6000614a6982614a3b565b9150819050919050565b6000606082019050614a886000830186613b13565b614a956020830185613b13565b614aa26040830184613b13565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614b17816139ca565b92915050565b600060208284031215614b3357614b32613862565b5b6000614b4184828501614b08565b91505092915050565b6000819050919050565b6000614b6f614b6a614b6584614b4a565b613a99565b613867565b9050919050565b614b7f81614b54565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614bba816139b8565b82525050565b6000614bcc8383614bb1565b60208301905092915050565b6000602082019050919050565b6000614bf082614b85565b614bfa8185614b90565b9350614c0583614ba1565b8060005b83811015614c36578151614c1d8882614bc0565b9750614c2883614bd8565b925050600181019050614c09565b5085935050505092915050565b600060a082019050614c586000830188613b13565b614c656020830187614b76565b8181036040830152614c778186614be5565b9050614c866060830185613bbd565b614c936080830184613b13565b9695505050505050565b600060c082019050614cb26000830189613bbd565b614cbf6020830188613b13565b614ccc6040830187614b76565b614cd96060830186614b76565b614ce66080830185613bbd565b614cf360a0830184613b13565b979650505050505050565b600081519050614d0d81613871565b92915050565b600080600060608486031215614d2c57614d2b613862565b5b6000614d3a86828701614cfe565b9350506020614d4b86828701614cfe565b9250506040614d5c86828701614cfe565b915050925092509256fea26469706673582212205be2edb3f71273d68b6fc83eca27ae3a8915268c218ddcbf1ba63aa5d984ab4e64736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c80638da5cb5b11610175578063bbc0c742116100dc578063d85ba06311610095578063e884f2601161006f578063e884f26014610af9578063f11a24d314610b24578063f2fde38b14610b4f578063f637434214610b78576102d4565b8063d85ba06314610a66578063dd62ed3e14610a91578063e2f4560514610ace576102d4565b8063bbc0c74214610956578063c024666814610981578063c18bc195146109aa578063c876d0b9146109d3578063c8c8ebe4146109fe578063d257b34f14610a29576102d4565b80639fccce321161012e5780639fccce321461081e578063a0d82dc514610849578063a457c2d714610874578063a9059cbb146108b1578063aa4bde28146108ee578063b62496f514610919576102d4565b80638da5cb5b146107205780638ea5220f1461074b578063924de9b71461077657806395d89b411461079f5780639a7a23d6146107ca5780639c3b4fdc146107f3576102d4565b806339509351116102345780636a486a8e116101ed578063715018a6116101c7578063715018a61461069e578063751039fc146106b55780637571336a146106e05780638a8c523c14610709576102d4565b80636a486a8e1461060b5780636ddd17131461063657806370a0823114610661576102d4565b806339509351146104fb57806344be88eb1461053857806349bd5a5e1461054f5780634a62bb651461057a5780634fbee193146105a557806366ca9b83146105e2576102d4565b80631a8145bb116102865780631a8145bb146103fd578063203e727e1461042857806323b872dd146104515780632580a0891461048e57806327c8f835146104a5578063313ce567146104d0576102d4565b806302dbd8f8146102d957806306fdde0314610302578063095ea7b31461032d57806310d5de531461036a5780631694505e146103a757806318160ddd146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb919061389d565b610ba3565b005b34801561030e57600080fd5b50610317610c96565b6040516103249190613976565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906139f6565b610d28565b6040516103619190613a51565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190613a6c565b610d46565b60405161039e9190613a51565b60405180910390f35b3480156103b357600080fd5b506103bc610d66565b6040516103c99190613af8565b60405180910390f35b3480156103de57600080fd5b506103e7610d8a565b6040516103f49190613b22565b60405180910390f35b34801561040957600080fd5b50610412610d94565b60405161041f9190613b22565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190613b3d565b610d9a565b005b34801561045d57600080fd5b5061047860048036038101906104739190613b6a565b610ea9565b6040516104859190613a51565b60405180910390f35b34801561049a57600080fd5b506104a3610fa1565b005b3480156104b157600080fd5b506104ba6110b9565b6040516104c79190613bcc565b60405180910390f35b3480156104dc57600080fd5b506104e56110bf565b6040516104f29190613c03565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d91906139f6565b6110c8565b60405161052f9190613a51565b60405180910390f35b34801561054457600080fd5b5061054d611174565b005b34801561055b57600080fd5b5061056461128c565b6040516105719190613bcc565b60405180910390f35b34801561058657600080fd5b5061058f6112b0565b60405161059c9190613a51565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190613a6c565b6112c3565b6040516105d99190613a51565b60405180910390f35b3480156105ee57600080fd5b506106096004803603810190610604919061389d565b611319565b005b34801561061757600080fd5b5061062061140c565b60405161062d9190613b22565b60405180910390f35b34801561064257600080fd5b5061064b611412565b6040516106589190613a51565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190613a6c565b611425565b6040516106959190613b22565b60405180910390f35b3480156106aa57600080fd5b506106b361146d565b005b3480156106c157600080fd5b506106ca6114f5565b6040516106d79190613a51565b60405180910390f35b3480156106ec57600080fd5b5061070760048036038101906107029190613c4a565b611595565b005b34801561071557600080fd5b5061071e61166c565b005b34801561072c57600080fd5b50610735611720565b6040516107429190613bcc565b60405180910390f35b34801561075757600080fd5b5061076061174a565b60405161076d9190613bcc565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190613c8a565b611770565b005b3480156107ab57600080fd5b506107b4611809565b6040516107c19190613976565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613c4a565b61189b565b005b3480156107ff57600080fd5b506108086119b4565b6040516108159190613b22565b60405180910390f35b34801561082a57600080fd5b506108336119ba565b6040516108409190613b22565b60405180910390f35b34801561085557600080fd5b5061085e6119c0565b60405161086b9190613b22565b60405180910390f35b34801561088057600080fd5b5061089b600480360381019061089691906139f6565b6119c6565b6040516108a89190613a51565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d391906139f6565b611ab1565b6040516108e59190613a51565b60405180910390f35b3480156108fa57600080fd5b50610903611acf565b6040516109109190613b22565b60405180910390f35b34801561092557600080fd5b50610940600480360381019061093b9190613a6c565b611ad5565b60405161094d9190613a51565b60405180910390f35b34801561096257600080fd5b5061096b611af5565b6040516109789190613a51565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190613c4a565b611b08565b005b3480156109b657600080fd5b506109d160048036038101906109cc9190613b3d565b611c2d565b005b3480156109df57600080fd5b506109e8611d3c565b6040516109f59190613a51565b60405180910390f35b348015610a0a57600080fd5b50610a13611d4f565b604051610a209190613b22565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b9190613b3d565b611d55565b604051610a5d9190613a51565b60405180910390f35b348015610a7257600080fd5b50610a7b611eaa565b604051610a889190613b22565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613cb7565b611eb0565b604051610ac59190613b22565b60405180910390f35b348015610ada57600080fd5b50610ae3611f37565b604051610af09190613b22565b60405180910390f35b348015610b0557600080fd5b50610b0e611f3d565b604051610b1b9190613a51565b60405180910390f35b348015610b3057600080fd5b50610b39611fdd565b604051610b469190613b22565b60405180910390f35b348015610b5b57600080fd5b50610b766004803603810190610b719190613a6c565b611fe3565b005b348015610b8457600080fd5b50610b8d6120db565b604051610b9a9190613b22565b60405180910390f35b610bab6120e1565b73ffffffffffffffffffffffffffffffffffffffff16610bc9611720565b73ffffffffffffffffffffffffffffffffffffffff1614610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1690613d43565b60405180910390fd5b600a8183610c2d9190613d92565b1115610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613e34565b60405180910390fd5b81600f8190555080601081905550601054600f54610c8c9190613d92565b600e819055505050565b606060038054610ca590613e83565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd190613e83565b8015610d1e5780601f10610cf357610100808354040283529160200191610d1e565b820191906000526020600020905b815481529060010190602001808311610d0157829003601f168201915b5050505050905090565b6000610d3c610d356120e1565b84846120e9565b6001905092915050565b60186020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600a5481565b610da26120e1565b73ffffffffffffffffffffffffffffffffffffffff16610dc0611720565b73ffffffffffffffffffffffffffffffffffffffff1614610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90613d43565b60405180910390fd5b670de0b6b3a76400006103e86001610e2c610d8a565b610e369190613eb5565b610e409190613f3e565b610e4a9190613f3e565b811015610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390613fe1565b60405180910390fd5b670de0b6b3a764000081610ea09190613eb5565b60118190555050565b6000610eb68484846122b4565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f016120e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890614073565b60405180910390fd5b610f9585610f8d6120e1565b8584036120e9565b60019150509392505050565b610fa96120e1565b73ffffffffffffffffffffffffffffffffffffffff16610fc7611720565b73ffffffffffffffffffffffffffffffffffffffff161461101d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101490613d43565b60405180910390fd5b6103e8601961102a610d8a565b6110349190613eb5565b61103e9190613f3e565b6011819055506103e86019611051610d8a565b61105b9190613eb5565b6110659190613f3e565b6013819055506004600c819055506001600d81905550600d54600c5461108b9190613d92565b600b819055506004600f819055506001601081905550601054600f546110b19190613d92565b600e81905550565b61dead81565b60006012905090565b600061116a6110d56120e1565b8484600160006110e36120e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111659190613d92565b6120e9565b6001905092915050565b61117c6120e1565b73ffffffffffffffffffffffffffffffffffffffff1661119a611720565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790613d43565b60405180910390fd5b6103e8600f6111fd610d8a565b6112079190613eb5565b6112119190613f3e565b6011819055506103e8600f611224610d8a565b61122e9190613eb5565b6112389190613f3e565b6013819055506005600c819055506001600d81905550600d54600c5461125e9190613d92565b600b819055506005600f819055506001601081905550601054600f546112849190613d92565b600e81905550565b7f000000000000000000000000423fade8aa6fd6ddde489894dc298dd3414128d881565b601460009054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6113216120e1565b73ffffffffffffffffffffffffffffffffffffffff1661133f611720565b73ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90613d43565b60405180910390fd5b600a81836113a39190613d92565b11156113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906140df565b60405180910390fd5b81600c8190555080600d81905550600d54600c546114029190613d92565b600b819055505050565b600e5481565b601460029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114756120e1565b73ffffffffffffffffffffffffffffffffffffffff16611493611720565b73ffffffffffffffffffffffffffffffffffffffff16146114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090613d43565b60405180910390fd5b6114f36000612ee8565b565b60006114ff6120e1565b73ffffffffffffffffffffffffffffffffffffffff1661151d611720565b73ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a90613d43565b60405180910390fd5b6000601460006101000a81548160ff0219169083151502179055506001905090565b61159d6120e1565b73ffffffffffffffffffffffffffffffffffffffff166115bb611720565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890613d43565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6116746120e1565b73ffffffffffffffffffffffffffffffffffffffff16611692611720565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90613d43565b60405180910390fd5b6001601460016101000a81548160ff0219169083151502179055506001601460026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117786120e1565b73ffffffffffffffffffffffffffffffffffffffff16611796611720565b73ffffffffffffffffffffffffffffffffffffffff16146117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390613d43565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b60606004805461181890613e83565b80601f016020809104026020016040519081016040528092919081815260200182805461184490613e83565b80156118915780601f1061186657610100808354040283529160200191611891565b820191906000526020600020905b81548152906001019060200180831161187457829003601f168201915b5050505050905090565b6118a36120e1565b73ffffffffffffffffffffffffffffffffffffffff166118c1611720565b73ffffffffffffffffffffffffffffffffffffffff1614611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90613d43565b60405180910390fd5b7f000000000000000000000000423fade8aa6fd6ddde489894dc298dd3414128d873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90614171565b60405180910390fd5b6119b08282612fae565b5050565b600c5481565b60095481565b600f5481565b600080600160006119d56120e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990614203565b60405180910390fd5b611aa6611a9d6120e1565b858584036120e9565b600191505092915050565b6000611ac5611abe6120e1565b84846122b4565b6001905092915050565b60135481565b60196020528060005260406000206000915054906101000a900460ff1681565b601460019054906101000a900460ff1681565b611b106120e1565b73ffffffffffffffffffffffffffffffffffffffff16611b2e611720565b73ffffffffffffffffffffffffffffffffffffffff1614611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b90613d43565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c219190613a51565b60405180910390a25050565b611c356120e1565b73ffffffffffffffffffffffffffffffffffffffff16611c53611720565b73ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090613d43565b60405180910390fd5b670de0b6b3a76400006103e86005611cbf610d8a565b611cc99190613eb5565b611cd39190613f3e565b611cdd9190613f3e565b811015611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690614295565b60405180910390fd5b670de0b6b3a764000081611d339190613eb5565b60138190555050565b601460039054906101000a900460ff1681565b60115481565b6000611d5f6120e1565b73ffffffffffffffffffffffffffffffffffffffff16611d7d611720565b73ffffffffffffffffffffffffffffffffffffffff1614611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca90613d43565b60405180910390fd5b620186a06001611de1610d8a565b611deb9190613eb5565b611df59190613f3e565b821015611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e90614327565b60405180910390fd5b6103e86005611e44610d8a565b611e4e9190613eb5565b611e589190613f3e565b821115611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906143b9565b60405180910390fd5b8160128190555060019050919050565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60125481565b6000611f476120e1565b73ffffffffffffffffffffffffffffffffffffffff16611f65611720565b73ffffffffffffffffffffffffffffffffffffffff1614611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb290613d43565b60405180910390fd5b6000601460036101000a81548160ff0219169083151502179055506001905090565b600d5481565b611feb6120e1565b73ffffffffffffffffffffffffffffffffffffffff16612009611720565b73ffffffffffffffffffffffffffffffffffffffff161461205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690613d43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c69061444b565b60405180910390fd5b6120d881612ee8565b50565b60105481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612159576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612150906144dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c09061456f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122a79190613b22565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b90614601565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b90614693565b60405180910390fd5b60008114156123ae576123a98383600061304f565b612ee3565b601460009054906101000a900460ff1615612a71576123cb611720565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124395750612409611720565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124725750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124ac575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124c55750601660009054906101000a900460ff16155b15612a7057601460019054906101000a900460ff166125bf57601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061257f5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b5906146ff565b60405180910390fd5b5b601460039054906101000a900460ff1615612787576125dc611720565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561266357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126bb57507f000000000000000000000000423fade8aa6fd6ddde489894dc298dd3414128d873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127865743601560003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612741576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612738906147b7565b60405180910390fd5b43601560003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561282a5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128d157601154811115612874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286b90614849565b60405180910390fd5b60135461288083611425565b8261288b9190613d92565b11156128cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c3906148b5565b60405180910390fd5b612a6f565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129745750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129c3576011548111156129be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b590614947565b60405180910390fd5b612a6e565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a6d57601354612a2083611425565b82612a2b9190613d92565b1115612a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a63906148b5565b60405180910390fd5b5b5b5b5b5b6000612a7c30611425565b905060006012548210159050808015612aa15750601460029054906101000a900460ff165b8015612aba5750601660009054906101000a900460ff16155b8015612b105750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b665750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bbc5750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c00576001601660006101000a81548160ff021916908315150217905550612be46132d0565b6000601660006101000a81548160ff0219169083151502179055505b6000601660009054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cb65750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cc057600090505b60008115612ed357601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d2357506000600e54115b15612dbd57612d506064612d42600e54886134dd90919063ffffffff16565b6134f390919063ffffffff16565b9050600e54600f5482612d639190613eb5565b612d6d9190613f3e565b60096000828254612d7e9190613d92565b92505081905550600e5460105482612d969190613eb5565b612da09190613f3e565b600a6000828254612db19190613d92565b92505081905550612eaf565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e1857506000600b54115b15612eae57612e456064612e37600b54886134dd90919063ffffffff16565b6134f390919063ffffffff16565b9050600b54600c5482612e589190613eb5565b612e629190613f3e565b60096000828254612e739190613d92565b92505081905550600b54600d5482612e8b9190613eb5565b612e959190613f3e565b600a6000828254612ea69190613d92565b925050819055505b5b6000811115612ec457612ec387308361304f565b5b8085612ed09190614967565b94505b612ede87878761304f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b690614601565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561312f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312690614693565b60405180910390fd5b61313a838383613509565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156131c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b790614a0d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132539190613d92565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516132b79190613b22565b60405180910390a36132ca84848461350e565b50505050565b60006132db30611425565b90506000600a546009546132ef9190613d92565b90506000808314806133015750600082145b1561330e575050506134db565b601460125461331d9190613eb5565b8311156133365760146012546133339190613eb5565b92505b6000600283600a54866133499190613eb5565b6133539190613f3e565b61335d9190613f3e565b90506000613374828661351390919063ffffffff16565b9050600047905061338482613529565b6000613399824761351390919063ffffffff16565b905060006133c4876133b6600954856134dd90919063ffffffff16565b6134f390919063ffffffff16565b9050600081836133d49190614967565b90506000600a819055506000600981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161342c90614a5e565b60006040518083038185875af1925050503d8060008114613469576040519150601f19603f3d011682016040523d82523d6000602084013e61346e565b606091505b5050809750506000861180156134845750600081115b156134d1576134938682613766565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582600a546040516134c893929190614a73565b60405180910390a15b5050505050505050505b565b600081836134eb9190613eb5565b905092915050565b600081836135019190613f3e565b905092915050565b505050565b505050565b600081836135219190614967565b905092915050565b6000600267ffffffffffffffff81111561354657613545614aaa565b5b6040519080825280602002602001820160405280156135745781602001602082028036833780820191505090505b509050308160008151811061358c5761358b614ad9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613631573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136559190614b1d565b8160018151811061366957613668614ad9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506136ce307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846120e9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613730959493929190614c43565b600060405180830381600087803b15801561374a57600080fd5b505af115801561375e573d6000803e3d6000fd5b505050505050565b613791307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846120e9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161381896959493929190614c9d565b60606040518083038185885af1158015613836573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061385b9190614d13565b5050505050565b600080fd5b6000819050919050565b61387a81613867565b811461388557600080fd5b50565b60008135905061389781613871565b92915050565b600080604083850312156138b4576138b3613862565b5b60006138c285828601613888565b92505060206138d385828601613888565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139175780820151818401526020810190506138fc565b83811115613926576000848401525b50505050565b6000601f19601f8301169050919050565b6000613948826138dd565b61395281856138e8565b93506139628185602086016138f9565b61396b8161392c565b840191505092915050565b60006020820190508181036000830152613990818461393d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139c382613998565b9050919050565b6139d3816139b8565b81146139de57600080fd5b50565b6000813590506139f0816139ca565b92915050565b60008060408385031215613a0d57613a0c613862565b5b6000613a1b858286016139e1565b9250506020613a2c85828601613888565b9150509250929050565b60008115159050919050565b613a4b81613a36565b82525050565b6000602082019050613a666000830184613a42565b92915050565b600060208284031215613a8257613a81613862565b5b6000613a90848285016139e1565b91505092915050565b6000819050919050565b6000613abe613ab9613ab484613998565b613a99565b613998565b9050919050565b6000613ad082613aa3565b9050919050565b6000613ae282613ac5565b9050919050565b613af281613ad7565b82525050565b6000602082019050613b0d6000830184613ae9565b92915050565b613b1c81613867565b82525050565b6000602082019050613b376000830184613b13565b92915050565b600060208284031215613b5357613b52613862565b5b6000613b6184828501613888565b91505092915050565b600080600060608486031215613b8357613b82613862565b5b6000613b91868287016139e1565b9350506020613ba2868287016139e1565b9250506040613bb386828701613888565b9150509250925092565b613bc6816139b8565b82525050565b6000602082019050613be16000830184613bbd565b92915050565b600060ff82169050919050565b613bfd81613be7565b82525050565b6000602082019050613c186000830184613bf4565b92915050565b613c2781613a36565b8114613c3257600080fd5b50565b600081359050613c4481613c1e565b92915050565b60008060408385031215613c6157613c60613862565b5b6000613c6f858286016139e1565b9250506020613c8085828601613c35565b9150509250929050565b600060208284031215613ca057613c9f613862565b5b6000613cae84828501613c35565b91505092915050565b60008060408385031215613cce57613ccd613862565b5b6000613cdc858286016139e1565b9250506020613ced858286016139e1565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d2d6020836138e8565b9150613d3882613cf7565b602082019050919050565b60006020820190508181036000830152613d5c81613d20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d9d82613867565b9150613da883613867565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ddd57613ddc613d63565b5b828201905092915050565b7f4d61782073656c6c20666565206973203c3d2031302500000000000000000000600082015250565b6000613e1e6016836138e8565b9150613e2982613de8565b602082019050919050565b60006020820190508181036000830152613e4d81613e11565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e9b57607f821691505b60208210811415613eaf57613eae613e54565b5b50919050565b6000613ec082613867565b9150613ecb83613867565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f0457613f03613d63565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f4982613867565b9150613f5483613867565b925082613f6457613f63613f0f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613fcb602f836138e8565b9150613fd682613f6f565b604082019050919050565b60006020820190508181036000830152613ffa81613fbe565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061405d6028836138e8565b915061406882614001565b604082019050919050565b6000602082019050818103600083015261408c81614050565b9050919050565b7f4d61782062757920666565206973203c3d203130250000000000000000000000600082015250565b60006140c96015836138e8565b91506140d482614093565b602082019050919050565b600060208201905081810360008301526140f8816140bc565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061415b6039836138e8565b9150614166826140ff565b604082019050919050565b6000602082019050818103600083015261418a8161414e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141ed6025836138e8565b91506141f882614191565b604082019050919050565b6000602082019050818103600083015261421c816141e0565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061427f6024836138e8565b915061428a82614223565b604082019050919050565b600060208201905081810360008301526142ae81614272565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143116035836138e8565b915061431c826142b5565b604082019050919050565b6000602082019050818103600083015261434081614304565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006143a36034836138e8565b91506143ae82614347565b604082019050919050565b600060208201905081810360008301526143d281614396565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144356026836138e8565b9150614440826143d9565b604082019050919050565b6000602082019050818103600083015261446481614428565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144c76024836138e8565b91506144d28261446b565b604082019050919050565b600060208201905081810360008301526144f6816144ba565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006145596022836138e8565b9150614564826144fd565b604082019050919050565b600060208201905081810360008301526145888161454c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145eb6025836138e8565b91506145f68261458f565b604082019050919050565b6000602082019050818103600083015261461a816145de565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061467d6023836138e8565b915061468882614621565b604082019050919050565b600060208201905081810360008301526146ac81614670565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146e96016836138e8565b91506146f4826146b3565b602082019050919050565b60006020820190508181036000830152614718816146dc565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006147a16049836138e8565b91506147ac8261471f565b606082019050919050565b600060208201905081810360008301526147d081614794565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006148336035836138e8565b915061483e826147d7565b604082019050919050565b6000602082019050818103600083015261486281614826565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061489f6013836138e8565b91506148aa82614869565b602082019050919050565b600060208201905081810360008301526148ce81614892565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006149316036836138e8565b915061493c826148d5565b604082019050919050565b6000602082019050818103600083015261496081614924565b9050919050565b600061497282613867565b915061497d83613867565b9250828210156149905761498f613d63565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006149f76026836138e8565b9150614a028261499b565b604082019050919050565b60006020820190508181036000830152614a26816149ea565b9050919050565b600081905092915050565b50565b6000614a48600083614a2d565b9150614a5382614a38565b600082019050919050565b6000614a6982614a3b565b9150819050919050565b6000606082019050614a886000830186613b13565b614a956020830185613b13565b614aa26040830184613b13565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614b17816139ca565b92915050565b600060208284031215614b3357614b32613862565b5b6000614b4184828501614b08565b91505092915050565b6000819050919050565b6000614b6f614b6a614b6584614b4a565b613a99565b613867565b9050919050565b614b7f81614b54565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614bba816139b8565b82525050565b6000614bcc8383614bb1565b60208301905092915050565b6000602082019050919050565b6000614bf082614b85565b614bfa8185614b90565b9350614c0583614ba1565b8060005b83811015614c36578151614c1d8882614bc0565b9750614c2883614bd8565b925050600181019050614c09565b5085935050505092915050565b600060a082019050614c586000830188613b13565b614c656020830187614b76565b8181036040830152614c778186614be5565b9050614c866060830185613bbd565b614c936080830184613b13565b9695505050505050565b600060c082019050614cb26000830189613bbd565b614cbf6020830188613b13565b614ccc6040830187614b76565b614cd96060830186614b76565b614ce66080830185613bbd565b614cf360a0830184613b13565b979650505050505050565b600081519050614d0d81613871565b92915050565b600080600060608486031215614d2c57614d2b613862565b5b6000614d3a86828701614cfe565b9350506020614d4b86828701614cfe565b9250506040614d5c86828701614cfe565b915050925092509256fea26469706673582212205be2edb3f71273d68b6fc83eca27ae3a8915268c218ddcbf1ba63aa5d984ab4e64736f6c634300080c0033
Deployed Bytecode Sourcemap
19808:17775:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28623:535;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4618:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5973:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21571:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21248:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5255:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20267:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27137:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6185:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25400:642;;;;;;;;;;;;;:::i;:::-;;21351:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5120:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6764:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24711:641;;;;;;;;;;;;;:::i;:::-;;21306:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20872:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29913:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28066:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20527:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20952:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5403:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1430:103;;;;;;;;;;;;;:::i;:::-;;26259:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27701:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26117:112;;;;;;;;;;;;;:::i;:::-;;1002:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20023:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27934:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4800:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29408:247;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20360:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20149:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20562:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7066:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5569:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20812:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21792:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20912:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29192:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27425:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20990:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20730:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26664:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20326:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5784:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20772:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26459:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20466:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1616:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20671:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28623:535;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28869:2:::1;28851:13;28807:7;:57;;;;:::i;:::-;28806:65;;28798:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;28916:7;28903:10;:20;;;;29041:13;29022:16;:32;;;;29134:16;;29081:10;;:69;;;;:::i;:::-;29065:13;:85;;;;28623:535:::0;;:::o;4618:100::-;4672:13;4705:5;4698:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4618:100;:::o;5973:169::-;6056:4;6073:39;6082:12;:10;:12::i;:::-;6096:7;6105:6;6073:8;:39::i;:::-;6130:4;6123:11;;5973:169;;;;:::o;21571:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;21248:51::-;;;:::o;5255:108::-;5316:7;5343:12;;5336:19;;5255:108;:::o;20267:33::-;;;;:::o;27137:243::-;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27266:4:::1;27258;27253:1;27237:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27236:26;;;;:::i;:::-;27235:35;;;;:::i;:::-;27222:9;:48;;27214:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;27368:4;27356:9;:16;;;;:::i;:::-;27333:20;:39;;;;27137:243:::0;:::o;6185:492::-;6325:4;6342:36;6352:6;6360:9;6371:6;6342:9;:36::i;:::-;6391:24;6418:11;:19;6430:6;6418:19;;;;;;;;;;;;;;;:33;6438:12;:10;:12::i;:::-;6418:33;;;;;;;;;;;;;;;;6391:60;;6490:6;6470:16;:26;;6462:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;6577:57;6586:6;6594:12;:10;:12::i;:::-;6627:6;6608:16;:25;6577:8;:57::i;:::-;6665:4;6658:11;;;6185:492;;;;;:::o;25400:642::-;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25549:4:::1;25543:2;25527:13;:11;:13::i;:::-;:18;;;;:::i;:::-;25526:27;;;;:::i;:::-;25503:20;:50;;;;25663:4;25657:2;25641:13;:11;:13::i;:::-;:18;;;;:::i;:::-;25640:27;;;;:::i;:::-;25622:15;:45;;;;25736:1;25724:9;:13;;;;25766:1;25748:15;:19;;;;25843:15;;25793:9;;:65;;;;:::i;:::-;25778:12;:80;;;;25906:1;25893:10;:14;;;;25937:1;25918:16;:20;;;;26018:16;;25965:10;;:69;;;;:::i;:::-;25949:13;:85;;;;25400:642::o:0;21351:53::-;21397:6;21351:53;:::o;5120:93::-;5178:5;5203:2;5196:9;;5120:93;:::o;6764:215::-;6852:4;6869:80;6878:12;:10;:12::i;:::-;6892:7;6938:10;6901:11;:25;6913:12;:10;:12::i;:::-;6901:25;;;;;;;;;;;;;;;:34;6927:7;6901:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;6869:8;:80::i;:::-;6967:4;6960:11;;6764:215;;;;:::o;24711:641::-;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24859:4:::1;24853:2;24837:13;:11;:13::i;:::-;:18;;;;:::i;:::-;24836:27;;;;:::i;:::-;24813:20;:50;;;;24973:4;24967:2;24951:13;:11;:13::i;:::-;:18;;;;:::i;:::-;24950:27;;;;:::i;:::-;24932:15;:45;;;;25046:1;25034:9;:13;;;;25076:1;25058:15;:19;;;;25153:15;;25103:9;;:65;;;;:::i;:::-;25088:12;:80;;;;25216:1;25203:10;:14;;;;25247:1;25228:16;:20;;;;25328:16;;25275:10;;:69;;;;:::i;:::-;25259:13;:85;;;;24711:641::o:0;21306:38::-;;;:::o;20872:33::-;;;;;;;;;;;;;:::o;29913:126::-;29979:4;30003:19;:28;30023:7;30003:28;;;;;;;;;;;;;;;;;;;;;;;;;29996:35;;29913:126;;;:::o;28066:524::-;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28311:2:::1;28293:13;28249:7;:57;;;;:::i;:::-;28248:65;;28240:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;28356:7;28344:9;:19;;;;28477:13;28459:15;:31;;;;28566:15;;28516:9;;:65;;;;:::i;:::-;28501:12;:80;;;;28066:524:::0;;:::o;20527:28::-;;;;:::o;20952:31::-;;;;;;;;;;;;;:::o;5403:127::-;5477:7;5504:9;:18;5514:7;5504:18;;;;;;;;;;;;;;;;5497:25;;5403:127;;;:::o;1430:103::-;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1495:30:::1;1522:1;1495:18;:30::i;:::-;1430:103::o:0;26259:121::-;26311:4;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26345:5:::1;26328:14;;:22;;;;;;;;;;;;;;;;;;26368:4;26361:11;;26259:121:::0;:::o;27701:149::-;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27838:4:::1;27796:31;:39;27828:6;27796:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;27701:149:::0;;:::o;26117:112::-;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26188:4:::1;26172:13;;:20;;;;;;;;;;;;;;;;;;26217:4;26203:11;;:18;;;;;;;;;;;;;;;;;;26117:112::o:0;1002:87::-;1048:7;1075:6;;;;;;;;;;;1068:13;;1002:87;:::o;20023:24::-;;;;;;;;;;;;;:::o;27934:100::-;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28019:7:::1;28005:11;;:21;;;;;;;;;;;;;;;;;;27934:100:::0;:::o;4800:104::-;4856:13;4889:7;4882:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800:104;:::o;29408:247::-;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29520:13:::1;29512:21;;:4;:21;;;;29504:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;29606:41;29635:4;29641:5;29606:28;:41::i;:::-;29408:247:::0;;:::o;20360:24::-;;;;:::o;20149:27::-;;;;:::o;20562:25::-;;;;:::o;7066:413::-;7159:4;7176:24;7203:11;:25;7215:12;:10;:12::i;:::-;7203:25;;;;;;;;;;;;;;;:34;7229:7;7203:34;;;;;;;;;;;;;;;;7176:61;;7276:15;7256:16;:35;;7248:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7369:67;7378:12;:10;:12::i;:::-;7392:7;7420:15;7401:16;:34;7369:8;:67::i;:::-;7467:4;7460:11;;;7066:413;;;;:::o;5569:175::-;5655:4;5672:42;5682:12;:10;:12::i;:::-;5696:9;5707:6;5672:9;:42::i;:::-;5732:4;5725:11;;5569:175;;;;:::o;20812:30::-;;;;:::o;21792:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;20912:33::-;;;;;;;;;;;;;:::o;29192:182::-;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29308:8:::1;29277:19;:28;29297:7;29277:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;29348:7;29332:34;;;29357:8;29332:34;;;;;;:::i;:::-;;;;;;;;29192:182:::0;;:::o;27425:230::-;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27557:4:::1;27549;27544:1;27528:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27527:26;;;;:::i;:::-;27526:35;;;;:::i;:::-;27513:9;:48;;27505:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;27643:4;27631:9;:16;;;;:::i;:::-;27613:15;:34;;;;27425:230:::0;:::o;20990:39::-;;;;;;;;;;;;;:::o;20730:35::-;;;;:::o;26664:423::-;26772:4;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26837:6:::1;26832:1;26816:13;:11;:13::i;:::-;:17;;;;:::i;:::-;26815:28;;;;:::i;:::-;26802:9;:41;;26794:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;26955:4;26950:1;26934:13;:11;:13::i;:::-;:17;;;;:::i;:::-;26933:26;;;;:::i;:::-;26920:9;:39;;26912:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;27048:9;27027:18;:30;;;;27075:4;27068:11;;26664:423:::0;;;:::o;20326:27::-;;;;:::o;5784:151::-;5873:7;5900:11;:18;5912:5;5900:18;;;;;;;;;;;;;;;:27;5919:7;5900:27;;;;;;;;;;;;;;;;5893:34;;5784:151;;;;:::o;20772:33::-;;;;:::o;26459:135::-;26519:4;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26559:5:::1;26536:20;;:28;;;;;;;;;;;;;;;;;;26582:4;26575:11;;26459:135:::0;:::o;20466:30::-;;;;:::o;1616:201::-;1210:12;:10;:12::i;:::-;1199:23;;:7;:5;:7::i;:::-;:23;;;1191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:1:::1;1705:22;;:8;:22;;;;1697:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1781:28;1800:8;1781:18;:28::i;:::-;1616:201:::0;:::o;20671:31::-;;;;:::o;324:98::-;377:7;404:10;397:17;;324:98;:::o;9544:380::-;9697:1;9680:19;;:5;:19;;;;9672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9778:1;9759:21;;:7;:21;;;;9751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9862:6;9832:11;:18;9844:5;9832:18;;;;;;;;;;;;;;;:27;9851:7;9832:27;;;;;;;;;;;;;;;:36;;;;9900:7;9884:32;;9893:5;9884:32;;;9909:6;9884:32;;;;;;:::i;:::-;;;;;;;;9544:380;;;:::o;30064:4408::-;30212:1;30196:18;;:4;:18;;;;30188:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30289:1;30275:16;;:2;:16;;;;30267:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30358:1;30348:6;:11;30344:93;;;30376:28;30392:4;30398:2;30402:1;30376:15;:28::i;:::-;30419:7;;30344:93;30453:14;;;;;;;;;;;30449:2018;;;30514:7;:5;:7::i;:::-;30506:15;;:4;:15;;;;:49;;;;;30548:7;:5;:7::i;:::-;30542:13;;:2;:13;;;;30506:49;:86;;;;;30590:1;30576:16;;:2;:16;;;;30506:86;:128;;;;;30627:6;30613:21;;:2;:21;;;;30506:128;:158;;;;;30656:8;;;;;;;;;;;30655:9;30506:158;30484:1972;;;30704:13;;;;;;;;;;;30699:150;;30750:19;:25;30770:4;30750:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;30779:19;:23;30799:2;30779:23;;;;;;;;;;;;;;;;;;;;;;;;;30750:52;30742:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;30699:150;31005:20;;;;;;;;;;;31001:523;;;31086:7;:5;:7::i;:::-;31080:13;;:2;:13;;;;:72;;;;;31136:15;31122:30;;:2;:30;;;;31080:72;:129;;;;;31195:13;31181:28;;:2;:28;;;;31080:129;31050:455;;;31310:12;31268:28;:39;31297:9;31268:39;;;;;;;;;;;;;;;;:54;31260:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;31469:12;31427:28;:39;31456:9;31427:39;;;;;;;;;;;;;;;:54;;;;31050:455;31001:523;31599:25;:31;31625:4;31599:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;31656:31;:35;31688:2;31656:35;;;;;;;;;;;;;;;;;;;;;;;;;31655:36;31599:92;31573:868;;;31752:20;;31742:6;:30;;31734:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;31887:15;;31870:13;31880:2;31870:9;:13::i;:::-;31861:6;:22;;;;:::i;:::-;:41;;31853:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31573:868;;;32025:25;:29;32051:2;32025:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;32080:31;:37;32112:4;32080:37;;;;;;;;;;;;;;;;;;;;;;;;;32079:38;32025:92;31999:442;;;32178:20;;32168:6;:30;;32160:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;31999:442;;;32288:31;:35;32320:2;32288:35;;;;;;;;;;;;;;;;;;;;;;;;;32283:158;;32382:15;;32365:13;32375:2;32365:9;:13::i;:::-;32356:6;:22;;;;:::i;:::-;:41;;32348:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32283:158;31999:442;31573:868;30484:1972;30449:2018;32479:28;32510:24;32528:4;32510:9;:24::i;:::-;32479:55;;32547:12;32586:18;;32562:20;:42;;32547:57;;32635:7;:35;;;;;32659:11;;;;;;;;;;;32635:35;:61;;;;;32688:8;;;;;;;;;;;32687:9;32635:61;:110;;;;;32714:25;:31;32740:4;32714:31;;;;;;;;;;;;;;;;;;;;;;;;;32713:32;32635:110;:153;;;;;32763:19;:25;32783:4;32763:25;;;;;;;;;;;;;;;;;;;;;;;;;32762:26;32635:153;:194;;;;;32806:19;:23;32826:2;32806:23;;;;;;;;;;;;;;;;;;;;;;;;;32805:24;32635:194;32617:326;;;32867:4;32856:8;;:15;;;;;;;;;;;;;;;;;;32888:10;:8;:10::i;:::-;32926:5;32915:8;;:16;;;;;;;;;;;;;;;;;;32617:326;32955:12;32971:8;;;;;;;;;;;32970:9;32955:24;;33081:19;:25;33101:4;33081:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33110:19;:23;33130:2;33110:23;;;;;;;;;;;;;;;;;;;;;;;;;33081:52;33077:100;;;33160:5;33150:15;;33077:100;33189:12;33294:7;33290:1129;;;33346:25;:29;33372:2;33346:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;33395:1;33379:13;;:17;33346:50;33342:928;;;33424:34;33454:3;33424:25;33435:13;;33424:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;33417:41;;33521:13;;33507:10;;33500:4;:17;;;;:::i;:::-;33499:35;;;;:::i;:::-;33483:12;;:51;;;;;;;:::i;:::-;;;;;;;;33768:13;;33748:16;;33741:4;:23;;;;:::i;:::-;33740:41;;;;:::i;:::-;33718:18;;:63;;;;;;;:::i;:::-;;;;;;;;33342:928;;;33843:25;:31;33869:4;33843:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;33893:1;33878:12;;:16;33843:51;33839:431;;;33922:33;33951:3;33922:24;33933:12;;33922:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;33915:40;;33999:12;;33986:9;;33979:4;:16;;;;:::i;:::-;33978:33;;;;:::i;:::-;33962:12;;:49;;;;;;;:::i;:::-;;;;;;;;34240:12;;34221:15;;34214:4;:22;;;;:::i;:::-;34213:39;;;;:::i;:::-;34191:18;;:61;;;;;;;:::i;:::-;;;;;;;;33839:431;33342:928;34297:1;34290:4;:8;34286:91;;;34319:42;34335:4;34349;34356;34319:15;:42::i;:::-;34286:91;34403:4;34393:14;;;;;:::i;:::-;;;33290:1129;34431:33;34447:4;34453:2;34457:6;34431:15;:33::i;:::-;30177:4295;;;;30064:4408;;;;:::o;1900:191::-;1974:16;1993:6;;;;;;;;;;;1974:25;;2019:8;2010:6;;:17;;;;;;;;;;;;;;;;;;2074:8;2043:40;;2064:8;2043:40;;;;;;;;;;;;1963:128;1900:191;:::o;29663:188::-;29780:5;29746:25;:31;29772:4;29746:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;29837:5;29803:40;;29831:4;29803:40;;;;;;;;;;;;29663:188;;:::o;7550:733::-;7708:1;7690:20;;:6;:20;;;;7682:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7792:1;7771:23;;:9;:23;;;;7763:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7847:47;7868:6;7876:9;7887:6;7847:20;:47::i;:::-;7907:21;7931:9;:17;7941:6;7931:17;;;;;;;;;;;;;;;;7907:41;;7984:6;7967:13;:23;;7959:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;8105:6;8089:13;:22;8069:9;:17;8079:6;8069:17;;;;;;;;;;;;;;;:42;;;;8157:6;8133:9;:20;8143:9;8133:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;8198:9;8181:35;;8190:6;8181:35;;;8209:6;8181:35;;;;;;:::i;:::-;;;;;;;;8229:46;8249:6;8257:9;8268:6;8229:19;:46::i;:::-;7671:612;7550:733;;;:::o;35669:1909::-;35708:23;35734:24;35752:4;35734:9;:24::i;:::-;35708:50;;35769:25;35856:18;;35797:12;;:77;;;;:::i;:::-;35769:105;;35885:12;35933:1;35914:15;:20;:46;;;;35959:1;35938:17;:22;35914:46;35910:85;;;35977:7;;;;;35910:85;36050:2;36029:18;;:23;;;;:::i;:::-;36011:15;:41;36007:115;;;36108:2;36087:18;;:23;;;;:::i;:::-;36069:41;;36007:115;36183:23;36270:1;36250:17;36228:18;;36210:15;:36;;;;:::i;:::-;36209:58;;;;:::i;:::-;:62;;;;:::i;:::-;36183:88;;36282:26;36311:36;36331:15;36311;:19;;:36;;;;:::i;:::-;36282:65;;36360:25;36388:21;36360:49;;36422:36;36439:18;36422:16;:36::i;:::-;36471:18;36492:44;36518:17;36492:21;:25;;:44;;;;:::i;:::-;36471:65;;36549:17;36569:51;36602:17;36569:28;36584:12;;36569:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;36549:71;;36820:23;36859:9;36846:10;:22;;;;:::i;:::-;36820:48;;36940:1;36919:18;:22;;;;37031:1;37016:12;:16;;;;37067:9;;;;;;;;;;;37059:23;;37090:9;37059:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37045:59;;;;;37224:1;37206:15;:19;:42;;;;;37247:1;37229:15;:19;37206:42;37202:278;;;37265:46;37278:15;37295;37265:12;:46::i;:::-;37331:137;37364:18;37401:15;37435:18;;37331:137;;;;;;;;:::i;:::-;;;;;;;;37202:278;35697:1881;;;;;;;;;35669:1909;:::o;12741:98::-;12799:7;12830:1;12826;:5;;;;:::i;:::-;12819:12;;12741:98;;;;:::o;12977:::-;13035:7;13066:1;13062;:5;;;;:::i;:::-;13055:12;;12977:98;;;;:::o;10026:125::-;;;;:::o;10252:124::-;;;;:::o;12551:98::-;12609:7;12640:1;12636;:5;;;;:::i;:::-;12629:12;;12551:98;;;;:::o;34509:589::-;34635:21;34673:1;34659:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34635:40;;34704:4;34686;34691:1;34686:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34730:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34720:4;34725:1;34720:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;34765:62;34782:4;34797:15;34815:11;34765:8;:62::i;:::-;34866:15;:66;;;34947:11;34973:1;35017:4;35044;35064:15;34866:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34564:534;34509:589;:::o;35128:515::-;35276:62;35293:4;35308:15;35326:11;35276:8;:62::i;:::-;35381:15;:31;;;35420:9;35453:4;35473:11;35499:1;35542;35585:9;;;;;;;;;;;35609:15;35381:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35128:515;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:323::-;8172:6;8221:2;8209:9;8200:7;8196:23;8192:32;8189:119;;;8227:79;;:::i;:::-;8189:119;8347:1;8372:50;8414:7;8405:6;8394:9;8390:22;8372:50;:::i;:::-;8362:60;;8318:114;8116:323;;;;:::o;8445:474::-;8513:6;8521;8570:2;8558:9;8549:7;8545:23;8541:32;8538:119;;;8576:79;;:::i;:::-;8538:119;8696:1;8721:53;8766:7;8757:6;8746:9;8742:22;8721:53;:::i;:::-;8711:63;;8667:117;8823:2;8849:53;8894:7;8885:6;8874:9;8870:22;8849:53;:::i;:::-;8839:63;;8794:118;8445:474;;;;;:::o;8925:182::-;9065:34;9061:1;9053:6;9049:14;9042:58;8925:182;:::o;9113:366::-;9255:3;9276:67;9340:2;9335:3;9276:67;:::i;:::-;9269:74;;9352:93;9441:3;9352:93;:::i;:::-;9470:2;9465:3;9461:12;9454:19;;9113:366;;;:::o;9485:419::-;9651:4;9689:2;9678:9;9674:18;9666:26;;9738:9;9732:4;9728:20;9724:1;9713:9;9709:17;9702:47;9766:131;9892:4;9766:131;:::i;:::-;9758:139;;9485:419;;;:::o;9910:180::-;9958:77;9955:1;9948:88;10055:4;10052:1;10045:15;10079:4;10076:1;10069:15;10096:305;10136:3;10155:20;10173:1;10155:20;:::i;:::-;10150:25;;10189:20;10207:1;10189:20;:::i;:::-;10184:25;;10343:1;10275:66;10271:74;10268:1;10265:81;10262:107;;;10349:18;;:::i;:::-;10262:107;10393:1;10390;10386:9;10379:16;;10096:305;;;;:::o;10407:172::-;10547:24;10543:1;10535:6;10531:14;10524:48;10407:172;:::o;10585:366::-;10727:3;10748:67;10812:2;10807:3;10748:67;:::i;:::-;10741:74;;10824:93;10913:3;10824:93;:::i;:::-;10942:2;10937:3;10933:12;10926:19;;10585:366;;;:::o;10957:419::-;11123:4;11161:2;11150:9;11146:18;11138:26;;11210:9;11204:4;11200:20;11196:1;11185:9;11181:17;11174:47;11238:131;11364:4;11238:131;:::i;:::-;11230:139;;10957:419;;;:::o;11382:180::-;11430:77;11427:1;11420:88;11527:4;11524:1;11517:15;11551:4;11548:1;11541:15;11568:320;11612:6;11649:1;11643:4;11639:12;11629:22;;11696:1;11690:4;11686:12;11717:18;11707:81;;11773:4;11765:6;11761:17;11751:27;;11707:81;11835:2;11827:6;11824:14;11804:18;11801:38;11798:84;;;11854:18;;:::i;:::-;11798:84;11619:269;11568:320;;;:::o;11894:348::-;11934:7;11957:20;11975:1;11957:20;:::i;:::-;11952:25;;11991:20;12009:1;11991:20;:::i;:::-;11986:25;;12179:1;12111:66;12107:74;12104:1;12101:81;12096:1;12089:9;12082:17;12078:105;12075:131;;;12186:18;;:::i;:::-;12075:131;12234:1;12231;12227:9;12216:20;;11894:348;;;;:::o;12248:180::-;12296:77;12293:1;12286:88;12393:4;12390:1;12383:15;12417:4;12414:1;12407:15;12434:185;12474:1;12491:20;12509:1;12491:20;:::i;:::-;12486:25;;12525:20;12543:1;12525:20;:::i;:::-;12520:25;;12564:1;12554:35;;12569:18;;:::i;:::-;12554:35;12611:1;12608;12604:9;12599:14;;12434:185;;;;:::o;12625:234::-;12765:34;12761:1;12753:6;12749:14;12742:58;12834:17;12829:2;12821:6;12817:15;12810:42;12625:234;:::o;12865:366::-;13007:3;13028:67;13092:2;13087:3;13028:67;:::i;:::-;13021:74;;13104:93;13193:3;13104:93;:::i;:::-;13222:2;13217:3;13213:12;13206:19;;12865:366;;;:::o;13237:419::-;13403:4;13441:2;13430:9;13426:18;13418:26;;13490:9;13484:4;13480:20;13476:1;13465:9;13461:17;13454:47;13518:131;13644:4;13518:131;:::i;:::-;13510:139;;13237:419;;;:::o;13662:227::-;13802:34;13798:1;13790:6;13786:14;13779:58;13871:10;13866:2;13858:6;13854:15;13847:35;13662:227;:::o;13895:366::-;14037:3;14058:67;14122:2;14117:3;14058:67;:::i;:::-;14051:74;;14134:93;14223:3;14134:93;:::i;:::-;14252:2;14247:3;14243:12;14236:19;;13895:366;;;:::o;14267:419::-;14433:4;14471:2;14460:9;14456:18;14448:26;;14520:9;14514:4;14510:20;14506:1;14495:9;14491:17;14484:47;14548:131;14674:4;14548:131;:::i;:::-;14540:139;;14267:419;;;:::o;14692:171::-;14832:23;14828:1;14820:6;14816:14;14809:47;14692:171;:::o;14869:366::-;15011:3;15032:67;15096:2;15091:3;15032:67;:::i;:::-;15025:74;;15108:93;15197:3;15108:93;:::i;:::-;15226:2;15221:3;15217:12;15210:19;;14869:366;;;:::o;15241:419::-;15407:4;15445:2;15434:9;15430:18;15422:26;;15494:9;15488:4;15484:20;15480:1;15469:9;15465:17;15458:47;15522:131;15648:4;15522:131;:::i;:::-;15514:139;;15241:419;;;:::o;15666:244::-;15806:34;15802:1;15794:6;15790:14;15783:58;15875:27;15870:2;15862:6;15858:15;15851:52;15666:244;:::o;15916:366::-;16058:3;16079:67;16143:2;16138:3;16079:67;:::i;:::-;16072:74;;16155:93;16244:3;16155:93;:::i;:::-;16273:2;16268:3;16264:12;16257:19;;15916:366;;;:::o;16288:419::-;16454:4;16492:2;16481:9;16477:18;16469:26;;16541:9;16535:4;16531:20;16527:1;16516:9;16512:17;16505:47;16569:131;16695:4;16569:131;:::i;:::-;16561:139;;16288:419;;;:::o;16713:224::-;16853:34;16849:1;16841:6;16837:14;16830:58;16922:7;16917:2;16909:6;16905:15;16898:32;16713:224;:::o;16943:366::-;17085:3;17106:67;17170:2;17165:3;17106:67;:::i;:::-;17099:74;;17182:93;17271:3;17182:93;:::i;:::-;17300:2;17295:3;17291:12;17284:19;;16943:366;;;:::o;17315:419::-;17481:4;17519:2;17508:9;17504:18;17496:26;;17568:9;17562:4;17558:20;17554:1;17543:9;17539:17;17532:47;17596:131;17722:4;17596:131;:::i;:::-;17588:139;;17315:419;;;:::o;17740:223::-;17880:34;17876:1;17868:6;17864:14;17857:58;17949:6;17944:2;17936:6;17932:15;17925:31;17740:223;:::o;17969:366::-;18111:3;18132:67;18196:2;18191:3;18132:67;:::i;:::-;18125:74;;18208:93;18297:3;18208:93;:::i;:::-;18326:2;18321:3;18317:12;18310:19;;17969:366;;;:::o;18341:419::-;18507:4;18545:2;18534:9;18530:18;18522:26;;18594:9;18588:4;18584:20;18580:1;18569:9;18565:17;18558:47;18622:131;18748:4;18622:131;:::i;:::-;18614:139;;18341:419;;;:::o;18766:240::-;18906:34;18902:1;18894:6;18890:14;18883:58;18975:23;18970:2;18962:6;18958:15;18951:48;18766:240;:::o;19012:366::-;19154:3;19175:67;19239:2;19234:3;19175:67;:::i;:::-;19168:74;;19251:93;19340:3;19251:93;:::i;:::-;19369:2;19364:3;19360:12;19353:19;;19012:366;;;:::o;19384:419::-;19550:4;19588:2;19577:9;19573:18;19565:26;;19637:9;19631:4;19627:20;19623:1;19612:9;19608:17;19601:47;19665:131;19791:4;19665:131;:::i;:::-;19657:139;;19384:419;;;:::o;19809:239::-;19949:34;19945:1;19937:6;19933:14;19926:58;20018:22;20013:2;20005:6;20001:15;19994:47;19809:239;:::o;20054:366::-;20196:3;20217:67;20281:2;20276:3;20217:67;:::i;:::-;20210:74;;20293:93;20382:3;20293:93;:::i;:::-;20411:2;20406:3;20402:12;20395:19;;20054:366;;;:::o;20426:419::-;20592:4;20630:2;20619:9;20615:18;20607:26;;20679:9;20673:4;20669:20;20665:1;20654:9;20650:17;20643:47;20707:131;20833:4;20707:131;:::i;:::-;20699:139;;20426:419;;;:::o;20851:225::-;20991:34;20987:1;20979:6;20975:14;20968:58;21060:8;21055:2;21047:6;21043:15;21036:33;20851:225;:::o;21082:366::-;21224:3;21245:67;21309:2;21304:3;21245:67;:::i;:::-;21238:74;;21321:93;21410:3;21321:93;:::i;:::-;21439:2;21434:3;21430:12;21423:19;;21082:366;;;:::o;21454:419::-;21620:4;21658:2;21647:9;21643:18;21635:26;;21707:9;21701:4;21697:20;21693:1;21682:9;21678:17;21671:47;21735:131;21861:4;21735:131;:::i;:::-;21727:139;;21454:419;;;:::o;21879:223::-;22019:34;22015:1;22007:6;22003:14;21996:58;22088:6;22083:2;22075:6;22071:15;22064:31;21879:223;:::o;22108:366::-;22250:3;22271:67;22335:2;22330:3;22271:67;:::i;:::-;22264:74;;22347:93;22436:3;22347:93;:::i;:::-;22465:2;22460:3;22456:12;22449:19;;22108:366;;;:::o;22480:419::-;22646:4;22684:2;22673:9;22669:18;22661:26;;22733:9;22727:4;22723:20;22719:1;22708:9;22704:17;22697:47;22761:131;22887:4;22761:131;:::i;:::-;22753:139;;22480:419;;;:::o;22905:221::-;23045:34;23041:1;23033:6;23029:14;23022:58;23114:4;23109:2;23101:6;23097:15;23090:29;22905:221;:::o;23132:366::-;23274:3;23295:67;23359:2;23354:3;23295:67;:::i;:::-;23288:74;;23371:93;23460:3;23371:93;:::i;:::-;23489:2;23484:3;23480:12;23473:19;;23132:366;;;:::o;23504:419::-;23670:4;23708:2;23697:9;23693:18;23685:26;;23757:9;23751:4;23747:20;23743:1;23732:9;23728:17;23721:47;23785:131;23911:4;23785:131;:::i;:::-;23777:139;;23504:419;;;:::o;23929:224::-;24069:34;24065:1;24057:6;24053:14;24046:58;24138:7;24133:2;24125:6;24121:15;24114:32;23929:224;:::o;24159:366::-;24301:3;24322:67;24386:2;24381:3;24322:67;:::i;:::-;24315:74;;24398:93;24487:3;24398:93;:::i;:::-;24516:2;24511:3;24507:12;24500:19;;24159:366;;;:::o;24531:419::-;24697:4;24735:2;24724:9;24720:18;24712:26;;24784:9;24778:4;24774:20;24770:1;24759:9;24755:17;24748:47;24812:131;24938:4;24812:131;:::i;:::-;24804:139;;24531:419;;;:::o;24956:222::-;25096:34;25092:1;25084:6;25080:14;25073:58;25165:5;25160:2;25152:6;25148:15;25141:30;24956:222;:::o;25184:366::-;25326:3;25347:67;25411:2;25406:3;25347:67;:::i;:::-;25340:74;;25423:93;25512:3;25423:93;:::i;:::-;25541:2;25536:3;25532:12;25525:19;;25184:366;;;:::o;25556:419::-;25722:4;25760:2;25749:9;25745:18;25737:26;;25809:9;25803:4;25799:20;25795:1;25784:9;25780:17;25773:47;25837:131;25963:4;25837:131;:::i;:::-;25829:139;;25556:419;;;:::o;25981:172::-;26121:24;26117:1;26109:6;26105:14;26098:48;25981:172;:::o;26159:366::-;26301:3;26322:67;26386:2;26381:3;26322:67;:::i;:::-;26315:74;;26398:93;26487:3;26398:93;:::i;:::-;26516:2;26511:3;26507:12;26500:19;;26159:366;;;:::o;26531:419::-;26697:4;26735:2;26724:9;26720:18;26712:26;;26784:9;26778:4;26774:20;26770:1;26759:9;26755:17;26748:47;26812:131;26938:4;26812:131;:::i;:::-;26804:139;;26531:419;;;:::o;26956:297::-;27096:34;27092:1;27084:6;27080:14;27073:58;27165:34;27160:2;27152:6;27148:15;27141:59;27234:11;27229:2;27221:6;27217:15;27210:36;26956:297;:::o;27259:366::-;27401:3;27422:67;27486:2;27481:3;27422:67;:::i;:::-;27415:74;;27498:93;27587:3;27498:93;:::i;:::-;27616:2;27611:3;27607:12;27600:19;;27259:366;;;:::o;27631:419::-;27797:4;27835:2;27824:9;27820:18;27812:26;;27884:9;27878:4;27874:20;27870:1;27859:9;27855:17;27848:47;27912:131;28038:4;27912:131;:::i;:::-;27904:139;;27631:419;;;:::o;28056:240::-;28196:34;28192:1;28184:6;28180:14;28173:58;28265:23;28260:2;28252:6;28248:15;28241:48;28056:240;:::o;28302:366::-;28444:3;28465:67;28529:2;28524:3;28465:67;:::i;:::-;28458:74;;28541:93;28630:3;28541:93;:::i;:::-;28659:2;28654:3;28650:12;28643:19;;28302:366;;;:::o;28674:419::-;28840:4;28878:2;28867:9;28863:18;28855:26;;28927:9;28921:4;28917:20;28913:1;28902:9;28898:17;28891:47;28955:131;29081:4;28955:131;:::i;:::-;28947:139;;28674:419;;;:::o;29099:169::-;29239:21;29235:1;29227:6;29223:14;29216:45;29099:169;:::o;29274:366::-;29416:3;29437:67;29501:2;29496:3;29437:67;:::i;:::-;29430:74;;29513:93;29602:3;29513:93;:::i;:::-;29631:2;29626:3;29622:12;29615:19;;29274:366;;;:::o;29646:419::-;29812:4;29850:2;29839:9;29835:18;29827:26;;29899:9;29893:4;29889:20;29885:1;29874:9;29870:17;29863:47;29927:131;30053:4;29927:131;:::i;:::-;29919:139;;29646:419;;;:::o;30071:241::-;30211:34;30207:1;30199:6;30195:14;30188:58;30280:24;30275:2;30267:6;30263:15;30256:49;30071:241;:::o;30318:366::-;30460:3;30481:67;30545:2;30540:3;30481:67;:::i;:::-;30474:74;;30557:93;30646:3;30557:93;:::i;:::-;30675:2;30670:3;30666:12;30659:19;;30318:366;;;:::o;30690:419::-;30856:4;30894:2;30883:9;30879:18;30871:26;;30943:9;30937:4;30933:20;30929:1;30918:9;30914:17;30907:47;30971:131;31097:4;30971:131;:::i;:::-;30963:139;;30690:419;;;:::o;31115:191::-;31155:4;31175:20;31193:1;31175:20;:::i;:::-;31170:25;;31209:20;31227:1;31209:20;:::i;:::-;31204:25;;31248:1;31245;31242:8;31239:34;;;31253:18;;:::i;:::-;31239:34;31298:1;31295;31291:9;31283:17;;31115:191;;;;:::o;31312:225::-;31452:34;31448:1;31440:6;31436:14;31429:58;31521:8;31516:2;31508:6;31504:15;31497:33;31312:225;:::o;31543:366::-;31685:3;31706:67;31770:2;31765:3;31706:67;:::i;:::-;31699:74;;31782:93;31871:3;31782:93;:::i;:::-;31900:2;31895:3;31891:12;31884:19;;31543:366;;;:::o;31915:419::-;32081:4;32119:2;32108:9;32104:18;32096:26;;32168:9;32162:4;32158:20;32154:1;32143:9;32139:17;32132:47;32196:131;32322:4;32196:131;:::i;:::-;32188:139;;31915:419;;;:::o;32340:147::-;32441:11;32478:3;32463:18;;32340:147;;;;:::o;32493:114::-;;:::o;32613:398::-;32772:3;32793:83;32874:1;32869:3;32793:83;:::i;:::-;32786:90;;32885:93;32974:3;32885:93;:::i;:::-;33003:1;32998:3;32994:11;32987:18;;32613:398;;;:::o;33017:379::-;33201:3;33223:147;33366:3;33223:147;:::i;:::-;33216:154;;33387:3;33380:10;;33017:379;;;:::o;33402:442::-;33551:4;33589:2;33578:9;33574:18;33566:26;;33602:71;33670:1;33659:9;33655:17;33646:6;33602:71;:::i;:::-;33683:72;33751:2;33740:9;33736:18;33727:6;33683:72;:::i;:::-;33765;33833:2;33822:9;33818:18;33809:6;33765:72;:::i;:::-;33402:442;;;;;;:::o;33850:180::-;33898:77;33895:1;33888:88;33995:4;33992:1;33985:15;34019:4;34016:1;34009:15;34036:180;34084:77;34081:1;34074:88;34181:4;34178:1;34171:15;34205:4;34202:1;34195:15;34222:143;34279:5;34310:6;34304:13;34295:22;;34326:33;34353:5;34326:33;:::i;:::-;34222:143;;;;:::o;34371:351::-;34441:6;34490:2;34478:9;34469:7;34465:23;34461:32;34458:119;;;34496:79;;:::i;:::-;34458:119;34616:1;34641:64;34697:7;34688:6;34677:9;34673:22;34641:64;:::i;:::-;34631:74;;34587:128;34371:351;;;;:::o;34728:85::-;34773:7;34802:5;34791:16;;34728:85;;;:::o;34819:158::-;34877:9;34910:61;34928:42;34937:32;34963:5;34937:32;:::i;:::-;34928:42;:::i;:::-;34910:61;:::i;:::-;34897:74;;34819:158;;;:::o;34983:147::-;35078:45;35117:5;35078:45;:::i;:::-;35073:3;35066:58;34983:147;;:::o;35136:114::-;35203:6;35237:5;35231:12;35221:22;;35136:114;;;:::o;35256:184::-;35355:11;35389:6;35384:3;35377:19;35429:4;35424:3;35420:14;35405:29;;35256:184;;;;:::o;35446:132::-;35513:4;35536:3;35528:11;;35566:4;35561:3;35557:14;35549:22;;35446:132;;;:::o;35584:108::-;35661:24;35679:5;35661:24;:::i;:::-;35656:3;35649:37;35584:108;;:::o;35698:179::-;35767:10;35788:46;35830:3;35822:6;35788:46;:::i;:::-;35866:4;35861:3;35857:14;35843:28;;35698:179;;;;:::o;35883:113::-;35953:4;35985;35980:3;35976:14;35968:22;;35883:113;;;:::o;36032:732::-;36151:3;36180:54;36228:5;36180:54;:::i;:::-;36250:86;36329:6;36324:3;36250:86;:::i;:::-;36243:93;;36360:56;36410:5;36360:56;:::i;:::-;36439:7;36470:1;36455:284;36480:6;36477:1;36474:13;36455:284;;;36556:6;36550:13;36583:63;36642:3;36627:13;36583:63;:::i;:::-;36576:70;;36669:60;36722:6;36669:60;:::i;:::-;36659:70;;36515:224;36502:1;36499;36495:9;36490:14;;36455:284;;;36459:14;36755:3;36748:10;;36156:608;;;36032:732;;;;:::o;36770:831::-;37033:4;37071:3;37060:9;37056:19;37048:27;;37085:71;37153:1;37142:9;37138:17;37129:6;37085:71;:::i;:::-;37166:80;37242:2;37231:9;37227:18;37218:6;37166:80;:::i;:::-;37293:9;37287:4;37283:20;37278:2;37267:9;37263:18;37256:48;37321:108;37424:4;37415:6;37321:108;:::i;:::-;37313:116;;37439:72;37507:2;37496:9;37492:18;37483:6;37439:72;:::i;:::-;37521:73;37589:3;37578:9;37574:19;37565:6;37521:73;:::i;:::-;36770:831;;;;;;;;:::o;37607:807::-;37856:4;37894:3;37883:9;37879:19;37871:27;;37908:71;37976:1;37965:9;37961:17;37952:6;37908:71;:::i;:::-;37989:72;38057:2;38046:9;38042:18;38033:6;37989:72;:::i;:::-;38071:80;38147:2;38136:9;38132:18;38123:6;38071:80;:::i;:::-;38161;38237:2;38226:9;38222:18;38213:6;38161:80;:::i;:::-;38251:73;38319:3;38308:9;38304:19;38295:6;38251:73;:::i;:::-;38334;38402:3;38391:9;38387:19;38378:6;38334:73;:::i;:::-;37607:807;;;;;;;;;:::o;38420:143::-;38477:5;38508:6;38502:13;38493:22;;38524:33;38551:5;38524:33;:::i;:::-;38420:143;;;;:::o;38569:663::-;38657:6;38665;38673;38722:2;38710:9;38701:7;38697:23;38693:32;38690:119;;;38728:79;;:::i;:::-;38690:119;38848:1;38873:64;38929:7;38920:6;38909:9;38905:22;38873:64;:::i;:::-;38863:74;;38819:128;38986:2;39012:64;39068:7;39059:6;39048:9;39044:22;39012:64;:::i;:::-;39002:74;;38957:129;39125:2;39151:64;39207:7;39198:6;39187:9;39183:22;39151:64;:::i;:::-;39141:74;;39096:129;38569:663;;;;;:::o
Swarm Source
ipfs://5be2edb3f71273d68b6fc83eca27ae3a8915268c218ddcbf1ba63aa5d984ab4e
Loading...
Loading
Loading...
Loading
Net Worth in USD
$412.72
Net Worth in ETH
0.199266
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,071.74 | 0.1992 | $412.72 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.