ETH Price: $3,441.79 (-1.04%)
Gas: 4 Gwei

Token

AkimoInuToken (AKIMO)
 

Overview

Max Total Supply

50,000,000,000,000 AKIMO

Holders

15

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
172,393,348.788885069397556545 AKIMO

Value
$0.00
0x3E21f6c2494B13630F7853595f26Dc9D07820a30
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:
AkimoInu

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-18
*/

// File: @openzeppelin/contracts/utils/Context.sol

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

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

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

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

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

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

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

        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);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/AkimoInu.sol


pragma solidity ^0.8.0;




contract AkimoInu is ERC20, ERC20Burnable, Ownable {
    uint256 private constant INITIAL_SUPPLY = 50000000000000 * 10**18;

    constructor() ERC20("AkimoInuToken", "AKIMO") {
        _mint(msg.sender, INITIAL_SUPPLY);
    }

    function distributeTokens(address distributionWallet) external onlyOwner {
        uint256 supply = balanceOf(msg.sender);
        require(supply == INITIAL_SUPPLY, "Tokens already distributed");

        _transfer(msg.sender, distributionWallet, supply);
    }
}

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":"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"distributionWallet","type":"address"}],"name":"distributeTokens","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":[],"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"}]

60806040523480156200001157600080fd5b50604080518082018252600d81526c20b5b4b6b7a4b73aaa37b5b2b760991b602080830191825283518085019094526005845264414b494d4f60d81b9084015281519192916200006491600391620001d4565b5080516200007a906004906020840190620001d4565b5050506200009762000091620000b760201b60201c565b620000bb565b620000b1336d027716b6a0adc2d677c0800000006200010d565b6200031c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200013f5760405162461bcd60e51b815260040162000136906200027a565b60405180910390fd5b6200014d60008383620001cf565b8060026000828254620001619190620002ba565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001b5908590620002b1565b60405180910390a3620001cb60008383620001cf565b5050565b505050565b828054620001e290620002df565b90600052602060002090601f01602090048101928262000206576000855562000251565b82601f106200022157805160ff191683800117855562000251565b8280016001018555821562000251579182015b828111156200025157825182559160200191906001019062000234565b506200025f92915062000263565b5090565b5b808211156200025f576000815560010162000264565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002da57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620002f457607f821691505b602082108114156200031657634e487b7160e01b600052602260045260246000fd5b50919050565b610d88806200032c6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146101fe578063a9059cbb14610211578063b1d17c9814610224578063dd62ed3e14610237578063f2fde38b1461024a5761010b565b8063715018a6146101c657806379cc6790146101ce5780638da5cb5b146101e157806395d89b41146101f65761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861025d565b6040516101259190610984565b60405180910390f35b61014161013c366004610924565b6102ef565b6040516101259190610979565b610156610311565b6040516101259190610cdc565b6101416101713660046108e9565b610317565b61017e610345565b6040516101259190610ce5565b610141610199366004610924565b61034a565b6101b16101ac36600461094d565b610376565b005b6101566101c1366004610896565b61038a565b6101b16103a9565b6101b16101dc366004610924565b6103bd565b6101e96103dd565b6040516101259190610965565b6101186103ec565b61014161020c366004610924565b6103fb565b61014161021f366004610924565b61044c565b6101b1610232366004610896565b610464565b6101566102453660046108b7565b6104b1565b6101b1610258366004610896565b6104dc565b60606003805461026c90610d17565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610d17565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b6000806102fa610513565b9050610307818585610517565b5060019392505050565b60025490565b600080610322610513565b905061032f8582856105cb565b61033a858585610615565b506001949350505050565b601290565b600080610355610513565b905061030781858561036785896104b1565b6103719190610cf3565b610517565b610387610381610513565b82610716565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b6103b16107ee565b6103bb600061082d565b565b6103cf826103c9610513565b836105cb565b6103d98282610716565b5050565b6005546001600160a01b031690565b60606004805461026c90610d17565b600080610406610513565b9050600061041482866104b1565b90508381101561043f5760405162461bcd60e51b815260040161043690610c97565b60405180910390fd5b61033a8286868403610517565b600080610457610513565b9050610307818585610615565b61046c6107ee565b60006104773361038a565b90506d027716b6a0adc2d677c08000000081146104a65760405162461bcd60e51b815260040161043690610b1b565b6103d9338383610615565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104e46107ee565b6001600160a01b03811661050a5760405162461bcd60e51b815260040161043690610a5c565b6103878161082d565b3390565b6001600160a01b03831661053d5760405162461bcd60e51b815260040161043690610c53565b6001600160a01b0382166105635760405162461bcd60e51b815260040161043690610aa2565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105be908590610cdc565b60405180910390a3505050565b60006105d784846104b1565b9050600019811461060f57818110156106025760405162461bcd60e51b815260040161043690610ae4565b61060f8484848403610517565b50505050565b6001600160a01b03831661063b5760405162461bcd60e51b815260040161043690610c0e565b6001600160a01b0382166106615760405162461bcd60e51b8152600401610436906109d7565b61066c8383836107e9565b6001600160a01b038316600090815260208190526040902054818110156106a55760405162461bcd60e51b815260040161043690610b52565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610703908690610cdc565b60405180910390a361060f8484846107e9565b6001600160a01b03821661073c5760405162461bcd60e51b815260040161043690610bcd565b610748826000836107e9565b6001600160a01b038216600090815260208190526040902054818110156107815760405162461bcd60e51b815260040161043690610a1a565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107d9908690610cdc565b60405180910390a36107e9836000845b505050565b6107f6610513565b6001600160a01b03166108076103dd565b6001600160a01b0316146103bb5760405162461bcd60e51b815260040161043690610b98565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b03811681146103a457600080fd5b6000602082840312156108a7578081fd5b6108b08261087f565b9392505050565b600080604083850312156108c9578081fd5b6108d28361087f565b91506108e06020840161087f565b90509250929050565b6000806000606084860312156108fd578081fd5b6109068461087f565b92506109146020850161087f565b9150604084013590509250925092565b60008060408385031215610936578182fd5b61093f8361087f565b946020939093013593505050565b60006020828403121561095e578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109b057858101830151858201604001528201610994565b818111156109c15783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601a908201527f546f6b656e7320616c7265616479206469737472696275746564000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d1257634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610d2b57607f821691505b60208210811415610d4c57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220490399597da615b3a8ae53c4da6e33de5c45a718aec334a944c338d2a126ec9f64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146101fe578063a9059cbb14610211578063b1d17c9814610224578063dd62ed3e14610237578063f2fde38b1461024a5761010b565b8063715018a6146101c657806379cc6790146101ce5780638da5cb5b146101e157806395d89b41146101f65761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861025d565b6040516101259190610984565b60405180910390f35b61014161013c366004610924565b6102ef565b6040516101259190610979565b610156610311565b6040516101259190610cdc565b6101416101713660046108e9565b610317565b61017e610345565b6040516101259190610ce5565b610141610199366004610924565b61034a565b6101b16101ac36600461094d565b610376565b005b6101566101c1366004610896565b61038a565b6101b16103a9565b6101b16101dc366004610924565b6103bd565b6101e96103dd565b6040516101259190610965565b6101186103ec565b61014161020c366004610924565b6103fb565b61014161021f366004610924565b61044c565b6101b1610232366004610896565b610464565b6101566102453660046108b7565b6104b1565b6101b1610258366004610896565b6104dc565b60606003805461026c90610d17565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610d17565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b6000806102fa610513565b9050610307818585610517565b5060019392505050565b60025490565b600080610322610513565b905061032f8582856105cb565b61033a858585610615565b506001949350505050565b601290565b600080610355610513565b905061030781858561036785896104b1565b6103719190610cf3565b610517565b610387610381610513565b82610716565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b6103b16107ee565b6103bb600061082d565b565b6103cf826103c9610513565b836105cb565b6103d98282610716565b5050565b6005546001600160a01b031690565b60606004805461026c90610d17565b600080610406610513565b9050600061041482866104b1565b90508381101561043f5760405162461bcd60e51b815260040161043690610c97565b60405180910390fd5b61033a8286868403610517565b600080610457610513565b9050610307818585610615565b61046c6107ee565b60006104773361038a565b90506d027716b6a0adc2d677c08000000081146104a65760405162461bcd60e51b815260040161043690610b1b565b6103d9338383610615565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104e46107ee565b6001600160a01b03811661050a5760405162461bcd60e51b815260040161043690610a5c565b6103878161082d565b3390565b6001600160a01b03831661053d5760405162461bcd60e51b815260040161043690610c53565b6001600160a01b0382166105635760405162461bcd60e51b815260040161043690610aa2565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105be908590610cdc565b60405180910390a3505050565b60006105d784846104b1565b9050600019811461060f57818110156106025760405162461bcd60e51b815260040161043690610ae4565b61060f8484848403610517565b50505050565b6001600160a01b03831661063b5760405162461bcd60e51b815260040161043690610c0e565b6001600160a01b0382166106615760405162461bcd60e51b8152600401610436906109d7565b61066c8383836107e9565b6001600160a01b038316600090815260208190526040902054818110156106a55760405162461bcd60e51b815260040161043690610b52565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610703908690610cdc565b60405180910390a361060f8484846107e9565b6001600160a01b03821661073c5760405162461bcd60e51b815260040161043690610bcd565b610748826000836107e9565b6001600160a01b038216600090815260208190526040902054818110156107815760405162461bcd60e51b815260040161043690610a1a565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107d9908690610cdc565b60405180910390a36107e9836000845b505050565b6107f6610513565b6001600160a01b03166108076103dd565b6001600160a01b0316146103bb5760405162461bcd60e51b815260040161043690610b98565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b03811681146103a457600080fd5b6000602082840312156108a7578081fd5b6108b08261087f565b9392505050565b600080604083850312156108c9578081fd5b6108d28361087f565b91506108e06020840161087f565b90509250929050565b6000806000606084860312156108fd578081fd5b6109068461087f565b92506109146020850161087f565b9150604084013590509250925092565b60008060408385031215610936578182fd5b61093f8361087f565b946020939093013593505050565b60006020828403121561095e578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109b057858101830151858201604001528201610994565b818111156109c15783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601a908201527f546f6b656e7320616c7265616479206469737472696275746564000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d1257634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610d2b57607f821691505b60208210811415610d4c57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220490399597da615b3a8ae53c4da6e33de5c45a718aec334a944c338d2a126ec9f64736f6c63430008000033

