ETH Price: $2,422.04 (+0.02%)

Token

BULL BUCKS (BUCK)
 

Overview

Max Total Supply

100,000,000,000,000 BUCK

Holders

92

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.848581660872712919 BUCK

Value
$0.00
0x99749f51e759c272abc76fee393a3f92230db217
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:
BUCK

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-17
*/

/**
 *Submitted for verification at Etherscan.io on 2023-07-17
*/

// 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.9.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.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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/BUCK.sol



pragma solidity ^0.8.12;




contract BUCK is ERC20, ERC20Burnable, Ownable {
    uint256 balanceLimit; // Maximum balance limit for each user
    bool isBalanceLimited; // Whether sales are currently limited

    event BalanceLimitActivated();
    event BalanceLimitDeactivated();

    constructor(address to)
        ERC20("BULL BUCKS", "BUCK")
    {
        uint256 amount =  1 * 1E14 * 1E18;
        _mint(to, amount);
        balanceLimit = (amount * 1) / 100;  // calculating 5% of the total supply
    }

    function activateBalanceLimit() external onlyOwner {
        isBalanceLimited = true;
        emit BalanceLimitActivated();
    }

    function deactivateBalanceLimit() external onlyOwner {
        isBalanceLimited = false;
        emit BalanceLimitDeactivated();
    }

    modifier canReceive(address to, uint256 amount) {
        uint256 balanceOfTo = balanceOf(to);

        require(
            balanceOfTo + amount <= balanceLimit || !isBalanceLimited,
            "Transfer amount exceeds receiver's the balance limit"
        );
        _;
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        canReceive(recipient, amount)
        returns (bool)
    {
        return super.transfer(recipient, amount);
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override canReceive(to, amount) returns (bool) {
        return super.transferFrom(from, to, amount);
    }

    function _approve(address owner, address spender, uint256 amount)
        internal
        override
        canReceive(spender, amount)
    {
        super._approve(owner, spender, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"to","type":"address"}],"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":[],"name":"BalanceLimitActivated","type":"event"},{"anonymous":false,"inputs":[],"name":"BalanceLimitDeactivated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"activateBalanceLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"deactivateBalanceLimit","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":"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":"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":"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"}]

60806040523480156200001157600080fd5b50604051620025df380380620025df8339818101604052810190620000379190620003e8565b6040518060400160405280600a81526020017f42554c4c204255434b53000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4255434b000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000694565b508060049081620000c6919062000694565b505050620000e9620000dd6200013960201b60201c565b6200014160201b60201c565b60006d04ee2d6d415b85acef810000000090506200010e82826200020760201b60201c565b60646001826200011f9190620007aa565b6200012b919062000824565b600681905550505062000948565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027090620008bd565b60405180910390fd5b6200028d600083836200037460201b60201c565b8060026000828254620002a19190620008df565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200035491906200092b565b60405180910390a362000370600083836200037960201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003b08262000383565b9050919050565b620003c281620003a3565b8114620003ce57600080fd5b50565b600081519050620003e281620003b7565b92915050565b6000602082840312156200040157620004006200037e565b5b60006200041184828501620003d1565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200049c57607f821691505b602082108103620004b257620004b162000454565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200051c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004dd565b620005288683620004dd565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005756200056f620005698462000540565b6200054a565b62000540565b9050919050565b6000819050919050565b620005918362000554565b620005a9620005a0826200057c565b848454620004ea565b825550505050565b600090565b620005c0620005b1565b620005cd81848462000586565b505050565b5b81811015620005f557620005e9600082620005b6565b600181019050620005d3565b5050565b601f82111562000644576200060e81620004b8565b6200061984620004cd565b8101602085101562000629578190505b620006416200063885620004cd565b830182620005d2565b50505b505050565b600082821c905092915050565b6000620006696000198460080262000649565b1980831691505092915050565b600062000684838362000656565b9150826002028217905092915050565b6200069f826200041a565b67ffffffffffffffff811115620006bb57620006ba62000425565b5b620006c7825462000483565b620006d4828285620005f9565b600060209050601f8311600181146200070c5760008415620006f7578287015190505b62000703858262000676565b86555062000773565b601f1984166200071c86620004b8565b60005b8281101562000746578489015182556001820191506020850194506020810190506200071f565b8683101562000766578489015162000762601f89168262000656565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007b78262000540565b9150620007c48362000540565b9250828202620007d48162000540565b91508282048414831517620007ee57620007ed6200077b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620008318262000540565b91506200083e8362000540565b925082620008515762000850620007f5565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008a5601f836200085c565b9150620008b2826200086d565b602082019050919050565b60006020820190508181036000830152620008d88162000896565b9050919050565b6000620008ec8262000540565b9150620008f98362000540565b92508282019050808211156200091457620009136200077b565b5b92915050565b620009258162000540565b82525050565b60006020820190506200094260008301846200091a565b92915050565b611c8780620009586000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a9578063a457c2d7146102c7578063a9059cbb146102f7578063dd62ed3e14610327578063f2fde38b1461035757610116565b806370a0823114610235578063715018a61461026557806379cc67901461026f5780638da5cb5b1461028b57610116565b80632759d3fd116100e95780632759d3fd146101b7578063313ce567146101c157806331adbf80146101df57806339509351146101e957806342966c681461021957610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610373565b6040516101309190611259565b60405180910390f35b610153600480360381019061014e9190611314565b610405565b604051610160919061136f565b60405180910390f35b610171610428565b60405161017e9190611399565b60405180910390f35b6101a1600480360381019061019c91906113b4565b610432565b6040516101ae919061136f565b60405180910390f35b6101bf6104c2565b005b6101c9610513565b6040516101d69190611423565b60405180910390f35b6101e761051c565b005b61020360048036038101906101fe9190611314565b61056d565b604051610210919061136f565b60405180910390f35b610233600480360381019061022e919061143e565b6105a4565b005b61024f600480360381019061024a919061146b565b6105b8565b60405161025c9190611399565b60405180910390f35b61026d610600565b005b61028960048036038101906102849190611314565b610614565b005b610293610634565b6040516102a091906114a7565b60405180910390f35b6102b161065e565b6040516102be9190611259565b60405180910390f35b6102e160048036038101906102dc9190611314565b6106f0565b6040516102ee919061136f565b60405180910390f35b610311600480360381019061030c9190611314565b610767565b60405161031e919061136f565b60405180910390f35b610341600480360381019061033c91906114c2565b6107f5565b60405161034e9190611399565b60405180910390f35b610371600480360381019061036c919061146b565b61087c565b005b60606003805461038290611531565b80601f01602080910402602001604051908101604052809291908181526020018280546103ae90611531565b80156103fb5780601f106103d0576101008083540402835291602001916103fb565b820191906000526020600020905b8154815290600101906020018083116103de57829003601f168201915b5050505050905090565b6000806104106108ff565b905061041d818585610907565b600191505092915050565b6000600254905090565b600082826000610441836105b8565b905060065482826104529190611591565b11158061046c5750600760009054906101000a900460ff16155b6104ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a290611637565b60405180910390fd5b6104b6878787610991565b93505050509392505050565b6104ca6109c0565b6001600760006101000a81548160ff0219169083151502179055507f57df02f855946866f7fe8dfd5cca322ffa823a69c52d6d22fb507aa682c8b68560405160405180910390a1565b60006012905090565b6105246109c0565b6000600760006101000a81548160ff0219169083151502179055507f8c74aa6cfe1179b8cd9a4d3b26a1419bb686a58d1d81b5b3de6127b461cb373260405160405180910390a1565b6000806105786108ff565b905061059981858561058a85896107f5565b6105949190611591565b610907565b600191505092915050565b6105b56105af6108ff565b82610a3e565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106086109c0565b6106126000610c0b565b565b610626826106206108ff565b83610cd1565b6106308282610a3e565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461066d90611531565b80601f016020809104026020016040519081016040528092919081815260200182805461069990611531565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b6000806106fb6108ff565b9050600061070982866107f5565b90508381101561074e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610745906116c9565b60405180910390fd5b61075b8286868403610907565b60019250505092915050565b600082826000610776836105b8565b905060065482826107879190611591565b1115806107a15750600760009054906101000a900460ff16155b6107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d790611637565b60405180910390fd5b6107ea8686610d5d565b935050505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108846109c0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea9061175b565b60405180910390fd5b6108fc81610c0b565b50565b600033905090565b81816000610914836105b8565b905060065482826109259190611591565b11158061093f5750600760009054906101000a900460ff16155b61097e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097590611637565b60405180910390fd5b610989868686610d80565b505050505050565b60008061099c6108ff565b90506109a9858285610cd1565b6109b4858585610f49565b60019150509392505050565b6109c86108ff565b73ffffffffffffffffffffffffffffffffffffffff166109e6610634565b73ffffffffffffffffffffffffffffffffffffffff1614610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a33906117c7565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490611859565b60405180910390fd5b610ab9826000836111bf565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b36906118eb565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf29190611399565b60405180910390a3610c06836000846111c4565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610cdd84846107f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d575781811015610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090611957565b60405180910390fd5b610d568484848403610907565b5b50505050565b600080610d686108ff565b9050610d75818585610f49565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de6906119e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590611a7b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f3c9190611399565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90611b0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90611b9f565b60405180910390fd5b6110328383836111bf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90611c31565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a69190611399565b60405180910390a36111b98484846111c4565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112035780820151818401526020810190506111e8565b60008484015250505050565b6000601f19601f8301169050919050565b600061122b826111c9565b61123581856111d4565b93506112458185602086016111e5565b61124e8161120f565b840191505092915050565b600060208201905081810360008301526112738184611220565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112ab82611280565b9050919050565b6112bb816112a0565b81146112c657600080fd5b50565b6000813590506112d8816112b2565b92915050565b6000819050919050565b6112f1816112de565b81146112fc57600080fd5b50565b60008135905061130e816112e8565b92915050565b6000806040838503121561132b5761132a61127b565b5b6000611339858286016112c9565b925050602061134a858286016112ff565b9150509250929050565b60008115159050919050565b61136981611354565b82525050565b60006020820190506113846000830184611360565b92915050565b611393816112de565b82525050565b60006020820190506113ae600083018461138a565b92915050565b6000806000606084860312156113cd576113cc61127b565b5b60006113db868287016112c9565b93505060206113ec868287016112c9565b92505060406113fd868287016112ff565b9150509250925092565b600060ff82169050919050565b61141d81611407565b82525050565b60006020820190506114386000830184611414565b92915050565b6000602082840312156114545761145361127b565b5b6000611462848285016112ff565b91505092915050565b6000602082840312156114815761148061127b565b5b600061148f848285016112c9565b91505092915050565b6114a1816112a0565b82525050565b60006020820190506114bc6000830184611498565b92915050565b600080604083850312156114d9576114d861127b565b5b60006114e7858286016112c9565b92505060206114f8858286016112c9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061154957607f821691505b60208210810361155c5761155b611502565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061159c826112de565b91506115a7836112de565b92508282019050808211156115bf576115be611562565b5b92915050565b7f5472616e7366657220616d6f756e74206578636565647320726563656976657260008201527f2773207468652062616c616e6365206c696d6974000000000000000000000000602082015250565b60006116216034836111d4565b915061162c826115c5565b604082019050919050565b6000602082019050818103600083015261165081611614565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116b36025836111d4565b91506116be82611657565b604082019050919050565b600060208201905081810360008301526116e2816116a6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117456026836111d4565b9150611750826116e9565b604082019050919050565b6000602082019050818103600083015261177481611738565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117b16020836111d4565b91506117bc8261177b565b602082019050919050565b600060208201905081810360008301526117e0816117a4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006118436021836111d4565b915061184e826117e7565b604082019050919050565b6000602082019050818103600083015261187281611836565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006118d56022836111d4565b91506118e082611879565b604082019050919050565b60006020820190508181036000830152611904816118c8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611941601d836111d4565b915061194c8261190b565b602082019050919050565b6000602082019050818103600083015261197081611934565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d36024836111d4565b91506119de82611977565b604082019050919050565b60006020820190508181036000830152611a02816119c6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a656022836111d4565b9150611a7082611a09565b604082019050919050565b60006020820190508181036000830152611a9481611a58565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611af76025836111d4565b9150611b0282611a9b565b604082019050919050565b60006020820190508181036000830152611b2681611aea565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b896023836111d4565b9150611b9482611b2d565b604082019050919050565b60006020820190508181036000830152611bb881611b7c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c1b6026836111d4565b9150611c2682611bbf565b604082019050919050565b60006020820190508181036000830152611c4a81611c0e565b905091905056fea2646970667358221220b7a8891717e6de28b5603377f5b360d3567c8bff53d53e171798bf6940f134c964736f6c634300081200330000000000000000000000008b22a52f665fe02cd83b9dc6e09b5c8e8522829a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a9578063a457c2d7146102c7578063a9059cbb146102f7578063dd62ed3e14610327578063f2fde38b1461035757610116565b806370a0823114610235578063715018a61461026557806379cc67901461026f5780638da5cb5b1461028b57610116565b80632759d3fd116100e95780632759d3fd146101b7578063313ce567146101c157806331adbf80146101df57806339509351146101e957806342966c681461021957610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610373565b6040516101309190611259565b60405180910390f35b610153600480360381019061014e9190611314565b610405565b604051610160919061136f565b60405180910390f35b610171610428565b60405161017e9190611399565b60405180910390f35b6101a1600480360381019061019c91906113b4565b610432565b6040516101ae919061136f565b60405180910390f35b6101bf6104c2565b005b6101c9610513565b6040516101d69190611423565b60405180910390f35b6101e761051c565b005b61020360048036038101906101fe9190611314565b61056d565b604051610210919061136f565b60405180910390f35b610233600480360381019061022e919061143e565b6105a4565b005b61024f600480360381019061024a919061146b565b6105b8565b60405161025c9190611399565b60405180910390f35b61026d610600565b005b61028960048036038101906102849190611314565b610614565b005b610293610634565b6040516102a091906114a7565b60405180910390f35b6102b161065e565b6040516102be9190611259565b60405180910390f35b6102e160048036038101906102dc9190611314565b6106f0565b6040516102ee919061136f565b60405180910390f35b610311600480360381019061030c9190611314565b610767565b60405161031e919061136f565b60405180910390f35b610341600480360381019061033c91906114c2565b6107f5565b60405161034e9190611399565b60405180910390f35b610371600480360381019061036c919061146b565b61087c565b005b60606003805461038290611531565b80601f01602080910402602001604051908101604052809291908181526020018280546103ae90611531565b80156103fb5780601f106103d0576101008083540402835291602001916103fb565b820191906000526020600020905b8154815290600101906020018083116103de57829003601f168201915b5050505050905090565b6000806104106108ff565b905061041d818585610907565b600191505092915050565b6000600254905090565b600082826000610441836105b8565b905060065482826104529190611591565b11158061046c5750600760009054906101000a900460ff16155b6104ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a290611637565b60405180910390fd5b6104b6878787610991565b93505050509392505050565b6104ca6109c0565b6001600760006101000a81548160ff0219169083151502179055507f57df02f855946866f7fe8dfd5cca322ffa823a69c52d6d22fb507aa682c8b68560405160405180910390a1565b60006012905090565b6105246109c0565b6000600760006101000a81548160ff0219169083151502179055507f8c74aa6cfe1179b8cd9a4d3b26a1419bb686a58d1d81b5b3de6127b461cb373260405160405180910390a1565b6000806105786108ff565b905061059981858561058a85896107f5565b6105949190611591565b610907565b600191505092915050565b6105b56105af6108ff565b82610a3e565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106086109c0565b6106126000610c0b565b565b610626826106206108ff565b83610cd1565b6106308282610a3e565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461066d90611531565b80601f016020809104026020016040519081016040528092919081815260200182805461069990611531565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b6000806106fb6108ff565b9050600061070982866107f5565b90508381101561074e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610745906116c9565b60405180910390fd5b61075b8286868403610907565b60019250505092915050565b600082826000610776836105b8565b905060065482826107879190611591565b1115806107a15750600760009054906101000a900460ff16155b6107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d790611637565b60405180910390fd5b6107ea8686610d5d565b935050505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108846109c0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea9061175b565b60405180910390fd5b6108fc81610c0b565b50565b600033905090565b81816000610914836105b8565b905060065482826109259190611591565b11158061093f5750600760009054906101000a900460ff16155b61097e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097590611637565b60405180910390fd5b610989868686610d80565b505050505050565b60008061099c6108ff565b90506109a9858285610cd1565b6109b4858585610f49565b60019150509392505050565b6109c86108ff565b73ffffffffffffffffffffffffffffffffffffffff166109e6610634565b73ffffffffffffffffffffffffffffffffffffffff1614610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a33906117c7565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490611859565b60405180910390fd5b610ab9826000836111bf565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b36906118eb565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf29190611399565b60405180910390a3610c06836000846111c4565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610cdd84846107f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d575781811015610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090611957565b60405180910390fd5b610d568484848403610907565b5b50505050565b600080610d686108ff565b9050610d75818585610f49565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de6906119e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590611a7b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f3c9190611399565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90611b0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90611b9f565b60405180910390fd5b6110328383836111bf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90611c31565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a69190611399565b60405180910390a36111b98484846111c4565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112035780820151818401526020810190506111e8565b60008484015250505050565b6000601f19601f8301169050919050565b600061122b826111c9565b61123581856111d4565b93506112458185602086016111e5565b61124e8161120f565b840191505092915050565b600060208201905081810360008301526112738184611220565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112ab82611280565b9050919050565b6112bb816112a0565b81146112c657600080fd5b50565b6000813590506112d8816112b2565b92915050565b6000819050919050565b6112f1816112de565b81146112fc57600080fd5b50565b60008135905061130e816112e8565b92915050565b6000806040838503121561132b5761132a61127b565b5b6000611339858286016112c9565b925050602061134a858286016112ff565b9150509250929050565b60008115159050919050565b61136981611354565b82525050565b60006020820190506113846000830184611360565b92915050565b611393816112de565b82525050565b60006020820190506113ae600083018461138a565b92915050565b6000806000606084860312156113cd576113cc61127b565b5b60006113db868287016112c9565b93505060206113ec868287016112c9565b92505060406113fd868287016112ff565b9150509250925092565b600060ff82169050919050565b61141d81611407565b82525050565b60006020820190506114386000830184611414565b92915050565b6000602082840312156114545761145361127b565b5b6000611462848285016112ff565b91505092915050565b6000602082840312156114815761148061127b565b5b600061148f848285016112c9565b91505092915050565b6114a1816112a0565b82525050565b60006020820190506114bc6000830184611498565b92915050565b600080604083850312156114d9576114d861127b565b5b60006114e7858286016112c9565b92505060206114f8858286016112c9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061154957607f821691505b60208210810361155c5761155b611502565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061159c826112de565b91506115a7836112de565b92508282019050808211156115bf576115be611562565b5b92915050565b7f5472616e7366657220616d6f756e74206578636565647320726563656976657260008201527f2773207468652062616c616e6365206c696d6974000000000000000000000000602082015250565b60006116216034836111d4565b915061162c826115c5565b604082019050919050565b6000602082019050818103600083015261165081611614565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116b36025836111d4565b91506116be82611657565b604082019050919050565b600060208201905081810360008301526116e2816116a6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117456026836111d4565b9150611750826116e9565b604082019050919050565b6000602082019050818103600083015261177481611738565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117b16020836111d4565b91506117bc8261177b565b602082019050919050565b600060208201905081810360008301526117e0816117a4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006118436021836111d4565b915061184e826117e7565b604082019050919050565b6000602082019050818103600083015261187281611836565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006118d56022836111d4565b91506118e082611879565b604082019050919050565b60006020820190508181036000830152611904816118c8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611941601d836111d4565b915061194c8261190b565b602082019050919050565b6000602082019050818103600083015261197081611934565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d36024836111d4565b91506119de82611977565b604082019050919050565b60006020820190508181036000830152611a02816119c6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a656022836111d4565b9150611a7082611a09565b604082019050919050565b60006020820190508181036000830152611a9481611a58565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611af76025836111d4565b9150611b0282611a9b565b604082019050919050565b60006020820190508181036000830152611b2681611aea565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b896023836111d4565b9150611b9482611b2d565b604082019050919050565b60006020820190508181036000830152611bb881611b7c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c1b6026836111d4565b9150611c2682611bbf565b604082019050919050565b60006020820190508181036000830152611c4a81611c0e565b905091905056fea2646970667358221220b7a8891717e6de28b5603377f5b360d3567c8bff53d53e171798bf6940f134c964736f6c63430008120033

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

0000000000000000000000008b22a52f665fe02cd83b9dc6e09b5c8e8522829a

-----Decoded View---------------
Arg [0] : to (address): 0x8B22a52f665Fe02Cd83b9dc6e09b5c8E8522829a

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008b22a52f665fe02cd83b9dc6e09b5c8e8522829a


Deployed Bytecode Sourcemap

21618:1754:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9392:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11752:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10521:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22938:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22120:132;;;:::i;:::-;;10363:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22260:137;;;:::i;:::-;;13203:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20968:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10692:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2847:103;;;:::i;:::-;;21378:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2199:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9611:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13944:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22699:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11281:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3105:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9392:100;9446:13;9479:5;9472:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9392:100;:::o;11752:201::-;11835:4;11852:13;11868:12;:10;:12::i;:::-;11852:28;;11891:32;11900:5;11907:7;11916:6;11891:8;:32::i;:::-;11941:4;11934:11;;;11752:201;;;;:::o;10521:108::-;10582:7;10609:12;;10602:19;;10521:108;:::o;22938:222::-;23092:4;23071:2;23075:6;22464:19;22486:13;22496:2;22486:9;:13::i;:::-;22464:35;;22558:12;;22548:6;22534:11;:20;;;;:::i;:::-;:36;;:57;;;;22575:16;;;;;;;;;;;22574:17;22534:57;22512:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;23116:36:::1;23135:4;23141:2;23145:6;23116:18;:36::i;:::-;23109:43;;22453:238:::0;22938:222;;;;;;;:::o;22120:132::-;2085:13;:11;:13::i;:::-;22201:4:::1;22182:16;;:23;;;;;;;;;;;;;;;;;;22221;;;;;;;;;;22120:132::o:0;10363:93::-;10421:5;10446:2;10439:9;;10363:93;:::o;22260:137::-;2085:13;:11;:13::i;:::-;22343:5:::1;22324:16;;:24;;;;;;;;;;;;;;;;;;22364:25;;;;;;;;;;22260:137::o:0;13203:238::-;13291:4;13308:13;13324:12;:10;:12::i;:::-;13308:28;;13347:64;13356:5;13363:7;13400:10;13372:25;13382:5;13389:7;13372:9;:25::i;:::-;:38;;;;:::i;:::-;13347:8;:64::i;:::-;13429:4;13422:11;;;13203:238;;;;:::o;20968:91::-;21024:27;21030:12;:10;:12::i;:::-;21044:6;21024:5;:27::i;:::-;20968:91;:::o;10692:127::-;10766:7;10793:9;:18;10803:7;10793:18;;;;;;;;;;;;;;;;10786:25;;10692:127;;;:::o;2847:103::-;2085:13;:11;:13::i;:::-;2912:30:::1;2939:1;2912:18;:30::i;:::-;2847:103::o:0;21378:164::-;21455:46;21471:7;21480:12;:10;:12::i;:::-;21494:6;21455:15;:46::i;:::-;21512:22;21518:7;21527:6;21512:5;:22::i;:::-;21378:164;;:::o;2199:87::-;2245:7;2272:6;;;;;;;;;;;2265:13;;2199:87;:::o;9611:104::-;9667:13;9700:7;9693:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9611:104;:::o;13944:436::-;14037:4;14054:13;14070:12;:10;:12::i;:::-;14054:28;;14093:24;14120:25;14130:5;14137:7;14120:9;:25::i;:::-;14093:52;;14184:15;14164:16;:35;;14156:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14277:60;14286:5;14293:7;14321:15;14302:16;:34;14277:8;:60::i;:::-;14368:4;14361:11;;;;13944:436;;;;:::o;22699:231::-;22860:4;22823:9;22834:6;22464:19;22486:13;22496:2;22486:9;:13::i;:::-;22464:35;;22558:12;;22548:6;22534:11;:20;;;;:::i;:::-;:36;;:57;;;;22575:16;;;;;;;;;;;22574:17;22534:57;22512:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;22889:33:::1;22904:9;22915:6;22889:14;:33::i;:::-;22882:40;;22453:238:::0;22699:231;;;;;;:::o;11281:151::-;11370:7;11397:11;:18;11409:5;11397:18;;;;;;;;;;;;;;;:27;11416:7;11397:27;;;;;;;;;;;;;;;;11390:34;;11281:151;;;;:::o;3105:201::-;2085:13;:11;:13::i;:::-;3214:1:::1;3194:22;;:8;:22;;::::0;3186:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3270:28;3289:8;3270:18;:28::i;:::-;3105:201:::0;:::o;750:98::-;803:7;830:10;823:17;;750:98;:::o;23168:201::-;23290:7;23299:6;22464:19;22486:13;22496:2;22486:9;:13::i;:::-;22464:35;;22558:12;;22548:6;22534:11;:20;;;;:::i;:::-;:36;;:57;;;;22575:16;;;;;;;;;;;22574:17;22534:57;22512:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;23323:38:::1;23338:5;23345:7;23354:6;23323:14;:38::i;:::-;22453:238:::0;23168:201;;;;;:::o;12533:261::-;12630:4;12647:15;12665:12;:10;:12::i;:::-;12647:30;;12688:38;12704:4;12710:7;12719:6;12688:15;:38::i;:::-;12737:27;12747:4;12753:2;12757:6;12737:9;:27::i;:::-;12782:4;12775:11;;;12533:261;;;;;:::o;2364:132::-;2439:12;:10;:12::i;:::-;2428:23;;:7;:5;:7::i;:::-;:23;;;2420:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2364:132::o;16824:675::-;16927:1;16908:21;;:7;:21;;;16900:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16980:49;17001:7;17018:1;17022:6;16980:20;:49::i;:::-;17042:22;17067:9;:18;17077:7;17067:18;;;;;;;;;;;;;;;;17042:43;;17122:6;17104:14;:24;;17096:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17241:6;17224:14;:23;17203:9;:18;17213:7;17203:18;;;;;;;;;;;;;;;:44;;;;17358:6;17342:12;;:22;;;;;;;;;;;17419:1;17393:37;;17402:7;17393:37;;;17423:6;17393:37;;;;;;:::i;:::-;;;;;;;;17443:48;17463:7;17480:1;17484:6;17443:19;:48::i;:::-;16889:610;16824:675;;:::o;3466:191::-;3540:16;3559:6;;;;;;;;;;;3540:25;;3585:8;3576:6;;:17;;;;;;;;;;;;;;;;;;3640:8;3609:40;;3630:8;3609:40;;;;;;;;;;;;3529:128;3466:191;:::o;18574:419::-;18675:24;18702:25;18712:5;18719:7;18702:9;:25::i;:::-;18675:52;;18762:17;18742:16;:37;18738:248;;18824:6;18804:16;:26;;18796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18908:51;18917:5;18924:7;18952:6;18933:16;:25;18908:8;:51::i;:::-;18738:248;18664:329;18574:419;;;:::o;11025:193::-;11104:4;11121:13;11137:12;:10;:12::i;:::-;11121:28;;11160;11170:5;11177:2;11181:6;11160:9;:28::i;:::-;11206:4;11199:11;;;11025:193;;;;:::o;17937:346::-;18056:1;18039:19;;:5;:19;;;18031:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18137:1;18118:21;;:7;:21;;;18110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18221:6;18191:11;:18;18203:5;18191:18;;;;;;;;;;;;;;;:27;18210:7;18191:27;;;;;;;;;;;;;;;:36;;;;18259:7;18243:32;;18252:5;18243:32;;;18268:6;18243:32;;;;;;:::i;:::-;;;;;;;;17937:346;;;:::o;14850:806::-;14963:1;14947:18;;:4;:18;;;14939:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15040:1;15026:16;;:2;:16;;;15018:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15095:38;15116:4;15122:2;15126:6;15095:20;:38::i;:::-;15146:19;15168:9;:15;15178:4;15168:15;;;;;;;;;;;;;;;;15146:37;;15217:6;15202:11;:21;;15194:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15334:6;15320:11;:20;15302:9;:15;15312:4;15302:15;;;;;;;;;;;;;;;:38;;;;15537:6;15520:9;:13;15530:2;15520:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15587:2;15572:26;;15581:4;15572:26;;;15591:6;15572:26;;;;;;:::i;:::-;;;;;;;;15611:37;15631:4;15637:2;15641:6;15611:19;:37::i;:::-;14928:728;14850:806;;;:::o;19593:91::-;;;;:::o;20288:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:239::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:22;7454:2;7446:6;7442:15;7435:47;7250:239;:::o;7495:366::-;7637:3;7658:67;7722:2;7717:3;7658:67;:::i;:::-;7651:74;;7734:93;7823:3;7734:93;:::i;:::-;7852:2;7847:3;7843:12;7836:19;;7495:366;;;:::o;7867:419::-;8033:4;8071:2;8060:9;8056:18;8048:26;;8120:9;8114:4;8110:20;8106:1;8095:9;8091:17;8084:47;8148:131;8274:4;8148:131;:::i;:::-;8140:139;;7867:419;;;:::o;8292:224::-;8432:34;8428:1;8420:6;8416:14;8409:58;8501:7;8496:2;8488:6;8484:15;8477:32;8292:224;:::o;8522:366::-;8664:3;8685:67;8749:2;8744:3;8685:67;:::i;:::-;8678:74;;8761:93;8850:3;8761:93;:::i;:::-;8879:2;8874:3;8870:12;8863:19;;8522:366;;;:::o;8894:419::-;9060:4;9098:2;9087:9;9083:18;9075:26;;9147:9;9141:4;9137:20;9133:1;9122:9;9118:17;9111:47;9175:131;9301:4;9175:131;:::i;:::-;9167:139;;8894:419;;;:::o;9319:225::-;9459:34;9455:1;9447:6;9443:14;9436:58;9528:8;9523:2;9515:6;9511:15;9504:33;9319:225;:::o;9550:366::-;9692:3;9713:67;9777:2;9772:3;9713:67;:::i;:::-;9706:74;;9789:93;9878:3;9789:93;:::i;:::-;9907:2;9902:3;9898:12;9891:19;;9550:366;;;:::o;9922:419::-;10088:4;10126:2;10115:9;10111:18;10103:26;;10175:9;10169:4;10165:20;10161:1;10150:9;10146:17;10139:47;10203:131;10329:4;10203:131;:::i;:::-;10195:139;;9922:419;;;:::o;10347:182::-;10487:34;10483:1;10475:6;10471:14;10464:58;10347:182;:::o;10535:366::-;10677:3;10698:67;10762:2;10757:3;10698:67;:::i;:::-;10691:74;;10774:93;10863:3;10774:93;:::i;:::-;10892:2;10887:3;10883:12;10876:19;;10535:366;;;:::o;10907:419::-;11073:4;11111:2;11100:9;11096:18;11088:26;;11160:9;11154:4;11150:20;11146:1;11135:9;11131:17;11124:47;11188:131;11314:4;11188:131;:::i;:::-;11180:139;;10907:419;;;:::o;11332:220::-;11472:34;11468:1;11460:6;11456:14;11449:58;11541:3;11536:2;11528:6;11524:15;11517:28;11332:220;:::o;11558:366::-;11700:3;11721:67;11785:2;11780:3;11721:67;:::i;:::-;11714:74;;11797:93;11886:3;11797:93;:::i;:::-;11915:2;11910:3;11906:12;11899:19;;11558:366;;;:::o;11930:419::-;12096:4;12134:2;12123:9;12119:18;12111:26;;12183:9;12177:4;12173:20;12169:1;12158:9;12154:17;12147:47;12211:131;12337:4;12211:131;:::i;:::-;12203:139;;11930:419;;;:::o;12355:221::-;12495:34;12491:1;12483:6;12479:14;12472:58;12564:4;12559:2;12551:6;12547:15;12540:29;12355:221;:::o;12582:366::-;12724:3;12745:67;12809:2;12804:3;12745:67;:::i;:::-;12738:74;;12821:93;12910:3;12821:93;:::i;:::-;12939:2;12934:3;12930:12;12923:19;;12582:366;;;:::o;12954:419::-;13120:4;13158:2;13147:9;13143:18;13135:26;;13207:9;13201:4;13197:20;13193:1;13182:9;13178:17;13171:47;13235:131;13361:4;13235:131;:::i;:::-;13227:139;;12954:419;;;:::o;13379:179::-;13519:31;13515:1;13507:6;13503:14;13496:55;13379:179;:::o;13564:366::-;13706:3;13727:67;13791:2;13786:3;13727:67;:::i;:::-;13720:74;;13803:93;13892:3;13803:93;:::i;:::-;13921:2;13916:3;13912:12;13905:19;;13564:366;;;:::o;13936:419::-;14102:4;14140:2;14129:9;14125:18;14117:26;;14189:9;14183:4;14179:20;14175:1;14164:9;14160:17;14153:47;14217:131;14343:4;14217:131;:::i;:::-;14209:139;;13936:419;;;:::o;14361:223::-;14501:34;14497:1;14489:6;14485:14;14478:58;14570:6;14565:2;14557:6;14553:15;14546:31;14361:223;:::o;14590:366::-;14732:3;14753:67;14817:2;14812:3;14753:67;:::i;:::-;14746:74;;14829:93;14918:3;14829:93;:::i;:::-;14947:2;14942:3;14938:12;14931:19;;14590:366;;;:::o;14962:419::-;15128:4;15166:2;15155:9;15151:18;15143:26;;15215:9;15209:4;15205:20;15201:1;15190:9;15186:17;15179:47;15243:131;15369:4;15243:131;:::i;:::-;15235:139;;14962:419;;;:::o;15387:221::-;15527:34;15523:1;15515:6;15511:14;15504:58;15596:4;15591:2;15583:6;15579:15;15572:29;15387:221;:::o;15614:366::-;15756:3;15777:67;15841:2;15836:3;15777:67;:::i;:::-;15770:74;;15853:93;15942:3;15853:93;:::i;:::-;15971:2;15966:3;15962:12;15955:19;;15614:366;;;:::o;15986:419::-;16152:4;16190:2;16179:9;16175:18;16167:26;;16239:9;16233:4;16229:20;16225:1;16214:9;16210:17;16203:47;16267:131;16393:4;16267:131;:::i;:::-;16259:139;;15986:419;;;:::o;16411:224::-;16551:34;16547:1;16539:6;16535:14;16528:58;16620:7;16615:2;16607:6;16603:15;16596:32;16411:224;:::o;16641:366::-;16783:3;16804:67;16868:2;16863:3;16804:67;:::i;:::-;16797:74;;16880:93;16969:3;16880:93;:::i;:::-;16998:2;16993:3;16989:12;16982:19;;16641:366;;;:::o;17013:419::-;17179:4;17217:2;17206:9;17202:18;17194:26;;17266:9;17260:4;17256:20;17252:1;17241:9;17237:17;17230:47;17294:131;17420:4;17294:131;:::i;:::-;17286:139;;17013:419;;;:::o;17438:222::-;17578:34;17574:1;17566:6;17562:14;17555:58;17647:5;17642:2;17634:6;17630:15;17623:30;17438:222;:::o;17666:366::-;17808:3;17829:67;17893:2;17888:3;17829:67;:::i;:::-;17822:74;;17905:93;17994:3;17905:93;:::i;:::-;18023:2;18018:3;18014:12;18007:19;;17666:366;;;:::o;18038:419::-;18204:4;18242:2;18231:9;18227:18;18219:26;;18291:9;18285:4;18281:20;18277:1;18266:9;18262:17;18255:47;18319:131;18445:4;18319:131;:::i;:::-;18311:139;;18038:419;;;:::o;18463:225::-;18603:34;18599:1;18591:6;18587:14;18580:58;18672:8;18667:2;18659:6;18655:15;18648:33;18463:225;:::o;18694:366::-;18836:3;18857:67;18921:2;18916:3;18857:67;:::i;:::-;18850:74;;18933:93;19022:3;18933:93;:::i;:::-;19051:2;19046:3;19042:12;19035:19;;18694:366;;;:::o;19066:419::-;19232:4;19270:2;19259:9;19255:18;19247:26;;19319:9;19313:4;19309:20;19305:1;19294:9;19290:17;19283:47;19347:131;19473:4;19347:131;:::i;:::-;19339:139;;19066:419;;;:::o

Swarm Source

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