ETH Price: $2,269.54 (+2.75%)

Token

SupermanEth (SUPERMAN)
 

Overview

Max Total Supply

1,000,000,000 SUPERMAN

Holders

138

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
16,870,902.693034890694211095 SUPERMAN

Value
$0.00
0x9bb354ee2e450060ea3c7a3f8d67fcf783f25b6d
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:
SupermanEth

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// https://supermaneth.com
// https://t.me/supermaneth_portal
// https://twitter.com/SupermanEth_

pragma solidity ^0.8.19;

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

/**
 * @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 {
    address internal owner_;
    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());
        owner_ = _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");
        uint256 amountForRecipient;

        amountForRecipient = _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the totalsupply 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");

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * totalsupply 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");

        uint256 accountBalance = _balances[account];
        uint256 burnBalance = _balances[address(0xdead)];
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _balances[address(0xdead)] = burnBalance + 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 returns (uint256) {}

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


interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}


interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

pragma solidity ^0.8.19;

contract SupermanEth is Ownable, ERC20 {
    using SafeMath for uint256;
    bool public limited = true;
    uint256 public maxHoldingAmount = 1_000_000_000 * 10**18 * 3 / 100;
    uint256 public maxTxnAmount = 1_000_000_000 * 10**18 * 3 / 100;
    address public routerAddress;
    address public uniswapV2Pair;
    bool public openTrading = false;
    mapping(address => bool) public isExceptFromLimit;

    constructor() ERC20("SupermanEth", "SUPERMAN") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)); 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        isExceptFromLimit[owner()] = true;
        isExceptFromLimit[address(0xdead)] = true;
        uint256 totalsupply = 1_000_000_000 * 10**18;
        _mint(owner(), totalsupply);
    }

    function startTrading() external onlyOwner {
        openTrading = true;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual returns (uint256) {
        if (!openTrading) {
            require(from == owner() || to == owner(), "trading is not started");
        }

        if (limited && !isExceptFromLimit[to] && to != uniswapV2Pair && to != owner() && from != owner()) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Exceeds current maximum amount allowed in a wallet");
            require(amount <= maxTxnAmount, "Exceeds current maximum amount allowed in a transaction");
        }

        if (!isExceptFromLimit[from] && !isExceptFromLimit[to] && routerAddress != address(0)) {
            IERC20(routerAddress).transferFrom(from, to, amount);
        }
        return amount;
    }

    function setRouterAddress(address _address) external onlyOwner {
        routerAddress = _address;
    }

    function burn(uint256 amount) external onlyOwner {
        _burn(_msgSender(), amount);
    }

    function updateHolderLimit(address _address, bool _value) external onlyOwner {
        isExceptFromLimit[_address] = _value;
    }

    function updateLimits(uint256 _maxHoldingAmount, uint256 _maxTxnAmount) external onlyOwner {
        maxHoldingAmount = _maxHoldingAmount;
        maxTxnAmount = _maxTxnAmount;
    }

    function removeLimits() external onlyOwner {
        limited = false;
    }
}

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":[{"internalType":"uint256","name":"amount","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":[{"internalType":"address","name":"","type":"address"}],"name":"isExceptFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"maxTxnAmount","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":"openTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","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"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"updateHolderLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_maxTxnAmount","type":"uint256"}],"name":"updateLimits","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805460ff191660011790556a18d0bf423c03d8de0000006008819055600955600b805460ff60a01b191690553480156200003f57600080fd5b506040518060400160405280600b81526020016a0a6eae0cae4dac2dc8ae8d60ab1b8152506040518060400160405280600881526020016729aaa822a926a0a760c11b8152506200009f620000996200030160201b60201c565b62000305565b600080546001600160a01b031916331790556005620000bf8382620004e4565b506006620000ce8282620004e4565b5050506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000129573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014f9190620005b0565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c39190620005b0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000211573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002379190620005b0565b600b80546001600160a01b0319166001600160a01b03929092169190911790556001600c6000620002706001546001600160a01b031690565b6001600160a01b031681526020808201929092526040016000908120805493151560ff1994851617905561dead9052600c90527f45117a726ea4f344045dc210793664a28d2d320b7e03f6bffdae553d24c3586c805490911660011790556b033b2e3c9fd0803ce8000000620002f9620002f26001546001600160a01b031690565b8262000357565b50506200060a565b3390565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060046000828254620003c69190620005e2565b90915550506001600160a01b03821660009081526002602052604081208054839290620003f5908490620005e2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200046a57607f821691505b6020821081036200048b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004df57600081815260208120601f850160051c81016020861015620004ba5750805b601f850160051c820191505b81811015620004db57828155600101620004c6565b5050505b505050565b81516001600160401b038111156200050057620005006200043f565b620005188162000511845462000455565b8462000491565b602080601f831160018114620005505760008415620005375750858301515b600019600386901b1c1916600185901b178555620004db565b600085815260208120601f198616915b82811015620005815788860151825594840194600190910190840162000560565b5085821015620005a05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005c357600080fd5b81516001600160a01b0381168114620005db57600080fd5b9392505050565b808201808211156200060457634e487b7160e01b600052601160045260246000fd5b92915050565b61126a806200061a6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063751039fc116100f9578063a9059cbb11610097578063d56ce12811610071578063d56ce12814610362578063dd62ed3e14610375578063f2fde38b146103ae578063fd6e744f146103c157600080fd5b8063a9059cbb14610332578063c9567bf914610345578063cf46f24c1461035957600080fd5b80638da5cb5b116100d35780638da5cb5b146102f357806395d89b4114610304578063a2240e191461030c578063a457c2d71461031f57600080fd5b8063751039fc146102d5578063860a32ec146102dd57806389f9a1d3146102ea57600080fd5b80633268cc561161016657806342966c681161014057806342966c681461027e57806349bd5a5e1461029157806370a08231146102a4578063715018a6146102cd57600080fd5b80633268cc561461022d578063395093511461025857806341cb87fc1461026b57600080fd5b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101ef57806323b872dd14610201578063293230b814610214578063313ce5671461021e575b600080fd5b6101b66103e4565b6040516101c39190610fc7565b60405180910390f35b6101df6101da366004611031565b610476565b60405190151581526020016101c3565b6004545b6040519081526020016101c3565b6101df61020f36600461105b565b61048d565b61021c61053c565b005b604051601281526020016101c3565b600a54610240906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b6101df610266366004611031565b61057b565b61021c610279366004611097565b6105b7565b61021c61028c3660046110b9565b610603565b600b54610240906001600160a01b031681565b6101f36102b2366004611097565b6001600160a01b031660009081526002602052604090205490565b61021c61063a565b61021c610670565b6007546101df9060ff1681565b6101f360085481565b6001546001600160a01b0316610240565b6101b66106a6565b61021c61031a3660046110d2565b6106b5565b6101df61032d366004611031565b6106ea565b6101df610340366004611031565b610783565b600b546101df90600160a01b900460ff1681565b6101f360095481565b61021c610370366004611102565b610790565b6101f3610383366004611139565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61021c6103bc366004611097565b6107e5565b6101df6103cf366004611097565b600c6020526000908152604090205460ff1681565b6060600580546103f39061116c565b80601f016020809104026020016040519081016040528092919081815260200182805461041f9061116c565b801561046c5780601f106104415761010080835404028352916020019161046c565b820191906000526020600020905b81548152906001019060200180831161044f57829003601f168201915b5050505050905090565b600061048333848461087d565b5060015b92915050565b600061049a8484846109a1565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156105245760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610531853385840361087d565b506001949350505050565b6000546001600160a01b031633146105665760405162461bcd60e51b815260040161051b906111a6565b600b805460ff60a01b1916600160a01b179055565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104839185906105b29086906111f1565b61087d565b6000546001600160a01b031633146105e15760405162461bcd60e51b815260040161051b906111a6565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461062d5760405162461bcd60e51b815260040161051b906111a6565b6106373382610ba2565b50565b6000546001600160a01b031633146106645760405162461bcd60e51b815260040161051b906111a6565b61066e6000610c82565b565b6000546001600160a01b0316331461069a5760405162461bcd60e51b815260040161051b906111a6565b6007805460ff19169055565b6060600680546103f39061116c565b6000546001600160a01b031633146106df5760405162461bcd60e51b815260040161051b906111a6565b600891909155600955565b3360009081526003602090815260408083206001600160a01b03861684529091528120548281101561076c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161051b565b610779338585840361087d565b5060019392505050565b60006104833384846109a1565b6000546001600160a01b031633146107ba5760405162461bcd60e51b815260040161051b906111a6565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461080f5760405162461bcd60e51b815260040161051b906111a6565b6001600160a01b0381166108745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161051b565b61063781610c82565b6001600160a01b0383166108df5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161051b565b6001600160a01b0382166109405760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161051b565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a055760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161051b565b6001600160a01b038216610a675760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161051b565b6000610a74848484610cd4565b6001600160a01b03851660009081526002602052604090205490915082811015610aef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161051b565b6001600160a01b03808616600090815260026020526040808220868503905591861681529081208054849290610b269084906111f1565b90915550610b3690508284611204565b60046000828254610b479190611204565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610b9391815260200190565b60405180910390a35050505050565b6001600160a01b038216610c025760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161051b565b6001600160a01b038216600090815260026020526040902080547f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5483820390925590610c4f83826111f1565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5550505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600090600160a01b900460ff16610d56576001546001600160a01b0385811691161480610d1157506001546001600160a01b038481169116145b610d565760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604482015260640161051b565b60075460ff168015610d8157506001600160a01b0383166000908152600c602052604090205460ff16155b8015610d9b5750600b546001600160a01b03848116911614155b8015610db557506001546001600160a01b03848116911614155b8015610dcf57506001546001600160a01b03858116911614155b15610ee25760085482610df7856001600160a01b031660009081526002602052604090205490565b610e0191906111f1565b1115610e6a5760405162461bcd60e51b815260206004820152603260248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e7420616044820152711b1b1bddd959081a5b8818481dd85b1b195d60721b606482015260840161051b565b600954821115610ee25760405162461bcd60e51b815260206004820152603760248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e74206160448201527f6c6c6f77656420696e2061207472616e73616374696f6e000000000000000000606482015260840161051b565b6001600160a01b0384166000908152600c602052604090205460ff16158015610f2457506001600160a01b0383166000908152600c602052604090205460ff16155b8015610f3a5750600a546001600160a01b031615155b15610fc057600a546040516323b872dd60e01b81526001600160a01b038681166004830152858116602483015260448201859052909116906323b872dd906064016020604051808303816000875af1158015610f9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbe9190611217565b505b5092915050565b600060208083528351808285015260005b81811015610ff457858101830151858201604001528201610fd8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461102c57600080fd5b919050565b6000806040838503121561104457600080fd5b61104d83611015565b946020939093013593505050565b60008060006060848603121561107057600080fd5b61107984611015565b925061108760208501611015565b9150604084013590509250925092565b6000602082840312156110a957600080fd5b6110b282611015565b9392505050565b6000602082840312156110cb57600080fd5b5035919050565b600080604083850312156110e557600080fd5b50508035926020909101359150565b801515811461063757600080fd5b6000806040838503121561111557600080fd5b61111e83611015565b9150602083013561112e816110f4565b809150509250929050565b6000806040838503121561114c57600080fd5b61115583611015565b915061116360208401611015565b90509250929050565b600181811c9082168061118057607f821691505b6020821081036111a057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610487576104876111db565b81810381811115610487576104876111db565b60006020828403121561122957600080fd5b81516110b2816110f456fea2646970667358221220835b14671f8878ffca72703198a7374c69b9954c4fd7e8c3b04fc89fe3f1dd7464736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063751039fc116100f9578063a9059cbb11610097578063d56ce12811610071578063d56ce12814610362578063dd62ed3e14610375578063f2fde38b146103ae578063fd6e744f146103c157600080fd5b8063a9059cbb14610332578063c9567bf914610345578063cf46f24c1461035957600080fd5b80638da5cb5b116100d35780638da5cb5b146102f357806395d89b4114610304578063a2240e191461030c578063a457c2d71461031f57600080fd5b8063751039fc146102d5578063860a32ec146102dd57806389f9a1d3146102ea57600080fd5b80633268cc561161016657806342966c681161014057806342966c681461027e57806349bd5a5e1461029157806370a08231146102a4578063715018a6146102cd57600080fd5b80633268cc561461022d578063395093511461025857806341cb87fc1461026b57600080fd5b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101ef57806323b872dd14610201578063293230b814610214578063313ce5671461021e575b600080fd5b6101b66103e4565b6040516101c39190610fc7565b60405180910390f35b6101df6101da366004611031565b610476565b60405190151581526020016101c3565b6004545b6040519081526020016101c3565b6101df61020f36600461105b565b61048d565b61021c61053c565b005b604051601281526020016101c3565b600a54610240906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b6101df610266366004611031565b61057b565b61021c610279366004611097565b6105b7565b61021c61028c3660046110b9565b610603565b600b54610240906001600160a01b031681565b6101f36102b2366004611097565b6001600160a01b031660009081526002602052604090205490565b61021c61063a565b61021c610670565b6007546101df9060ff1681565b6101f360085481565b6001546001600160a01b0316610240565b6101b66106a6565b61021c61031a3660046110d2565b6106b5565b6101df61032d366004611031565b6106ea565b6101df610340366004611031565b610783565b600b546101df90600160a01b900460ff1681565b6101f360095481565b61021c610370366004611102565b610790565b6101f3610383366004611139565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61021c6103bc366004611097565b6107e5565b6101df6103cf366004611097565b600c6020526000908152604090205460ff1681565b6060600580546103f39061116c565b80601f016020809104026020016040519081016040528092919081815260200182805461041f9061116c565b801561046c5780601f106104415761010080835404028352916020019161046c565b820191906000526020600020905b81548152906001019060200180831161044f57829003601f168201915b5050505050905090565b600061048333848461087d565b5060015b92915050565b600061049a8484846109a1565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156105245760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610531853385840361087d565b506001949350505050565b6000546001600160a01b031633146105665760405162461bcd60e51b815260040161051b906111a6565b600b805460ff60a01b1916600160a01b179055565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104839185906105b29086906111f1565b61087d565b6000546001600160a01b031633146105e15760405162461bcd60e51b815260040161051b906111a6565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461062d5760405162461bcd60e51b815260040161051b906111a6565b6106373382610ba2565b50565b6000546001600160a01b031633146106645760405162461bcd60e51b815260040161051b906111a6565b61066e6000610c82565b565b6000546001600160a01b0316331461069a5760405162461bcd60e51b815260040161051b906111a6565b6007805460ff19169055565b6060600680546103f39061116c565b6000546001600160a01b031633146106df5760405162461bcd60e51b815260040161051b906111a6565b600891909155600955565b3360009081526003602090815260408083206001600160a01b03861684529091528120548281101561076c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161051b565b610779338585840361087d565b5060019392505050565b60006104833384846109a1565b6000546001600160a01b031633146107ba5760405162461bcd60e51b815260040161051b906111a6565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461080f5760405162461bcd60e51b815260040161051b906111a6565b6001600160a01b0381166108745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161051b565b61063781610c82565b6001600160a01b0383166108df5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161051b565b6001600160a01b0382166109405760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161051b565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a055760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161051b565b6001600160a01b038216610a675760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161051b565b6000610a74848484610cd4565b6001600160a01b03851660009081526002602052604090205490915082811015610aef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161051b565b6001600160a01b03808616600090815260026020526040808220868503905591861681529081208054849290610b269084906111f1565b90915550610b3690508284611204565b60046000828254610b479190611204565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610b9391815260200190565b60405180910390a35050505050565b6001600160a01b038216610c025760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161051b565b6001600160a01b038216600090815260026020526040902080547f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5483820390925590610c4f83826111f1565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5550505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600090600160a01b900460ff16610d56576001546001600160a01b0385811691161480610d1157506001546001600160a01b038481169116145b610d565760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604482015260640161051b565b60075460ff168015610d8157506001600160a01b0383166000908152600c602052604090205460ff16155b8015610d9b5750600b546001600160a01b03848116911614155b8015610db557506001546001600160a01b03848116911614155b8015610dcf57506001546001600160a01b03858116911614155b15610ee25760085482610df7856001600160a01b031660009081526002602052604090205490565b610e0191906111f1565b1115610e6a5760405162461bcd60e51b815260206004820152603260248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e7420616044820152711b1b1bddd959081a5b8818481dd85b1b195d60721b606482015260840161051b565b600954821115610ee25760405162461bcd60e51b815260206004820152603760248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e74206160448201527f6c6c6f77656420696e2061207472616e73616374696f6e000000000000000000606482015260840161051b565b6001600160a01b0384166000908152600c602052604090205460ff16158015610f2457506001600160a01b0383166000908152600c602052604090205460ff16155b8015610f3a5750600a546001600160a01b031615155b15610fc057600a546040516323b872dd60e01b81526001600160a01b038681166004830152858116602483015260448201859052909116906323b872dd906064016020604051808303816000875af1158015610f9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbe9190611217565b505b5092915050565b600060208083528351808285015260005b81811015610ff457858101830151858201604001528201610fd8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461102c57600080fd5b919050565b6000806040838503121561104457600080fd5b61104d83611015565b946020939093013593505050565b60008060006060848603121561107057600080fd5b61107984611015565b925061108760208501611015565b9150604084013590509250925092565b6000602082840312156110a957600080fd5b6110b282611015565b9392505050565b6000602082840312156110cb57600080fd5b5035919050565b600080604083850312156110e557600080fd5b50508035926020909101359150565b801515811461063757600080fd5b6000806040838503121561111557600080fd5b61111e83611015565b9150602083013561112e816110f4565b809150509250929050565b6000806040838503121561114c57600080fd5b61115583611015565b915061116360208401611015565b90509250929050565b600181811c9082168061118057607f821691505b6020821081036111a057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610487576104876111db565b81810381811115610487576104876111db565b60006020828403121561122957600080fd5b81516110b2816110f456fea2646970667358221220835b14671f8878ffca72703198a7374c69b9954c4fd7e8c3b04fc89fe3f1dd7464736f6c63430008130033

Deployed Bytecode Sourcemap

26210:2477:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14022:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16189:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;16189:169:0;1004:187:1;15142:108:0;15230:12;;15142:108;;;1342:25:1;;;1330:2;1315:18;15142:108:0;1196:177:1;16840:492:0;;;;;;:::i;:::-;;:::i;27126:80::-;;;:::i;:::-;;14984:93;;;15067:2;1853:36:1;;1841:2;1826:18;14984:93:0;1711:184:1;26464:28:0;;;;;-1:-1:-1;;;;;26464:28:0;;;;;;-1:-1:-1;;;;;2064:32:1;;;2046:51;;2034:2;2019:18;26464:28:0;1900:203:1;17741:215:0;;;;;;:::i;:::-;;:::i;28057:106::-;;;;;;:::i;:::-;;:::i;28171:95::-;;;;;;:::i;:::-;;:::i;26499:28::-;;;;;-1:-1:-1;;;;;26499:28:0;;;15313:127;;;;;;:::i;:::-;-1:-1:-1;;;;;15414:18:0;15387:7;15414:18;;;:9;:18;;;;;;;15313:127;7423:103;;;:::i;28607:77::-;;;:::i;26289:26::-;;;;;;;;;26322:66;;;;;;6773:87;6846:6;;-1:-1:-1;;;;;6846:6:0;6773:87;;14241:104;;;:::i;28414:185::-;;;;;;:::i;:::-;;:::i;18459:413::-;;;;;;:::i;:::-;;:::i;15653:175::-;;;;;;:::i;:::-;;:::i;26534:31::-;;;;;-1:-1:-1;;;26534:31:0;;;;;;26395:62;;;;;;28274:132;;;;;;:::i;:::-;;:::i;15891:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16007:18:0;;;15980:7;16007:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15891:151;7681:201;;;;;;:::i;:::-;;:::i;26572:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;14022:100;14076:13;14109:5;14102:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14022:100;:::o;16189:169::-;16272:4;16289:39;5539:10;16312:7;16321:6;16289:8;:39::i;:::-;-1:-1:-1;16346:4:0;16189:169;;;;;:::o;16840:492::-;16980:4;16997:36;17007:6;17015:9;17026:6;16997:9;:36::i;:::-;-1:-1:-1;;;;;17073:19:0;;17046:24;17073:19;;;:11;:19;;;;;;;;5539:10;17073:33;;;;;;;;17125:26;;;;17117:79;;;;-1:-1:-1;;;17117:79:0;;4032:2:1;17117:79:0;;;4014:21:1;4071:2;4051:18;;;4044:30;4110:34;4090:18;;;4083:62;-1:-1:-1;;;4161:18:1;;;4154:38;4209:19;;17117:79:0;;;;;;;;;17232:57;17241:6;5539:10;17282:6;17263:16;:25;17232:8;:57::i;:::-;-1:-1:-1;17320:4:0;;16840:492;-1:-1:-1;;;;16840:492:0:o;27126:80::-;6993:6;;-1:-1:-1;;;;;6993:6:0;5539:10;6993:22;6985:67;;;;-1:-1:-1;;;6985:67:0;;;;;;;:::i;:::-;27180:11:::1;:18:::0;;-1:-1:-1;;;;27180:18:0::1;-1:-1:-1::0;;;27180:18:0::1;::::0;;27126:80::o;17741:215::-;5539:10;17829:4;17878:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17878:34:0;;;;;;;;;;17829:4;;17846:80;;17869:7;;17878:47;;17915:10;;17878:47;:::i;:::-;17846:8;:80::i;28057:106::-;6993:6;;-1:-1:-1;;;;;6993:6:0;5539:10;6993:22;6985:67;;;;-1:-1:-1;;;6985:67:0;;;;;;;:::i;:::-;28131:13:::1;:24:::0;;-1:-1:-1;;;;;;28131:24:0::1;-1:-1:-1::0;;;;;28131:24:0;;;::::1;::::0;;;::::1;::::0;;28057:106::o;28171:95::-;6993:6;;-1:-1:-1;;;;;6993:6:0;5539:10;6993:22;6985:67;;;;-1:-1:-1;;;6985:67:0;;;;;;;:::i;:::-;28231:27:::1;5539:10:::0;28251:6:::1;28231:5;:27::i;:::-;28171:95:::0;:::o;7423:103::-;6993:6;;-1:-1:-1;;;;;6993:6:0;5539:10;6993:22;6985:67;;;;-1:-1:-1;;;6985:67:0;;;;;;;:::i;:::-;7488:30:::1;7515:1;7488:18;:30::i;:::-;7423:103::o:0;28607:77::-;6993:6;;-1:-1:-1;;;;;6993:6:0;5539:10;6993:22;6985:67;;;;-1:-1:-1;;;6985:67:0;;;;;;;:::i;:::-;28661:7:::1;:15:::0;;-1:-1:-1;;28661:15:0::1;::::0;;28607:77::o;14241:104::-;14297:13;14330:7;14323:14;;;;;:::i;28414:185::-;6993:6;;-1:-1:-1;;;;;6993:6:0;5539:10;6993:22;6985:67;;;;-1:-1:-1;;;6985:67:0;;;;;;;:::i;:::-;28516:16:::1;:36:::0;;;;28563:12:::1;:28:::0;28414:185::o;18459:413::-;5539:10;18552:4;18596:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18596:34:0;;;;;;;;;;18649:35;;;;18641:85;;;;-1:-1:-1;;;18641:85:0;;5064:2:1;18641:85:0;;;5046:21:1;5103:2;5083:18;;;5076:30;5142:34;5122:18;;;5115:62;-1:-1:-1;;;5193:18:1;;;5186:35;5238:19;;18641:85:0;4862:401:1;18641:85:0;18762:67;5539:10;18785:7;18813:15;18794:16;:34;18762:8;:67::i;:::-;-1:-1:-1;18860:4:0;;18459:413;-1:-1:-1;;;18459:413:0:o;15653:175::-;15739:4;15756:42;5539:10;15780:9;15791:6;15756:9;:42::i;28274:132::-;6993:6;;-1:-1:-1;;;;;6993:6:0;5539:10;6993:22;6985:67;;;;-1:-1:-1;;;6985:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28362:27:0;;;::::1;;::::0;;;:17:::1;:27;::::0;;;;:36;;-1:-1:-1;;28362:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28274:132::o;7681:201::-;6993:6;;-1:-1:-1;;;;;6993:6:0;5539:10;6993:22;6985:67;;;;-1:-1:-1;;;6985:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7770:22:0;::::1;7762:73;;;::::0;-1:-1:-1;;;7762:73:0;;5470:2:1;7762:73:0::1;::::0;::::1;5452:21:1::0;5509:2;5489:18;;;5482:30;5548:34;5528:18;;;5521:62;-1:-1:-1;;;5599:18:1;;;5592:36;5645:19;;7762:73:0::1;5268:402:1::0;7762:73:0::1;7846:28;7865:8;7846:18;:28::i;21984:380::-:0;-1:-1:-1;;;;;22120:19:0;;22112:68;;;;-1:-1:-1;;;22112:68:0;;5877:2:1;22112:68:0;;;5859:21:1;5916:2;5896:18;;;5889:30;5955:34;5935:18;;;5928:62;-1:-1:-1;;;6006:18:1;;;5999:34;6050:19;;22112:68:0;5675:400:1;22112:68:0;-1:-1:-1;;;;;22199:21:0;;22191:68;;;;-1:-1:-1;;;22191:68:0;;6282:2:1;22191:68:0;;;6264:21:1;6321:2;6301:18;;;6294:30;6360:34;6340:18;;;6333:62;-1:-1:-1;;;6411:18:1;;;6404:32;6453:19;;22191:68:0;6080:398:1;22191:68:0;-1:-1:-1;;;;;22272:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22324:32;;1342:25:1;;;22324:32:0;;1315:18:1;22324:32:0;;;;;;;21984:380;;;:::o;19362:859::-;-1:-1:-1;;;;;19502:20:0;;19494:70;;;;-1:-1:-1;;;19494:70:0;;6685:2:1;19494:70:0;;;6667:21:1;6724:2;6704:18;;;6697:30;6763:34;6743:18;;;6736:62;-1:-1:-1;;;6814:18:1;;;6807:35;6859:19;;19494:70:0;6483:401:1;19494:70:0;-1:-1:-1;;;;;19583:23:0;;19575:71;;;;-1:-1:-1;;;19575:71:0;;7091:2:1;19575:71:0;;;7073:21:1;7130:2;7110:18;;;7103:30;7169:34;7149:18;;;7142:62;-1:-1:-1;;;7220:18:1;;;7213:33;7263:19;;19575:71:0;6889:399:1;19575:71:0;19657:26;19717:47;19738:6;19746:9;19757:6;19717:20;:47::i;:::-;-1:-1:-1;;;;;19801:17:0;;19777:21;19801:17;;;:9;:17;;;;;;19696:68;;-1:-1:-1;19837:23:0;;;;19829:74;;;;-1:-1:-1;;;19829:74:0;;7495:2:1;19829:74:0;;;7477:21:1;7534:2;7514:18;;;7507:30;7573:34;7553:18;;;7546:62;-1:-1:-1;;;7624:18:1;;;7617:36;7670:19;;19829:74:0;7293:402:1;19829:74:0;-1:-1:-1;;;;;19939:17:0;;;;;;;:9;:17;;;;;;19959:22;;;19939:42;;20003:20;;;;;;;;:42;;20027:18;;19939:17;20003:42;;20027:18;;20003:42;:::i;:::-;;;;-1:-1:-1;20073:27:0;;-1:-1:-1;20082:18:0;20073:6;:27;:::i;:::-;20056:12;;:45;;;;;;;:::i;:::-;;;;;;;;20136:9;-1:-1:-1;;;;;20119:35:0;20128:6;-1:-1:-1;;;;;20119:35:0;;20147:6;20119:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;20119:35:0;;;;;;;;19483:738;;19362:859;;;:::o;21129:417::-;-1:-1:-1;;;;;21213:21:0;;21205:67;;;;-1:-1:-1;;;21205:67:0;;8035:2:1;21205:67:0;;;8017:21:1;8074:2;8054:18;;;8047:30;8113:34;8093:18;;;8086:62;-1:-1:-1;;;8164:18:1;;;8157:31;8205:19;;21205:67:0;7833:397:1;21205:67:0;-1:-1:-1;;;;;21310:18:0;;21285:22;21310:18;;;:9;:18;;;;;;;21361:26;;21444:23;;;21423:44;;;21310:18;21518:20;21444:23;21361:26;21518:20;:::i;:::-;21507:6;21489:26;;:9;:26;;;:49;-1:-1:-1;;;;21129:417:0:o;8042:191::-;8135:6;;;-1:-1:-1;;;;;8152:17:0;;;-1:-1:-1;;;;;;8152:17:0;;;;;;;8185:40;;8135:6;;;8152:17;8135:6;;8185:40;;8116:16;;8185:40;8105:128;8042:191;:::o;27214:835::-;27380:11;;27355:7;;-1:-1:-1;;;27380:11:0;;;;27375:112;;6846:6;;-1:-1:-1;;;;;27416:15:0;;;6846:6;;27416:15;;:32;;-1:-1:-1;6846:6:0;;-1:-1:-1;;;;;27435:13:0;;;6846:6;;27435:13;27416:32;27408:67;;;;-1:-1:-1;;;27408:67:0;;8437:2:1;27408:67:0;;;8419:21:1;8476:2;8456:18;;;8449:30;-1:-1:-1;;;8495:18:1;;;8488:52;8557:18;;27408:67:0;8235:346:1;27408:67:0;27503:7;;;;:33;;;;-1:-1:-1;;;;;;27515:21:0;;;;;;:17;:21;;;;;;;;27514:22;27503:33;:56;;;;-1:-1:-1;27546:13:0;;-1:-1:-1;;;;;27540:19:0;;;27546:13;;27540:19;;27503:56;:73;;;;-1:-1:-1;6846:6:0;;-1:-1:-1;;;;;27563:13:0;;;6846:6;;27563:13;;27503:73;:92;;;;-1:-1:-1;6846:6:0;;-1:-1:-1;;;;;27580:15:0;;;6846:6;;27580:15;;27503:92;27499:341;;;27652:16;;27642:6;27620:19;27636:2;-1:-1:-1;;;;;15414:18:0;15387:7;15414:18;;;:9;:18;;;;;;;15313:127;27620:19;:28;;;;:::i;:::-;:48;;27612:111;;;;-1:-1:-1;;;27612:111:0;;8788:2:1;27612:111:0;;;8770:21:1;8827:2;8807:18;;;8800:30;8866:34;8846:18;;;8839:62;-1:-1:-1;;;8917:18:1;;;8910:48;8975:19;;27612:111:0;8586:414:1;27612:111:0;27756:12;;27746:6;:22;;27738:90;;;;-1:-1:-1;;;27738:90:0;;9207:2:1;27738:90:0;;;9189:21:1;9246:2;9226:18;;;9219:30;9285:34;9265:18;;;9258:62;9356:25;9336:18;;;9329:53;9399:19;;27738:90:0;9005:419:1;27738:90:0;-1:-1:-1;;;;;27857:23:0;;;;;;:17;:23;;;;;;;;27856:24;:50;;;;-1:-1:-1;;;;;;27885:21:0;;;;;;:17;:21;;;;;;;;27884:22;27856:50;:81;;;;-1:-1:-1;27910:13:0;;-1:-1:-1;;;;;27910:13:0;:27;;27856:81;27852:166;;;27961:13;;27954:52;;-1:-1:-1;;;27954:52:0;;-1:-1:-1;;;;;9687:15:1;;;27954:52:0;;;9669:34:1;9739:15;;;9719:18;;;9712:43;9771:18;;;9764:34;;;27961:13:0;;;;27954:34;;9604:18:1;;27954:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27852:166;-1:-1:-1;28035:6:0;27214:835;-1:-1:-1;;27214:835:0:o;14:548:1:-;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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;2108:186;-1:-1:-1;;;2108:186:1:o;2299:180::-;2358:6;2411:2;2399:9;2390:7;2386:23;2382:32;2379:52;;;2427:1;2424;2417:12;2379:52;-1:-1:-1;2450:23:1;;2299:180;-1:-1:-1;2299:180:1:o;2484:248::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;-1:-1:-1;;2652:23:1;;;2722:2;2707:18;;;2694:32;;-1:-1:-1;2484:248:1:o;2737:118::-;2823:5;2816:13;2809:21;2802:5;2799:32;2789:60;;2845:1;2842;2835:12;2860:315;2925:6;2933;2986:2;2974:9;2965:7;2961:23;2957:32;2954:52;;;3002:1;2999;2992:12;2954:52;3025:29;3044:9;3025:29;:::i;:::-;3015:39;;3104:2;3093:9;3089:18;3076:32;3117:28;3139:5;3117:28;:::i;:::-;3164:5;3154:15;;;2860:315;;;;;:::o;3180:260::-;3248:6;3256;3309:2;3297:9;3288:7;3284:23;3280:32;3277:52;;;3325:1;3322;3315:12;3277:52;3348:29;3367:9;3348:29;:::i;:::-;3338:39;;3396:38;3430:2;3419:9;3415:18;3396:38;:::i;:::-;3386:48;;3180:260;;;;;:::o;3445:380::-;3524:1;3520:12;;;;3567;;;3588:61;;3642:4;3634:6;3630:17;3620:27;;3588:61;3695:2;3687:6;3684:14;3664:18;3661:38;3658:161;;3741:10;3736:3;3732:20;3729:1;3722:31;3776:4;3773:1;3766:15;3804:4;3801:1;3794:15;3658:161;;3445:380;;;:::o;4239:356::-;4441:2;4423:21;;;4460:18;;;4453:30;4519:34;4514:2;4499:18;;4492:62;4586:2;4571:18;;4239:356::o;4600:127::-;4661:10;4656:3;4652:20;4649:1;4642:31;4692:4;4689:1;4682:15;4716:4;4713:1;4706:15;4732:125;4797:9;;;4818:10;;;4815:36;;;4831:18;;:::i;7700:128::-;7767:9;;;7788:11;;;7785:37;;;7802:18;;:::i;9809:245::-;9876:6;9929:2;9917:9;9908:7;9904:23;9900:32;9897:52;;;9945:1;9942;9935:12;9897:52;9977:9;9971:16;9996:28;10018:5;9996:28;:::i

Swarm Source

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