ERC-20
Overview
Max Total Supply
2,147,000 WOM
Holders
155
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
585.898832410598878859 WOMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WOM
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-05 */ // SPDX-License-Identifier: Unlicensed pragma solidity 0.8.13; /** WOM https://linktr.ee/wiseoldman * * 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; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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); } /** * @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 this function * 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 guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _createInitialSupply(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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); } 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; } 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; } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SignedSafeMath { /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { return a * b; } /** * @dev Returns the integer division of two signed integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(int256 a, int256 b) internal pure returns (int256) { return a / b; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { return a - b; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { return a + b; } } // 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 no longer needed starting with Solidity 0.8. 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; } } } /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits"); return uint224(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits"); return uint96(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits. */ function toUint8(uint256 value) internal pure returns (uint8) { require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128) { require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits"); return int128(value); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64) { require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits"); return int64(value); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32) { require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits"); return int32(value); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16) { require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits"); return int16(value); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits. * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8) { require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits"); return int8(value); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } } contract WOM is ERC20, Ownable { using SafeMath for uint256; bool public swapAndLiquifyEnabled = true; bool private inSwapAndLiquify; uint256 public maxTransactionAmount = 21470 * (10**18); uint256 public swapTokensAtAmount = 1000 * (10**18); uint256 public maxWalletToken = 53675 * (10**18); uint256 public liquidityFee = 1; uint256 public marketingFee = 3; uint256 public devFee = 1; uint256 private totalFees = liquidityFee.add(devFee).add(marketingFee); IUniswapV2Router02 public uniswapV2Router; address public immutable uniswapV2Pair; address payable public devWallet = payable(0x4052a3e9B436252297149f3d5E6f4Dc40Fa33888); address payable public marketingWallet = payable(0x1ac1479bA7C763c069AdF5AE83882263184f1407); // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } event SwapAndLiquify(uint256 tokensIntoLiqudity, uint256 ethReceived); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapETHForTokens(uint256 amountIn, address[] path); event ExcludeFromFees(address indexed account, bool isExcluded); event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue); constructor() ERC20("Wise Old Man", "WOM") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // uniswap v2 router address // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; // exclude from paying fees and max transaction amount excludeFromFees(owner(), true); excludeFromFees(marketingWallet, true); excludeFromFees(devWallet, true); excludeFromFees(address(this), true); /* an internal function that is only called here, and CANNOT be called ever again */ _createInitialSupply(owner(), 2147000 * (10**18)); } receive() external payable { } function excludeFromFees(address account, bool excluded) public onlyOwner { require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'"); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { super._transfer(from, to, 0); return; } bool excludedAccount = _isExcludedFromFees[from] || _isExcludedFromFees[to]; if (from == uniswapV2Pair && !excludedAccount) { uint256 contractBalanceRecepient = balanceOf(to); require(contractBalanceRecepient + amount <= maxWalletToken, "Exceeds maximum wallet token amount."); } if(to == uniswapV2Pair && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])){ require(amount <= maxTransactionAmount, "amount exceeds the maxTransactionAmount."); } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount; if(overMinTokenBalance && !inSwapAndLiquify && to == uniswapV2Pair && swapAndLiquifyEnabled) { contractTokenBalance = swapTokensAtAmount; swapAndLiquify(contractTokenBalance); } // if any account belongs to _isExcludedFromFee account then remove the fee if(!excludedAccount) { uint256 fees; if(from == uniswapV2Pair || to == uniswapV2Pair) { fees = amount.mul(totalFees).div(100); } amount = amount.sub(fees); super._transfer(from, address(this), fees); } super._transfer(from, to, amount); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 tokensForLiquidity = contractTokenBalance.mul(liquidityFee).div(totalFees); // split the Liquidity token balance into halves uint256 half = tokensForLiquidity.div(2); uint256 otherHalf = tokensForLiquidity.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); // swap and Send eth to team wallet swapTokensForEth(contractTokenBalance.sub(tokensForLiquidity)); devWallet.transfer(address(this).balance.mul(devFee).div(marketingFee.add(devFee))); marketingWallet.transfer(address(this).balance); emit SwapAndLiquify(half, newBalance); } 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(); if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) { _approve(address(this), address(uniswapV2Router), ~uint256(0)); } // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function setMaxWalletToken(uint256 _maxToken) external onlyOwner { maxWalletToken = _maxToken; require(maxWalletToken >= totalSupply().div(200), "value is too low"); } function setMaxTxAmount(uint256 _maxTx) public onlyOwner { maxTransactionAmount = _maxTx; require(maxTransactionAmount >= totalSupply().div(2000), "value is too low"); } function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner { swapTokensAtAmount = _newAmount; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } }
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":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToken","type":"uint256"}],"name":"setMaxWalletToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmouunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a060405260058054600160a01b60ff60a01b1990911617905569048be41aaf1094b80000600655683635c9adc5dea00000600755690b5dba42b5a973cc0000600855600160098190556003600a819055600b829055620000869162000072908062000389602090811b62000bed17901c565b6200038960201b62000bed1790919060201c565b600c55600e80546001600160a01b0319908116734052a3e9b436252297149f3d5e6f4dc40fa3388817909155600f8054909116731ac1479ba7c763c069adf5ae83882263184f1407179055348015620000de57600080fd5b506040518060400160405280600c81526020016b2bb4b9b29027b6321026b0b760a11b81525060405180604001604052806003815260200162574f4d60e81b8152508160039080519060200190620001389291906200061d565b5080516200014e9060049060208401906200061d565b5050506200016b620001656200039e60201b60201c565b620003a2565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001eb9190620006c3565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000239573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025f9190620006c3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d39190620006c3565b600d80546001600160a01b0319166001600160a01b03858116919091179091558116608052905062000319620003116005546001600160a01b031690565b6001620003f4565b600f5462000332906001600160a01b03166001620003f4565b600e546200034b906001600160a01b03166001620003f4565b62000358306001620003f4565b620003816200036f6005546001600160a01b031690565b6a01c6a51a6c627a17e0000062000538565b505062000751565b6000620003978284620006ee565b9392505050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03821660009081526010602052604090205481151560ff909116151503620004d95760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b60648201526084016200044b565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200044b565b8060026000828254620005a49190620006ee565b90915550506001600160a01b03821660009081526020819052604081208054839290620005d3908490620006ee565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200062b9062000715565b90600052602060002090601f0160209004810192826200064f57600085556200069a565b82601f106200066a57805160ff19168380011785556200069a565b828001600101855582156200069a579182015b828111156200069a5782518255916020019190600101906200067d565b50620006a8929150620006ac565b5090565b5b80821115620006a85760008155600101620006ad565b600060208284031215620006d657600080fd5b81516001600160a01b03811681146200039757600080fd5b600082198211156200071057634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200072a57607f821691505b6020821081036200074b57634e487b7160e01b600052602260045260246000fd5b50919050565b608051611a6e620007906000396000818161030801528181610dcc01528181610e9201528181610fae01528181611013015261104e0152611a6e6000f3fe6080604052600436106101dc5760003560e01c806375f0a87411610102578063c024666811610095578063e2f4560511610064578063e2f45605146105a2578063e6c75f71146105b8578063ec28438a146105ce578063f2fde38b146105ee57600080fd5b8063c024666814610506578063c49b9a8014610526578063c8c8ebe414610546578063dd62ed3e1461055c57600080fd5b806395d89b41116100d157806395d89b411461049b57806398118cb4146104b0578063a457c2d7146104c6578063a9059cbb146104e657600080fd5b806375f0a8741461041d5780638da5cb5b1461043d5780638ea5220f1461045b57806391d55f411461047b57600080fd5b806349bd5a5e1161017a5780636b67c4df116101495780636b67c4df1461039a57806370a08231146103b0578063715018a6146103e6578063750c11b6146103fd57600080fd5b806349bd5a5e146102f65780634a74bb021461032a5780634fbee1931461034b5780636827e7641461038457600080fd5b806318160ddd116101b657806318160ddd1461027b57806323b872dd1461029a578063313ce567146102ba57806339509351146102d657600080fd5b806306fdde03146101e8578063095ea7b3146102135780631694505e1461024357600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506101fd61060e565b60405161020a919061163e565b60405180910390f35b34801561021f57600080fd5b5061023361022e3660046116a8565b6106a0565b604051901515815260200161020a565b34801561024f57600080fd5b50600d54610263906001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b34801561028757600080fd5b506002545b60405190815260200161020a565b3480156102a657600080fd5b506102336102b53660046116d4565b6106b6565b3480156102c657600080fd5b506040516012815260200161020a565b3480156102e257600080fd5b506102336102f13660046116a8565b610765565b34801561030257600080fd5b506102637f000000000000000000000000000000000000000000000000000000000000000081565b34801561033657600080fd5b5060055461023390600160a01b900460ff1681565b34801561035757600080fd5b50610233610366366004611715565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561039057600080fd5b5061028c600b5481565b3480156103a657600080fd5b5061028c600a5481565b3480156103bc57600080fd5b5061028c6103cb366004611715565b6001600160a01b031660009081526020819052604090205490565b3480156103f257600080fd5b506103fb6107a1565b005b34801561040957600080fd5b506103fb610418366004611732565b6107d7565b34801561042957600080fd5b50600f54610263906001600160a01b031681565b34801561044957600080fd5b506005546001600160a01b0316610263565b34801561046757600080fd5b50600e54610263906001600160a01b031681565b34801561048757600080fd5b506103fb610496366004611732565b610806565b3480156104a757600080fd5b506101fd610890565b3480156104bc57600080fd5b5061028c60095481565b3480156104d257600080fd5b506102336104e13660046116a8565b61089f565b3480156104f257600080fd5b506102336105013660046116a8565b610938565b34801561051257600080fd5b506103fb610521366004611760565b610945565b34801561053257600080fd5b506103fb610541366004611795565b610a51565b34801561055257600080fd5b5061028c60065481565b34801561056857600080fd5b5061028c6105773660046117b0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105ae57600080fd5b5061028c60075481565b3480156105c457600080fd5b5061028c60085481565b3480156105da57600080fd5b506103fb6105e9366004611732565b610ad3565b3480156105fa57600080fd5b506103fb610609366004611715565b610b55565b60606003805461061d906117e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610649906117e9565b80156106965780601f1061066b57610100808354040283529160200191610696565b820191906000526020600020905b81548152906001019060200180831161067957829003601f168201915b5050505050905090565b60006106ad338484610c00565b50600192915050565b60006106c3848484610d24565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561074d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61075a8533858403610c00565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106ad91859061079c908690611839565b610c00565b6005546001600160a01b031633146107cb5760405162461bcd60e51b815260040161074490611851565b6107d560006110d0565b565b6005546001600160a01b031633146108015760405162461bcd60e51b815260040161074490611851565b600755565b6005546001600160a01b031633146108305760405162461bcd60e51b815260040161074490611851565b600881905561084960c861084360025490565b90611122565b600854101561088d5760405162461bcd60e51b815260206004820152601060248201526f76616c756520697320746f6f206c6f7760801b6044820152606401610744565b50565b60606004805461061d906117e9565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610744565b61092e3385858403610c00565b5060019392505050565b60006106ad338484610d24565b6005546001600160a01b0316331461096f5760405162461bcd60e51b815260040161074490611851565b6001600160a01b03821660009081526010602052604090205481151560ff9091161515036109f25760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610744565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a7b5760405162461bcd60e51b815260040161074490611851565b60058054821515600160a01b0260ff60a01b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ac890831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610afd5760405162461bcd60e51b815260040161074490611851565b6006819055610b116107d061084360025490565b600654101561088d5760405162461bcd60e51b815260206004820152601060248201526f76616c756520697320746f6f206c6f7760801b6044820152606401610744565b6005546001600160a01b03163314610b7f5760405162461bcd60e51b815260040161074490611851565b6001600160a01b038116610be45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610744565b61088d816110d0565b6000610bf98284611839565b9392505050565b6001600160a01b038316610c625760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610744565b6001600160a01b038216610cc35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610744565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d4a5760405162461bcd60e51b815260040161074490611886565b6001600160a01b038216610d705760405162461bcd60e51b8152600401610744906118cb565b80600003610d8957610d848383600061112e565b505050565b6001600160a01b03831660009081526010602052604081205460ff1680610dc857506001600160a01b03831660009081526010602052604090205460ff165b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316148015610e09575080155b15610e90576001600160a01b038316600090815260208190526040902054600854610e348483611839565b1115610e8e5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610744565b505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015610eea57506001600160a01b03841660009081526010602052604090205460ff16155b8015610f0f57506001600160a01b03831660009081526010602052604090205460ff16155b15610f7757600654821115610f775760405162461bcd60e51b815260206004820152602860248201527f616d6f756e74206578636565647320746865206d61785472616e73616374696f6044820152673720b6b7bab73a1760c11b6064820152608401610744565b3060009081526020819052604090205460075481108015908190610fa55750600554600160a81b900460ff16155b8015610fe257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316145b8015610ff75750600554600160a01b900460ff165b1561100a57600754915061100a82611283565b826110bd5760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b0316148061108257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b0316145b156110a4576110a16064610843600c54886113e690919063ffffffff16565b90505b6110ae85826113f2565b94506110bb87308361112e565b505b6110c886868661112e565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610bf9828461190e565b6001600160a01b0383166111545760405162461bcd60e51b815260040161074490611886565b6001600160a01b03821661117a5760405162461bcd60e51b8152600401610744906118cb565b6001600160a01b038316600090815260208190526040902054818110156111f25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610744565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611229908490611839565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161127591815260200190565b60405180910390a350505050565b6005805460ff60a81b1916600160a81b179055600c546009546000916112ae916108439085906113e6565b905060006112bd826002611122565b905060006112cb83836113f2565b9050476112d7836113fe565b60006112e347836113f2565b90506112ef8382611581565b6113016112fc87876113f2565b6113fe565b600e54600b54600a546001600160a01b03909216916108fc916113359161132791610bed565b600b546108439047906113e6565b6040518115909202916000818181858888f1935050505015801561135d573d6000803e3d6000fd5b50600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611397573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506005805460ff60a81b1916905550505050565b6000610bf98284611930565b6000610bf9828461194f565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061143357611433611966565b6001600160a01b03928316602091820292909201810191909152600d54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561148c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b0919061197c565b816001815181106114c3576114c3611966565b6001600160a01b03928316602091820292909201810191909152600d543060009081526001835260408082209290941681529152205482111561151a57600d5461151a9030906001600160a01b0316600019610c00565b600d5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611553908590600090869030904290600401611999565b600060405180830381600087803b15801561156d57600080fd5b505af11580156110c8573d6000803e3d6000fd5b600d546001600160a01b031663f305d7198230856000806115aa6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611612573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116379190611a0a565b5050505050565b600060208083528351808285015260005b8181101561166b5785810183015185820160400152820161164f565b8181111561167d576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461088d57600080fd5b600080604083850312156116bb57600080fd5b82356116c681611693565b946020939093013593505050565b6000806000606084860312156116e957600080fd5b83356116f481611693565b9250602084013561170481611693565b929592945050506040919091013590565b60006020828403121561172757600080fd5b8135610bf981611693565b60006020828403121561174457600080fd5b5035919050565b8035801515811461175b57600080fd5b919050565b6000806040838503121561177357600080fd5b823561177e81611693565b915061178c6020840161174b565b90509250929050565b6000602082840312156117a757600080fd5b610bf98261174b565b600080604083850312156117c357600080fd5b82356117ce81611693565b915060208301356117de81611693565b809150509250929050565b600181811c908216806117fd57607f821691505b60208210810361181d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561184c5761184c611823565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008261192b57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561194a5761194a611823565b500290565b60008282101561196157611961611823565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561198e57600080fd5b8151610bf981611693565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119e95784516001600160a01b0316835293830193918301916001016119c4565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611a1f57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f980ac72c2c33766f6c2f72bd225587e459282e111052f9d30a25d00c39d5fcb64736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106101dc5760003560e01c806375f0a87411610102578063c024666811610095578063e2f4560511610064578063e2f45605146105a2578063e6c75f71146105b8578063ec28438a146105ce578063f2fde38b146105ee57600080fd5b8063c024666814610506578063c49b9a8014610526578063c8c8ebe414610546578063dd62ed3e1461055c57600080fd5b806395d89b41116100d157806395d89b411461049b57806398118cb4146104b0578063a457c2d7146104c6578063a9059cbb146104e657600080fd5b806375f0a8741461041d5780638da5cb5b1461043d5780638ea5220f1461045b57806391d55f411461047b57600080fd5b806349bd5a5e1161017a5780636b67c4df116101495780636b67c4df1461039a57806370a08231146103b0578063715018a6146103e6578063750c11b6146103fd57600080fd5b806349bd5a5e146102f65780634a74bb021461032a5780634fbee1931461034b5780636827e7641461038457600080fd5b806318160ddd116101b657806318160ddd1461027b57806323b872dd1461029a578063313ce567146102ba57806339509351146102d657600080fd5b806306fdde03146101e8578063095ea7b3146102135780631694505e1461024357600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506101fd61060e565b60405161020a919061163e565b60405180910390f35b34801561021f57600080fd5b5061023361022e3660046116a8565b6106a0565b604051901515815260200161020a565b34801561024f57600080fd5b50600d54610263906001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b34801561028757600080fd5b506002545b60405190815260200161020a565b3480156102a657600080fd5b506102336102b53660046116d4565b6106b6565b3480156102c657600080fd5b506040516012815260200161020a565b3480156102e257600080fd5b506102336102f13660046116a8565b610765565b34801561030257600080fd5b506102637f000000000000000000000000101eb79828d3d03384e449ced71a669ab9654bb981565b34801561033657600080fd5b5060055461023390600160a01b900460ff1681565b34801561035757600080fd5b50610233610366366004611715565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561039057600080fd5b5061028c600b5481565b3480156103a657600080fd5b5061028c600a5481565b3480156103bc57600080fd5b5061028c6103cb366004611715565b6001600160a01b031660009081526020819052604090205490565b3480156103f257600080fd5b506103fb6107a1565b005b34801561040957600080fd5b506103fb610418366004611732565b6107d7565b34801561042957600080fd5b50600f54610263906001600160a01b031681565b34801561044957600080fd5b506005546001600160a01b0316610263565b34801561046757600080fd5b50600e54610263906001600160a01b031681565b34801561048757600080fd5b506103fb610496366004611732565b610806565b3480156104a757600080fd5b506101fd610890565b3480156104bc57600080fd5b5061028c60095481565b3480156104d257600080fd5b506102336104e13660046116a8565b61089f565b3480156104f257600080fd5b506102336105013660046116a8565b610938565b34801561051257600080fd5b506103fb610521366004611760565b610945565b34801561053257600080fd5b506103fb610541366004611795565b610a51565b34801561055257600080fd5b5061028c60065481565b34801561056857600080fd5b5061028c6105773660046117b0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105ae57600080fd5b5061028c60075481565b3480156105c457600080fd5b5061028c60085481565b3480156105da57600080fd5b506103fb6105e9366004611732565b610ad3565b3480156105fa57600080fd5b506103fb610609366004611715565b610b55565b60606003805461061d906117e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610649906117e9565b80156106965780601f1061066b57610100808354040283529160200191610696565b820191906000526020600020905b81548152906001019060200180831161067957829003601f168201915b5050505050905090565b60006106ad338484610c00565b50600192915050565b60006106c3848484610d24565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561074d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61075a8533858403610c00565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106ad91859061079c908690611839565b610c00565b6005546001600160a01b031633146107cb5760405162461bcd60e51b815260040161074490611851565b6107d560006110d0565b565b6005546001600160a01b031633146108015760405162461bcd60e51b815260040161074490611851565b600755565b6005546001600160a01b031633146108305760405162461bcd60e51b815260040161074490611851565b600881905561084960c861084360025490565b90611122565b600854101561088d5760405162461bcd60e51b815260206004820152601060248201526f76616c756520697320746f6f206c6f7760801b6044820152606401610744565b50565b60606004805461061d906117e9565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610744565b61092e3385858403610c00565b5060019392505050565b60006106ad338484610d24565b6005546001600160a01b0316331461096f5760405162461bcd60e51b815260040161074490611851565b6001600160a01b03821660009081526010602052604090205481151560ff9091161515036109f25760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610744565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a7b5760405162461bcd60e51b815260040161074490611851565b60058054821515600160a01b0260ff60a01b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ac890831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610afd5760405162461bcd60e51b815260040161074490611851565b6006819055610b116107d061084360025490565b600654101561088d5760405162461bcd60e51b815260206004820152601060248201526f76616c756520697320746f6f206c6f7760801b6044820152606401610744565b6005546001600160a01b03163314610b7f5760405162461bcd60e51b815260040161074490611851565b6001600160a01b038116610be45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610744565b61088d816110d0565b6000610bf98284611839565b9392505050565b6001600160a01b038316610c625760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610744565b6001600160a01b038216610cc35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610744565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d4a5760405162461bcd60e51b815260040161074490611886565b6001600160a01b038216610d705760405162461bcd60e51b8152600401610744906118cb565b80600003610d8957610d848383600061112e565b505050565b6001600160a01b03831660009081526010602052604081205460ff1680610dc857506001600160a01b03831660009081526010602052604090205460ff165b90507f000000000000000000000000101eb79828d3d03384e449ced71a669ab9654bb96001600160a01b0316846001600160a01b0316148015610e09575080155b15610e90576001600160a01b038316600090815260208190526040902054600854610e348483611839565b1115610e8e5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610744565b505b7f000000000000000000000000101eb79828d3d03384e449ced71a669ab9654bb96001600160a01b0316836001600160a01b0316148015610eea57506001600160a01b03841660009081526010602052604090205460ff16155b8015610f0f57506001600160a01b03831660009081526010602052604090205460ff16155b15610f7757600654821115610f775760405162461bcd60e51b815260206004820152602860248201527f616d6f756e74206578636565647320746865206d61785472616e73616374696f6044820152673720b6b7bab73a1760c11b6064820152608401610744565b3060009081526020819052604090205460075481108015908190610fa55750600554600160a81b900460ff16155b8015610fe257507f000000000000000000000000101eb79828d3d03384e449ced71a669ab9654bb96001600160a01b0316856001600160a01b0316145b8015610ff75750600554600160a01b900460ff165b1561100a57600754915061100a82611283565b826110bd5760007f000000000000000000000000101eb79828d3d03384e449ced71a669ab9654bb96001600160a01b0316876001600160a01b0316148061108257507f000000000000000000000000101eb79828d3d03384e449ced71a669ab9654bb96001600160a01b0316866001600160a01b0316145b156110a4576110a16064610843600c54886113e690919063ffffffff16565b90505b6110ae85826113f2565b94506110bb87308361112e565b505b6110c886868661112e565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610bf9828461190e565b6001600160a01b0383166111545760405162461bcd60e51b815260040161074490611886565b6001600160a01b03821661117a5760405162461bcd60e51b8152600401610744906118cb565b6001600160a01b038316600090815260208190526040902054818110156111f25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610744565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611229908490611839565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161127591815260200190565b60405180910390a350505050565b6005805460ff60a81b1916600160a81b179055600c546009546000916112ae916108439085906113e6565b905060006112bd826002611122565b905060006112cb83836113f2565b9050476112d7836113fe565b60006112e347836113f2565b90506112ef8382611581565b6113016112fc87876113f2565b6113fe565b600e54600b54600a546001600160a01b03909216916108fc916113359161132791610bed565b600b546108439047906113e6565b6040518115909202916000818181858888f1935050505015801561135d573d6000803e3d6000fd5b50600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611397573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506005805460ff60a81b1916905550505050565b6000610bf98284611930565b6000610bf9828461194f565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061143357611433611966565b6001600160a01b03928316602091820292909201810191909152600d54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561148c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b0919061197c565b816001815181106114c3576114c3611966565b6001600160a01b03928316602091820292909201810191909152600d543060009081526001835260408082209290941681529152205482111561151a57600d5461151a9030906001600160a01b0316600019610c00565b600d5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611553908590600090869030904290600401611999565b600060405180830381600087803b15801561156d57600080fd5b505af11580156110c8573d6000803e3d6000fd5b600d546001600160a01b031663f305d7198230856000806115aa6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611612573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116379190611a0a565b5050505050565b600060208083528351808285015260005b8181101561166b5785810183015185820160400152820161164f565b8181111561167d576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461088d57600080fd5b600080604083850312156116bb57600080fd5b82356116c681611693565b946020939093013593505050565b6000806000606084860312156116e957600080fd5b83356116f481611693565b9250602084013561170481611693565b929592945050506040919091013590565b60006020828403121561172757600080fd5b8135610bf981611693565b60006020828403121561174457600080fd5b5035919050565b8035801515811461175b57600080fd5b919050565b6000806040838503121561177357600080fd5b823561177e81611693565b915061178c6020840161174b565b90509250929050565b6000602082840312156117a757600080fd5b610bf98261174b565b600080604083850312156117c357600080fd5b82356117ce81611693565b915060208301356117de81611693565b809150509250929050565b600181811c908216806117fd57607f821691505b60208210810361181d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561184c5761184c611823565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008261192b57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561194a5761194a611823565b500290565b60008282101561196157611961611823565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561198e57600080fd5b8151610bf981611693565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119e95784516001600160a01b0316835293830193918301916001016119c4565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611a1f57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f980ac72c2c33766f6c2f72bd225587e459282e111052f9d30a25d00c39d5fcb64736f6c634300080d0033
Deployed Bytecode Sourcemap
39855:7771:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5711:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7878:169;;;;;;;;;;-1:-1:-1;7878:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;7878:169:0;1072:187:1;40377:41:0;;;;;;;;;;-1:-1:-1;40377:41:0;;;;-1:-1:-1;;;;;40377:41:0;;;;;;-1:-1:-1;;;;;1455:32:1;;;1437:51;;1425:2;1410:18;40377:41:0;1264:230:1;6831:108:0;;;;;;;;;;-1:-1:-1;6919:12:0;;6831:108;;;1645:25:1;;;1633:2;1618:18;6831:108:0;1499:177:1;8529:492:0;;;;;;;;;;-1:-1:-1;8529:492:0;;;;;:::i;:::-;;:::i;6673:93::-;;;;;;;;;;-1:-1:-1;6673:93:0;;6756:2;2284:36:1;;2272:2;2257:18;6673:93:0;2142:184:1;9430:215:0;;;;;;;;;;-1:-1:-1;9430:215:0;;;;;:::i;:::-;;:::i;40425:38::-;;;;;;;;;;;;;;;39928:40;;;;;;;;;;-1:-1:-1;39928:40:0;;;;-1:-1:-1;;;39928:40:0;;;;;;42524:125;;;;;;;;;;-1:-1:-1;42524:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;42613:28:0;42589:4;42613:28;;;:19;:28;;;;;;;;;42524:125;40266:25;;;;;;;;;;;;;;;;40228:31;;;;;;;;;;;;;;;;7002:127;;;;;;;;;;-1:-1:-1;7002:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7103:18:0;7076:7;7103:18;;;;;;;;;;;;7002:127;17248:94;;;;;;;;;;;;;:::i;:::-;;47321:119;;;;;;;;;;-1:-1:-1;47321:119:0;;;;;:::i;:::-;;:::i;40566:92::-;;;;;;;;;;-1:-1:-1;40566:92:0;;;;-1:-1:-1;;;;;40566:92:0;;;16597:87;;;;;;;;;;-1:-1:-1;16670:6:0;;-1:-1:-1;;;;;16670:6:0;16597:87;;40472:86;;;;;;;;;;-1:-1:-1;40472:86:0;;;;-1:-1:-1;;;;;40472:86:0;;;46925:188;;;;;;;;;;-1:-1:-1;46925:188:0;;;;;:::i;:::-;;:::i;5930:104::-;;;;;;;;;;;;;:::i;40190:31::-;;;;;;;;;;;;;;;;10148:413;;;;;;;;;;-1:-1:-1;10148:413:0;;;;;:::i;:::-;;:::i;7342:175::-;;;;;;;;;;-1:-1:-1;7342:175:0;;;;;:::i;:::-;;:::i;42224:288::-;;;;;;;;;;-1:-1:-1;42224:288:0;;;;;:::i;:::-;;:::i;47448:171::-;;;;;;;;;;-1:-1:-1;47448:171:0;;;;;:::i;:::-;;:::i;40013:54::-;;;;;;;;;;;;;;;;7580:151;;;;;;;;;;-1:-1:-1;7580:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;7696:18:0;;;7669:7;7696:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7580:151;40074:51;;;;;;;;;;;;;;;;40132:48;;;;;;;;;;;;;;;;47121:192;;;;;;;;;;-1:-1:-1;47121:192:0;;;;;:::i;:::-;;:::i;17497:::-;;;;;;;;;;-1:-1:-1;17497:192:0;;;;;:::i;:::-;;:::i;5711:100::-;5765:13;5798:5;5791:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5711:100;:::o;7878:169::-;7961:4;7978:39;312:10;8001:7;8010:6;7978:8;:39::i;:::-;-1:-1:-1;8035:4:0;7878:169;;;;:::o;8529:492::-;8669:4;8686:36;8696:6;8704:9;8715:6;8686:9;:36::i;:::-;-1:-1:-1;;;;;8762:19:0;;8735:24;8762:19;;;:11;:19;;;;;;;;312:10;8762:33;;;;;;;;8814:26;;;;8806:79;;;;-1:-1:-1;;;8806:79:0;;4850:2:1;8806:79:0;;;4832:21:1;4889:2;4869:18;;;4862:30;4928:34;4908:18;;;4901:62;-1:-1:-1;;;4979:18:1;;;4972:38;5027:19;;8806:79:0;;;;;;;;;8921:57;8930:6;312:10;8971:6;8952:16;:25;8921:8;:57::i;:::-;-1:-1:-1;9009:4:0;;8529:492;-1:-1:-1;;;;8529:492:0:o;9430:215::-;312:10;9518:4;9567:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9567:34:0;;;;;;;;;;9518:4;;9535:80;;9558:7;;9567:47;;9604:10;;9567:47;:::i;:::-;9535:8;:80::i;17248:94::-;16670:6;;-1:-1:-1;;;;;16670:6:0;312:10;16817:23;16809:68;;;;-1:-1:-1;;;16809:68:0;;;;;;;:::i;:::-;17313:21:::1;17331:1;17313:9;:21::i;:::-;17248:94::o:0;47321:119::-;16670:6;;-1:-1:-1;;;;;16670:6:0;312:10;16817:23;16809:68;;;;-1:-1:-1;;;16809:68:0;;;;;;;:::i;:::-;47401:18:::1;:31:::0;47321:119::o;46925:188::-;16670:6;;-1:-1:-1;;;;;16670:6:0;312:10;16817:23;16809:68;;;;-1:-1:-1;;;16809:68:0;;;;;;;:::i;:::-;47000:14:::1;:26:::0;;;47063:22:::1;47081:3;47063:13;6919:12:::0;;;6831:108;47063:13:::1;:17:::0;::::1;:22::i;:::-;47045:14;;:40;;47037:69;;;::::0;-1:-1:-1;;;47037:69:0;;5885:2:1;47037:69:0::1;::::0;::::1;5867:21:1::0;5924:2;5904:18;;;5897:30;-1:-1:-1;;;5943:18:1;;;5936:46;5999:18;;47037:69:0::1;5683:340:1::0;47037:69:0::1;46925:188:::0;:::o;5930:104::-;5986:13;6019:7;6012:14;;;;;:::i;10148:413::-;312:10;10241:4;10285:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10285:34:0;;;;;;;;;;10338:35;;;;10330:85;;;;-1:-1:-1;;;10330:85:0;;6230:2:1;10330:85:0;;;6212:21:1;6269:2;6249:18;;;6242:30;6308:34;6288:18;;;6281:62;-1:-1:-1;;;6359:18:1;;;6352:35;6404:19;;10330:85:0;6028:401:1;10330:85:0;10451:67;312:10;10474:7;10502:15;10483:16;:34;10451:8;:67::i;:::-;-1:-1:-1;10549:4:0;;10148:413;-1:-1:-1;;;10148:413:0:o;7342:175::-;7428:4;7445:42;312:10;7469:9;7480:6;7445:9;:42::i;42224:288::-;16670:6;;-1:-1:-1;;;;;16670:6:0;312:10;16817:23;16809:68;;;;-1:-1:-1;;;16809:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42317:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;42309:95:::1;;;::::0;-1:-1:-1;;;42309:95:0;;6636:2:1;42309:95:0::1;::::0;::::1;6618:21:1::0;6675:2;6655:18;;;6648:30;6714:34;6694:18;;;6687:62;-1:-1:-1;;;6765:18:1;;;6758:40;6815:19;;42309:95:0::1;6434:406:1::0;42309:95:0::1;-1:-1:-1::0;;;;;42415:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;42415:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;42470:34;;1212:41:1;;;42470:34:0::1;::::0;1185:18:1;42470:34:0::1;;;;;;;42224:288:::0;;:::o;47448:171::-;16670:6;;-1:-1:-1;;;;;16670:6:0;312:10;16817:23;16809:68;;;;-1:-1:-1;;;16809:68:0;;;;;;;:::i;:::-;47525:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;47525:32:0::1;-1:-1:-1::0;;;;47525:32:0;;::::1;;::::0;;47573:38:::1;::::0;::::1;::::0;::::1;::::0;47549:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;47573:38:0::1;;;;;;;;47448:171:::0;:::o;47121:192::-;16670:6;;-1:-1:-1;;;;;16670:6:0;312:10;16817:23;16809:68;;;;-1:-1:-1;;;16809:68:0;;;;;;;:::i;:::-;47189:20:::1;:29:::0;;;47261:23:::1;47279:4;47261:13;6919:12:::0;;;6831:108;47261:23:::1;47237:20;;:47;;47229:76;;;::::0;-1:-1:-1;;;47229:76:0;;5885:2:1;47229:76:0::1;::::0;::::1;5867:21:1::0;5924:2;5904:18;;;5897:30;-1:-1:-1;;;5943:18:1;;;5936:46;5999:18;;47229:76:0::1;5683:340:1::0;17497:192:0;16670:6;;-1:-1:-1;;;;;16670:6:0;312:10;16817:23;16809:68;;;;-1:-1:-1;;;16809:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17586:22:0;::::1;17578:73;;;::::0;-1:-1:-1;;;17578:73:0;;7047:2:1;17578:73:0::1;::::0;::::1;7029:21:1::0;7086:2;7066:18;;;7059:30;7125:34;7105:18;;;7098:62;-1:-1:-1;;;7176:18:1;;;7169:36;7222:19;;17578:73:0::1;6845:402:1::0;17578:73:0::1;17662:19;17672:8;17662:9;:19::i;27751:98::-:0;27809:7;27836:5;27840:1;27836;:5;:::i;:::-;27829:12;27751:98;-1:-1:-1;;;27751:98:0:o;13847:380::-;-1:-1:-1;;;;;13983:19:0;;13975:68;;;;-1:-1:-1;;;13975:68:0;;7454:2:1;13975:68:0;;;7436:21:1;7493:2;7473:18;;;7466:30;7532:34;7512:18;;;7505:62;-1:-1:-1;;;7583:18:1;;;7576:34;7627:19;;13975:68:0;7252:400:1;13975:68:0;-1:-1:-1;;;;;14062:21:0;;14054:68;;;;-1:-1:-1;;;14054:68:0;;7859:2:1;14054:68:0;;;7841:21:1;7898:2;7878:18;;;7871:30;7937:34;7917:18;;;7910:62;-1:-1:-1;;;7988:18:1;;;7981:32;8030:19;;14054:68:0;7657:398:1;14054:68:0;-1:-1:-1;;;;;14135:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14187:32;;1645:25:1;;;14187:32:0;;1618:18:1;14187:32:0;;;;;;;13847:380;;;:::o;42660:1804::-;-1:-1:-1;;;;;42792:18:0;;42784:68;;;;-1:-1:-1;;;42784:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42871:16:0;;42863:64;;;;-1:-1:-1;;;42863:64:0;;;;;;;:::i;:::-;42943:6;42953:1;42943:11;42940:92;;42971:28;42987:4;42993:2;42997:1;42971:15;:28::i;:::-;42660:1804;;;:::o;42940:92::-;-1:-1:-1;;;;;43067:25:0;;43044:20;43067:25;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;43096:23:0;;;;;;:19;:23;;;;;;;;43067:52;43044:75;;43152:13;-1:-1:-1;;;;;43144:21:0;:4;-1:-1:-1;;;;;43144:21:0;;:41;;;;;43170:15;43169:16;43144:41;43140:251;;;-1:-1:-1;;;;;7103:18:0;;43216:32;7103:18;;;;;;;;;;;43324:14;;43287:33;43314:6;7103:18;43287:33;:::i;:::-;:51;;43279:100;;;;-1:-1:-1;;;43279:100:0;;9072:2:1;43279:100:0;;;9054:21:1;9111:2;9091:18;;;9084:30;9150:34;9130:18;;;9123:62;-1:-1:-1;;;9201:18:1;;;9194:34;9245:19;;43279:100:0;8870:400:1;43279:100:0;43187:204;43140:251;43420:13;-1:-1:-1;;;;;43414:19:0;:2;-1:-1:-1;;;;;43414:19:0;;:51;;;;-1:-1:-1;;;;;;43439:25:0;;;;;;:19;:25;;;;;;;;43438:26;43414:51;:81;;;;-1:-1:-1;;;;;;43471:23:0;;;;;;:19;:23;;;;;;;;43470:24;43414:81;43411:195;;;43529:20;;43519:6;:30;;43511:83;;;;-1:-1:-1;;;43511:83:0;;9477:2:1;43511:83:0;;;9459:21:1;9516:2;9496:18;;;9489:30;9555:34;9535:18;;;9528:62;-1:-1:-1;;;9606:18:1;;;9599:38;9654:19;;43511:83:0;9275:404:1;43511:83:0;43672:4;43623:28;7103:18;;;;;;;;;;;43750;;43726:42;;;;;;;43791:40;;-1:-1:-1;43815:16:0;;-1:-1:-1;;;43815:16:0;;;;43814:17;43791:40;:63;;;;;43841:13;-1:-1:-1;;;;;43835:19:0;:2;-1:-1:-1;;;;;43835:19:0;;43791:63;:88;;;;-1:-1:-1;43858:21:0;;-1:-1:-1;;;43858:21:0;;;;43791:88;43788:216;;;43921:18;;43898:41;;43954:36;43969:20;43954:14;:36::i;:::-;44106:15;44102:307;;44138:12;44176:13;-1:-1:-1;;;;;44168:21:0;:4;-1:-1:-1;;;;;44168:21:0;;:44;;;;44199:13;-1:-1:-1;;;;;44193:19:0;:2;-1:-1:-1;;;;;44193:19:0;;44168:44;44165:120;;;44239:30;44265:3;44239:21;44250:9;;44239:6;:10;;:21;;;;:::i;:30::-;44231:38;;44165:120;44307:16;:6;44318:4;44307:10;:16::i;:::-;44298:25;;44340:42;44356:4;44370;44377;44340:15;:42::i;:::-;44123:286;44102:307;44421:33;44437:4;44443:2;44447:6;44421:15;:33::i;:::-;42773:1691;;;42660:1804;;;:::o;17697:173::-;17772:6;;;-1:-1:-1;;;;;17789:17:0;;;-1:-1:-1;;;;;;17789:17:0;;;;;;;17822:40;;17772:6;;;17789:17;17772:6;;17822:40;;17753:16;;17822:40;17742:128;17697:173;:::o;28888:98::-;28946:7;28973:5;28977:1;28973;:5;:::i;11051:733::-;-1:-1:-1;;;;;11191:20:0;;11183:70;;;;-1:-1:-1;;;11183:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11272:23:0;;11264:71;;;;-1:-1:-1;;;11264:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11432:17:0;;11408:21;11432:17;;;;;;;;;;;11468:23;;;;11460:74;;;;-1:-1:-1;;;11460:74:0;;10108:2:1;11460:74:0;;;10090:21:1;10147:2;10127:18;;;10120:30;10186:34;10166:18;;;10159:62;-1:-1:-1;;;10237:18:1;;;10230:36;10283:19;;11460:74:0;9906:402:1;11460:74:0;-1:-1:-1;;;;;11570:17:0;;;:9;:17;;;;;;;;;;;11590:22;;;11570:42;;11634:20;;;;;;;;:30;;11606:6;;11570:9;11634:30;;11606:6;;11634:30;:::i;:::-;;;;;;;;11699:9;-1:-1:-1;;;;;11682:35:0;11691:6;-1:-1:-1;;;;;11682:35:0;;11710:6;11682:35;;;;1645:25:1;;1633:2;1618:18;;1499:177;11682:35:0;;;;;;;;11172:612;11051:733;;;:::o;44473:1343::-;40819:16;:23;;-1:-1:-1;;;;40819:23:0;-1:-1:-1;;;40819:23:0;;;44630:9:::1;::::0;44612:12:::1;::::0;40819:23;;44587:53:::1;::::0;:38:::1;::::0;:20;;:24:::1;:38::i;:53::-;44558:82:::0;-1:-1:-1;44709:12:0::1;44724:25;44558:82:::0;44747:1:::1;44724:22;:25::i;:::-;44709:40:::0;-1:-1:-1;44760:17:0::1;44780:28;:18:::0;44709:40;44780:22:::1;:28::i;:::-;44760:48:::0;-1:-1:-1;45111:21:0::1;45177:22;45194:4:::0;45177:16:::1;:22::i;:::-;45330:18;45351:41;:21;45377:14:::0;45351:25:::1;:41::i;:::-;45330:62;;45442:35;45455:9;45466:10;45442:12;:35::i;:::-;45535:62;45552:44;:20:::0;45577:18;45552:24:::1;:44::i;:::-;45535:16;:62::i;:::-;45608:9;::::0;45682:6:::1;::::0;45665:12:::1;::::0;-1:-1:-1;;;;;45608:9:0;;::::1;::::0;:83:::1;::::0;45627:63:::1;::::0;45665:24:::1;::::0;:16:::1;:24::i;:::-;45653:6;::::0;45627:33:::1;::::0;:21:::1;::::0;:25:::1;:33::i;:63::-;45608:83;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;45702:15:0::1;::::0;:47:::1;::::0;-1:-1:-1;;;;;45702:15:0;;::::1;::::0;45727:21:::1;45702:47:::0;::::1;;;::::0;:15:::1;:47:::0;:15;:47;45727:21;45702:15;:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;45775:32:0::1;::::0;;10487:25:1;;;10543:2;10528:18;;10521:34;;;45775:32:0::1;::::0;10460:18:1;45775:32:0::1;;;;;;;-1:-1:-1::0;;40865:16:0;:24;;-1:-1:-1;;;;40865:24:0;;;-1:-1:-1;;;;44473:1343:0:o;28489:98::-;28547:7;28574:5;28578:1;28574;:5;:::i;28132:98::-;28190:7;28217:5;28221:1;28217;:5;:::i;45824:694::-;45976:16;;;45990:1;45976:16;;;;;;;;45952:21;;45976:16;;;;;;;;;;-1:-1:-1;45976:16:0;45952:40;;46021:4;46003;46008:1;46003:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46003:23:0;;;:7;;;;;;;;;;:23;;;;46047:15;;:22;;;-1:-1:-1;;;46047:22:0;;;;:15;;;;;:20;;:22;;;;;46003:7;;46047:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46037:4;46042:1;46037:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46037:32:0;;;:7;;;;;;;;;;:32;;;;46118:15;;46103:4;7669:7;7696:18;;;:11;:18;;;;;;46118:15;;;;7696:27;;;;;;46138:11;-1:-1:-1;46082:156:0;;;46196:15;;46164:62;;46181:4;;-1:-1:-1;;;;;46196:15:0;-1:-1:-1;;46164:8:0;:62::i;:::-;46276:15;;:224;;-1:-1:-1;;;46276:224:0;;-1:-1:-1;;;;;46276:15:0;;;;:66;;:224;;46357:11;;46276:15;;46427:4;;46454;;46474:15;;46276:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46526:391;46647:15;;-1:-1:-1;;;;;46647:15:0;:31;46686:9;46719:4;46739:11;46647:15;;46851:7;16670:6;;-1:-1:-1;;;;;16670:6:0;;16597:87;46851:7;46647:252;;;;;;-1:-1:-1;;;;;;46647:252:0;;;-1:-1:-1;;;;;12733:15:1;;;46647:252:0;;;12715:34:1;12765:18;;;12758:34;;;;12808:18;;;12801:34;;;;12851:18;;;12844:34;12915:15;;;12894:19;;;12887:44;46873:15:0;12947:19:1;;;12940:35;12649:19;;46647:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46526:391;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1681:456::-;1758:6;1766;1774;1827:2;1815:9;1806:7;1802:23;1798:32;1795:52;;;1843:1;1840;1833:12;1795:52;1882:9;1869:23;1901:31;1926:5;1901:31;:::i;:::-;1951:5;-1:-1:-1;2008:2:1;1993:18;;1980:32;2021:33;1980:32;2021:33;:::i;:::-;1681:456;;2073:7;;-1:-1:-1;;;2127:2:1;2112:18;;;;2099:32;;1681:456::o;2539:247::-;2598:6;2651:2;2639:9;2630:7;2626:23;2622:32;2619:52;;;2667:1;2664;2657:12;2619:52;2706:9;2693:23;2725:31;2750:5;2725:31;:::i;2791:180::-;2850:6;2903:2;2891:9;2882:7;2878:23;2874:32;2871:52;;;2919:1;2916;2909:12;2871:52;-1:-1:-1;2942:23:1;;2791:180;-1:-1:-1;2791:180:1:o;3200:160::-;3265:20;;3321:13;;3314:21;3304:32;;3294:60;;3350:1;3347;3340:12;3294:60;3200:160;;;:::o;3365:315::-;3430:6;3438;3491:2;3479:9;3470:7;3466:23;3462:32;3459:52;;;3507:1;3504;3497:12;3459:52;3546:9;3533:23;3565:31;3590:5;3565:31;:::i;:::-;3615:5;-1:-1:-1;3639:35:1;3670:2;3655:18;;3639:35;:::i;:::-;3629:45;;3365:315;;;;;:::o;3685:180::-;3741:6;3794:2;3782:9;3773:7;3769:23;3765:32;3762:52;;;3810:1;3807;3800:12;3762:52;3833:26;3849:9;3833:26;:::i;3870:388::-;3938:6;3946;3999:2;3987:9;3978:7;3974:23;3970:32;3967:52;;;4015:1;4012;4005:12;3967:52;4054:9;4041:23;4073:31;4098:5;4073:31;:::i;:::-;4123:5;-1:-1:-1;4180:2:1;4165:18;;4152:32;4193:33;4152:32;4193:33;:::i;:::-;4245:7;4235:17;;;3870:388;;;;;:::o;4263:380::-;4342:1;4338:12;;;;4385;;;4406:61;;4460:4;4452:6;4448:17;4438:27;;4406:61;4513:2;4505:6;4502:14;4482:18;4479:38;4476:161;;4559:10;4554:3;4550:20;4547:1;4540:31;4594:4;4591:1;4584:15;4622:4;4619:1;4612:15;4476:161;;4263:380;;;:::o;5057:127::-;5118:10;5113:3;5109:20;5106:1;5099:31;5149:4;5146:1;5139:15;5173:4;5170:1;5163:15;5189:128;5229:3;5260:1;5256:6;5253:1;5250:13;5247:39;;;5266:18;;:::i;:::-;-1:-1:-1;5302:9:1;;5189:128::o;5322:356::-;5524:2;5506:21;;;5543:18;;;5536:30;5602:34;5597:2;5582:18;;5575:62;5669:2;5654:18;;5322:356::o;8060:401::-;8262:2;8244:21;;;8301:2;8281:18;;;8274:30;8340:34;8335:2;8320:18;;8313:62;-1:-1:-1;;;8406:2:1;8391:18;;8384:35;8451:3;8436:19;;8060:401::o;8466:399::-;8668:2;8650:21;;;8707:2;8687:18;;;8680:30;8746:34;8741:2;8726:18;;8719:62;-1:-1:-1;;;8812:2:1;8797:18;;8790:33;8855:3;8840:19;;8466:399::o;9684:217::-;9724:1;9750;9740:132;;9794:10;9789:3;9785:20;9782:1;9775:31;9829:4;9826:1;9819:15;9857:4;9854:1;9847:15;9740:132;-1:-1:-1;9886:9:1;;9684:217::o;10566:168::-;10606:7;10672:1;10668;10664:6;10660:14;10657:1;10654:21;10649:1;10642:9;10635:17;10631:45;10628:71;;;10679:18;;:::i;:::-;-1:-1:-1;10719:9:1;;10566:168::o;10739:125::-;10779:4;10807:1;10804;10801:8;10798:34;;;10812:18;;:::i;:::-;-1:-1:-1;10849:9:1;;10739:125::o;11001:127::-;11062:10;11057:3;11053:20;11050:1;11043:31;11093:4;11090:1;11083:15;11117:4;11114:1;11107:15;11133:251;11203:6;11256:2;11244:9;11235:7;11231:23;11227:32;11224:52;;;11272:1;11269;11262:12;11224:52;11304:9;11298:16;11323:31;11348:5;11323:31;:::i;11389:980::-;11651:4;11699:3;11688:9;11684:19;11730:6;11719:9;11712:25;11756:2;11794:6;11789:2;11778:9;11774:18;11767:34;11837:3;11832:2;11821:9;11817:18;11810:31;11861:6;11896;11890:13;11927:6;11919;11912:22;11965:3;11954:9;11950:19;11943:26;;12004:2;11996:6;11992:15;11978:29;;12025:1;12035:195;12049:6;12046:1;12043:13;12035:195;;;12114:13;;-1:-1:-1;;;;;12110:39:1;12098:52;;12205:15;;;;12170:12;;;;12146:1;12064:9;12035:195;;;-1:-1:-1;;;;;;;12286:32:1;;;;12281:2;12266:18;;12259:60;-1:-1:-1;;;12350:3:1;12335:19;12328:35;12247:3;11389:980;-1:-1:-1;;;11389:980:1:o;12986:306::-;13074:6;13082;13090;13143:2;13131:9;13122:7;13118:23;13114:32;13111:52;;;13159:1;13156;13149:12;13111:52;13188:9;13182:16;13172:26;;13238:2;13227:9;13223:18;13217:25;13207:35;;13282:2;13271:9;13267:18;13261:25;13251:35;;12986:306;;;;;:::o
Swarm Source
ipfs://f980ac72c2c33766f6c2f72bd225587e459282e111052f9d30a25d00c39d5fcb
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.