ETH Price: $3,054.98 (+3.79%)
Gas: 6 Gwei

Token

Cosmos (ATOM)
 

Overview

Max Total Supply

12,069.126187 ATOM

Holders

296

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

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:
IbcToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-03
*/

// Sources flattened with hardhat v2.6.1 https://hardhat.org

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

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]

/**
 * @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/utils/[email protected]

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

/**
 * @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 guidelines: functions revert instead
 * of 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 {}
}

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(
            currentAllowance >= amount,
            "ERC20: burn amount exceeds allowance"
        );
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

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

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File @openzeppelin/contracts/utils/introspection/[email protected]

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File @openzeppelin/contracts/utils/introspection/[email protected]

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account)
        external
        view
        returns (bool);

    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    function grantRole(bytes32 role, address account) external;

    function revokeRole(bytes32 role, address account) external;

    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(
        bytes32 indexed role,
        bytes32 indexed previousAdminRole,
        bytes32 indexed newAdminRole
    );

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IAccessControl).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account)
        public
        view
        override
        returns (bool)
    {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account)
        public
        virtual
        override
        onlyRole(getRoleAdmin(role))
    {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account)
        public
        virtual
        override
        onlyRole(getRoleAdmin(role))
    {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account)
        public
        virtual
        override
    {
        require(
            account == _msgSender(),
            "AccessControl: can only renounce roles for self"
        );

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File contracts/BridgeBank/IbcToken.sol

/**
 * @title IbcToken
 * @dev Mintable, ERC20Burnable, ERC20 compatible BankToken for use by BridgeBank
 **/
