Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 TAP
Holders
40
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
19,602,494.019875 TAPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TAP
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-22 */ /** https://twitter.com/cz_binance/status/1583667662408011776 https://t.me/TAPerc20 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * 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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: 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)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev 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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ 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; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev 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`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ 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; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ 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; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ 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); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ 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); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ 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); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ 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); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // 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. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ 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); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } ////// src/IUniswapV2Factory.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract TAP is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 25; // 25 = .25% bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // 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 ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("THE ADOPTION PROTOCOL", "TAP") { 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); uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0x68594A5F0508abec6d59a4899A4D9f59c8a12069); // set as marketing wallet devWallet = address(0x68594A5F0508abec6d59a4899A4D9f59c8a12069); // set as dev wallet // 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 {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled 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; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum ; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 11, "Must keep fees at 11% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 11, "Must keep fees at 11% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } 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); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); 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 + balanceOf(to) <= maxWallet, "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) <= maxWallet, "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; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } 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); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } 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 ); } 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 deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"buyMarketingFee","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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"sellMarketingFee","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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","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":"tokensForMarketing","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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","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
60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280601581526020017f5448452041444f5054494f4e2050524f544f434f4c00000000000000000000008152506040518060400160405280600381526020017f544150000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b04565b5080600490805190602001906200014792919062000b04565b5050506200016a6200015e620005c460201b60201c565b620005cc60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200069260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c1e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c1e565b6040518363ffffffff1660e01b8152600401620002e992919062000c61565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c1e565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200069260201b60201c565b6200038c60a05160016200077c60201b60201c565b60008060008060008060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600582620003dc919062000cc7565b620003e8919062000d57565b60098190555086601581905550856016819055508460178190555060175460165460155462000418919062000d8f565b62000424919062000d8f565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000454919062000d8f565b62000460919062000d8f565b6018819055507368594a5f0508abec6d59a4899a4d9f59c8a12069600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507368594a5f0508abec6d59a4899a4d9f59c8a12069600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000532620005246200081d60201b60201c565b60016200084760201b60201c565b620005453060016200084760201b60201c565b6200055a61dead60016200084760201b60201c565b6200057c6200056e6200081d60201b60201c565b60016200069260201b60201c565b6200058f3060016200069260201b60201c565b620005a461dead60016200069260201b60201c565b620005b633826200098160201b60201c565b505050505050505062000fae565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a2620005c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006c86200081d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000721576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007189062000e4d565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000857620005c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200087d6200081d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008cd9062000e4d565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000975919062000e8c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009eb9062000ef9565b60405180910390fd5b62000a086000838362000afa60201b60201c565b806002600082825462000a1c919062000d8f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a73919062000d8f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ada919062000f2c565b60405180910390a362000af66000838362000aff60201b60201c565b5050565b505050565b505050565b82805462000b129062000f78565b90600052602060002090601f01602090048101928262000b36576000855562000b82565b82601f1062000b5157805160ff191683800117855562000b82565b8280016001018555821562000b82579182015b8281111562000b8157825182559160200191906001019062000b64565b5b50905062000b91919062000b95565b5090565b5b8082111562000bb057600081600090555060010162000b96565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000be68262000bb9565b9050919050565b62000bf88162000bd9565b811462000c0457600080fd5b50565b60008151905062000c188162000bed565b92915050565b60006020828403121562000c375762000c3662000bb4565b5b600062000c478482850162000c07565b91505092915050565b62000c5b8162000bd9565b82525050565b600060408201905062000c78600083018562000c50565b62000c87602083018462000c50565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cd48262000c8e565b915062000ce18362000c8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d1d5762000d1c62000c98565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d648262000c8e565b915062000d718362000c8e565b92508262000d845762000d8362000d28565b5b828204905092915050565b600062000d9c8262000c8e565b915062000da98362000c8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000de15762000de062000c98565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e3560208362000dec565b915062000e428262000dfd565b602082019050919050565b6000602082019050818103600083015262000e688162000e26565b9050919050565b60008115159050919050565b62000e868162000e6f565b82525050565b600060208201905062000ea3600083018462000e7b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ee1601f8362000dec565b915062000eee8262000ea9565b602082019050919050565b6000602082019050818103600083015262000f148162000ed2565b9050919050565b62000f268162000c8e565b82525050565b600060208201905062000f43600083018462000f1b565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9157607f821691505b6020821081141562000fa85762000fa762000f49565b5b50919050565b60805160a051615acf62001036600039600081816113da01528181611bea01528181612721015281816127d80152818161280501528181612e4901528181613f0801528181613fc10152613fee015260008181610f9001528181612df101528181614164015281816142450152818161426c01528181614308015261432f0152615acf6000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190614477565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614532565b610f51565b60405161041c919061458d565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906145a8565b610f6f565b604051610459919061458d565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b6040516104849190614634565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af919061465e565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906145a8565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b604051610503919061465e565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e919061465e565b60405180910390f35b34801561054357600080fd5b5061054c611104565b604051610559919061465e565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b604051610584919061465e565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190614679565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906146a6565b61120c565b6040516105ea919061458d565b60405180910390f35b3480156105ff57600080fd5b50610608611304565b6040516106159190614708565b60405180910390f35b34801561062a57600080fd5b5061063361130a565b604051610640919061465e565b60405180910390f35b34801561065557600080fd5b5061065e611310565b60405161066b919061458d565b60405180910390f35b34801561068057600080fd5b50610689611323565b604051610696919061473f565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190614532565b61132c565b6040516106d3919061458d565b60405180910390f35b3480156106e857600080fd5b506106f16113d8565b6040516106fe9190614708565b60405180910390f35b34801561071357600080fd5b5061071c6113fc565b604051610729919061458d565b60405180910390f35b34801561073e57600080fd5b50610759600480360381019061075491906145a8565b61140f565b604051610766919061458d565b60405180910390f35b34801561077b57600080fd5b50610784611465565b604051610791919061465e565b60405180910390f35b3480156107a657600080fd5b506107af61146b565b6040516107bc919061458d565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e791906145a8565b61147e565b6040516107f9919061465e565b60405180910390f35b34801561080e57600080fd5b506108176114c6565b005b34801561082557600080fd5b50610840600480360381019061083b9190614786565b61154e565b005b34801561084e57600080fd5b5061085761168e565b604051610864919061458d565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906147d9565b61172e565b005b3480156108a257600080fd5b506108ab611805565b6040516108b89190614708565b60405180910390f35b3480156108cd57600080fd5b506108d661182b565b6040516108e3919061465e565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614819565b611831565b005b34801561092157600080fd5b5061092a611930565b005b34801561093857600080fd5b506109416119eb565b60405161094e9190614708565b60405180910390f35b34801561096357600080fd5b5061096c611a15565b6040516109799190614708565b60405180910390f35b34801561098e57600080fd5b50610997611a3b565b6040516109a4919061465e565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf919061486c565b611a41565b005b3480156109e257600080fd5b506109eb611ada565b6040516109f89190614477565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a2391906147d9565b611b6c565b005b348015610a3657600080fd5b50610a3f611c85565b604051610a4c919061465e565b60405180910390f35b348015610a6157600080fd5b50610a6a611c8b565b604051610a77919061465e565b60405180910390f35b348015610a8c57600080fd5b50610a95611c91565b604051610aa2919061465e565b60405180910390f35b348015610ab757600080fd5b50610ac0611c97565b604051610acd919061465e565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190614532565b611c9d565b604051610b0a919061458d565b60405180910390f35b348015610b1f57600080fd5b50610b28611d88565b604051610b35919061465e565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190614532565b611d8e565b604051610b72919061458d565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d91906145a8565b611dac565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc691906145a8565b611ee8565b604051610bd8919061458d565b60405180910390f35b348015610bed57600080fd5b50610bf6611f08565b604051610c03919061458d565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e91906147d9565b611f1b565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614819565b612040565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190614679565b61213f565b005b348015610c9357600080fd5b50610c9c61223b565b604051610ca9919061458d565b60405180910390f35b348015610cbe57600080fd5b50610cc761224e565b604051610cd4919061465e565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614679565b612254565b604051610d11919061458d565b60405180910390f35b348015610d2657600080fd5b50610d2f6123a9565b604051610d3c919061465e565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614899565b6123af565b604051610d79919061465e565b60405180910390f35b348015610d8e57600080fd5b50610d97612436565b604051610da4919061465e565b60405180910390f35b348015610db957600080fd5b50610dc261243c565b604051610dcf919061458d565b60405180910390f35b348015610de457600080fd5b50610ded6124dc565b604051610dfa919061465e565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e2591906145a8565b6124e2565b005b348015610e3857600080fd5b50610e416125da565b604051610e4e919061465e565b60405180910390f35b348015610e6357600080fd5b50610e6c6125e0565b604051610e79919061465e565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190614679565b6125e6565b604051610eb6919061458d565b60405180910390f35b606060038054610ece90614908565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614908565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128be565b84846128c6565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46128be565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119eb565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614986565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128be565b73ffffffffffffffffffffffffffffffffffffffff166111366119eb565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390614986565b60405180910390fd5b670de0b6b3a76400006103e860016111a2610fb2565b6111ac91906149d5565b6111b69190614a5e565b6111c09190614a5e565b811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614b01565b60405180910390fd5b8060088190555050565b6000611219848484612a91565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112646128be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90614b93565b60405180910390fd5b6112f8856112f06128be565b8584036128c6565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113ce6113396128be565b8484600160006113476128be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113c99190614bb3565b6128c6565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114ce6128be565b73ffffffffffffffffffffffffffffffffffffffff166114ec6119eb565b73ffffffffffffffffffffffffffffffffffffffff1614611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990614986565b60405180910390fd5b61154c60006137e4565b565b6115566128be565b73ffffffffffffffffffffffffffffffffffffffff166115746119eb565b73ffffffffffffffffffffffffffffffffffffffff16146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190614986565b60405180910390fd5b61025883101561160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690614c7b565b60405180910390fd5b6103e88211158015611622575060008210155b611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890614d0d565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116986128be565b73ffffffffffffffffffffffffffffffffffffffff166116b66119eb565b73ffffffffffffffffffffffffffffffffffffffff161461170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390614986565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117366128be565b73ffffffffffffffffffffffffffffffffffffffff166117546119eb565b73ffffffffffffffffffffffffffffffffffffffff16146117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a190614986565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6118396128be565b73ffffffffffffffffffffffffffffffffffffffff166118576119eb565b73ffffffffffffffffffffffffffffffffffffffff16146118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490614986565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118d59190614bb3565b6118df9190614bb3565b601481905550600b601454111561192b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192290614d79565b60405180910390fd5b505050565b6119386128be565b73ffffffffffffffffffffffffffffffffffffffff166119566119eb565b73ffffffffffffffffffffffffffffffffffffffff16146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390614986565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a496128be565b73ffffffffffffffffffffffffffffffffffffffff16611a676119eb565b73ffffffffffffffffffffffffffffffffffffffff1614611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490614986565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611ae990614908565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1590614908565b8015611b625780601f10611b3757610100808354040283529160200191611b62565b820191906000526020600020905b815481529060010190602001808311611b4557829003601f168201915b5050505050905090565b611b746128be565b73ffffffffffffffffffffffffffffffffffffffff16611b926119eb565b73ffffffffffffffffffffffffffffffffffffffff1614611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf90614986565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90614e0b565b60405180910390fd5b611c8182826138aa565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cac6128be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6090614e9d565b60405180910390fd5b611d7d611d746128be565b858584036128c6565b600191505092915050565b600e5481565b6000611da2611d9b6128be565b8484612a91565b6001905092915050565b611db46128be565b73ffffffffffffffffffffffffffffffffffffffff16611dd26119eb565b73ffffffffffffffffffffffffffffffffffffffff1614611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90614986565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f236128be565b73ffffffffffffffffffffffffffffffffffffffff16611f416119eb565b73ffffffffffffffffffffffffffffffffffffffff1614611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e90614986565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612034919061458d565b60405180910390a25050565b6120486128be565b73ffffffffffffffffffffffffffffffffffffffff166120666119eb565b73ffffffffffffffffffffffffffffffffffffffff16146120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b390614986565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120e49190614bb3565b6120ee9190614bb3565b601881905550600b601854111561213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190614d79565b60405180910390fd5b505050565b6121476128be565b73ffffffffffffffffffffffffffffffffffffffff166121656119eb565b73ffffffffffffffffffffffffffffffffffffffff16146121bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b290614986565b60405180910390fd5b670de0b6b3a76400006103e860056121d1610fb2565b6121db91906149d5565b6121e59190614a5e565b6121ef9190614a5e565b811015612231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222890614f2f565b60405180910390fd5b80600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061225e6128be565b73ffffffffffffffffffffffffffffffffffffffff1661227c6119eb565b73ffffffffffffffffffffffffffffffffffffffff16146122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990614986565b60405180910390fd5b620186a060016122e0610fb2565b6122ea91906149d5565b6122f49190614a5e565b821015612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90614fc1565b60405180910390fd5b6103e86005612343610fb2565b61234d91906149d5565b6123579190614a5e565b821115612399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239090615053565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006124466128be565b73ffffffffffffffffffffffffffffffffffffffff166124646119eb565b73ffffffffffffffffffffffffffffffffffffffff16146124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190614986565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124ea6128be565b73ffffffffffffffffffffffffffffffffffffffff166125086119eb565b73ffffffffffffffffffffffffffffffffffffffff161461255e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255590614986565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c5906150e5565b60405180910390fd5b6125d7816137e4565b50565b601a5481565b600a5481565b60006125f06128be565b73ffffffffffffffffffffffffffffffffffffffff1661260e6119eb565b73ffffffffffffffffffffffffffffffffffffffff1614612664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265b90614986565b60405180910390fd5b600f546010546126749190614bb3565b42116126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac90615151565b60405180910390fd5b6103e88211156126fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f1906151e3565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161275c9190614708565b602060405180830381865afa158015612779573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279d9190615218565b905060006127c86127106127ba868561394b90919063ffffffff16565b61396190919063ffffffff16565b90506000811115612801576128007f000000000000000000000000000000000000000000000000000000000000000061dead83613977565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561286e57600080fd5b505af1158015612882573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d906152b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d90615349565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a84919061465e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af8906153db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b689061546d565b60405180910390fd5b6000811415612b8b57612b8683836000613977565b6137df565b601160009054906101000a900460ff161561320957612ba86119eb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c165750612be66119eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c4f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c89575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ca25750600560149054906101000a900460ff16155b1561320857601160019054906101000a900460ff16612d9c57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d5c5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d92906154d9565b60405180910390fd5b5b601360009054906101000a900460ff1615612f6457612db96119eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e4057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e9857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f635743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1590615591565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130075750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561306957600a546130188361147e565b826130239190614bb3565b1115613064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305b906155fd565b60405180910390fd5b613207565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561310c5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561315b57600854811115613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d9061568f565b60405180910390fd5b613206565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661320557600a546131b88361147e565b826131c39190614bb3565b1115613204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fb906155fd565b60405180910390fd5b5b5b5b5b5b60006132143061147e565b9050600060095482101590508080156132395750601160029054906101000a900460ff165b80156132525750600560149054906101000a900460ff16155b80156132a85750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132fe5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133545750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613398576001600560146101000a81548160ff02191690831515021790555061337c613bf8565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156133fe5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134165750600c60009054906101000a900460ff165b80156134315750600d54600e5461342d9190614bb3565b4210155b80156134875750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561349657613494613edf565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061354c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561355657600090505b600081156137cf57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135b957506000601854115b15613686576135e660646135d86018548861394b90919063ffffffff16565b61396190919063ffffffff16565b9050601854601a54826135f991906149d5565b6136039190614a5e565b601d60008282546136149190614bb3565b92505081905550601854601b548261362c91906149d5565b6136369190614a5e565b601e60008282546136479190614bb3565b925050819055506018546019548261365f91906149d5565b6136699190614a5e565b601c600082825461367a9190614bb3565b925050819055506137ab565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136e157506000601454115b156137aa5761370e60646137006014548861394b90919063ffffffff16565b61396190919063ffffffff16565b90506014546016548261372191906149d5565b61372b9190614a5e565b601d600082825461373c9190614bb3565b925050819055506014546017548261375491906149d5565b61375e9190614a5e565b601e600082825461376f9190614bb3565b925050819055506014546015548261378791906149d5565b6137919190614a5e565b601c60008282546137a29190614bb3565b925050819055505b5b60008111156137c0576137bf873083613977565b5b80856137cc91906156af565b94505b6137da878787613977565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361395991906149d5565b905092915050565b6000818361396f9190614a5e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139de906153db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4e9061546d565b60405180910390fd5b613a628383836140a5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613adf90615755565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b7b9190614bb3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613bdf919061465e565b60405180910390a3613bf28484846140aa565b50505050565b6000613c033061147e565b90506000601e54601c54601d54613c1a9190614bb3565b613c249190614bb3565b9050600080831480613c365750600082145b15613c4357505050613edd565b6014600954613c5291906149d5565b831115613c6b576014600954613c6891906149d5565b92505b6000600283601d5486613c7e91906149d5565b613c889190614a5e565b613c929190614a5e565b90506000613ca982866140af90919063ffffffff16565b90506000479050613cb9826140c5565b6000613cce82476140af90919063ffffffff16565b90506000613cf987613ceb601c548561394b90919063ffffffff16565b61396190919063ffffffff16565b90506000613d2488613d16601e548661394b90919063ffffffff16565b61396190919063ffffffff16565b90506000818385613d3591906156af565b613d3f91906156af565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d9f906157a6565b60006040518083038185875af1925050503d8060008114613ddc576040519150601f19603f3d011682016040523d82523d6000602084013e613de1565b606091505b505080985050600087118015613df75750600081115b15613e4457613e068782614302565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e3b939291906157bb565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e8a906157a6565b60006040518083038185875af1925050503d8060008114613ec7576040519150601f19603f3d011682016040523d82523d6000602084013e613ecc565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613f439190614708565b602060405180830381865afa158015613f60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f849190615218565b90506000613fb1612710613fa3600b548561394b90919063ffffffff16565b61396190919063ffffffff16565b90506000811115613fea57613fe97f000000000000000000000000000000000000000000000000000000000000000061dead83613977565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561405757600080fd5b505af115801561406b573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836140bd91906156af565b905092915050565b6000600267ffffffffffffffff8111156140e2576140e16157f2565b5b6040519080825280602002602001820160405280156141105781602001602082028036833780820191505090505b509050308160008151811061412857614127615821565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141f19190615865565b8160018151811061420557614204615821565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061426a307f0000000000000000000000000000000000000000000000000000000000000000846128c6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016142cc95949392919061598b565b600060405180830381600087803b1580156142e657600080fd5b505af11580156142fa573d6000803e3d6000fd5b505050505050565b61432d307f0000000000000000000000000000000000000000000000000000000000000000846128c6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614394969594939291906159e5565b60606040518083038185885af11580156143b2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143d79190615a46565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156144185780820151818401526020810190506143fd565b83811115614427576000848401525b50505050565b6000601f19601f8301169050919050565b6000614449826143de565b61445381856143e9565b93506144638185602086016143fa565b61446c8161442d565b840191505092915050565b60006020820190508181036000830152614491818461443e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144c98261449e565b9050919050565b6144d9816144be565b81146144e457600080fd5b50565b6000813590506144f6816144d0565b92915050565b6000819050919050565b61450f816144fc565b811461451a57600080fd5b50565b60008135905061452c81614506565b92915050565b6000806040838503121561454957614548614499565b5b6000614557858286016144e7565b92505060206145688582860161451d565b9150509250929050565b60008115159050919050565b61458781614572565b82525050565b60006020820190506145a2600083018461457e565b92915050565b6000602082840312156145be576145bd614499565b5b60006145cc848285016144e7565b91505092915050565b6000819050919050565b60006145fa6145f56145f08461449e565b6145d5565b61449e565b9050919050565b600061460c826145df565b9050919050565b600061461e82614601565b9050919050565b61462e81614613565b82525050565b60006020820190506146496000830184614625565b92915050565b614658816144fc565b82525050565b6000602082019050614673600083018461464f565b92915050565b60006020828403121561468f5761468e614499565b5b600061469d8482850161451d565b91505092915050565b6000806000606084860312156146bf576146be614499565b5b60006146cd868287016144e7565b93505060206146de868287016144e7565b92505060406146ef8682870161451d565b9150509250925092565b614702816144be565b82525050565b600060208201905061471d60008301846146f9565b92915050565b600060ff82169050919050565b61473981614723565b82525050565b60006020820190506147546000830184614730565b92915050565b61476381614572565b811461476e57600080fd5b50565b6000813590506147808161475a565b92915050565b60008060006060848603121561479f5761479e614499565b5b60006147ad8682870161451d565b93505060206147be8682870161451d565b92505060406147cf86828701614771565b9150509250925092565b600080604083850312156147f0576147ef614499565b5b60006147fe858286016144e7565b925050602061480f85828601614771565b9150509250929050565b60008060006060848603121561483257614831614499565b5b60006148408682870161451d565b93505060206148518682870161451d565b92505060406148628682870161451d565b9150509250925092565b60006020828403121561488257614881614499565b5b600061489084828501614771565b91505092915050565b600080604083850312156148b0576148af614499565b5b60006148be858286016144e7565b92505060206148cf858286016144e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061492057607f821691505b60208210811415614934576149336148d9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149706020836143e9565b915061497b8261493a565b602082019050919050565b6000602082019050818103600083015261499f81614963565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149e0826144fc565b91506149eb836144fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a2457614a236149a6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a69826144fc565b9150614a74836144fc565b925082614a8457614a83614a2f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614aeb602f836143e9565b9150614af682614a8f565b604082019050919050565b60006020820190508181036000830152614b1a81614ade565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614b7d6028836143e9565b9150614b8882614b21565b604082019050919050565b60006020820190508181036000830152614bac81614b70565b9050919050565b6000614bbe826144fc565b9150614bc9836144fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614bfe57614bfd6149a6565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c656033836143e9565b9150614c7082614c09565b604082019050919050565b60006020820190508181036000830152614c9481614c58565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614cf76030836143e9565b9150614d0282614c9b565b604082019050919050565b60006020820190508181036000830152614d2681614cea565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614d63601d836143e9565b9150614d6e82614d2d565b602082019050919050565b60006020820190508181036000830152614d9281614d56565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614df56039836143e9565b9150614e0082614d99565b604082019050919050565b60006020820190508181036000830152614e2481614de8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614e876025836143e9565b9150614e9282614e2b565b604082019050919050565b60006020820190508181036000830152614eb681614e7a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f196024836143e9565b9150614f2482614ebd565b604082019050919050565b60006020820190508181036000830152614f4881614f0c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614fab6035836143e9565b9150614fb682614f4f565b604082019050919050565b60006020820190508181036000830152614fda81614f9e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061503d6034836143e9565b915061504882614fe1565b604082019050919050565b6000602082019050818103600083015261506c81615030565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150cf6026836143e9565b91506150da82615073565b604082019050919050565b600060208201905081810360008301526150fe816150c2565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061513b6020836143e9565b915061514682615105565b602082019050919050565b6000602082019050818103600083015261516a8161512e565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006151cd602a836143e9565b91506151d882615171565b604082019050919050565b600060208201905081810360008301526151fc816151c0565b9050919050565b60008151905061521281614506565b92915050565b60006020828403121561522e5761522d614499565b5b600061523c84828501615203565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152a16024836143e9565b91506152ac82615245565b604082019050919050565b600060208201905081810360008301526152d081615294565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006153336022836143e9565b915061533e826152d7565b604082019050919050565b6000602082019050818103600083015261536281615326565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153c56025836143e9565b91506153d082615369565b604082019050919050565b600060208201905081810360008301526153f4816153b8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006154576023836143e9565b9150615462826153fb565b604082019050919050565b600060208201905081810360008301526154868161544a565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154c36016836143e9565b91506154ce8261548d565b602082019050919050565b600060208201905081810360008301526154f2816154b6565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061557b6049836143e9565b9150615586826154f9565b606082019050919050565b600060208201905081810360008301526155aa8161556e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006155e76013836143e9565b91506155f2826155b1565b602082019050919050565b60006020820190508181036000830152615616816155da565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006156796036836143e9565b91506156848261561d565b604082019050919050565b600060208201905081810360008301526156a88161566c565b9050919050565b60006156ba826144fc565b91506156c5836144fc565b9250828210156156d8576156d76149a6565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061573f6026836143e9565b915061574a826156e3565b604082019050919050565b6000602082019050818103600083015261576e81615732565b9050919050565b600081905092915050565b50565b6000615790600083615775565b915061579b82615780565b600082019050919050565b60006157b182615783565b9150819050919050565b60006060820190506157d0600083018661464f565b6157dd602083018561464f565b6157ea604083018461464f565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061585f816144d0565b92915050565b60006020828403121561587b5761587a614499565b5b600061588984828501615850565b91505092915050565b6000819050919050565b60006158b76158b26158ad84615892565b6145d5565b6144fc565b9050919050565b6158c78161589c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615902816144be565b82525050565b600061591483836158f9565b60208301905092915050565b6000602082019050919050565b6000615938826158cd565b61594281856158d8565b935061594d836158e9565b8060005b8381101561597e5781516159658882615908565b975061597083615920565b925050600181019050615951565b5085935050505092915050565b600060a0820190506159a0600083018861464f565b6159ad60208301876158be565b81810360408301526159bf818661592d565b90506159ce60608301856146f9565b6159db608083018461464f565b9695505050505050565b600060c0820190506159fa60008301896146f9565b615a07602083018861464f565b615a1460408301876158be565b615a2160608301866158be565b615a2e60808301856146f9565b615a3b60a083018461464f565b979650505050505050565b600080600060608486031215615a5f57615a5e614499565b5b6000615a6d86828701615203565b9350506020615a7e86828701615203565b9250506040615a8f86828701615203565b915050925092509256fea264697066735822122066e6fe200abf136e8ba4b4ca148ae117ba01a2856c839d0179c271f7e0ec1a6564736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190614477565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614532565b610f51565b60405161041c919061458d565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906145a8565b610f6f565b604051610459919061458d565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b6040516104849190614634565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af919061465e565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906145a8565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b604051610503919061465e565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e919061465e565b60405180910390f35b34801561054357600080fd5b5061054c611104565b604051610559919061465e565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b604051610584919061465e565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190614679565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906146a6565b61120c565b6040516105ea919061458d565b60405180910390f35b3480156105ff57600080fd5b50610608611304565b6040516106159190614708565b60405180910390f35b34801561062a57600080fd5b5061063361130a565b604051610640919061465e565b60405180910390f35b34801561065557600080fd5b5061065e611310565b60405161066b919061458d565b60405180910390f35b34801561068057600080fd5b50610689611323565b604051610696919061473f565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190614532565b61132c565b6040516106d3919061458d565b60405180910390f35b3480156106e857600080fd5b506106f16113d8565b6040516106fe9190614708565b60405180910390f35b34801561071357600080fd5b5061071c6113fc565b604051610729919061458d565b60405180910390f35b34801561073e57600080fd5b50610759600480360381019061075491906145a8565b61140f565b604051610766919061458d565b60405180910390f35b34801561077b57600080fd5b50610784611465565b604051610791919061465e565b60405180910390f35b3480156107a657600080fd5b506107af61146b565b6040516107bc919061458d565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e791906145a8565b61147e565b6040516107f9919061465e565b60405180910390f35b34801561080e57600080fd5b506108176114c6565b005b34801561082557600080fd5b50610840600480360381019061083b9190614786565b61154e565b005b34801561084e57600080fd5b5061085761168e565b604051610864919061458d565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906147d9565b61172e565b005b3480156108a257600080fd5b506108ab611805565b6040516108b89190614708565b60405180910390f35b3480156108cd57600080fd5b506108d661182b565b6040516108e3919061465e565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614819565b611831565b005b34801561092157600080fd5b5061092a611930565b005b34801561093857600080fd5b506109416119eb565b60405161094e9190614708565b60405180910390f35b34801561096357600080fd5b5061096c611a15565b6040516109799190614708565b60405180910390f35b34801561098e57600080fd5b50610997611a3b565b6040516109a4919061465e565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf919061486c565b611a41565b005b3480156109e257600080fd5b506109eb611ada565b6040516109f89190614477565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a2391906147d9565b611b6c565b005b348015610a3657600080fd5b50610a3f611c85565b604051610a4c919061465e565b60405180910390f35b348015610a6157600080fd5b50610a6a611c8b565b604051610a77919061465e565b60405180910390f35b348015610a8c57600080fd5b50610a95611c91565b604051610aa2919061465e565b60405180910390f35b348015610ab757600080fd5b50610ac0611c97565b604051610acd919061465e565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190614532565b611c9d565b604051610b0a919061458d565b60405180910390f35b348015610b1f57600080fd5b50610b28611d88565b604051610b35919061465e565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190614532565b611d8e565b604051610b72919061458d565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d91906145a8565b611dac565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc691906145a8565b611ee8565b604051610bd8919061458d565b60405180910390f35b348015610bed57600080fd5b50610bf6611f08565b604051610c03919061458d565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e91906147d9565b611f1b565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614819565b612040565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190614679565b61213f565b005b348015610c9357600080fd5b50610c9c61223b565b604051610ca9919061458d565b60405180910390f35b348015610cbe57600080fd5b50610cc761224e565b604051610cd4919061465e565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614679565b612254565b604051610d11919061458d565b60405180910390f35b348015610d2657600080fd5b50610d2f6123a9565b604051610d3c919061465e565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614899565b6123af565b604051610d79919061465e565b60405180910390f35b348015610d8e57600080fd5b50610d97612436565b604051610da4919061465e565b60405180910390f35b348015610db957600080fd5b50610dc261243c565b604051610dcf919061458d565b60405180910390f35b348015610de457600080fd5b50610ded6124dc565b604051610dfa919061465e565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e2591906145a8565b6124e2565b005b348015610e3857600080fd5b50610e416125da565b604051610e4e919061465e565b60405180910390f35b348015610e6357600080fd5b50610e6c6125e0565b604051610e79919061465e565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190614679565b6125e6565b604051610eb6919061458d565b60405180910390f35b606060038054610ece90614908565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614908565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128be565b84846128c6565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46128be565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119eb565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614986565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128be565b73ffffffffffffffffffffffffffffffffffffffff166111366119eb565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390614986565b60405180910390fd5b670de0b6b3a76400006103e860016111a2610fb2565b6111ac91906149d5565b6111b69190614a5e565b6111c09190614a5e565b811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614b01565b60405180910390fd5b8060088190555050565b6000611219848484612a91565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112646128be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90614b93565b60405180910390fd5b6112f8856112f06128be565b8584036128c6565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113ce6113396128be565b8484600160006113476128be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113c99190614bb3565b6128c6565b6001905092915050565b7f000000000000000000000000a1809748c0d780cb7f0a6fe6ce8b9f6c1d4a80ef81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114ce6128be565b73ffffffffffffffffffffffffffffffffffffffff166114ec6119eb565b73ffffffffffffffffffffffffffffffffffffffff1614611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990614986565b60405180910390fd5b61154c60006137e4565b565b6115566128be565b73ffffffffffffffffffffffffffffffffffffffff166115746119eb565b73ffffffffffffffffffffffffffffffffffffffff16146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190614986565b60405180910390fd5b61025883101561160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690614c7b565b60405180910390fd5b6103e88211158015611622575060008210155b611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890614d0d565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116986128be565b73ffffffffffffffffffffffffffffffffffffffff166116b66119eb565b73ffffffffffffffffffffffffffffffffffffffff161461170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390614986565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117366128be565b73ffffffffffffffffffffffffffffffffffffffff166117546119eb565b73ffffffffffffffffffffffffffffffffffffffff16146117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a190614986565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6118396128be565b73ffffffffffffffffffffffffffffffffffffffff166118576119eb565b73ffffffffffffffffffffffffffffffffffffffff16146118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490614986565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118d59190614bb3565b6118df9190614bb3565b601481905550600b601454111561192b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192290614d79565b60405180910390fd5b505050565b6119386128be565b73ffffffffffffffffffffffffffffffffffffffff166119566119eb565b73ffffffffffffffffffffffffffffffffffffffff16146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390614986565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a496128be565b73ffffffffffffffffffffffffffffffffffffffff16611a676119eb565b73ffffffffffffffffffffffffffffffffffffffff1614611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490614986565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611ae990614908565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1590614908565b8015611b625780601f10611b3757610100808354040283529160200191611b62565b820191906000526020600020905b815481529060010190602001808311611b4557829003601f168201915b5050505050905090565b611b746128be565b73ffffffffffffffffffffffffffffffffffffffff16611b926119eb565b73ffffffffffffffffffffffffffffffffffffffff1614611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf90614986565b60405180910390fd5b7f000000000000000000000000a1809748c0d780cb7f0a6fe6ce8b9f6c1d4a80ef73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90614e0b565b60405180910390fd5b611c8182826138aa565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cac6128be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6090614e9d565b60405180910390fd5b611d7d611d746128be565b858584036128c6565b600191505092915050565b600e5481565b6000611da2611d9b6128be565b8484612a91565b6001905092915050565b611db46128be565b73ffffffffffffffffffffffffffffffffffffffff16611dd26119eb565b73ffffffffffffffffffffffffffffffffffffffff1614611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90614986565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f236128be565b73ffffffffffffffffffffffffffffffffffffffff16611f416119eb565b73ffffffffffffffffffffffffffffffffffffffff1614611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e90614986565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612034919061458d565b60405180910390a25050565b6120486128be565b73ffffffffffffffffffffffffffffffffffffffff166120666119eb565b73ffffffffffffffffffffffffffffffffffffffff16146120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b390614986565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120e49190614bb3565b6120ee9190614bb3565b601881905550600b601854111561213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190614d79565b60405180910390fd5b505050565b6121476128be565b73ffffffffffffffffffffffffffffffffffffffff166121656119eb565b73ffffffffffffffffffffffffffffffffffffffff16146121bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b290614986565b60405180910390fd5b670de0b6b3a76400006103e860056121d1610fb2565b6121db91906149d5565b6121e59190614a5e565b6121ef9190614a5e565b811015612231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222890614f2f565b60405180910390fd5b80600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061225e6128be565b73ffffffffffffffffffffffffffffffffffffffff1661227c6119eb565b73ffffffffffffffffffffffffffffffffffffffff16146122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990614986565b60405180910390fd5b620186a060016122e0610fb2565b6122ea91906149d5565b6122f49190614a5e565b821015612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90614fc1565b60405180910390fd5b6103e86005612343610fb2565b61234d91906149d5565b6123579190614a5e565b821115612399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239090615053565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006124466128be565b73ffffffffffffffffffffffffffffffffffffffff166124646119eb565b73ffffffffffffffffffffffffffffffffffffffff16146124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190614986565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124ea6128be565b73ffffffffffffffffffffffffffffffffffffffff166125086119eb565b73ffffffffffffffffffffffffffffffffffffffff161461255e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255590614986565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c5906150e5565b60405180910390fd5b6125d7816137e4565b50565b601a5481565b600a5481565b60006125f06128be565b73ffffffffffffffffffffffffffffffffffffffff1661260e6119eb565b73ffffffffffffffffffffffffffffffffffffffff1614612664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265b90614986565b60405180910390fd5b600f546010546126749190614bb3565b42116126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac90615151565b60405180910390fd5b6103e88211156126fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f1906151e3565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000a1809748c0d780cb7f0a6fe6ce8b9f6c1d4a80ef6040518263ffffffff1660e01b815260040161275c9190614708565b602060405180830381865afa158015612779573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279d9190615218565b905060006127c86127106127ba868561394b90919063ffffffff16565b61396190919063ffffffff16565b90506000811115612801576128007f000000000000000000000000a1809748c0d780cb7f0a6fe6ce8b9f6c1d4a80ef61dead83613977565b5b60007f000000000000000000000000a1809748c0d780cb7f0a6fe6ce8b9f6c1d4a80ef90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561286e57600080fd5b505af1158015612882573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d906152b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d90615349565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a84919061465e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af8906153db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b689061546d565b60405180910390fd5b6000811415612b8b57612b8683836000613977565b6137df565b601160009054906101000a900460ff161561320957612ba86119eb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c165750612be66119eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c4f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c89575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ca25750600560149054906101000a900460ff16155b1561320857601160019054906101000a900460ff16612d9c57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d5c5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d92906154d9565b60405180910390fd5b5b601360009054906101000a900460ff1615612f6457612db96119eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e4057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e9857507f000000000000000000000000a1809748c0d780cb7f0a6fe6ce8b9f6c1d4a80ef73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f635743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1590615591565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130075750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561306957600a546130188361147e565b826130239190614bb3565b1115613064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305b906155fd565b60405180910390fd5b613207565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561310c5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561315b57600854811115613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d9061568f565b60405180910390fd5b613206565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661320557600a546131b88361147e565b826131c39190614bb3565b1115613204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fb906155fd565b60405180910390fd5b5b5b5b5b5b60006132143061147e565b9050600060095482101590508080156132395750601160029054906101000a900460ff165b80156132525750600560149054906101000a900460ff16155b80156132a85750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132fe5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133545750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613398576001600560146101000a81548160ff02191690831515021790555061337c613bf8565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156133fe5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134165750600c60009054906101000a900460ff165b80156134315750600d54600e5461342d9190614bb3565b4210155b80156134875750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561349657613494613edf565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061354c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561355657600090505b600081156137cf57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135b957506000601854115b15613686576135e660646135d86018548861394b90919063ffffffff16565b61396190919063ffffffff16565b9050601854601a54826135f991906149d5565b6136039190614a5e565b601d60008282546136149190614bb3565b92505081905550601854601b548261362c91906149d5565b6136369190614a5e565b601e60008282546136479190614bb3565b925050819055506018546019548261365f91906149d5565b6136699190614a5e565b601c600082825461367a9190614bb3565b925050819055506137ab565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136e157506000601454115b156137aa5761370e60646137006014548861394b90919063ffffffff16565b61396190919063ffffffff16565b90506014546016548261372191906149d5565b61372b9190614a5e565b601d600082825461373c9190614bb3565b925050819055506014546017548261375491906149d5565b61375e9190614a5e565b601e600082825461376f9190614bb3565b925050819055506014546015548261378791906149d5565b6137919190614a5e565b601c60008282546137a29190614bb3565b925050819055505b5b60008111156137c0576137bf873083613977565b5b80856137cc91906156af565b94505b6137da878787613977565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361395991906149d5565b905092915050565b6000818361396f9190614a5e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139de906153db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4e9061546d565b60405180910390fd5b613a628383836140a5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613adf90615755565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b7b9190614bb3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613bdf919061465e565b60405180910390a3613bf28484846140aa565b50505050565b6000613c033061147e565b90506000601e54601c54601d54613c1a9190614bb3565b613c249190614bb3565b9050600080831480613c365750600082145b15613c4357505050613edd565b6014600954613c5291906149d5565b831115613c6b576014600954613c6891906149d5565b92505b6000600283601d5486613c7e91906149d5565b613c889190614a5e565b613c929190614a5e565b90506000613ca982866140af90919063ffffffff16565b90506000479050613cb9826140c5565b6000613cce82476140af90919063ffffffff16565b90506000613cf987613ceb601c548561394b90919063ffffffff16565b61396190919063ffffffff16565b90506000613d2488613d16601e548661394b90919063ffffffff16565b61396190919063ffffffff16565b90506000818385613d3591906156af565b613d3f91906156af565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d9f906157a6565b60006040518083038185875af1925050503d8060008114613ddc576040519150601f19603f3d011682016040523d82523d6000602084013e613de1565b606091505b505080985050600087118015613df75750600081115b15613e4457613e068782614302565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e3b939291906157bb565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e8a906157a6565b60006040518083038185875af1925050503d8060008114613ec7576040519150601f19603f3d011682016040523d82523d6000602084013e613ecc565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000a1809748c0d780cb7f0a6fe6ce8b9f6c1d4a80ef6040518263ffffffff1660e01b8152600401613f439190614708565b602060405180830381865afa158015613f60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f849190615218565b90506000613fb1612710613fa3600b548561394b90919063ffffffff16565b61396190919063ffffffff16565b90506000811115613fea57613fe97f000000000000000000000000a1809748c0d780cb7f0a6fe6ce8b9f6c1d4a80ef61dead83613977565b5b60007f000000000000000000000000a1809748c0d780cb7f0a6fe6ce8b9f6c1d4a80ef90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561405757600080fd5b505af115801561406b573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836140bd91906156af565b905092915050565b6000600267ffffffffffffffff8111156140e2576140e16157f2565b5b6040519080825280602002602001820160405280156141105781602001602082028036833780820191505090505b509050308160008151811061412857614127615821565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141f19190615865565b8160018151811061420557614204615821565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061426a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128c6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016142cc95949392919061598b565b600060405180830381600087803b1580156142e657600080fd5b505af11580156142fa573d6000803e3d6000fd5b505050505050565b61432d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128c6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614394969594939291906159e5565b60606040518083038185885af11580156143b2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143d79190615a46565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156144185780820151818401526020810190506143fd565b83811115614427576000848401525b50505050565b6000601f19601f8301169050919050565b6000614449826143de565b61445381856143e9565b93506144638185602086016143fa565b61446c8161442d565b840191505092915050565b60006020820190508181036000830152614491818461443e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144c98261449e565b9050919050565b6144d9816144be565b81146144e457600080fd5b50565b6000813590506144f6816144d0565b92915050565b6000819050919050565b61450f816144fc565b811461451a57600080fd5b50565b60008135905061452c81614506565b92915050565b6000806040838503121561454957614548614499565b5b6000614557858286016144e7565b92505060206145688582860161451d565b9150509250929050565b60008115159050919050565b61458781614572565b82525050565b60006020820190506145a2600083018461457e565b92915050565b6000602082840312156145be576145bd614499565b5b60006145cc848285016144e7565b91505092915050565b6000819050919050565b60006145fa6145f56145f08461449e565b6145d5565b61449e565b9050919050565b600061460c826145df565b9050919050565b600061461e82614601565b9050919050565b61462e81614613565b82525050565b60006020820190506146496000830184614625565b92915050565b614658816144fc565b82525050565b6000602082019050614673600083018461464f565b92915050565b60006020828403121561468f5761468e614499565b5b600061469d8482850161451d565b91505092915050565b6000806000606084860312156146bf576146be614499565b5b60006146cd868287016144e7565b93505060206146de868287016144e7565b92505060406146ef8682870161451d565b9150509250925092565b614702816144be565b82525050565b600060208201905061471d60008301846146f9565b92915050565b600060ff82169050919050565b61473981614723565b82525050565b60006020820190506147546000830184614730565b92915050565b61476381614572565b811461476e57600080fd5b50565b6000813590506147808161475a565b92915050565b60008060006060848603121561479f5761479e614499565b5b60006147ad8682870161451d565b93505060206147be8682870161451d565b92505060406147cf86828701614771565b9150509250925092565b600080604083850312156147f0576147ef614499565b5b60006147fe858286016144e7565b925050602061480f85828601614771565b9150509250929050565b60008060006060848603121561483257614831614499565b5b60006148408682870161451d565b93505060206148518682870161451d565b92505060406148628682870161451d565b9150509250925092565b60006020828403121561488257614881614499565b5b600061489084828501614771565b91505092915050565b600080604083850312156148b0576148af614499565b5b60006148be858286016144e7565b92505060206148cf858286016144e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061492057607f821691505b60208210811415614934576149336148d9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149706020836143e9565b915061497b8261493a565b602082019050919050565b6000602082019050818103600083015261499f81614963565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149e0826144fc565b91506149eb836144fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a2457614a236149a6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a69826144fc565b9150614a74836144fc565b925082614a8457614a83614a2f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614aeb602f836143e9565b9150614af682614a8f565b604082019050919050565b60006020820190508181036000830152614b1a81614ade565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614b7d6028836143e9565b9150614b8882614b21565b604082019050919050565b60006020820190508181036000830152614bac81614b70565b9050919050565b6000614bbe826144fc565b9150614bc9836144fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614bfe57614bfd6149a6565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c656033836143e9565b9150614c7082614c09565b604082019050919050565b60006020820190508181036000830152614c9481614c58565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614cf76030836143e9565b9150614d0282614c9b565b604082019050919050565b60006020820190508181036000830152614d2681614cea565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614d63601d836143e9565b9150614d6e82614d2d565b602082019050919050565b60006020820190508181036000830152614d9281614d56565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614df56039836143e9565b9150614e0082614d99565b604082019050919050565b60006020820190508181036000830152614e2481614de8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614e876025836143e9565b9150614e9282614e2b565b604082019050919050565b60006020820190508181036000830152614eb681614e7a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f196024836143e9565b9150614f2482614ebd565b604082019050919050565b60006020820190508181036000830152614f4881614f0c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614fab6035836143e9565b9150614fb682614f4f565b604082019050919050565b60006020820190508181036000830152614fda81614f9e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061503d6034836143e9565b915061504882614fe1565b604082019050919050565b6000602082019050818103600083015261506c81615030565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150cf6026836143e9565b91506150da82615073565b604082019050919050565b600060208201905081810360008301526150fe816150c2565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061513b6020836143e9565b915061514682615105565b602082019050919050565b6000602082019050818103600083015261516a8161512e565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006151cd602a836143e9565b91506151d882615171565b604082019050919050565b600060208201905081810360008301526151fc816151c0565b9050919050565b60008151905061521281614506565b92915050565b60006020828403121561522e5761522d614499565b5b600061523c84828501615203565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152a16024836143e9565b91506152ac82615245565b604082019050919050565b600060208201905081810360008301526152d081615294565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006153336022836143e9565b915061533e826152d7565b604082019050919050565b6000602082019050818103600083015261536281615326565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153c56025836143e9565b91506153d082615369565b604082019050919050565b600060208201905081810360008301526153f4816153b8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006154576023836143e9565b9150615462826153fb565b604082019050919050565b600060208201905081810360008301526154868161544a565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154c36016836143e9565b91506154ce8261548d565b602082019050919050565b600060208201905081810360008301526154f2816154b6565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061557b6049836143e9565b9150615586826154f9565b606082019050919050565b600060208201905081810360008301526155aa8161556e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006155e76013836143e9565b91506155f2826155b1565b602082019050919050565b60006020820190508181036000830152615616816155da565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006156796036836143e9565b91506156848261561d565b604082019050919050565b600060208201905081810360008301526156a88161566c565b9050919050565b60006156ba826144fc565b91506156c5836144fc565b9250828210156156d8576156d76149a6565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061573f6026836143e9565b915061574a826156e3565b604082019050919050565b6000602082019050818103600083015261576e81615732565b9050919050565b600081905092915050565b50565b6000615790600083615775565b915061579b82615780565b600082019050919050565b60006157b182615783565b9150819050919050565b60006060820190506157d0600083018661464f565b6157dd602083018561464f565b6157ea604083018461464f565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061585f816144d0565b92915050565b60006020828403121561587b5761587a614499565b5b600061588984828501615850565b91505092915050565b6000819050919050565b60006158b76158b26158ad84615892565b6145d5565b6144fc565b9050919050565b6158c78161589c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615902816144be565b82525050565b600061591483836158f9565b60208301905092915050565b6000602082019050919050565b6000615938826158cd565b61594281856158d8565b935061594d836158e9565b8060005b8381101561597e5781516159658882615908565b975061597083615920565b925050600181019050615951565b5085935050505092915050565b600060a0820190506159a0600083018861464f565b6159ad60208301876158be565b81810360408301526159bf818661592d565b90506159ce60608301856146f9565b6159db608083018461464f565b9695505050505050565b600060c0820190506159fa60008301896146f9565b615a07602083018861464f565b615a1460408301876158be565b615a2160608301866158be565b615a2e60808301856146f9565b615a3b60a083018461464f565b979650505050505050565b600080600060608486031215615a5f57615a5e614499565b5b6000615a6d86828701615203565b9350506020615a7e86828701615203565b9250506040615a8f86828701615203565b915050925092509256fea264697066735822122066e6fe200abf136e8ba4b4ca148ae117ba01a2856c839d0179c271f7e0ec1a6564736f6c634300080a0033
Deployed Bytecode Sourcemap
32822:19259:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9650:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11817:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34446:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32895:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10770:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41579:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33460:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33275:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34230:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34190;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38914:264;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12468:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32998:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33370:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33331:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10612:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13369:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32953:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33558:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41744:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34045:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33638:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10941:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2885:103;;;;;;;;;;;;;:::i;:::-;;49663:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38022:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39440:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33090:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33938;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39811:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37815:155;;;;;;;;;;;;;:::i;:::-;;2234:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33127:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34080:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39703:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9869:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40832:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34012:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33514:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34270:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34156:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14087:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33422:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11281:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41340:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34667:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33598:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40642:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40222:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39186:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33856:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33160:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38409:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33904:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11519:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33202:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38204:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33975:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3143:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34118:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33242:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51022:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9650:100;9704:13;9737:5;9730:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9650:100;:::o;11817:169::-;11900:4;11917:39;11926:12;:10;:12::i;:::-;11940:7;11949:6;11917:8;:39::i;:::-;11974:4;11967:11;;11817:169;;;;:::o;34446:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32895:51::-;;;:::o;10770:108::-;10831:7;10858:12;;10851:19;;10770:108;:::o;41579:157::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41686:9:::1;;;;;;;;;;;41658:38;;41675:9;41658:38;;;;;;;;;;;;41719:9;41707;;:21;;;;;;;;;;;;;;;;;;41579:157:::0;:::o;33460:47::-;;;;:::o;33275:36::-;;;;:::o;34230:33::-;;;;:::o;34190:::-;;;;:::o;38914:264::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39051:4:::1;39043;39038:1;39022:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39021:26;;;;:::i;:::-;39020:35;;;;:::i;:::-;39010:6;:45;;38988:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39164:6;39141:20;:29;;;;38914:264:::0;:::o;12468:492::-;12608:4;12625:36;12635:6;12643:9;12654:6;12625:9;:36::i;:::-;12674:24;12701:11;:19;12713:6;12701:19;;;;;;;;;;;;;;;:33;12721:12;:10;:12::i;:::-;12701:33;;;;;;;;;;;;;;;;12674:60;;12773:6;12753:16;:26;;12745:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12860:57;12869:6;12877:12;:10;:12::i;:::-;12910:6;12891:16;:25;12860:8;:57::i;:::-;12948:4;12941:11;;;12468:492;;;;;:::o;32998:53::-;33044:6;32998:53;:::o;33370:45::-;;;;:::o;33331:32::-;;;;;;;;;;;;;:::o;10612:93::-;10670:5;10695:2;10688:9;;10612:93;:::o;13369:215::-;13457:4;13474:80;13483:12;:10;:12::i;:::-;13497:7;13543:10;13506:11;:25;13518:12;:10;:12::i;:::-;13506:25;;;;;;;;;;;;;;;:34;13532:7;13506:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13474:8;:80::i;:::-;13572:4;13565:11;;13369:215;;;;:::o;32953:38::-;;;:::o;33558:33::-;;;;;;;;;;;;;:::o;41744:126::-;41810:4;41834:19;:28;41854:7;41834:28;;;;;;;;;;;;;;;;;;;;;;;;;41827:35;;41744:126;;;:::o;34045:28::-;;;;:::o;33638:31::-;;;;;;;;;;;;;:::o;10941:127::-;11015:7;11042:9;:18;11052:7;11042:18;;;;;;;;;;;;;;;;11035:25;;10941:127;;;:::o;2885:103::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2950:30:::1;2977:1;2950:18;:30::i;:::-;2885:103::o:0;49663:555::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49865:3:::1;49842:19;:26;;49820:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49992:4;49980:8;:16;;:33;;;;;50012:1;50000:8;:13;;49980:33;49958:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50118:19;50100:15;:37;;;;50167:8;50148:16;:27;;;;50202:8;50186:13;;:24;;;;;;;;;;;;;;;;;;49663:555:::0;;;:::o;38022:121::-;38074:4;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38108:5:::1;38091:14;;:22;;;;;;;;;;;;;;;;;;38131:4;38124:11;;38022:121:::0;:::o;39440:167::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39595:4:::1;39553:31;:39;39585:6;39553:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39440:167:::0;;:::o;33090:30::-;;;;;;;;;;;;;:::o;33938:::-;;;;:::o;39811:403::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39979:13:::1;39961:15;:31;;;;40021:13;40003:15;:31;;;;40057:7;40045:9;:19;;;;40126:9;;40108:15;;40090;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40075:12;:60;;;;40170:2;40154:12;;:18;;40146:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39811:403:::0;;;:::o;37815:155::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37886:4:::1;37870:13;;:20;;;;;;;;;;;;;;;;;;37915:4;37901:11;;:18;;;;;;;;;;;;;;;;;;37947:15;37930:14;:32;;;;37815:155::o:0;2234:87::-;2280:7;2307:6;;;;;;;;;;;2300:13;;2234:87;:::o;33127:24::-;;;;;;;;;;;;;:::o;34080:31::-;;;;:::o;39703:100::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39788:7:::1;39774:11;;:21;;;;;;;;;;;;;;;;;;39703:100:::0;:::o;9869:104::-;9925:13;9958:7;9951:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9869:104;:::o;40832:304::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40976:13:::1;40968:21;;:4;:21;;;;40946:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41087:41;41116:4;41122:5;41087:28;:41::i;:::-;40832:304:::0;;:::o;34012:24::-;;;;:::o;33514:35::-;;;;:::o;34270:27::-;;;;:::o;34156:25::-;;;;:::o;14087:413::-;14180:4;14197:24;14224:11;:25;14236:12;:10;:12::i;:::-;14224:25;;;;;;;;;;;;;;;:34;14250:7;14224:34;;;;;;;;;;;;;;;;14197:61;;14297:15;14277:16;:35;;14269:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14390:67;14399:12;:10;:12::i;:::-;14413:7;14441:15;14422:16;:34;14390:8;:67::i;:::-;14488:4;14481:11;;;14087:413;;;;:::o;33422:29::-;;;;:::o;11281:175::-;11367:4;11384:42;11394:12;:10;:12::i;:::-;11408:9;11419:6;11384:9;:42::i;:::-;11444:4;11437:11;;11281:175;;;;:::o;41340:231::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41500:15:::1;;;;;;;;;;;41457:59;;41480:18;41457:59;;;;;;;;;;;;41545:18;41527:15;;:36;;;;;;;;;;;;;;;;;;41340:231:::0;:::o;34667:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33598:33::-;;;;;;;;;;;;;:::o;40642:182::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40758:8:::1;40727:19;:28;40747:7;40727:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40798:7;40782:34;;;40807:8;40782:34;;;;;;:::i;:::-;;;;;;;;40642:182:::0;;:::o;40222:412::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40392:13:::1;40373:16;:32;;;;40435:13;40416:16;:32;;;;40472:7;40459:10;:20;;;;40544:10;;40525:16;;40506;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40490:13;:64;;;;40590:2;40573:13;;:19;;40565:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40222:412:::0;;;:::o;39186:246::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39326:4:::1;39318;39313:1;39297:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39296:26;;;;:::i;:::-;39295:35;;;;:::i;:::-;39285:6;:45;;39263:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39417:6;39405:9;:18;;;;39186:246:::0;:::o;33856:39::-;;;;;;;;;;;;;:::o;33160:35::-;;;;:::o;38409:497::-;38517:4;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38596:6:::1;38591:1;38575:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38574:28;;;;:::i;:::-;38561:9;:41;;38539:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38751:4;38746:1;38730:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38729:26;;;;:::i;:::-;38716:9;:39;;38694:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38867:9;38846:18;:30;;;;38894:4;38887:11;;38409:497:::0;;;:::o;33904:27::-;;;;:::o;11519:151::-;11608:7;11635:11;:18;11647:5;11635:18;;;;;;;;;;;;;;;:27;11654:7;11635:27;;;;;;;;;;;;;;;;11628:34;;11519:151;;;;:::o;33202:33::-;;;;:::o;38204:135::-;38264:4;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38304:5:::1;38281:20;;:28;;;;;;;;;;;;;;;;;;38327:4;38320:11;;38204:135:::0;:::o;33975:30::-;;;;:::o;3143:201::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3252:1:::1;3232:22;;:8;:22;;;;3224:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3308:28;3327:8;3308:18;:28::i;:::-;3143:201:::0;:::o;34118:31::-;;;;:::o;33242:24::-;;;;:::o;51022:1056::-;51133:4;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51218:19:::1;;51195:20;;:42;;;;:::i;:::-;51177:15;:60;51155:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51327:4;51316:7;:15;;51308:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51412:15;51389:20;:38;;;;51482:28;51513:4;:14;;;51528:13;51513:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51482:60;;51592:20;51615:44;51653:5;51615:33;51640:7;51615:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51592:67;;51779:1;51764:12;:16;51760:110;;;51797:61;51813:13;51836:6;51845:12;51797:15;:61::i;:::-;51760:110;51945:19;51982:13;51945:51;;52007:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52034:14;;;;;;;;;;52066:4;52059:11;;;;;51022:1056:::0;;;:::o;907:98::-;960:7;987:10;980:17;;907:98;:::o;17771:380::-;17924:1;17907:19;;:5;:19;;;;17899:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18005:1;17986:21;;:7;:21;;;;17978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18089:6;18059:11;:18;18071:5;18059:18;;;;;;;;;;;;;;;:27;18078:7;18059:27;;;;;;;;;;;;;;;:36;;;;18127:7;18111:32;;18120:5;18111:32;;;18136:6;18111:32;;;;;;:::i;:::-;;;;;;;;17771:380;;;:::o;41928:4841::-;42076:1;42060:18;;:4;:18;;;;42052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42153:1;42139:16;;:2;:16;;;;42131:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42222:1;42212:6;:11;42208:93;;;42240:28;42256:4;42262:2;42266:1;42240:15;:28::i;:::-;42283:7;;42208:93;42317:14;;;;;;;;;;;42313:2317;;;42378:7;:5;:7::i;:::-;42370:15;;:4;:15;;;;:49;;;;;42412:7;:5;:7::i;:::-;42406:13;;:2;:13;;;;42370:49;:86;;;;;42454:1;42440:16;;:2;:16;;;;42370:86;:128;;;;;42491:6;42477:21;;:2;:21;;;;42370:128;:158;;;;;42520:8;;;;;;;;;;;42519:9;42370:158;42348:2271;;;42568:13;;;;;;;;;;;42563:223;;42640:19;:25;42660:4;42640:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42669:19;:23;42689:2;42669:23;;;;;;;;;;;;;;;;;;;;;;;;;42640:52;42606:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42563:223;42942:20;;;;;;;;;;;42938:641;;;43023:7;:5;:7::i;:::-;43017:13;;:2;:13;;;;:72;;;;;43073:15;43059:30;;:2;:30;;;;43017:72;:129;;;;;43132:13;43118:28;;:2;:28;;;;43017:129;42987:573;;;43310:12;43235:28;:39;43264:9;43235:39;;;;;;;;;;;;;;;;:87;43197:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43524:12;43482:28;:39;43511:9;43482:39;;;;;;;;;;;;;;;:54;;;;42987:573;42938:641;43653:25;:31;43679:4;43653:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43710:31;:35;43742:2;43710:35;;;;;;;;;;;;;;;;;;;;;;;;;43709:36;43653:92;43627:977;;;43870:9;;43853:13;43863:2;43853:9;:13::i;:::-;43844:6;:22;;;;:::i;:::-;:35;;43810:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43627:977;;;44048:25;:29;44074:2;44048:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44103:31;:37;44135:4;44103:37;;;;;;;;;;;;;;;;;;;;;;;;;44102:38;44048:92;44022:582;;;44227:20;;44217:6;:30;;44183:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44022:582;;;44384:31;:35;44416:2;44384:35;;;;;;;;;;;;;;;;;;;;;;;;;44379:225;;44504:9;;44487:13;44497:2;44487:9;:13::i;:::-;44478:6;:22;;;;:::i;:::-;:35;;44444:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44379:225;44022:582;43627:977;42348:2271;42313:2317;44642:28;44673:24;44691:4;44673:9;:24::i;:::-;44642:55;;44710:12;44749:18;;44725:20;:42;;44710:57;;44798:7;:35;;;;;44822:11;;;;;;;;;;;44798:35;:61;;;;;44851:8;;;;;;;;;;;44850:9;44798:61;:110;;;;;44877:25;:31;44903:4;44877:31;;;;;;;;;;;;;;;;;;;;;;;;;44876:32;44798:110;:153;;;;;44926:19;:25;44946:4;44926:25;;;;;;;;;;;;;;;;;;;;;;;;;44925:26;44798:153;:194;;;;;44969:19;:23;44989:2;44969:23;;;;;;;;;;;;;;;;;;;;;;;;;44968:24;44798:194;44780:326;;;45030:4;45019:8;;:15;;;;;;;;;;;;;;;;;;45051:10;:8;:10::i;:::-;45089:5;45078:8;;:16;;;;;;;;;;;;;;;;;;44780:326;45137:8;;;;;;;;;;;45136:9;:55;;;;;45162:25;:29;45188:2;45162:29;;;;;;;;;;;;;;;;;;;;;;;;;45136:55;:85;;;;;45208:13;;;;;;;;;;;45136:85;:153;;;;;45274:15;;45257:14;;:32;;;;:::i;:::-;45238:15;:51;;45136:153;:196;;;;;45307:19;:25;45327:4;45307:25;;;;;;;;;;;;;;;;;;;;;;;;;45306:26;45136:196;45118:282;;;45359:29;:27;:29::i;:::-;;45118:282;45412:12;45428:8;;;;;;;;;;;45427:9;45412:24;;45538:19;:25;45558:4;45538:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45567:19;:23;45587:2;45567:23;;;;;;;;;;;;;;;;;;;;;;;;;45538:52;45534:100;;;45617:5;45607:15;;45534:100;45646:12;45751:7;45747:969;;;45803:25;:29;45829:2;45803:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45852:1;45836:13;;:17;45803:50;45799:768;;;45881:34;45911:3;45881:25;45892:13;;45881:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45874:41;;45984:13;;45964:16;;45957:4;:23;;;;:::i;:::-;45956:41;;;;:::i;:::-;45934:18;;:63;;;;;;;:::i;:::-;;;;;;;;46054:13;;46040:10;;46033:4;:17;;;;:::i;:::-;46032:35;;;;:::i;:::-;46016:12;;:51;;;;;;;:::i;:::-;;;;;;;;46136:13;;46116:16;;46109:4;:23;;;;:::i;:::-;46108:41;;;;:::i;:::-;46086:18;;:63;;;;;;;:::i;:::-;;;;;;;;45799:768;;;46211:25;:31;46237:4;46211:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46261:1;46246:12;;:16;46211:51;46207:360;;;46290:33;46319:3;46290:24;46301:12;;46290:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46283:40;;46391:12;;46372:15;;46365:4;:22;;;;:::i;:::-;46364:39;;;;:::i;:::-;46342:18;;:61;;;;;;;:::i;:::-;;;;;;;;46459:12;;46446:9;;46439:4;:16;;;;:::i;:::-;46438:33;;;;:::i;:::-;46422:12;;:49;;;;;;;:::i;:::-;;;;;;;;46539:12;;46520:15;;46513:4;:22;;;;:::i;:::-;46512:39;;;;:::i;:::-;46490:18;;:61;;;;;;;:::i;:::-;;;;;;;;46207:360;45799:768;46594:1;46587:4;:8;46583:91;;;46616:42;46632:4;46646;46653;46616:15;:42::i;:::-;46583:91;46700:4;46690:14;;;;;:::i;:::-;;;45747:969;46728:33;46744:4;46750:2;46754:6;46728:15;:33::i;:::-;42041:4728;;;;41928:4841;;;;:::o;3504:191::-;3578:16;3597:6;;;;;;;;;;;3578:25;;3623:8;3614:6;;:17;;;;;;;;;;;;;;;;;;3678:8;3647:40;;3668:8;3647:40;;;;;;;;;;;;3567:128;3504:191;:::o;41144:188::-;41261:5;41227:25;:31;41253:4;41227:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41318:5;41284:40;;41312:4;41284:40;;;;;;;;;;;;41144:188;;:::o;23224:98::-;23282:7;23313:1;23309;:5;;;;:::i;:::-;23302:12;;23224:98;;;;:::o;23623:::-;23681:7;23712:1;23708;:5;;;;:::i;:::-;23701:12;;23623:98;;;;:::o;14990:733::-;15148:1;15130:20;;:6;:20;;;;15122:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15232:1;15211:23;;:9;:23;;;;15203:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15287:47;15308:6;15316:9;15327:6;15287:20;:47::i;:::-;15347:21;15371:9;:17;15381:6;15371:17;;;;;;;;;;;;;;;;15347:41;;15424:6;15407:13;:23;;15399:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15545:6;15529:13;:22;15509:9;:17;15519:6;15509:17;;;;;;;;;;;;;;;:42;;;;15597:6;15573:9;:20;15583:9;15573:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15638:9;15621:35;;15630:6;15621:35;;;15649:6;15621:35;;;;;;:::i;:::-;;;;;;;;15669:46;15689:6;15697:9;15708:6;15669:19;:46::i;:::-;15111:612;14990:733;;;:::o;47899:1756::-;47938:23;47964:24;47982:4;47964:9;:24::i;:::-;47938:50;;47999:25;48095:12;;48061:18;;48027;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47999:108;;48118:12;48166:1;48147:15;:20;:46;;;;48192:1;48171:17;:22;48147:46;48143:85;;;48210:7;;;;;48143:85;48283:2;48262:18;;:23;;;;:::i;:::-;48244:15;:41;48240:115;;;48341:2;48320:18;;:23;;;;:::i;:::-;48302:41;;48240:115;48416:23;48529:1;48496:17;48461:18;;48443:15;:36;;;;:::i;:::-;48442:71;;;;:::i;:::-;:88;;;;:::i;:::-;48416:114;;48541:26;48570:36;48590:15;48570;:19;;:36;;;;:::i;:::-;48541:65;;48619:25;48647:21;48619:49;;48681:36;48698:18;48681:16;:36::i;:::-;48730:18;48751:44;48777:17;48751:21;:25;;:44;;;;:::i;:::-;48730:65;;48808:23;48834:81;48887:17;48834:34;48849:18;;48834:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48808:107;;48926:17;48946:51;48979:17;48946:28;48961:12;;48946:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48926:71;;49010:23;49067:9;49049:15;49036:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49010:66;;49110:1;49089:18;:22;;;;49143:1;49122:18;:22;;;;49170:1;49155:12;:16;;;;49206:9;;;;;;;;;;;49198:23;;49229:9;49198:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49184:59;;;;;49278:1;49260:15;:19;:42;;;;;49301:1;49283:15;:19;49260:42;49256:278;;;49319:46;49332:15;49349;49319:12;:46::i;:::-;49385:137;49418:18;49455:15;49489:18;;49385:137;;;;;;;;:::i;:::-;;;;;;;;49256:278;49568:15;;;;;;;;;;;49560:29;;49611:21;49560:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49546:101;;;;;47927:1728;;;;;;;;;;47899:1756;:::o;50226:788::-;50283:4;50317:15;50300:14;:32;;;;50387:28;50418:4;:14;;;50433:13;50418:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50387:60;;50497:20;50520:77;50581:5;50520:42;50545:16;;50520:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50497:100;;50717:1;50702:12;:16;50698:110;;;50735:61;50751:13;50774:6;50783:12;50735:15;:61::i;:::-;50698:110;50883:19;50920:13;50883:51;;50945:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50972:12;;;;;;;;;;51002:4;50995:11;;;;;50226:788;:::o;18751:125::-;;;;:::o;19480:124::-;;;;:::o;22867:98::-;22925:7;22956:1;22952;:5;;;;:::i;:::-;22945:12;;22867:98;;;;:::o;46777:589::-;46903:21;46941:1;46927:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46903:40;;46972:4;46954;46959:1;46954:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46998:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46988:4;46993:1;46988:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47033:62;47050:4;47065:15;47083:11;47033:8;:62::i;:::-;47134:15;:66;;;47215:11;47241:1;47285:4;47312;47332:15;47134:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46832:534;46777:589;:::o;47374:517::-;47522:62;47539:4;47554:15;47572:11;47522:8;:62::i;:::-;47627:15;:31;;;47666:9;47699:4;47719:11;47745:1;47788;33044:6;47857:15;47627:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47374:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:234::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:17;12307:2;12299:6;12295:15;12288:42;12103:234;:::o;12343:366::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:419::-;12881:4;12919:2;12908:9;12904:18;12896:26;;12968:9;12962:4;12958:20;12954:1;12943:9;12939:17;12932:47;12996:131;13122:4;12996:131;:::i;:::-;12988:139;;12715:419;;;:::o;13140:227::-;13280:34;13276:1;13268:6;13264:14;13257:58;13349:10;13344:2;13336:6;13332:15;13325:35;13140:227;:::o;13373:366::-;13515:3;13536:67;13600:2;13595:3;13536:67;:::i;:::-;13529:74;;13612:93;13701:3;13612:93;:::i;:::-;13730:2;13725:3;13721:12;13714:19;;13373:366;;;:::o;13745:419::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:131;14152:4;14026:131;:::i;:::-;14018:139;;13745:419;;;:::o;14170:305::-;14210:3;14229:20;14247:1;14229:20;:::i;:::-;14224:25;;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14417:1;14349:66;14345:74;14342:1;14339:81;14336:107;;;14423:18;;:::i;:::-;14336:107;14467:1;14464;14460:9;14453:16;;14170:305;;;;:::o;14481:238::-;14621:34;14617:1;14609:6;14605:14;14598:58;14690:21;14685:2;14677:6;14673:15;14666:46;14481:238;:::o;14725:366::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:419::-;15263:4;15301:2;15290:9;15286:18;15278:26;;15350:9;15344:4;15340:20;15336:1;15325:9;15321:17;15314:47;15378:131;15504:4;15378:131;:::i;:::-;15370:139;;15097:419;;;:::o;15522:235::-;15662:34;15658:1;15650:6;15646:14;15639:58;15731:18;15726:2;15718:6;15714:15;15707:43;15522:235;:::o;15763:366::-;15905:3;15926:67;15990:2;15985:3;15926:67;:::i;:::-;15919:74;;16002:93;16091:3;16002:93;:::i;:::-;16120:2;16115:3;16111:12;16104:19;;15763:366;;;:::o;16135:419::-;16301:4;16339:2;16328:9;16324:18;16316:26;;16388:9;16382:4;16378:20;16374:1;16363:9;16359:17;16352:47;16416:131;16542:4;16416:131;:::i;:::-;16408:139;;16135:419;;;:::o;16560:179::-;16700:31;16696:1;16688:6;16684:14;16677:55;16560:179;:::o;16745:366::-;16887:3;16908:67;16972:2;16967:3;16908:67;:::i;:::-;16901:74;;16984:93;17073:3;16984:93;:::i;:::-;17102:2;17097:3;17093:12;17086:19;;16745:366;;;:::o;17117:419::-;17283:4;17321:2;17310:9;17306:18;17298:26;;17370:9;17364:4;17360:20;17356:1;17345:9;17341:17;17334:47;17398:131;17524:4;17398:131;:::i;:::-;17390:139;;17117:419;;;:::o;17542:244::-;17682:34;17678:1;17670:6;17666:14;17659:58;17751:27;17746:2;17738:6;17734:15;17727:52;17542:244;:::o;17792:366::-;17934:3;17955:67;18019:2;18014:3;17955:67;:::i;:::-;17948:74;;18031:93;18120:3;18031:93;:::i;:::-;18149:2;18144:3;18140:12;18133:19;;17792:366;;;:::o;18164:419::-;18330:4;18368:2;18357:9;18353:18;18345:26;;18417:9;18411:4;18407:20;18403:1;18392:9;18388:17;18381:47;18445:131;18571:4;18445:131;:::i;:::-;18437:139;;18164:419;;;:::o;18589:224::-;18729:34;18725:1;18717:6;18713:14;18706:58;18798:7;18793:2;18785:6;18781:15;18774:32;18589:224;:::o;18819:366::-;18961:3;18982:67;19046:2;19041:3;18982:67;:::i;:::-;18975:74;;19058:93;19147:3;19058:93;:::i;:::-;19176:2;19171:3;19167:12;19160:19;;18819:366;;;:::o;19191:419::-;19357:4;19395:2;19384:9;19380:18;19372:26;;19444:9;19438:4;19434:20;19430:1;19419:9;19415:17;19408:47;19472:131;19598:4;19472:131;:::i;:::-;19464:139;;19191:419;;;:::o;19616:223::-;19756:34;19752:1;19744:6;19740:14;19733:58;19825:6;19820:2;19812:6;19808:15;19801:31;19616:223;:::o;19845:366::-;19987:3;20008:67;20072:2;20067:3;20008:67;:::i;:::-;20001:74;;20084:93;20173:3;20084:93;:::i;:::-;20202:2;20197:3;20193:12;20186:19;;19845:366;;;:::o;20217:419::-;20383:4;20421:2;20410:9;20406:18;20398:26;;20470:9;20464:4;20460:20;20456:1;20445:9;20441:17;20434:47;20498:131;20624:4;20498:131;:::i;:::-;20490:139;;20217:419;;;:::o;20642:240::-;20782:34;20778:1;20770:6;20766:14;20759:58;20851:23;20846:2;20838:6;20834:15;20827:48;20642:240;:::o;20888:366::-;21030:3;21051:67;21115:2;21110:3;21051:67;:::i;:::-;21044:74;;21127:93;21216:3;21127:93;:::i;:::-;21245:2;21240:3;21236:12;21229:19;;20888:366;;;:::o;21260:419::-;21426:4;21464:2;21453:9;21449:18;21441:26;;21513:9;21507:4;21503:20;21499:1;21488:9;21484:17;21477:47;21541:131;21667:4;21541:131;:::i;:::-;21533:139;;21260:419;;;:::o;21685:239::-;21825:34;21821:1;21813:6;21809:14;21802:58;21894:22;21889:2;21881:6;21877:15;21870:47;21685:239;:::o;21930:366::-;22072:3;22093:67;22157:2;22152:3;22093:67;:::i;:::-;22086:74;;22169:93;22258:3;22169:93;:::i;:::-;22287:2;22282:3;22278:12;22271:19;;21930:366;;;:::o;22302:419::-;22468:4;22506:2;22495:9;22491:18;22483:26;;22555:9;22549:4;22545:20;22541:1;22530:9;22526:17;22519:47;22583:131;22709:4;22583:131;:::i;:::-;22575:139;;22302:419;;;:::o;22727:225::-;22867:34;22863:1;22855:6;22851:14;22844:58;22936:8;22931:2;22923:6;22919:15;22912:33;22727:225;:::o;22958:366::-;23100:3;23121:67;23185:2;23180:3;23121:67;:::i;:::-;23114:74;;23197:93;23286:3;23197:93;:::i;:::-;23315:2;23310:3;23306:12;23299:19;;22958:366;;;:::o;23330:419::-;23496:4;23534:2;23523:9;23519:18;23511:26;;23583:9;23577:4;23573:20;23569:1;23558:9;23554:17;23547:47;23611:131;23737:4;23611:131;:::i;:::-;23603:139;;23330:419;;;:::o;23755:182::-;23895:34;23891:1;23883:6;23879:14;23872:58;23755:182;:::o;23943:366::-;24085:3;24106:67;24170:2;24165:3;24106:67;:::i;:::-;24099:74;;24182:93;24271:3;24182:93;:::i;:::-;24300:2;24295:3;24291:12;24284:19;;23943:366;;;:::o;24315:419::-;24481:4;24519:2;24508:9;24504:18;24496:26;;24568:9;24562:4;24558:20;24554:1;24543:9;24539:17;24532:47;24596:131;24722:4;24596:131;:::i;:::-;24588:139;;24315:419;;;:::o;24740:229::-;24880:34;24876:1;24868:6;24864:14;24857:58;24949:12;24944:2;24936:6;24932:15;24925:37;24740:229;:::o;24975:366::-;25117:3;25138:67;25202:2;25197:3;25138:67;:::i;:::-;25131:74;;25214:93;25303:3;25214:93;:::i;:::-;25332:2;25327:3;25323:12;25316:19;;24975:366;;;:::o;25347:419::-;25513:4;25551:2;25540:9;25536:18;25528:26;;25600:9;25594:4;25590:20;25586:1;25575:9;25571:17;25564:47;25628:131;25754:4;25628:131;:::i;:::-;25620:139;;25347:419;;;:::o;25772:143::-;25829:5;25860:6;25854:13;25845:22;;25876:33;25903:5;25876:33;:::i;:::-;25772:143;;;;:::o;25921:351::-;25991:6;26040:2;26028:9;26019:7;26015:23;26011:32;26008:119;;;26046:79;;:::i;:::-;26008:119;26166:1;26191:64;26247:7;26238:6;26227:9;26223:22;26191:64;:::i;:::-;26181:74;;26137:128;25921:351;;;;:::o;26278:223::-;26418:34;26414:1;26406:6;26402:14;26395:58;26487:6;26482:2;26474:6;26470:15;26463:31;26278:223;:::o;26507:366::-;26649:3;26670:67;26734:2;26729:3;26670:67;:::i;:::-;26663:74;;26746:93;26835:3;26746:93;:::i;:::-;26864:2;26859:3;26855:12;26848:19;;26507:366;;;:::o;26879:419::-;27045:4;27083:2;27072:9;27068:18;27060:26;;27132:9;27126:4;27122:20;27118:1;27107:9;27103:17;27096:47;27160:131;27286:4;27160:131;:::i;:::-;27152:139;;26879:419;;;:::o;27304:221::-;27444:34;27440:1;27432:6;27428:14;27421:58;27513:4;27508:2;27500:6;27496:15;27489:29;27304:221;:::o;27531:366::-;27673:3;27694:67;27758:2;27753:3;27694:67;:::i;:::-;27687:74;;27770:93;27859:3;27770:93;:::i;:::-;27888:2;27883:3;27879:12;27872:19;;27531:366;;;:::o;27903:419::-;28069:4;28107:2;28096:9;28092:18;28084:26;;28156:9;28150:4;28146:20;28142:1;28131:9;28127:17;28120:47;28184:131;28310:4;28184:131;:::i;:::-;28176:139;;27903:419;;;:::o;28328:224::-;28468:34;28464:1;28456:6;28452:14;28445:58;28537:7;28532:2;28524:6;28520:15;28513:32;28328:224;:::o;28558:366::-;28700:3;28721:67;28785:2;28780:3;28721:67;:::i;:::-;28714:74;;28797:93;28886:3;28797:93;:::i;:::-;28915:2;28910:3;28906:12;28899:19;;28558:366;;;:::o;28930:419::-;29096:4;29134:2;29123:9;29119:18;29111:26;;29183:9;29177:4;29173:20;29169:1;29158:9;29154:17;29147:47;29211:131;29337:4;29211:131;:::i;:::-;29203:139;;28930:419;;;:::o;29355:222::-;29495:34;29491:1;29483:6;29479:14;29472:58;29564:5;29559:2;29551:6;29547:15;29540:30;29355:222;:::o;29583:366::-;29725:3;29746:67;29810:2;29805:3;29746:67;:::i;:::-;29739:74;;29822:93;29911:3;29822:93;:::i;:::-;29940:2;29935:3;29931:12;29924:19;;29583:366;;;:::o;29955:419::-;30121:4;30159:2;30148:9;30144:18;30136:26;;30208:9;30202:4;30198:20;30194:1;30183:9;30179:17;30172:47;30236:131;30362:4;30236:131;:::i;:::-;30228:139;;29955:419;;;:::o;30380:172::-;30520:24;30516:1;30508:6;30504:14;30497:48;30380:172;:::o;30558:366::-;30700:3;30721:67;30785:2;30780:3;30721:67;:::i;:::-;30714:74;;30797:93;30886:3;30797:93;:::i;:::-;30915:2;30910:3;30906:12;30899:19;;30558:366;;;:::o;30930:419::-;31096:4;31134:2;31123:9;31119:18;31111:26;;31183:9;31177:4;31173:20;31169:1;31158:9;31154:17;31147:47;31211:131;31337:4;31211:131;:::i;:::-;31203:139;;30930:419;;;:::o;31355:297::-;31495:34;31491:1;31483:6;31479:14;31472:58;31564:34;31559:2;31551:6;31547:15;31540:59;31633:11;31628:2;31620:6;31616:15;31609:36;31355:297;:::o;31658:366::-;31800:3;31821:67;31885:2;31880:3;31821:67;:::i;:::-;31814:74;;31897:93;31986:3;31897:93;:::i;:::-;32015:2;32010:3;32006:12;31999:19;;31658:366;;;:::o;32030:419::-;32196:4;32234:2;32223:9;32219:18;32211:26;;32283:9;32277:4;32273:20;32269:1;32258:9;32254:17;32247:47;32311:131;32437:4;32311:131;:::i;:::-;32303:139;;32030:419;;;:::o;32455:169::-;32595:21;32591:1;32583:6;32579:14;32572:45;32455:169;:::o;32630:366::-;32772:3;32793:67;32857:2;32852:3;32793:67;:::i;:::-;32786:74;;32869:93;32958:3;32869:93;:::i;:::-;32987:2;32982:3;32978:12;32971:19;;32630:366;;;:::o;33002:419::-;33168:4;33206:2;33195:9;33191:18;33183:26;;33255:9;33249:4;33245:20;33241:1;33230:9;33226:17;33219:47;33283:131;33409:4;33283:131;:::i;:::-;33275:139;;33002:419;;;:::o;33427:241::-;33567:34;33563:1;33555:6;33551:14;33544:58;33636:24;33631:2;33623:6;33619:15;33612:49;33427:241;:::o;33674:366::-;33816:3;33837:67;33901:2;33896:3;33837:67;:::i;:::-;33830:74;;33913:93;34002:3;33913:93;:::i;:::-;34031:2;34026:3;34022:12;34015:19;;33674:366;;;:::o;34046:419::-;34212:4;34250:2;34239:9;34235:18;34227:26;;34299:9;34293:4;34289:20;34285:1;34274:9;34270:17;34263:47;34327:131;34453:4;34327:131;:::i;:::-;34319:139;;34046:419;;;:::o;34471:191::-;34511:4;34531:20;34549:1;34531:20;:::i;:::-;34526:25;;34565:20;34583:1;34565:20;:::i;:::-;34560:25;;34604:1;34601;34598:8;34595:34;;;34609:18;;:::i;:::-;34595:34;34654:1;34651;34647:9;34639:17;;34471:191;;;;:::o;34668:225::-;34808:34;34804:1;34796:6;34792:14;34785:58;34877:8;34872:2;34864:6;34860:15;34853:33;34668:225;:::o;34899:366::-;35041:3;35062:67;35126:2;35121:3;35062:67;:::i;:::-;35055:74;;35138:93;35227:3;35138:93;:::i;:::-;35256:2;35251:3;35247:12;35240:19;;34899:366;;;:::o;35271:419::-;35437:4;35475:2;35464:9;35460:18;35452:26;;35524:9;35518:4;35514:20;35510:1;35499:9;35495:17;35488:47;35552:131;35678:4;35552:131;:::i;:::-;35544:139;;35271:419;;;:::o;35696:147::-;35797:11;35834:3;35819:18;;35696:147;;;;:::o;35849:114::-;;:::o;35969:398::-;36128:3;36149:83;36230:1;36225:3;36149:83;:::i;:::-;36142:90;;36241:93;36330:3;36241:93;:::i;:::-;36359:1;36354:3;36350:11;36343:18;;35969:398;;;:::o;36373:379::-;36557:3;36579:147;36722:3;36579:147;:::i;:::-;36572:154;;36743:3;36736:10;;36373:379;;;:::o;36758:442::-;36907:4;36945:2;36934:9;36930:18;36922:26;;36958:71;37026:1;37015:9;37011:17;37002:6;36958:71;:::i;:::-;37039:72;37107:2;37096:9;37092:18;37083:6;37039:72;:::i;:::-;37121;37189:2;37178:9;37174:18;37165:6;37121:72;:::i;:::-;36758:442;;;;;;:::o;37206:180::-;37254:77;37251:1;37244:88;37351:4;37348:1;37341:15;37375:4;37372:1;37365:15;37392:180;37440:77;37437:1;37430:88;37537:4;37534:1;37527:15;37561:4;37558:1;37551:15;37578:143;37635:5;37666:6;37660:13;37651:22;;37682:33;37709:5;37682:33;:::i;:::-;37578:143;;;;:::o;37727:351::-;37797:6;37846:2;37834:9;37825:7;37821:23;37817:32;37814:119;;;37852:79;;:::i;:::-;37814:119;37972:1;37997:64;38053:7;38044:6;38033:9;38029:22;37997:64;:::i;:::-;37987:74;;37943:128;37727:351;;;;:::o;38084:85::-;38129:7;38158:5;38147:16;;38084:85;;;:::o;38175:158::-;38233:9;38266:61;38284:42;38293:32;38319:5;38293:32;:::i;:::-;38284:42;:::i;:::-;38266:61;:::i;:::-;38253:74;;38175:158;;;:::o;38339:147::-;38434:45;38473:5;38434:45;:::i;:::-;38429:3;38422:58;38339:147;;:::o;38492:114::-;38559:6;38593:5;38587:12;38577:22;;38492:114;;;:::o;38612:184::-;38711:11;38745:6;38740:3;38733:19;38785:4;38780:3;38776:14;38761:29;;38612:184;;;;:::o;38802:132::-;38869:4;38892:3;38884:11;;38922:4;38917:3;38913:14;38905:22;;38802:132;;;:::o;38940:108::-;39017:24;39035:5;39017:24;:::i;:::-;39012:3;39005:37;38940:108;;:::o;39054:179::-;39123:10;39144:46;39186:3;39178:6;39144:46;:::i;:::-;39222:4;39217:3;39213:14;39199:28;;39054:179;;;;:::o;39239:113::-;39309:4;39341;39336:3;39332:14;39324:22;;39239:113;;;:::o;39388:732::-;39507:3;39536:54;39584:5;39536:54;:::i;:::-;39606:86;39685:6;39680:3;39606:86;:::i;:::-;39599:93;;39716:56;39766:5;39716:56;:::i;:::-;39795:7;39826:1;39811:284;39836:6;39833:1;39830:13;39811:284;;;39912:6;39906:13;39939:63;39998:3;39983:13;39939:63;:::i;:::-;39932:70;;40025:60;40078:6;40025:60;:::i;:::-;40015:70;;39871:224;39858:1;39855;39851:9;39846:14;;39811:284;;;39815:14;40111:3;40104:10;;39512:608;;;39388:732;;;;:::o;40126:831::-;40389:4;40427:3;40416:9;40412:19;40404:27;;40441:71;40509:1;40498:9;40494:17;40485:6;40441:71;:::i;:::-;40522:80;40598:2;40587:9;40583:18;40574:6;40522:80;:::i;:::-;40649:9;40643:4;40639:20;40634:2;40623:9;40619:18;40612:48;40677:108;40780:4;40771:6;40677:108;:::i;:::-;40669:116;;40795:72;40863:2;40852:9;40848:18;40839:6;40795:72;:::i;:::-;40877:73;40945:3;40934:9;40930:19;40921:6;40877:73;:::i;:::-;40126:831;;;;;;;;:::o;40963:807::-;41212:4;41250:3;41239:9;41235:19;41227:27;;41264:71;41332:1;41321:9;41317:17;41308:6;41264:71;:::i;:::-;41345:72;41413:2;41402:9;41398:18;41389:6;41345:72;:::i;:::-;41427:80;41503:2;41492:9;41488:18;41479:6;41427:80;:::i;:::-;41517;41593:2;41582:9;41578:18;41569:6;41517:80;:::i;:::-;41607:73;41675:3;41664:9;41660:19;41651:6;41607:73;:::i;:::-;41690;41758:3;41747:9;41743:19;41734:6;41690:73;:::i;:::-;40963:807;;;;;;;;;:::o;41776:663::-;41864:6;41872;41880;41929:2;41917:9;41908:7;41904:23;41900:32;41897:119;;;41935:79;;:::i;:::-;41897:119;42055:1;42080:64;42136:7;42127:6;42116:9;42112:22;42080:64;:::i;:::-;42070:74;;42026:128;42193:2;42219:64;42275:7;42266:6;42255:9;42251:22;42219:64;:::i;:::-;42209:74;;42164:129;42332:2;42358:64;42414:7;42405:6;42394:9;42390:22;42358:64;:::i;:::-;42348:74;;42303:129;41776:663;;;;;:::o
Swarm Source
ipfs://66e6fe200abf136e8ba4b4ca148ae117ba01a2856c839d0179c271f7e0ec1a65
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.