ETH Price: $3,413.53 (+0.94%)
Gas: 4 Gwei

Token

Addicted (AA)
 

Overview

Max Total Supply

420 AA

Holders

225

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.186215162698521633 AA

Value
$0.00
0x4efe699d75787a84ea3e69987763505034b583da
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:
addicted

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-02
*/

/**

Addicted ERC - $AA

https://t.me/AddictedERC

 */

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.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.zeppelin.solutions/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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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




pragma solidity ^0.8.0;


contract addicted is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;

    constructor(uint256 _totalSupply) ERC20("Addicted", "AA") {
        _mint(msg.sender, _totalSupply);
    }


    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

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

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"value","type":"uint256"}],"name":"burn","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002984380380620029848339818101604052810190620000379190620006ca565b6040518060400160405280600881526020017f41646469637465640000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4141000000000000000000000000000000000000000000000000000000000000815250620000c3620000b76200011060201b60201c565b6200011860201b60201c565b8160049080519060200190620000db92919062000603565b508060059080519060200190620000f492919062000603565b505050620001093382620001dc60201b60201c565b5062000976565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200024f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002469062000811565b60405180910390fd5b62000263600083836200035660201b60201c565b806003600082825462000277919062000861565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002cf919062000861565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000336919062000833565b60405180910390a362000352600083836200058c60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156200047a57620003be6200059160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004325750620004036200059160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000474576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046b90620007ef565b60405180910390fd5b62000587565b600660009054906101000a900460ff168015620004e45750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200058657600754816200050484620005ba60201b620007781760201c565b62000510919062000861565b11158015620005435750600854816200053484620005ba60201b620007781760201c565b62000540919062000861565b10155b62000585576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200057c90620007cd565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b8280546200061190620008c8565b90600052602060002090601f01602090048101928262000635576000855562000681565b82601f106200065057805160ff191683800117855562000681565b8280016001018555821562000681579182015b828111156200068057825182559160200191906001019062000663565b5b50905062000690919062000694565b5090565b5b80821115620006af57600081600090555060010162000695565b5090565b600081519050620006c4816200095c565b92915050565b600060208284031215620006dd57600080fd5b6000620006ed84828501620006b3565b91505092915050565b60006200070560068362000850565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006200074760168362000850565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b600062000789601f8362000850565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620007c781620008be565b82525050565b60006020820190508181036000830152620007e881620006f6565b9050919050565b600060208201905081810360008301526200080a8162000738565b9050919050565b600060208201905081810360008301526200082c816200077a565b9050919050565b60006020820190506200084a6000830184620007bc565b92915050565b600082825260208201905092915050565b60006200086e82620008be565b91506200087b83620008be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008b357620008b2620008fe565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620008e157607f821691505b60208210811415620008f857620008f76200092d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200096781620008be565b81146200097357600080fd5b50565b611ffe80620009866000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610323578063a457c2d714610341578063a9059cbb14610371578063dd62ed3e146103a1578063f2fde38b146103d15761012c565b806370a082311461028f578063715018a6146102bf578063860a32ec146102c957806389f9a1d3146102e75780638da5cb5b146103055761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633aa633aa1461023957806342966c681461025557806349bd5a5e146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f5780631ab99e121461019d57806323b872dd146101bb575b600080fd5b6101396103ed565b6040516101469190611bbc565b60405180910390f35b6101696004803603810190610164919061158d565b61047f565b6040516101769190611ba1565b60405180910390f35b61018761049d565b6040516101949190611d7e565b60405180910390f35b6101a56104a7565b6040516101b29190611d7e565b60405180910390f35b6101d560048036038101906101d0919061153e565b6104ad565b6040516101e29190611ba1565b60405180910390f35b6101f36105a5565b6040516102009190611d99565b60405180910390f35b610223600480360381019061021e919061158d565b6105ae565b6040516102309190611ba1565b60405180910390f35b610253600480360381019061024e91906115c9565b61065a565b005b61026f600480360381019061026a919061162c565b610745565b005b610279610752565b6040516102869190611b86565b60405180910390f35b6102a960048036038101906102a491906114d9565b610778565b6040516102b69190611d7e565b60405180910390f35b6102c76107c1565b005b6102d1610849565b6040516102de9190611ba1565b60405180910390f35b6102ef61085c565b6040516102fc9190611d7e565b60405180910390f35b61030d610862565b60405161031a9190611b86565b60405180910390f35b61032b61088b565b6040516103389190611bbc565b60405180910390f35b61035b6004803603810190610356919061158d565b61091d565b6040516103689190611ba1565b60405180910390f35b61038b6004803603810190610386919061158d565b610a08565b6040516103989190611ba1565b60405180910390f35b6103bb60048036038101906103b69190611502565b610a26565b6040516103c89190611d7e565b60405180910390f35b6103eb60048036038101906103e691906114d9565b610aad565b005b6060600480546103fc90611ee2565b80601f016020809104026020016040519081016040528092919081815260200182805461042890611ee2565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b600061049361048c610ba5565b8484610bad565b6001905092915050565b6000600354905090565b60085481565b60006104ba848484610d78565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610505610ba5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057c90611c9e565b60405180910390fd5b61059985610591610ba5565b858403610bad565b60019150509392505050565b60006012905090565b60006106506105bb610ba5565b8484600260006105c9610ba5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064b9190611dd0565b610bad565b6001905092915050565b610662610ba5565b73ffffffffffffffffffffffffffffffffffffffff16610680610862565b73ffffffffffffffffffffffffffffffffffffffff16146106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd90611cbe565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61074f3382610ffc565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107c9610ba5565b73ffffffffffffffffffffffffffffffffffffffff166107e7610862565b73ffffffffffffffffffffffffffffffffffffffff161461083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490611cbe565b60405180910390fd5b61084760006111d5565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461089a90611ee2565b80601f01602080910402602001604051908101604052809291908181526020018280546108c690611ee2565b80156109135780601f106108e857610100808354040283529160200191610913565b820191906000526020600020905b8154815290600101906020018083116108f657829003601f168201915b5050505050905090565b6000806002600061092c610ba5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611d5e565b60405180910390fd5b6109fd6109f4610ba5565b85858403610bad565b600191505092915050565b6000610a1c610a15610ba5565b8484610d78565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab5610ba5565b73ffffffffffffffffffffffffffffffffffffffff16610ad3610862565b73ffffffffffffffffffffffffffffffffffffffff1614610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090611cbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9090611c1e565b60405180910390fd5b610ba2816111d5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490611d3e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490611c3e565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d6b9190611d7e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90611d1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90611bde565b60405180910390fd5b610e63838383611299565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190611c5e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7f9190611dd0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fe39190611d7e565b60405180910390a3610ff6848484611495565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390611cde565b60405180910390fd5b61107882600083611299565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690611bfe565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111579190611e26565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111bc9190611d7e565b60405180910390a36111d083600084611495565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113a7576112f8610862565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113635750611334610862565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990611cfe565b60405180910390fd5b611490565b600660009054906101000a900460ff1680156114105750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561148f576007548161142284610778565b61142c9190611dd0565b1115801561144f57506008548161144284610778565b61144c9190611dd0565b10155b61148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590611c7e565b60405180910390fd5b5b5b505050565b505050565b6000813590506114a981611f83565b92915050565b6000813590506114be81611f9a565b92915050565b6000813590506114d381611fb1565b92915050565b6000602082840312156114eb57600080fd5b60006114f98482850161149a565b91505092915050565b6000806040838503121561151557600080fd5b60006115238582860161149a565b92505060206115348582860161149a565b9150509250929050565b60008060006060848603121561155357600080fd5b60006115618682870161149a565b93505060206115728682870161149a565b9250506040611583868287016114c4565b9150509250925092565b600080604083850312156115a057600080fd5b60006115ae8582860161149a565b92505060206115bf858286016114c4565b9150509250929050565b600080600080608085870312156115df57600080fd5b60006115ed878288016114af565b94505060206115fe8782880161149a565b935050604061160f878288016114c4565b9250506060611620878288016114c4565b91505092959194509250565b60006020828403121561163e57600080fd5b600061164c848285016114c4565b91505092915050565b61165e81611e5a565b82525050565b61166d81611e6c565b82525050565b600061167e82611db4565b6116888185611dbf565b9350611698818560208601611eaf565b6116a181611f72565b840191505092915050565b60006116b9602383611dbf565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061171f602283611dbf565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611785602683611dbf565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117eb602283611dbf565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611851602683611dbf565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118b7600683611dbf565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006118f7602883611dbf565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061195d602083611dbf565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061199d602183611dbf565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a03601683611dbf565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b6000611a43602583611dbf565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aa9602483611dbf565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b0f602583611dbf565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611b7181611e98565b82525050565b611b8081611ea2565b82525050565b6000602082019050611b9b6000830184611655565b92915050565b6000602082019050611bb66000830184611664565b92915050565b60006020820190508181036000830152611bd68184611673565b905092915050565b60006020820190508181036000830152611bf7816116ac565b9050919050565b60006020820190508181036000830152611c1781611712565b9050919050565b60006020820190508181036000830152611c3781611778565b9050919050565b60006020820190508181036000830152611c57816117de565b9050919050565b60006020820190508181036000830152611c7781611844565b9050919050565b60006020820190508181036000830152611c97816118aa565b9050919050565b60006020820190508181036000830152611cb7816118ea565b9050919050565b60006020820190508181036000830152611cd781611950565b9050919050565b60006020820190508181036000830152611cf781611990565b9050919050565b60006020820190508181036000830152611d17816119f6565b9050919050565b60006020820190508181036000830152611d3781611a36565b9050919050565b60006020820190508181036000830152611d5781611a9c565b9050919050565b60006020820190508181036000830152611d7781611b02565b9050919050565b6000602082019050611d936000830184611b68565b92915050565b6000602082019050611dae6000830184611b77565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ddb82611e98565b9150611de683611e98565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e1b57611e1a611f14565b5b828201905092915050565b6000611e3182611e98565b9150611e3c83611e98565b925082821015611e4f57611e4e611f14565b5b828203905092915050565b6000611e6582611e78565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ecd578082015181840152602081019050611eb2565b83811115611edc576000848401525b50505050565b60006002820490506001821680611efa57607f821691505b60208210811415611f0e57611f0d611f43565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611f8c81611e5a565b8114611f9757600080fd5b50565b611fa381611e6c565b8114611fae57600080fd5b50565b611fba81611e98565b8114611fc557600080fd5b5056fea26469706673582212200b4991d1f4cbb8ca902c2e75b6df19942a806721b784506cc8933cd77c0f6ccf64736f6c63430008000033000000000000000000000000000000000000000000000016c4abbebea0100000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610323578063a457c2d714610341578063a9059cbb14610371578063dd62ed3e146103a1578063f2fde38b146103d15761012c565b806370a082311461028f578063715018a6146102bf578063860a32ec146102c957806389f9a1d3146102e75780638da5cb5b146103055761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633aa633aa1461023957806342966c681461025557806349bd5a5e146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f5780631ab99e121461019d57806323b872dd146101bb575b600080fd5b6101396103ed565b6040516101469190611bbc565b60405180910390f35b6101696004803603810190610164919061158d565b61047f565b6040516101769190611ba1565b60405180910390f35b61018761049d565b6040516101949190611d7e565b60405180910390f35b6101a56104a7565b6040516101b29190611d7e565b60405180910390f35b6101d560048036038101906101d0919061153e565b6104ad565b6040516101e29190611ba1565b60405180910390f35b6101f36105a5565b6040516102009190611d99565b60405180910390f35b610223600480360381019061021e919061158d565b6105ae565b6040516102309190611ba1565b60405180910390f35b610253600480360381019061024e91906115c9565b61065a565b005b61026f600480360381019061026a919061162c565b610745565b005b610279610752565b6040516102869190611b86565b60405180910390f35b6102a960048036038101906102a491906114d9565b610778565b6040516102b69190611d7e565b60405180910390f35b6102c76107c1565b005b6102d1610849565b6040516102de9190611ba1565b60405180910390f35b6102ef61085c565b6040516102fc9190611d7e565b60405180910390f35b61030d610862565b60405161031a9190611b86565b60405180910390f35b61032b61088b565b6040516103389190611bbc565b60405180910390f35b61035b6004803603810190610356919061158d565b61091d565b6040516103689190611ba1565b60405180910390f35b61038b6004803603810190610386919061158d565b610a08565b6040516103989190611ba1565b60405180910390f35b6103bb60048036038101906103b69190611502565b610a26565b6040516103c89190611d7e565b60405180910390f35b6103eb60048036038101906103e691906114d9565b610aad565b005b6060600480546103fc90611ee2565b80601f016020809104026020016040519081016040528092919081815260200182805461042890611ee2565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b600061049361048c610ba5565b8484610bad565b6001905092915050565b6000600354905090565b60085481565b60006104ba848484610d78565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610505610ba5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057c90611c9e565b60405180910390fd5b61059985610591610ba5565b858403610bad565b60019150509392505050565b60006012905090565b60006106506105bb610ba5565b8484600260006105c9610ba5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064b9190611dd0565b610bad565b6001905092915050565b610662610ba5565b73ffffffffffffffffffffffffffffffffffffffff16610680610862565b73ffffffffffffffffffffffffffffffffffffffff16146106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd90611cbe565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61074f3382610ffc565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107c9610ba5565b73ffffffffffffffffffffffffffffffffffffffff166107e7610862565b73ffffffffffffffffffffffffffffffffffffffff161461083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490611cbe565b60405180910390fd5b61084760006111d5565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461089a90611ee2565b80601f01602080910402602001604051908101604052809291908181526020018280546108c690611ee2565b80156109135780601f106108e857610100808354040283529160200191610913565b820191906000526020600020905b8154815290600101906020018083116108f657829003601f168201915b5050505050905090565b6000806002600061092c610ba5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611d5e565b60405180910390fd5b6109fd6109f4610ba5565b85858403610bad565b600191505092915050565b6000610a1c610a15610ba5565b8484610d78565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab5610ba5565b73ffffffffffffffffffffffffffffffffffffffff16610ad3610862565b73ffffffffffffffffffffffffffffffffffffffff1614610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090611cbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9090611c1e565b60405180910390fd5b610ba2816111d5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490611d3e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490611c3e565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d6b9190611d7e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90611d1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90611bde565b60405180910390fd5b610e63838383611299565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190611c5e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7f9190611dd0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fe39190611d7e565b60405180910390a3610ff6848484611495565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390611cde565b60405180910390fd5b61107882600083611299565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690611bfe565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111579190611e26565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111bc9190611d7e565b60405180910390a36111d083600084611495565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113a7576112f8610862565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113635750611334610862565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990611cfe565b60405180910390fd5b611490565b600660009054906101000a900460ff1680156114105750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561148f576007548161142284610778565b61142c9190611dd0565b1115801561144f57506008548161144284610778565b61144c9190611dd0565b10155b61148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590611c7e565b60405180910390fd5b5b5b505050565b505050565b6000813590506114a981611f83565b92915050565b6000813590506114be81611f9a565b92915050565b6000813590506114d381611fb1565b92915050565b6000602082840312156114eb57600080fd5b60006114f98482850161149a565b91505092915050565b6000806040838503121561151557600080fd5b60006115238582860161149a565b92505060206115348582860161149a565b9150509250929050565b60008060006060848603121561155357600080fd5b60006115618682870161149a565b93505060206115728682870161149a565b9250506040611583868287016114c4565b9150509250925092565b600080604083850312156115a057600080fd5b60006115ae8582860161149a565b92505060206115bf858286016114c4565b9150509250929050565b600080600080608085870312156115df57600080fd5b60006115ed878288016114af565b94505060206115fe8782880161149a565b935050604061160f878288016114c4565b9250506060611620878288016114c4565b91505092959194509250565b60006020828403121561163e57600080fd5b600061164c848285016114c4565b91505092915050565b61165e81611e5a565b82525050565b61166d81611e6c565b82525050565b600061167e82611db4565b6116888185611dbf565b9350611698818560208601611eaf565b6116a181611f72565b840191505092915050565b60006116b9602383611dbf565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061171f602283611dbf565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611785602683611dbf565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117eb602283611dbf565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611851602683611dbf565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118b7600683611dbf565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006118f7602883611dbf565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061195d602083611dbf565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061199d602183611dbf565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a03601683611dbf565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b6000611a43602583611dbf565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aa9602483611dbf565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b0f602583611dbf565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611b7181611e98565b82525050565b611b8081611ea2565b82525050565b6000602082019050611b9b6000830184611655565b92915050565b6000602082019050611bb66000830184611664565b92915050565b60006020820190508181036000830152611bd68184611673565b905092915050565b60006020820190508181036000830152611bf7816116ac565b9050919050565b60006020820190508181036000830152611c1781611712565b9050919050565b60006020820190508181036000830152611c3781611778565b9050919050565b60006020820190508181036000830152611c57816117de565b9050919050565b60006020820190508181036000830152611c7781611844565b9050919050565b60006020820190508181036000830152611c97816118aa565b9050919050565b60006020820190508181036000830152611cb7816118ea565b9050919050565b60006020820190508181036000830152611cd781611950565b9050919050565b60006020820190508181036000830152611cf781611990565b9050919050565b60006020820190508181036000830152611d17816119f6565b9050919050565b60006020820190508181036000830152611d3781611a36565b9050919050565b60006020820190508181036000830152611d5781611a9c565b9050919050565b60006020820190508181036000830152611d7781611b02565b9050919050565b6000602082019050611d936000830184611b68565b92915050565b6000602082019050611dae6000830184611b77565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ddb82611e98565b9150611de683611e98565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e1b57611e1a611f14565b5b828201905092915050565b6000611e3182611e98565b9150611e3c83611e98565b925082821015611e4f57611e4e611f14565b5b828203905092915050565b6000611e6582611e78565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ecd578082015181840152602081019050611eb2565b83811115611edc576000848401525b50505050565b60006002820490506001821680611efa57607f821691505b60208210811415611f0e57611f0d611f43565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611f8c81611e5a565b8114611f9757600080fd5b50565b611fa381611e6c565b8114611fae57600080fd5b50565b611fba81611e98565b8114611fc557600080fd5b5056fea26469706673582212200b4991d1f4cbb8ca902c2e75b6df19942a806721b784506cc8933cd77c0f6ccf64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000016c4abbebea0100000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000016c4abbebea0100000


