ETH Price: $1,644.46 (+3.12%)
Gas: 9 Gwei
 

Overview

Max Total Supply

1,000,000,000,000,000 WBBASSC

Holders

37

Market

Fully Diluted Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
99,425,000,000,000 WBBASSC

Value
$0.00
0xc76f71c1d8659f7e4f26d081a8074a9c4e65a520
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:
WBBASSCToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: wbbastoken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./4_ERC20.sol";
import "./6_Pausable.sol";
import "./5_ownable.sol";

contract WBBASSCToken is ERC20, Pausable, Ownable {

    

    constructor() ERC20("WBBASSC", "WBBASSC") {
       
        _mint(0xfc0A694F4e43a5B851Cd3af5dA1127C9A32828dC, 100000000000000 * 10 ** decimals()); // 100 trillion
        _mint(0x716603D8717163d6Bad9eb65cE853c80663509A1, 100000000000000 * 10 ** decimals());
        _mint(0x544B19642D0209158C9b10c5003873801D01aBf8, 100000000000000 * 10 ** decimals());
        _mint(0x4FBF051a82Afc04A5f0FeBA4fc8bAc91d19D1bc3, 100000000000000 * 10 ** decimals());
        _mint(0x240288107303b5d8facB78902dFc950004cC5463, 100000000000000 * 10 ** decimals());
        _mint(0x3e424f0f91A3C6371715A3d568c400F07eaffc41, 100000000000000 * 10 ** decimals());
        _mint(0x8C3008723aF7a9F3B7dd23c968a8252924c5dF2C, 100000000000000 * 10 ** decimals());
        _mint(0xdec968f0342F9F0d8e187fF57430ddB3D6c83aF0, 100000000000000 * 10 ** decimals());
        _mint(0x4373fbB9D88ac14F8FFa62e6eDdADE326098baD9, 100000000000000 * 10 ** decimals());
        _mint(0xC76F71C1D8659F7e4f26d081a8074A9c4e65A520, 99425000000000 * 10 ** decimals()); // 99trillion 425 billion
        _mint(0xa1838B8C7Df8c17F48a8abea2899D0ab070F53bc, 575000000000 * 10 ** decimals()); // 575 billion
           


    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }

   
}

File 1 of 7: 1_Context.sol
// SPDX-License-Identifier: MIT
// 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 2 of 7: 2_IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./3_IERC20.sol";

