ETH Price: $3,304.42 (-3.54%)
Gas: 7 Gwei

Token

FOMO (FOMO)
 

Overview

Max Total Supply

420,000,000 FOMO

Holders

123

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.115376458126635662 FOMO

Value
$0.00
0x6a8c32eba659b68d3ad0f35d44d5357a2edfccc3
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:
Fomo

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-23
*/

// SPDX-License-Identifier: MIT
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 _onwer;
    constructor() {
        _onwer = msg.sender;
    }

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_onwer == _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 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");

        _totalSupply += amount;
        _balances[account] += 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");

        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 Fomo is Ownable, ERC20 {
    using SafeMath for uint256;
    bool public limited = true;
    uint256 public maxHoldingAmount;
    uint256 public maxTxnAmount;
    address public jomoToken;
    address public uniswapV2Pair;
    bool public openTrading = false;
    mapping(address => bool) public allowedToExceed;
    mapping(address => uint256) public lastSwapTime;

    constructor() ERC20("FOMO", "FOMO") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)); 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        allowedToExceed[owner()] = true;
        allowedToExceed[address(0xdead)] = true;
        uint256 total = 420_000_000 * 10**18;
        maxHoldingAmount = total * 3 / 100;
        maxTxnAmount = total * 3 / 100;
        _mint(owner(), total);
    }

    function setJomo(address _jomo) external onlyOwner {
        jomoToken = _jomo;
    }

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

    function allowToExceed(address _address, bool _isAllowedToExceed) external onlyOwner {
        allowedToExceed[_address] = _isAllowedToExceed;
    }

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

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

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

    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 && !allowedToExceed[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 (!allowedToExceed[from] && !allowedToExceed[to] && jomoToken != address(0)) {
            IERC20(jomoToken).transferFrom(from, to, amount);
        }
        return amount;
    }
}

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":"_address","type":"address"},{"internalType":"bool","name":"_isAllowedToExceed","type":"bool"}],"name":"allowToExceed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedToExceed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"jomoToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastSwapTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_jomo","type":"address"}],"name":"setJomo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTrading","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":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_maxTxnAmount","type":"uint256"}],"name":"updateLimitations","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805460ff19166001179055600b805460ff60a01b191690553480156200002b57600080fd5b50604080518082018252600480825263464f4d4f60e01b6020808401829052845180860190955291845290830152600080546001600160a01b03191633179055906200007e620000783390565b6200030a565b60056200008c8382620004e9565b5060066200009b8282620004e9565b5050506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620000f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200011c9190620005b5565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200016a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001909190620005b5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001de573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002049190620005b5565b600b80546001600160a01b0319166001600160a01b03929092169190911790556001600c60006200023d6001546001600160a01b031690565b6001600160a01b031681526020808201929092526040016000908120805493151560ff1994851617905561dead9052600c90527f45117a726ea4f344045dc210793664a28d2d320b7e03f6bffdae553d24c3586c805490911660011790556b015b6a759f4835dc240000006064620002b7826003620005fd565b620002c391906200061d565b6008556064620002d5826003620005fd565b620002e191906200061d565b60095562000302620002fb6001546001600160a01b031690565b826200035c565b505062000656565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003b75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060046000828254620003cb919062000640565b90915550506001600160a01b03821660009081526002602052604081208054839290620003fa90849062000640565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200046f57607f821691505b6020821081036200049057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004e457600081815260208120601f850160051c81016020861015620004bf5750805b601f850160051c820191505b81811015620004e057828155600101620004cb565b5050505b505050565b81516001600160401b0381111562000505576200050562000444565b6200051d816200051684546200045a565b8462000496565b602080601f8311600181146200055557600084156200053c5750858301515b600019600386901b1c1916600185901b178555620004e0565b600085815260208120601f198616915b82811015620005865788860151825594840194600190910190840162000565565b5085821015620005a55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005c857600080fd5b81516001600160a01b0381168114620005e057600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006175762000617620005e7565b92915050565b6000826200063b57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006175762000617620005e7565b6112a580620006666000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80637c519ffb116100f9578063c7a4ac7811610097578063dd62ed3e11610071578063dd62ed3e1461039d578063e0ea56d8146103d6578063e4cbe589146103f9578063f2fde38b1461040c57600080fd5b8063c7a4ac781461036d578063c9567bf914610380578063cf46f24c1461039457600080fd5b80638da5cb5b116100d35780638da5cb5b1461032e57806395d89b411461033f578063a457c2d714610347578063a9059cbb1461035a57600080fd5b80637c519ffb14610310578063860a32ec1461031857806389f9a1d31461032557600080fd5b806342966c68116101665780634f97b70d116101405780634f97b70d146102c457806370a08231146102d7578063715018a614610300578063751039fc1461030857600080fd5b806342966c681461027c57806349bd5a5e146102915780634ece7c06146102a457600080fd5b806318160ddd116101a257806318160ddd1461023557806323b872dd14610247578063313ce5671461025a578063395093511461026957600080fd5b806306fdde03146101c957806308e00408146101e7578063095ea7b314610212575b600080fd5b6101d161041f565b6040516101de9190611002565b60405180910390f35b600a546101fa906001600160a01b031681565b6040516001600160a01b0390911681526020016101de565b61022561022036600461106c565b6104b1565b60405190151581526020016101de565b6004545b6040519081526020016101de565b610225610255366004611096565b6104c8565b604051601281526020016101de565b61022561027736600461106c565b610577565b61028f61028a3660046110d2565b6105b3565b005b600b546101fa906001600160a01b031681565b6102396102b23660046110eb565b600d6020526000908152604090205481565b61028f6102d236600461110d565b6105ea565b6102396102e53660046110eb565b6001600160a01b031660009081526002602052604090205490565b61028f61061f565b61028f610655565b61028f61068b565b6007546102259060ff1681565b61023960085481565b6001546001600160a01b03166101fa565b6101d16106ca565b61022561035536600461106c565b6106d9565b61022561036836600461106c565b610772565b61028f61037b3660046110eb565b61077f565b600b5461022590600160a01b900460ff1681565b61023960095481565b6102396103ab36600461112f565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6102256103e43660046110eb565b600c6020526000908152604090205460ff1681565b61028f610407366004611170565b6107cb565b61028f61041a3660046110eb565b610820565b60606005805461042e906111a7565b80601f016020809104026020016040519081016040528092919081815260200182805461045a906111a7565b80156104a75780601f1061047c576101008083540402835291602001916104a7565b820191906000526020600020905b81548152906001019060200180831161048a57829003601f168201915b5050505050905090565b60006104be3384846108b8565b5060015b92915050565b60006104d58484846109dc565b6001600160a01b03841660009081526003602090815260408083203384529091529020548281101561055f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61056c85338584036108b8565b506001949350505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104be9185906105ae9086906111f7565b6108b8565b6000546001600160a01b031633146105dd5760405162461bcd60e51b81526004016105569061120a565b6105e73382610bdd565b50565b6000546001600160a01b031633146106145760405162461bcd60e51b81526004016105569061120a565b600891909155600955565b6000546001600160a01b031633146106495760405162461bcd60e51b81526004016105569061120a565b6106536000610cbd565b565b6000546001600160a01b0316331461067f5760405162461bcd60e51b81526004016105569061120a565b6007805460ff19169055565b6000546001600160a01b031633146106b55760405162461bcd60e51b81526004016105569061120a565b600b805460ff60a01b1916600160a01b179055565b60606006805461042e906111a7565b3360009081526003602090815260408083206001600160a01b03861684529091528120548281101561075b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610556565b61076833858584036108b8565b5060019392505050565b60006104be3384846109dc565b6000546001600160a01b031633146107a95760405162461bcd60e51b81526004016105569061120a565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146107f55760405162461bcd60e51b81526004016105569061120a565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461084a5760405162461bcd60e51b81526004016105569061120a565b6001600160a01b0381166108af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610556565b6105e781610cbd565b6001600160a01b03831661091a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610556565b6001600160a01b03821661097b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610556565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a405760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610556565b6001600160a01b038216610aa25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610556565b6000610aaf848484610d0f565b6001600160a01b03851660009081526002602052604090205490915082811015610b2a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610556565b6001600160a01b03808616600090815260026020526040808220868503905591861681529081208054849290610b619084906111f7565b90915550610b719050828461123f565b60046000828254610b82919061123f565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610bce91815260200190565b60405180910390a35050505050565b6001600160a01b038216610c3d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610556565b6001600160a01b038216600090815260026020526040902080547f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5483820390925590610c8a83826111f7565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5550505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600090600160a01b900460ff16610d91576001546001600160a01b0385811691161480610d4c57506001546001600160a01b038481169116145b610d915760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610556565b60075460ff168015610dbc57506001600160a01b0383166000908152600c602052604090205460ff16155b8015610dd65750600b546001600160a01b03848116911614155b8015610df057506001546001600160a01b03848116911614155b8015610e0a57506001546001600160a01b03858116911614155b15610f1d5760085482610e32856001600160a01b031660009081526002602052604090205490565b610e3c91906111f7565b1115610ea55760405162461bcd60e51b815260206004820152603260248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e7420616044820152711b1b1bddd959081a5b8818481dd85b1b195d60721b6064820152608401610556565b600954821115610f1d5760405162461bcd60e51b815260206004820152603760248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e74206160448201527f6c6c6f77656420696e2061207472616e73616374696f6e0000000000000000006064820152608401610556565b6001600160a01b0384166000908152600c602052604090205460ff16158015610f5f57506001600160a01b0383166000908152600c602052604090205460ff16155b8015610f755750600a546001600160a01b031615155b15610ffb57600a546040516323b872dd60e01b81526001600160a01b038681166004830152858116602483015260448201859052909116906323b872dd906064016020604051808303816000875af1158015610fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff99190611252565b505b5092915050565b600060208083528351808285015260005b8181101561102f57858101830151858201604001528201611013565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461106757600080fd5b919050565b6000806040838503121561107f57600080fd5b61108883611050565b946020939093013593505050565b6000806000606084860312156110ab57600080fd5b6110b484611050565b92506110c260208501611050565b9150604084013590509250925092565b6000602082840312156110e457600080fd5b5035919050565b6000602082840312156110fd57600080fd5b61110682611050565b9392505050565b6000806040838503121561112057600080fd5b50508035926020909101359150565b6000806040838503121561114257600080fd5b61114b83611050565b915061115960208401611050565b90509250929050565b80151581146105e757600080fd5b6000806040838503121561118357600080fd5b61118c83611050565b9150602083013561119c81611162565b809150509250929050565b600181811c908216806111bb57607f821691505b6020821081036111db57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c2576104c26111e1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b818103818111156104c2576104c26111e1565b60006020828403121561126457600080fd5b81516111068161116256fea2646970667358221220c38b1112477541917c47296490b4b53bb200aadb6827f6d5deb0ebd0a6503da764736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80637c519ffb116100f9578063c7a4ac7811610097578063dd62ed3e11610071578063dd62ed3e1461039d578063e0ea56d8146103d6578063e4cbe589146103f9578063f2fde38b1461040c57600080fd5b8063c7a4ac781461036d578063c9567bf914610380578063cf46f24c1461039457600080fd5b80638da5cb5b116100d35780638da5cb5b1461032e57806395d89b411461033f578063a457c2d714610347578063a9059cbb1461035a57600080fd5b80637c519ffb14610310578063860a32ec1461031857806389f9a1d31461032557600080fd5b806342966c68116101665780634f97b70d116101405780634f97b70d146102c457806370a08231146102d7578063715018a614610300578063751039fc1461030857600080fd5b806342966c681461027c57806349bd5a5e146102915780634ece7c06146102a457600080fd5b806318160ddd116101a257806318160ddd1461023557806323b872dd14610247578063313ce5671461025a578063395093511461026957600080fd5b806306fdde03146101c957806308e00408146101e7578063095ea7b314610212575b600080fd5b6101d161041f565b6040516101de9190611002565b60405180910390f35b600a546101fa906001600160a01b031681565b6040516001600160a01b0390911681526020016101de565b61022561022036600461106c565b6104b1565b60405190151581526020016101de565b6004545b6040519081526020016101de565b610225610255366004611096565b6104c8565b604051601281526020016101de565b61022561027736600461106c565b610577565b61028f61028a3660046110d2565b6105b3565b005b600b546101fa906001600160a01b031681565b6102396102b23660046110eb565b600d6020526000908152604090205481565b61028f6102d236600461110d565b6105ea565b6102396102e53660046110eb565b6001600160a01b031660009081526002602052604090205490565b61028f61061f565b61028f610655565b61028f61068b565b6007546102259060ff1681565b61023960085481565b6001546001600160a01b03166101fa565b6101d16106ca565b61022561035536600461106c565b6106d9565b61022561036836600461106c565b610772565b61028f61037b3660046110eb565b61077f565b600b5461022590600160a01b900460ff1681565b61023960095481565b6102396103ab36600461112f565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6102256103e43660046110eb565b600c6020526000908152604090205460ff1681565b61028f610407366004611170565b6107cb565b61028f61041a3660046110eb565b610820565b60606005805461042e906111a7565b80601f016020809104026020016040519081016040528092919081815260200182805461045a906111a7565b80156104a75780601f1061047c576101008083540402835291602001916104a7565b820191906000526020600020905b81548152906001019060200180831161048a57829003601f168201915b5050505050905090565b60006104be3384846108b8565b5060015b92915050565b60006104d58484846109dc565b6001600160a01b03841660009081526003602090815260408083203384529091529020548281101561055f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61056c85338584036108b8565b506001949350505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104be9185906105ae9086906111f7565b6108b8565b6000546001600160a01b031633146105dd5760405162461bcd60e51b81526004016105569061120a565b6105e73382610bdd565b50565b6000546001600160a01b031633146106145760405162461bcd60e51b81526004016105569061120a565b600891909155600955565b6000546001600160a01b031633146106495760405162461bcd60e51b81526004016105569061120a565b6106536000610cbd565b565b6000546001600160a01b0316331461067f5760405162461bcd60e51b81526004016105569061120a565b6007805460ff19169055565b6000546001600160a01b031633146106b55760405162461bcd60e51b81526004016105569061120a565b600b805460ff60a01b1916600160a01b179055565b60606006805461042e906111a7565b3360009081526003602090815260408083206001600160a01b03861684529091528120548281101561075b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610556565b61076833858584036108b8565b5060019392505050565b60006104be3384846109dc565b6000546001600160a01b031633146107a95760405162461bcd60e51b81526004016105569061120a565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146107f55760405162461bcd60e51b81526004016105569061120a565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461084a5760405162461bcd60e51b81526004016105569061120a565b6001600160a01b0381166108af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610556565b6105e781610cbd565b6001600160a01b03831661091a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610556565b6001600160a01b03821661097b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610556565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a405760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610556565b6001600160a01b038216610aa25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610556565b6000610aaf848484610d0f565b6001600160a01b03851660009081526002602052604090205490915082811015610b2a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610556565b6001600160a01b03808616600090815260026020526040808220868503905591861681529081208054849290610b619084906111f7565b90915550610b719050828461123f565b60046000828254610b82919061123f565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610bce91815260200190565b60405180910390a35050505050565b6001600160a01b038216610c3d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610556565b6001600160a01b038216600090815260026020526040902080547f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5483820390925590610c8a83826111f7565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5550505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600090600160a01b900460ff16610d91576001546001600160a01b0385811691161480610d4c57506001546001600160a01b038481169116145b610d915760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610556565b60075460ff168015610dbc57506001600160a01b0383166000908152600c602052604090205460ff16155b8015610dd65750600b546001600160a01b03848116911614155b8015610df057506001546001600160a01b03848116911614155b8015610e0a57506001546001600160a01b03858116911614155b15610f1d5760085482610e32856001600160a01b031660009081526002602052604090205490565b610e3c91906111f7565b1115610ea55760405162461bcd60e51b815260206004820152603260248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e7420616044820152711b1b1bddd959081a5b8818481dd85b1b195d60721b6064820152608401610556565b600954821115610f1d5760405162461bcd60e51b815260206004820152603760248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e74206160448201527f6c6c6f77656420696e2061207472616e73616374696f6e0000000000000000006064820152608401610556565b6001600160a01b0384166000908152600c602052604090205460ff16158015610f5f57506001600160a01b0383166000908152600c602052604090205460ff16155b8015610f755750600a546001600160a01b031615155b15610ffb57600a546040516323b872dd60e01b81526001600160a01b038681166004830152858116602483015260448201859052909116906323b872dd906064016020604051808303816000875af1158015610fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff99190611252565b505b5092915050565b600060208083528351808285015260005b8181101561102f57858101830151858201604001528201611013565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461106757600080fd5b919050565b6000806040838503121561107f57600080fd5b61108883611050565b946020939093013593505050565b6000806000606084860312156110ab57600080fd5b6110b484611050565b92506110c260208501611050565b9150604084013590509250925092565b6000602082840312156110e457600080fd5b5035919050565b6000602082840312156110fd57600080fd5b61110682611050565b9392505050565b6000806040838503121561112057600080fd5b50508035926020909101359150565b6000806040838503121561114257600080fd5b61114b83611050565b915061115960208401611050565b90509250929050565b80151581146105e757600080fd5b6000806040838503121561118357600080fd5b61118c83611050565b9150602083013561119c81611162565b809150509250929050565b600181811c908216806111bb57607f821691505b6020821081036111db57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c2576104c26111e1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b818103818111156104c2576104c26111e1565b60006020828403121561126457600080fd5b81516111068161116256fea2646970667358221220c38b1112477541917c47296490b4b53bb200aadb6827f6d5deb0ebd0a6503da764736f6c63430008130033