Deployed Bytecode Sourcemap

19244:1197:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9248:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11415:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10368:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19351:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12066:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10210:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12967:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19544:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20357:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19389:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10539:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2649:103;;;:::i;:::-;;19287:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19313:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1998:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9467:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13685:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10879:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11117:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2907:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9248:100;9302:13;9335:5;9328:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9248:100;:::o;11415:169::-;11498:4;11515:39;11524:12;:10;:12::i;:::-;11538:7;11547:6;11515:8;:39::i;:::-;11572:4;11565:11;;11415:169;;;;:::o;10368:108::-;10429:7;10456:12;;10449:19;;10368:108;:::o;19351:31::-;;;;:::o;12066:492::-;12206:4;12223:36;12233:6;12241:9;12252:6;12223:9;:36::i;:::-;12272:24;12299:11;:19;12311:6;12299:19;;;;;;;;;;;;;;;:33;12319:12;:10;:12::i;:::-;12299:33;;;;;;;;;;;;;;;;12272:60;;12371:6;12351:16;:26;;12343:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12458:57;12467:6;12475:12;:10;:12::i;:::-;12508:6;12489:16;:25;12458:8;:57::i;:::-;12546:4;12539:11;;;12066:492;;;;;:::o;10210:93::-;10268:5;10293:2;10286:9;;10210:93;:::o;12967:215::-;13055:4;13072:80;13081:12;:10;:12::i;:::-;13095:7;13141:10;13104:11;:25;13116:12;:10;:12::i;:::-;13104:25;;;;;;;;;;;;;;;:34;13130:7;13104:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13072:8;:80::i;:::-;13170:4;13163:11;;12967:215;;;;:::o;19544:301::-;2229:12;:10;:12::i;:::-;2218:23;;:7;:5;:7::i;:::-;:23;;;2210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19694:8:::1;19684:7;;:18;;;;;;;;;;;;;;;;;;19729:14;19713:13;;:30;;;;;;;;;;;;;;;;;;19773:17;19754:16;:36;;;;19820:17;19801:16;:36;;;;19544:301:::0;;;;:::o;20357:81::-;20406:24;20412:10;20424:5;20406;:24::i;:::-;20357:81;:::o;19389:28::-;;;;;;;;;;;;;:::o;10539:127::-;10613:7;10640:9;:18;10650:7;10640:18;;;;;;;;;;;;;;;;10633:25;;10539:127;;;:::o;2649:103::-;2229:12;:10;:12::i;:::-;2218:23;;:7;:5;:7::i;:::-;:23;;;2210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2714:30:::1;2741:1;2714:18;:30::i;:::-;2649:103::o:0;19287:19::-;;;;;;;;;;;;;:::o;19313:31::-;;;;:::o;1998:87::-;2044:7;2071:6;;;;;;;;;;;2064:13;;1998:87;:::o;9467:104::-;9523:13;9556:7;9549:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9467:104;:::o;13685:413::-;13778:4;13795:24;13822:11;:25;13834:12;:10;:12::i;:::-;13822:25;;;;;;;;;;;;;;;:34;13848:7;13822:34;;;;;;;;;;;;;;;;13795:61;;13895:15;13875:16;:35;;13867:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13988:67;13997:12;:10;:12::i;:::-;14011:7;14039:15;14020:16;:34;13988:8;:67::i;:::-;14086:4;14079:11;;;13685:413;;;;:::o;10879:175::-;10965:4;10982:42;10992:12;:10;:12::i;:::-;11006:9;11017:6;10982:9;:42::i;:::-;11042:4;11035:11;;10879:175;;;;:::o;11117:151::-;11206:7;11233:11;:18;11245:5;11233:18;;;;;;;;;;;;;;;:27;11252:7;11233:27;;;;;;;;;;;;;;;;11226:34;;11117:151;;;;:::o;2907:201::-;2229:12;:10;:12::i;:::-;2218:23;;:7;:5;:7::i;:::-;:23;;;2210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3016:1:::1;2996:22;;:8;:22;;;;2988:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3072:28;3091:8;3072:18;:28::i;:::-;2907:201:::0;:::o;716:98::-;769:7;796:10;789:17;;716:98;:::o;17369:380::-;17522:1;17505:19;;:5;:19;;;;17497:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17603:1;17584:21;;:7;:21;;;;17576:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17687:6;17657:11;:18;17669:5;17657:18;;;;;;;;;;;;;;;:27;17676:7;17657:27;;;;;;;;;;;;;;;:36;;;;17725:7;17709:32;;17718:5;17709:32;;;17734:6;17709:32;;;;;;:::i;:::-;;;;;;;;17369:380;;;:::o;14588:733::-;14746:1;14728:20;;:6;:20;;;;14720:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14830:1;14809:23;;:9;:23;;;;14801:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14885:47;14906:6;14914:9;14925:6;14885:20;:47::i;:::-;14945:21;14969:9;:17;14979:6;14969:17;;;;;;;;;;;;;;;;14945:41;;15022:6;15005:13;:23;;14997:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15143:6;15127:13;:22;15107:9;:17;15117:6;15107:17;;;;;;;;;;;;;;;:42;;;;15195:6;15171:9;:20;15181:9;15171:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15236:9;15219:35;;15228:6;15219:35;;;15247:6;15219:35;;;;;;:::i;:::-;;;;;;;;15267:46;15287:6;15295:9;15306:6;15267:19;:46::i;:::-;14588:733;;;;:::o;16340:591::-;16443:1;16424:21;;:7;:21;;;;16416:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16496:49;16517:7;16534:1;16538:6;16496:20;:49::i;:::-;16558:22;16583:9;:18;16593:7;16583:18;;;;;;;;;;;;;;;;16558:43;;16638:6;16620:14;:24;;16612:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16757:6;16740:14;:23;16719:9;:18;16729:7;16719:18;;;;;;;;;;;;;;;:44;;;;16801:6;16785:12;;:22;;;;;;;:::i;:::-;;;;;;;;16851:1;16825:37;;16834:7;16825:37;;;16855:6;16825:37;;;;;;:::i;:::-;;;;;;;;16875:48;16895:7;16912:1;16916:6;16875:19;:48::i;:::-;16340:591;;;:::o;3268:191::-;3342:16;3361:6;;;;;;;;;;;3342:25;;3387:8;3378:6;;:17;;;;;;;;;;;;;;;;;;3442:8;3411:40;;3432:8;3411:40;;;;;;;;;;;;3268:191;;:::o;19853:496::-;20027:1;20002:27;;:13;;;;;;;;;;;:27;;;19998:148;;;20062:7;:5;:7::i;:::-;20054:15;;:4;:15;;;:32;;;;20079:7;:5;:7::i;:::-;20073:13;;:2;:13;;;20054:32;20046:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20128:7;;19998:148;20162:7;;;;;;;;;;;:32;;;;;20181:13;;;;;;;;;;;20173:21;;:4;:21;;;20162:32;20158:184;;;20251:16;;20241:6;20219:19;20235:2;20219:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20303:16;;20293:6;20271:19;20287:2;20271:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20219:100;20211:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;20158:184;19853:496;;;;:::o;19078:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;;;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;;;;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:407::-;;;1800:2;1788:9;1779:7;1775:23;1771:32;1768:2;;;1816:1;1813;1806:12;1768:2;1859:1;1884:53;1929:7;1920:6;1909:9;1905:22;1884:53;:::i;:::-;1874:63;;1830:117;1986:2;2012:53;2057:7;2048:6;2037:9;2033:22;2012:53;:::i;:::-;2002:63;;1957:118;1758:324;;;;;:::o;2088:692::-;;;;;2244:3;2232:9;2223:7;2219:23;2215:33;2212:2;;;2261:1;2258;2251:12;2212:2;2304:1;2329:50;2371:7;2362:6;2351:9;2347:22;2329:50;:::i;:::-;2319:60;;2275:114;2428:2;2454:53;2499:7;2490:6;2479:9;2475:22;2454:53;:::i;:::-;2444:63;;2399:118;2556:2;2582:53;2627:7;2618:6;2607:9;2603:22;2582:53;:::i;:::-;2572:63;;2527:118;2684:2;2710:53;2755:7;2746:6;2735:9;2731:22;2710:53;:::i;:::-;2700:63;;2655:118;2202:578;;;;;;;:::o;2786:262::-;;2894:2;2882:9;2873:7;2869:23;2865:32;2862:2;;;2910:1;2907;2900:12;2862:2;2953:1;2978:53;3023:7;3014:6;3003:9;2999:22;2978:53;:::i;:::-;2968:63;;2924:117;2852:196;;;;:::o;3054:118::-;3141:24;3159:5;3141:24;:::i;:::-;3136:3;3129:37;3119:53;;:::o;3178:109::-;3259:21;3274:5;3259:21;:::i;:::-;3254:3;3247:34;3237:50;;:::o;3293:364::-;;3409:39;3442:5;3409:39;:::i;:::-;3464:71;3528:6;3523:3;3464:71;:::i;:::-;3457:78;;3544:52;3589:6;3584:3;3577:4;3570:5;3566:16;3544:52;:::i;:::-;3621:29;3643:6;3621:29;:::i;:::-;3616:3;3612:39;3605:46;;3385:272;;;;;:::o;3663:367::-;;3826:67;3890:2;3885:3;3826:67;:::i;:::-;3819:74;;3923:34;3919:1;3914:3;3910:11;3903:55;3989:5;3984:2;3979:3;3975:12;3968:27;4021:2;4016:3;4012:12;4005:19;;3809:221;;;:::o;4036:366::-;;4199:67;4263:2;4258:3;4199:67;:::i;:::-;4192:74;;4296:34;4292:1;4287:3;4283:11;4276:55;4362:4;4357:2;4352:3;4348:12;4341:26;4393:2;4388:3;4384:12;4377:19;;4182:220;;;:::o;4408:370::-;;4571:67;4635:2;4630:3;4571:67;:::i;:::-;4564:74;;4668:34;4664:1;4659:3;4655:11;4648:55;4734:8;4729:2;4724:3;4720:12;4713:30;4769:2;4764:3;4760:12;4753:19;;4554:224;;;:::o;4784:366::-;;4947:67;5011:2;5006:3;4947:67;:::i;:::-;4940:74;;5044:34;5040:1;5035:3;5031:11;5024:55;5110:4;5105:2;5100:3;5096:12;5089:26;5141:2;5136:3;5132:12;5125:19;;4930:220;;;:::o;5156:370::-;;5319:67;5383:2;5378:3;5319:67;:::i;:::-;5312:74;;5416:34;5412:1;5407:3;5403:11;5396:55;5482:8;5477:2;5472:3;5468:12;5461:30;5517:2;5512:3;5508:12;5501:19;;5302:224;;;:::o;5532:303::-;;5695:66;5759:1;5754:3;5695:66;:::i;:::-;5688:73;;5791:8;5787:1;5782:3;5778:11;5771:29;5826:2;5821:3;5817:12;5810:19;;5678:157;;;:::o;5841:372::-;;6004:67;6068:2;6063:3;6004:67;:::i;:::-;5997:74;;6101:34;6097:1;6092:3;6088:11;6081:55;6167:10;6162:2;6157:3;6153:12;6146:32;6204:2;6199:3;6195:12;6188:19;;5987:226;;;:::o;6219:330::-;;6382:67;6446:2;6441:3;6382:67;:::i;:::-;6375:74;;6479:34;6475:1;6470:3;6466:11;6459:55;6540:2;6535:3;6531:12;6524:19;;6365:184;;;:::o;6555:365::-;;6718:67;6782:2;6777:3;6718:67;:::i;:::-;6711:74;;6815:34;6811:1;6806:3;6802:11;6795:55;6881:3;6876:2;6871:3;6867:12;6860:25;6911:2;6906:3;6902:12;6895:19;;6701:219;;;:::o;6926:320::-;;7089:67;7153:2;7148:3;7089:67;:::i;:::-;7082:74;;7186:24;7182:1;7177:3;7173:11;7166:45;7237:2;7232:3;7228:12;7221:19;;7072:174;;;:::o;7252:369::-;;7415:67;7479:2;7474:3;7415:67;:::i;:::-;7408:74;;7512:34;7508:1;7503:3;7499:11;7492:55;7578:7;7573:2;7568:3;7564:12;7557:29;7612:2;7607:3;7603:12;7596:19;;7398:223;;;:::o;7627:368::-;;7790:67;7854:2;7849:3;7790:67;:::i;:::-;7783:74;;7887:34;7883:1;7878:3;7874:11;7867:55;7953:6;7948:2;7943:3;7939:12;7932:28;7986:2;7981:3;7977:12;7970:19;;7773:222;;;:::o;8001:369::-;;8164:67;8228:2;8223:3;8164:67;:::i;:::-;8157:74;;8261:34;8257:1;8252:3;8248:11;8241:55;8327:7;8322:2;8317:3;8313:12;8306:29;8361:2;8356:3;8352:12;8345:19;;8147:223;;;:::o;8376:118::-;8463:24;8481:5;8463:24;:::i;:::-;8458:3;8451:37;8441:53;;:::o;8500:112::-;8583:22;8599:5;8583:22;:::i;:::-;8578:3;8571:35;8561:51;;:::o;8618:222::-;;8749:2;8738:9;8734:18;8726:26;;8762:71;8830:1;8819:9;8815:17;8806:6;8762:71;:::i;:::-;8716:124;;;;:::o;8846:210::-;;8971:2;8960:9;8956:18;8948:26;;8984:65;9046:1;9035:9;9031:17;9022:6;8984:65;:::i;:::-;8938:118;;;;:::o;9062:313::-;;9213:2;9202:9;9198:18;9190:26;;9262:9;9256:4;9252:20;9248:1;9237:9;9233:17;9226:47;9290:78;9363:4;9354:6;9290:78;:::i;:::-;9282:86;;9180:195;;;;:::o;9381:419::-;;9585:2;9574:9;9570:18;9562:26;;9634:9;9628:4;9624:20;9620:1;9609:9;9605:17;9598:47;9662:131;9788:4;9662:131;:::i;:::-;9654:139;;9552:248;;;:::o;9806:419::-;;10010:2;9999:9;9995:18;9987:26;;10059:9;10053:4;10049:20;10045:1;10034:9;10030:17;10023:47;10087:131;10213:4;10087:131;:::i;:::-;10079:139;;9977:248;;;:::o;10231:419::-;;10435:2;10424:9;10420:18;10412:26;;10484:9;10478:4;10474:20;10470:1;10459:9;10455:17;10448:47;10512:131;10638:4;10512:131;:::i;:::-;10504:139;;10402:248;;;:::o;10656:419::-;;10860:2;10849:9;10845:18;10837:26;;10909:9;10903:4;10899:20;10895:1;10884:9;10880:17;10873:47;10937:131;11063:4;10937:131;:::i;:::-;10929:139;;10827:248;;;:::o;11081:419::-;;11285:2;11274:9;11270:18;11262:26;;11334:9;11328:4;11324:20;11320:1;11309:9;11305:17;11298:47;11362:131;11488:4;11362:131;:::i;:::-;11354:139;;11252:248;;;:::o;11506:419::-;;11710:2;11699:9;11695:18;11687:26;;11759:9;11753:4;11749:20;11745:1;11734:9;11730:17;11723:47;11787:131;11913:4;11787:131;:::i;:::-;11779:139;;11677:248;;;:::o;11931:419::-;;12135:2;12124:9;12120:18;12112:26;;12184:9;12178:4;12174:20;12170:1;12159:9;12155:17;12148:47;12212:131;12338:4;12212:131;:::i;:::-;12204:139;;12102:248;;;:::o;12356:419::-;;12560:2;12549:9;12545:18;12537:26;;12609:9;12603:4;12599:20;12595:1;12584:9;12580:17;12573:47;12637:131;12763:4;12637:131;:::i;:::-;12629:139;;12527:248;;;:::o;12781:419::-;;12985:2;12974:9;12970:18;12962:26;;13034:9;13028:4;13024:20;13020:1;13009:9;13005:17;12998:47;13062:131;13188:4;13062:131;:::i;:::-;13054:139;;12952:248;;;:::o;13206:419::-;;13410:2;13399:9;13395:18;13387:26;;13459:9;13453:4;13449:20;13445:1;13434:9;13430:17;13423:47;13487:131;13613:4;13487:131;:::i;:::-;13479:139;;13377:248;;;:::o;13631:419::-;;13835:2;13824:9;13820:18;13812:26;;13884:9;13878:4;13874:20;13870:1;13859:9;13855:17;13848:47;13912:131;14038:4;13912:131;:::i;:::-;13904:139;;13802:248;;;:::o;14056:419::-;;14260:2;14249:9;14245:18;14237:26;;14309:9;14303:4;14299:20;14295:1;14284:9;14280:17;14273:47;14337:131;14463:4;14337:131;:::i;:::-;14329:139;;14227:248;;;:::o;14481:419::-;;14685:2;14674:9;14670:18;14662:26;;14734:9;14728:4;14724:20;14720:1;14709:9;14705:17;14698:47;14762:131;14888:4;14762:131;:::i;:::-;14754:139;;14652:248;;;:::o;14906:222::-;;15037:2;15026:9;15022:18;15014:26;;15050:71;15118:1;15107:9;15103:17;15094:6;15050:71;:::i;:::-;15004:124;;;;:::o;15134:214::-;;15261:2;15250:9;15246:18;15238:26;;15274:67;15338:1;15327:9;15323:17;15314:6;15274:67;:::i;:::-;15228:120;;;;:::o;15354:99::-;;15440:5;15434:12;15424:22;;15413:40;;;:::o;15459:169::-;;15577:6;15572:3;15565:19;15617:4;15612:3;15608:14;15593:29;;15555:73;;;;:::o;15634:305::-;;15693:20;15711:1;15693:20;:::i;:::-;15688:25;;15727:20;15745:1;15727:20;:::i;:::-;15722:25;;15881:1;15813:66;15809:74;15806:1;15803:81;15800:2;;;15887:18;;:::i;:::-;15800:2;15931:1;15928;15924:9;15917:16;;15678:261;;;;:::o;15945:191::-;;16005:20;16023:1;16005:20;:::i;:::-;16000:25;;16039:20;16057:1;16039:20;:::i;:::-;16034:25;;16078:1;16075;16072:8;16069:2;;;16083:18;;:::i;:::-;16069:2;16128:1;16125;16121:9;16113:17;;15990:146;;;;:::o;16142:96::-;;16208:24;16226:5;16208:24;:::i;:::-;16197:35;;16187:51;;;:::o;16244:90::-;;16321:5;16314:13;16307:21;16296:32;;16286:48;;;:::o;16340:126::-;;16417:42;16410:5;16406:54;16395:65;;16385:81;;;:::o;16472:77::-;;16538:5;16527:16;;16517:32;;;:::o;16555:86::-;;16630:4;16623:5;16619:16;16608:27;;16598:43;;;:::o;16647:307::-;16715:1;16725:113;16739:6;16736:1;16733:13;16725:113;;;16824:1;16819:3;16815:11;16809:18;16805:1;16800:3;16796:11;16789:39;16761:2;16758:1;16754:10;16749:15;;16725:113;;;16856:6;16853:1;16850:13;16847:2;;;16936:1;16927:6;16922:3;16918:16;16911:27;16847:2;16696:258;;;;:::o;16960:320::-;;17041:1;17035:4;17031:12;17021:22;;17088:1;17082:4;17078:12;17109:18;17099:2;;17165:4;17157:6;17153:17;17143:27;;17099:2;17227;17219:6;17216:14;17196:18;17193:38;17190:2;;;17246:18;;:::i;:::-;17190:2;17011:269;;;;:::o;17286:180::-;17334:77;17331:1;17324:88;17431:4;17428:1;17421:15;17455:4;17452:1;17445:15;17472:180;17520:77;17517:1;17510:88;17617:4;17614:1;17607:15;17641:4;17638:1;17631:15;17658:102;;17750:2;17746:7;17741:2;17734:5;17730:14;17726:28;17716:38;;17706:54;;;:::o;17766:122::-;17839:24;17857:5;17839:24;:::i;:::-;17832:5;17829:35;17819:2;;17878:1;17875;17868:12;17819:2;17809:79;:::o;17894:116::-;17964:21;17979:5;17964:21;:::i;:::-;17957:5;17954:32;17944:2;;18000:1;17997;17990:12;17944:2;17934:76;:::o;18016:122::-;18089:24;18107:5;18089:24;:::i;:::-;18082:5;18079:35;18069:2;;18128:1;18125;18118:12;18069:2;18059:79;:::o

Swarm Source

ipfs://0b4991d1f4cbb8ca902c2e75b6df19942a806721b784506cc8933cd77c0f6ccf
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.