/**
 * @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 3 of 7: 3_IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 4 of 7: 4_ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./3_IERC20.sol";
import "./2_IERC20Metadata.sol";
import "./1_Context.sol";

/**
 * @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, 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 `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 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 5 of 7: 5_ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./1_Context.sol";

/**
 * @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 6 of 7: 6_Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "./1_Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Contract Creation Code

60806040523480156200001157600080fd5b506040518060400160405280600781526020017f57424241535343000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f574242415353430000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000785565b508060049080519060200190620000af92919062000785565b5050506000600560006101000a81548160ff021916908315150217905550620000ed620000e1620004a460201b60201c565b620004ac60201b60201c565b6200014373fc0a694f4e43a5b851cd3af5da1127c9a32828dc620001166200057260201b60201c565b600a620001249190620009be565b655af3107a400062000137919062000afb565b6200057b60201b60201c565b6200019973716603d8717163d6bad9eb65ce853c80663509a16200016c6200057260201b60201c565b600a6200017a9190620009be565b655af3107a40006200018d919062000afb565b6200057b60201b60201c565b620001ef73544b19642d0209158c9b10c5003873801d01abf8620001c26200057260201b60201c565b600a620001d09190620009be565b655af3107a4000620001e3919062000afb565b6200057b60201b60201c565b62000245734fbf051a82afc04a5f0feba4fc8bac91d19d1bc3620002186200057260201b60201c565b600a620002269190620009be565b655af3107a400062000239919062000afb565b6200057b60201b60201c565b6200029b73240288107303b5d8facb78902dfc950004cc54636200026e6200057260201b60201c565b600a6200027c9190620009be565b655af3107a40006200028f919062000afb565b6200057b60201b60201c565b620002f1733e424f0f91a3c6371715a3d568c400f07eaffc41620002c46200057260201b60201c565b600a620002d29190620009be565b655af3107a4000620002e5919062000afb565b6200057b60201b60201c565b62000347738c3008723af7a9f3b7dd23c968a8252924c5df2c6200031a6200057260201b60201c565b600a620003289190620009be565b655af3107a40006200033b919062000afb565b6200057b60201b60201c565b6200039d73dec968f0342f9f0d8e187ff57430ddb3d6c83af0620003706200057260201b60201c565b600a6200037e9190620009be565b655af3107a400062000391919062000afb565b6200057b60201b60201c565b620003f3734373fbb9d88ac14f8ffa62e6eddade326098bad9620003c66200057260201b60201c565b600a620003d49190620009be565b655af3107a4000620003e7919062000afb565b6200057b60201b60201c565b6200044973c76f71c1d8659f7e4f26d081a8074a9c4e65a5206200041c6200057260201b60201c565b600a6200042a9190620009be565b655a6d2fce8a006200043d919062000afb565b6200057b60201b60201c565b6200049e73a1838b8c7df8c17f48a8abea2899d0ab070f53bc620004726200057260201b60201c565b600a620004809190620009be565b6485e0abb60062000492919062000afb565b6200057b60201b60201c565b62000c66565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e590620008b6565b60405180910390fd5b6200060260008383620006f460201b60201c565b806002600082825462000616919062000906565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200066d919062000906565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006d49190620008d8565b60405180910390a3620006f0600083836200076460201b60201c565b5050565b620007046200076960201b60201c565b1562000747576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200073e9062000894565b60405180910390fd5b6200075f8383836200078060201b620009441760201c565b505050565b505050565b6000600560009054906101000a900460ff16905090565b505050565b828054620007939062000b73565b90600052602060002090601f016020900481019282620007b7576000855562000803565b82601f10620007d257805160ff191683800117855562000803565b8280016001018555821562000803579182015b8281111562000802578251825591602001919060010190620007e5565b5b50905062000812919062000816565b5090565b5b808211156200083157600081600090555060010162000817565b5090565b600062000844601083620008f5565b9150620008518262000c14565b602082019050919050565b60006200086b601f83620008f5565b9150620008788262000c3d565b602082019050919050565b6200088e8162000b5c565b82525050565b60006020820190508181036000830152620008af8162000835565b9050919050565b60006020820190508181036000830152620008d1816200085c565b9050919050565b6000602082019050620008ef600083018462000883565b92915050565b600082825260208201905092915050565b6000620009138262000b5c565b9150620009208362000b5c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000958576200095762000ba9565b5b828201905092915050565b6000808291508390505b6001851115620009b5578086048111156200098d576200098c62000ba9565b5b60018516156200099d5780820291505b8081029050620009ad8562000c07565b94506200096d565b94509492505050565b6000620009cb8262000b5c565b9150620009d88362000b66565b925062000a077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a0f565b905092915050565b60008262000a21576001905062000af4565b8162000a31576000905062000af4565b816001811462000a4a576002811462000a555762000a8b565b600191505062000af4565b60ff84111562000a6a5762000a6962000ba9565b5b8360020a91508482111562000a845762000a8362000ba9565b5b5062000af4565b5060208310610133831016604e8410600b841016171562000ac55782820a90508381111562000abf5762000abe62000ba9565b5b62000af4565b62000ad4848484600162000963565b9250905081840481111562000aee5762000aed62000ba9565b5b81810290505b9392505050565b600062000b088262000b5c565b915062000b158362000b5c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b515762000b5062000ba9565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000b8c57607f821691505b6020821081141562000ba35762000ba262000bd8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611a5b8062000c766000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610284578063a457c2d7146102a2578063a9059cbb146102d2578063dd62ed3e14610302578063f2fde38b146103325761010b565b806370a0823114610222578063715018a6146102525780638456cb591461025c5780638da5cb5b146102665761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa5780635c975abb146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861034e565b60405161012591906113d7565b60405180910390f35b6101486004803603810190610143919061116f565b6103e0565b60405161015591906113bc565b60405180910390f35b610166610403565b6040516101739190611559565b60405180910390f35b61019660048036038101906101919190611120565b61040d565b6040516101a391906113bc565b60405180910390f35b6101b461043c565b6040516101c19190611574565b60405180910390f35b6101e460048036038101906101df919061116f565b610445565b6040516101f191906113bc565b60405180910390f35b61020261047c565b005b61020c610502565b60405161021991906113bc565b60405180910390f35b61023c600480360381019061023791906110bb565b610519565b6040516102499190611559565b60405180910390f35b61025a610561565b005b6102646105e9565b005b61026e61066f565b60405161027b91906113a1565b60405180910390f35b61028c610699565b60405161029991906113d7565b60405180910390f35b6102bc60048036038101906102b7919061116f565b61072b565b6040516102c991906113bc565b60405180910390f35b6102ec60048036038101906102e7919061116f565b6107a2565b6040516102f991906113bc565b60405180910390f35b61031c600480360381019061031791906110e4565b6107c5565b6040516103299190611559565b60405180910390f35b61034c600480360381019061034791906110bb565b61084c565b005b60606003805461035d90611689565b80601f016020809104026020016040519081016040528092919081815260200182805461038990611689565b80156103d65780601f106103ab576101008083540402835291602001916103d6565b820191906000526020600020905b8154815290600101906020018083116103b957829003601f168201915b5050505050905090565b6000806103eb610949565b90506103f8818585610951565b600191505092915050565b6000600254905090565b600080610418610949565b9050610425858285610b1c565b610430858585610ba8565b60019150509392505050565b60006012905090565b600080610450610949565b905061047181858561046285896107c5565b61046c91906115ab565b610951565b600191505092915050565b610484610949565b73ffffffffffffffffffffffffffffffffffffffff166104a261066f565b73ffffffffffffffffffffffffffffffffffffffff16146104f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ef906114d9565b60405180910390fd5b610500610e29565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610569610949565b73ffffffffffffffffffffffffffffffffffffffff1661058761066f565b73ffffffffffffffffffffffffffffffffffffffff16146105dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d4906114d9565b60405180910390fd5b6105e76000610ecb565b565b6105f1610949565b73ffffffffffffffffffffffffffffffffffffffff1661060f61066f565b73ffffffffffffffffffffffffffffffffffffffff1614610665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065c906114d9565b60405180910390fd5b61066d610f91565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106a890611689565b80601f01602080910402602001604051908101604052809291908181526020018280546106d490611689565b80156107215780601f106106f657610100808354040283529160200191610721565b820191906000526020600020905b81548152906001019060200180831161070457829003601f168201915b5050505050905090565b600080610736610949565b9050600061074482866107c5565b905083811015610789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078090611539565b60405180910390fd5b6107968286868403610951565b60019250505092915050565b6000806107ad610949565b90506107ba818585610ba8565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610854610949565b73ffffffffffffffffffffffffffffffffffffffff1661087261066f565b73ffffffffffffffffffffffffffffffffffffffff16146108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf906114d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f90611439565b60405180910390fd5b61094181610ecb565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890611519565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890611459565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b0f9190611559565b60405180910390a3505050565b6000610b2884846107c5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ba25781811015610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90611479565b60405180910390fd5b610ba18484848403610951565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f906114f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f906113f9565b60405180910390fd5b610c93838383611034565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1090611499565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dac91906115ab565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e109190611559565b60405180910390a3610e2384848461108c565b50505050565b610e31610502565b610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790611419565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610eb4610949565b604051610ec191906113a1565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610f99610502565b15610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd0906114b9565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861101d610949565b60405161102a91906113a1565b60405180910390a1565b61103c610502565b1561107c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611073906114b9565b60405180910390fd5b611087838383610944565b505050565b505050565b6000813590506110a0816119f7565b92915050565b6000813590506110b581611a0e565b92915050565b6000602082840312156110cd57600080fd5b60006110db84828501611091565b91505092915050565b600080604083850312156110f757600080fd5b600061110585828601611091565b925050602061111685828601611091565b9150509250929050565b60008060006060848603121561113557600080fd5b600061114386828701611091565b935050602061115486828701611091565b9250506040611165868287016110a6565b9150509250925092565b6000806040838503121561118257600080fd5b600061119085828601611091565b92505060206111a1858286016110a6565b9150509250929050565b6111b481611601565b82525050565b6111c381611613565b82525050565b60006111d48261158f565b6111de818561159a565b93506111ee818560208601611656565b6111f781611719565b840191505092915050565b600061120f60238361159a565b915061121a8261172a565b604082019050919050565b600061123260148361159a565b915061123d82611779565b602082019050919050565b600061125560268361159a565b9150611260826117a2565b604082019050919050565b600061127860228361159a565b9150611283826117f1565b604082019050919050565b600061129b601d8361159a565b91506112a682611840565b602082019050919050565b60006112be60268361159a565b91506112c982611869565b604082019050919050565b60006112e160108361159a565b91506112ec826118b8565b602082019050919050565b600061130460208361159a565b915061130f826118e1565b602082019050919050565b600061132760258361159a565b91506113328261190a565b604082019050919050565b600061134a60248361159a565b915061135582611959565b604082019050919050565b600061136d60258361159a565b9150611378826119a8565b604082019050919050565b61138c8161163f565b82525050565b61139b81611649565b82525050565b60006020820190506113b660008301846111ab565b92915050565b60006020820190506113d160008301846111ba565b92915050565b600060208201905081810360008301526113f181846111c9565b905092915050565b6000602082019050818103600083015261141281611202565b9050919050565b6000602082019050818103600083015261143281611225565b9050919050565b6000602082019050818103600083015261145281611248565b9050919050565b600060208201905081810360008301526114728161126b565b9050919050565b600060208201905081810360008301526114928161128e565b9050919050565b600060208201905081810360008301526114b2816112b1565b9050919050565b600060208201905081810360008301526114d2816112d4565b9050919050565b600060208201905081810360008301526114f2816112f7565b9050919050565b600060208201905081810360008301526115128161131a565b9050919050565b600060208201905081810360008301526115328161133d565b9050919050565b6000602082019050818103600083015261155281611360565b9050919050565b600060208201905061156e6000830184611383565b92915050565b60006020820190506115896000830184611392565b92915050565b600081519050919050565b600082825260208201905092915050565b60006115b68261163f565b91506115c18361163f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115f6576115f56116bb565b5b828201905092915050565b600061160c8261161f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611674578082015181840152602081019050611659565b83811115611683576000848401525b50505050565b600060028204905060018216806116a157607f821691505b602082108114156116b5576116b46116ea565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611a0081611601565b8114611a0b57600080fd5b50565b611a178161163f565b8114611a2257600080fd5b5056fea2646970667358221220bffd4f8a1fab504675ac5053db6a06d783a8339286534e9d84b9a68682ae384a64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610284578063a457c2d7146102a2578063a9059cbb146102d2578063dd62ed3e14610302578063f2fde38b146103325761010b565b806370a0823114610222578063715018a6146102525780638456cb591461025c5780638da5cb5b146102665761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa5780635c975abb146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861034e565b60405161012591906113d7565b60405180910390f35b6101486004803603810190610143919061116f565b6103e0565b60405161015591906113bc565b60405180910390f35b610166610403565b6040516101739190611559565b60405180910390f35b61019660048036038101906101919190611120565b61040d565b6040516101a391906113bc565b60405180910390f35b6101b461043c565b6040516101c19190611574565b60405180910390f35b6101e460048036038101906101df919061116f565b610445565b6040516101f191906113bc565b60405180910390f35b61020261047c565b005b61020c610502565b60405161021991906113bc565b60405180910390f35b61023c600480360381019061023791906110bb565b610519565b6040516102499190611559565b60405180910390f35b61025a610561565b005b6102646105e9565b005b61026e61066f565b60405161027b91906113a1565b60405180910390f35b61028c610699565b60405161029991906113d7565b60405180910390f35b6102bc60048036038101906102b7919061116f565b61072b565b6040516102c991906113bc565b60405180910390f35b6102ec60048036038101906102e7919061116f565b6107a2565b6040516102f991906113bc565b60405180910390f35b61031c600480360381019061031791906110e4565b6107c5565b6040516103299190611559565b60405180910390f35b61034c600480360381019061034791906110bb565b61084c565b005b60606003805461035d90611689565b80601f016020809104026020016040519081016040528092919081815260200182805461038990611689565b80156103d65780601f106103ab576101008083540402835291602001916103d6565b820191906000526020600020905b8154815290600101906020018083116103b957829003601f168201915b5050505050905090565b6000806103eb610949565b90506103f8818585610951565b600191505092915050565b6000600254905090565b600080610418610949565b9050610425858285610b1c565b610430858585610ba8565b60019150509392505050565b60006012905090565b600080610450610949565b905061047181858561046285896107c5565b61046c91906115ab565b610951565b600191505092915050565b610484610949565b73ffffffffffffffffffffffffffffffffffffffff166104a261066f565b73ffffffffffffffffffffffffffffffffffffffff16146104f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ef906114d9565b60405180910390fd5b610500610e29565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610569610949565b73ffffffffffffffffffffffffffffffffffffffff1661058761066f565b73ffffffffffffffffffffffffffffffffffffffff16146105dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d4906114d9565b60405180910390fd5b6105e76000610ecb565b565b6105f1610949565b73ffffffffffffffffffffffffffffffffffffffff1661060f61066f565b73ffffffffffffffffffffffffffffffffffffffff1614610665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065c906114d9565b60405180910390fd5b61066d610f91565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106a890611689565b80601f01602080910402602001604051908101604052809291908181526020018280546106d490611689565b80156107215780601f106106f657610100808354040283529160200191610721565b820191906000526020600020905b81548152906001019060200180831161070457829003601f168201915b5050505050905090565b600080610736610949565b9050600061074482866107c5565b905083811015610789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078090611539565b60405180910390fd5b6107968286868403610951565b60019250505092915050565b6000806107ad610949565b90506107ba818585610ba8565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610854610949565b73ffffffffffffffffffffffffffffffffffffffff1661087261066f565b73ffffffffffffffffffffffffffffffffffffffff16146108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf906114d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f90611439565b60405180910390fd5b61094181610ecb565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890611519565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890611459565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b0f9190611559565b60405180910390a3505050565b6000610b2884846107c5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ba25781811015610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90611479565b60405180910390fd5b610ba18484848403610951565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f906114f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f906113f9565b60405180910390fd5b610c93838383611034565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1090611499565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dac91906115ab565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e109190611559565b60405180910390a3610e2384848461108c565b50505050565b610e31610502565b610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790611419565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610eb4610949565b604051610ec191906113a1565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610f99610502565b15610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd0906114b9565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861101d610949565b60405161102a91906113a1565b60405180910390a1565b61103c610502565b1561107c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611073906114b9565b60405180910390fd5b611087838383610944565b505050565b505050565b6000813590506110a0816119f7565b92915050565b6000813590506110b581611a0e565b92915050565b6000602082840312156110cd57600080fd5b60006110db84828501611091565b91505092915050565b600080604083850312156110f757600080fd5b600061110585828601611091565b925050602061111685828601611091565b9150509250929050565b60008060006060848603121561113557600080fd5b600061114386828701611091565b935050602061115486828701611091565b9250506040611165868287016110a6565b9150509250925092565b6000806040838503121561118257600080fd5b600061119085828601611091565b92505060206111a1858286016110a6565b9150509250929050565b6111b481611601565b82525050565b6111c381611613565b82525050565b60006111d48261158f565b6111de818561159a565b93506111ee818560208601611656565b6111f781611719565b840191505092915050565b600061120f60238361159a565b915061121a8261172a565b604082019050919050565b600061123260148361159a565b915061123d82611779565b602082019050919050565b600061125560268361159a565b9150611260826117a2565b604082019050919050565b600061127860228361159a565b9150611283826117f1565b604082019050919050565b600061129b601d8361159a565b91506112a682611840565b602082019050919050565b60006112be60268361159a565b91506112c982611869565b604082019050919050565b60006112e160108361159a565b91506112ec826118b8565b602082019050919050565b600061130460208361159a565b915061130f826118e1565b602082019050919050565b600061132760258361159a565b91506113328261190a565b604082019050919050565b600061134a60248361159a565b915061135582611959565b604082019050919050565b600061136d60258361159a565b9150611378826119a8565b604082019050919050565b61138c8161163f565b82525050565b61139b81611649565b82525050565b60006020820190506113b660008301846111ab565b92915050565b60006020820190506113d160008301846111ba565b92915050565b600060208201905081810360008301526113f181846111c9565b905092915050565b6000602082019050818103600083015261141281611202565b9050919050565b6000602082019050818103600083015261143281611225565b9050919050565b6000602082019050818103600083015261145281611248565b9050919050565b600060208201905081810360008301526114728161126b565b9050919050565b600060208201905081810360008301526114928161128e565b9050919050565b600060208201905081810360008301526114b2816112b1565b9050919050565b600060208201905081810360008301526114d2816112d4565b9050919050565b600060208201905081810360008301526114f2816112f7565b9050919050565b600060208201905081810360008301526115128161131a565b9050919050565b600060208201905081810360008301526115328161133d565b9050919050565b6000602082019050818103600083015261155281611360565b9050919050565b600060208201905061156e6000830184611383565b92915050565b60006020820190506115896000830184611392565b92915050565b600081519050919050565b600082825260208201905092915050565b60006115b68261163f565b91506115c18361163f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115f6576115f56116bb565b5b828201905092915050565b600061160c8261161f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611674578082015181840152602081019050611659565b83811115611683576000848401525b50505050565b600060028204905060018216806116a157607f821691505b602082108114156116b5576116b46116ea565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611a0081611601565b8114611a0b57600080fd5b50565b611a178161163f565b8114611a2257600080fd5b5056fea2646970667358221220bffd4f8a1fab504675ac5053db6a06d783a8339286534e9d84b9a68682ae384a64736f6c63430008040033

Deployed Bytecode Sourcemap

135:1572:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4418:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3229:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5177:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3078:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5858:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1438:63:6;;;:::i;:::-;;1093:84:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3393:125:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1663:101:4;;;:::i;:::-;;1373:59:6;;;:::i;:::-;;1031:85:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2352:102:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6579:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3714:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3961:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1913:198:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2141:98:3;2195:13;2227:5;2220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;:::o;4418:197::-;4501:4;4517:13;4533:12;:10;:12::i;:::-;4517:28;;4555:32;4564:5;4571:7;4580:6;4555:8;:32::i;:::-;4604:4;4597:11;;;4418:197;;;;:::o;3229:106::-;3290:7;3316:12;;3309:19;;3229:106;:::o;5177:286::-;5304:4;5320:15;5338:12;:10;:12::i;:::-;5320:30;;5360:38;5376:4;5382:7;5391:6;5360:15;:38::i;:::-;5408:27;5418:4;5424:2;5428:6;5408:9;:27::i;:::-;5452:4;5445:11;;;5177:286;;;;;:::o;3078:91::-;3136:5;3160:2;3153:9;;3078:91;:::o;5858:234::-;5946:4;5962:13;5978:12;:10;:12::i;:::-;5962:28;;6000:64;6009:5;6016:7;6053:10;6025:25;6035:5;6042:7;6025:9;:25::i;:::-;:38;;;;:::i;:::-;6000:8;:64::i;:::-;6081:4;6074:11;;;5858:234;;;;:::o;1438:63:6:-;1254:12:4;:10;:12::i;:::-;1243:23;;:7;:5;:7::i;:::-;:23;;;1235:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1484:10:6::1;:8;:10::i;:::-;1438:63::o:0;1093:84:5:-;1140:4;1163:7;;;;;;;;;;;1156:14;;1093:84;:::o;3393:125:3:-;3467:7;3493:9;:18;3503:7;3493:18;;;;;;;;;;;;;;;;3486:25;;3393:125;;;:::o;1663:101:4:-;1254:12;:10;:12::i;:::-;1243:23;;:7;:5;:7::i;:::-;:23;;;1235:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1727:30:::1;1754:1;1727:18;:30::i;:::-;1663:101::o:0;1373:59:6:-;1254:12:4;:10;:12::i;:::-;1243:23;;:7;:5;:7::i;:::-;:23;;;1235:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1417:8:6::1;:6;:8::i;:::-;1373:59::o:0;1031:85:4:-;1077:7;1103:6;;;;;;;;;;;1096:13;;1031:85;:::o;2352:102:3:-;2408:13;2440:7;2433:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2352:102;:::o;6579:427::-;6672:4;6688:13;6704:12;:10;:12::i;:::-;6688:28;;6726:24;6753:25;6763:5;6770:7;6753:9;:25::i;:::-;6726:52;;6816:15;6796:16;:35;;6788:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6907:60;6916:5;6923:7;6951:15;6932:16;:34;6907:8;:60::i;:::-;6995:4;6988:11;;;;6579:427;;;;:::o;3714:189::-;3793:4;3809:13;3825:12;:10;:12::i;:::-;3809:28;;3847;3857:5;3864:2;3868:6;3847:9;:28::i;:::-;3892:4;3885:11;;;3714:189;;;;:::o;3961:149::-;4050:7;4076:11;:18;4088:5;4076:18;;;;;;;;;;;;;;;:27;4095:7;4076:27;;;;;;;;;;;;;;;;4069:34;;3961:149;;;;:::o;1913:198:4:-;1254:12;:10;:12::i;:::-;1243:23;;:7;:5;:7::i;:::-;:23;;;1235:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2021:1:::1;2001:22;;:8;:22;;;;1993:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2076:28;2095:8;2076:18;:28::i;:::-;1913:198:::0;:::o;11780:121:3:-;;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;10104:370:3:-;10252:1;10235:19;;:5;:19;;;;10227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10332:1;10313:21;;:7;:21;;;;10305:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10414:6;10384:11;:18;10396:5;10384:18;;;;;;;;;;;;;;;:27;10403:7;10384:27;;;;;;;;;;;;;;;:36;;;;10451:7;10435:32;;10444:5;10435:32;;;10460:6;10435:32;;;;;;:::i;:::-;;;;;;;;10104:370;;;:::o;10755:441::-;10885:24;10912:25;10922:5;10929:7;10912:9;:25::i;:::-;10885:52;;10971:17;10951:16;:37;10947:243;;11032:6;11012:16;:26;;11004:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11114:51;11123:5;11130:7;11158:6;11139:16;:25;11114:8;:51::i;:::-;10947:243;10755:441;;;;:::o;7469:651::-;7611:1;7595:18;;:4;:18;;;;7587:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7687:1;7673:16;;:2;:16;;;;7665:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7740:38;7761:4;7767:2;7771:6;7740:20;:38::i;:::-;7789:19;7811:9;:15;7821:4;7811:15;;;;;;;;;;;;;;;;7789:37;;7859:6;7844:11;:21;;7836:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7974:6;7960:11;:20;7942:9;:15;7952:4;7942:15;;;;;;;;;;;;;;;:38;;;;8017:6;8000:9;:13;8010:2;8000:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8054:2;8039:26;;8048:4;8039:26;;;8058:6;8039:26;;;;;;:::i;:::-;;;;;;;;8076:37;8096:4;8102:2;8106:6;8076:19;:37::i;:::-;7469:651;;;;:::o;2105:117:5:-;1672:8;:6;:8::i;:::-;1664:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2173:5:::1;2163:7;;:15;;;;;;;;;;;;;;;;;;2193:22;2202:12;:10;:12::i;:::-;2193:22;;;;;;:::i;:::-;;;;;;;;2105:117::o:0;2265:187:4:-;2338:16;2357:6;;;;;;;;;;;2338:25;;2382:8;2373:6;;:17;;;;;;;;;;;;;;;;;;2436:8;2405:40;;2426:8;2405:40;;;;;;;;;;;;2265:187;;:::o;1858:115:5:-;1407:8;:6;:8::i;:::-;1406:9;1398:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1927:4:::1;1917:7;;:14;;;;;;;;;;;;;;;;;;1946:20;1953:12;:10;:12::i;:::-;1946:20;;;;;;:::i;:::-;;;;;;;;1858:115::o:0;1507:193:6:-;1407:8:5;:6;:8::i;:::-;1406:9;1398:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1649:44:6::1;1676:4;1682:2;1686:6;1649:26;:44::i;:::-;1507:193:::0;;;:::o;12489:120:3:-;;;;:::o;7:139:7:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;2276:3;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:366::-;2700:3;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2797:93;2886:3;2797:93;:::i;:::-;2915:2;2910:3;2906:12;2899:19;;2704:220;;;:::o;2930:366::-;3072:3;3093:67;3157:2;3152:3;3093:67;:::i;:::-;3086:74;;3169:93;3258:3;3169:93;:::i;:::-;3287:2;3282:3;3278:12;3271:19;;3076:220;;;:::o;3302:366::-;3444:3;3465:67;3529:2;3524:3;3465:67;:::i;:::-;3458:74;;3541:93;3630:3;3541:93;:::i;:::-;3659:2;3654:3;3650:12;3643:19;;3448:220;;;:::o;3674:366::-;3816:3;3837:67;3901:2;3896:3;3837:67;:::i;:::-;3830:74;;3913:93;4002:3;3913:93;:::i;:::-;4031:2;4026:3;4022:12;4015:19;;3820:220;;;:::o;4046:366::-;4188:3;4209:67;4273:2;4268:3;4209:67;:::i;:::-;4202:74;;4285:93;4374:3;4285:93;:::i;:::-;4403:2;4398:3;4394:12;4387:19;;4192:220;;;:::o;4418:366::-;4560:3;4581:67;4645:2;4640:3;4581:67;:::i;:::-;4574:74;;4657:93;4746:3;4657:93;:::i;:::-;4775:2;4770:3;4766:12;4759:19;;4564:220;;;:::o;4790:366::-;4932:3;4953:67;5017:2;5012:3;4953:67;:::i;:::-;4946:74;;5029:93;5118:3;5029:93;:::i;:::-;5147:2;5142:3;5138:12;5131:19;;4936:220;;;:::o;5162:366::-;5304:3;5325:67;5389:2;5384:3;5325:67;:::i;:::-;5318:74;;5401:93;5490:3;5401:93;:::i;:::-;5519:2;5514:3;5510:12;5503:19;;5308:220;;;:::o;5534:366::-;5676:3;5697:67;5761:2;5756:3;5697:67;:::i;:::-;5690:74;;5773:93;5862:3;5773:93;:::i;:::-;5891:2;5886:3;5882:12;5875:19;;5680:220;;;:::o;5906:366::-;6048:3;6069:67;6133:2;6128:3;6069:67;:::i;:::-;6062:74;;6145:93;6234:3;6145:93;:::i;:::-;6263:2;6258:3;6254:12;6247:19;;6052:220;;;:::o;6278:366::-;6420:3;6441:67;6505:2;6500:3;6441:67;:::i;:::-;6434:74;;6517:93;6606:3;6517:93;:::i;:::-;6635:2;6630:3;6626:12;6619:19;;6424:220;;;:::o;6650:118::-;6737:24;6755:5;6737:24;:::i;:::-;6732:3;6725:37;6715:53;;:::o;6774:112::-;6857:22;6873:5;6857:22;:::i;:::-;6852:3;6845:35;6835:51;;:::o;6892:222::-;6985:4;7023:2;7012:9;7008:18;7000:26;;7036:71;7104:1;7093:9;7089:17;7080:6;7036:71;:::i;:::-;6990:124;;;;:::o;7120:210::-;7207:4;7245:2;7234:9;7230:18;7222:26;;7258:65;7320:1;7309:9;7305:17;7296:6;7258:65;:::i;:::-;7212:118;;;;:::o;7336:313::-;7449:4;7487:2;7476:9;7472:18;7464:26;;7536:9;7530:4;7526:20;7522:1;7511:9;7507:17;7500:47;7564:78;7637:4;7628:6;7564:78;:::i;:::-;7556:86;;7454:195;;;;:::o;7655:419::-;7821:4;7859:2;7848:9;7844:18;7836:26;;7908:9;7902:4;7898:20;7894:1;7883:9;7879:17;7872:47;7936:131;8062:4;7936:131;:::i;:::-;7928:139;;7826:248;;;:::o;8080:419::-;8246:4;8284:2;8273:9;8269:18;8261:26;;8333:9;8327:4;8323:20;8319:1;8308:9;8304:17;8297:47;8361:131;8487:4;8361:131;:::i;:::-;8353:139;;8251:248;;;:::o;8505:419::-;8671:4;8709:2;8698:9;8694:18;8686:26;;8758:9;8752:4;8748:20;8744:1;8733:9;8729:17;8722:47;8786:131;8912:4;8786:131;:::i;:::-;8778:139;;8676:248;;;:::o;8930:419::-;9096:4;9134:2;9123:9;9119:18;9111:26;;9183:9;9177:4;9173:20;9169:1;9158:9;9154:17;9147:47;9211:131;9337:4;9211:131;:::i;:::-;9203:139;;9101:248;;;:::o;9355:419::-;9521:4;9559:2;9548:9;9544:18;9536:26;;9608:9;9602:4;9598:20;9594:1;9583:9;9579:17;9572:47;9636:131;9762:4;9636:131;:::i;:::-;9628:139;;9526:248;;;:::o;9780:419::-;9946:4;9984:2;9973:9;9969:18;9961:26;;10033:9;10027:4;10023:20;10019:1;10008:9;10004:17;9997:47;10061:131;10187:4;10061:131;:::i;:::-;10053:139;;9951:248;;;:::o;10205:419::-;10371:4;10409:2;10398:9;10394:18;10386:26;;10458:9;10452:4;10448:20;10444:1;10433:9;10429:17;10422:47;10486:131;10612:4;10486:131;:::i;:::-;10478:139;;10376:248;;;:::o;10630:419::-;10796:4;10834:2;10823:9;10819:18;10811:26;;10883:9;10877:4;10873:20;10869:1;10858:9;10854:17;10847:47;10911:131;11037:4;10911:131;:::i;:::-;10903:139;;10801:248;;;:::o;11055:419::-;11221:4;11259:2;11248:9;11244:18;11236:26;;11308:9;11302:4;11298:20;11294:1;11283:9;11279:17;11272:47;11336:131;11462:4;11336:131;:::i;:::-;11328:139;;11226:248;;;:::o;11480:419::-;11646:4;11684:2;11673:9;11669:18;11661:26;;11733:9;11727:4;11723:20;11719:1;11708:9;11704:17;11697:47;11761:131;11887:4;11761:131;:::i;:::-;11753:139;;11651:248;;;:::o;11905:419::-;12071:4;12109:2;12098:9;12094:18;12086:26;;12158:9;12152:4;12148:20;12144:1;12133:9;12129:17;12122:47;12186:131;12312:4;12186:131;:::i;:::-;12178:139;;12076:248;;;:::o;12330:222::-;12423:4;12461:2;12450:9;12446:18;12438:26;;12474:71;12542:1;12531:9;12527:17;12518:6;12474:71;:::i;:::-;12428:124;;;;:::o;12558:214::-;12647:4;12685:2;12674:9;12670:18;12662:26;;12698:67;12762:1;12751:9;12747:17;12738:6;12698:67;:::i;:::-;12652:120;;;;:::o;12778:99::-;12830:6;12864:5;12858:12;12848:22;;12837:40;;;:::o;12883:169::-;12967:11;13001:6;12996:3;12989:19;13041:4;13036:3;13032:14;13017:29;;12979:73;;;;:::o;13058:305::-;13098:3;13117:20;13135:1;13117:20;:::i;:::-;13112:25;;13151:20;13169:1;13151:20;:::i;:::-;13146:25;;13305:1;13237:66;13233:74;13230:1;13227:81;13224:2;;;13311:18;;:::i;:::-;13224:2;13355:1;13352;13348:9;13341:16;;13102:261;;;;:::o;13369:96::-;13406:7;13435:24;13453:5;13435:24;:::i;:::-;13424:35;;13414:51;;;:::o;13471:90::-;13505:7;13548:5;13541:13;13534:21;13523:32;;13513:48;;;:::o;13567:126::-;13604:7;13644:42;13637:5;13633:54;13622:65;;13612:81;;;:::o;13699:77::-;13736:7;13765:5;13754:16;;13744:32;;;:::o;13782:86::-;13817:7;13857:4;13850:5;13846:16;13835:27;;13825:43;;;:::o;13874:307::-;13942:1;13952:113;13966:6;13963:1;13960:13;13952:113;;;14051:1;14046:3;14042:11;14036:18;14032:1;14027:3;14023:11;14016:39;13988:2;13985:1;13981:10;13976:15;;13952:113;;;14083:6;14080:1;14077:13;14074:2;;;14163:1;14154:6;14149:3;14145:16;14138:27;14074:2;13923:258;;;;:::o;14187:320::-;14231:6;14268:1;14262:4;14258:12;14248:22;;14315:1;14309:4;14305:12;14336:18;14326:2;;14392:4;14384:6;14380:17;14370:27;;14326:2;14454;14446:6;14443:14;14423:18;14420:38;14417:2;;;14473:18;;:::i;:::-;14417:2;14238:269;;;;:::o;14513:180::-;14561:77;14558:1;14551:88;14658:4;14655:1;14648:15;14682:4;14679:1;14672:15;14699:180;14747:77;14744:1;14737:88;14844:4;14841:1;14834:15;14868:4;14865:1;14858:15;14885:102;14926:6;14977:2;14973:7;14968:2;14961:5;14957:14;14953:28;14943:38;;14933:54;;;:::o;14993:222::-;15133:34;15129:1;15121:6;15117:14;15110:58;15202:5;15197:2;15189:6;15185:15;15178:30;15099:116;:::o;15221:170::-;15361:22;15357:1;15349:6;15345:14;15338:46;15327:64;:::o;15397:225::-;15537:34;15533:1;15525:6;15521:14;15514:58;15606:8;15601:2;15593:6;15589:15;15582:33;15503:119;:::o;15628:221::-;15768:34;15764:1;15756:6;15752:14;15745:58;15837:4;15832:2;15824:6;15820:15;15813:29;15734:115;:::o;15855:179::-;15995:31;15991:1;15983:6;15979:14;15972:55;15961:73;:::o;16040:225::-;16180:34;16176:1;16168:6;16164:14;16157:58;16249:8;16244:2;16236:6;16232:15;16225:33;16146:119;:::o;16271:166::-;16411:18;16407:1;16399:6;16395:14;16388:42;16377:60;:::o;16443:182::-;16583:34;16579:1;16571:6;16567:14;16560:58;16549:76;:::o;16631:224::-;16771:34;16767:1;16759:6;16755:14;16748:58;16840:7;16835:2;16827:6;16823:15;16816:32;16737:118;:::o;16861:223::-;17001:34;16997:1;16989:6;16985:14;16978:58;17070:6;17065:2;17057:6;17053:15;17046:31;16967:117;:::o;17090:224::-;17230:34;17226:1;17218:6;17214:14;17207:58;17299:7;17294:2;17286:6;17282:15;17275:32;17196:118;:::o;17320:122::-;17393:24;17411:5;17393:24;:::i;:::-;17386:5;17383:35;17373:2;;17432:1;17429;17422:12;17373:2;17363:79;:::o;17448:122::-;17521:24;17539:5;17521:24;:::i;:::-;17514:5;17511:35;17501:2;;17560:1;17557;17550:12;17501:2;17491:79;:::o

Swarm Source

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