Deployed Bytecode Sourcemap

21771:507:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9349:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11700:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10469:108::-;;;:::i;:::-;;;;;;;:::i;12481:295::-;;;;;;:::i;:::-;;:::i;10311:93::-;;;:::i;:::-;;;;;;;:::i;13185:238::-;;;;;;:::i;:::-;;:::i;21120:91::-;;;;;;:::i;:::-;;:::i;:::-;;10640:127;;;;;;:::i;:::-;;:::i;2774:103::-;;;:::i;21530:164::-;;;;;;:::i;:::-;;:::i;2126:87::-;;;:::i;:::-;;;;;;;:::i;9568:104::-;;;:::i;13926:436::-;;;;;;:::i;:::-;;:::i;10973:193::-;;;;;;:::i;:::-;;:::i;22009:266::-;;;;;;:::i;:::-;;:::i;11229:151::-;;;;;;:::i;:::-;;:::i;3032:201::-;;;;;;:::i;:::-;;:::i;9349:100::-;9403:13;9436:5;9429:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9349:100;:::o;11700:201::-;11783:4;11800:13;11816:12;:10;:12::i;:::-;11800:28;;11839:32;11848:5;11855:7;11864:6;11839:8;:32::i;:::-;-1:-1:-1;11889:4:0;;11700:201;-1:-1:-1;;;11700:201:0:o;10469:108::-;10557:12;;10469:108;:::o;12481:295::-;12612:4;12629:15;12647:12;:10;:12::i;:::-;12629:30;;12670:38;12686:4;12692:7;12701:6;12670:15;:38::i;:::-;12719:27;12729:4;12735:2;12739:6;12719:9;:27::i;:::-;-1:-1:-1;12764:4:0;;12481:295;-1:-1:-1;;;;12481:295:0:o;10311:93::-;10394:2;10311:93;:::o;13185:238::-;13273:4;13290:13;13306:12;:10;:12::i;:::-;13290:28;;13329:64;13338:5;13345:7;13382:10;13354:25;13364:5;13371:7;13354:9;:25::i;:::-;:38;;;;:::i;:::-;13329:8;:64::i;21120:91::-;21176:27;21182:12;:10;:12::i;:::-;21196:6;21176:5;:27::i;:::-;21120:91;:::o;10640:127::-;-1:-1:-1;;;;;10741:18:0;;10714:7;10741:18;;;;;;;;;;;10640:127;;;;:::o;2774:103::-;2012:13;:11;:13::i;:::-;2839:30:::1;2866:1;2839:18;:30::i;:::-;2774:103::o:0;21530:164::-;21607:46;21623:7;21632:12;:10;:12::i;:::-;21646:6;21607:15;:46::i;:::-;21664:22;21670:7;21679:6;21664:5;:22::i;:::-;21530:164;;:::o;2126:87::-;2199:6;;-1:-1:-1;;;;;2199:6:0;2126:87;:::o;9568:104::-;9624:13;9657:7;9650:14;;;;;:::i;13926:436::-;14019:4;14036:13;14052:12;:10;:12::i;:::-;14036:28;;14075:24;14102:25;14112:5;14119:7;14102:9;:25::i;:::-;14075:52;;14166:15;14146:16;:35;;14138:85;;;;-1:-1:-1;;;14138:85:0;;;;;;;:::i;:::-;;;;;;;;;14259:60;14268:5;14275:7;14303:15;14284:16;:34;14259:8;:60::i;10973:193::-;11052:4;11069:13;11085:12;:10;:12::i;:::-;11069:28;;11108;11118:5;11125:2;11129:6;11108:9;:28::i;22009:266::-;2012:13;:11;:13::i;:::-;22093:14:::1;22110:21;22120:10;22110:9;:21::i;:::-;22093:38;;21871:23;22150:6;:24;22142:63;;;;-1:-1:-1::0;;;22142:63:0::1;;;;;;;:::i;:::-;22218:49;22228:10;22240:18;22260:6;22218:9;:49::i;11229:151::-:0;-1:-1:-1;;;;;11345:18:0;;;11318:7;11345:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11229:151::o;3032:201::-;2012:13;:11;:13::i;:::-;-1:-1:-1;;;;;3121:22:0;::::1;3113:73;;;;-1:-1:-1::0;;;3113:73:0::1;;;;;;;:::i;:::-;3197:28;3216:8;3197:18;:28::i;677:98::-:0;757:10;677:98;:::o;17953:380::-;-1:-1:-1;;;;;18089:19:0;;18081:68;;;;-1:-1:-1;;;18081:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18168:21:0;;18160:68;;;;-1:-1:-1;;;18160:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18241:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;18293:32;;;;;18271:6;;18293:32;:::i;:::-;;;;;;;;17953:380;;;:::o;18624:453::-;18759:24;18786:25;18796:5;18803:7;18786:9;:25::i;:::-;18759:52;;-1:-1:-1;;18826:16:0;:37;18822:248;;18908:6;18888:16;:26;;18880:68;;;;-1:-1:-1;;;18880:68:0;;;;;;;:::i;:::-;18992:51;19001:5;19008:7;19036:6;19017:16;:25;18992:8;:51::i;:::-;18624:453;;;;:::o;14832:840::-;-1:-1:-1;;;;;14963:18:0;;14955:68;;;;-1:-1:-1;;;14955:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15042:16:0;;15034:64;;;;-1:-1:-1;;;15034:64:0;;;;;;;:::i;:::-;15111:38;15132:4;15138:2;15142:6;15111:20;:38::i;:::-;-1:-1:-1;;;;;15184:15:0;;15162:19;15184:15;;;;;;;;;;;15218:21;;;;15210:72;;;;-1:-1:-1;;;15210:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15318:15:0;;;:9;:15;;;;;;;;;;;15336:20;;;15318:38;;15536:13;;;;;;;;;;:23;;;;;;15588:26;;;;;;15350:6;;15588:26;:::i;:::-;;;;;;;;15627:37;15647:4;15653:2;15657:6;15627:19;:37::i;16840:675::-;-1:-1:-1;;;;;16924:21:0;;16916:67;;;;-1:-1:-1;;;16916:67:0;;;;;;;:::i;:::-;16996:49;17017:7;17034:1;17038:6;16996:20;:49::i;:::-;-1:-1:-1;;;;;17083:18:0;;17058:22;17083:18;;;;;;;;;;;17120:24;;;;17112:71;;;;-1:-1:-1;;;17112:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17219:18:0;;:9;:18;;;;;;;;;;;17240:23;;;17219:44;;17358:12;:22;;;;;;;17409:37;17219:9;;:18;17409:37;;;;17257:6;;17409:37;:::i;:::-;;;;;;;;17459:48;17479:7;17496:1;17500:6;17459:48;16840:675;;;:::o;2291:132::-;2366:12;:10;:12::i;:::-;-1:-1:-1;;;;;2355:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2355:23:0;;2347:68;;;;-1:-1:-1;;;2347:68:0;;;;;;;:::i;3393:191::-;3486:6;;;-1:-1:-1;;;;;3503:17:0;;;-1:-1:-1;;;;;;3503:17:0;;;;;;;3536:40;;3486:6;;;3503:17;3486:6;;3536:40;;3467:16;;3536:40;3393:191;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:1;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:398::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;-1:-1:-1;;;3247:2:1;3232:18;;3225:32;3289:3;3274:19;;3075:224::o;3304:402::-;3506:2;3488:21;;;3545:2;3525:18;;;3518:30;3584:34;3579:2;3564:18;;3557:62;-1:-1:-1;;;3650:2:1;3635:18;;3628:36;3696:3;3681:19;;3478:228::o;3711:398::-;3913:2;3895:21;;;3952:2;3932:18;;;3925:30;3991:34;3986:2;3971:18;;3964:62;-1:-1:-1;;;4057:2:1;4042:18;;4035:32;4099:3;4084:19;;3885:224::o;4114:353::-;4316:2;4298:21;;;4355:2;4335:18;;;4328:30;4394:31;4389:2;4374:18;;4367:59;4458:2;4443:18;;4288:179::o;4472:350::-;4674:2;4656:21;;;4713:2;4693:18;;;4686:30;4752:28;4747:2;4732:18;;4725:56;4813:2;4798:18;;4646:176::o;4827:402::-;5029:2;5011:21;;;5068:2;5048:18;;;5041:30;5107:34;5102:2;5087:18;;5080:62;-1:-1:-1;;;5173:2:1;5158:18;;5151:36;5219:3;5204:19;;5001:228::o;5234:356::-;5436:2;5418:21;;;5455:18;;;5448:30;5514:34;5509:2;5494:18;;5487:62;5581:2;5566:18;;5408:182::o;5595:397::-;5797:2;5779:21;;;5836:2;5816:18;;;5809:30;5875:34;5870:2;5855:18;;5848:62;-1:-1:-1;;;5941:2:1;5926:18;;5919:31;5982:3;5967:19;;5769:223::o;5997:401::-;6199:2;6181:21;;;6238:2;6218:18;;;6211:30;6277:34;6272:2;6257:18;;6250:62;-1:-1:-1;;;6343:2:1;6328:18;;6321:35;6388:3;6373:19;;6171:227::o;6403:400::-;6605:2;6587:21;;;6644:2;6624:18;;;6617:30;6683:34;6678:2;6663:18;;6656:62;-1:-1:-1;;;6749:2:1;6734:18;;6727:34;6793:3;6778:19;;6577:226::o;6808:401::-;7010:2;6992:21;;;7049:2;7029:18;;;7022:30;7088:34;7083:2;7068:18;;7061:62;-1:-1:-1;;;7154:2:1;7139:18;;7132:35;7199:3;7184:19;;6982:227::o;7214:177::-;7360:25;;;7348:2;7333:18;;7315:76::o;7396:184::-;7568:4;7556:17;;;;7538:36;;7526:2;7511:18;;7493:87::o;7585:229::-;;7656:1;7652:6;7649:1;7646:13;7643:2;;;-1:-1:-1;;;7682:33:1;;7738:4;7735:1;7728:15;7768:4;7689:3;7756:17;7643:2;-1:-1:-1;7799:9:1;;7633:181::o;7819:380::-;7904:1;7894:12;;7951:1;7941:12;;;7962:2;;8016:4;8008:6;8004:17;7994:27;;7962:2;8069;8061:6;8058:14;8038:18;8035:38;8032:2;;;8115:10;8110:3;8106:20;8103:1;8096:31;8150:4;8147:1;8140:15;8178:4;8175:1;8168:15;8032:2;;7874:325;;;:::o

Swarm Source

ipfs://490399597da615b3a8ae53c4da6e33de5c45a718aec334a944c338d2a126ec9f
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.