ERC-20
Overview
Max Total Supply
98,137,211,796.085541425114427625 👀
Holders
25
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
435,600,000 👀Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Eyes
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-15 */ /** */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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; } 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.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.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, 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); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /* */ contract Eyes is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; mapping (address => bool) private _isBlacklisted; bool private _swapping; address private feeWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public totalFees; uint256 private _marketingFee; uint256 private _liquidityFee; uint256 private _devFee; uint256 private _tokensForMarketing; uint256 private _tokensForLiquidity; uint256 private _tokensForDev; uint256 private _burnFee; // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) private _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) private automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event feeWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity); constructor() ERC20(unicode"👀", unicode"👀") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 marketingFee = 8; uint256 liquidityFee = 1; uint256 devFee = 3; uint256 burnFee = 0; uint256 totalSupply = 1e11 * 1e18; maxTransactionAmount = totalSupply * 5 / 1000; maxWallet = totalSupply * 1 / 100; swapTokensAtAmount = totalSupply * 15 / 10000; _marketingFee = marketingFee; _liquidityFee = liquidityFee; _devFee = devFee; totalFees = _marketingFee + _liquidityFee + _devFee; _burnFee = burnFee; feeWallet = address(0xbbd52bC51cd8609fbC191895aFAB9699f75a5e58); // set as fee wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply."); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%"); maxTransactionAmount = newNum * 1e18; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newNum * 1e18; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateFees(uint256 marketingFee, uint256 liquidityFee, uint256 devFee) external onlyOwner { _marketingFee = marketingFee; _liquidityFee = liquidityFee; _devFee = devFee; totalFees = _marketingFee + _liquidityFee + _devFee; require(totalFees <= 15, "Must keep fees at 10% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateFeeWallet(address newWallet) external onlyOwner { emit feeWalletUpdated(newWallet, feeWallet); feeWallet = newWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function setBlacklisted(address[] memory blacklisted_) public onlyOwner { for (uint i = 0; i < blacklisted_.length; i++) { if (blacklisted_[i] != uniswapV2Pair && blacklisted_[i] != address(uniswapV2Router)) { _isBlacklisted[blacklisted_[i]] = true; } } } function delBlacklisted(address[] memory blacklisted_) public onlyOwner { for (uint i = 0; i < blacklisted_.length; i++) { _isBlacklisted[blacklisted_[i]] = false; } } function isSniper(address addr) public view returns (bool) { return _isBlacklisted[addr]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_isBlacklisted[from], "Your address has been marked as a sniper, you are unable to transfer or swap."); if (amount == 0) { super._transfer(from, to, 0); return; } // Burn baby burn! 🔥 if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { uint256 burnAmount = amount.div(100); _burn(from, burnAmount); amount -= burnAmount; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !_swapping ) { if (!tradingActive) { require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } // when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } // when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if (!_isExcludedMaxTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && !_swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { _swapping = true; swapBack(); _swapping = false; } bool takeFee = !_swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { fees = amount.mul(totalFees).div(100); _tokensForLiquidity += fees * _liquidityFee / totalFees; _tokensForDev += fees * _devFee / totalFees; _tokensForMarketing += fees * _marketingFee / totalFees; if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function _swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = _tokensForLiquidity + _tokensForMarketing + _tokensForDev; if (contractBalance == 0 || totalTokensToSwap == 0) return; if (contractBalance > swapTokensAtAmount) { contractBalance = swapTokensAtAmount; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * _tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; _swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(_tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; _tokensForLiquidity = 0; _tokensForMarketing = 0; _tokensForDev = 0; payable(feeWallet).transfer(ethForMarketing.add(ethForDev)); if (liquidityTokens > 0 && ethForLiquidity > 0) { _addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, _tokensForLiquidity); } } function forceSwap() external onlyOwner { _swapTokensForEth(address(this).balance); payable(feeWallet).transfer(address(this).balance); } function forceSend() external onlyOwner { payable(feeWallet).transfer(address(this).balance); } receive() external payable {} }
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":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"feeWalletUpdated","type":"event"},{"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":"address[]","name":"blacklisted_","type":"address[]"}],"name":"delBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isSniper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"blacklisted_","type":"address[]"}],"name":"setBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"newWallet","type":"address"}],"name":"updateFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600d8054600160ff19918216811761ff001916909255600f805490911690911790553480156200003357600080fd5b5060408051808201825260048082526301e13f2360e71b602080840182815285518087019096529285528401528151919291620000739160039162000695565b5080516200008990600490602084019062000695565b505050620000a6620000a0620003dc60201b60201c565b620003e0565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c881600162000432565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200011d57600080fd5b505afa15801562000132573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015891906200073b565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001a157600080fd5b505afa158015620001b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001dc91906200073b565b6040518363ffffffff1660e01b8152600401620001fb9291906200076b565b602060405180830381600087803b1580156200021657600080fd5b505af11580156200022b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025191906200073b565b600780546001600160a01b0319166001600160a01b0392831617908190556200027d9116600162000432565b60075462000296906001600160a01b03166001620004ac565b60086001600360006c01431e0fae6d7217caa00000006103e8620002bc82600562000841565b620002c8919062000820565b600a556064620002da82600162000841565b620002e6919062000820565b600c55612710620002f982600f62000841565b62000305919062000820565b600b556011859055601284905560138390558262000324858762000805565b62000330919062000805565b601055601782905560098054610100600160a81b03191674bbd52bc51cd8609fbc191895afab9699f75a5e5800179055620003766200036e62000500565b60016200050f565b620003833060016200050f565b6200039261dead60016200050f565b620003a8620003a062000500565b600162000432565b620003b530600162000432565b620003c461dead600162000432565b620003d03382620005b7565b505050505050620008b6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200043c620003dc565b6001600160a01b03166200044f62000500565b6001600160a01b031614620004815760405162461bcd60e51b8152600401620004789062000790565b60405180910390fd5b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031690565b62000519620003dc565b6001600160a01b03166200052c62000500565b6001600160a01b031614620005555760405162461bcd60e51b8152600401620004789062000790565b6001600160a01b03821660008181526018602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df790620005ab90849062000785565b60405180910390a25050565b6001600160a01b038216620005e05760405162461bcd60e51b81526004016200047890620007c5565b620005ee6000838362000690565b806002600082825462000602919062000805565b90915550506001600160a01b038216600090815260208190526040812080548392906200063190849062000805565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9062000676908590620007fc565b60405180910390a36200068c6000838362000690565b5050565b505050565b828054620006a39062000863565b90600052602060002090601f016020900481019282620006c7576000855562000712565b82601f10620006e257805160ff191683800117855562000712565b8280016001018555821562000712579182015b8281111562000712578251825591602001919060010190620006f5565b506200072092915062000724565b5090565b5b8082111562000720576000815560010162000725565b6000602082840312156200074d578081fd5b81516001600160a01b038116811462000764578182fd5b9392505050565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200081b576200081b620008a0565b500190565b6000826200083c57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156200085e576200085e620008a0565b500290565b6002810460018216806200087857607f821691505b602082108114156200089a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b612b9180620008c66000396000f3fe6080604052600436106102295760003560e01c80638a8c523c11610123578063c8125e45116100ab578063df778d261161006f578063df778d2614610607578063e2f456051461061c578063e884f26014610631578063f2fde38b14610646578063f8b45b051461066657610230565b8063c8125e451461057d578063c876d0b91461059d578063c8c8ebe4146105b2578063d257b34f146105c7578063dd62ed3e146105e757610230565b8063a457c2d7116100f2578063a457c2d7146104e8578063a9059cbb14610508578063bbc0c74214610528578063c02466681461053d578063c18bc1951461055d57610230565b80638a8c523c1461047c5780638da5cb5b1461049157806395d89b41146104b35780639a7a23d6146104c857610230565b806323b872dd116101b1578063667185241161017557806366718524146103f257806370a0823114610412578063715018a614610432578063751039fc146104475780637571336a1461045c57610230565b806323b872dd1461035b578063313ce5671461037b578063395093511461039d5780634a62bb65146103bd5780634fbee193146103d257610230565b806312b77e8a116101f857806312b77e8a146102cf57806313114a9d146102e457806318160ddd14610306578063203e727e1461031b578063224290851461033b57610230565b806306fdde0314610235578063095ea7b3146102605780630b559c6f1461028d5780630f3a325f146102af57610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a61067b565b60405161025791906122de565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004612128565b61070d565b60405161025791906122d3565b34801561029957600080fd5b506102ad6102a8366004612153565b61072f565b005b3480156102bb57600080fd5b506102806102ca366004612047565b610894565b3480156102db57600080fd5b506102ad6108b6565b3480156102f057600080fd5b506102f9610938565b60405161025791906129b9565b34801561031257600080fd5b506102f961093e565b34801561032757600080fd5b506102ad610336366004612214565b610944565b34801561034757600080fd5b506102ad61035636600461222c565b6109ed565b34801561036757600080fd5b506102806103763660046120b7565b610a7a565b34801561038757600080fd5b50610390610aa8565b6040516102579190612a48565b3480156103a957600080fd5b506102806103b8366004612128565b610aad565b3480156103c957600080fd5b50610280610af9565b3480156103de57600080fd5b506102806103ed366004612047565b610b02565b3480156103fe57600080fd5b506102ad61040d366004612047565b610b20565b34801561041e57600080fd5b506102f961042d366004612047565b610bc7565b34801561043e57600080fd5b506102ad610be2565b34801561045357600080fd5b50610280610c2d565b34801561046857600080fd5b506102ad6104773660046120f7565b610c7e565b34801561048857600080fd5b506102ad610ce8565b34801561049d57600080fd5b506104a6610d38565b6040516102579190612284565b3480156104bf57600080fd5b5061024a610d47565b3480156104d457600080fd5b506102ad6104e33660046120f7565b610d56565b3480156104f457600080fd5b50610280610503366004612128565b610dcd565b34801561051457600080fd5b50610280610523366004612128565b610e2e565b34801561053457600080fd5b50610280610e46565b34801561054957600080fd5b506102ad6105583660046120f7565b610e54565b34801561056957600080fd5b506102ad610578366004612214565b610ef3565b34801561058957600080fd5b506102ad610598366004612153565b610f9c565b3480156105a957600080fd5b50610280611051565b3480156105be57600080fd5b506102f961105a565b3480156105d357600080fd5b506102806105e2366004612214565b611060565b3480156105f357600080fd5b506102f961060236600461207f565b611129565b34801561061357600080fd5b506102ad611154565b34801561062857600080fd5b506102f961119c565b34801561063d57600080fd5b506102806111a2565b34801561065257600080fd5b506102ad610661366004612047565b6111f3565b34801561067257600080fd5b506102f9611261565b60606003805461068a90612ac4565b80601f01602080910402602001604051908101604052809291908181526020018280546106b690612ac4565b80156107035780601f106106d857610100808354040283529160200191610703565b820191906000526020600020905b8154815290600101906020018083116106e657829003601f168201915b5050505050905090565b600080610718611267565b905061072581858561126b565b5060019392505050565b610737611267565b6001600160a01b0316610748610d38565b6001600160a01b0316146107775760405162461bcd60e51b815260040161076e90612786565b60405180910390fd5b60005b81518110156108905760075482516001600160a01b03909116908390839081106107b457634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b031614158015610813575060065482516001600160a01b03909116908390839081106107ff57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b031614155b1561087e5760016008600084848151811061083e57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8061088881612aff565b91505061077a565b5050565b6001600160a01b03811660009081526008602052604090205460ff165b919050565b6108be611267565b6001600160a01b03166108cf610d38565b6001600160a01b0316146108f55760405162461bcd60e51b815260040161076e90612786565b6009546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015610935573d6000803e3d6000fd5b50565b60105481565b60025490565b61094c611267565b6001600160a01b031661095d610d38565b6001600160a01b0316146109835760405162461bcd60e51b815260040161076e90612786565b670de0b6b3a76400006103e861099761093e565b6109a2906001612a8e565b6109ac9190612a6e565b6109b69190612a6e565b8110156109d55760405162461bcd60e51b815260040161076e9061296a565b6109e781670de0b6b3a7640000612a8e565b600a5550565b6109f5611267565b6001600160a01b0316610a06610d38565b6001600160a01b031614610a2c5760405162461bcd60e51b815260040161076e90612786565b60118390556012829055601381905580610a468385612a56565b610a509190612a56565b6010819055600f1015610a755760405162461bcd60e51b815260040161076e90612374565b505050565b600080610a85611267565b9050610a9285828561131f565b610a9d858585611369565b506001949350505050565b601290565b600080610ab8611267565b6001600160a01b038082166000908152600160209081526040808320938916835292905220549091506107259082908690610af4908790612a56565b61126b565b600d5460ff1681565b6001600160a01b031660009081526018602052604090205460ff1690565b610b28611267565b6001600160a01b0316610b39610d38565b6001600160a01b031614610b5f5760405162461bcd60e51b815260040161076e90612786565b6009546040516001600160a01b036101009092048216918316907f5deb5ef622431f0df5a39b72dd556892f68ba42aa0f3aaf0800e166ce866492890600090a3600980546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b031660009081526020819052604090205490565b610bea611267565b6001600160a01b0316610bfb610d38565b6001600160a01b031614610c215760405162461bcd60e51b815260040161076e90612786565b610c2b600061195d565b565b6000610c37611267565b6001600160a01b0316610c48610d38565b6001600160a01b031614610c6e5760405162461bcd60e51b815260040161076e90612786565b50600d805460ff19169055600190565b610c86611267565b6001600160a01b0316610c97610d38565b6001600160a01b031614610cbd5760405162461bcd60e51b815260040161076e90612786565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b610cf0611267565b6001600160a01b0316610d01610d38565b6001600160a01b031614610d275760405162461bcd60e51b815260040161076e90612786565b600d805461ff001916610100179055565b6005546001600160a01b031690565b60606004805461068a90612ac4565b610d5e611267565b6001600160a01b0316610d6f610d38565b6001600160a01b031614610d955760405162461bcd60e51b815260040161076e90612786565b6007546001600160a01b0383811691161415610dc35760405162461bcd60e51b815260040161076e906124e9565b61089082826119af565b600080610dd8611267565b6001600160a01b0380821660009081526001602090815260408083209389168352929052205490915083811015610e215760405162461bcd60e51b815260040161076e90612925565b610a9d828686840361126b565b600080610e39611267565b9050610725818585611369565b600d54610100900460ff1681565b610e5c611267565b6001600160a01b0316610e6d610d38565b6001600160a01b031614610e935760405162461bcd60e51b815260040161076e90612786565b6001600160a01b03821660008181526018602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df790610ee79084906122d3565b60405180910390a25050565b610efb611267565b6001600160a01b0316610f0c610d38565b6001600160a01b031614610f325760405162461bcd60e51b815260040161076e90612786565b670de0b6b3a76400006103e8610f4661093e565b610f51906005612a8e565b610f5b9190612a6e565b610f659190612a6e565b811015610f845760405162461bcd60e51b815260040161076e906124a5565b610f9681670de0b6b3a7640000612a8e565b600c5550565b610fa4611267565b6001600160a01b0316610fb5610d38565b6001600160a01b031614610fdb5760405162461bcd60e51b815260040161076e90612786565b60005b81518110156108905760006008600084848151811061100d57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061104981612aff565b915050610fde565b600f5460ff1681565b600a5481565b600061106a611267565b6001600160a01b031661107b610d38565b6001600160a01b0316146110a15760405162461bcd60e51b815260040161076e90612786565b620186a06110ad61093e565b6110b8906001612a8e565b6110c29190612a6e565b8210156110e15760405162461bcd60e51b815260040161076e90612619565b6103e86110ec61093e565b6110f7906005612a8e565b6111019190612a6e565b8211156111205760405162461bcd60e51b815260040161076e9061266e565b50600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61115c611267565b6001600160a01b031661116d610d38565b6001600160a01b0316146111935760405162461bcd60e51b815260040161076e90612786565b6108f547611a03565b600b5481565b60006111ac611267565b6001600160a01b03166111bd610d38565b6001600160a01b0316146111e35760405162461bcd60e51b815260040161076e90612786565b50600f805460ff19169055600190565b6111fb611267565b6001600160a01b031661120c610d38565b6001600160a01b0316146112325760405162461bcd60e51b815260040161076e90612786565b6001600160a01b0381166112585760405162461bcd60e51b815260040161076e9061241d565b6109358161195d565b600c5481565b3390565b6001600160a01b0383166112915760405162461bcd60e51b815260040161076e906128b4565b6001600160a01b0382166112b75760405162461bcd60e51b815260040161076e90612463565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906113129085906129b9565b60405180910390a3505050565b600061132b8484611129565b9050600019811461136357818110156113565760405162461bcd60e51b815260040161076e90612546565b611363848484840361126b565b50505050565b6001600160a01b03831661138f5760405162461bcd60e51b815260040161076e906127fc565b6001600160a01b0382166113b55760405162461bcd60e51b815260040161076e90612331565b6001600160a01b03831660009081526008602052604090205460ff16156113ee5760405162461bcd60e51b815260040161076e90612841565b80611404576113ff83836000611b88565b610a75565b6001600160a01b03831660009081526018602052604090205460ff1615801561144657506001600160a01b03821660009081526018602052604090205460ff16155b15611472576000611458826064611cac565b90506114648482611cbf565b61146e8183612aad565b9150505b600d5460ff161561176757611485610d38565b6001600160a01b0316836001600160a01b0316141580156114bf57506114a9610d38565b6001600160a01b0316826001600160a01b031614155b80156114d357506001600160a01b03821615155b80156114ea57506001600160a01b03821661dead14155b80156114f9575060095460ff16155b1561176757600d54610100900460ff16611568576001600160a01b03831660009081526018602052604090205460ff168061154c57506001600160a01b03821660009081526018602052604090205460ff165b6115685760405162461bcd60e51b815260040161076e906123ed565b600f5460ff161561160a5761157b610d38565b6001600160a01b0316826001600160a01b0316141580156115aa57506006546001600160a01b03838116911614155b80156115c457506007546001600160a01b03838116911614155b1561160a57326000908152600e602052604090205443116115f75760405162461bcd60e51b815260040161076e90612717565b326000908152600e602052604090204390555b6001600160a01b0383166000908152601a602052604090205460ff16801561164b57506001600160a01b03821660009081526019602052604090205460ff16155b156116ab57600a548111156116725760405162461bcd60e51b815260040161076e906126c2565b600c5461167e83610bc7565b6116889083612a56565b11156116a65760405162461bcd60e51b815260040161076e906128f8565b611767565b6001600160a01b0382166000908152601a602052604090205460ff1680156116ec57506001600160a01b03831660009081526019602052604090205460ff16155b1561171357600a548111156116a65760405162461bcd60e51b815260040161076e906125c3565b6001600160a01b03821660009081526019602052604090205460ff1661176757600c5461173f83610bc7565b6117499083612a56565b11156117675760405162461bcd60e51b815260040161076e906128f8565b600061177230610bc7565b600b549091508110801590819061178c575060095460ff16155b80156117b157506001600160a01b0385166000908152601a602052604090205460ff16155b80156117d657506001600160a01b03851660009081526018602052604090205460ff16155b80156117fb57506001600160a01b03841660009081526018602052604090205460ff16155b15611820576009805460ff19166001179055611815611db0565b6009805460ff191690555b6009546001600160a01b03861660009081526018602052604090205460ff9182161591168061186757506001600160a01b03851660009081526018602052604090205460ff165b15611870575060005b6000811561194957611898606461189260105488611f6690919063ffffffff16565b90611cac565b9050601054601254826118ab9190612a8e565b6118b59190612a6e565b601560008282546118c69190612a56565b90915550506010546013546118db9083612a8e565b6118e59190612a6e565b601660008282546118f69190612a56565b909155505060105460115461190b9083612a8e565b6119159190612a6e565b601460008282546119269190612a56565b9091555050801561193c5761193c873083611b88565b6119468186612aad565b94505b611954878787611b88565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a4657634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611a9a57600080fd5b505afa158015611aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad29190612063565b81600181518110611af357634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654611b19913091168461126b565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611b529085906000908690309042906004016129c2565b600060405180830381600087803b158015611b6c57600080fd5b505af1158015611b80573d6000803e3d6000fd5b505050505050565b6001600160a01b038316611bae5760405162461bcd60e51b815260040161076e906127fc565b6001600160a01b038216611bd45760405162461bcd60e51b815260040161076e90612331565b611bdf838383610a75565b6001600160a01b03831660009081526020819052604090205481811015611c185760405162461bcd60e51b815260040161076e9061257d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c4f908490612a56565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c9991906129b9565b60405180910390a3611363848484610a75565b6000611cb88284612a6e565b9392505050565b6001600160a01b038216611ce55760405162461bcd60e51b815260040161076e906127bb565b611cf182600083610a75565b6001600160a01b03821660009081526020819052604090205481811015611d2a5760405162461bcd60e51b815260040161076e906123ab565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611d59908490612aad565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611d9c9086906129b9565b60405180910390a3610a7583600084610a75565b6000611dbb30610bc7565b90506000601654601454601554611dd29190612a56565b611ddc9190612a56565b9050811580611de9575080155b15611df5575050610c2b565b600b54821115611e0557600b5491505b600060028260155485611e189190612a8e565b611e229190612a6e565b611e2c9190612a6e565b90506000611e3a8483611f72565b905047611e4682611a03565b6000611e524783611f72565b90506000611e6f8661189260145485611f6690919063ffffffff16565b90506000611e8c8761189260165486611f6690919063ffffffff16565b9050600081611e9b8486612aad565b611ea59190612aad565b60006015819055601481905560165560095490915061010090046001600160a01b03166108fc611ed58585611f7e565b6040518115909202916000818181858888f19350505050158015611efd573d6000803e3d6000fd5b50600087118015611f0e5750600081115b15611f5b57611f1d8782611f8a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601554604051611f5293929190612a32565b60405180910390a15b505050505050505050565b6000611cb88284612a8e565b6000611cb88284612aad565b6000611cb88284612a56565b600654611fa29030906001600160a01b03168461126b565b6006546001600160a01b031663f305d719823085600080611fc1610d38565b426040518863ffffffff1660e01b8152600401611fe396959493929190612298565b6060604051808303818588803b158015611ffc57600080fd5b505af1158015612010573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120359190612257565b5050505050565b80356108b181612b46565b600060208284031215612058578081fd5b8135611cb881612b46565b600060208284031215612074578081fd5b8151611cb881612b46565b60008060408385031215612091578081fd5b823561209c81612b46565b915060208301356120ac81612b46565b809150509250929050565b6000806000606084860312156120cb578081fd5b83356120d681612b46565b925060208401356120e681612b46565b929592945050506040919091013590565b60008060408385031215612109578182fd5b823561211481612b46565b9150602083013580151581146120ac578182fd5b6000806040838503121561213a578182fd5b823561214581612b46565b946020939093013593505050565b60006020808385031215612165578182fd5b823567ffffffffffffffff8082111561217c578384fd5b818501915085601f83011261218f578384fd5b8135818111156121a1576121a1612b30565b838102604051858282010181811085821117156121c0576121c0612b30565b604052828152858101935084860182860187018a10156121de578788fd5b8795505b83861015612207576121f38161203c565b8552600195909501949386019386016121e2565b5098975050505050505050565b600060208284031215612225578081fd5b5035919050565b600080600060608486031215612240578283fd5b505081359360208301359350604090920135919050565b60008060006060848603121561226b578283fd5b8351925060208401519150604084015190509250925092565b6001600160a01b0391909116815260200190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b8181101561230a578581018301518582016040015282016122ee565b8181111561231b5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601d908201527f4d757374206b656570206665657320617420313025206f72206c657373000000604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526024908201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604082015263302e352560e01b606082015260800190565b60208082526039908201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060408201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526036908201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656040820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606082015260800190565b60208082526035908201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60408201527410181718181892903a37ba30b61039bab838363c9760591b606082015260800190565b60208082526034908201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604082015273371018171a92903a37ba30b61039bab838363c9760611b606082015260800190565b60208082526035908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606082015260800190565b60208082526049908201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60408201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6060820152681030b63637bbb2b21760b91b608082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252604d908201527f596f7572206164647265737320686173206265656e206d61726b65642061732060408201527f6120736e697065722c20796f752061726520756e61626c6520746f207472616e60608201526c39b332b91037b91039bbb0b81760991b608082015260a00190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526e6c6f776572207468616e20302e312560881b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015612a115784516001600160a01b0316835293830193918301916001016129ec565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b60008219821115612a6957612a69612b1a565b500190565b600082612a8957634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612aa857612aa8612b1a565b500290565b600082821015612abf57612abf612b1a565b500390565b600281046001821680612ad857607f821691505b60208210811415612af957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b1357612b13612b1a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461093557600080fdfea26469706673582212209e727cbf08664424a422006968d467a3c30ea0d7b5723aecaf0f880717e7e97f64736f6c63430008000033
Deployed Bytecode
0x6080604052600436106102295760003560e01c80638a8c523c11610123578063c8125e45116100ab578063df778d261161006f578063df778d2614610607578063e2f456051461061c578063e884f26014610631578063f2fde38b14610646578063f8b45b051461066657610230565b8063c8125e451461057d578063c876d0b91461059d578063c8c8ebe4146105b2578063d257b34f146105c7578063dd62ed3e146105e757610230565b8063a457c2d7116100f2578063a457c2d7146104e8578063a9059cbb14610508578063bbc0c74214610528578063c02466681461053d578063c18bc1951461055d57610230565b80638a8c523c1461047c5780638da5cb5b1461049157806395d89b41146104b35780639a7a23d6146104c857610230565b806323b872dd116101b1578063667185241161017557806366718524146103f257806370a0823114610412578063715018a614610432578063751039fc146104475780637571336a1461045c57610230565b806323b872dd1461035b578063313ce5671461037b578063395093511461039d5780634a62bb65146103bd5780634fbee193146103d257610230565b806312b77e8a116101f857806312b77e8a146102cf57806313114a9d146102e457806318160ddd14610306578063203e727e1461031b578063224290851461033b57610230565b806306fdde0314610235578063095ea7b3146102605780630b559c6f1461028d5780630f3a325f146102af57610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a61067b565b60405161025791906122de565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004612128565b61070d565b60405161025791906122d3565b34801561029957600080fd5b506102ad6102a8366004612153565b61072f565b005b3480156102bb57600080fd5b506102806102ca366004612047565b610894565b3480156102db57600080fd5b506102ad6108b6565b3480156102f057600080fd5b506102f9610938565b60405161025791906129b9565b34801561031257600080fd5b506102f961093e565b34801561032757600080fd5b506102ad610336366004612214565b610944565b34801561034757600080fd5b506102ad61035636600461222c565b6109ed565b34801561036757600080fd5b506102806103763660046120b7565b610a7a565b34801561038757600080fd5b50610390610aa8565b6040516102579190612a48565b3480156103a957600080fd5b506102806103b8366004612128565b610aad565b3480156103c957600080fd5b50610280610af9565b3480156103de57600080fd5b506102806103ed366004612047565b610b02565b3480156103fe57600080fd5b506102ad61040d366004612047565b610b20565b34801561041e57600080fd5b506102f961042d366004612047565b610bc7565b34801561043e57600080fd5b506102ad610be2565b34801561045357600080fd5b50610280610c2d565b34801561046857600080fd5b506102ad6104773660046120f7565b610c7e565b34801561048857600080fd5b506102ad610ce8565b34801561049d57600080fd5b506104a6610d38565b6040516102579190612284565b3480156104bf57600080fd5b5061024a610d47565b3480156104d457600080fd5b506102ad6104e33660046120f7565b610d56565b3480156104f457600080fd5b50610280610503366004612128565b610dcd565b34801561051457600080fd5b50610280610523366004612128565b610e2e565b34801561053457600080fd5b50610280610e46565b34801561054957600080fd5b506102ad6105583660046120f7565b610e54565b34801561056957600080fd5b506102ad610578366004612214565b610ef3565b34801561058957600080fd5b506102ad610598366004612153565b610f9c565b3480156105a957600080fd5b50610280611051565b3480156105be57600080fd5b506102f961105a565b3480156105d357600080fd5b506102806105e2366004612214565b611060565b3480156105f357600080fd5b506102f961060236600461207f565b611129565b34801561061357600080fd5b506102ad611154565b34801561062857600080fd5b506102f961119c565b34801561063d57600080fd5b506102806111a2565b34801561065257600080fd5b506102ad610661366004612047565b6111f3565b34801561067257600080fd5b506102f9611261565b60606003805461068a90612ac4565b80601f01602080910402602001604051908101604052809291908181526020018280546106b690612ac4565b80156107035780601f106106d857610100808354040283529160200191610703565b820191906000526020600020905b8154815290600101906020018083116106e657829003601f168201915b5050505050905090565b600080610718611267565b905061072581858561126b565b5060019392505050565b610737611267565b6001600160a01b0316610748610d38565b6001600160a01b0316146107775760405162461bcd60e51b815260040161076e90612786565b60405180910390fd5b60005b81518110156108905760075482516001600160a01b03909116908390839081106107b457634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b031614158015610813575060065482516001600160a01b03909116908390839081106107ff57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b031614155b1561087e5760016008600084848151811061083e57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8061088881612aff565b91505061077a565b5050565b6001600160a01b03811660009081526008602052604090205460ff165b919050565b6108be611267565b6001600160a01b03166108cf610d38565b6001600160a01b0316146108f55760405162461bcd60e51b815260040161076e90612786565b6009546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015610935573d6000803e3d6000fd5b50565b60105481565b60025490565b61094c611267565b6001600160a01b031661095d610d38565b6001600160a01b0316146109835760405162461bcd60e51b815260040161076e90612786565b670de0b6b3a76400006103e861099761093e565b6109a2906001612a8e565b6109ac9190612a6e565b6109b69190612a6e565b8110156109d55760405162461bcd60e51b815260040161076e9061296a565b6109e781670de0b6b3a7640000612a8e565b600a5550565b6109f5611267565b6001600160a01b0316610a06610d38565b6001600160a01b031614610a2c5760405162461bcd60e51b815260040161076e90612786565b60118390556012829055601381905580610a468385612a56565b610a509190612a56565b6010819055600f1015610a755760405162461bcd60e51b815260040161076e90612374565b505050565b600080610a85611267565b9050610a9285828561131f565b610a9d858585611369565b506001949350505050565b601290565b600080610ab8611267565b6001600160a01b038082166000908152600160209081526040808320938916835292905220549091506107259082908690610af4908790612a56565b61126b565b600d5460ff1681565b6001600160a01b031660009081526018602052604090205460ff1690565b610b28611267565b6001600160a01b0316610b39610d38565b6001600160a01b031614610b5f5760405162461bcd60e51b815260040161076e90612786565b6009546040516001600160a01b036101009092048216918316907f5deb5ef622431f0df5a39b72dd556892f68ba42aa0f3aaf0800e166ce866492890600090a3600980546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b031660009081526020819052604090205490565b610bea611267565b6001600160a01b0316610bfb610d38565b6001600160a01b031614610c215760405162461bcd60e51b815260040161076e90612786565b610c2b600061195d565b565b6000610c37611267565b6001600160a01b0316610c48610d38565b6001600160a01b031614610c6e5760405162461bcd60e51b815260040161076e90612786565b50600d805460ff19169055600190565b610c86611267565b6001600160a01b0316610c97610d38565b6001600160a01b031614610cbd5760405162461bcd60e51b815260040161076e90612786565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b610cf0611267565b6001600160a01b0316610d01610d38565b6001600160a01b031614610d275760405162461bcd60e51b815260040161076e90612786565b600d805461ff001916610100179055565b6005546001600160a01b031690565b60606004805461068a90612ac4565b610d5e611267565b6001600160a01b0316610d6f610d38565b6001600160a01b031614610d955760405162461bcd60e51b815260040161076e90612786565b6007546001600160a01b0383811691161415610dc35760405162461bcd60e51b815260040161076e906124e9565b61089082826119af565b600080610dd8611267565b6001600160a01b0380821660009081526001602090815260408083209389168352929052205490915083811015610e215760405162461bcd60e51b815260040161076e90612925565b610a9d828686840361126b565b600080610e39611267565b9050610725818585611369565b600d54610100900460ff1681565b610e5c611267565b6001600160a01b0316610e6d610d38565b6001600160a01b031614610e935760405162461bcd60e51b815260040161076e90612786565b6001600160a01b03821660008181526018602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df790610ee79084906122d3565b60405180910390a25050565b610efb611267565b6001600160a01b0316610f0c610d38565b6001600160a01b031614610f325760405162461bcd60e51b815260040161076e90612786565b670de0b6b3a76400006103e8610f4661093e565b610f51906005612a8e565b610f5b9190612a6e565b610f659190612a6e565b811015610f845760405162461bcd60e51b815260040161076e906124a5565b610f9681670de0b6b3a7640000612a8e565b600c5550565b610fa4611267565b6001600160a01b0316610fb5610d38565b6001600160a01b031614610fdb5760405162461bcd60e51b815260040161076e90612786565b60005b81518110156108905760006008600084848151811061100d57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061104981612aff565b915050610fde565b600f5460ff1681565b600a5481565b600061106a611267565b6001600160a01b031661107b610d38565b6001600160a01b0316146110a15760405162461bcd60e51b815260040161076e90612786565b620186a06110ad61093e565b6110b8906001612a8e565b6110c29190612a6e565b8210156110e15760405162461bcd60e51b815260040161076e90612619565b6103e86110ec61093e565b6110f7906005612a8e565b6111019190612a6e565b8211156111205760405162461bcd60e51b815260040161076e9061266e565b50600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61115c611267565b6001600160a01b031661116d610d38565b6001600160a01b0316146111935760405162461bcd60e51b815260040161076e90612786565b6108f547611a03565b600b5481565b60006111ac611267565b6001600160a01b03166111bd610d38565b6001600160a01b0316146111e35760405162461bcd60e51b815260040161076e90612786565b50600f805460ff19169055600190565b6111fb611267565b6001600160a01b031661120c610d38565b6001600160a01b0316146112325760405162461bcd60e51b815260040161076e90612786565b6001600160a01b0381166112585760405162461bcd60e51b815260040161076e9061241d565b6109358161195d565b600c5481565b3390565b6001600160a01b0383166112915760405162461bcd60e51b815260040161076e906128b4565b6001600160a01b0382166112b75760405162461bcd60e51b815260040161076e90612463565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906113129085906129b9565b60405180910390a3505050565b600061132b8484611129565b9050600019811461136357818110156113565760405162461bcd60e51b815260040161076e90612546565b611363848484840361126b565b50505050565b6001600160a01b03831661138f5760405162461bcd60e51b815260040161076e906127fc565b6001600160a01b0382166113b55760405162461bcd60e51b815260040161076e90612331565b6001600160a01b03831660009081526008602052604090205460ff16156113ee5760405162461bcd60e51b815260040161076e90612841565b80611404576113ff83836000611b88565b610a75565b6001600160a01b03831660009081526018602052604090205460ff1615801561144657506001600160a01b03821660009081526018602052604090205460ff16155b15611472576000611458826064611cac565b90506114648482611cbf565b61146e8183612aad565b9150505b600d5460ff161561176757611485610d38565b6001600160a01b0316836001600160a01b0316141580156114bf57506114a9610d38565b6001600160a01b0316826001600160a01b031614155b80156114d357506001600160a01b03821615155b80156114ea57506001600160a01b03821661dead14155b80156114f9575060095460ff16155b1561176757600d54610100900460ff16611568576001600160a01b03831660009081526018602052604090205460ff168061154c57506001600160a01b03821660009081526018602052604090205460ff165b6115685760405162461bcd60e51b815260040161076e906123ed565b600f5460ff161561160a5761157b610d38565b6001600160a01b0316826001600160a01b0316141580156115aa57506006546001600160a01b03838116911614155b80156115c457506007546001600160a01b03838116911614155b1561160a57326000908152600e602052604090205443116115f75760405162461bcd60e51b815260040161076e90612717565b326000908152600e602052604090204390555b6001600160a01b0383166000908152601a602052604090205460ff16801561164b57506001600160a01b03821660009081526019602052604090205460ff16155b156116ab57600a548111156116725760405162461bcd60e51b815260040161076e906126c2565b600c5461167e83610bc7565b6116889083612a56565b11156116a65760405162461bcd60e51b815260040161076e906128f8565b611767565b6001600160a01b0382166000908152601a602052604090205460ff1680156116ec57506001600160a01b03831660009081526019602052604090205460ff16155b1561171357600a548111156116a65760405162461bcd60e51b815260040161076e906125c3565b6001600160a01b03821660009081526019602052604090205460ff1661176757600c5461173f83610bc7565b6117499083612a56565b11156117675760405162461bcd60e51b815260040161076e906128f8565b600061177230610bc7565b600b549091508110801590819061178c575060095460ff16155b80156117b157506001600160a01b0385166000908152601a602052604090205460ff16155b80156117d657506001600160a01b03851660009081526018602052604090205460ff16155b80156117fb57506001600160a01b03841660009081526018602052604090205460ff16155b15611820576009805460ff19166001179055611815611db0565b6009805460ff191690555b6009546001600160a01b03861660009081526018602052604090205460ff9182161591168061186757506001600160a01b03851660009081526018602052604090205460ff165b15611870575060005b6000811561194957611898606461189260105488611f6690919063ffffffff16565b90611cac565b9050601054601254826118ab9190612a8e565b6118b59190612a6e565b601560008282546118c69190612a56565b90915550506010546013546118db9083612a8e565b6118e59190612a6e565b601660008282546118f69190612a56565b909155505060105460115461190b9083612a8e565b6119159190612a6e565b601460008282546119269190612a56565b9091555050801561193c5761193c873083611b88565b6119468186612aad565b94505b611954878787611b88565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a4657634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611a9a57600080fd5b505afa158015611aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad29190612063565b81600181518110611af357634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654611b19913091168461126b565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611b529085906000908690309042906004016129c2565b600060405180830381600087803b158015611b6c57600080fd5b505af1158015611b80573d6000803e3d6000fd5b505050505050565b6001600160a01b038316611bae5760405162461bcd60e51b815260040161076e906127fc565b6001600160a01b038216611bd45760405162461bcd60e51b815260040161076e90612331565b611bdf838383610a75565b6001600160a01b03831660009081526020819052604090205481811015611c185760405162461bcd60e51b815260040161076e9061257d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c4f908490612a56565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c9991906129b9565b60405180910390a3611363848484610a75565b6000611cb88284612a6e565b9392505050565b6001600160a01b038216611ce55760405162461bcd60e51b815260040161076e906127bb565b611cf182600083610a75565b6001600160a01b03821660009081526020819052604090205481811015611d2a5760405162461bcd60e51b815260040161076e906123ab565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611d59908490612aad565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611d9c9086906129b9565b60405180910390a3610a7583600084610a75565b6000611dbb30610bc7565b90506000601654601454601554611dd29190612a56565b611ddc9190612a56565b9050811580611de9575080155b15611df5575050610c2b565b600b54821115611e0557600b5491505b600060028260155485611e189190612a8e565b611e229190612a6e565b611e2c9190612a6e565b90506000611e3a8483611f72565b905047611e4682611a03565b6000611e524783611f72565b90506000611e6f8661189260145485611f6690919063ffffffff16565b90506000611e8c8761189260165486611f6690919063ffffffff16565b9050600081611e9b8486612aad565b611ea59190612aad565b60006015819055601481905560165560095490915061010090046001600160a01b03166108fc611ed58585611f7e565b6040518115909202916000818181858888f19350505050158015611efd573d6000803e3d6000fd5b50600087118015611f0e5750600081115b15611f5b57611f1d8782611f8a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601554604051611f5293929190612a32565b60405180910390a15b505050505050505050565b6000611cb88284612a8e565b6000611cb88284612aad565b6000611cb88284612a56565b600654611fa29030906001600160a01b03168461126b565b6006546001600160a01b031663f305d719823085600080611fc1610d38565b426040518863ffffffff1660e01b8152600401611fe396959493929190612298565b6060604051808303818588803b158015611ffc57600080fd5b505af1158015612010573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120359190612257565b5050505050565b80356108b181612b46565b600060208284031215612058578081fd5b8135611cb881612b46565b600060208284031215612074578081fd5b8151611cb881612b46565b60008060408385031215612091578081fd5b823561209c81612b46565b915060208301356120ac81612b46565b809150509250929050565b6000806000606084860312156120cb578081fd5b83356120d681612b46565b925060208401356120e681612b46565b929592945050506040919091013590565b60008060408385031215612109578182fd5b823561211481612b46565b9150602083013580151581146120ac578182fd5b6000806040838503121561213a578182fd5b823561214581612b46565b946020939093013593505050565b60006020808385031215612165578182fd5b823567ffffffffffffffff8082111561217c578384fd5b818501915085601f83011261218f578384fd5b8135818111156121a1576121a1612b30565b838102604051858282010181811085821117156121c0576121c0612b30565b604052828152858101935084860182860187018a10156121de578788fd5b8795505b83861015612207576121f38161203c565b8552600195909501949386019386016121e2565b5098975050505050505050565b600060208284031215612225578081fd5b5035919050565b600080600060608486031215612240578283fd5b505081359360208301359350604090920135919050565b60008060006060848603121561226b578283fd5b8351925060208401519150604084015190509250925092565b6001600160a01b0391909116815260200190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b8181101561230a578581018301518582016040015282016122ee565b8181111561231b5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601d908201527f4d757374206b656570206665657320617420313025206f72206c657373000000604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526024908201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604082015263302e352560e01b606082015260800190565b60208082526039908201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060408201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526036908201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656040820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606082015260800190565b60208082526035908201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60408201527410181718181892903a37ba30b61039bab838363c9760591b606082015260800190565b60208082526034908201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604082015273371018171a92903a37ba30b61039bab838363c9760611b606082015260800190565b60208082526035908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606082015260800190565b60208082526049908201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60408201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6060820152681030b63637bbb2b21760b91b608082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252604d908201527f596f7572206164647265737320686173206265656e206d61726b65642061732060408201527f6120736e697065722c20796f752061726520756e61626c6520746f207472616e60608201526c39b332b91037b91039bbb0b81760991b608082015260a00190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526e6c6f776572207468616e20302e312560881b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015612a115784516001600160a01b0316835293830193918301916001016129ec565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b60008219821115612a6957612a69612b1a565b500190565b600082612a8957634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612aa857612aa8612b1a565b500290565b600082821015612abf57612abf612b1a565b500390565b600281046001821680612ad857607f821691505b60208210811415612af957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b1357612b13612b1a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461093557600080fdfea26469706673582212209e727cbf08664424a422006968d467a3c30ea0d7b5723aecaf0f880717e7e97f64736f6c63430008000033
Deployed Bytecode Sourcemap
34745:13976:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23851:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26202:201;;;;;;;;;;-1:-1:-1;26202:201:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41213:321::-;;;;;;;;;;-1:-1:-1;41213:321:0;;;;;:::i;:::-;;:::i;:::-;;41761:105;;;;;;;;;;-1:-1:-1;41761:105:0;;;;;:::i;:::-;;:::i;48572:109::-;;;;;;;;;;;;;:::i;35465:24::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24971:108::-;;;;;;;;;;;;;:::i;39300:232::-;;;;;;;;;;-1:-1:-1;39300:232:0;;;;;:::i;:::-;;:::i;39919:342::-;;;;;;;;;;-1:-1:-1;39919:342:0;;;;;:::i;:::-;;:::i;26983:295::-;;;;;;;;;;-1:-1:-1;26983:295:0;;;;;:::i;:::-;;:::i;24813:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27687:240::-;;;;;;;;;;-1:-1:-1;27687:240:0;;;;;:::i;:::-;;:::i;35153:33::-;;;;;;;;;;;;;:::i;41076:125::-;;;;;;;;;;-1:-1:-1;41076:125:0;;;;;:::i;:::-;;:::i;40911:157::-;;;;;;;;;;-1:-1:-1;40911:157:0;;;;;:::i;:::-;;:::i;25142:127::-;;;;;;;;;;-1:-1:-1;25142:127:0;;;;;:::i;:::-;;:::i;9386:103::-;;;;;;;;;;;;;:::i;38510:121::-;;;;;;;;;;;;;:::i;39763:144::-;;;;;;;;;;-1:-1:-1;39763:144:0;;;;;:::i;:::-;;:::i;38371:83::-;;;;;;;;;;;;;:::i;8735:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24070:104::-;;;;;;;;;;;;;:::i;40459:244::-;;;;;;;;;;-1:-1:-1;40459:244:0;;;;;:::i;:::-;;:::i;28430:438::-;;;;;;;;;;-1:-1:-1;28430:438:0;;;;;:::i;:::-;;:::i;25475:193::-;;;;;;;;;;-1:-1:-1;25475:193:0;;;;;:::i;:::-;;:::i;35193:33::-;;;;;;;;;;;;;:::i;40269:182::-;;;;;;;;;;-1:-1:-1;40269:182:0;;;;;:::i;:::-;;:::i;39540:211::-;;;;;;;;;;-1:-1:-1;39540:211:0;;;;;:::i;:::-;;:::i;41546:203::-;;;;;;;;;;-1:-1:-1;41546:203:0;;;;;:::i;:::-;;:::i;35417:39::-;;;;;;;;;;;;;:::i;35030:35::-;;;;;;;;;;;;;:::i;38906:382::-;;;;;;;;;;-1:-1:-1;38906:382:0;;;;;:::i;:::-;;:::i;25731:151::-;;;;;;;;;;-1:-1:-1;25731:151:0;;;;;:::i;:::-;;:::i;48404:160::-;;;;;;;;;;;;;:::i;35072:33::-;;;;;;;;;;;;;:::i;38696:135::-;;;;;;;;;;;;;:::i;9644:201::-;;;;;;;;;;-1:-1:-1;9644:201:0;;;;;:::i;:::-;;:::i;35112:24::-;;;;;;;;;;;;;:::i;23851:100::-;23905:13;23938:5;23931:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23851:100;:::o;26202:201::-;26285:4;26302:13;26318:12;:10;:12::i;:::-;26302:28;;26341:32;26350:5;26357:7;26366:6;26341:8;:32::i;:::-;-1:-1:-1;26391:4:0;;26202:201;-1:-1:-1;;;26202:201:0:o;41213:321::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;;;;;;;;;41301:6:::1;41296:231;41317:12;:19;41313:1;:23;41296:231;;;41381:13;::::0;41362:15;;-1:-1:-1;;;;;41381:13:0;;::::1;::::0;41362:12;;41375:1;;41362:15;::::1;;;-1:-1:-1::0;;;41362:15:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;41362:32:0::1;;;:79;;;;-1:-1:-1::0;41425:15:0::1;::::0;41398;;-1:-1:-1;;;;;41425:15:0;;::::1;::::0;41398:12;;41411:1;;41398:15;::::1;;;-1:-1:-1::0;;;41398:15:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;41398:43:0::1;;;41362:79;41358:158;;;41496:4;41462:14;:31;41477:12;41490:1;41477:15;;;;;;-1:-1:-1::0;;;41477:15:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;41462:31:0::1;-1:-1:-1::0;;;;;41462:31:0::1;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;41358:158;41338:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41296:231;;;;41213:321:::0;:::o;41761:105::-;-1:-1:-1;;;;;41838:20:0;;41814:4;41838:20;;;:14;:20;;;;;;;;41761:105;;;;:::o;48572:109::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;48631:9:::1;::::0;48623:50:::1;::::0;-1:-1:-1;;;;;48631:9:0::1;::::0;;::::1;::::0;;;::::1;::::0;48651:21:::1;48623:50:::0;::::1;;;::::0;::::1;::::0;;;48651:21;48631:9;48623:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48572:109::o:0;35465:24::-;;;;:::o;24971:108::-;25059:12;;24971:108;:::o;39300:232::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;39421:4:::1;39413;39393:13;:11;:13::i;:::-;:17;::::0;39409:1:::1;39393:17;:::i;:::-;:24;;;;:::i;:::-;39392:33;;;;:::i;:::-;39382:6;:43;;39374:103;;;;-1:-1:-1::0;;;39374:103:0::1;;;;;;;:::i;:::-;39511:13;:6:::0;39520:4:::1;39511:13;:::i;:::-;39488:20;:36:::0;-1:-1:-1;39300:232:0:o;39919:342::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;40029:13:::1;:28:::0;;;40068:13:::1;:28:::0;;;40107:7:::1;:16:::0;;;40117:6;40146:29:::1;40084:12:::0;40045;40146:29:::1;:::i;:::-;:39;;;;:::i;:::-;40134:9;:51:::0;;;40217:2:::1;-1:-1:-1::0;40204:15:0::1;40196:57;;;;-1:-1:-1::0;;;40196:57:0::1;;;;;;;:::i;:::-;39919:342:::0;;;:::o;26983:295::-;27114:4;27131:15;27149:12;:10;:12::i;:::-;27131:30;;27172:38;27188:4;27194:7;27203:6;27172:15;:38::i;:::-;27221:27;27231:4;27237:2;27241:6;27221:9;:27::i;:::-;-1:-1:-1;27266:4:0;;26983:295;-1:-1:-1;;;;26983:295:0:o;24813:93::-;24896:2;24813:93;:::o;27687:240::-;27775:4;27792:13;27808:12;:10;:12::i;:::-;-1:-1:-1;;;;;27856:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;27792:28;;-1:-1:-1;27831:66:0;;27792:28;;27847:7;;27856:40;;27886:10;;27856:40;:::i;:::-;27831:8;:66::i;35153:33::-;;;;;;:::o;41076:125::-;-1:-1:-1;;;;;41165:28:0;41141:4;41165:28;;;:19;:28;;;;;;;;;41076:125::o;40911:157::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;41018:9:::1;::::0;40990:38:::1;::::0;-1:-1:-1;;;;;41018:9:0::1;::::0;;::::1;::::0;::::1;::::0;40990:38;::::1;::::0;::::1;::::0;;;::::1;41039:9;:21:::0;;-1:-1:-1;;;;;41039:21:0;;::::1;;;-1:-1:-1::0;;;;;;41039:21:0;;::::1;::::0;;;::::1;::::0;;40911:157::o;25142:127::-;-1:-1:-1;;;;;25243:18:0;25216:7;25243:18;;;;;;;;;;;;25142:127::o;9386:103::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;9451:30:::1;9478:1;9451:18;:30::i;:::-;9386:103::o:0;38510:121::-;38562:4;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;-1:-1:-1;38579:14:0::1;:22:::0;;-1:-1:-1;;38579:22:0::1;::::0;;;38510:121;:::o;39763:144::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39853:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39853:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39763:144::o;38371:83::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;38426:13:::1;:20:::0;;-1:-1:-1;;38426:20:0::1;;;::::0;;38371:83::o;8735:87::-;8808:6;;-1:-1:-1;;;;;8808:6:0;8735:87;:::o;24070:104::-;24126:13;24159:7;24152:14;;;;;:::i;40459:244::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;40566:13:::1;::::0;-1:-1:-1;;;;;40558:21:0;;::::1;40566:13:::0;::::1;40558:21;;40550:91;;;;-1:-1:-1::0;;;40550:91:0::1;;;;;;;:::i;:::-;40654:41;40683:4;40689:5;40654:28;:41::i;28430:438::-:0;28523:4;28540:13;28556:12;:10;:12::i;:::-;-1:-1:-1;;;;;28606:18:0;;;28579:24;28606:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;28540:28;;-1:-1:-1;28652:35:0;;;;28644:85;;;;-1:-1:-1;;;28644:85:0;;;;;;;:::i;:::-;28765:60;28774:5;28781:7;28809:15;28790:16;:34;28765:8;:60::i;25475:193::-;25554:4;25571:13;25587:12;:10;:12::i;:::-;25571:28;;25610;25620:5;25627:2;25631:6;25610:9;:28::i;35193:33::-;;;;;;;;;:::o;40269:182::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40354:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;:39;;-1:-1:-1;;40354:39:0::1;::::0;::::1;;;::::0;;40409:34;::::1;::::0;::::1;::::0;40354:39;;40409:34:::1;:::i;:::-;;;;;;;;40269:182:::0;;:::o;39540:211::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;39662:4:::1;39656;39636:13;:11;:13::i;:::-;:17;::::0;39652:1:::1;39636:17;:::i;:::-;:24;;;;:::i;:::-;39635:31;;;;:::i;:::-;39625:6;:41;;39617:90;;;;-1:-1:-1::0;;;39617:90:0::1;;;;;;;:::i;:::-;39730:13;:6:::0;39739:4:::1;39730:13;:::i;:::-;39718:9;:25:::0;-1:-1:-1;39540:211:0:o;41546:203::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;41634:6:::1;41629:113;41650:12;:19;41646:1;:23;41629:113;;;41725:5;41691:14;:31;41706:12;41719:1;41706:15;;;;;;-1:-1:-1::0;;;41706:15:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;41691:31:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;41691:31:0;:39;;-1:-1:-1;;41691:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41671:3;::::1;::::0;::::1;:::i;:::-;;;;41629:113;;35417:39:::0;;;;;;:::o;35030:35::-;;;;:::o;38906:382::-;38987:4;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;39044:6:::1;39024:13;:11;:13::i;:::-;:17;::::0;39040:1:::1;39024:17;:::i;:::-;:26;;;;:::i;:::-;39011:9;:39;;39003:105;;;;-1:-1:-1::0;;;39003:105:0::1;;;;;;;:::i;:::-;39159:4;39139:13;:11;:13::i;:::-;:17;::::0;39155:1:::1;39139:17;:::i;:::-;:24;;;;:::i;:::-;39126:9;:37;;39118:102;;;;-1:-1:-1::0;;;39118:102:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;39230:18:0::1;:30:::0;39277:4:::1;::::0;38906:382::o;25731:151::-;-1:-1:-1;;;;;25847:18:0;;;25820:7;25847:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25731:151::o;48404:160::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;48455:40:::1;48473:21;48455:17;:40::i;35072:33::-:0;;;;:::o;38696:135::-;38756:4;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;-1:-1:-1;38773:20:0::1;:28:::0;;-1:-1:-1;;38773:28:0::1;::::0;;;38696:135;:::o;9644:201::-;8966:12;:10;:12::i;:::-;-1:-1:-1;;;;;8955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8955:23:0;;8947:68;;;;-1:-1:-1;;;8947:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9733:22:0;::::1;9725:73;;;;-1:-1:-1::0;;;9725:73:0::1;;;;;;;:::i;:::-;9809:28;9828:8;9809:18;:28::i;35112:24::-:0;;;;:::o;615:98::-;695:10;615:98;:::o;32066:380::-;-1:-1:-1;;;;;32202:19:0;;32194:68;;;;-1:-1:-1;;;32194:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32281:21:0;;32273:68;;;;-1:-1:-1;;;32273:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32354:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;32406:32;;;;;32384:6;;32406:32;:::i;:::-;;;;;;;;32066:380;;;:::o;32733:453::-;32868:24;32895:25;32905:5;32912:7;32895:9;:25::i;:::-;32868:52;;-1:-1:-1;;32935:16:0;:37;32931:248;;33017:6;32997:16;:26;;32989:68;;;;-1:-1:-1;;;32989:68:0;;;;;;;:::i;:::-;33101:51;33110:5;33117:7;33145:6;33126:16;:25;33101:8;:51::i;:::-;32733:453;;;;:::o;41874:3890::-;-1:-1:-1;;;;;42006:18:0;;41998:68;;;;-1:-1:-1;;;41998:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42085:16:0;;42077:64;;;;-1:-1:-1;;;42077:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42161:20:0;;;;;;:14;:20;;;;;;;;42160:21;42152:111;;;;-1:-1:-1;;;42152:111:0;;;;;;;:::i;:::-;42289:11;42285:93;;42317:28;42333:4;42339:2;42343:1;42317:15;:28::i;:::-;42360:7;;42285:93;-1:-1:-1;;;;;42428:25:0;;;;;;:19;:25;;;;;;;;42427:26;:54;;;;-1:-1:-1;;;;;;42458:23:0;;;;;;:19;:23;;;;;;;;42457:24;42427:54;42423:196;;;42498:18;42519:15;:6;42530:3;42519:10;:15::i;:::-;42498:36;;42549:23;42555:4;42561:10;42549:5;:23::i;:::-;42587:20;42597:10;42587:20;;:::i;:::-;;;42423:196;;42645:14;;;;42641:1838;;;42706:7;:5;:7::i;:::-;-1:-1:-1;;;;;42698:15:0;:4;-1:-1:-1;;;;;42698:15:0;;;:49;;;;;42740:7;:5;:7::i;:::-;-1:-1:-1;;;;;42734:13:0;:2;-1:-1:-1;;;;;42734:13:0;;;42698:49;:86;;;;-1:-1:-1;;;;;;42768:16:0;;;;42698:86;:128;;;;-1:-1:-1;;;;;;42805:21:0;;42819:6;42805:21;;42698:128;:159;;;;-1:-1:-1;42848:9:0;;;;42847:10;42698:159;42676:1792;;;42897:13;;;;;;;42892:150;;-1:-1:-1;;;;;42943:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42972:23:0;;;;;;:19;:23;;;;;;;;42943:52;42935:87;;;;-1:-1:-1;;;42935:87:0;;;;;;;:::i;:::-;43200:20;;;;43196:423;;;43254:7;:5;:7::i;:::-;-1:-1:-1;;;;;43248:13:0;:2;-1:-1:-1;;;;;43248:13:0;;;:47;;;;-1:-1:-1;43279:15:0;;-1:-1:-1;;;;;43265:30:0;;;43279:15;;43265:30;;43248:47;:79;;;;-1:-1:-1;43313:13:0;;-1:-1:-1;;;;;43299:28:0;;;43313:13;;43299:28;;43248:79;43244:356;;;43392:9;43363:39;;;;:28;:39;;;;;;43405:12;-1:-1:-1;43355:140:0;;;;-1:-1:-1;;;43355:140:0;;;;;;;:::i;:::-;43551:9;43522:39;;;;:28;:39;;;;;43564:12;43522:54;;43244:356;-1:-1:-1;;;;;43689:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;43725:35:0;;;;;;:31;:35;;;;;;;;43724:36;43689:71;43685:768;;;43803:20;;43793:6;:30;;43785:96;;;;-1:-1:-1;;;43785:96:0;;;;;;;:::i;:::-;43938:9;;43921:13;43931:2;43921:9;:13::i;:::-;43912:22;;:6;:22;:::i;:::-;:35;;43904:67;;;;-1:-1:-1;;;43904:67:0;;;;;;;:::i;:::-;43685:768;;;-1:-1:-1;;;;;44066:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;44100:37:0;;;;;;:31;:37;;;;;;;;44099:38;44066:71;44062:391;;;44180:20;;44170:6;:30;;44162:97;;;;-1:-1:-1;;;44162:97:0;;;;;;;:::i;44062:391::-;-1:-1:-1;;;;;44307:35:0;;;;;;:31;:35;;;;;;;;44302:151;;44400:9;;44383:13;44393:2;44383:9;:13::i;:::-;44374:22;;:6;:22;:::i;:::-;:35;;44366:67;;;;-1:-1:-1;;;44366:67:0;;;;;;;:::i;:::-;44493:28;44524:24;44542:4;44524:9;:24::i;:::-;44598:18;;44493:55;;-1:-1:-1;44574:42:0;;;;;;;44645:34;;-1:-1:-1;44670:9:0;;;;44669:10;44645:34;:83;;;;-1:-1:-1;;;;;;44697:31:0;;;;;;:25;:31;;;;;;;;44696:32;44645:83;:126;;;;-1:-1:-1;;;;;;44746:25:0;;;;;;:19;:25;;;;;;;;44745:26;44645:126;:167;;;;-1:-1:-1;;;;;;44789:23:0;;;;;;:19;:23;;;;;;;;44788:24;44645:167;44627:297;;;44839:9;:16;;-1:-1:-1;;44839:16:0;44851:4;44839:16;;;44870:10;:8;:10::i;:::-;44895:9;:17;;-1:-1:-1;;44895:17:0;;;44627:297;44952:9;;-1:-1:-1;;;;;45063:25:0;;44936:12;45063:25;;;:19;:25;;;;;;44952:9;;;;44951:10;;45063:25;;:52;;-1:-1:-1;;;;;;45092:23:0;;;;;;:19;:23;;;;;;;;45063:52;45059:100;;;-1:-1:-1;45142:5:0;45059:100;45179:12;45284:7;45280:431;;;45315:30;45341:3;45315:21;45326:9;;45315:6;:10;;:21;;;;:::i;:::-;:25;;:30::i;:::-;45308:37;;45406:9;;45390:13;;45383:4;:20;;;;:::i;:::-;:32;;;;:::i;:::-;45360:19;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;45464:9:0;;45454:7;;45447:14;;:4;:14;:::i;:::-;:26;;;;:::i;:::-;45430:13;;:43;;;;;;;:::i;:::-;;;;-1:-1:-1;;45534:9:0;;45518:13;;45511:20;;:4;:20;:::i;:::-;:32;;;;:::i;:::-;45488:19;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;45576:8:0;;45572:91;;45605:42;45621:4;45635;45642;45605:15;:42::i;:::-;45685:14;45695:4;45685:14;;:::i;:::-;;;45280:431;45723:33;45739:4;45745:2;45749:6;45723:15;:33::i;:::-;41874:3890;;;;;;;:::o;10005:191::-;10098:6;;;-1:-1:-1;;;;;10115:17:0;;;-1:-1:-1;;;;;;10115:17:0;;;;;;;10148:40;;10098:6;;;10115:17;10098:6;;10148:40;;10079:16;;10148:40;10005:191;;:::o;40711:188::-;-1:-1:-1;;;;;40794:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40794:39:0;;;;;;;;;;40851:40;;40794:39;;:31;40851:40;;;40711:188;;:::o;45772:590::-;45923:16;;;45937:1;45923:16;;;;;;;;45899:21;;45923:16;;;;;;;;;;-1:-1:-1;45923:16:0;45899:40;;45968:4;45950;45955:1;45950:7;;;;;;-1:-1:-1;;;45950:7:0;;;;;;;;;-1:-1:-1;;;;;45950:23:0;;;:7;;;;;;;;;;:23;;;;45994:15;;:22;;;-1:-1:-1;;;45994:22:0;;;;:15;;;;;:20;;:22;;;;;45950:7;;45994:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45984:4;45989:1;45984:7;;;;;;-1:-1:-1;;;45984:7:0;;;;;;;;;-1:-1:-1;;;;;45984:32:0;;;:7;;;;;;;;;:32;46061:15;;46029:62;;46046:4;;46061:15;46079:11;46029:8;:62::i;:::-;46130:15;;:224;;-1:-1:-1;;;46130:224:0;;-1:-1:-1;;;;;46130:15:0;;;;:66;;:224;;46211:11;;46130:15;;46281:4;;46308;;46328:15;;46130:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45772:590;;:::o;29347:671::-;-1:-1:-1;;;;;29478:18:0;;29470:68;;;;-1:-1:-1;;;29470:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29557:16:0;;29549:64;;;;-1:-1:-1;;;29549:64:0;;;;;;;:::i;:::-;29626:38;29647:4;29653:2;29657:6;29626:20;:38::i;:::-;-1:-1:-1;;;;;29699:15:0;;29677:19;29699:15;;;;;;;;;;;29733:21;;;;29725:72;;;;-1:-1:-1;;;29725:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29833:15:0;;;:9;:15;;;;;;;;;;;29851:20;;;29833:38;;29893:13;;;;;;;;:23;;29865:6;;29833:9;29893:23;;29865:6;;29893:23;:::i;:::-;;;;;;;;29949:2;-1:-1:-1;;;;;29934:26:0;29943:4;-1:-1:-1;;;;;29934:26:0;;29953:6;29934:26;;;;;;:::i;:::-;;;;;;;;29973:37;29993:4;29999:2;30003:6;29973:19;:37::i;4704:98::-;4762:7;4789:5;4793:1;4789;:5;:::i;:::-;4782:12;4704:98;-1:-1:-1;;;4704:98:0:o;31037:591::-;-1:-1:-1;;;;;31121:21:0;;31113:67;;;;-1:-1:-1;;;31113:67:0;;;;;;;:::i;:::-;31193:49;31214:7;31231:1;31235:6;31193:20;:49::i;:::-;-1:-1:-1;;;;;31280:18:0;;31255:22;31280:18;;;;;;;;;;;31317:24;;;;31309:71;;;;-1:-1:-1;;;31309:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31416:18:0;;:9;:18;;;;;;;;;;31437:23;;;31416:44;;31482:12;:22;;31454:6;;31416:9;31482:22;;31454:6;;31482:22;:::i;:::-;;;;-1:-1:-1;;31522:37:0;;31548:1;;-1:-1:-1;;;;;31522:37:0;;;;;;;31552:6;;31522:37;:::i;:::-;;;;;;;;31572:48;31592:7;31609:1;31613:6;31572:19;:48::i;46896:1500::-;46935:23;46961:24;46979:4;46961:9;:24::i;:::-;46935:50;;46996:25;47068:13;;47046:19;;47024;;:41;;;;:::i;:::-;:57;;;;:::i;:::-;46996:85;-1:-1:-1;47106:20:0;;;:46;;-1:-1:-1;47130:22:0;;47106:46;47102:59;;;47154:7;;;;47102:59;47193:18;;47175:15;:36;47171:103;;;47244:18;;47226:36;;47171:103;47343:23;47429:1;47409:17;47387:19;;47369:15;:37;;;;:::i;:::-;:57;;;;:::i;:::-;:61;;;;:::i;:::-;47343:87;-1:-1:-1;47441:26:0;47470:36;:15;47343:87;47470:19;:36::i;:::-;47441:65;-1:-1:-1;47555:21:0;47589:37;47441:65;47589:17;:37::i;:::-;47648:18;47669:44;:21;47695:17;47669:25;:44::i;:::-;47648:65;;47724:23;47750:58;47790:17;47750:35;47765:19;;47750:10;:14;;:35;;;;:::i;:58::-;47724:84;;47819:17;47839:52;47873:17;47839:29;47854:13;;47839:10;:14;;:29;;;;:::i;:52::-;47819:72;-1:-1:-1;47902:23:0;47819:72;47928:28;47941:15;47928:10;:28;:::i;:::-;:40;;;;:::i;:::-;48011:1;47989:19;:23;;;48023:19;:23;;;48057:13;:17;48095:9;;47902:66;;-1:-1:-1;48095:9:0;;;-1:-1:-1;;;;;48095:9:0;48087:59;48115:30;:15;48135:9;48115:19;:30::i;:::-;48087:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48197:1;48179:15;:19;:42;;;;;48220:1;48202:15;:19;48179:42;48175:214;;;48238:47;48252:15;48269;48238:13;:47::i;:::-;48305:72;48320:18;48340:15;48357:19;;48305:72;;;;;;;;:::i;:::-;;;;;;;;48175:214;46896:1500;;;;;;;;;:::o;4305:98::-;4363:7;4390:5;4394:1;4390;:5;:::i;3948:98::-;4006:7;4033:5;4037:1;4033;:5;:::i;3567:98::-;3625:7;3652:5;3656:1;3652;:5;:::i;46374:514::-;46555:15;;46523:62;;46540:4;;-1:-1:-1;;;;;46555:15:0;46573:11;46523:8;:62::i;:::-;46628:15;;-1:-1:-1;;;;;46628:15:0;:31;46667:9;46700:4;46720:11;46628:15;;46832:7;:5;:7::i;:::-;46854:15;46628:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46374:514;;:::o;14:138:1:-;84:20;;113:33;84:20;113:33;:::i;157:259::-;;269:2;257:9;248:7;244:23;240:32;237:2;;;290:6;282;275:22;237:2;334:9;321:23;353:33;380:5;353:33;:::i;421:263::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;565:6;557;550:22;512:2;602:9;596:16;621:33;648:5;621:33;:::i;689:402::-;;;818:2;806:9;797:7;793:23;789:32;786:2;;;839:6;831;824:22;786:2;883:9;870:23;902:33;929:5;902:33;:::i;:::-;954:5;-1:-1:-1;1011:2:1;996:18;;983:32;1024:35;983:32;1024:35;:::i;:::-;1078:7;1068:17;;;776:315;;;;;:::o;1096:470::-;;;;1242:2;1230:9;1221:7;1217:23;1213:32;1210:2;;;1263:6;1255;1248:22;1210:2;1307:9;1294:23;1326:33;1353:5;1326:33;:::i;:::-;1378:5;-1:-1:-1;1435:2:1;1420:18;;1407:32;1448:35;1407:32;1448:35;:::i;:::-;1200:366;;1502:7;;-1:-1:-1;;;1556:2:1;1541:18;;;;1528:32;;1200:366::o;1571:438::-;;;1697:2;1685:9;1676:7;1672:23;1668:32;1665:2;;;1718:6;1710;1703:22;1665:2;1762:9;1749:23;1781:33;1808:5;1781:33;:::i;:::-;1833:5;-1:-1:-1;1890:2:1;1875:18;;1862:32;1932:15;;1925:23;1913:36;;1903:2;;1968:6;1960;1953:22;2014:327;;;2143:2;2131:9;2122:7;2118:23;2114:32;2111:2;;;2164:6;2156;2149:22;2111:2;2208:9;2195:23;2227:33;2254:5;2227:33;:::i;:::-;2279:5;2331:2;2316:18;;;;2303:32;;-1:-1:-1;;;2101:240:1:o;2346:1166::-;;2461:2;2504;2492:9;2483:7;2479:23;2475:32;2472:2;;;2525:6;2517;2510:22;2472:2;2570:9;2557:23;2599:18;2640:2;2632:6;2629:14;2626:2;;;2661:6;2653;2646:22;2626:2;2704:6;2693:9;2689:22;2679:32;;2749:7;2742:4;2738:2;2734:13;2730:27;2720:2;;2776:6;2768;2761:22;2720:2;2817;2804:16;2839:2;2835;2832:10;2829:2;;;2845:18;;:::i;:::-;2892:2;2888;2884:11;2924:2;2918:9;2975:2;2970;2962:6;2958:15;2954:24;3028:6;3016:10;3013:22;3008:2;2996:10;2993:18;2990:46;2987:2;;;3039:18;;:::i;:::-;3075:2;3068:22;3125:18;;;3159:15;;;;-1:-1:-1;3194:11:1;;;3224;;;3220:20;;3217:33;-1:-1:-1;3214:2:1;;;3268:6;3260;3253:22;3214:2;3295:6;3286:15;;3310:171;3324:2;3321:1;3318:9;3310:171;;;3381:25;3402:3;3381:25;:::i;:::-;3369:38;;3342:1;3335:9;;;;;3427:12;;;;3459;;3310:171;;;-1:-1:-1;3500:6:1;2441:1071;-1:-1:-1;;;;;;;;2441:1071:1:o;3517:190::-;;3629:2;3617:9;3608:7;3604:23;3600:32;3597:2;;;3650:6;3642;3635:22;3597:2;-1:-1:-1;3678:23:1;;3587:120;-1:-1:-1;3587:120:1:o;3712:326::-;;;;3858:2;3846:9;3837:7;3833:23;3829:32;3826:2;;;3879:6;3871;3864:22;3826:2;-1:-1:-1;;3907:23:1;;;3977:2;3962:18;;3949:32;;-1:-1:-1;4028:2:1;4013:18;;;4000:32;;3816:222;-1:-1:-1;3816:222:1:o;4043:316::-;;;;4200:2;4188:9;4179:7;4175:23;4171:32;4168:2;;;4221:6;4213;4206:22;4168:2;4255:9;4249:16;4239:26;;4305:2;4294:9;4290:18;4284:25;4274:35;;4349:2;4338:9;4334:18;4328:25;4318:35;;4158:201;;;;;:::o;4364:203::-;-1:-1:-1;;;;;4528:32:1;;;;4510:51;;4498:2;4483:18;;4465:102::o;4572:607::-;-1:-1:-1;;;;;4931:15:1;;;4913:34;;4978:2;4963:18;;4956:34;;;;5021:2;5006:18;;4999:34;;;;5064:2;5049:18;;5042:34;;;;5113:15;;;5107:3;5092:19;;5085:44;4893:3;5145:19;;5138:35;;;;4862:3;4847:19;;4829:350::o;5184:187::-;5349:14;;5342:22;5324:41;;5312:2;5297:18;;5279:92::o;5376:603::-;;5517:2;5546;5535:9;5528:21;5578:6;5572:13;5621:6;5616:2;5605:9;5601:18;5594:34;5646:4;5659:140;5673:6;5670:1;5667:13;5659:140;;;5768:14;;;5764:23;;5758:30;5734:17;;;5753:2;5730:26;5723:66;5688:10;;5659:140;;;5817:6;5814:1;5811:13;5808:2;;;5887:4;5882:2;5873:6;5862:9;5858:22;5854:31;5847:45;5808:2;-1:-1:-1;5963:2:1;5942:15;-1:-1:-1;;5938:29:1;5923:45;;;;5970:2;5919:54;;5497:482;-1:-1:-1;;;5497:482:1:o;5984:399::-;6186:2;6168:21;;;6225:2;6205:18;;;6198:30;6264:34;6259:2;6244:18;;6237:62;-1:-1:-1;;;6330:2:1;6315:18;;6308:33;6373:3;6358:19;;6158:225::o;6388:353::-;6590:2;6572:21;;;6629:2;6609:18;;;6602:30;6668:31;6663:2;6648:18;;6641:59;6732:2;6717:18;;6562:179::o;6746:398::-;6948:2;6930:21;;;6987:2;6967:18;;;6960:30;7026:34;7021:2;7006:18;;6999:62;-1:-1:-1;;;7092:2:1;7077:18;;7070:32;7134:3;7119:19;;6920:224::o;7149:346::-;7351:2;7333:21;;;7390:2;7370:18;;;7363:30;-1:-1:-1;;;7424:2:1;7409:18;;7402:52;7486:2;7471:18;;7323:172::o;7500:402::-;7702:2;7684:21;;;7741:2;7721:18;;;7714:30;7780:34;7775:2;7760:18;;7753:62;-1:-1:-1;;;7846:2:1;7831:18;;7824:36;7892:3;7877:19;;7674:228::o;7907:398::-;8109:2;8091:21;;;8148:2;8128:18;;;8121:30;8187:34;8182:2;8167:18;;8160:62;-1:-1:-1;;;8253:2:1;8238:18;;8231:32;8295:3;8280:19;;8081:224::o;8310:400::-;8512:2;8494:21;;;8551:2;8531:18;;;8524:30;8590:34;8585:2;8570:18;;8563:62;-1:-1:-1;;;8656:2:1;8641:18;;8634:34;8700:3;8685:19;;8484:226::o;8715:421::-;8917:2;8899:21;;;8956:2;8936:18;;;8929:30;8995:34;8990:2;8975:18;;8968:62;9066:27;9061:2;9046:18;;9039:55;9126:3;9111:19;;8889:247::o;9141:353::-;9343:2;9325:21;;;9382:2;9362:18;;;9355:30;9421:31;9416:2;9401:18;;9394:59;9485:2;9470:18;;9315:179::o;9499:402::-;9701:2;9683:21;;;9740:2;9720:18;;;9713:30;9779:34;9774:2;9759:18;;9752:62;-1:-1:-1;;;9845:2:1;9830:18;;9823:36;9891:3;9876:19;;9673:228::o;9906:418::-;10108:2;10090:21;;;10147:2;10127:18;;;10120:30;10186:34;10181:2;10166:18;;10159:62;-1:-1:-1;;;10252:2:1;10237:18;;10230:52;10314:3;10299:19;;10080:244::o;10329:417::-;10531:2;10513:21;;;10570:2;10550:18;;;10543:30;10609:34;10604:2;10589:18;;10582:62;-1:-1:-1;;;10675:2:1;10660:18;;10653:51;10736:3;10721:19;;10503:243::o;10751:416::-;10953:2;10935:21;;;10992:2;10972:18;;;10965:30;11031:34;11026:2;11011:18;;11004:62;-1:-1:-1;;;11097:2:1;11082:18;;11075:50;11157:3;11142:19;;10925:242::o;11172:417::-;11374:2;11356:21;;;11413:2;11393:18;;;11386:30;11452:34;11447:2;11432:18;;11425:62;-1:-1:-1;;;11518:2:1;11503:18;;11496:51;11579:3;11564:19;;11346:243::o;11594:477::-;11796:2;11778:21;;;11835:2;11815:18;;;11808:30;11874:34;11869:2;11854:18;;11847:62;11945:34;11940:2;11925:18;;11918:62;-1:-1:-1;;;12011:3:1;11996:19;;11989:40;12061:3;12046:19;;11768:303::o;12076:356::-;12278:2;12260:21;;;12297:18;;;12290:30;12356:34;12351:2;12336:18;;12329:62;12423:2;12408:18;;12250:182::o;12437:397::-;12639:2;12621:21;;;12678:2;12658:18;;;12651:30;12717:34;12712:2;12697:18;;12690:62;-1:-1:-1;;;12783:2:1;12768:18;;12761:31;12824:3;12809:19;;12611:223::o;12839:401::-;13041:2;13023:21;;;13080:2;13060:18;;;13053:30;13119:34;13114:2;13099:18;;13092:62;-1:-1:-1;;;13185:2:1;13170:18;;13163:35;13230:3;13215:19;;13013:227::o;13245:481::-;13447:2;13429:21;;;13486:2;13466:18;;;13459:30;13525:34;13520:2;13505:18;;13498:62;13596:34;13591:2;13576:18;;13569:62;-1:-1:-1;;;13662:3:1;13647:19;;13640:44;13716:3;13701:19;;13419:307::o;13731:400::-;13933:2;13915:21;;;13972:2;13952:18;;;13945:30;14011:34;14006:2;13991:18;;13984:62;-1:-1:-1;;;14077:2:1;14062:18;;14055:34;14121:3;14106:19;;13905:226::o;14136:343::-;14338:2;14320:21;;;14377:2;14357:18;;;14350:30;-1:-1:-1;;;14411:2:1;14396:18;;14389:49;14470:2;14455:18;;14310:169::o;14484:401::-;14686:2;14668:21;;;14725:2;14705:18;;;14698:30;14764:34;14759:2;14744:18;;14737:62;-1:-1:-1;;;14830:2:1;14815:18;;14808:35;14875:3;14860:19;;14658:227::o;14890:411::-;15092:2;15074:21;;;15131:2;15111:18;;;15104:30;15170:34;15165:2;15150:18;;15143:62;-1:-1:-1;;;15236:2:1;15221:18;;15214:45;15291:3;15276:19;;15064:237::o;15306:177::-;15452:25;;;15440:2;15425:18;;15407:76::o;15488:983::-;;15798:3;15787:9;15783:19;15829:6;15818:9;15811:25;15855:2;15893:6;15888:2;15877:9;15873:18;15866:34;15936:3;15931:2;15920:9;15916:18;15909:31;15960:6;15995;15989:13;16026:6;16018;16011:22;16064:3;16053:9;16049:19;16042:26;;16103:2;16095:6;16091:15;16077:29;;16124:4;16137:195;16151:6;16148:1;16145:13;16137:195;;;16216:13;;-1:-1:-1;;;;;16212:39:1;16200:52;;16307:15;;;;16272:12;;;;16248:1;16166:9;16137:195;;;-1:-1:-1;;;;;;;16388:32:1;;;;16383:2;16368:18;;16361:60;-1:-1:-1;;;16452:3:1;16437:19;16430:35;16349:3;15759:712;-1:-1:-1;;;15759:712:1:o;16476:319::-;16678:25;;;16734:2;16719:18;;16712:34;;;;16777:2;16762:18;;16755:34;16666:2;16651:18;;16633:162::o;16800:184::-;16972:4;16960:17;;;;16942:36;;16930:2;16915:18;;16897:87::o;16989:128::-;;17060:1;17056:6;17053:1;17050:13;17047:2;;;17066:18;;:::i;:::-;-1:-1:-1;17102:9:1;;17037:80::o;17122:217::-;;17188:1;17178:2;;-1:-1:-1;;;17213:31:1;;17267:4;17264:1;17257:15;17295:4;17220:1;17285:15;17178:2;-1:-1:-1;17324:9:1;;17168:171::o;17344:168::-;;17450:1;17446;17442:6;17438:14;17435:1;17432:21;17427:1;17420:9;17413:17;17409:45;17406:2;;;17457:18;;:::i;:::-;-1:-1:-1;17497:9:1;;17396:116::o;17517:125::-;;17585:1;17582;17579:8;17576:2;;;17590:18;;:::i;:::-;-1:-1:-1;17627:9:1;;17566:76::o;17647:380::-;17732:1;17722:12;;17779:1;17769:12;;;17790:2;;17844:4;17836:6;17832:17;17822:27;;17790:2;17897;17889:6;17886:14;17866:18;17863:38;17860:2;;;17943:10;17938:3;17934:20;17931:1;17924:31;17978:4;17975:1;17968:15;18006:4;18003:1;17996:15;17860:2;;17702:325;;;:::o;18032:135::-;;-1:-1:-1;;18092:17:1;;18089:2;;;18112:18;;:::i;:::-;-1:-1:-1;18159:1:1;18148:13;;18079:88::o;18172:127::-;18233:10;18228:3;18224:20;18221:1;18214:31;18264:4;18261:1;18254:15;18288:4;18285:1;18278:15;18304:127;18365:10;18360:3;18356:20;18353:1;18346:31;18396:4;18393:1;18386:15;18420:4;18417:1;18410:15;18436:133;-1:-1:-1;;;;;18513:31:1;;18503:42;;18493:2;;18559:1;18556;18549:12
Swarm Source
ipfs://9e727cbf08664424a422006968d467a3c30ea0d7b5723aecaf0f880717e7e97f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.