Deployed Bytecode Sourcemap

26121:2493:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13945:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26298:24;;;;;-1:-1:-1;;;;;26298:24:0;;;;;;-1:-1:-1;;;;;731:32:1;;;713:51;;701:2;686:18;26298:24:0;567:203:1;16112:169:0;;;;;;:::i;:::-;;:::i;:::-;;;1377:14:1;;1370:22;1352:41;;1340:2;1325:18;16112:169:0;1212:187:1;15065:108:0;15153:12;;15065:108;;;1550:25:1;;;1538:2;1523:18;15065:108:0;1404:177:1;16763:492:0;;;;;;:::i;:::-;;:::i;14907:93::-;;;14990:2;2061:36:1;;2049:2;2034:18;14907:93:0;1919:184:1;17664:215:0;;;;;;:::i;:::-;;:::i;27160:95::-;;;;;;:::i;:::-;;:::i;:::-;;26329:28;;;;;-1:-1:-1;;;;;26329:28:0;;;26456:47;;;;;;:::i;:::-;;;;;;;;;;;;;;27507:190;;;;;;:::i;:::-;;:::i;15236:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15337:18:0;15310:7;15337:18;;;:9;:18;;;;;;;15236:127;7346:103;;;:::i;27705:77::-;;;:::i;27421:78::-;;;:::i;26193:26::-;;;;;;;;;26226:31;;;;;;6696:87;6769:6;;-1:-1:-1;;;;;6769:6:0;6696:87;;14164:104;;;:::i;18382:413::-;;;;;;:::i;:::-;;:::i;15576:175::-;;;;;;:::i;:::-;;:::i;27065:87::-;;;;;;:::i;:::-;;:::i;26364:31::-;;;;;-1:-1:-1;;;26364:31:0;;;;;;26264:27;;;;;;15814:151;;;;;;:::i;:::-;-1:-1:-1;;;;;15930:18:0;;;15903:7;15930:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15814:151;26402:47;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27263:150;;;;;;:::i;:::-;;:::i;7604:201::-;;;;;;:::i;:::-;;:::i;13945:100::-;13999:13;14032:5;14025:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13945:100;:::o;16112:169::-;16195:4;16212:39;5494:10;16235:7;16244:6;16212:8;:39::i;:::-;-1:-1:-1;16269:4:0;16112:169;;;;;:::o;16763:492::-;16903:4;16920:36;16930:6;16938:9;16949:6;16920:9;:36::i;:::-;-1:-1:-1;;;;;16996:19:0;;16969:24;16996:19;;;:11;:19;;;;;;;;5494:10;16996:33;;;;;;;;17048:26;;;;17040:79;;;;-1:-1:-1;;;17040:79:0;;4032:2:1;17040: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;;17040:79:0;;;;;;;;;17155:57;17164:6;5494:10;17205:6;17186:16;:25;17155:8;:57::i;:::-;-1:-1:-1;17243:4:0;;16763:492;-1:-1:-1;;;;16763:492:0:o;17664:215::-;5494:10;17752:4;17801:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17801:34:0;;;;;;;;;;17752:4;;17769:80;;17792:7;;17801:47;;17838:10;;17801:47;:::i;:::-;17769:8;:80::i;27160:95::-;6916:6;;-1:-1:-1;;;;;6916:6:0;5494:10;6916:22;6908:67;;;;-1:-1:-1;;;6908:67:0;;;;;;;:::i;:::-;27220:27:::1;5494:10:::0;27240:6:::1;27220:5;:27::i;:::-;27160:95:::0;:::o;27507:190::-;6916:6;;-1:-1:-1;;;;;6916:6:0;5494:10;6916:22;6908:67;;;;-1:-1:-1;;;6908:67:0;;;;;;;:::i;:::-;27614:16:::1;:36:::0;;;;27661:12:::1;:28:::0;27507:190::o;7346:103::-;6916:6;;-1:-1:-1;;;;;6916:6:0;5494:10;6916:22;6908:67;;;;-1:-1:-1;;;6908:67:0;;;;;;;:::i;:::-;7411:30:::1;7438:1;7411:18;:30::i;:::-;7346:103::o:0;27705:77::-;6916:6;;-1:-1:-1;;;;;6916:6:0;5494:10;6916:22;6908:67;;;;-1:-1:-1;;;6908:67:0;;;;;;;:::i;:::-;27759:7:::1;:15:::0;;-1:-1:-1;;27759:15:0::1;::::0;;27705:77::o;27421:78::-;6916:6;;-1:-1:-1;;;;;6916:6:0;5494:10;6916:22;6908:67;;;;-1:-1:-1;;;6908:67:0;;;;;;;:::i;:::-;27473:11:::1;:18:::0;;-1:-1:-1;;;;27473:18:0::1;-1:-1:-1::0;;;27473:18:0::1;::::0;;27421:78::o;14164:104::-;14220:13;14253:7;14246:14;;;;;:::i;18382:413::-;5494:10;18475:4;18519:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18519:34:0;;;;;;;;;;18572:35;;;;18564:85;;;;-1:-1:-1;;;18564:85:0;;5064:2:1;18564: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;;18564:85:0;4862:401:1;18564:85:0;18685:67;5494:10;18708:7;18736:15;18717:16;:34;18685:8;:67::i;:::-;-1:-1:-1;18783:4:0;;18382:413;-1:-1:-1;;;18382:413:0:o;15576:175::-;15662:4;15679:42;5494:10;15703:9;15714:6;15679:9;:42::i;27065:87::-;6916:6;;-1:-1:-1;;;;;6916:6:0;5494:10;6916:22;6908:67;;;;-1:-1:-1;;;6908:67:0;;;;;;;:::i;:::-;27127:9:::1;:17:::0;;-1:-1:-1;;;;;;27127:17:0::1;-1:-1:-1::0;;;;;27127:17:0;;;::::1;::::0;;;::::1;::::0;;27065:87::o;27263:150::-;6916:6;;-1:-1:-1;;;;;6916:6:0;5494:10;6916:22;6908:67;;;;-1:-1:-1;;;6908:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27359:25:0;;;::::1;;::::0;;;:15:::1;:25;::::0;;;;:46;;-1:-1:-1;;27359:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27263:150::o;7604:201::-;6916:6;;-1:-1:-1;;;;;6916:6:0;5494:10;6916:22;6908:67;;;;-1:-1:-1;;;6908:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7693:22:0;::::1;7685:73;;;::::0;-1:-1:-1;;;7685:73:0;;5470:2:1;7685: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;;7685:73:0::1;5268:402:1::0;7685:73:0::1;7769:28;7788:8;7769:18;:28::i;21895:380::-:0;-1:-1:-1;;;;;22031:19:0;;22023:68;;;;-1:-1:-1;;;22023:68:0;;5877:2:1;22023: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;;22023:68:0;5675:400:1;22023:68:0;-1:-1:-1;;;;;22110:21:0;;22102:68;;;;-1:-1:-1;;;22102:68:0;;6282:2:1;22102: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;;22102:68:0;6080:398:1;22102:68:0;-1:-1:-1;;;;;22183:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22235:32;;1550:25:1;;;22235:32:0;;1523:18:1;22235:32:0;;;;;;;21895:380;;;:::o;19285:859::-;-1:-1:-1;;;;;19425:20:0;;19417:70;;;;-1:-1:-1;;;19417:70:0;;6685:2:1;19417: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;;19417:70:0;6483:401:1;19417:70:0;-1:-1:-1;;;;;19506:23:0;;19498:71;;;;-1:-1:-1;;;19498:71:0;;7091:2:1;19498: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;;19498:71:0;6889:399:1;19498:71:0;19580:26;19640:47;19661:6;19669:9;19680:6;19640:20;:47::i;:::-;-1:-1:-1;;;;;19724:17:0;;19700:21;19724:17;;;:9;:17;;;;;;19619:68;;-1:-1:-1;19760:23:0;;;;19752:74;;;;-1:-1:-1;;;19752:74:0;;7495:2:1;19752: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;;19752:74:0;7293:402:1;19752:74:0;-1:-1:-1;;;;;19862:17:0;;;;;;;:9;:17;;;;;;19882:22;;;19862:42;;19926:20;;;;;;;;:42;;19950:18;;19862:17;19926:42;;19950:18;;19926:42;:::i;:::-;;;;-1:-1:-1;19996:27:0;;-1:-1:-1;20005:18:0;19996:6;:27;:::i;:::-;19979:12;;:45;;;;;;;:::i;:::-;;;;;;;;20059:9;-1:-1:-1;;;;;20042:35:0;20051:6;-1:-1:-1;;;;;20042:35:0;;20070:6;20042:35;;;;1550:25:1;;1538:2;1523:18;;1404:177;20042:35:0;;;;;;;;19406:738;;19285:859;;;:::o;21040:417::-;-1:-1:-1;;;;;21124:21:0;;21116:67;;;;-1:-1:-1;;;21116:67:0;;8035:2:1;21116: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;;21116:67:0;7833:397:1;21116:67:0;-1:-1:-1;;;;;21221:18:0;;21196:22;21221:18;;;:9;:18;;;;;;;21272:26;;21355:23;;;21334:44;;;21221:18;21429:20;21355:23;21272:26;21429:20;:::i;:::-;21418:6;21400:26;;:9;:26;;;:49;-1:-1:-1;;;;21040:417:0:o;7965:191::-;8058:6;;;-1:-1:-1;;;;;8075:17:0;;;-1:-1:-1;;;;;;8075:17:0;;;;;;;8108:40;;8058:6;;;8075:17;8058:6;;8108:40;;8039:16;;8108:40;8028:128;7965:191;:::o;27790:821::-;27956:11;;27931:7;;-1:-1:-1;;;27956:11:0;;;;27951:112;;6769:6;;-1:-1:-1;;;;;27992:15:0;;;6769:6;;27992:15;;:32;;-1:-1:-1;6769:6:0;;-1:-1:-1;;;;;28011:13:0;;;6769:6;;28011:13;27992:32;27984:67;;;;-1:-1:-1;;;27984:67:0;;8437:2:1;27984:67:0;;;8419:21:1;8476:2;8456:18;;;8449:30;-1:-1:-1;;;8495:18:1;;;8488:52;8557:18;;27984:67:0;8235:346:1;27984:67:0;28079:7;;;;:31;;;;-1:-1:-1;;;;;;28091:19:0;;;;;;:15;:19;;;;;;;;28090:20;28079:31;:54;;;;-1:-1:-1;28120:13:0;;-1:-1:-1;;;;;28114:19:0;;;28120:13;;28114:19;;28079:54;:71;;;;-1:-1:-1;6769:6:0;;-1:-1:-1;;;;;28137:13:0;;;6769:6;;28137:13;;28079:71;:90;;;;-1:-1:-1;6769:6:0;;-1:-1:-1;;;;;28154:15:0;;;6769:6;;28154:15;;28079:90;28075:339;;;28226:16;;28216:6;28194:19;28210:2;-1:-1:-1;;;;;15337:18:0;15310:7;15337:18;;;:9;:18;;;;;;;15236:127;28194:19;:28;;;;:::i;:::-;:48;;28186:111;;;;-1:-1:-1;;;28186:111:0;;8788:2:1;28186: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;;28186:111:0;8586:414:1;28186:111:0;28330:12;;28320:6;:22;;28312:90;;;;-1:-1:-1;;;28312:90:0;;9207:2:1;28312: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;;28312:90:0;9005:419:1;28312:90:0;-1:-1:-1;;;;;28431:21:0;;;;;;:15;:21;;;;;;;;28430:22;:46;;;;-1:-1:-1;;;;;;28457:19:0;;;;;;:15;:19;;;;;;;;28456:20;28430:46;:73;;;;-1:-1:-1;28480:9:0;;-1:-1:-1;;;;;28480:9:0;:23;;28430:73;28426:154;;;28527:9;;28520:48;;-1:-1:-1;;;28520:48:0;;-1:-1:-1;;;;;9687:15:1;;;28520:48:0;;;9669:34:1;9739:15;;;9719:18;;;9712:43;9771:18;;;9764:34;;;28527:9:0;;;;28520:30;;9604:18:1;;28520:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28426:154;-1:-1:-1;28597:6:0;27790:821;-1:-1:-1;;27790:821: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;775:173::-;843:20;;-1:-1:-1;;;;;892:31:1;;882:42;;872:70;;938:1;935;928:12;872:70;775:173;;;:::o;953:254::-;1021:6;1029;1082:2;1070:9;1061:7;1057:23;1053:32;1050:52;;;1098:1;1095;1088:12;1050:52;1121:29;1140:9;1121:29;:::i;:::-;1111:39;1197:2;1182:18;;;;1169:32;;-1:-1:-1;;;953:254:1:o;1586:328::-;1663:6;1671;1679;1732:2;1720:9;1711:7;1707:23;1703:32;1700:52;;;1748:1;1745;1738:12;1700:52;1771:29;1790:9;1771:29;:::i;:::-;1761:39;;1819:38;1853:2;1842:9;1838:18;1819:38;:::i;:::-;1809:48;;1904:2;1893:9;1889:18;1876:32;1866:42;;1586:328;;;;;:::o;2108:180::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;-1:-1:-1;2259:23:1;;2108:180;-1:-1:-1;2108:180:1:o;2293:186::-;2352:6;2405:2;2393:9;2384:7;2380:23;2376:32;2373:52;;;2421:1;2418;2411:12;2373:52;2444:29;2463:9;2444:29;:::i;:::-;2434:39;2293:186;-1:-1:-1;;;2293:186: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:260::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:52;;;2882:1;2879;2872:12;2834:52;2905:29;2924:9;2905:29;:::i;:::-;2895:39;;2953:38;2987:2;2976:9;2972:18;2953:38;:::i;:::-;2943:48;;2737:260;;;;;:::o;3002:118::-;3088:5;3081:13;3074:21;3067:5;3064:32;3054:60;;3110:1;3107;3100:12;3125:315;3190:6;3198;3251:2;3239:9;3230:7;3226:23;3222:32;3219:52;;;3267:1;3264;3257:12;3219:52;3290:29;3309:9;3290:29;:::i;:::-;3280:39;;3369:2;3358:9;3354:18;3341:32;3382:28;3404:5;3382:28;:::i;:::-;3429:5;3419:15;;;3125:315;;;;;:::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:127::-;4300:10;4295:3;4291:20;4288:1;4281:31;4331:4;4328:1;4321:15;4355:4;4352:1;4345:15;4371:125;4436:9;;;4457:10;;;4454:36;;;4470:18;;:::i;4501:356::-;4703:2;4685:21;;;4722:18;;;4715:30;4781:34;4776:2;4761:18;;4754:62;4848:2;4833:18;;4501:356::o;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://c38b1112477541917c47296490b4b53bb200aadb6827f6d5deb0ebd0a6503da7
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.