ETH Price: $2,972.49 (-0.59%)
Gas: 7 Gwei

Token

Smudge Lord (SMUDGE)
 

Overview

Max Total Supply

420,690,000,000,000 SMUDGE

Holders

1,213

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000023599356298725 SMUDGE

Value
$0.00
0x7dc49bb1c5566e789e80c90638e6dd5a5e80d1f7
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:
Smudge

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

pragma solidity ^0.8.0;

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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


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


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

pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/Testkitten.sol



pragma solidity ^0.8.0;


contract Smudge is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor(uint256 _totalSupply) ERC20("Smudge Lord", "SMUDGE") {
        _mint(msg.sender, _totalSupply);
    }

    function blacklist(address[] memory _addresses, bool _isBlacklisting) external onlyOwner {
        for (uint i; i < _addresses.length; i++) {
            blacklists[_addresses[i]] = _isBlacklisting;
        }
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620018723803806200187283398101604081905262000034916200045d565b6040518060400160405280600b81526020016a14db5d5919d948131bdc9960aa1b81525060405180604001604052806006815260200165534d5544474560d01b815250620000916200008b620000d860201b60201c565b620000dc565b8151620000a6906004906020850190620003b7565b508051620000bc906005906020840190620003b7565b505050620000d133826200012c60201b60201c565b5062000594565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200015e5760405162461bcd60e51b81526004016200015590620004cd565b60405180910390fd5b6200016c600083836200020e565b806003600082825462000180919062000532565b90915550506001600160a01b03821660009081526001602052604081208054839290620001af90849062000532565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001f490859062000529565b60405180910390a36200020a6000838362000388565b5050565b6001600160a01b0382166000908152600a602052604090205460ff161580156200025157506001600160a01b0383166000908152600a602052604090205460ff16155b620002705760405162461bcd60e51b8152600401620001559062000504565b6009546001600160a01b0316620002ea576200028b6200038d565b6001600160a01b0316836001600160a01b03161480620002c55750620002b06200038d565b6001600160a01b0316826001600160a01b0316145b620002e45760405162461bcd60e51b8152600401620001559062000496565b62000388565b60065460ff1680156200030a57506009546001600160a01b038481169116145b156200038857600754816200032a846200039c60201b6200051f1760201c565b62000336919062000532565b11158015620003695750600854816200035a846200039c60201b6200051f1760201c565b62000366919062000532565b10155b620003885760405162461bcd60e51b8152600401620001559062000476565b505050565b6000546001600160a01b031690565b6001600160a01b031660009081526001602052604090205490565b828054620003c59062000557565b90600052602060002090601f016020900481019282620003e9576000855562000434565b82601f106200040457805160ff191683800117855562000434565b8280016001018555821562000434579182015b828111156200043457825182559160200191906001019062000417565b506200044292915062000446565b5090565b5b8082111562000442576000815560010162000447565b6000602082840312156200046f578081fd5b5051919050565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526016908201527f74726164696e67206973206e6f74207374617274656400000000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b600082198211156200055257634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200056c57607f821691505b602082108114156200058e57634e487b7160e01b600052602260045260246000fd5b50919050565b6112ce80620005a46000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610260578063a457c2d714610268578063a9059cbb1461027b578063c997eb8d1461028e578063dd62ed3e146102a1578063f2fde38b146102b457610142565b806370a082311461022d578063715018a614610240578063860a32ec1461024857806389f9a1d3146102505780638da5cb5b1461025857610142565b806323b872dd1161010a57806323b872dd146101b5578063313ce567146101c857806339509351146101dd5780633aa633aa146101f057806342966c681461020557806349bd5a5e1461021857610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461018557806318160ddd146101985780631ab99e12146101ad575b600080fd5b61014f6102c7565b60405161015c9190610e29565b60405180910390f35b610178610173366004610cb5565b610359565b60405161015c9190610e1e565b610178610193366004610c27565b610376565b6101a061038b565b60405161015c91906111d0565b6101a0610391565b6101786101c3366004610c7a565b610397565b6101d0610430565b60405161015c91906111d9565b6101786101eb366004610cb5565b610435565b6102036101fe366004610db1565b610489565b005b610203610213366004610df2565b610503565b610220610510565b60405161015c9190610e0a565b6101a061023b366004610c27565b61051f565b61020361053e565b610178610589565b6101a0610592565b610220610598565b61014f6105a7565b610178610276366004610cb5565b6105b6565b610178610289366004610cb5565b61062f565b61020361029c366004610cde565b610643565b6101a06102af366004610c48565b6106fc565b6102036102c2366004610c27565b610727565b6060600480546102d690611216565b80601f016020809104026020016040519081016040528092919081815260200182805461030290611216565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b600061036d610366610795565b8484610799565b50600192915050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b60006103a484848461084d565b6001600160a01b0384166000908152600260205260408120816103c5610795565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104115760405162461bcd60e51b815260040161040890610fef565b60405180910390fd5b6104258561041d610795565b858403610799565b506001949350505050565b601290565b600061036d610442610795565b848460026000610450610795565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461048491906111e7565b610799565b610491610795565b6001600160a01b03166104a2610598565b6001600160a01b0316146104c85760405162461bcd60e51b815260040161040890611037565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b61050d3382610977565b50565b6009546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b610546610795565b6001600160a01b0316610557610598565b6001600160a01b03161461057d5760405162461bcd60e51b815260040161040890611037565b6105876000610a68565b565b60065460ff1681565b60075481565b6000546001600160a01b031690565b6060600580546102d690611216565b600080600260006105c5610795565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106115760405162461bcd60e51b815260040161040890611166565b61062561061c610795565b85858403610799565b5060019392505050565b600061036d61063c610795565b848461084d565b61064b610795565b6001600160a01b031661065c610598565b6001600160a01b0316146106825760405162461bcd60e51b815260040161040890611037565b60005b82518110156106f75781600a60008584815181106106b357634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806106ef81611251565b915050610685565b505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61072f610795565b6001600160a01b0316610740610598565b6001600160a01b0316146107665760405162461bcd60e51b815260040161040890611037565b6001600160a01b03811661078c5760405162461bcd60e51b815260040161040890610f01565b61050d81610a68565b3390565b6001600160a01b0383166107bf5760405162461bcd60e51b815260040161040890611122565b6001600160a01b0382166107e55760405162461bcd60e51b815260040161040890610f47565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108409085906111d0565b60405180910390a3505050565b6001600160a01b0383166108735760405162461bcd60e51b8152600401610408906110dd565b6001600160a01b0382166108995760405162461bcd60e51b815260040161040890610e7c565b6108a4838383610ab8565b6001600160a01b038316600090815260016020526040902054818110156108dd5760405162461bcd60e51b815260040161040890610f89565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906109149084906111e7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161095e91906111d0565b60405180910390a36109718484846106f7565b50505050565b6001600160a01b03821661099d5760405162461bcd60e51b81526004016104089061106c565b6109a982600083610ab8565b6001600160a01b038216600090815260016020526040902054818110156109e25760405162461bcd60e51b815260040161040890610ebf565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a119084906111ff565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a549086906111d0565b60405180910390a36106f7836000846106f7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610afa57506001600160a01b0383166000908152600a602052604090205460ff16155b610b165760405162461bcd60e51b8152600401610408906111ab565b6009546001600160a01b0316610b8657610b2e610598565b6001600160a01b0316836001600160a01b03161480610b655750610b50610598565b6001600160a01b0316826001600160a01b0316145b610b815760405162461bcd60e51b8152600401610408906110ad565b6106f7565b60065460ff168015610ba557506009546001600160a01b038481169116145b156106f75760075481610bb78461051f565b610bc191906111e7565b11158015610be4575060085481610bd78461051f565b610be191906111e7565b10155b6106f75760405162461bcd60e51b815260040161040890610fcf565b80356001600160a01b038116811461053957600080fd5b8035801515811461053957600080fd5b600060208284031215610c38578081fd5b610c4182610c00565b9392505050565b60008060408385031215610c5a578081fd5b610c6383610c00565b9150610c7160208401610c00565b90509250929050565b600080600060608486031215610c8e578081fd5b610c9784610c00565b9250610ca560208501610c00565b9150604084013590509250925092565b60008060408385031215610cc7578182fd5b610cd083610c00565b946020939093013593505050565b60008060408385031215610cf0578182fd5b823567ffffffffffffffff80821115610d07578384fd5b818501915085601f830112610d1a578384fd5b8135602082821115610d2e57610d2e611282565b80820260405182828201018181108682111715610d4d57610d4d611282565b604052838152828101945085830182870184018b1015610d6b578889fd5b8896505b84871015610d9457610d8081610c00565b865260019690960195948301948301610d6f565b509650610da49050878201610c17565b9450505050509250929050565b60008060008060808587031215610dc6578081fd5b610dcf85610c17565b9350610ddd60208601610c00565b93969395505050506040820135916060013590565b600060208284031215610e03578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610e5557858101830151858201604001528201610e39565b81811115610e665783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601690820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156111fa576111fa61126c565b500190565b6000828210156112115761121161126c565b500390565b60028104600182168061122a57607f821691505b6020821081141561124b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156112655761126561126c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220495f062fc68cb08d14b52445f61ae452607593cd6daa6ee05116a442c48479d264736f6c6343000800003300000000000000000000000000000000000014bddab3e51a57cff87a50000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610260578063a457c2d714610268578063a9059cbb1461027b578063c997eb8d1461028e578063dd62ed3e146102a1578063f2fde38b146102b457610142565b806370a082311461022d578063715018a614610240578063860a32ec1461024857806389f9a1d3146102505780638da5cb5b1461025857610142565b806323b872dd1161010a57806323b872dd146101b5578063313ce567146101c857806339509351146101dd5780633aa633aa146101f057806342966c681461020557806349bd5a5e1461021857610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461018557806318160ddd146101985780631ab99e12146101ad575b600080fd5b61014f6102c7565b60405161015c9190610e29565b60405180910390f35b610178610173366004610cb5565b610359565b60405161015c9190610e1e565b610178610193366004610c27565b610376565b6101a061038b565b60405161015c91906111d0565b6101a0610391565b6101786101c3366004610c7a565b610397565b6101d0610430565b60405161015c91906111d9565b6101786101eb366004610cb5565b610435565b6102036101fe366004610db1565b610489565b005b610203610213366004610df2565b610503565b610220610510565b60405161015c9190610e0a565b6101a061023b366004610c27565b61051f565b61020361053e565b610178610589565b6101a0610592565b610220610598565b61014f6105a7565b610178610276366004610cb5565b6105b6565b610178610289366004610cb5565b61062f565b61020361029c366004610cde565b610643565b6101a06102af366004610c48565b6106fc565b6102036102c2366004610c27565b610727565b6060600480546102d690611216565b80601f016020809104026020016040519081016040528092919081815260200182805461030290611216565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b600061036d610366610795565b8484610799565b50600192915050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b60006103a484848461084d565b6001600160a01b0384166000908152600260205260408120816103c5610795565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104115760405162461bcd60e51b815260040161040890610fef565b60405180910390fd5b6104258561041d610795565b858403610799565b506001949350505050565b601290565b600061036d610442610795565b848460026000610450610795565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461048491906111e7565b610799565b610491610795565b6001600160a01b03166104a2610598565b6001600160a01b0316146104c85760405162461bcd60e51b815260040161040890611037565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b61050d3382610977565b50565b6009546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b610546610795565b6001600160a01b0316610557610598565b6001600160a01b03161461057d5760405162461bcd60e51b815260040161040890611037565b6105876000610a68565b565b60065460ff1681565b60075481565b6000546001600160a01b031690565b6060600580546102d690611216565b600080600260006105c5610795565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106115760405162461bcd60e51b815260040161040890611166565b61062561061c610795565b85858403610799565b5060019392505050565b600061036d61063c610795565b848461084d565b61064b610795565b6001600160a01b031661065c610598565b6001600160a01b0316146106825760405162461bcd60e51b815260040161040890611037565b60005b82518110156106f75781600a60008584815181106106b357634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806106ef81611251565b915050610685565b505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61072f610795565b6001600160a01b0316610740610598565b6001600160a01b0316146107665760405162461bcd60e51b815260040161040890611037565b6001600160a01b03811661078c5760405162461bcd60e51b815260040161040890610f01565b61050d81610a68565b3390565b6001600160a01b0383166107bf5760405162461bcd60e51b815260040161040890611122565b6001600160a01b0382166107e55760405162461bcd60e51b815260040161040890610f47565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108409085906111d0565b60405180910390a3505050565b6001600160a01b0383166108735760405162461bcd60e51b8152600401610408906110dd565b6001600160a01b0382166108995760405162461bcd60e51b815260040161040890610e7c565b6108a4838383610ab8565b6001600160a01b038316600090815260016020526040902054818110156108dd5760405162461bcd60e51b815260040161040890610f89565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906109149084906111e7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161095e91906111d0565b60405180910390a36109718484846106f7565b50505050565b6001600160a01b03821661099d5760405162461bcd60e51b81526004016104089061106c565b6109a982600083610ab8565b6001600160a01b038216600090815260016020526040902054818110156109e25760405162461bcd60e51b815260040161040890610ebf565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a119084906111ff565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a549086906111d0565b60405180910390a36106f7836000846106f7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610afa57506001600160a01b0383166000908152600a602052604090205460ff16155b610b165760405162461bcd60e51b8152600401610408906111ab565b6009546001600160a01b0316610b8657610b2e610598565b6001600160a01b0316836001600160a01b03161480610b655750610b50610598565b6001600160a01b0316826001600160a01b0316145b610b815760405162461bcd60e51b8152600401610408906110ad565b6106f7565b60065460ff168015610ba557506009546001600160a01b038481169116145b156106f75760075481610bb78461051f565b610bc191906111e7565b11158015610be4575060085481610bd78461051f565b610be191906111e7565b10155b6106f75760405162461bcd60e51b815260040161040890610fcf565b80356001600160a01b038116811461053957600080fd5b8035801515811461053957600080fd5b600060208284031215610c38578081fd5b610c4182610c00565b9392505050565b60008060408385031215610c5a578081fd5b610c6383610c00565b9150610c7160208401610c00565b90509250929050565b600080600060608486031215610c8e578081fd5b610c9784610c00565b9250610ca560208501610c00565b9150604084013590509250925092565b60008060408385031215610cc7578182fd5b610cd083610c00565b946020939093013593505050565b60008060408385031215610cf0578182fd5b823567ffffffffffffffff80821115610d07578384fd5b818501915085601f830112610d1a578384fd5b8135602082821115610d2e57610d2e611282565b80820260405182828201018181108682111715610d4d57610d4d611282565b604052838152828101945085830182870184018b1015610d6b578889fd5b8896505b84871015610d9457610d8081610c00565b865260019690960195948301948301610d6f565b509650610da49050878201610c17565b9450505050509250929050565b60008060008060808587031215610dc6578081fd5b610dcf85610c17565b9350610ddd60208601610c00565b93969395505050506040820135916060013590565b600060208284031215610e03578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610e5557858101830151858201604001528201610e39565b81811115610e665783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601690820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156111fa576111fa61126c565b500190565b6000828210156112115761121161126c565b500390565b60028104600182168061122a57607f821691505b6020821081141561124b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156112655761126561126c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220495f062fc68cb08d14b52445f61ae452607593cd6daa6ee05116a442c48479d264736f6c63430008000033

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

00000000000000000000000000000000000014bddab3e51a57cff87a50000000

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000014bddab3e51a57cff87a50000000


Deployed Bytecode Sourcemap

19344:1546:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9312:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11479:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19522:42::-;;;;;;:::i;:::-;;:::i;10432:108::-;;;:::i;:::-;;;;;;;:::i;19449:31::-;;;:::i;12130:492::-;;;;;;:::i;:::-;;:::i;10274:93::-;;;:::i;:::-;;;;;;;:::i;13031:215::-;;;;;;:::i;:::-;;:::i;19922:301::-;;;;;;:::i;:::-;;:::i;:::-;;20806:81;;;;;;:::i;:::-;;:::i;19487:28::-;;;:::i;:::-;;;;;;;:::i;10603:127::-;;;;;;:::i;:::-;;:::i;2713:103::-;;;:::i;19385:19::-;;;:::i;19411:31::-;;;:::i;2062:87::-;;;:::i;9531:104::-;;;:::i;13749:413::-;;;;;;:::i;:::-;;:::i;10943:175::-;;;;;;:::i;:::-;;:::i;19696:218::-;;;;;;:::i;:::-;;:::i;11181:151::-;;;;;;:::i;:::-;;:::i;2971:201::-;;;;;;:::i;:::-;;:::i;9312:100::-;9366:13;9399:5;9392:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9312:100;:::o;11479:169::-;11562:4;11579:39;11588:12;:10;:12::i;:::-;11602:7;11611:6;11579:8;:39::i;:::-;-1:-1:-1;11636:4:0;11479:169;;;;:::o;19522:42::-;;;;;;;;;;;;;;;:::o;10432:108::-;10520:12;;10432:108;:::o;19449:31::-;;;;:::o;12130:492::-;12270:4;12287:36;12297:6;12305:9;12316:6;12287:9;:36::i;:::-;-1:-1:-1;;;;;12363:19:0;;12336:24;12363:19;;;:11;:19;;;;;12336:24;12383:12;:10;:12::i;:::-;-1:-1:-1;;;;;12363:33:0;-1:-1:-1;;;;;12363:33:0;;;;;;;;;;;;;12336:60;;12435:6;12415:16;:26;;12407:79;;;;-1:-1:-1;;;12407:79:0;;;;;;;:::i;:::-;;;;;;;;;12522:57;12531:6;12539:12;:10;:12::i;:::-;12572:6;12553:16;:25;12522:8;:57::i;:::-;-1:-1:-1;12610:4:0;;12130:492;-1:-1:-1;;;;12130:492:0:o;10274:93::-;10357:2;10274:93;:::o;13031:215::-;13119:4;13136:80;13145:12;:10;:12::i;:::-;13159:7;13205:10;13168:11;:25;13180:12;:10;:12::i;:::-;-1:-1:-1;;;;;13168:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13168:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;13136:8;:80::i;19922:301::-;2293:12;:10;:12::i;:::-;-1:-1:-1;;;;;2282:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2282:23:0;;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;20062:7:::1;:18:::0;;-1:-1:-1;;20062:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;20091:13:::1;:30:::0;;-1:-1:-1;;;;;;20091:30:0::1;-1:-1:-1::0;;;;;20091:30:0;;;::::1;::::0;;;::::1;::::0;;;20132:16:::1;:36:::0;20179:16:::1;:36:::0;19922:301::o;20806:81::-;20855:24;20861:10;20873:5;20855;:24::i;:::-;20806:81;:::o;19487:28::-;;;-1:-1:-1;;;;;19487:28:0;;:::o;10603:127::-;-1:-1:-1;;;;;10704:18:0;;10677:7;10704:18;;;:9;:18;;;;;;10603:127;;;;:::o;2713:103::-;2293:12;:10;:12::i;:::-;-1:-1:-1;;;;;2282:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2282:23:0;;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;2778:30:::1;2805:1;2778:18;:30::i;:::-;2713:103::o:0;19385:19::-;;;;;;:::o;19411:31::-;;;;:::o;2062:87::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;2062:87;:::o;9531:104::-;9587:13;9620:7;9613:14;;;;;:::i;13749:413::-;13842:4;13859:24;13886:11;:25;13898:12;:10;:12::i;:::-;-1:-1:-1;;;;;13886:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13886:25:0;;;:34;;;;;;;;;;;-1:-1:-1;13939:35:0;;;;13931:85;;;;-1:-1:-1;;;13931:85:0;;;;;;;:::i;:::-;14052:67;14061:12;:10;:12::i;:::-;14075:7;14103:15;14084:16;:34;14052:8;:67::i;:::-;-1:-1:-1;14150:4:0;;13749:413;-1:-1:-1;;;13749:413:0:o;10943:175::-;11029:4;11046:42;11056:12;:10;:12::i;:::-;11070:9;11081:6;11046:9;:42::i;19696:218::-;2293:12;:10;:12::i;:::-;-1:-1:-1;;;;;2282:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2282:23:0;;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;19801:6:::1;19796:111;19813:10;:17;19809:1;:21;19796:111;;;19880:15;19852:10;:25;19863:10;19874:1;19863:13;;;;;;-1:-1:-1::0;;;19863:13:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;19852:25:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;19852:25:0;:43;;-1:-1:-1;;19852:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19832:3;::::1;::::0;::::1;:::i;:::-;;;;19796:111;;;;19696:218:::0;;:::o;11181:151::-;-1:-1:-1;;;;;11297:18:0;;;11270:7;11297:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11181:151::o;2971:201::-;2293:12;:10;:12::i;:::-;-1:-1:-1;;;;;2282:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2282:23:0;;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3060:22:0;::::1;3052:73;;;;-1:-1:-1::0;;;3052:73:0::1;;;;;;;:::i;:::-;3136:28;3155:8;3136:18;:28::i;780:98::-:0;860:10;780:98;:::o;17433:380::-;-1:-1:-1;;;;;17569:19:0;;17561:68;;;;-1:-1:-1;;;17561:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17648:21:0;;17640:68;;;;-1:-1:-1;;;17640:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17721:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17773:32;;;;;17751:6;;17773:32;:::i;:::-;;;;;;;;17433:380;;;:::o;14652:733::-;-1:-1:-1;;;;;14792:20:0;;14784:70;;;;-1:-1:-1;;;14784:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14873:23:0;;14865:71;;;;-1:-1:-1;;;14865:71:0;;;;;;;:::i;:::-;14949:47;14970:6;14978:9;14989:6;14949:20;:47::i;:::-;-1:-1:-1;;;;;15033:17:0;;15009:21;15033:17;;;:9;:17;;;;;;15069:23;;;;15061:74;;;;-1:-1:-1;;;15061:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15171:17:0;;;;;;;:9;:17;;;;;;15191:22;;;15171:42;;15235:20;;;;;;;;:30;;15207:6;;15171:17;15235:30;;15207:6;;15235:30;:::i;:::-;;;;;;;;15300:9;-1:-1:-1;;;;;15283:35:0;15292:6;-1:-1:-1;;;;;15283:35:0;;15311:6;15283:35;;;;;;:::i;:::-;;;;;;;;15331:46;15351:6;15359:9;15370:6;15331:19;:46::i;:::-;14652:733;;;;:::o;16404:591::-;-1:-1:-1;;;;;16488:21:0;;16480:67;;;;-1:-1:-1;;;16480:67:0;;;;;;;:::i;:::-;16560:49;16581:7;16598:1;16602:6;16560:20;:49::i;:::-;-1:-1:-1;;;;;16647:18:0;;16622:22;16647:18;;;:9;:18;;;;;;16684:24;;;;16676:71;;;;-1:-1:-1;;;16676:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16783:18:0;;;;;;:9;:18;;;;;16804:23;;;16783:44;;16849:12;:22;;16821:6;;16783:18;16849:22;;16821:6;;16849:22;:::i;:::-;;;;-1:-1:-1;;16889:37:0;;16915:1;;-1:-1:-1;;;;;16889:37:0;;;;;;;16919:6;;16889:37;:::i;:::-;;;;;;;;16939:48;16959:7;16976:1;16980:6;16939:19;:48::i;3332:191::-;3406:16;3425:6;;-1:-1:-1;;;;;3442:17:0;;;-1:-1:-1;;;;;;3442:17:0;;;;;;3475:40;;3425:6;;;;;;;3475:40;;3406:16;3475:40;3332:191;;:::o;20231:567::-;-1:-1:-1;;;;;20383:14:0;;;;;;:10;:14;;;;;;;;20382:15;:36;;;;-1:-1:-1;;;;;;20402:16:0;;;;;;:10;:16;;;;;;;;20401:17;20382:36;20374:60;;;;-1:-1:-1;;;20374:60:0;;;;;;;:::i;:::-;20451:13;;-1:-1:-1;;;;;20451:13:0;20447:148;;20511:7;:5;:7::i;:::-;-1:-1:-1;;;;;20503:15:0;:4;-1:-1:-1;;;;;20503:15:0;;:32;;;;20528:7;:5;:7::i;:::-;-1:-1:-1;;;;;20522:13:0;:2;-1:-1:-1;;;;;20522:13:0;;20503:32;20495:67;;;;-1:-1:-1;;;20495:67:0;;;;;;;:::i;:::-;20577:7;;20447:148;20611:7;;;;:32;;;;-1:-1:-1;20630:13:0;;-1:-1:-1;;;;;20622:21:0;;;20630:13;;20622:21;20611:32;20607:184;;;20700:16;;20690:6;20668:19;20684:2;20668:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20752:16;;20742:6;20720:19;20736:2;20720:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20668:100;20660:119;;;;-1:-1:-1;;;20660:119:0;;;;;;;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:162;261:20;;317:13;;310:21;300:32;;290:2;;346:1;343;336:12;361:198;;473:2;461:9;452:7;448:23;444:32;441:2;;;494:6;486;479:22;441:2;522:31;543:9;522:31;:::i;:::-;512:41;431:128;-1:-1:-1;;;431:128:1:o;564:274::-;;;693:2;681:9;672:7;668:23;664:32;661:2;;;714:6;706;699:22;661:2;742:31;763:9;742:31;:::i;:::-;732:41;;792:40;828:2;817:9;813:18;792:40;:::i;:::-;782:50;;651:187;;;;;:::o;843:342::-;;;;989:2;977:9;968:7;964:23;960:32;957:2;;;1010:6;1002;995:22;957:2;1038:31;1059:9;1038:31;:::i;:::-;1028:41;;1088:40;1124:2;1113:9;1109:18;1088:40;:::i;:::-;1078:50;;1175:2;1164:9;1160:18;1147:32;1137:42;;947:238;;;;;:::o;1190:266::-;;;1319:2;1307:9;1298:7;1294:23;1290:32;1287:2;;;1340:6;1332;1325:22;1287:2;1368:31;1389:9;1368:31;:::i;:::-;1358:41;1446:2;1431:18;;;;1418:32;;-1:-1:-1;;;1277:179:1:o;1461:1238::-;;;1612:2;1600:9;1591:7;1587:23;1583:32;1580:2;;;1633:6;1625;1618:22;1580:2;1678:9;1665:23;1707:18;1748:2;1740:6;1737:14;1734:2;;;1769:6;1761;1754:22;1734:2;1812:6;1801:9;1797:22;1787:32;;1857:7;1850:4;1846:2;1842:13;1838:27;1828:2;;1884:6;1876;1869:22;1828:2;1925;1912:16;1947:4;1970:2;1966;1963:10;1960:2;;;1976:18;;:::i;:::-;2023:2;2019;2015:11;2055:2;2049:9;2106:2;2101;2093:6;2089:15;2085:24;2159:6;2147:10;2144:22;2139:2;2127:10;2124:18;2121:46;2118:2;;;2170:18;;:::i;:::-;2206:2;2199:22;2256:18;;;2290:15;;;;-1:-1:-1;2325:11:1;;;2355;;;2351:20;;2348:33;-1:-1:-1;2345:2:1;;;2399:6;2391;2384:22;2345:2;2426:6;2417:15;;2441:171;2455:2;2452:1;2449:9;2441:171;;;2512:25;2533:3;2512:25;:::i;:::-;2500:38;;2473:1;2466:9;;;;;2558:12;;;;2590;;2441:171;;;-1:-1:-1;2631:6:1;-1:-1:-1;2656:37:1;;-1:-1:-1;2674:18:1;;;2656:37;:::i;:::-;2646:47;;;;;;1570:1129;;;;;:::o;2704:405::-;;;;;2864:3;2852:9;2843:7;2839:23;2835:33;2832:2;;;2886:6;2878;2871:22;2832:2;2914:28;2932:9;2914:28;:::i;:::-;2904:38;;2961:40;2997:2;2986:9;2982:18;2961:40;:::i;:::-;2822:287;;2951:50;;-1:-1:-1;;;;3048:2:1;3033:18;;3020:32;;3099:2;3084:18;3071:32;;2822:287::o;3114:190::-;;3226:2;3214:9;3205:7;3201:23;3197:32;3194:2;;;3247:6;3239;3232:22;3194:2;-1:-1:-1;3275:23:1;;3184:120;-1:-1:-1;3184:120:1:o;3309:203::-;-1:-1:-1;;;;;3473:32:1;;;;3455:51;;3443:2;3428:18;;3410:102::o;3517:187::-;3682:14;;3675:22;3657:41;;3645:2;3630:18;;3612:92::o;3709:603::-;;3850:2;3879;3868:9;3861:21;3911:6;3905:13;3954:6;3949:2;3938:9;3934:18;3927:34;3979:4;3992:140;4006:6;4003:1;4000:13;3992:140;;;4101:14;;;4097:23;;4091:30;4067:17;;;4086:2;4063:26;4056:66;4021:10;;3992:140;;;4150:6;4147:1;4144:13;4141:2;;;4220:4;4215:2;4206:6;4195:9;4191:22;4187:31;4180:45;4141:2;-1:-1:-1;4296:2:1;4275:15;-1:-1:-1;;4271:29:1;4256:45;;;;4303:2;4252:54;;3830:482;-1:-1:-1;;;3830:482:1:o;4317:399::-;4519:2;4501:21;;;4558:2;4538:18;;;4531:30;4597:34;4592:2;4577:18;;4570:62;-1:-1:-1;;;4663:2:1;4648:18;;4641:33;4706:3;4691:19;;4491:225::o;4721:398::-;4923:2;4905:21;;;4962:2;4942:18;;;4935:30;5001:34;4996:2;4981:18;;4974:62;-1:-1:-1;;;5067:2:1;5052:18;;5045:32;5109:3;5094:19;;4895:224::o;5124:402::-;5326:2;5308:21;;;5365:2;5345:18;;;5338:30;5404:34;5399:2;5384:18;;5377:62;-1:-1:-1;;;5470:2:1;5455:18;;5448:36;5516:3;5501:19;;5298:228::o;5531:398::-;5733:2;5715:21;;;5772:2;5752:18;;;5745:30;5811:34;5806:2;5791:18;;5784:62;-1:-1:-1;;;5877:2:1;5862:18;;5855:32;5919:3;5904:19;;5705:224::o;5934:402::-;6136:2;6118:21;;;6175:2;6155:18;;;6148:30;6214:34;6209:2;6194:18;;6187:62;-1:-1:-1;;;6280:2:1;6265:18;;6258:36;6326:3;6311:19;;6108:228::o;6341:329::-;6543:2;6525:21;;;6582:1;6562:18;;;6555:29;-1:-1:-1;;;6615:2:1;6600:18;;6593:36;6661:2;6646:18;;6515:155::o;6675:404::-;6877:2;6859:21;;;6916:2;6896:18;;;6889:30;6955:34;6950:2;6935:18;;6928:62;-1:-1:-1;;;7021:2:1;7006:18;;6999:38;7069:3;7054:19;;6849:230::o;7084:356::-;7286:2;7268:21;;;7305:18;;;7298:30;7364:34;7359:2;7344:18;;7337:62;7431:2;7416:18;;7258:182::o;7445:397::-;7647:2;7629:21;;;7686:2;7666:18;;;7659:30;7725:34;7720:2;7705:18;;7698:62;-1:-1:-1;;;7791:2:1;7776:18;;7769:31;7832:3;7817:19;;7619:223::o;7847:346::-;8049:2;8031:21;;;8088:2;8068:18;;;8061:30;-1:-1:-1;;;8122:2:1;8107:18;;8100:52;8184:2;8169:18;;8021:172::o;8198:401::-;8400:2;8382:21;;;8439:2;8419:18;;;8412:30;8478:34;8473:2;8458:18;;8451:62;-1:-1:-1;;;8544:2:1;8529:18;;8522:35;8589:3;8574:19;;8372:227::o;8604:400::-;8806:2;8788:21;;;8845:2;8825:18;;;8818:30;8884:34;8879:2;8864:18;;8857:62;-1:-1:-1;;;8950:2:1;8935:18;;8928:34;8994:3;8979:19;;8778:226::o;9009:401::-;9211:2;9193:21;;;9250:2;9230:18;;;9223:30;9289:34;9284:2;9269:18;;9262:62;-1:-1:-1;;;9355:2:1;9340:18;;9333:35;9400:3;9385:19;;9183:227::o;9415:335::-;9617:2;9599:21;;;9656:2;9636:18;;;9629:30;-1:-1:-1;;;9690:2:1;9675:18;;9668:41;9741:2;9726:18;;9589:161::o;9755:177::-;9901:25;;;9889:2;9874:18;;9856:76::o;9937:184::-;10109:4;10097:17;;;;10079:36;;10067:2;10052:18;;10034:87::o;10126:128::-;;10197:1;10193:6;10190:1;10187:13;10184:2;;;10203:18;;:::i;:::-;-1:-1:-1;10239:9:1;;10174:80::o;10259:125::-;;10327:1;10324;10321:8;10318:2;;;10332:18;;:::i;:::-;-1:-1:-1;10369:9:1;;10308:76::o;10389:380::-;10474:1;10464:12;;10521:1;10511:12;;;10532:2;;10586:4;10578:6;10574:17;10564:27;;10532:2;10639;10631:6;10628:14;10608:18;10605:38;10602:2;;;10685:10;10680:3;10676:20;10673:1;10666:31;10720:4;10717:1;10710:15;10748:4;10745:1;10738:15;10602:2;;10444:325;;;:::o;10774:135::-;;-1:-1:-1;;10834:17:1;;10831:2;;;10854:18;;:::i;:::-;-1:-1:-1;10901:1:1;10890:13;;10821:88::o;10914:127::-;10975:10;10970:3;10966:20;10963:1;10956:31;11006:4;11003:1;10996:15;11030:4;11027:1;11020:15;11046:127;11107:10;11102:3;11098:20;11095:1;11088:31;11138:4;11135:1;11128:15;11162:4;11159:1;11152:15

Swarm Source

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