ETH Price: $2,518.21 (+2.78%)

Token

Cat (CAT)
 

Overview

Max Total Supply

420,000,000 CAT

Holders

126

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Cat

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
Website: cattoken.vip

Twitter: https://twitter.com/cattokenerc

Telegram: t.me/cattokenerc
*/

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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);
}

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);
}


contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 to 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 {}
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract Cat is ERC20, Ownable {

    bool tradingActive = false;
    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;


    constructor() ERC20("Cat", "CAT") {
        
        address _owner = msg.sender;
        uint256 totalSupply = 420000000 * 1e18;
        
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(_owner, totalSupply);
        transferOwnership(_owner);
        excludeFromFees(_owner, true);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        if(!tradingActive){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
        }

        super._transfer(from, to, amount);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }

    function isExcludedFromFees(address account) external view returns(bool) {
        return _isExcludedFromFees[account];
    }

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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"}]

60806040526005805460ff60a01b191690553480156200001e57600080fd5b5060408051808201825260038082526210d85d60ea1b602080840191825284518086019095528285526210d05560ea1b90850152825192939262000064929190620003e7565b5080516200007a906004906020840190620003e7565b50505060006200008f6200010660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000906000805160206200127c833981519152908290a350336b015b6a759f4835dc24000000620000e682826200010a565b620000f1826200020a565b620000fe82600162000307565b5050620004f1565b3390565b6001600160a01b038216620001665760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b62000182816002546200037d60201b620006551790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001b5918390620006556200037d821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620002555760405162461bcd60e51b815260206004820181905260248201526000805160206200125c83398151915260448201526064016200015d565b6001600160a01b038116620002bc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200015d565b6005546040516001600160a01b038084169216906000805160206200127c83398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314620003525760405162461bcd60e51b815260206004820181905260248201526000805160206200125c83398151915260448201526064016200015d565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000806200038c83856200048d565b905083811015620003e05760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200015d565b9392505050565b828054620003f590620004b4565b90600052602060002090601f01602090048101928262000419576000855562000464565b82601f106200043457805160ff191683800117855562000464565b8280016001018555821562000464579182015b828111156200046457825182559160200191906001019062000447565b506200047292915062000476565b5090565b5b8082111562000472576000815560010162000477565b60008219821115620004af57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620004c957607f821691505b60208210811415620004eb57634e487b7160e01b600052602260045260246000fd5b50919050565b610d5b80620005016000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610222578063a9059cbb14610235578063c024666814610248578063dd62ed3e1461025b578063f2fde38b1461029457600080fd5b8063715018a6146101ed5780638a8c523c146101f75780638da5cb5b146101ff57806395d89b411461021a57600080fd5b8063313ce567116100de578063313ce5671461017657806339509351146101855780634fbee1931461019857806370a08231146101c457600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102a7565b6040516101259190610a14565b60405180910390f35b61014161013c366004610a85565b610339565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610aaf565b61034f565b60405160128152602001610125565b610141610193366004610a85565b6103b8565b6101416101a6366004610aeb565b6001600160a01b031660009081526006602052604090205460ff1690565b6101556101d2366004610aeb565b6001600160a01b031660009081526020819052604090205490565b6101f56103ee565b005b6101f561046b565b6005546040516001600160a01b039091168152602001610125565b6101186104aa565b610141610230366004610a85565b6104b9565b610141610243366004610a85565b610508565b6101f5610256366004610b06565b610515565b610155610269366004610b42565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101f56102a2366004610aeb565b61056a565b6060600380546102b690610b75565b80601f01602080910402602001604051908101604052809291908181526020018280546102e290610b75565b801561032f5780601f106103045761010080835404028352916020019161032f565b820191906000526020600020905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b60006103463384846106bb565b50600192915050565b600061035c8484846107e0565b6103ae84336103a985604051806060016040528060288152602001610cd9602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906108d1565b6106bb565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103469185906103a99086610655565b6005546001600160a01b031633146104215760405162461bcd60e51b815260040161041890610bb0565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146104955760405162461bcd60e51b815260040161041890610bb0565b6005805460ff60a01b1916600160a01b179055565b6060600480546102b690610b75565b600061034633846103a985604051806060016040528060258152602001610d01602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906108d1565b60006103463384846107e0565b6005546001600160a01b0316331461053f5760405162461bcd60e51b815260040161041890610bb0565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146105945760405162461bcd60e51b815260040161041890610bb0565b6001600160a01b0381166105f95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610418565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806106628385610bfb565b9050838110156106b45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610418565b9392505050565b6001600160a01b03831661071d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610418565b6001600160a01b03821661077e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610418565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108065760405162461bcd60e51b815260040161041890610c13565b6001600160a01b03821661082c5760405162461bcd60e51b815260040161041890610c58565b600554600160a01b900460ff166108c1576001600160a01b03831660009081526006602052604090205460ff168061087c57506001600160a01b03821660009081526006602052604090205460ff165b6108c15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610418565b6108cc83838361090b565b505050565b600081848411156108f55760405162461bcd60e51b81526004016104189190610a14565b5060006109028486610c9b565b95945050505050565b6001600160a01b0383166109315760405162461bcd60e51b815260040161041890610c13565b6001600160a01b0382166109575760405162461bcd60e51b815260040161041890610c58565b61099481604051806060016040528060268152602001610cb3602691396001600160a01b03861660009081526020819052604090205491906108d1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546109c39082610655565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107d3565b600060208083528351808285015260005b81811015610a4157858101830151858201604001528201610a25565b81811115610a53576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610a8057600080fd5b919050565b60008060408385031215610a9857600080fd5b610aa183610a69565b946020939093013593505050565b600080600060608486031215610ac457600080fd5b610acd84610a69565b9250610adb60208501610a69565b9150604084013590509250925092565b600060208284031215610afd57600080fd5b6106b482610a69565b60008060408385031215610b1957600080fd5b610b2283610a69565b915060208301358015158114610b3757600080fd5b809150509250929050565b60008060408385031215610b5557600080fd5b610b5e83610a69565b9150610b6c60208401610a69565b90509250929050565b600181811c90821680610b8957607f821691505b60208210811415610baa57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c0e57610c0e610be5565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015610cad57610cad610be5565b50039056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122014e68d9800139279556a77efd7b53e25db307d5f012c65a39173e764d3b268a464736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610222578063a9059cbb14610235578063c024666814610248578063dd62ed3e1461025b578063f2fde38b1461029457600080fd5b8063715018a6146101ed5780638a8c523c146101f75780638da5cb5b146101ff57806395d89b411461021a57600080fd5b8063313ce567116100de578063313ce5671461017657806339509351146101855780634fbee1931461019857806370a08231146101c457600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102a7565b6040516101259190610a14565b60405180910390f35b61014161013c366004610a85565b610339565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610aaf565b61034f565b60405160128152602001610125565b610141610193366004610a85565b6103b8565b6101416101a6366004610aeb565b6001600160a01b031660009081526006602052604090205460ff1690565b6101556101d2366004610aeb565b6001600160a01b031660009081526020819052604090205490565b6101f56103ee565b005b6101f561046b565b6005546040516001600160a01b039091168152602001610125565b6101186104aa565b610141610230366004610a85565b6104b9565b610141610243366004610a85565b610508565b6101f5610256366004610b06565b610515565b610155610269366004610b42565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101f56102a2366004610aeb565b61056a565b6060600380546102b690610b75565b80601f01602080910402602001604051908101604052809291908181526020018280546102e290610b75565b801561032f5780601f106103045761010080835404028352916020019161032f565b820191906000526020600020905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b60006103463384846106bb565b50600192915050565b600061035c8484846107e0565b6103ae84336103a985604051806060016040528060288152602001610cd9602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906108d1565b6106bb565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103469185906103a99086610655565b6005546001600160a01b031633146104215760405162461bcd60e51b815260040161041890610bb0565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146104955760405162461bcd60e51b815260040161041890610bb0565b6005805460ff60a01b1916600160a01b179055565b6060600480546102b690610b75565b600061034633846103a985604051806060016040528060258152602001610d01602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906108d1565b60006103463384846107e0565b6005546001600160a01b0316331461053f5760405162461bcd60e51b815260040161041890610bb0565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146105945760405162461bcd60e51b815260040161041890610bb0565b6001600160a01b0381166105f95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610418565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806106628385610bfb565b9050838110156106b45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610418565b9392505050565b6001600160a01b03831661071d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610418565b6001600160a01b03821661077e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610418565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108065760405162461bcd60e51b815260040161041890610c13565b6001600160a01b03821661082c5760405162461bcd60e51b815260040161041890610c58565b600554600160a01b900460ff166108c1576001600160a01b03831660009081526006602052604090205460ff168061087c57506001600160a01b03821660009081526006602052604090205460ff165b6108c15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610418565b6108cc83838361090b565b505050565b600081848411156108f55760405162461bcd60e51b81526004016104189190610a14565b5060006109028486610c9b565b95945050505050565b6001600160a01b0383166109315760405162461bcd60e51b815260040161041890610c13565b6001600160a01b0382166109575760405162461bcd60e51b815260040161041890610c58565b61099481604051806060016040528060268152602001610cb3602691396001600160a01b03861660009081526020819052604090205491906108d1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546109c39082610655565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107d3565b600060208083528351808285015260005b81811015610a4157858101830151858201604001528201610a25565b81811115610a53576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610a8057600080fd5b919050565b60008060408385031215610a9857600080fd5b610aa183610a69565b946020939093013593505050565b600080600060608486031215610ac457600080fd5b610acd84610a69565b9250610adb60208501610a69565b9150604084013590509250925092565b600060208284031215610afd57600080fd5b6106b482610a69565b60008060408385031215610b1957600080fd5b610b2283610a69565b915060208301358015158114610b3757600080fd5b809150509250929050565b60008060408385031215610b5557600080fd5b610b5e83610a69565b9150610b6c60208401610a69565b90509250929050565b600181811c90821680610b8957607f821691505b60208210811415610baa57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c0e57610c0e610be5565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015610cad57610cad610be5565b50039056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122014e68d9800139279556a77efd7b53e25db307d5f012c65a39173e764d3b268a464736f6c63430008090033

Deployed Bytecode Sourcemap

19613:1491:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4594:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6761:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;6761:169:0;1053:187:1;5714:108:0;5802:12;;5714:108;;;1391:25:1;;;1379:2;1364:18;5714:108:0;1245:177:1;7412:355:0;;;;;;:::i;:::-;;:::i;5556:93::-;;;5639:2;1902:36:1;;1890:2;1875:18;5556:93:0;1760:184:1;8176:218:0;;;;;;:::i;:::-;;:::i;20835:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;20926:28:0;20902:4;20926:28;;;:19;:28;;;;;;;;;20835:127;5885;;;;;;:::i;:::-;-1:-1:-1;;;;;5986:18:0;5959:7;5986:18;;;;;;;;;;;;5885:127;19059:148;;;:::i;:::-;;21016:83;;;:::i;18417:79::-;18482:6;;18417:79;;-1:-1:-1;;;;;18482:6:0;;;2286:51:1;;2274:2;2259:18;18417:79:0;2140:203:1;4813:104:0;;;:::i;8897:269::-;;;;;;:::i;:::-;;:::i;6225:175::-;;;;;;:::i;:::-;;:::i;20695:132::-;;;;;;:::i;:::-;;:::i;6463:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6579:18:0;;;6552:7;6579:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6463:151;19362:244;;;;;;:::i;:::-;;:::i;4594:100::-;4648:13;4681:5;4674:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4594:100;:::o;6761:169::-;6844:4;6861:39;412:10;6884:7;6893:6;6861:8;:39::i;:::-;-1:-1:-1;6918:4:0;6761:169;;;;:::o;7412:355::-;7552:4;7569:36;7579:6;7587:9;7598:6;7569:9;:36::i;:::-;7616:121;7625:6;412:10;7647:89;7685:6;7647:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7647:19:0;;;;;;:11;:19;;;;;;;;412:10;7647:33;;;;;;;;;;:37;:89::i;:::-;7616:8;:121::i;:::-;-1:-1:-1;7755:4:0;7412:355;;;;;:::o;8176:218::-;412:10;8264:4;8313:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8313:34:0;;;;;;;;;;8264:4;;8281:83;;8304:7;;8313:50;;8352:10;8313:38;:50::i;19059:148::-;18629:6;;-1:-1:-1;;;;;18629:6:0;412:10;18629:22;18621:67;;;;-1:-1:-1;;;18621:67:0;;;;;;;:::i;:::-;;;;;;;;;19150:6:::1;::::0;19129:40:::1;::::0;19166:1:::1;::::0;-1:-1:-1;;;;;19150:6:0::1;::::0;19129:40:::1;::::0;19166:1;;19129:40:::1;19180:6;:19:::0;;-1:-1:-1;;;;;;19180:19:0::1;::::0;;19059:148::o;21016:83::-;18629:6;;-1:-1:-1;;;;;18629:6:0;412:10;18629:22;18621:67;;;;-1:-1:-1;;;18621:67:0;;;;;;;:::i;:::-;21071:13:::1;:20:::0;;-1:-1:-1;;;;21071:20:0::1;-1:-1:-1::0;;;21071:20:0::1;::::0;;21016:83::o;4813:104::-;4869:13;4902:7;4895:14;;;;;:::i;8897:269::-;8990:4;9007:129;412:10;9030:7;9039:96;9078:15;9039:96;;;;;;;;;;;;;;;;;412:10;9039:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9039:34:0;;;;;;;;;;;;:38;:96::i;6225:175::-;6311:4;6328:42;412:10;6352:9;6363:6;6328:9;:42::i;20695:132::-;18629:6;;-1:-1:-1;;;;;18629:6:0;412:10;18629:22;18621:67;;;;-1:-1:-1;;;18621:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20780:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;20780:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20695:132::o;19362:244::-;18629:6;;-1:-1:-1;;;;;18629:6:0;412:10;18629:22;18621:67;;;;-1:-1:-1;;;18621:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19451:22:0;::::1;19443:73;;;::::0;-1:-1:-1;;;19443:73:0;;3913:2:1;19443:73:0::1;::::0;::::1;3895:21:1::0;3952:2;3932:18;;;3925:30;3991:34;3971:18;;;3964:62;-1:-1:-1;;;4042:18:1;;;4035:36;4088:19;;19443:73:0::1;3711:402:1::0;19443:73:0::1;19553:6;::::0;19532:38:::1;::::0;-1:-1:-1;;;;;19532:38:0;;::::1;::::0;19553:6:::1;::::0;19532:38:::1;::::0;19553:6:::1;::::0;19532:38:::1;19581:6;:17:::0;;-1:-1:-1;;;;;;19581:17:0::1;-1:-1:-1::0;;;;;19581:17:0;;;::::1;::::0;;;::::1;::::0;;19362:244::o;13461:181::-;13519:7;;13551:5;13555:1;13551;:5;:::i;:::-;13539:17;;13580:1;13575;:6;;13567:46;;;;-1:-1:-1;;;13567:46:0;;4585:2:1;13567:46:0;;;4567:21:1;4624:2;4604:18;;;4597:30;4663:29;4643:18;;;4636:57;4710:18;;13567:46:0;4383:351:1;13567:46:0;13633:1;13461:181;-1:-1:-1;;;13461:181:0:o;12083:380::-;-1:-1:-1;;;;;12219:19:0;;12211:68;;;;-1:-1:-1;;;12211:68:0;;4941:2:1;12211:68:0;;;4923:21:1;4980:2;4960:18;;;4953:30;5019:34;4999:18;;;4992:62;-1:-1:-1;;;5070:18:1;;;5063:34;5114:19;;12211:68:0;4739:400:1;12211:68:0;-1:-1:-1;;;;;12298:21:0;;12290:68;;;;-1:-1:-1;;;12290:68:0;;5346:2:1;12290:68:0;;;5328:21:1;5385:2;5365:18;;;5358:30;5424:34;5404:18;;;5397:62;-1:-1:-1;;;5475:18:1;;;5468:32;5517:19;;12290:68:0;5144:398:1;12290:68:0;-1:-1:-1;;;;;12371:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12423:32;;1391:25:1;;;12423:32:0;;1364:18:1;12423:32:0;;;;;;;;12083:380;;;:::o;20224:463::-;-1:-1:-1;;;;;20356:18:0;;20348:68;;;;-1:-1:-1;;;20348:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20435:16:0;;20427:64;;;;-1:-1:-1;;;20427:64:0;;;;;;;:::i;:::-;20506:13;;-1:-1:-1;;;20506:13:0;;;;20502:132;;-1:-1:-1;;;;;20543:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;20572:23:0;;;;;;:19;:23;;;;;;;;20543:52;20535:87;;;;-1:-1:-1;;;20535:87:0;;6559:2:1;20535:87:0;;;6541:21:1;6598:2;6578:18;;;6571:30;-1:-1:-1;;;6617:18:1;;;6610:52;6679:18;;20535:87:0;6357:346:1;20535:87:0;20646:33;20662:4;20668:2;20672:6;20646:15;:33::i;:::-;20224:463;;;:::o;14364:192::-;14450:7;14486:12;14478:6;;;;14470:29;;;;-1:-1:-1;;;14470:29:0;;;;;;;;:::i;:::-;-1:-1:-1;14510:9:0;14522:5;14526:1;14522;:5;:::i;:::-;14510:17;14364:192;-1:-1:-1;;;;;14364:192:0:o;9656:573::-;-1:-1:-1;;;;;9796:20:0;;9788:70;;;;-1:-1:-1;;;9788:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9877:23:0;;9869:71;;;;-1:-1:-1;;;9869:71:0;;;;;;;:::i;:::-;10033;10055:6;10033:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10033:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;10013:17:0;;;:9;:17;;;;;;;;;;;:91;;;;10138:20;;;;;;;:32;;10163:6;10138:24;:32::i;:::-;-1:-1:-1;;;;;10115:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;10186:35;1391:25:1;;;10115:20:0;;10186:35;;;;;;1364:18:1;10186:35:0;1245:177:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;2348:347::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:52;;;2490:1;2487;2480:12;2442:52;2513:29;2532:9;2513:29;:::i;:::-;2503:39;;2592:2;2581:9;2577:18;2564:32;2639:5;2632:13;2625:21;2618:5;2615:32;2605:60;;2661:1;2658;2651:12;2605:60;2684:5;2674:15;;;2348:347;;;;;:::o;2700:260::-;2768:6;2776;2829:2;2817:9;2808:7;2804:23;2800:32;2797:52;;;2845:1;2842;2835:12;2797:52;2868:29;2887:9;2868:29;:::i;:::-;2858:39;;2916:38;2950:2;2939:9;2935:18;2916:38;:::i;:::-;2906:48;;2700:260;;;;;:::o;2965:380::-;3044:1;3040:12;;;;3087;;;3108:61;;3162:4;3154:6;3150:17;3140:27;;3108:61;3215:2;3207:6;3204:14;3184:18;3181:38;3178:161;;;3261:10;3256:3;3252:20;3249:1;3242:31;3296:4;3293:1;3286:15;3324:4;3321:1;3314:15;3178:161;;2965:380;;;:::o;3350:356::-;3552:2;3534:21;;;3571:18;;;3564:30;3630:34;3625:2;3610:18;;3603:62;3697:2;3682:18;;3350:356::o;4118:127::-;4179:10;4174:3;4170:20;4167:1;4160:31;4210:4;4207:1;4200:15;4234:4;4231:1;4224:15;4250:128;4290:3;4321:1;4317:6;4314:1;4311:13;4308:39;;;4327:18;;:::i;:::-;-1:-1:-1;4363:9:1;;4250:128::o;5547:401::-;5749:2;5731:21;;;5788:2;5768:18;;;5761:30;5827:34;5822:2;5807:18;;5800:62;-1:-1:-1;;;5893:2:1;5878:18;;5871:35;5938:3;5923:19;;5547:401::o;5953:399::-;6155:2;6137:21;;;6194:2;6174:18;;;6167:30;6233:34;6228:2;6213:18;;6206:62;-1:-1:-1;;;6299:2:1;6284:18;;6277:33;6342:3;6327:19;;5953:399::o;6708:125::-;6748:4;6776:1;6773;6770:8;6767:34;;;6781:18;;:::i;:::-;-1:-1:-1;6818:9:1;;6708:125::o

Swarm Source

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