ERC-20
Overview
Max Total Supply
100,000,000 1Punch
Holders
41
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
344,938.508100840405844944 1PunchValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OnePunch
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-28 */ /** *Submitted for verification at Etherscan.io on 2021-08-18 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** IERC20 * @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); } /** IERCMetadata * @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); } /* Context * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** ERC20 * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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 _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** Ownable * @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); } } /** Safemath * @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; } } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract OnePunch is ERC20, Ownable { using SafeMath for uint256; bool startTrading = false; address uniswapPair; constructor() ERC20("1Punch", "1Punch") { IUniswapV2Router02 router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapPair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH()); _mint(owner(), 1e8*1e18); } function _beforeTokenTransfer(address from, address to, uint256) override internal view { if(from != owner() && to != owner() && from == uniswapPair) require(startTrading, "Trading has not started"); } function openTrading() external onlyOwner { startTrading = true; } function addLiquidity() external onlyOwner { require(!startTrading, "Trading has already started"); IUniswapV2Router02 router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(router), type(uint256).max); router.addLiquidityETH{ value: address(this).balance }(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); } function recoverEth() external onlyOwner { payable(_msgSender()).transfer(address(this).balance); } function recoverTokens(address tokenAddress) external onlyOwner { IERC20 token = IERC20(tokenAddress); token.transfer(_msgSender(), token.balanceOf(address(this))); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recoverEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600560146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600681526020017f3150756e636800000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f3150756e636800000000000000000000000000000000000000000000000000008152508160039080519060200190620000b1929190620006c3565b508060049080519060200190620000ca929190620006c3565b505050620000ed620000e16200030e60201b60201c565b6200031660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200014d57600080fd5b505afa15801562000162573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018891906200078a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001eb57600080fd5b505afa15801562000200573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022691906200078a565b6040518363ffffffff1660e01b81526004016200024592919062000826565b602060405180830381600087803b1580156200026057600080fd5b505af115801562000275573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029b91906200078a565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000307620002ef620003dc60201b60201c565b6a52b7d2dcc80cd2e40000006200040660201b60201c565b5062000a60565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000479576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004709062000875565b60405180910390fd5b6200048d600083836200057f60201b60201c565b8060026000828254620004a19190620008c5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004f89190620008c5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200055f919062000897565b60405180910390a36200057b60008383620006be60201b60201c565b5050565b6200058f620003dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015620006065750620005d6620003dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620006605750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620006b957600560149054906101000a900460ff16620006b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006af9062000853565b60405180910390fd5b5b505050565b505050565b828054620006d19062000960565b90600052602060002090601f016020900481019282620006f5576000855562000741565b82601f106200071057805160ff191683800117855562000741565b8280016001018555821562000741579182015b828111156200074057825182559160200191906001019062000723565b5b50905062000750919062000754565b5090565b5b808211156200076f57600081600090555060010162000755565b5090565b600081519050620007848162000a46565b92915050565b6000602082840312156200079d57600080fd5b6000620007ad8482850162000773565b91505092915050565b620007c18162000922565b82525050565b6000620007d6601783620008b4565b9150620007e382620009f4565b602082019050919050565b6000620007fd601f83620008b4565b91506200080a8262000a1d565b602082019050919050565b620008208162000956565b82525050565b60006040820190506200083d6000830185620007b6565b6200084c6020830184620007b6565b9392505050565b600060208201905081810360008301526200086e81620007c7565b9050919050565b600060208201905081810360008301526200089081620007ee565b9050919050565b6000602082019050620008ae600083018462000815565b92915050565b600082825260208201905092915050565b6000620008d28262000956565b9150620008df8362000956565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000917576200091662000996565b5b828201905092915050565b60006200092f8262000936565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200097957607f821691505b6020821081141562000990576200098f620009c5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f54726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000a518162000922565b811462000a5d57600080fd5b50565b61214c8062000a706000396000f3fe60806040526004361061010d5760003560e01c80638da5cb5b11610095578063bcdb446b11610064578063bcdb446b1461039e578063c9567bf9146103b5578063dd62ed3e146103cc578063e8078d9414610409578063f2fde38b1461042057610114565b80638da5cb5b146102ce57806395d89b41146102f9578063a457c2d714610324578063a9059cbb1461036157610114565b806323b872dd116100dc57806323b872dd146101d5578063313ce56714610212578063395093511461023d57806370a082311461027a578063715018a6146102b757610114565b806306fdde0314610119578063095ea7b31461014457806316114acd1461018157806318160ddd146101aa57610114565b3661011457005b600080fd5b34801561012557600080fd5b5061012e610449565b60405161013b9190611a79565b60405180910390f35b34801561015057600080fd5b5061016b600480360381019061016691906116d7565b6104db565b6040516101789190611a5e565b60405180910390f35b34801561018d57600080fd5b506101a860048036038101906101a39190611623565b6104f9565b005b3480156101b657600080fd5b506101bf61069b565b6040516101cc9190611bfb565b60405180910390f35b3480156101e157600080fd5b506101fc60048036038101906101f79190611688565b6106a5565b6040516102099190611a5e565b60405180910390f35b34801561021e57600080fd5b5061022761079d565b6040516102349190611c16565b60405180910390f35b34801561024957600080fd5b50610264600480360381019061025f91906116d7565b6107a6565b6040516102719190611a5e565b60405180910390f35b34801561028657600080fd5b506102a1600480360381019061029c9190611623565b610852565b6040516102ae9190611bfb565b60405180910390f35b3480156102c357600080fd5b506102cc61089a565b005b3480156102da57600080fd5b506102e3610922565b6040516102f091906119b9565b60405180910390f35b34801561030557600080fd5b5061030e61094c565b60405161031b9190611a79565b60405180910390f35b34801561033057600080fd5b5061034b600480360381019061034691906116d7565b6109de565b6040516103589190611a5e565b60405180910390f35b34801561036d57600080fd5b50610388600480360381019061038391906116d7565b610ac9565b6040516103959190611a5e565b60405180910390f35b3480156103aa57600080fd5b506103b3610ae7565b005b3480156103c157600080fd5b506103ca610bb3565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061164c565b610c4c565b6040516104009190611bfb565b60405180910390f35b34801561041557600080fd5b5061041e610cd3565b005b34801561042c57600080fd5b5061044760048036038101906104429190611623565b610e8f565b005b60606003805461045890611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461048490611d3d565b80156104d15780601f106104a6576101008083540402835291602001916104d1565b820191906000526020600020905b8154815290600101906020018083116104b457829003601f168201915b5050505050905090565b60006104ef6104e8610f87565b8484610f8f565b6001905092915050565b610501610f87565b73ffffffffffffffffffffffffffffffffffffffff1661051f610922565b73ffffffffffffffffffffffffffffffffffffffff1614610575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056c90611b7b565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61059e610f87565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105d791906119b9565b60206040518083038186803b1580156105ef57600080fd5b505afa158015610603573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610627919061173c565b6040518363ffffffff1660e01b81526004016106449291906119d4565b602060405180830381600087803b15801561065e57600080fd5b505af1158015610672573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106969190611713565b505050565b6000600254905090565b60006106b284848461115a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106fd610f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561077d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077490611b5b565b60405180910390fd5b61079185610789610f87565b858403610f8f565b60019150509392505050565b60006012905090565b60006108486107b3610f87565b8484600160006107c1610f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108439190611c4d565b610f8f565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108a2610f87565b73ffffffffffffffffffffffffffffffffffffffff166108c0610922565b73ffffffffffffffffffffffffffffffffffffffff1614610916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090d90611b7b565b60405180910390fd5b61092060006113db565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095b90611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461098790611d3d565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b600080600160006109ed610f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190611bdb565b60405180910390fd5b610abe610ab5610f87565b85858403610f8f565b600191505092915050565b6000610add610ad6610f87565b848461115a565b6001905092915050565b610aef610f87565b73ffffffffffffffffffffffffffffffffffffffff16610b0d610922565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611b7b565b60405180910390fd5b610b6b610f87565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bb0573d6000803e3d6000fd5b50565b610bbb610f87565b73ffffffffffffffffffffffffffffffffffffffff16610bd9610922565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690611b7b565b60405180910390fd5b6001600560146101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cdb610f87565b73ffffffffffffffffffffffffffffffffffffffff16610cf9610922565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690611b7b565b60405180910390fd5b600560149054906101000a900460ff1615610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690611abb565b60405180910390fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050610de330827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610f8f565b8073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610e0a30610852565b600080610e15610922565b426040518863ffffffff1660e01b8152600401610e37969594939291906119fd565b6060604051808303818588803b158015610e5057600080fd5b505af1158015610e64573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e899190611765565b50505050565b610e97610f87565b73ffffffffffffffffffffffffffffffffffffffff16610eb5610922565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290611b7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290611adb565b60405180910390fd5b610f84816113db565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690611bbb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690611afb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161114d9190611bfb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190611b9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190611a9b565b60405180910390fd5b6112458383836114a1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290611b1b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461135e9190611c4d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113c29190611bfb565b60405180910390a36113d58484846115ca565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6114a9610922565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561151757506114e7610922565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156115705750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115c557600560149054906101000a900460ff166115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb90611b3b565b60405180910390fd5b5b505050565b505050565b6000813590506115de816120d1565b92915050565b6000815190506115f3816120e8565b92915050565b600081359050611608816120ff565b92915050565b60008151905061161d816120ff565b92915050565b60006020828403121561163557600080fd5b6000611643848285016115cf565b91505092915050565b6000806040838503121561165f57600080fd5b600061166d858286016115cf565b925050602061167e858286016115cf565b9150509250929050565b60008060006060848603121561169d57600080fd5b60006116ab868287016115cf565b93505060206116bc868287016115cf565b92505060406116cd868287016115f9565b9150509250925092565b600080604083850312156116ea57600080fd5b60006116f8858286016115cf565b9250506020611709858286016115f9565b9150509250929050565b60006020828403121561172557600080fd5b6000611733848285016115e4565b91505092915050565b60006020828403121561174e57600080fd5b600061175c8482850161160e565b91505092915050565b60008060006060848603121561177a57600080fd5b60006117888682870161160e565b93505060206117998682870161160e565b92505060406117aa8682870161160e565b9150509250925092565b6117bd81611ca3565b82525050565b6117cc81611cb5565b82525050565b6117db81611cf8565b82525050565b60006117ec82611c31565b6117f68185611c3c565b9350611806818560208601611d0a565b61180f81611dcd565b840191505092915050565b6000611827602383611c3c565b915061183282611dde565b604082019050919050565b600061184a601b83611c3c565b915061185582611e2d565b602082019050919050565b600061186d602683611c3c565b915061187882611e56565b604082019050919050565b6000611890602283611c3c565b915061189b82611ea5565b604082019050919050565b60006118b3602683611c3c565b91506118be82611ef4565b604082019050919050565b60006118d6601783611c3c565b91506118e182611f43565b602082019050919050565b60006118f9602883611c3c565b915061190482611f6c565b604082019050919050565b600061191c602083611c3c565b915061192782611fbb565b602082019050919050565b600061193f602583611c3c565b915061194a82611fe4565b604082019050919050565b6000611962602483611c3c565b915061196d82612033565b604082019050919050565b6000611985602583611c3c565b915061199082612082565b604082019050919050565b6119a481611ce1565b82525050565b6119b381611ceb565b82525050565b60006020820190506119ce60008301846117b4565b92915050565b60006040820190506119e960008301856117b4565b6119f6602083018461199b565b9392505050565b600060c082019050611a1260008301896117b4565b611a1f602083018861199b565b611a2c60408301876117d2565b611a3960608301866117d2565b611a4660808301856117b4565b611a5360a083018461199b565b979650505050505050565b6000602082019050611a7360008301846117c3565b92915050565b60006020820190508181036000830152611a9381846117e1565b905092915050565b60006020820190508181036000830152611ab48161181a565b9050919050565b60006020820190508181036000830152611ad48161183d565b9050919050565b60006020820190508181036000830152611af481611860565b9050919050565b60006020820190508181036000830152611b1481611883565b9050919050565b60006020820190508181036000830152611b34816118a6565b9050919050565b60006020820190508181036000830152611b54816118c9565b9050919050565b60006020820190508181036000830152611b74816118ec565b9050919050565b60006020820190508181036000830152611b948161190f565b9050919050565b60006020820190508181036000830152611bb481611932565b9050919050565b60006020820190508181036000830152611bd481611955565b9050919050565b60006020820190508181036000830152611bf481611978565b9050919050565b6000602082019050611c10600083018461199b565b92915050565b6000602082019050611c2b60008301846119aa565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c5882611ce1565b9150611c6383611ce1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c9857611c97611d6f565b5b828201905092915050565b6000611cae82611cc1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611d0382611ce1565b9050919050565b60005b83811015611d28578082015181840152602081019050611d0d565b83811115611d37576000848401525b50505050565b60006002820490506001821680611d5557607f821691505b60208210811415611d6957611d68611d9e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e672068617320616c726561647920737461727465640000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6120da81611ca3565b81146120e557600080fd5b50565b6120f181611cb5565b81146120fc57600080fd5b50565b61210881611ce1565b811461211357600080fd5b5056fea264697066735822122011bba51fa9eff4bf8b34ce750d6e13d83cda57a8c8d8af93ca6d958cbb6680c264736f6c63430008040033
Deployed Bytecode
0x60806040526004361061010d5760003560e01c80638da5cb5b11610095578063bcdb446b11610064578063bcdb446b1461039e578063c9567bf9146103b5578063dd62ed3e146103cc578063e8078d9414610409578063f2fde38b1461042057610114565b80638da5cb5b146102ce57806395d89b41146102f9578063a457c2d714610324578063a9059cbb1461036157610114565b806323b872dd116100dc57806323b872dd146101d5578063313ce56714610212578063395093511461023d57806370a082311461027a578063715018a6146102b757610114565b806306fdde0314610119578063095ea7b31461014457806316114acd1461018157806318160ddd146101aa57610114565b3661011457005b600080fd5b34801561012557600080fd5b5061012e610449565b60405161013b9190611a79565b60405180910390f35b34801561015057600080fd5b5061016b600480360381019061016691906116d7565b6104db565b6040516101789190611a5e565b60405180910390f35b34801561018d57600080fd5b506101a860048036038101906101a39190611623565b6104f9565b005b3480156101b657600080fd5b506101bf61069b565b6040516101cc9190611bfb565b60405180910390f35b3480156101e157600080fd5b506101fc60048036038101906101f79190611688565b6106a5565b6040516102099190611a5e565b60405180910390f35b34801561021e57600080fd5b5061022761079d565b6040516102349190611c16565b60405180910390f35b34801561024957600080fd5b50610264600480360381019061025f91906116d7565b6107a6565b6040516102719190611a5e565b60405180910390f35b34801561028657600080fd5b506102a1600480360381019061029c9190611623565b610852565b6040516102ae9190611bfb565b60405180910390f35b3480156102c357600080fd5b506102cc61089a565b005b3480156102da57600080fd5b506102e3610922565b6040516102f091906119b9565b60405180910390f35b34801561030557600080fd5b5061030e61094c565b60405161031b9190611a79565b60405180910390f35b34801561033057600080fd5b5061034b600480360381019061034691906116d7565b6109de565b6040516103589190611a5e565b60405180910390f35b34801561036d57600080fd5b50610388600480360381019061038391906116d7565b610ac9565b6040516103959190611a5e565b60405180910390f35b3480156103aa57600080fd5b506103b3610ae7565b005b3480156103c157600080fd5b506103ca610bb3565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061164c565b610c4c565b6040516104009190611bfb565b60405180910390f35b34801561041557600080fd5b5061041e610cd3565b005b34801561042c57600080fd5b5061044760048036038101906104429190611623565b610e8f565b005b60606003805461045890611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461048490611d3d565b80156104d15780601f106104a6576101008083540402835291602001916104d1565b820191906000526020600020905b8154815290600101906020018083116104b457829003601f168201915b5050505050905090565b60006104ef6104e8610f87565b8484610f8f565b6001905092915050565b610501610f87565b73ffffffffffffffffffffffffffffffffffffffff1661051f610922565b73ffffffffffffffffffffffffffffffffffffffff1614610575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056c90611b7b565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61059e610f87565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105d791906119b9565b60206040518083038186803b1580156105ef57600080fd5b505afa158015610603573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610627919061173c565b6040518363ffffffff1660e01b81526004016106449291906119d4565b602060405180830381600087803b15801561065e57600080fd5b505af1158015610672573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106969190611713565b505050565b6000600254905090565b60006106b284848461115a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106fd610f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561077d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077490611b5b565b60405180910390fd5b61079185610789610f87565b858403610f8f565b60019150509392505050565b60006012905090565b60006108486107b3610f87565b8484600160006107c1610f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108439190611c4d565b610f8f565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108a2610f87565b73ffffffffffffffffffffffffffffffffffffffff166108c0610922565b73ffffffffffffffffffffffffffffffffffffffff1614610916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090d90611b7b565b60405180910390fd5b61092060006113db565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095b90611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461098790611d3d565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b600080600160006109ed610f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190611bdb565b60405180910390fd5b610abe610ab5610f87565b85858403610f8f565b600191505092915050565b6000610add610ad6610f87565b848461115a565b6001905092915050565b610aef610f87565b73ffffffffffffffffffffffffffffffffffffffff16610b0d610922565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611b7b565b60405180910390fd5b610b6b610f87565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bb0573d6000803e3d6000fd5b50565b610bbb610f87565b73ffffffffffffffffffffffffffffffffffffffff16610bd9610922565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690611b7b565b60405180910390fd5b6001600560146101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cdb610f87565b73ffffffffffffffffffffffffffffffffffffffff16610cf9610922565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690611b7b565b60405180910390fd5b600560149054906101000a900460ff1615610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690611abb565b60405180910390fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050610de330827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610f8f565b8073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610e0a30610852565b600080610e15610922565b426040518863ffffffff1660e01b8152600401610e37969594939291906119fd565b6060604051808303818588803b158015610e5057600080fd5b505af1158015610e64573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e899190611765565b50505050565b610e97610f87565b73ffffffffffffffffffffffffffffffffffffffff16610eb5610922565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290611b7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290611adb565b60405180910390fd5b610f84816113db565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690611bbb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690611afb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161114d9190611bfb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190611b9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190611a9b565b60405180910390fd5b6112458383836114a1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290611b1b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461135e9190611c4d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113c29190611bfb565b60405180910390a36113d58484846115ca565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6114a9610922565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561151757506114e7610922565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156115705750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115c557600560149054906101000a900460ff166115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb90611b3b565b60405180910390fd5b5b505050565b505050565b6000813590506115de816120d1565b92915050565b6000815190506115f3816120e8565b92915050565b600081359050611608816120ff565b92915050565b60008151905061161d816120ff565b92915050565b60006020828403121561163557600080fd5b6000611643848285016115cf565b91505092915050565b6000806040838503121561165f57600080fd5b600061166d858286016115cf565b925050602061167e858286016115cf565b9150509250929050565b60008060006060848603121561169d57600080fd5b60006116ab868287016115cf565b93505060206116bc868287016115cf565b92505060406116cd868287016115f9565b9150509250925092565b600080604083850312156116ea57600080fd5b60006116f8858286016115cf565b9250506020611709858286016115f9565b9150509250929050565b60006020828403121561172557600080fd5b6000611733848285016115e4565b91505092915050565b60006020828403121561174e57600080fd5b600061175c8482850161160e565b91505092915050565b60008060006060848603121561177a57600080fd5b60006117888682870161160e565b93505060206117998682870161160e565b92505060406117aa8682870161160e565b9150509250925092565b6117bd81611ca3565b82525050565b6117cc81611cb5565b82525050565b6117db81611cf8565b82525050565b60006117ec82611c31565b6117f68185611c3c565b9350611806818560208601611d0a565b61180f81611dcd565b840191505092915050565b6000611827602383611c3c565b915061183282611dde565b604082019050919050565b600061184a601b83611c3c565b915061185582611e2d565b602082019050919050565b600061186d602683611c3c565b915061187882611e56565b604082019050919050565b6000611890602283611c3c565b915061189b82611ea5565b604082019050919050565b60006118b3602683611c3c565b91506118be82611ef4565b604082019050919050565b60006118d6601783611c3c565b91506118e182611f43565b602082019050919050565b60006118f9602883611c3c565b915061190482611f6c565b604082019050919050565b600061191c602083611c3c565b915061192782611fbb565b602082019050919050565b600061193f602583611c3c565b915061194a82611fe4565b604082019050919050565b6000611962602483611c3c565b915061196d82612033565b604082019050919050565b6000611985602583611c3c565b915061199082612082565b604082019050919050565b6119a481611ce1565b82525050565b6119b381611ceb565b82525050565b60006020820190506119ce60008301846117b4565b92915050565b60006040820190506119e960008301856117b4565b6119f6602083018461199b565b9392505050565b600060c082019050611a1260008301896117b4565b611a1f602083018861199b565b611a2c60408301876117d2565b611a3960608301866117d2565b611a4660808301856117b4565b611a5360a083018461199b565b979650505050505050565b6000602082019050611a7360008301846117c3565b92915050565b60006020820190508181036000830152611a9381846117e1565b905092915050565b60006020820190508181036000830152611ab48161181a565b9050919050565b60006020820190508181036000830152611ad48161183d565b9050919050565b60006020820190508181036000830152611af481611860565b9050919050565b60006020820190508181036000830152611b1481611883565b9050919050565b60006020820190508181036000830152611b34816118a6565b9050919050565b60006020820190508181036000830152611b54816118c9565b9050919050565b60006020820190508181036000830152611b74816118ec565b9050919050565b60006020820190508181036000830152611b948161190f565b9050919050565b60006020820190508181036000830152611bb481611932565b9050919050565b60006020820190508181036000830152611bd481611955565b9050919050565b60006020820190508181036000830152611bf481611978565b9050919050565b6000602082019050611c10600083018461199b565b92915050565b6000602082019050611c2b60008301846119aa565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c5882611ce1565b9150611c6383611ce1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c9857611c97611d6f565b5b828201905092915050565b6000611cae82611cc1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611d0382611ce1565b9050919050565b60005b83811015611d28578082015181840152602081019050611d0d565b83811115611d37576000848401525b50505050565b60006002820490506001821680611d5557607f821691505b60208210811415611d6957611d68611d9e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e672068617320616c726561647920737461727465640000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6120da81611ca3565b81146120e557600080fd5b50565b6120f181611cb5565b81146120fc57600080fd5b50565b61210881611ce1565b811461211357600080fd5b5056fea264697066735822122011bba51fa9eff4bf8b34ce750d6e13d83cda57a8c8d8af93ca6d958cbb6680c264736f6c63430008040033
Deployed Bytecode Sourcemap
25819:1537:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6180:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8347:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27127:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7300:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8998:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7142:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9899:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7471:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17710:94;;;;;;;;;;;;;:::i;:::-;;17059:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6399:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10617:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7811:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27006:113;;;;;;;;;;;;;:::i;:::-;;26486:80;;;;;;;;;;;;;:::i;:::-;;8049:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26575:419;;;;;;;;;;;;;:::i;:::-;;17959:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6180:100;6234:13;6267:5;6260:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6180:100;:::o;8347:169::-;8430:4;8447:39;8456:12;:10;:12::i;:::-;8470:7;8479:6;8447:8;:39::i;:::-;8504:4;8497:11;;8347:169;;;;:::o;27127:189::-;17290:12;:10;:12::i;:::-;17279:23;;:7;:5;:7::i;:::-;:23;;;17271:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27202:12:::1;27224;27202:35;;27248:5;:14;;;27263:12;:10;:12::i;:::-;27277:5;:15;;;27301:4;27277:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27248:60;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17350:1;27127:189:::0;:::o;7300:108::-;7361:7;7388:12;;7381:19;;7300:108;:::o;8998:492::-;9138:4;9155:36;9165:6;9173:9;9184:6;9155:9;:36::i;:::-;9204:24;9231:11;:19;9243:6;9231:19;;;;;;;;;;;;;;;:33;9251:12;:10;:12::i;:::-;9231:33;;;;;;;;;;;;;;;;9204:60;;9303:6;9283:16;:26;;9275:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9390:57;9399:6;9407:12;:10;:12::i;:::-;9440:6;9421:16;:25;9390:8;:57::i;:::-;9478:4;9471:11;;;8998:492;;;;;:::o;7142:93::-;7200:5;7225:2;7218:9;;7142:93;:::o;9899:215::-;9987:4;10004:80;10013:12;:10;:12::i;:::-;10027:7;10073:10;10036:11;:25;10048:12;:10;:12::i;:::-;10036:25;;;;;;;;;;;;;;;:34;10062:7;10036:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10004:8;:80::i;:::-;10102:4;10095:11;;9899:215;;;;:::o;7471:127::-;7545:7;7572:9;:18;7582:7;7572:18;;;;;;;;;;;;;;;;7565:25;;7471:127;;;:::o;17710:94::-;17290:12;:10;:12::i;:::-;17279:23;;:7;:5;:7::i;:::-;:23;;;17271:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17775:21:::1;17793:1;17775:9;:21::i;:::-;17710:94::o:0;17059:87::-;17105:7;17132:6;;;;;;;;;;;17125:13;;17059:87;:::o;6399:104::-;6455:13;6488:7;6481:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6399:104;:::o;10617:413::-;10710:4;10727:24;10754:11;:25;10766:12;:10;:12::i;:::-;10754:25;;;;;;;;;;;;;;;:34;10780:7;10754:34;;;;;;;;;;;;;;;;10727:61;;10827:15;10807:16;:35;;10799:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10920:67;10929:12;:10;:12::i;:::-;10943:7;10971:15;10952:16;:34;10920:8;:67::i;:::-;11018:4;11011:11;;;10617:413;;;;:::o;7811:175::-;7897:4;7914:42;7924:12;:10;:12::i;:::-;7938:9;7949:6;7914:9;:42::i;:::-;7974:4;7967:11;;7811:175;;;;:::o;27006:113::-;17290:12;:10;:12::i;:::-;17279:23;;:7;:5;:7::i;:::-;:23;;;17271:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27066:12:::1;:10;:12::i;:::-;27058:30;;:53;27089:21;27058:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;27006:113::o:0;26486:80::-;17290:12;:10;:12::i;:::-;17279:23;;:7;:5;:7::i;:::-;:23;;;17271:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26554:4:::1;26539:12;;:19;;;;;;;;;;;;;;;;;;26486:80::o:0;8049:151::-;8138:7;8165:11;:18;8177:5;8165:18;;;;;;;;;;;;;;;:27;8184:7;8165:27;;;;;;;;;;;;;;;;8158:34;;8049:151;;;;:::o;26575:419::-;17290:12;:10;:12::i;:::-;17279:23;;:7;:5;:7::i;:::-;:23;;;17271:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26638:12:::1;;;;;;;;;;;26637:13;26629:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;26693:25;26740:42;26693:90;;26794:59;26811:4;26826:6;26835:17;26794:8;:59::i;:::-;26864:6;:22;;;26895:21;26927:4;26933:24;26951:4;26933:9;:24::i;:::-;26958:1;26960::::0;26962:7:::1;:5;:7::i;:::-;26970:15;26864:122;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;17350:1;26575:419::o:0;17959:192::-;17290:12;:10;:12::i;:::-;17279:23;;:7;:5;:7::i;:::-;:23;;;17271:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18068:1:::1;18048:22;;:8;:22;;;;18040:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18124:19;18134:8;18124:9;:19::i;:::-;17959:192:::0;:::o;3993:98::-;4046:7;4073:10;4066:17;;3993:98;:::o;14301:380::-;14454:1;14437:19;;:5;:19;;;;14429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14535:1;14516:21;;:7;:21;;;;14508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14619:6;14589:11;:18;14601:5;14589:18;;;;;;;;;;;;;;;:27;14608:7;14589:27;;;;;;;;;;;;;;;:36;;;;14657:7;14641:32;;14650:5;14641:32;;;14666:6;14641:32;;;;;;:::i;:::-;;;;;;;;14301:380;;;:::o;11520:733::-;11678:1;11660:20;;:6;:20;;;;11652:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11762:1;11741:23;;:9;:23;;;;11733:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11817:47;11838:6;11846:9;11857:6;11817:20;:47::i;:::-;11877:21;11901:9;:17;11911:6;11901:17;;;;;;;;;;;;;;;;11877:41;;11954:6;11937:13;:23;;11929:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12075:6;12059:13;:22;12039:9;:17;12049:6;12039:17;;;;;;;;;;;;;;;:42;;;;12127:6;12103:9;:20;12113:9;12103:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12168:9;12151:35;;12160:6;12151:35;;;12179:6;12151:35;;;;;;:::i;:::-;;;;;;;;12199:46;12219:6;12227:9;12238:6;12199:19;:46::i;:::-;11520:733;;;;:::o;18159:173::-;18215:16;18234:6;;;;;;;;;;;18215:25;;18260:8;18251:6;;:17;;;;;;;;;;;;;;;;;;18315:8;18284:40;;18305:8;18284:40;;;;;;;;;;;;18159:173;;:::o;26250:228::-;26360:7;:5;:7::i;:::-;26352:15;;:4;:15;;;;:32;;;;;26377:7;:5;:7::i;:::-;26371:13;;:2;:13;;;;26352:32;:55;;;;;26396:11;;;;;;;;;;;26388:19;;:4;:19;;;26352:55;26349:121;;;26430:12;;;;;;;;;;;26422:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;26349:121;26250:228;;;:::o;16010:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:137::-;206:5;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;212:77;;;;:::o;295:139::-;341:5;379:6;366:20;357:29;;395:33;422:5;395:33;:::i;:::-;347:87;;;;:::o;440:143::-;497:5;528:6;522:13;513:22;;544:33;571:5;544:33;:::i;:::-;503:80;;;;:::o;589:262::-;648:6;697:2;685:9;676:7;672:23;668:32;665:2;;;713:1;710;703:12;665:2;756:1;781:53;826:7;817:6;806:9;802:22;781:53;:::i;:::-;771:63;;727:117;655:196;;;;:::o;857:407::-;925:6;933;982:2;970:9;961:7;957:23;953:32;950:2;;;998:1;995;988:12;950:2;1041:1;1066:53;1111:7;1102:6;1091:9;1087:22;1066:53;:::i;:::-;1056:63;;1012:117;1168:2;1194:53;1239:7;1230:6;1219:9;1215:22;1194:53;:::i;:::-;1184:63;;1139:118;940:324;;;;;:::o;1270:552::-;1347:6;1355;1363;1412:2;1400:9;1391:7;1387:23;1383:32;1380:2;;;1428:1;1425;1418:12;1380:2;1471:1;1496:53;1541:7;1532:6;1521:9;1517:22;1496:53;:::i;:::-;1486:63;;1442:117;1598:2;1624:53;1669:7;1660:6;1649:9;1645:22;1624:53;:::i;:::-;1614:63;;1569:118;1726:2;1752:53;1797:7;1788:6;1777:9;1773:22;1752:53;:::i;:::-;1742:63;;1697:118;1370:452;;;;;:::o;1828:407::-;1896:6;1904;1953:2;1941:9;1932:7;1928:23;1924:32;1921:2;;;1969:1;1966;1959:12;1921:2;2012:1;2037:53;2082:7;2073:6;2062:9;2058:22;2037:53;:::i;:::-;2027:63;;1983:117;2139:2;2165:53;2210:7;2201:6;2190:9;2186:22;2165:53;:::i;:::-;2155:63;;2110:118;1911:324;;;;;:::o;2241:278::-;2308:6;2357:2;2345:9;2336:7;2332:23;2328:32;2325:2;;;2373:1;2370;2363:12;2325:2;2416:1;2441:61;2494:7;2485:6;2474:9;2470:22;2441:61;:::i;:::-;2431:71;;2387:125;2315:204;;;;:::o;2525:284::-;2595:6;2644:2;2632:9;2623:7;2619:23;2615:32;2612:2;;;2660:1;2657;2650:12;2612:2;2703:1;2728:64;2784:7;2775:6;2764:9;2760:22;2728:64;:::i;:::-;2718:74;;2674:128;2602:207;;;;:::o;2815:596::-;2903:6;2911;2919;2968:2;2956:9;2947:7;2943:23;2939:32;2936:2;;;2984:1;2981;2974:12;2936:2;3027:1;3052:64;3108:7;3099:6;3088:9;3084:22;3052:64;:::i;:::-;3042:74;;2998:128;3165:2;3191:64;3247:7;3238:6;3227:9;3223:22;3191:64;:::i;:::-;3181:74;;3136:129;3304:2;3330:64;3386:7;3377:6;3366:9;3362:22;3330:64;:::i;:::-;3320:74;;3275:129;2926:485;;;;;:::o;3417:118::-;3504:24;3522:5;3504:24;:::i;:::-;3499:3;3492:37;3482:53;;:::o;3541:109::-;3622:21;3637:5;3622:21;:::i;:::-;3617:3;3610:34;3600:50;;:::o;3656:147::-;3751:45;3790:5;3751:45;:::i;:::-;3746:3;3739:58;3729:74;;:::o;3809:364::-;3897:3;3925:39;3958:5;3925:39;:::i;:::-;3980:71;4044:6;4039:3;3980:71;:::i;:::-;3973:78;;4060:52;4105:6;4100:3;4093:4;4086:5;4082:16;4060:52;:::i;:::-;4137:29;4159:6;4137:29;:::i;:::-;4132:3;4128:39;4121:46;;3901:272;;;;;:::o;4179:366::-;4321:3;4342:67;4406:2;4401:3;4342:67;:::i;:::-;4335:74;;4418:93;4507:3;4418:93;:::i;:::-;4536:2;4531:3;4527:12;4520:19;;4325:220;;;:::o;4551:366::-;4693:3;4714:67;4778:2;4773:3;4714:67;:::i;:::-;4707:74;;4790:93;4879:3;4790:93;:::i;:::-;4908:2;4903:3;4899:12;4892:19;;4697:220;;;:::o;4923:366::-;5065:3;5086:67;5150:2;5145:3;5086:67;:::i;:::-;5079:74;;5162:93;5251:3;5162:93;:::i;:::-;5280:2;5275:3;5271:12;5264:19;;5069:220;;;:::o;5295:366::-;5437:3;5458:67;5522:2;5517:3;5458:67;:::i;:::-;5451:74;;5534:93;5623:3;5534:93;:::i;:::-;5652:2;5647:3;5643:12;5636:19;;5441:220;;;:::o;5667:366::-;5809:3;5830:67;5894:2;5889:3;5830:67;:::i;:::-;5823:74;;5906:93;5995:3;5906:93;:::i;:::-;6024:2;6019:3;6015:12;6008:19;;5813:220;;;:::o;6039:366::-;6181:3;6202:67;6266:2;6261:3;6202:67;:::i;:::-;6195:74;;6278:93;6367:3;6278:93;:::i;:::-;6396:2;6391:3;6387:12;6380:19;;6185:220;;;:::o;6411:366::-;6553:3;6574:67;6638:2;6633:3;6574:67;:::i;:::-;6567:74;;6650:93;6739:3;6650:93;:::i;:::-;6768:2;6763:3;6759:12;6752:19;;6557:220;;;:::o;6783:366::-;6925:3;6946:67;7010:2;7005:3;6946:67;:::i;:::-;6939:74;;7022:93;7111:3;7022:93;:::i;:::-;7140:2;7135:3;7131:12;7124:19;;6929:220;;;:::o;7155:366::-;7297:3;7318:67;7382:2;7377:3;7318:67;:::i;:::-;7311:74;;7394:93;7483:3;7394:93;:::i;:::-;7512:2;7507:3;7503:12;7496:19;;7301:220;;;:::o;7527:366::-;7669:3;7690:67;7754:2;7749:3;7690:67;:::i;:::-;7683:74;;7766:93;7855:3;7766:93;:::i;:::-;7884:2;7879:3;7875:12;7868:19;;7673:220;;;:::o;7899:366::-;8041:3;8062:67;8126:2;8121:3;8062:67;:::i;:::-;8055:74;;8138:93;8227:3;8138:93;:::i;:::-;8256:2;8251:3;8247:12;8240:19;;8045:220;;;:::o;8271:118::-;8358:24;8376:5;8358:24;:::i;:::-;8353:3;8346:37;8336:53;;:::o;8395:112::-;8478:22;8494:5;8478:22;:::i;:::-;8473:3;8466:35;8456:51;;:::o;8513:222::-;8606:4;8644:2;8633:9;8629:18;8621:26;;8657:71;8725:1;8714:9;8710:17;8701:6;8657:71;:::i;:::-;8611:124;;;;:::o;8741:332::-;8862:4;8900:2;8889:9;8885:18;8877:26;;8913:71;8981:1;8970:9;8966:17;8957:6;8913:71;:::i;:::-;8994:72;9062:2;9051:9;9047:18;9038:6;8994:72;:::i;:::-;8867:206;;;;;:::o;9079:807::-;9328:4;9366:3;9355:9;9351:19;9343:27;;9380:71;9448:1;9437:9;9433:17;9424:6;9380:71;:::i;:::-;9461:72;9529:2;9518:9;9514:18;9505:6;9461:72;:::i;:::-;9543:80;9619:2;9608:9;9604:18;9595:6;9543:80;:::i;:::-;9633;9709:2;9698:9;9694:18;9685:6;9633:80;:::i;:::-;9723:73;9791:3;9780:9;9776:19;9767:6;9723:73;:::i;:::-;9806;9874:3;9863:9;9859:19;9850:6;9806:73;:::i;:::-;9333:553;;;;;;;;;:::o;9892:210::-;9979:4;10017:2;10006:9;10002:18;9994:26;;10030:65;10092:1;10081:9;10077:17;10068:6;10030:65;:::i;:::-;9984:118;;;;:::o;10108:313::-;10221:4;10259:2;10248:9;10244:18;10236:26;;10308:9;10302:4;10298:20;10294:1;10283:9;10279:17;10272:47;10336:78;10409:4;10400:6;10336:78;:::i;:::-;10328:86;;10226:195;;;;:::o;10427:419::-;10593:4;10631:2;10620:9;10616:18;10608:26;;10680:9;10674:4;10670:20;10666:1;10655:9;10651:17;10644:47;10708:131;10834:4;10708:131;:::i;:::-;10700:139;;10598:248;;;:::o;10852:419::-;11018:4;11056:2;11045:9;11041:18;11033:26;;11105:9;11099:4;11095:20;11091:1;11080:9;11076:17;11069:47;11133:131;11259:4;11133:131;:::i;:::-;11125:139;;11023:248;;;:::o;11277:419::-;11443:4;11481:2;11470:9;11466:18;11458:26;;11530:9;11524:4;11520:20;11516:1;11505:9;11501:17;11494:47;11558:131;11684:4;11558:131;:::i;:::-;11550:139;;11448:248;;;:::o;11702:419::-;11868:4;11906:2;11895:9;11891:18;11883:26;;11955:9;11949:4;11945:20;11941:1;11930:9;11926:17;11919:47;11983:131;12109:4;11983:131;:::i;:::-;11975:139;;11873:248;;;:::o;12127:419::-;12293:4;12331:2;12320:9;12316:18;12308:26;;12380:9;12374:4;12370:20;12366:1;12355:9;12351:17;12344:47;12408:131;12534:4;12408:131;:::i;:::-;12400:139;;12298:248;;;:::o;12552:419::-;12718:4;12756:2;12745:9;12741:18;12733:26;;12805:9;12799:4;12795:20;12791:1;12780:9;12776:17;12769:47;12833:131;12959:4;12833:131;:::i;:::-;12825:139;;12723:248;;;:::o;12977:419::-;13143:4;13181:2;13170:9;13166:18;13158:26;;13230:9;13224:4;13220:20;13216:1;13205:9;13201:17;13194:47;13258:131;13384:4;13258:131;:::i;:::-;13250:139;;13148:248;;;:::o;13402:419::-;13568:4;13606:2;13595:9;13591:18;13583:26;;13655:9;13649:4;13645:20;13641:1;13630:9;13626:17;13619:47;13683:131;13809:4;13683:131;:::i;:::-;13675:139;;13573:248;;;:::o;13827:419::-;13993:4;14031:2;14020:9;14016:18;14008:26;;14080:9;14074:4;14070:20;14066:1;14055:9;14051:17;14044:47;14108:131;14234:4;14108:131;:::i;:::-;14100:139;;13998:248;;;:::o;14252:419::-;14418:4;14456:2;14445:9;14441:18;14433:26;;14505:9;14499:4;14495:20;14491:1;14480:9;14476:17;14469:47;14533:131;14659:4;14533:131;:::i;:::-;14525:139;;14423:248;;;:::o;14677:419::-;14843:4;14881:2;14870:9;14866:18;14858:26;;14930:9;14924:4;14920:20;14916:1;14905:9;14901:17;14894:47;14958:131;15084:4;14958:131;:::i;:::-;14950:139;;14848:248;;;:::o;15102:222::-;15195:4;15233:2;15222:9;15218:18;15210:26;;15246:71;15314:1;15303:9;15299:17;15290:6;15246:71;:::i;:::-;15200:124;;;;:::o;15330:214::-;15419:4;15457:2;15446:9;15442:18;15434:26;;15470:67;15534:1;15523:9;15519:17;15510:6;15470:67;:::i;:::-;15424:120;;;;:::o;15550:99::-;15602:6;15636:5;15630:12;15620:22;;15609:40;;;:::o;15655:169::-;15739:11;15773:6;15768:3;15761:19;15813:4;15808:3;15804:14;15789:29;;15751:73;;;;:::o;15830:305::-;15870:3;15889:20;15907:1;15889:20;:::i;:::-;15884:25;;15923:20;15941:1;15923:20;:::i;:::-;15918:25;;16077:1;16009:66;16005:74;16002:1;15999:81;15996:2;;;16083:18;;:::i;:::-;15996:2;16127:1;16124;16120:9;16113:16;;15874:261;;;;:::o;16141:96::-;16178:7;16207:24;16225:5;16207:24;:::i;:::-;16196:35;;16186:51;;;:::o;16243:90::-;16277:7;16320:5;16313:13;16306:21;16295:32;;16285:48;;;:::o;16339:126::-;16376:7;16416:42;16409:5;16405:54;16394:65;;16384:81;;;:::o;16471:77::-;16508:7;16537:5;16526:16;;16516:32;;;:::o;16554:86::-;16589:7;16629:4;16622:5;16618:16;16607:27;;16597:43;;;:::o;16646:121::-;16704:9;16737:24;16755:5;16737:24;:::i;:::-;16724:37;;16714:53;;;:::o;16773:307::-;16841:1;16851:113;16865:6;16862:1;16859:13;16851:113;;;16950:1;16945:3;16941:11;16935:18;16931:1;16926:3;16922:11;16915:39;16887:2;16884:1;16880:10;16875:15;;16851:113;;;16982:6;16979:1;16976:13;16973:2;;;17062:1;17053:6;17048:3;17044:16;17037:27;16973:2;16822:258;;;;:::o;17086:320::-;17130:6;17167:1;17161:4;17157:12;17147:22;;17214:1;17208:4;17204:12;17235:18;17225:2;;17291:4;17283:6;17279:17;17269:27;;17225:2;17353;17345:6;17342:14;17322:18;17319:38;17316:2;;;17372:18;;:::i;:::-;17316:2;17137:269;;;;:::o;17412:180::-;17460:77;17457:1;17450:88;17557:4;17554:1;17547:15;17581:4;17578:1;17571:15;17598:180;17646:77;17643:1;17636:88;17743:4;17740:1;17733:15;17767:4;17764:1;17757:15;17784:102;17825:6;17876:2;17872:7;17867:2;17860:5;17856:14;17852:28;17842:38;;17832:54;;;:::o;17892:222::-;18032:34;18028:1;18020:6;18016:14;18009:58;18101:5;18096:2;18088:6;18084:15;18077:30;17998:116;:::o;18120:177::-;18260:29;18256:1;18248:6;18244:14;18237:53;18226:71;:::o;18303:225::-;18443:34;18439:1;18431:6;18427:14;18420:58;18512:8;18507:2;18499:6;18495:15;18488:33;18409:119;:::o;18534:221::-;18674:34;18670:1;18662:6;18658:14;18651:58;18743:4;18738:2;18730:6;18726:15;18719:29;18640:115;:::o;18761:225::-;18901:34;18897:1;18889:6;18885:14;18878:58;18970:8;18965:2;18957:6;18953:15;18946:33;18867:119;:::o;18992:173::-;19132:25;19128:1;19120:6;19116:14;19109:49;19098:67;:::o;19171:227::-;19311:34;19307:1;19299:6;19295:14;19288:58;19380:10;19375:2;19367:6;19363:15;19356:35;19277:121;:::o;19404:182::-;19544:34;19540:1;19532:6;19528:14;19521:58;19510:76;:::o;19592:224::-;19732:34;19728:1;19720:6;19716:14;19709:58;19801:7;19796:2;19788:6;19784:15;19777:32;19698:118;:::o;19822:223::-;19962:34;19958:1;19950:6;19946:14;19939:58;20031:6;20026:2;20018:6;20014:15;20007:31;19928:117;:::o;20051:224::-;20191:34;20187:1;20179:6;20175:14;20168:58;20260:7;20255:2;20247:6;20243:15;20236:32;20157:118;:::o;20281:122::-;20354:24;20372:5;20354:24;:::i;:::-;20347:5;20344:35;20334:2;;20393:1;20390;20383:12;20334:2;20324:79;:::o;20409:116::-;20479:21;20494:5;20479:21;:::i;:::-;20472:5;20469:32;20459:2;;20515:1;20512;20505:12;20459:2;20449:76;:::o;20531:122::-;20604:24;20622:5;20604:24;:::i;:::-;20597:5;20594:35;20584:2;;20643:1;20640;20633:12;20584:2;20574:79;:::o
Swarm Source
ipfs://11bba51fa9eff4bf8b34ce750d6e13d83cda57a8c8d8af93ca6d958cbb6680c2
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.