ETH Price: $2,444.13 (-0.29%)

Token

sMCAP (sMCAP)
 

Overview

Max Total Supply

50,536,820.533463368 sMCAP

Holders

263

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.291070042 sMCAP

Value
$0.00
0xcd988b5f0a4deb6ef777e1aa07752a53cdc1a1bf
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:
sMCAP

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-16
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

/**
 * @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);
}

/**
 * @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);
}

/**
 * @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;
    }
}

/**
 * @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 {}
}

contract sMCAP is ERC20 {

    ERC20 public immutable MCAP;

    constructor(ERC20 _MCAP) ERC20("sMCAP", "sMCAP") {
        MCAP = _MCAP;
    }

    function decimals() public view override returns (uint8) {
        return MCAP.decimals();
    }

    function transfer(address, uint256) public pure override returns (bool) {
        revert("Not allowed");
    }

    function allowance(address, address) public pure override returns (uint256) {
        revert("Not allowed");
    }

    function approve(address, uint256) public pure override returns (bool) {
        revert("Not allowed");
    }

    function transferFrom(address, address, uint256) public pure override returns (bool) {
        revert("Not allowed");
    }

    // View function to see pending rewards.
    function pendingRewards(address account) external view returns (uint256) {
        uint256 totalStaked = MCAP.balanceOf(address(this));
        uint256 totalShares = totalSupply();
        return (balanceOf(account) * totalStaked) / totalShares;
    }

    // Deposit staking tokens.
    function deposit(uint256 _amount) external {
        uint256 totalStaked = MCAP.balanceOf(address(this));
        uint256 totalShares = totalSupply();
        uint256 actualAmount = _receiveMCAP(msg.sender, _amount);

        if (totalShares == 0 || totalStaked == 0) {
            _mint(msg.sender, actualAmount);
        } else {
            uint256 what = (actualAmount * totalShares) / totalStaked;
            _mint(msg.sender, what);
        }
    }

    // Withdraw staked MCAP + rewards
    function withdraw(uint256 _share) external {
        uint256 totalShares = totalSupply();
        uint256 what = (_share * MCAP.balanceOf(address(this))) / totalShares;
        _burn(msg.sender, _share);
        MCAP.transfer(msg.sender, what);
    }

    // Receive a token with tax on transfer
    function _receiveMCAP(address from, uint256 amount) internal returns (uint256) {
        uint256 balanceBefore = MCAP.balanceOf(address(this));
        MCAP.transferFrom(from, address(this), amount);
        return MCAP.balanceOf(address(this)) - balanceBefore;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract ERC20","name":"_MCAP","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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":"MCAP","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"pendingRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b50604051620011e1380380620011e1833981016040819052620000349162000149565b6040805180820182526005808252640734d4341560dc1b6020808401828152855180870190965292855284015281519192916200007491600391620000a3565b5080516200008a906004906020840190620000a3565b50505060601b6001600160601b031916608052620001b8565b828054620000b1906200017b565b90600052602060002090601f016020900481019282620000d5576000855562000120565b82601f10620000f057805160ff191683800117855562000120565b8280016001018555821562000120579182015b828111156200012057825182559160200191906001019062000103565b506200012e92915062000132565b5090565b5b808211156200012e576000815560010162000133565b6000602082840312156200015c57600080fd5b81516001600160a01b03811681146200017457600080fd5b9392505050565b600181811c908216806200019057607f821691505b60208210811415620001b257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c610fd26200020f6000396000818161021a015281816103540152818161040a015281816104980152818161054e0152818161071901528181610a8e01528181610b370152610bcd0152610fd26000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c80633950935111610097578063a9059cbb11610066578063a9059cbb14610118578063b6b55f25146101f4578063dd62ed3e14610207578063f6ef00911461021557600080fd5b8063395093511461019d57806370a08231146101b057806395d89b41146101d9578063a457c2d7146101e157600080fd5b806323b872dd116100d357806323b872dd1461014d5780632e1a7d4d1461015b578063313ce5671461017057806331d7a2621461018a57600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610254565b60405161010f9190610e86565b60405180910390f35b61012b610126366004610de5565b6102e6565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b610126366004610da9565b61016e610169366004610e31565b610324565b005b610178610494565b60405160ff909116815260200161010f565b61013f610198366004610d54565b61052c565b61012b6101ab366004610de5565b610614565b61013f6101be366004610d54565b6001600160a01b031660009081526020819052604090205490565b610102610659565b61012b6101ef366004610de5565b610668565b61016e610202366004610e31565b610701565b61013f610126366004610d76565b61023c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161010f565b60606003805461026390610f4b565b80601f016020809104026020016040519081016040528092919081815260200182805461028f90610f4b565b80156102dc5780601f106102b1576101008083540402835291602001916102dc565b820191906000526020600020905b8154815290600101906020018083116102bf57829003601f168201915b5050505050905090565b60405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b60448201526000906064015b60405180910390fd5b600061032f60025490565b6040516370a0823160e01b815230600482015290915060009082906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b15801561039657600080fd5b505afa1580156103aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103ce9190610e4a565b6103d89085610f15565b6103e29190610ef3565b90506103ee3384610801565b60405163a9059cbb60e01b8152336004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb90604401602060405180830381600087803b15801561045657600080fd5b505af115801561046a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048e9190610e0f565b50505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156104ef57600080fd5b505afa158015610503573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105279190610e63565b905090565b6040516370a0823160e01b815230600482015260009081906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b15801561059057600080fd5b505afa1580156105a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c89190610e4a565b905060006105d560025490565b905080826105f8866001600160a01b031660009081526020819052604090205490565b6106029190610f15565b61060c9190610ef3565b949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161065091859061064b908690610edb565b610950565b50600192915050565b60606004805461026390610f4b565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106ea5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161031b565b6106f73385858403610950565b5060019392505050565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b15801561076357600080fd5b505afa158015610777573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079b9190610e4a565b905060006107a860025490565b905060006107b63385610a6c565b90508115806107c3575082155b156107d7576107d23382610c59565b61048e565b6000836107e48484610f15565b6107ee9190610ef3565b90506107fa3382610c59565b5050505050565b6001600160a01b0382166108615760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161031b565b6001600160a01b038216600090815260208190526040902054818110156108d55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161031b565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610904908490610f34565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a3505050565b6001600160a01b0383166109b25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161031b565b6001600160a01b038216610a135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161031b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610943565b6040516370a0823160e01b815230600482015260009081906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b158015610ad057600080fd5b505afa158015610ae4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b089190610e4a565b6040516323b872dd60e01b81526001600160a01b038681166004830152306024830152604482018690529192507f0000000000000000000000000000000000000000000000000000000000000000909116906323b872dd90606401602060405180830381600087803b158015610b7d57600080fd5b505af1158015610b91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb59190610e0f565b506040516370a0823160e01b815230600482015281907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b158015610c1757600080fd5b505afa158015610c2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4f9190610e4a565b61060c9190610f34565b6001600160a01b038216610caf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161031b565b8060026000828254610cc19190610edb565b90915550506001600160a01b03821660009081526020819052604081208054839290610cee908490610edb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b0381168114610d4f57600080fd5b919050565b600060208284031215610d6657600080fd5b610d6f82610d38565b9392505050565b60008060408385031215610d8957600080fd5b610d9283610d38565b9150610da060208401610d38565b90509250929050565b600080600060608486031215610dbe57600080fd5b610dc784610d38565b9250610dd560208501610d38565b9150604084013590509250925092565b60008060408385031215610df857600080fd5b610e0183610d38565b946020939093013593505050565b600060208284031215610e2157600080fd5b81518015158114610d6f57600080fd5b600060208284031215610e4357600080fd5b5035919050565b600060208284031215610e5c57600080fd5b5051919050565b600060208284031215610e7557600080fd5b815160ff81168114610d6f57600080fd5b600060208083528351808285015260005b81811015610eb357858101830151858201604001528201610e97565b81811115610ec5576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610eee57610eee610f86565b500190565b600082610f1057634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610f2f57610f2f610f86565b500290565b600082821015610f4657610f46610f86565b500390565b600181811c90821680610f5f57607f821691505b60208210811415610f8057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212201bd0a1bdd4fbcd76f8f35187a1c0a1e7f3a5fe893059e7104e59bcf9bb82ce2564736f6c63430008070033000000000000000000000000bce0665b20164d6cd6d15e70fed1e094ad4a44f0

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c80633950935111610097578063a9059cbb11610066578063a9059cbb14610118578063b6b55f25146101f4578063dd62ed3e14610207578063f6ef00911461021557600080fd5b8063395093511461019d57806370a08231146101b057806395d89b41146101d9578063a457c2d7146101e157600080fd5b806323b872dd116100d357806323b872dd1461014d5780632e1a7d4d1461015b578063313ce5671461017057806331d7a2621461018a57600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610254565b60405161010f9190610e86565b60405180910390f35b61012b610126366004610de5565b6102e6565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b610126366004610da9565b61016e610169366004610e31565b610324565b005b610178610494565b60405160ff909116815260200161010f565b61013f610198366004610d54565b61052c565b61012b6101ab366004610de5565b610614565b61013f6101be366004610d54565b6001600160a01b031660009081526020819052604090205490565b610102610659565b61012b6101ef366004610de5565b610668565b61016e610202366004610e31565b610701565b61013f610126366004610d76565b61023c7f000000000000000000000000bce0665b20164d6cd6d15e70fed1e094ad4a44f081565b6040516001600160a01b03909116815260200161010f565b60606003805461026390610f4b565b80601f016020809104026020016040519081016040528092919081815260200182805461028f90610f4b565b80156102dc5780601f106102b1576101008083540402835291602001916102dc565b820191906000526020600020905b8154815290600101906020018083116102bf57829003601f168201915b5050505050905090565b60405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b60448201526000906064015b60405180910390fd5b600061032f60025490565b6040516370a0823160e01b815230600482015290915060009082906001600160a01b037f000000000000000000000000bce0665b20164d6cd6d15e70fed1e094ad4a44f016906370a082319060240160206040518083038186803b15801561039657600080fd5b505afa1580156103aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103ce9190610e4a565b6103d89085610f15565b6103e29190610ef3565b90506103ee3384610801565b60405163a9059cbb60e01b8152336004820152602481018290527f000000000000000000000000bce0665b20164d6cd6d15e70fed1e094ad4a44f06001600160a01b03169063a9059cbb90604401602060405180830381600087803b15801561045657600080fd5b505af115801561046a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048e9190610e0f565b50505050565b60007f000000000000000000000000bce0665b20164d6cd6d15e70fed1e094ad4a44f06001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156104ef57600080fd5b505afa158015610503573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105279190610e63565b905090565b6040516370a0823160e01b815230600482015260009081906001600160a01b037f000000000000000000000000bce0665b20164d6cd6d15e70fed1e094ad4a44f016906370a082319060240160206040518083038186803b15801561059057600080fd5b505afa1580156105a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c89190610e4a565b905060006105d560025490565b905080826105f8866001600160a01b031660009081526020819052604090205490565b6106029190610f15565b61060c9190610ef3565b949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161065091859061064b908690610edb565b610950565b50600192915050565b60606004805461026390610f4b565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106ea5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161031b565b6106f73385858403610950565b5060019392505050565b6040516370a0823160e01b81523060048201526000907f000000000000000000000000bce0665b20164d6cd6d15e70fed1e094ad4a44f06001600160a01b0316906370a082319060240160206040518083038186803b15801561076357600080fd5b505afa158015610777573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079b9190610e4a565b905060006107a860025490565b905060006107b63385610a6c565b90508115806107c3575082155b156107d7576107d23382610c59565b61048e565b6000836107e48484610f15565b6107ee9190610ef3565b90506107fa3382610c59565b5050505050565b6001600160a01b0382166108615760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161031b565b6001600160a01b038216600090815260208190526040902054818110156108d55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161031b565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610904908490610f34565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a3505050565b6001600160a01b0383166109b25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161031b565b6001600160a01b038216610a135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161031b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610943565b6040516370a0823160e01b815230600482015260009081906001600160a01b037f000000000000000000000000bce0665b20164d6cd6d15e70fed1e094ad4a44f016906370a082319060240160206040518083038186803b158015610ad057600080fd5b505afa158015610ae4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b089190610e4a565b6040516323b872dd60e01b81526001600160a01b038681166004830152306024830152604482018690529192507f000000000000000000000000bce0665b20164d6cd6d15e70fed1e094ad4a44f0909116906323b872dd90606401602060405180830381600087803b158015610b7d57600080fd5b505af1158015610b91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb59190610e0f565b506040516370a0823160e01b815230600482015281907f000000000000000000000000bce0665b20164d6cd6d15e70fed1e094ad4a44f06001600160a01b0316906370a082319060240160206040518083038186803b158015610c1757600080fd5b505afa158015610c2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4f9190610e4a565b61060c9190610f34565b6001600160a01b038216610caf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161031b565b8060026000828254610cc19190610edb565b90915550506001600160a01b03821660009081526020819052604081208054839290610cee908490610edb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b0381168114610d4f57600080fd5b919050565b600060208284031215610d6657600080fd5b610d6f82610d38565b9392505050565b60008060408385031215610d8957600080fd5b610d9283610d38565b9150610da060208401610d38565b90509250929050565b600080600060608486031215610dbe57600080fd5b610dc784610d38565b9250610dd560208501610d38565b9150604084013590509250925092565b60008060408385031215610df857600080fd5b610e0183610d38565b946020939093013593505050565b600060208284031215610e2157600080fd5b81518015158114610d6f57600080fd5b600060208284031215610e4357600080fd5b5035919050565b600060208284031215610e5c57600080fd5b5051919050565b600060208284031215610e7557600080fd5b815160ff81168114610d6f57600080fd5b600060208083528351808285015260005b81811015610eb357858101830151858201604001528201610e97565b81811115610ec5576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610eee57610eee610f86565b500190565b600082610f1057634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610f2f57610f2f610f86565b500290565b600082821015610f4657610f46610f86565b500390565b600181811c90821680610f5f57607f821691505b60208210811415610f8057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212201bd0a1bdd4fbcd76f8f35187a1c0a1e7f3a5fe893059e7104e59bcf9bb82ce2564736f6c63430008070033

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

000000000000000000000000bce0665b20164d6cd6d15e70fed1e094ad4a44f0

-----Decoded View---------------
Arg [0] : _MCAP (address): 0xbCE0665b20164d6cd6D15E70feD1E094AD4A44f0

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000bce0665b20164d6cd6d15e70fed1e094ad4a44f0


Deployed Bytecode Sourcemap

16045:2195:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6084:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16552:111;;;;;;:::i;:::-;;:::i;:::-;;;3206:14:1;;3199:22;3181:41;;3169:2;3154:18;16552:111:0;3041:187:1;7204:108:0;7292:12;;7204:108;;;6921:25:1;;;6909:2;6894:18;7204:108:0;6775:177:1;16671:125:0;;;;;;:::i;17658:255::-;;;;;;:::i;:::-;;:::i;:::-;;16202:98;;;:::i;:::-;;;7129:4:1;7117:17;;;7099:36;;7087:2;7072:18;16202:98:0;6957:184:1;16850:255:0;;;;;;:::i;:::-;;:::i;9803:215::-;;;;;;:::i;:::-;;:::i;7375:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7476:18:0;7449:7;7476:18;;;;;;;;;;;;7375:127;6303:104;;;:::i;10521:413::-;;;;;;:::i;:::-;;:::i;17145:466::-;;;;;;:::i;:::-;;:::i;16428:116::-;;;;;;:::i;16078:27::-;;;;;;;;-1:-1:-1;;;;;2338:32:1;;;2320:51;;2308:2;2293:18;16078:27:0;2174:203:1;6084:100:0;6138:13;6171:5;6164:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6084:100;:::o;16552:111::-;16634:21;;-1:-1:-1;;;16634:21:0;;5064:2:1;16634:21:0;;;5046::1;5103:2;5083:18;;;5076:30;-1:-1:-1;;;5122:18:1;;;5115:41;16617:4:0;;5173:18:1;;16634:21:0;;;;;;;;17658:255;17712:19;17734:13;7292:12;;;7204:108;17734:13;17783:29;;-1:-1:-1;;;17783:29:0;;17806:4;17783:29;;;2320:51:1;17712:35:0;;-1:-1:-1;17758:12:0;;17712:35;;-1:-1:-1;;;;;17783:4:0;:14;;;;2293:18:1;;17783:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17774:38;;:6;:38;:::i;:::-;17773:54;;;;:::i;:::-;17758:69;;17838:25;17844:10;17856:6;17838:5;:25::i;:::-;17874:31;;-1:-1:-1;;;17874:31:0;;17888:10;17874:31;;;2936:51:1;3003:18;;;2996:34;;;17874:4:0;-1:-1:-1;;;;;17874:13:0;;;;2909:18:1;;17874:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17701:212;;17658:255;:::o;16202:98::-;16252:5;16277:4;-1:-1:-1;;;;;16277:13:0;;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16270:22;;16202:98;:::o;16850:255::-;16956:29;;-1:-1:-1;;;16956:29:0;;16979:4;16956:29;;;2320:51:1;16914:7:0;;;;-1:-1:-1;;;;;16956:4:0;:14;;;;2293:18:1;;16956:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16934:51;;16996:19;17018:13;7292:12;;;7204:108;17018:13;16996:35;;17086:11;17071;17050:18;17060:7;-1:-1:-1;;;;;7476:18:0;7449:7;7476:18;;;;;;;;;;;;7375:127;17050:18;:32;;;;:::i;:::-;17049:48;;;;:::i;:::-;17042:55;16850:255;-1:-1:-1;;;;16850:255:0:o;9803:215::-;3972:10;9891:4;9940:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9940:34:0;;;;;;;;;;9891:4;;9908:80;;9931:7;;9940:47;;9977:10;;9940:47;:::i;:::-;9908:8;:80::i;:::-;-1:-1:-1;10006:4:0;9803:215;;;;:::o;6303:104::-;6359:13;6392:7;6385:14;;;;;:::i;10521:413::-;3972:10;10614:4;10658:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10658:34:0;;;;;;;;;;10711:35;;;;10703:85;;;;-1:-1:-1;;;10703:85:0;;6211:2:1;10703:85:0;;;6193:21:1;6250:2;6230:18;;;6223:30;6289:34;6269:18;;;6262:62;-1:-1:-1;;;6340:18:1;;;6333:35;6385:19;;10703:85:0;6009:401:1;10703:85:0;10824:67;3972:10;10847:7;10875:15;10856:16;:34;10824:8;:67::i;:::-;-1:-1:-1;10922:4:0;;10521:413;-1:-1:-1;;;10521:413:0:o;17145:466::-;17221:29;;-1:-1:-1;;;17221:29:0;;17244:4;17221:29;;;2320:51:1;17199:19:0;;17221:4;-1:-1:-1;;;;;17221:14:0;;;;2293:18:1;;17221:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17199:51;;17261:19;17283:13;7292:12;;;7204:108;17283:13;17261:35;;17307:20;17330:33;17343:10;17355:7;17330:12;:33::i;:::-;17307:56;-1:-1:-1;17380:16:0;;;:36;;-1:-1:-1;17400:16:0;;17380:36;17376:228;;;17433:31;17439:10;17451:12;17433:5;:31::i;:::-;17376:228;;;17497:12;17543:11;17513:26;17528:11;17513:12;:26;:::i;:::-;17512:42;;;;:::i;:::-;17497:57;;17569:23;17575:10;17587:4;17569:5;:23::i;:::-;17482:122;17188:423;;;17145:466;:::o;13176:591::-;-1:-1:-1;;;;;13260:21:0;;13252:67;;;;-1:-1:-1;;;13252:67:0;;5404:2:1;13252:67:0;;;5386:21:1;5443:2;5423:18;;;5416:30;5482:34;5462:18;;;5455:62;-1:-1:-1;;;5533:18:1;;;5526:31;5574:19;;13252:67:0;5202:397:1;13252:67:0;-1:-1:-1;;;;;13419:18:0;;13394:22;13419:18;;;;;;;;;;;13456:24;;;;13448:71;;;;-1:-1:-1;;;13448:71:0;;4258:2:1;13448:71:0;;;4240:21:1;4297:2;4277:18;;;4270:30;4336:34;4316:18;;;4309:62;-1:-1:-1;;;4387:18:1;;;4380:32;4429:19;;13448:71:0;4056:398:1;13448:71:0;-1:-1:-1;;;;;13555:18:0;;:9;:18;;;;;;;;;;13576:23;;;13555:44;;13621:12;:22;;13593:6;;13555:9;13621:22;;13593:6;;13621:22;:::i;:::-;;;;-1:-1:-1;;13661:37:0;;6921:25:1;;;13687:1:0;;-1:-1:-1;;;;;13661:37:0;;;;;6909:2:1;6894:18;13661:37:0;;;;;;;;13241:526;13176:591;;:::o;14205:380::-;-1:-1:-1;;;;;14341:19:0;;14333:68;;;;-1:-1:-1;;;14333:68:0;;5806:2:1;14333:68:0;;;5788:21:1;5845:2;5825:18;;;5818:30;5884:34;5864:18;;;5857:62;-1:-1:-1;;;5935:18:1;;;5928:34;5979:19;;14333:68:0;5604:400:1;14333:68:0;-1:-1:-1;;;;;14420:21:0;;14412:68;;;;-1:-1:-1;;;14412:68:0;;4661:2:1;14412:68:0;;;4643:21:1;4700:2;4680:18;;;4673:30;4739:34;4719:18;;;4712:62;-1:-1:-1;;;4790:18:1;;;4783:32;4832:19;;14412:68:0;4459:398:1;14412:68:0;-1:-1:-1;;;;;14493:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14545:32;;6921:25:1;;;14545:32:0;;6894:18:1;14545:32:0;6775:177:1;17966:271:0;18080:29;;-1:-1:-1;;;18080:29:0;;18103:4;18080:29;;;2320:51:1;18036:7:0;;;;-1:-1:-1;;;;;18080:4:0;:14;;;;2293:18:1;;18080:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18120:46;;-1:-1:-1;;;18120:46:0;;-1:-1:-1;;;;;2640:15:1;;;18120:46:0;;;2622:34:1;18152:4:0;2672:18:1;;;2665:43;2724:18;;;2717:34;;;18056:53:0;;-1:-1:-1;18120:4:0;:17;;;;;;2557:18:1;;18120:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;18184:29:0;;-1:-1:-1;;;18184:29:0;;18207:4;18184:29;;;2320:51:1;18216:13:0;;18184:4;-1:-1:-1;;;;;18184:14:0;;;;2293:18:1;;18184:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45;;;;:::i;12444:399::-;-1:-1:-1;;;;;12528:21:0;;12520:65;;;;-1:-1:-1;;;12520:65:0;;6617:2:1;12520:65:0;;;6599:21:1;6656:2;6636:18;;;6629:30;6695:33;6675:18;;;6668:61;6746:18;;12520:65:0;6415:355:1;12520:65:0;12676:6;12660:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12693:18:0;;:9;:18;;;;;;;;;;:28;;12715:6;;12693:9;:28;;12715:6;;12693:28;:::i;:::-;;;;-1:-1:-1;;12737:37:0;;6921:25:1;;;-1:-1:-1;;;;;12737:37:0;;;12754:1;;12737:37;;6909:2:1;6894:18;12737:37:0;;;;;;;12444:399;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:277::-;1307:6;1360:2;1348:9;1339:7;1335:23;1331:32;1328:52;;;1376:1;1373;1366:12;1328:52;1408:9;1402:16;1461:5;1454:13;1447:21;1440:5;1437:32;1427:60;;1483:1;1480;1473:12;1522:180;1581:6;1634:2;1622:9;1613:7;1609:23;1605:32;1602:52;;;1650:1;1647;1640:12;1602:52;-1:-1:-1;1673:23:1;;1522:180;-1:-1:-1;1522:180:1:o;1707:184::-;1777:6;1830:2;1818:9;1809:7;1805:23;1801:32;1798:52;;;1846:1;1843;1836:12;1798:52;-1:-1:-1;1869:16:1;;1707:184;-1:-1:-1;1707:184:1:o;1896:273::-;1964:6;2017:2;2005:9;1996:7;1992:23;1988:32;1985:52;;;2033:1;2030;2023:12;1985:52;2065:9;2059:16;2115:4;2108:5;2104:16;2097:5;2094:27;2084:55;;2135:1;2132;2125:12;3454:597;3566:4;3595:2;3624;3613:9;3606:21;3656:6;3650:13;3699:6;3694:2;3683:9;3679:18;3672:34;3724:1;3734:140;3748:6;3745:1;3742:13;3734:140;;;3843:14;;;3839:23;;3833:30;3809:17;;;3828:2;3805:26;3798:66;3763:10;;3734:140;;;3892:6;3889:1;3886:13;3883:91;;;3962:1;3957:2;3948:6;3937:9;3933:22;3929:31;3922:42;3883:91;-1:-1:-1;4035:2:1;4014:15;-1:-1:-1;;4010:29:1;3995:45;;;;4042:2;3991:54;;3454:597;-1:-1:-1;;;3454:597:1:o;7146:128::-;7186:3;7217:1;7213:6;7210:1;7207:13;7204:39;;;7223:18;;:::i;:::-;-1:-1:-1;7259:9:1;;7146:128::o;7279:217::-;7319:1;7345;7335:132;;7389:10;7384:3;7380:20;7377:1;7370:31;7424:4;7421:1;7414:15;7452:4;7449:1;7442:15;7335:132;-1:-1:-1;7481:9:1;;7279:217::o;7501:168::-;7541:7;7607:1;7603;7599:6;7595:14;7592:1;7589:21;7584:1;7577:9;7570:17;7566:45;7563:71;;;7614:18;;:::i;:::-;-1:-1:-1;7654:9:1;;7501:168::o;7674:125::-;7714:4;7742:1;7739;7736:8;7733:34;;;7747:18;;:::i;:::-;-1:-1:-1;7784:9:1;;7674:125::o;7804:380::-;7883:1;7879:12;;;;7926;;;7947:61;;8001:4;7993:6;7989:17;7979:27;;7947:61;8054:2;8046:6;8043:14;8023:18;8020:38;8017:161;;;8100:10;8095:3;8091:20;8088:1;8081:31;8135:4;8132:1;8125:15;8163:4;8160:1;8153:15;8017:161;;7804:380;;;:::o;8189:127::-;8250:10;8245:3;8241:20;8238:1;8231:31;8281:4;8278:1;8271:15;8305:4;8302:1;8295:15

Swarm Source

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