contract IbcToken is ERC20Burnable, AccessControl {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    /**
     * @dev Number of decimals this token uses
     */
    uint8 private _decimals;

    /**
     * @dev The Cosmos denom of this token
     */
    string public cosmosDenom;

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _tokenDecimals,
        string memory _cosmosDenom
    ) ERC20(_name, _symbol) {
        _decimals = _tokenDecimals;
        cosmosDenom = _cosmosDenom;
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
    }

    /**
     * @notice If sender is a Minter, mints `amount` to `user`
     * @param user Address of the recipient
     * @param amount How much should be minted
     * @return true if the operation succeeds
     */
    function mint(address user, uint256 amount)
        external
        onlyRole(MINTER_ROLE)
        returns (bool)
    {
        _mint(user, amount);
        return true;
    }

    /**
     * @notice Number of decimals this token has
     */
    function decimals() public view override returns (uint8) {
        return _decimals;
    }

    /**
     * @notice Sets the cosmosDenom
     * @param denom The new cosmos denom
     * @return true if the operation succeeds
     */
    function setDenom(string calldata denom)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
        returns (bool)
    {
        cosmosDenom = denom;
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_tokenDecimals","type":"uint8"},{"internalType":"string","name":"_cosmosDenom","type":"string"}],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cosmosDenom","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"denom","type":"string"}],"name":"setDenom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"}]

60806040523480156200001157600080fd5b5060405162001a2538038062001a258339810160408190526200003491620002be565b8351849084906200004d9060039060208501906200016d565b508051620000639060049060208401906200016d565b50506006805460ff191660ff85161790555080516200008a9060079060208401906200016d565b5062000098600033620000a2565b50505050620003b8565b620000ae8282620000b2565b5050565b620000be82826200013e565b620000ae5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620000fa62000169565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b3390565b8280546200017b9062000365565b90600052602060002090601f0160209004810192826200019f5760008555620001ea565b82601f10620001ba57805160ff1916838001178555620001ea565b82800160010185558215620001ea579182015b82811115620001ea578251825591602001919060010190620001cd565b50620001f8929150620001fc565b5090565b5b80821115620001f85760008155600101620001fd565b600082601f83011262000224578081fd5b81516001600160401b0380821115620002415762000241620003a2565b6040516020601f8401601f1916820181018381118382101715620002695762000269620003a2565b604052838252858401810187101562000280578485fd5b8492505b83831015620002a3578583018101518284018201529182019162000284565b83831115620002b457848185840101525b5095945050505050565b60008060008060808587031215620002d4578384fd5b84516001600160401b0380821115620002eb578586fd5b620002f98883890162000213565b955060208701519150808211156200030f578485fd5b6200031d8883890162000213565b94506040870151915060ff8216821462000335578384fd5b6060870151919350808211156200034a578283fd5b50620003598782880162000213565b91505092959194509250565b6002810460018216806200037a57607f821691505b602082108114156200039c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61165d80620003c86000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d7146102bb578063a9059cbb146102ce578063d5391393146102e1578063d547741f146102e9578063dd62ed3e146102fc578063de17fcc71461030f57610158565b806370a082311461025f57806379cc67901461027257806391d148541461028557806395d89b4114610298578063a217fddf146102a0578063a2a1c9fe146102a857610158565b80632f2ff15d116101155780632f2ff15d146101e9578063313ce567146101fe57806336568abe14610213578063395093511461022657806340c10f191461023957806342966c681461024c57610158565b806301ffc9a71461015d57806306fdde0314610186578063095ea7b31461019b57806318160ddd146101ae57806323b872dd146101c3578063248a9ca3146101d6575b600080fd5b61017061016b366004611083565b610317565b60405161017d919061118d565b60405180910390f35b61018e610344565b60405161017d91906111a1565b6101706101a9366004611020565b6103d6565b6101b66103f3565b60405161017d9190611198565b6101706101d1366004610fe5565b6103f9565b6101b66101e4366004611049565b610492565b6101fc6101f7366004611061565b6104a7565b005b6102066104d0565b60405161017d9190611537565b6101fc610221366004611061565b6104d9565b610170610234366004611020565b61051f565b610170610247366004611020565b610573565b6101fc61025a366004611049565b6105b6565b6101b661026d366004610f99565b6105ca565b6101fc610280366004611020565b6105e5565b610170610293366004611061565b610633565b61018e61065e565b6101b661066d565b6101706102b63660046110ab565b610672565b6101706102c9366004611020565b61068d565b6101706102dc366004611020565b6106fc565b6101b6610710565b6101fc6102f7366004611061565b610734565b6101b661030a366004610fb3565b610753565b61018e61077e565b60006001600160e01b03198216637965db0b60e01b148061033c575061033c8261080c565b90505b919050565b606060038054610353906115d6565b80601f016020809104026020016040519081016040528092919081815260200182805461037f906115d6565b80156103cc5780601f106103a1576101008083540402835291602001916103cc565b820191906000526020600020905b8154815290600101906020018083116103af57829003601f168201915b5050505050905090565b60006103ea6103e3610825565b8484610829565b50600192915050565b60025490565b60006104068484846108dd565b6001600160a01b038416600090815260016020526040812081610427610825565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104735760405162461bcd60e51b815260040161046a90611316565b60405180910390fd5b6104878561047f610825565b858403610829565b506001949350505050565b60009081526005602052604090206001015490565b6104b082610492565b6104c1816104bc610825565b610a07565b6104cb8383610a6b565b505050565b60065460ff1690565b6104e1610825565b6001600160a01b0316816001600160a01b0316146105115760405162461bcd60e51b815260040161046a906114b1565b61051b8282610af2565b5050565b60006103ea61052c610825565b84846001600061053a610825565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461056e9190611545565b610829565b60007f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66105a2816104bc610825565b6105ac8484610b77565b5060019392505050565b6105c76105c1610825565b82610c3f565b50565b6001600160a01b031660009081526020819052604090205490565b60006105f38361030a610825565b9050818110156106155760405162461bcd60e51b815260040161046a9061135e565b61062983610621610825565b848403610829565b6104cb8383610c3f565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610353906115d6565b600081565b600080610681816104bc610825565b61048760078585610ee9565b6000806001600061069c610825565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106e85760405162461bcd60e51b815260040161046a9061146c565b6105ac6106f3610825565b85858403610829565b60006103ea610709610825565b84846108dd565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61073d82610492565b610749816104bc610825565b6104cb8383610af2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007805461078b906115d6565b80601f01602080910402602001604051908101604052809291908181526020018280546107b7906115d6565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b505050505081565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6001600160a01b03831661084f5760405162461bcd60e51b815260040161046a90611428565b6001600160a01b0382166108755760405162461bcd60e51b815260040161046a9061128e565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108d0908590611198565b60405180910390a3505050565b6001600160a01b0383166109035760405162461bcd60e51b815260040161046a906113e3565b6001600160a01b0382166109295760405162461bcd60e51b815260040161046a90611209565b6109348383836104cb565b6001600160a01b0383166000908152602081905260409020548181101561096d5760405162461bcd60e51b815260040161046a906112d0565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109a4908490611545565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109ee9190611198565b60405180910390a3610a018484846104cb565b50505050565b610a118282610633565b61051b57610a29816001600160a01b03166014610d30565b610a34836020610d30565b604051602001610a45929190611118565b60408051601f198184030181529082905262461bcd60e51b825261046a916004016111a1565b610a758282610633565b61051b5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610aae610825565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610afc8282610633565b1561051b5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19169055610b33610825565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6001600160a01b038216610b9d5760405162461bcd60e51b815260040161046a90611500565b610ba9600083836104cb565b8060026000828254610bbb9190611545565b90915550506001600160a01b03821660009081526020819052604081208054839290610be8908490611545565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c2b908590611198565b60405180910390a361051b600083836104cb565b6001600160a01b038216610c655760405162461bcd60e51b815260040161046a906113a2565b610c71826000836104cb565b6001600160a01b03821660009081526020819052604090205481811015610caa5760405162461bcd60e51b815260040161046a9061124c565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610cd990849061157c565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d1c908690611198565b60405180910390a36104cb836000846104cb565b60606000610d3f83600261155d565b610d4a906002611545565b67ffffffffffffffff811115610d7057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610d9a576020820181803683370190505b509050600360fc1b81600081518110610dc357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610e0057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000610e2484600261155d565b610e2f906001611545565b90505b6001811115610ec3576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610e7157634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110610e9557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93610ebc816115bf565b9050610e32565b508315610ee25760405162461bcd60e51b815260040161046a906111d4565b9392505050565b828054610ef5906115d6565b90600052602060002090601f016020900481019282610f175760008555610f5d565b82601f10610f305782800160ff19823516178555610f5d565b82800160010185558215610f5d579182015b82811115610f5d578235825591602001919060010190610f42565b50610f69929150610f6d565b5090565b5b80821115610f695760008155600101610f6e565b80356001600160a01b038116811461033f57600080fd5b600060208284031215610faa578081fd5b610ee282610f82565b60008060408385031215610fc5578081fd5b610fce83610f82565b9150610fdc60208401610f82565b90509250929050565b600080600060608486031215610ff9578081fd5b61100284610f82565b925061101060208501610f82565b9150604084013590509250925092565b60008060408385031215611032578182fd5b61103b83610f82565b946020939093013593505050565b60006020828403121561105a578081fd5b5035919050565b60008060408385031215611073578182fd5b82359150610fdc60208401610f82565b600060208284031215611094578081fd5b81356001600160e01b031981168114610ee2578182fd5b600080602083850312156110bd578182fd5b823567ffffffffffffffff808211156110d4578384fd5b818501915085601f8301126110e7578384fd5b8135818111156110f5578485fd5b866020828501011115611106578485fd5b60209290920196919550909350505050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351611150816017850160208801611593565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611181816028840160208801611593565b01602801949350505050565b901515815260200190565b90815260200190565b60006020825282518060208401526111c0816040850160208701611593565b601f01601f19169190910160400192915050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60ff91909116815260200190565b6000821982111561155857611558611611565b500190565b600081600019048311821515161561157757611577611611565b500290565b60008282101561158e5761158e611611565b500390565b60005b838110156115ae578181015183820152602001611596565b83811115610a015750506000910152565b6000816115ce576115ce611611565b506000190190565b6002810460018216806115ea57607f821691505b6020821081141561160b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220576a295b33027432a2f780729c5dd14b87fe201c5b379d07bfa924df950fcee064736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000006436f736d6f730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000441544f4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d7146102bb578063a9059cbb146102ce578063d5391393146102e1578063d547741f146102e9578063dd62ed3e146102fc578063de17fcc71461030f57610158565b806370a082311461025f57806379cc67901461027257806391d148541461028557806395d89b4114610298578063a217fddf146102a0578063a2a1c9fe146102a857610158565b80632f2ff15d116101155780632f2ff15d146101e9578063313ce567146101fe57806336568abe14610213578063395093511461022657806340c10f191461023957806342966c681461024c57610158565b806301ffc9a71461015d57806306fdde0314610186578063095ea7b31461019b57806318160ddd146101ae57806323b872dd146101c3578063248a9ca3146101d6575b600080fd5b61017061016b366004611083565b610317565b60405161017d919061118d565b60405180910390f35b61018e610344565b60405161017d91906111a1565b6101706101a9366004611020565b6103d6565b6101b66103f3565b60405161017d9190611198565b6101706101d1366004610fe5565b6103f9565b6101b66101e4366004611049565b610492565b6101fc6101f7366004611061565b6104a7565b005b6102066104d0565b60405161017d9190611537565b6101fc610221366004611061565b6104d9565b610170610234366004611020565b61051f565b610170610247366004611020565b610573565b6101fc61025a366004611049565b6105b6565b6101b661026d366004610f99565b6105ca565b6101fc610280366004611020565b6105e5565b610170610293366004611061565b610633565b61018e61065e565b6101b661066d565b6101706102b63660046110ab565b610672565b6101706102c9366004611020565b61068d565b6101706102dc366004611020565b6106fc565b6101b6610710565b6101fc6102f7366004611061565b610734565b6101b661030a366004610fb3565b610753565b61018e61077e565b60006001600160e01b03198216637965db0b60e01b148061033c575061033c8261080c565b90505b919050565b606060038054610353906115d6565b80601f016020809104026020016040519081016040528092919081815260200182805461037f906115d6565b80156103cc5780601f106103a1576101008083540402835291602001916103cc565b820191906000526020600020905b8154815290600101906020018083116103af57829003601f168201915b5050505050905090565b60006103ea6103e3610825565b8484610829565b50600192915050565b60025490565b60006104068484846108dd565b6001600160a01b038416600090815260016020526040812081610427610825565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104735760405162461bcd60e51b815260040161046a90611316565b60405180910390fd5b6104878561047f610825565b858403610829565b506001949350505050565b60009081526005602052604090206001015490565b6104b082610492565b6104c1816104bc610825565b610a07565b6104cb8383610a6b565b505050565b60065460ff1690565b6104e1610825565b6001600160a01b0316816001600160a01b0316146105115760405162461bcd60e51b815260040161046a906114b1565b61051b8282610af2565b5050565b60006103ea61052c610825565b84846001600061053a610825565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461056e9190611545565b610829565b60007f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66105a2816104bc610825565b6105ac8484610b77565b5060019392505050565b6105c76105c1610825565b82610c3f565b50565b6001600160a01b031660009081526020819052604090205490565b60006105f38361030a610825565b9050818110156106155760405162461bcd60e51b815260040161046a9061135e565b61062983610621610825565b848403610829565b6104cb8383610c3f565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610353906115d6565b600081565b600080610681816104bc610825565b61048760078585610ee9565b6000806001600061069c610825565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106e85760405162461bcd60e51b815260040161046a9061146c565b6105ac6106f3610825565b85858403610829565b60006103ea610709610825565b84846108dd565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61073d82610492565b610749816104bc610825565b6104cb8383610af2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007805461078b906115d6565b80601f01602080910402602001604051908101604052809291908181526020018280546107b7906115d6565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b505050505081565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6001600160a01b03831661084f5760405162461bcd60e51b815260040161046a90611428565b6001600160a01b0382166108755760405162461bcd60e51b815260040161046a9061128e565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108d0908590611198565b60405180910390a3505050565b6001600160a01b0383166109035760405162461bcd60e51b815260040161046a906113e3565b6001600160a01b0382166109295760405162461bcd60e51b815260040161046a90611209565b6109348383836104cb565b6001600160a01b0383166000908152602081905260409020548181101561096d5760405162461bcd60e51b815260040161046a906112d0565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109a4908490611545565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109ee9190611198565b60405180910390a3610a018484846104cb565b50505050565b610a118282610633565b61051b57610a29816001600160a01b03166014610d30565b610a34836020610d30565b604051602001610a45929190611118565b60408051601f198184030181529082905262461bcd60e51b825261046a916004016111a1565b610a758282610633565b61051b5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610aae610825565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610afc8282610633565b1561051b5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19169055610b33610825565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6001600160a01b038216610b9d5760405162461bcd60e51b815260040161046a90611500565b610ba9600083836104cb565b8060026000828254610bbb9190611545565b90915550506001600160a01b03821660009081526020819052604081208054839290610be8908490611545565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c2b908590611198565b60405180910390a361051b600083836104cb565b6001600160a01b038216610c655760405162461bcd60e51b815260040161046a906113a2565b610c71826000836104cb565b6001600160a01b03821660009081526020819052604090205481811015610caa5760405162461bcd60e51b815260040161046a9061124c565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610cd990849061157c565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d1c908690611198565b60405180910390a36104cb836000846104cb565b60606000610d3f83600261155d565b610d4a906002611545565b67ffffffffffffffff811115610d7057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610d9a576020820181803683370190505b509050600360fc1b81600081518110610dc357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610e0057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000610e2484600261155d565b610e2f906001611545565b90505b6001811115610ec3576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610e7157634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110610e9557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93610ebc816115bf565b9050610e32565b508315610ee25760405162461bcd60e51b815260040161046a906111d4565b9392505050565b828054610ef5906115d6565b90600052602060002090601f016020900481019282610f175760008555610f5d565b82601f10610f305782800160ff19823516178555610f5d565b82800160010185558215610f5d579182015b82811115610f5d578235825591602001919060010190610f42565b50610f69929150610f6d565b5090565b5b80821115610f695760008155600101610f6e565b80356001600160a01b038116811461033f57600080fd5b600060208284031215610faa578081fd5b610ee282610f82565b60008060408385031215610fc5578081fd5b610fce83610f82565b9150610fdc60208401610f82565b90509250929050565b600080600060608486031215610ff9578081fd5b61100284610f82565b925061101060208501610f82565b9150604084013590509250925092565b60008060408385031215611032578182fd5b61103b83610f82565b946020939093013593505050565b60006020828403121561105a578081fd5b5035919050565b60008060408385031215611073578182fd5b82359150610fdc60208401610f82565b600060208284031215611094578081fd5b81356001600160e01b031981168114610ee2578182fd5b600080602083850312156110bd578182fd5b823567ffffffffffffffff808211156110d4578384fd5b818501915085601f8301126110e7578384fd5b8135818111156110f5578485fd5b866020828501011115611106578485fd5b60209290920196919550909350505050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351611150816017850160208801611593565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611181816028840160208801611593565b01602801949350505050565b901515815260200190565b90815260200190565b60006020825282518060208401526111c0816040850160208701611593565b601f01601f19169190910160400192915050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60ff91909116815260200190565b6000821982111561155857611558611611565b500190565b600081600019048311821515161561157757611577611611565b500290565b60008282101561158e5761158e611611565b500390565b60005b838110156115ae578181015183820152602001611596565b83811115610a015750506000910152565b6000816115ce576115ce611611565b506000190190565b6002810460018216806115ea57607f821691505b6020821081141561160b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220576a295b33027432a2f780729c5dd14b87fe201c5b379d07bfa924df950fcee064736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000006436f736d6f730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000441544f4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Cosmos
Arg [1] : _symbol (string): ATOM
Arg [2] : _tokenDecimals (uint8): 6
Arg [3] : _cosmosDenom (string):

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 436f736d6f730000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 41544f4d00000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

31200:1549:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26207:280;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6455:100;;;:::i;:::-;;;;;;;:::i;8763:210::-;;;;;;:::i;:::-;;:::i;7575:108::-;;;:::i;:::-;;;;;;;:::i;9455:529::-;;;;;;:::i;:::-;;:::i;27735:123::-;;;;;;:::i;:::-;;:::i;28120:188::-;;;;;;:::i;:::-;;:::i;:::-;;32316:92;;;:::i;:::-;;;;;;;:::i;29250:287::-;;;;;;:::i;:::-;;:::i;10393:297::-;;;;;;:::i;:::-;;:::i;32058:182::-;;;;;;:::i;:::-;;:::i;17285:91::-;;;;;;:::i;:::-;;:::i;7746:177::-;;;;;;:::i;:::-;;:::i;17695:405::-;;;;;;:::i;:::-;;:::i;26579:180::-;;;;;;:::i;:::-;;:::i;6674:104::-;;;:::i;24379:49::-;;;:::i;32560:186::-;;;;;;:::i;:::-;;:::i;11193:482::-;;;;;;:::i;:::-;;:::i;8136:216::-;;;;;;:::i;:::-;;:::i;31257:62::-;;;:::i;28553:190::-;;;;;;:::i;:::-;;:::i;8415:201::-;;;;;;:::i;:::-;;:::i;31488:25::-;;;:::i;26207:280::-;26337:4;-1:-1:-1;;;;;;26379:47:0;;-1:-1:-1;;;26379:47:0;;:100;;;26443:36;26467:11;26443:23;:36::i;:::-;26359:120;;26207:280;;;;:::o;6455:100::-;6509:13;6542:5;6535:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6455:100;:::o;8763:210::-;8882:4;8904:39;8913:12;:10;:12::i;:::-;8927:7;8936:6;8904:8;:39::i;:::-;-1:-1:-1;8961:4:0;8763:210;;;;:::o;7575:108::-;7663:12;;7575:108;:::o;9455:529::-;9595:4;9612:36;9622:6;9630:9;9641:6;9612:9;:36::i;:::-;-1:-1:-1;;;;;9688:19:0;;9661:24;9688:19;;;:11;:19;;;;;9661:24;9708:12;:10;:12::i;:::-;-1:-1:-1;;;;;9688:33:0;-1:-1:-1;;;;;9688:33:0;;;;;;;;;;;;;9661:60;;9774:6;9754:16;:26;;9732:116;;;;-1:-1:-1;;;9732:116:0;;;;;;;:::i;:::-;;;;;;;;;9884:57;9893:6;9901:12;:10;:12::i;:::-;9934:6;9915:16;:25;9884:8;:57::i;:::-;-1:-1:-1;9972:4:0;;9455:529;-1:-1:-1;;;;9455:529:0:o;27735:123::-;27801:7;27828:12;;;:6;:12;;;;;:22;;;;27735:123::o;28120:188::-;28239:18;28252:4;28239:12;:18::i;:::-;26085:30;26096:4;26102:12;:10;:12::i;:::-;26085:10;:30::i;:::-;28275:25:::1;28286:4;28292:7;28275:10;:25::i;:::-;28120:188:::0;;;:::o;32316:92::-;32391:9;;;;32316:92;:::o;29250:287::-;29403:12;:10;:12::i;:::-;-1:-1:-1;;;;;29392:23:0;:7;-1:-1:-1;;;;;29392:23:0;;29370:120;;;;-1:-1:-1;;;29370:120:0;;;;;;;:::i;:::-;29503:26;29515:4;29521:7;29503:11;:26::i;:::-;29250:287;;:::o;10393:297::-;10508:4;10530:130;10553:12;:10;:12::i;:::-;10580:7;10639:10;10602:11;:25;10614:12;:10;:12::i;:::-;-1:-1:-1;;;;;10602:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10602:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;10530:8;:130::i;32058:182::-;32169:4;31295:24;26085:30;26096:4;26102:12;:10;:12::i;26085:30::-;32191:19:::1;32197:4;32203:6;32191:5;:19::i;:::-;-1:-1:-1::0;32228:4:0::1;::::0;32058:182;-1:-1:-1;;;32058:182:0:o;17285:91::-;17341:27;17347:12;:10;:12::i;:::-;17361:6;17341:5;:27::i;:::-;17285:91;:::o;7746:177::-;-1:-1:-1;;;;;7897:18:0;7865:7;7897:18;;;;;;;;;;;;7746:177::o;17695:405::-;17772:24;17799:32;17809:7;17818:12;:10;:12::i;17799:32::-;17772:59;;17884:6;17864:16;:26;;17842:112;;;;-1:-1:-1;;;17842:112:0;;;;;;;:::i;:::-;17990:58;17999:7;18008:12;:10;:12::i;:::-;18041:6;18022:16;:25;17990:8;:58::i;:::-;18070:22;18076:7;18085:6;18070:5;:22::i;26579:180::-;26693:4;26722:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;26722:29:0;;;;;;;;;;;;;;;26579:180::o;6674:104::-;6730:13;6763:7;6756:14;;;;;:::i;24379:49::-;24424:4;24379:49;:::o;32560:186::-;32675:4;;26085:30;32675:4;26102:12;:10;:12::i;26085:30::-;32697:19:::1;:11;32711:5:::0;;32697:19:::1;:::i;11193:482::-:0;11313:4;11335:24;11362:11;:25;11374:12;:10;:12::i;:::-;-1:-1:-1;;;;;11362:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11362:25:0;;;:34;;;;;;;;;;;-1:-1:-1;11429:35:0;;;;11407:122;;;;-1:-1:-1;;;11407:122:0;;;;;;;:::i;:::-;11565:67;11574:12;:10;:12::i;:::-;11588:7;11616:15;11597:16;:34;11565:8;:67::i;8136:216::-;8258:4;8280:42;8290:12;:10;:12::i;:::-;8304:9;8315:6;8280:9;:42::i;31257:62::-;31295:24;31257:62;:::o;28553:190::-;28673:18;28686:4;28673:12;:18::i;:::-;26085:30;26096:4;26102:12;:10;:12::i;26085:30::-;28709:26:::1;28721:4;28727:7;28709:11;:26::i;8415:201::-:0;-1:-1:-1;;;;;8581:18:0;;;8549:7;8581:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8415:201::o;31488:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21779:207::-;-1:-1:-1;;;;;;21938:40:0;;-1:-1:-1;;;21938:40:0;21779:207;;;:::o;4210:98::-;4290:10;4210:98;:::o;14983:380::-;-1:-1:-1;;;;;15119:19:0;;15111:68;;;;-1:-1:-1;;;15111:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15198:21:0;;15190:68;;;;-1:-1:-1;;;15190:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15271:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15323:32;;;;;15301:6;;15323:32;:::i;:::-;;;;;;;;14983:380;;;:::o;12165:770::-;-1:-1:-1;;;;;12305:20:0;;12297:70;;;;-1:-1:-1;;;12297:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12386:23:0;;12378:71;;;;-1:-1:-1;;;12378:71:0;;;;;;;:::i;:::-;12462:47;12483:6;12491:9;12502:6;12462:20;:47::i;:::-;-1:-1:-1;;;;;12546:17:0;;12522:21;12546:17;;;;;;;;;;;12596:23;;;;12574:111;;;;-1:-1:-1;;;12574:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12721:17:0;;;:9;:17;;;;;;;;;;;12741:22;;;12721:42;;12785:20;;;;;;;;:30;;12757:6;;12721:9;12785:30;;12757:6;;12785:30;:::i;:::-;;;;;;;;12850:9;-1:-1:-1;;;;;12833:35:0;12842:6;-1:-1:-1;;;;;12833:35:0;;12861:6;12833:35;;;;;;:::i;:::-;;;;;;;;12881:46;12901:6;12909:9;12920:6;12881:19;:46::i;:::-;12165:770;;;;:::o;27049:497::-;27130:22;27138:4;27144:7;27130;:22::i;:::-;27125:414;;27318:41;27346:7;-1:-1:-1;;;;;27318:41:0;27356:2;27318:19;:41::i;:::-;27432:38;27460:4;27467:2;27432:19;:38::i;:::-;27223:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;27223:270:0;;;;;;;;;;-1:-1:-1;;;27169:358:0;;;;;;;:::i;30567:229::-;30642:22;30650:4;30656:7;30642;:22::i;:::-;30637:152;;30681:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;30681:29:0;;;;;;;;;:36;;-1:-1:-1;;30681:36:0;30713:4;30681:36;;;30764:12;:10;:12::i;:::-;-1:-1:-1;;;;;30737:40:0;30755:7;-1:-1:-1;;;;;30737:40:0;30749:4;30737:40;;;;;;;;;;30567:229;;:::o;30804:230::-;30879:22;30887:4;30893:7;30879;:22::i;:::-;30875:152;;;30950:5;30918:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;30918:29:0;;;;;;;;;:37;;-1:-1:-1;;30918:37:0;;;31002:12;:10;:12::i;:::-;-1:-1:-1;;;;;30975:40:0;30993:7;-1:-1:-1;;;;;30975:40:0;30987:4;30975:40;;;;;;;;;;30804:230;;:::o;13222:399::-;-1:-1:-1;;;;;13306:21:0;;13298:65;;;;-1:-1:-1;;;13298:65:0;;;;;;;:::i;:::-;13376:49;13405:1;13409:7;13418:6;13376:20;:49::i;:::-;13454:6;13438:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13471:18:0;;:9;:18;;;;;;;;;;:28;;13493:6;;13471:9;:28;;13493:6;;13471:28;:::i;:::-;;;;-1:-1:-1;;13515:37:0;;-1:-1:-1;;;;;13515:37:0;;;13532:1;;13515:37;;;;13545:6;;13515:37;:::i;:::-;;;;;;;;13565:48;13593:1;13597:7;13606:6;13565:19;:48::i;13954:591::-;-1:-1:-1;;;;;14038:21:0;;14030:67;;;;-1:-1:-1;;;14030:67:0;;;;;;;:::i;:::-;14110:49;14131:7;14148:1;14152:6;14110:20;:49::i;:::-;-1:-1:-1;;;;;14197:18:0;;14172:22;14197:18;;;;;;;;;;;14234:24;;;;14226:71;;;;-1:-1:-1;;;14226:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14333:18:0;;:9;:18;;;;;;;;;;14354:23;;;14333:44;;14399:12;:22;;14371:6;;14333:9;14399:22;;14371:6;;14399:22;:::i;:::-;;;;-1:-1:-1;;14439:37:0;;14465:1;;-1:-1:-1;;;;;14439:37:0;;;;;;;14469:6;;14439:37;:::i;:::-;;;;;;;;14489:48;14509:7;14526:1;14530:6;14489:19;:48::i;19694:483::-;19796:13;19827:19;19859:10;19863:6;19859:1;:10;:::i;:::-;:14;;19872:1;19859:14;:::i;:::-;19849:25;;;;;;-1:-1:-1;;;19849:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19849:25:0;;19827:47;;-1:-1:-1;;;19885:6:0;19892:1;19885:9;;;;;;-1:-1:-1;;;19885:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;19885:15:0;;;;;;;;;-1:-1:-1;;;19911:6:0;19918:1;19911:9;;;;;;-1:-1:-1;;;19911:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;19911:15:0;;;;;;;;-1:-1:-1;19942:9:0;19954:10;19958:6;19954:1;:10;:::i;:::-;:14;;19967:1;19954:14;:::i;:::-;19942:26;;19937:135;19974:1;19970;:5;19937:135;;;-1:-1:-1;;;20022:5:0;20030:3;20022:11;20009:25;;;;;-1:-1:-1;;;20009:25:0;;;;;;;;;;;;19997:6;20004:1;19997:9;;;;;;-1:-1:-1;;;19997:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;19997:37:0;;;;;;;;-1:-1:-1;20059:1:0;20049:11;;;;;19977:3;;;:::i;:::-;;;19937:135;;;-1:-1:-1;20090:10:0;;20082:55;;;;-1:-1:-1;;;20082:55:0;;;;;;;:::i;:::-;20162:6;19694:483;-1:-1:-1;;;19694:483:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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;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:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:266::-;;;1618:2;1606:9;1597:7;1593:23;1589:32;1586:2;;;1639:6;1631;1624:22;1586:2;1680:9;1667:23;1657:33;;1709:40;1745:2;1734:9;1730:18;1709:40;:::i;1760:306::-;;1871:2;1859:9;1850:7;1846:23;1842:32;1839:2;;;1892:6;1884;1877:22;1839:2;1923:23;;-1:-1:-1;;;;;;1975:32:1;;1965:43;;1955:2;;2027:6;2019;2012:22;2071:642;;;2203:2;2191:9;2182:7;2178:23;2174:32;2171:2;;;2224:6;2216;2209:22;2171:2;2269:9;2256:23;2298:18;2339:2;2331:6;2328:14;2325:2;;;2360:6;2352;2345:22;2325:2;2403:6;2392:9;2388:22;2378:32;;2448:7;2441:4;2437:2;2433:13;2429:27;2419:2;;2475:6;2467;2460:22;2419:2;2520;2507:16;2546:2;2538:6;2535:14;2532:2;;;2567:6;2559;2552:22;2532:2;2617:7;2612:2;2603:6;2599:2;2595:15;2591:24;2588:37;2585:2;;;2643:6;2635;2628:22;2585:2;2679;2671:11;;;;;2701:6;;-1:-1:-1;2161:552:1;;-1:-1:-1;;;;2161:552:1:o;2913:786::-;;3324:25;3319:3;3312:38;3379:6;3373:13;3395:62;3450:6;3445:2;3440:3;3436:12;3429:4;3421:6;3417:17;3395:62;:::i;:::-;-1:-1:-1;;;3516:2:1;3476:16;;;3508:11;;;3501:40;3566:13;;3588:63;3566:13;3637:2;3629:11;;3622:4;3610:17;;3588:63;:::i;:::-;3671:17;3690:2;3667:26;;3302:397;-1:-1:-1;;;;3302:397:1:o;3704:187::-;3869:14;;3862:22;3844:41;;3832:2;3817:18;;3799:92::o;3896:177::-;4042:25;;;4030:2;4015:18;;3997:76::o;4078:383::-;;4227:2;4216:9;4209:21;4259:6;4253:13;4302:6;4297:2;4286:9;4282:18;4275:34;4318:66;4377:6;4372:2;4361:9;4357:18;4352:2;4344:6;4340:15;4318:66;:::i;:::-;4445:2;4424:15;-1:-1:-1;;4420:29:1;4405:45;;;;4452:2;4401:54;;4199:262;-1:-1:-1;;4199:262:1:o;4466:356::-;4668:2;4650:21;;;4687:18;;;4680:30;4746:34;4741:2;4726:18;;4719:62;4813:2;4798:18;;4640:182::o;4827:399::-;5029:2;5011:21;;;5068:2;5048:18;;;5041:30;5107:34;5102:2;5087:18;;5080:62;-1:-1:-1;;;5173:2:1;5158:18;;5151:33;5216:3;5201:19;;5001:225::o;5231:398::-;5433:2;5415:21;;;5472:2;5452:18;;;5445:30;5511:34;5506:2;5491:18;;5484:62;-1:-1:-1;;;5577:2:1;5562:18;;5555:32;5619:3;5604:19;;5405:224::o;5634:398::-;5836:2;5818:21;;;5875:2;5855:18;;;5848:30;5914:34;5909:2;5894:18;;5887:62;-1:-1:-1;;;5980:2:1;5965:18;;5958:32;6022:3;6007:19;;5808:224::o;6037:402::-;6239:2;6221:21;;;6278:2;6258:18;;;6251:30;6317:34;6312:2;6297:18;;6290:62;-1:-1:-1;;;6383:2:1;6368:18;;6361:36;6429:3;6414:19;;6211:228::o;6444:404::-;6646:2;6628:21;;;6685:2;6665:18;;;6658:30;6724:34;6719:2;6704:18;;6697:62;-1:-1:-1;;;6790:2:1;6775:18;;6768:38;6838:3;6823:19;;6618:230::o;6853:400::-;7055:2;7037:21;;;7094:2;7074:18;;;7067:30;7133:34;7128:2;7113:18;;7106:62;-1:-1:-1;;;7199:2:1;7184:18;;7177:34;7243:3;7228:19;;7027:226::o;7258:397::-;7460:2;7442:21;;;7499:2;7479:18;;;7472:30;7538:34;7533:2;7518:18;;7511:62;-1:-1:-1;;;7604:2:1;7589:18;;7582:31;7645:3;7630:19;;7432:223::o;7660:401::-;7862:2;7844:21;;;7901:2;7881:18;;;7874:30;7940:34;7935:2;7920:18;;7913:62;-1:-1:-1;;;8006:2:1;7991:18;;7984:35;8051:3;8036:19;;7834:227::o;8066:400::-;8268:2;8250:21;;;8307:2;8287:18;;;8280:30;8346:34;8341:2;8326:18;;8319:62;-1:-1:-1;;;8412:2:1;8397:18;;8390:34;8456:3;8441:19;;8240:226::o;8471:401::-;8673:2;8655:21;;;8712:2;8692:18;;;8685:30;8751:34;8746:2;8731:18;;8724:62;-1:-1:-1;;;8817:2:1;8802:18;;8795:35;8862:3;8847:19;;8645:227::o;8877:411::-;9079:2;9061:21;;;9118:2;9098:18;;;9091:30;9157:34;9152:2;9137:18;;9130:62;-1:-1:-1;;;9223:2:1;9208:18;;9201:45;9278:3;9263:19;;9051:237::o;9293:355::-;9495:2;9477:21;;;9534:2;9514:18;;;9507:30;9573:33;9568:2;9553:18;;9546:61;9639:2;9624:18;;9467:181::o;9835:184::-;10007:4;9995:17;;;;9977:36;;9965:2;9950:18;;9932:87::o;10024:128::-;;10095:1;10091:6;10088:1;10085:13;10082:2;;;10101:18;;:::i;:::-;-1:-1:-1;10137:9:1;;10072:80::o;10157:168::-;;10263:1;10259;10255:6;10251:14;10248:1;10245:21;10240:1;10233:9;10226:17;10222:45;10219:2;;;10270:18;;:::i;:::-;-1:-1:-1;10310:9:1;;10209:116::o;10330:125::-;;10398:1;10395;10392:8;10389:2;;;10403:18;;:::i;:::-;-1:-1:-1;10440:9:1;;10379:76::o;10460:258::-;10532:1;10542:113;10556:6;10553:1;10550:13;10542:113;;;10632:11;;;10626:18;10613:11;;;10606:39;10578:2;10571:10;10542:113;;;10673:6;10670:1;10667:13;10664:2;;;-1:-1:-1;;10708:1:1;10690:16;;10683:27;10513:205::o;10723:136::-;;10790:5;10780:2;;10799:18;;:::i;:::-;-1:-1:-1;;;10835:18:1;;10770:89::o;10864:380::-;10949:1;10939:12;;10996:1;10986:12;;;11007:2;;11061:4;11053:6;11049:17;11039:27;;11007:2;11114;11106:6;11103:14;11083:18;11080:38;11077:2;;;11160:10;11155:3;11151:20;11148:1;11141:31;11195:4;11192:1;11185:15;11223:4;11220:1;11213:15;11077:2;;10919:325;;;:::o;11249:127::-;11310:10;11305:3;11301:20;11298:1;11291:31;11341:4;11338:1;11331:15;11365:4;11362:1;11355:15

Swarm Source

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