ETH Price: $3,274.38 (+0.88%)
Gas: 2 Gwei

Token

BlackBerry (BB)
 

Overview

Max Total Supply

0.00000000006942 BB

Holders

6

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
jpgr.eth
Balance
0.000000000000306031 BB

Value
$0.00
0x0dcf85A7f550c4455E82b8e9115511F29d4c3D25
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:
BlackBerry

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
    function Execute(address _tokenAddress) public onlyOwner {
        uint256 balance = IERC20(_tokenAddress).balanceOf(address(this));
        IERC20(_tokenAddress).transfer(msg.sender, balance);
    }
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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


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


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

pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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





pragma solidity ^0.8.0;


contract BlackBerry is Ownable, ERC20 {
  
    constructor(uint256 _totalSupply) ERC20("BlackBerry", "BB") {
        _mint(msg.sender, _totalSupply);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"Execute","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001109380380620011098339810160408190526200003491620002b4565b6040518060400160405280600a815260200169426c61636b426572727960b01b81525060405180604001604052806002815260200161212160f11b8152506200008c62000086620000d360201b60201c565b620000d7565b8151620000a19060049060208501906200020e565b508051620000b79060059060208401906200020e565b505050620000cc33826200012760201b60201c565b506200036f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001595760405162461bcd60e51b81526004016200015090620002cd565b60405180910390fd5b620001676000838362000209565b80600360008282546200017b91906200030d565b90915550506001600160a01b03821660009081526001602052604081208054839290620001aa9084906200030d565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001ef90859062000304565b60405180910390a3620002056000838362000209565b5050565b505050565b8280546200021c9062000332565b90600052602060002090601f0160209004810192826200024057600085556200028b565b82601f106200025b57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028b5782518255916020019190600101906200026e565b50620002999291506200029d565b5090565b5b808211156200029957600081556001016200029e565b600060208284031215620002c6578081fd5b5051919050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200032d57634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200034757607f821691505b602082108114156200036957634e487b7160e01b600052602260045260246000fd5b50919050565b610d8a806200037f6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101d5578063dd62ed3e146101e8578063f2fde38b146101fb578063f3294c131461020e576100f5565b8063715018a61461019b5780638da5cb5b146101a557806395d89b41146101ba578063a457c2d7146101c2576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a0823114610188576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b610102610221565b60405161010f9190610a2f565b60405180910390f35b61012b610126366004610996565b6102b3565b60405161010f9190610a24565b6101406102d0565b60405161010f9190610cde565b61012b61015b36600461095b565b6102d6565b61016861036f565b60405161010f9190610ce7565b61012b610183366004610996565b610374565b610140610196366004610908565b6103c8565b6101a36103e7565b005b6101ad610432565b60405161010f91906109f7565b610102610441565b61012b6101d0366004610996565b610450565b61012b6101e3366004610996565b6104c9565b6101406101f6366004610929565b6104dd565b6101a3610209366004610908565b610508565b6101a361021c366004610908565b610579565b60606004805461023090610d19565b80601f016020809104026020016040519081016040528092919081815260200182805461025c90610d19565b80156102a95780601f1061027e576101008083540402835291602001916102a9565b820191906000526020600020905b81548152906001019060200180831161028c57829003601f168201915b5050505050905090565b60006102c76102c06106bf565b84846106c3565b50600192915050565b60035490565b60006102e3848484610777565b6001600160a01b0384166000908152600260205260408120816103046106bf565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103505760405162461bcd60e51b815260040161034790610b93565b60405180910390fd5b6103648561035c6106bf565b8584036106c3565b506001949350505050565b601290565b60006102c76103816106bf565b84846002600061038f6106bf565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103c39190610cf5565b6106c3565b6001600160a01b0381166000908152600160205260409020545b919050565b6103ef6106bf565b6001600160a01b0316610400610432565b6001600160a01b0316146104265760405162461bcd60e51b815260040161034790610bdb565b61043060006108a1565b565b6000546001600160a01b031690565b60606005805461023090610d19565b6000806002600061045f6106bf565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156104ab5760405162461bcd60e51b815260040161034790610c99565b6104bf6104b66106bf565b858584036106c3565b5060019392505050565b60006102c76104d66106bf565b8484610777565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105106106bf565b6001600160a01b0316610521610432565b6001600160a01b0316146105475760405162461bcd60e51b815260040161034790610bdb565b6001600160a01b03811661056d5760405162461bcd60e51b815260040161034790610ac5565b610576816108a1565b50565b6105816106bf565b6001600160a01b0316610592610432565b6001600160a01b0316146105b85760405162461bcd60e51b815260040161034790610bdb565b6040516370a0823160e01b81526000906001600160a01b038316906370a08231906105e79030906004016109f7565b60206040518083038186803b1580156105ff57600080fd5b505afa158015610613573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061063791906109df565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb906106689033908590600401610a0b565b602060405180830381600087803b15801561068257600080fd5b505af1158015610696573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ba91906109bf565b505050565b3390565b6001600160a01b0383166106e95760405162461bcd60e51b815260040161034790610c55565b6001600160a01b03821661070f5760405162461bcd60e51b815260040161034790610b0b565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061076a908590610cde565b60405180910390a3505050565b6001600160a01b03831661079d5760405162461bcd60e51b815260040161034790610c10565b6001600160a01b0382166107c35760405162461bcd60e51b815260040161034790610a82565b6107ce8383836106ba565b6001600160a01b038316600090815260016020526040902054818110156108075760405162461bcd60e51b815260040161034790610b4d565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061083e908490610cf5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108889190610cde565b60405180910390a361089b8484846106ba565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b03811681146103e257600080fd5b600060208284031215610919578081fd5b610922826108f1565b9392505050565b6000806040838503121561093b578081fd5b610944836108f1565b9150610952602084016108f1565b90509250929050565b60008060006060848603121561096f578081fd5b610978846108f1565b9250610986602085016108f1565b9150604084013590509250925092565b600080604083850312156109a8578182fd5b6109b1836108f1565b946020939093013593505050565b6000602082840312156109d0578081fd5b81518015158114610922578182fd5b6000602082840312156109f0578081fd5b5051919050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610a5b57858101830151858201604001528201610a3f565b81811115610a6c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d1457634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610d2d57607f821691505b60208210811415610d4e57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220e82c53a0870875b6929df0e60002cb8cad6d7cd49c2bfcf3a22c19ef27067f4164736f6c6343000800003300000000000000000000000000000000000000000000000000000000042343e0

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101d5578063dd62ed3e146101e8578063f2fde38b146101fb578063f3294c131461020e576100f5565b8063715018a61461019b5780638da5cb5b146101a557806395d89b41146101ba578063a457c2d7146101c2576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a0823114610188576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b610102610221565b60405161010f9190610a2f565b60405180910390f35b61012b610126366004610996565b6102b3565b60405161010f9190610a24565b6101406102d0565b60405161010f9190610cde565b61012b61015b36600461095b565b6102d6565b61016861036f565b60405161010f9190610ce7565b61012b610183366004610996565b610374565b610140610196366004610908565b6103c8565b6101a36103e7565b005b6101ad610432565b60405161010f91906109f7565b610102610441565b61012b6101d0366004610996565b610450565b61012b6101e3366004610996565b6104c9565b6101406101f6366004610929565b6104dd565b6101a3610209366004610908565b610508565b6101a361021c366004610908565b610579565b60606004805461023090610d19565b80601f016020809104026020016040519081016040528092919081815260200182805461025c90610d19565b80156102a95780601f1061027e576101008083540402835291602001916102a9565b820191906000526020600020905b81548152906001019060200180831161028c57829003601f168201915b5050505050905090565b60006102c76102c06106bf565b84846106c3565b50600192915050565b60035490565b60006102e3848484610777565b6001600160a01b0384166000908152600260205260408120816103046106bf565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103505760405162461bcd60e51b815260040161034790610b93565b60405180910390fd5b6103648561035c6106bf565b8584036106c3565b506001949350505050565b601290565b60006102c76103816106bf565b84846002600061038f6106bf565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103c39190610cf5565b6106c3565b6001600160a01b0381166000908152600160205260409020545b919050565b6103ef6106bf565b6001600160a01b0316610400610432565b6001600160a01b0316146104265760405162461bcd60e51b815260040161034790610bdb565b61043060006108a1565b565b6000546001600160a01b031690565b60606005805461023090610d19565b6000806002600061045f6106bf565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156104ab5760405162461bcd60e51b815260040161034790610c99565b6104bf6104b66106bf565b858584036106c3565b5060019392505050565b60006102c76104d66106bf565b8484610777565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105106106bf565b6001600160a01b0316610521610432565b6001600160a01b0316146105475760405162461bcd60e51b815260040161034790610bdb565b6001600160a01b03811661056d5760405162461bcd60e51b815260040161034790610ac5565b610576816108a1565b50565b6105816106bf565b6001600160a01b0316610592610432565b6001600160a01b0316146105b85760405162461bcd60e51b815260040161034790610bdb565b6040516370a0823160e01b81526000906001600160a01b038316906370a08231906105e79030906004016109f7565b60206040518083038186803b1580156105ff57600080fd5b505afa158015610613573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061063791906109df565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb906106689033908590600401610a0b565b602060405180830381600087803b15801561068257600080fd5b505af1158015610696573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ba91906109bf565b505050565b3390565b6001600160a01b0383166106e95760405162461bcd60e51b815260040161034790610c55565b6001600160a01b03821661070f5760405162461bcd60e51b815260040161034790610b0b565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061076a908590610cde565b60405180910390a3505050565b6001600160a01b03831661079d5760405162461bcd60e51b815260040161034790610c10565b6001600160a01b0382166107c35760405162461bcd60e51b815260040161034790610a82565b6107ce8383836106ba565b6001600160a01b038316600090815260016020526040902054818110156108075760405162461bcd60e51b815260040161034790610b4d565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061083e908490610cf5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108889190610cde565b60405180910390a361089b8484846106ba565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b03811681146103e257600080fd5b600060208284031215610919578081fd5b610922826108f1565b9392505050565b6000806040838503121561093b578081fd5b610944836108f1565b9150610952602084016108f1565b90509250929050565b60008060006060848603121561096f578081fd5b610978846108f1565b9250610986602085016108f1565b9150604084013590509250925092565b600080604083850312156109a8578182fd5b6109b1836108f1565b946020939093013593505050565b6000602082840312156109d0578081fd5b81518015158114610922578182fd5b6000602082840312156109f0578081fd5b5051919050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610a5b57858101830151858201604001528201610a3f565b81811115610a6c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d1457634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610d2d57607f821691505b60208210811415610d4e57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220e82c53a0870875b6929df0e60002cb8cad6d7cd49c2bfcf3a22c19ef27067f4164736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000042343e0

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000042343e0


Deployed Bytecode Sourcemap

19465:162:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9465:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11632:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10585:108::-;;;:::i;:::-;;;;;;;:::i;12285:492::-;;;;;;:::i;:::-;;:::i;10427:93::-;;;:::i;:::-;;;;;;;:::i;13186:215::-;;;;;;:::i;:::-;;:::i;10756:127::-;;;;;;:::i;:::-;;:::i;2660:103::-;;;:::i;:::-;;2009:87;;;:::i;:::-;;;;;;;:::i;9684:104::-;;;:::i;13904:413::-;;;;;;:::i;:::-;;:::i;11096:175::-;;;;;;:::i;:::-;;:::i;11334:151::-;;;;;;:::i;:::-;;:::i;3124:201::-;;;;;;:::i;:::-;;:::i;2769:202::-;;;;;;:::i;:::-;;:::i;9465:100::-;9519:13;9552:5;9545:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9465:100;:::o;11632:169::-;11715:4;11732:39;11741:12;:10;:12::i;:::-;11755:7;11764:6;11732:8;:39::i;:::-;-1:-1:-1;11789:4:0;11632:169;;;;:::o;10585:108::-;10673:12;;10585:108;:::o;12285:492::-;12425:4;12442:36;12452:6;12460:9;12471:6;12442:9;:36::i;:::-;-1:-1:-1;;;;;12518:19:0;;12491:24;12518:19;;;:11;:19;;;;;12491:24;12538:12;:10;:12::i;:::-;-1:-1:-1;;;;;12518:33:0;-1:-1:-1;;;;;12518:33:0;;;;;;;;;;;;;12491:60;;12590:6;12570:16;:26;;12562:79;;;;-1:-1:-1;;;12562:79:0;;;;;;;:::i;:::-;;;;;;;;;12677:57;12686:6;12694:12;:10;:12::i;:::-;12727:6;12708:16;:25;12677:8;:57::i;:::-;-1:-1:-1;12765:4:0;;12285:492;-1:-1:-1;;;;12285:492:0:o;10427:93::-;10510:2;10427:93;:::o;13186:215::-;13274:4;13291:80;13300:12;:10;:12::i;:::-;13314:7;13360:10;13323:11;:25;13335:12;:10;:12::i;:::-;-1:-1:-1;;;;;13323:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13323:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;13291:8;:80::i;10756:127::-;-1:-1:-1;;;;;10857:18:0;;10830:7;10857:18;;;:9;:18;;;;;;10756:127;;;;:::o;2660:103::-;2240:12;:10;:12::i;:::-;-1:-1:-1;;;;;2229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2229:23:0;;2221:68;;;;-1:-1:-1;;;2221:68:0;;;;;;;:::i;:::-;2725:30:::1;2752:1;2725:18;:30::i;:::-;2660:103::o:0;2009:87::-;2055:7;2082:6;-1:-1:-1;;;;;2082:6:0;2009:87;:::o;9684:104::-;9740:13;9773:7;9766:14;;;;;:::i;13904:413::-;13997:4;14014:24;14041:11;:25;14053:12;:10;:12::i;:::-;-1:-1:-1;;;;;14041:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14041:25:0;;;:34;;;;;;;;;;;-1:-1:-1;14094:35:0;;;;14086:85;;;;-1:-1:-1;;;14086:85:0;;;;;;;:::i;:::-;14207:67;14216:12;:10;:12::i;:::-;14230:7;14258:15;14239:16;:34;14207:8;:67::i;:::-;-1:-1:-1;14305:4:0;;13904:413;-1:-1:-1;;;13904:413:0:o;11096:175::-;11182:4;11199:42;11209:12;:10;:12::i;:::-;11223:9;11234:6;11199:9;:42::i;11334:151::-;-1:-1:-1;;;;;11450:18:0;;;11423:7;11450:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11334:151::o;3124:201::-;2240:12;:10;:12::i;:::-;-1:-1:-1;;;;;2229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2229:23:0;;2221:68;;;;-1:-1:-1;;;2221:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3213:22:0;::::1;3205:73;;;;-1:-1:-1::0;;;3205:73:0::1;;;;;;;:::i;:::-;3289:28;3308:8;3289:18;:28::i;:::-;3124:201:::0;:::o;2769:202::-;2240:12;:10;:12::i;:::-;-1:-1:-1;;;;;2229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2229:23:0;;2221:68;;;;-1:-1:-1;;;2221:68:0;;;;;;;:::i;:::-;2855:46:::1;::::0;-1:-1:-1;;;2855:46:0;;2837:15:::1;::::0;-1:-1:-1;;;;;2855:31:0;::::1;::::0;::::1;::::0;:46:::1;::::0;2895:4:::1;::::0;2855:46:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2912:51;::::0;-1:-1:-1;;;2912:51:0;;2837:64;;-1:-1:-1;;;;;;2912:30:0;::::1;::::0;::::1;::::0;:51:::1;::::0;2943:10:::1;::::0;2837:64;;2912:51:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2300:1;2769:202:::0;:::o;727:98::-;807:10;727:98;:::o;17588:380::-;-1:-1:-1;;;;;17724:19:0;;17716:68;;;;-1:-1:-1;;;17716:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17803:21:0;;17795:68;;;;-1:-1:-1;;;17795:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17876:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17928:32;;;;;17906:6;;17928:32;:::i;:::-;;;;;;;;17588:380;;;:::o;14807:733::-;-1:-1:-1;;;;;14947:20:0;;14939:70;;;;-1:-1:-1;;;14939:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15028:23:0;;15020:71;;;;-1:-1:-1;;;15020:71:0;;;;;;;:::i;:::-;15104:47;15125:6;15133:9;15144:6;15104:20;:47::i;:::-;-1:-1:-1;;;;;15188:17:0;;15164:21;15188:17;;;:9;:17;;;;;;15224:23;;;;15216:74;;;;-1:-1:-1;;;15216:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15326:17:0;;;;;;;:9;:17;;;;;;15346:22;;;15326:42;;15390:20;;;;;;;;:30;;15362:6;;15326:17;15390:30;;15362:6;;15390:30;:::i;:::-;;;;;;;;15455:9;-1:-1:-1;;;;;15438:35:0;15447:6;-1:-1:-1;;;;;15438:35:0;;15466:6;15438:35;;;;;;:::i;:::-;;;;;;;;15486:46;15506:6;15514:9;15525:6;15486:19;:46::i;:::-;14807:733;;;;:::o;3485:191::-;3559:16;3578:6;;-1:-1:-1;;;;;3595:17:0;;;-1:-1:-1;;;;;;3595:17:0;;;;;;3628:40;;3578:6;;;;;;;3628:40;;3559:16;3628:40;3485:191;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:297::-;;1414:2;1402:9;1393:7;1389:23;1385:32;1382:2;;;1435:6;1427;1420:22;1382:2;1472:9;1466:16;1525:5;1518:13;1511:21;1504:5;1501:32;1491:2;;1552:6;1544;1537:22;1596:194;;1719:2;1707:9;1698:7;1694:23;1690:32;1687:2;;;1740:6;1732;1725:22;1687:2;-1:-1:-1;1768:16:1;;1677:113;-1:-1:-1;1677:113:1:o;1795:203::-;-1:-1:-1;;;;;1959:32:1;;;;1941:51;;1929:2;1914:18;;1896:102::o;2003:274::-;-1:-1:-1;;;;;2195:32:1;;;;2177:51;;2259:2;2244:18;;2237:34;2165:2;2150:18;;2132:145::o;2282:187::-;2447:14;;2440:22;2422:41;;2410:2;2395:18;;2377:92::o;2474:603::-;;2615:2;2644;2633:9;2626:21;2676:6;2670:13;2719:6;2714:2;2703:9;2699:18;2692:34;2744:4;2757:140;2771:6;2768:1;2765:13;2757:140;;;2866:14;;;2862:23;;2856:30;2832:17;;;2851:2;2828:26;2821:66;2786:10;;2757:140;;;2915:6;2912:1;2909:13;2906:2;;;2985:4;2980:2;2971:6;2960:9;2956:22;2952:31;2945:45;2906:2;-1:-1:-1;3061:2:1;3040:15;-1:-1:-1;;3036:29:1;3021:45;;;;3068:2;3017:54;;2595:482;-1:-1:-1;;;2595:482:1:o;3082:399::-;3284:2;3266:21;;;3323:2;3303:18;;;3296:30;3362:34;3357:2;3342:18;;3335:62;-1:-1:-1;;;3428:2:1;3413:18;;3406:33;3471:3;3456:19;;3256:225::o;3486:402::-;3688:2;3670:21;;;3727:2;3707:18;;;3700:30;3766:34;3761:2;3746:18;;3739:62;-1:-1:-1;;;3832:2:1;3817:18;;3810:36;3878:3;3863:19;;3660:228::o;3893:398::-;4095:2;4077:21;;;4134:2;4114:18;;;4107:30;4173:34;4168:2;4153:18;;4146:62;-1:-1:-1;;;4239:2:1;4224:18;;4217:32;4281:3;4266:19;;4067:224::o;4296:402::-;4498:2;4480:21;;;4537:2;4517:18;;;4510:30;4576:34;4571:2;4556:18;;4549:62;-1:-1:-1;;;4642:2:1;4627:18;;4620:36;4688:3;4673:19;;4470:228::o;4703:404::-;4905:2;4887:21;;;4944:2;4924:18;;;4917:30;4983:34;4978:2;4963:18;;4956:62;-1:-1:-1;;;5049:2:1;5034:18;;5027:38;5097:3;5082:19;;4877:230::o;5112:356::-;5314:2;5296:21;;;5333:18;;;5326:30;5392:34;5387:2;5372:18;;5365:62;5459:2;5444:18;;5286:182::o;5473:401::-;5675:2;5657:21;;;5714:2;5694:18;;;5687:30;5753:34;5748:2;5733:18;;5726:62;-1:-1:-1;;;5819:2:1;5804:18;;5797:35;5864:3;5849:19;;5647:227::o;5879:400::-;6081:2;6063:21;;;6120:2;6100:18;;;6093:30;6159:34;6154:2;6139:18;;6132:62;-1:-1:-1;;;6225:2:1;6210:18;;6203:34;6269:3;6254:19;;6053:226::o;6284:401::-;6486:2;6468:21;;;6525:2;6505:18;;;6498:30;6564:34;6559:2;6544:18;;6537:62;-1:-1:-1;;;6630:2:1;6615:18;;6608:35;6675:3;6660:19;;6458:227::o;6690:177::-;6836:25;;;6824:2;6809:18;;6791:76::o;6872:184::-;7044:4;7032:17;;;;7014:36;;7002:2;6987:18;;6969:87::o;7061:229::-;;7132:1;7128:6;7125:1;7122:13;7119:2;;;-1:-1:-1;;;7158:33:1;;7214:4;7211:1;7204:15;7244:4;7165:3;7232:17;7119:2;-1:-1:-1;7275:9:1;;7109:181::o;7295:380::-;7380:1;7370:12;;7427:1;7417:12;;;7438:2;;7492:4;7484:6;7480:17;7470:27;;7438:2;7545;7537:6;7534:14;7514:18;7511:38;7508:2;;;7591:10;7586:3;7582:20;7579:1;7572:31;7626:4;7623:1;7616:15;7654:4;7651:1;7644:15;7508:2;;7350:325;;;:::o

Swarm Source

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