ETH Price: $3,154.12 (+1.12%)
Gas: 2 Gwei

Token

ABC Token (ABCT)
 

Overview

Max Total Supply

900,000,000 ABCT

Holders

9

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,935.019780310237147893 ABCT

Value
$0.00
0xe12b56dea03d4ae8524942df1bbde2204d153800
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:
ABCT

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-07
*/

// SPDX-License-Identifier: MIT


// File: @openzeppelin/[email protected]/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/[email protected]/access/Ownable.sol

// OpenZeppelin Contracts v4.4.1 (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/[email protected]/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.5.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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

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

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

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

    /**
     * @dev 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/[email protected]/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/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.5.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:
     *
     * - `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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `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;
        }
        _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;
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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: contract-8f1cc81915.sol


pragma solidity ^0.8.4;


contract ABCT is ERC20, Ownable {
    
    uint256 private immutable _cap;
    mapping(address => bool) public Blacklist;

    constructor(uint256 cap_) ERC20("ABC Token", "ABCT") {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        super._beforeTokenTransfer(from, to, amount);
        require(!Blacklist[from], "ABC: You are banned from Transfer");
    }

    function BlacklistAddress(address actor) public onlyOwner {
        Blacklist[actor] = true;
    }

    function UnBlacklistAddress(address actor) public onlyOwner {
        Blacklist[actor] = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"cap_","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":"","type":"address"}],"name":"Blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"actor","type":"address"}],"name":"BlacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"actor","type":"address"}],"name":"UnBlacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b506040516200112f3803806200112f833981016040819052620000349162000164565b6040518060400160405280600981526020016820a121902a37b5b2b760b91b81525060405180604001604052806004815260200163105090d560e21b815250816003908162000084919062000223565b50600462000093828262000223565b505050620000b0620000aa6200010e60201b60201c565b62000112565b60008111620001055760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015260640160405180910390fd5b608052620002ef565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000602082840312156200017757600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001a957607f821691505b602082108103620001ca57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021e57600081815260208120601f850160051c81016020861015620001f95750805b601f850160051c820191505b818110156200021a5782815560010162000205565b5050505b505050565b81516001600160401b038111156200023f576200023f6200017e565b620002578162000250845462000194565b84620001d0565b602080601f8311600181146200028f5760008415620002765750858301515b600019600386901b1c1916600185901b1785556200021a565b600085815260208120601f198616915b82811015620002c0578886015182559484019460019091019084016200029f565b5085821015620002df5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051610e1d620003126000396000818161019d01526109f20152610e1d6000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610273578063a9059cbb14610286578063c4cc304114610299578063dd62ed3e146102ac578063f2fde38b146102e557600080fd5b806370a08231146101fc578063715018a6146102255780637811ed4e1461022d5780638da5cb5b1461025057806395d89b411461026b57600080fd5b8063313ce567116100f4578063313ce5671461018c578063355274ea1461019b57806339509351146101c15780633f0777a8146101d457806340c10f19146101e957600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102f8565b60405161013b9190610c32565b60405180910390f35b610157610152366004610c9c565b61038a565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610cc6565b6103a4565b6040516012815260200161013b565b7f000000000000000000000000000000000000000000000000000000000000000061016b565b6101576101cf366004610c9c565b6103c8565b6101e76101e2366004610d02565b610407565b005b6101e76101f7366004610c9c565b61045b565b61016b61020a366004610d02565b6001600160a01b031660009081526020819052604090205490565b6101e7610493565b61015761023b366004610d02565b60066020526000908152604090205460ff1681565b6005546040516001600160a01b03909116815260200161013b565b61012e6104c9565b610157610281366004610c9c565b6104d8565b610157610294366004610c9c565b61056a565b6101e76102a7366004610d02565b610578565b61016b6102ba366004610d24565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e76102f3366004610d02565b6105c6565b60606003805461030790610d57565b80601f016020809104026020016040519081016040528092919081815260200182805461033390610d57565b80156103805780601f1061035557610100808354040283529160200191610380565b820191906000526020600020905b81548152906001019060200180831161036357829003601f168201915b5050505050905090565b600033610398818585610661565b60019150505b92915050565b6000336103b2858285610785565b6103bd858585610817565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103989082908690610402908790610d91565b610661565b6005546001600160a01b0316331461043a5760405162461bcd60e51b815260040161043190610db2565b60405180910390fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6005546001600160a01b031633146104855760405162461bcd60e51b815260040161043190610db2565b61048f82826109f0565b5050565b6005546001600160a01b031633146104bd5760405162461bcd60e51b815260040161043190610db2565b6104c76000610a7d565b565b60606004805461030790610d57565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561055d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610431565b6103bd8286868403610661565b600033610398818585610817565b6005546001600160a01b031633146105a25760405162461bcd60e51b815260040161043190610db2565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6005546001600160a01b031633146105f05760405162461bcd60e51b815260040161043190610db2565b6001600160a01b0381166106555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610431565b61065e81610a7d565b50565b6001600160a01b0383166106c35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610431565b6001600160a01b0382166107245760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610431565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461081157818110156108045760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610431565b6108118484848403610661565b50505050565b6001600160a01b03831661087b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610431565b6001600160a01b0382166108dd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610431565b6108e8838383610acf565b6001600160a01b038316600090815260208190526040902054818110156109605760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610431565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610997908490610d91565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109e391815260200190565b60405180910390a3610811565b7f000000000000000000000000000000000000000000000000000000000000000081610a1b60025490565b610a259190610d91565b1115610a735760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401610431565b61048f8282610b47565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526006602052604090205460ff1615610b425760405162461bcd60e51b815260206004820152602160248201527f4142433a20596f75206172652062616e6e65642066726f6d205472616e7366656044820152603960f91b6064820152608401610431565b505050565b6001600160a01b038216610b9d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610431565b610ba960008383610acf565b8060026000828254610bbb9190610d91565b90915550506001600160a01b03821660009081526020819052604081208054839290610be8908490610d91565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600060208083528351808285015260005b81811015610c5f57858101830151858201604001528201610c43565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c9757600080fd5b919050565b60008060408385031215610caf57600080fd5b610cb883610c80565b946020939093013593505050565b600080600060608486031215610cdb57600080fd5b610ce484610c80565b9250610cf260208501610c80565b9150604084013590509250925092565b600060208284031215610d1457600080fd5b610d1d82610c80565b9392505050565b60008060408385031215610d3757600080fd5b610d4083610c80565b9150610d4e60208401610c80565b90509250929050565b600181811c90821680610d6b57607f821691505b602082108103610d8b57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561039e57634e487b7160e01b600052601160045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220f681bdef39a9b3c36c045706af273c7e80bb6abf873f6cffbe63e5c182145af164736f6c634300081000330000000000000000000000000000000000000000041ea7c07ef6a380db000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610273578063a9059cbb14610286578063c4cc304114610299578063dd62ed3e146102ac578063f2fde38b146102e557600080fd5b806370a08231146101fc578063715018a6146102255780637811ed4e1461022d5780638da5cb5b1461025057806395d89b411461026b57600080fd5b8063313ce567116100f4578063313ce5671461018c578063355274ea1461019b57806339509351146101c15780633f0777a8146101d457806340c10f19146101e957600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102f8565b60405161013b9190610c32565b60405180910390f35b610157610152366004610c9c565b61038a565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610cc6565b6103a4565b6040516012815260200161013b565b7f0000000000000000000000000000000000000000041ea7c07ef6a380db00000061016b565b6101576101cf366004610c9c565b6103c8565b6101e76101e2366004610d02565b610407565b005b6101e76101f7366004610c9c565b61045b565b61016b61020a366004610d02565b6001600160a01b031660009081526020819052604090205490565b6101e7610493565b61015761023b366004610d02565b60066020526000908152604090205460ff1681565b6005546040516001600160a01b03909116815260200161013b565b61012e6104c9565b610157610281366004610c9c565b6104d8565b610157610294366004610c9c565b61056a565b6101e76102a7366004610d02565b610578565b61016b6102ba366004610d24565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e76102f3366004610d02565b6105c6565b60606003805461030790610d57565b80601f016020809104026020016040519081016040528092919081815260200182805461033390610d57565b80156103805780601f1061035557610100808354040283529160200191610380565b820191906000526020600020905b81548152906001019060200180831161036357829003601f168201915b5050505050905090565b600033610398818585610661565b60019150505b92915050565b6000336103b2858285610785565b6103bd858585610817565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103989082908690610402908790610d91565b610661565b6005546001600160a01b0316331461043a5760405162461bcd60e51b815260040161043190610db2565b60405180910390fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6005546001600160a01b031633146104855760405162461bcd60e51b815260040161043190610db2565b61048f82826109f0565b5050565b6005546001600160a01b031633146104bd5760405162461bcd60e51b815260040161043190610db2565b6104c76000610a7d565b565b60606004805461030790610d57565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561055d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610431565b6103bd8286868403610661565b600033610398818585610817565b6005546001600160a01b031633146105a25760405162461bcd60e51b815260040161043190610db2565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6005546001600160a01b031633146105f05760405162461bcd60e51b815260040161043190610db2565b6001600160a01b0381166106555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610431565b61065e81610a7d565b50565b6001600160a01b0383166106c35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610431565b6001600160a01b0382166107245760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610431565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461081157818110156108045760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610431565b6108118484848403610661565b50505050565b6001600160a01b03831661087b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610431565b6001600160a01b0382166108dd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610431565b6108e8838383610acf565b6001600160a01b038316600090815260208190526040902054818110156109605760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610431565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610997908490610d91565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109e391815260200190565b60405180910390a3610811565b7f0000000000000000000000000000000000000000041ea7c07ef6a380db00000081610a1b60025490565b610a259190610d91565b1115610a735760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401610431565b61048f8282610b47565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526006602052604090205460ff1615610b425760405162461bcd60e51b815260206004820152602160248201527f4142433a20596f75206172652062616e6e65642066726f6d205472616e7366656044820152603960f91b6064820152608401610431565b505050565b6001600160a01b038216610b9d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610431565b610ba960008383610acf565b8060026000828254610bbb9190610d91565b90915550506001600160a01b03821660009081526020819052604081208054839290610be8908490610d91565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600060208083528351808285015260005b81811015610c5f57858101830151858201604001528201610c43565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c9757600080fd5b919050565b60008060408385031215610caf57600080fd5b610cb883610c80565b946020939093013593505050565b600080600060608486031215610cdb57600080fd5b610ce484610c80565b9250610cf260208501610c80565b9150604084013590509250925092565b600060208284031215610d1457600080fd5b610d1d82610c80565b9392505050565b60008060408385031215610d3757600080fd5b610d4083610c80565b9150610d4e60208401610c80565b90509250929050565b600181811c90821680610d6b57607f821691505b602082108103610d8b57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561039e57634e487b7160e01b600052601160045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220f681bdef39a9b3c36c045706af273c7e80bb6abf873f6cffbe63e5c182145af164736f6c63430008100033

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

0000000000000000000000000000000000000000041ea7c07ef6a380db000000

-----Decoded View---------------
Arg [0] : cap_ (uint256): 1275000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000041ea7c07ef6a380db000000


Deployed Bytecode Sourcemap

20100:1156:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9238:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11589:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11589:201:0;1004:187:1;10358:108:0;10446:12;;10358:108;;;1342:25:1;;;1330:2;1315:18;10358:108:0;1196:177:1;12370:295:0;;;;;;:::i;:::-;;:::i;10200:93::-;;;10283:2;1853:36:1;;1841:2;1826:18;10200:93:0;1711:184:1;20376:83:0;20447:4;20376:83;;13074:240;;;;;;:::i;:::-;;:::i;21150:103::-;;;;;;:::i;:::-;;:::i;:::-;;20682:95;;;;;;:::i;:::-;;:::i;10529:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10630:18:0;10603:7;10630:18;;;;;;;;;;;;10529:127;2651:103;;;:::i;20182:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;2000:87;2073:6;;2000:87;;-1:-1:-1;;;;;2073:6:0;;;2237:51:1;;2225:2;2210:18;2000:87:0;2091:203:1;9457:104:0;;;:::i;13817:438::-;;;;;;:::i;:::-;;:::i;10862:193::-;;;;;;:::i;:::-;;:::i;21042:100::-;;;;;;:::i;:::-;;:::i;11118:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11234:18:0;;;11207:7;11234:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11118:151;2909:201;;;;;;:::i;:::-;;:::i;9238:100::-;9292:13;9325:5;9318:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9238:100;:::o;11589:201::-;11672:4;800:10;11728:32;800:10;11744:7;11753:6;11728:8;:32::i;:::-;11778:4;11771:11;;;11589:201;;;;;:::o;12370:295::-;12501:4;800:10;12559:38;12575:4;800:10;12590:6;12559:15;:38::i;:::-;12608:27;12618:4;12624:2;12628:6;12608:9;:27::i;:::-;-1:-1:-1;12653:4:0;;12370:295;-1:-1:-1;;;;12370:295:0:o;13074:240::-;800:10;13162:4;13243:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;13243:27:0;;;;;;;;;;13162:4;;800:10;13218:66;;800:10;;13243:27;;:40;;13273:10;;13243:40;:::i;:::-;13218:8;:66::i;21150:103::-;2073:6;;-1:-1:-1;;;;;2073:6:0;800:10;2220:23;2212:68;;;;-1:-1:-1;;;2212:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;21221:16:0::1;21240:5;21221:16:::0;;;:9:::1;:16;::::0;;;;:24;;-1:-1:-1;;21221:24:0::1;::::0;;21150:103::o;20682:95::-;2073:6;;-1:-1:-1;;;;;2073:6:0;800:10;2220:23;2212:68;;;;-1:-1:-1;;;2212:68:0;;;;;;;:::i;:::-;20752:17:::1;20758:2;20762:6;20752:5;:17::i;:::-;20682:95:::0;;:::o;2651:103::-;2073:6;;-1:-1:-1;;;;;2073:6:0;800:10;2220:23;2212:68;;;;-1:-1:-1;;;2212:68:0;;;;;;;:::i;:::-;2716:30:::1;2743:1;2716:18;:30::i;:::-;2651:103::o:0;9457:104::-;9513:13;9546:7;9539:14;;;;;:::i;13817:438::-;800:10;13910:4;13993:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;13993:27:0;;;;;;;;;;13910:4;;800:10;14039:35;;;;14031:85;;;;-1:-1:-1;;;14031:85:0;;3739:2:1;14031:85:0;;;3721:21:1;3778:2;3758:18;;;3751:30;3817:34;3797:18;;;3790:62;-1:-1:-1;;;3868:18:1;;;3861:35;3913:19;;14031:85:0;3537:401:1;14031:85:0;14152:60;14161:5;14168:7;14196:15;14177:16;:34;14152:8;:60::i;10862:193::-;10941:4;800:10;10997:28;800:10;11014:2;11018:6;10997:9;:28::i;21042:100::-;2073:6;;-1:-1:-1;;;;;2073:6:0;800:10;2220:23;2212:68;;;;-1:-1:-1;;;2212:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21111:16:0::1;;::::0;;;:9:::1;:16;::::0;;;;:23;;-1:-1:-1;;21111:23:0::1;21130:4;21111:23;::::0;;21042:100::o;2909:201::-;2073:6;;-1:-1:-1;;;;;2073:6:0;800:10;2220:23;2212:68;;;;-1:-1:-1;;;2212:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2998:22:0;::::1;2990:73;;;::::0;-1:-1:-1;;;2990:73:0;;4145:2:1;2990:73:0::1;::::0;::::1;4127:21:1::0;4184:2;4164:18;;;4157:30;4223:34;4203:18;;;4196:62;-1:-1:-1;;;4274:18:1;;;4267:36;4320:19;;2990:73:0::1;3943:402:1::0;2990:73:0::1;3074:28;3093:8;3074:18;:28::i;:::-;2909:201:::0;:::o;17453:380::-;-1:-1:-1;;;;;17589:19:0;;17581:68;;;;-1:-1:-1;;;17581:68:0;;4552:2:1;17581:68:0;;;4534:21:1;4591:2;4571:18;;;4564:30;4630:34;4610:18;;;4603:62;-1:-1:-1;;;4681:18:1;;;4674:34;4725:19;;17581:68:0;4350:400:1;17581:68:0;-1:-1:-1;;;;;17668:21:0;;17660:68;;;;-1:-1:-1;;;17660:68:0;;4957:2:1;17660:68:0;;;4939:21:1;4996:2;4976:18;;;4969:30;5035:34;5015:18;;;5008:62;-1:-1:-1;;;5086:18:1;;;5079:32;5128:19;;17660:68:0;4755:398:1;17660:68:0;-1:-1:-1;;;;;17741:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17793:32;;1342:25:1;;;17793:32:0;;1315:18:1;17793:32:0;;;;;;;17453:380;;;:::o;18120:453::-;-1:-1:-1;;;;;11234:18:0;;;18255:24;11234:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;18322:37:0;;18318:248;;18404:6;18384:16;:26;;18376:68;;;;-1:-1:-1;;;18376:68:0;;5360:2:1;18376:68:0;;;5342:21:1;5399:2;5379:18;;;5372:30;5438:31;5418:18;;;5411:59;5487:18;;18376:68:0;5158:353:1;18376:68:0;18488:51;18497:5;18504:7;18532:6;18513:16;:25;18488:8;:51::i;:::-;18244:329;18120:453;;;:::o;14734:671::-;-1:-1:-1;;;;;14865:18:0;;14857:68;;;;-1:-1:-1;;;14857:68:0;;5718:2:1;14857:68:0;;;5700:21:1;5757:2;5737:18;;;5730:30;5796:34;5776:18;;;5769:62;-1:-1:-1;;;5847:18:1;;;5840:35;5892:19;;14857:68:0;5516:401:1;14857:68:0;-1:-1:-1;;;;;14944:16:0;;14936:64;;;;-1:-1:-1;;;14936:64:0;;6124:2:1;14936:64:0;;;6106:21:1;6163:2;6143:18;;;6136:30;6202:34;6182:18;;;6175:62;-1:-1:-1;;;6253:18:1;;;6246:33;6296:19;;14936:64:0;5922:399:1;14936:64:0;15013:38;15034:4;15040:2;15044:6;15013:20;:38::i;:::-;-1:-1:-1;;;;;15086:15:0;;15064:19;15086:15;;;;;;;;;;;15120:21;;;;15112:72;;;;-1:-1:-1;;;15112:72:0;;6528:2:1;15112:72:0;;;6510:21:1;6567:2;6547:18;;;6540:30;6606:34;6586:18;;;6579:62;-1:-1:-1;;;6657:18:1;;;6650:36;6703:19;;15112:72:0;6326:402:1;15112:72:0;-1:-1:-1;;;;;15220:15:0;;;:9;:15;;;;;;;;;;;15238:20;;;15220:38;;15280:13;;;;;;;;:23;;15252:6;;15220:9;15280:23;;15252:6;;15280:23;:::i;:::-;;;;;;;;15336:2;-1:-1:-1;;;;;15321:26:0;15330:4;-1:-1:-1;;;;;15321:26:0;;15340:6;15321:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;15321:26:0;;;;;;;;15360:37;20785:249;20467:207;20447:4;20582:6;20560:19;10446:12;;;10358:108;20560:19;:28;;;;:::i;:::-;:37;;20552:75;;;;-1:-1:-1;;;20552:75:0;;6935:2:1;20552:75:0;;;6917:21:1;6974:2;6954:18;;;6947:30;7013:27;6993:18;;;6986:55;7058:18;;20552:75:0;6733:349:1;20552:75:0;20638:28;20650:7;20659:6;20638:11;:28::i;3270:191::-;3363:6;;;-1:-1:-1;;;;;3380:17:0;;;-1:-1:-1;;;;;;3380:17:0;;;;;;;3413:40;;3363:6;;;3380:17;3363:6;;3413:40;;3344:16;;3413:40;3333:128;3270:191;:::o;20785:249::-;-1:-1:-1;;;;;20973:15:0;;;;;;:9;:15;;;;;;;;20972:16;20964:62;;;;-1:-1:-1;;;20964:62:0;;7289:2:1;20964:62:0;;;7271:21:1;7328:2;7308:18;;;7301:30;7367:34;7347:18;;;7340:62;-1:-1:-1;;;7418:18:1;;;7411:31;7459:19;;20964:62:0;7087:397:1;20964:62:0;20785:249;;;:::o;15692:399::-;-1:-1:-1;;;;;15776:21:0;;15768:65;;;;-1:-1:-1;;;15768:65:0;;7691:2:1;15768:65:0;;;7673:21:1;7730:2;7710:18;;;7703:30;7769:33;7749:18;;;7742:61;7820:18;;15768:65:0;7489:355:1;15768:65:0;15846:49;15875:1;15879:7;15888:6;15846:20;:49::i;:::-;15924:6;15908:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15941:18:0;;:9;:18;;;;;;;;;;:28;;15963:6;;15941:9;:28;;15963:6;;15941:28;:::i;:::-;;;;-1:-1:-1;;15985:37:0;;1342:25:1;;;-1:-1:-1;;;;;15985:37:0;;;16002:1;;15985:37;;1330:2:1;1315:18;15985:37:0;;;;;;;20682:95;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:1:o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:222::-;3014:9;;;3035:10;;;3032:133;;;3087:10;3082:3;3078:20;3075:1;3068:31;3122:4;3119:1;3112:15;3150:4;3147:1;3140:15;3176:356;3378:2;3360:21;;;3397:18;;;3390:30;3456:34;3451:2;3436:18;;3429:62;3523:2;3508:18;;3176:356::o

Swarm Source

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