ETH Price: $3,397.67 (-1.78%)
Gas: 6 Gwei

Token

Pepe Missor (PEPEMISSOR)
 

Overview

Max Total Supply

69,420,000,000 PEPEMISSOR

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,178,198,214.062384596577225569 PEPEMISSOR

Value
$0.00
0x77253c00924061e79b2d353b790638c54b1aa787
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:
PepeMissor

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

/*  
    Welcome to PepeMissor
    If you know you know.
    Don't be the missor this time
*/

pragma solidity ^0.8.0;

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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


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


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

pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
    
    function createPair(address tokenA, address tokenB) external returns (address pair);
 
}


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

    function WETH() external pure returns (address);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}
// File contracts/PepeMissor.sol

pragma solidity ^0.8.0;


contract PepeMissor is Ownable, ERC20 {
    bool public limited = true;
    bool public tradingEnabled;
    bool private swapping;
    bool public swapEnabled;

    uint256 public maxHoldingAmount = 69420000000000000000000000000;
    uint256 public minHoldingAmount;

    uint256 public buyMarketingFee = 10; // 1% buy marketing fee
    uint256 public sellMarketingFee = 20; // 1% sell marketing fee

    uint256 public swapTokensAtAmount = 100000 * 1e18;
    address public uniswapV2Pair;
    address public marketingWallet;
    IUniswapV2Router02 router = IUniswapV2Router02 (0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //uniswap v2 router
    mapping(address => bool) public blacklists;
    mapping(address => bool) public excludedFromFees;



    constructor() ERC20("Pepe Missor", "PEPEMISSOR") {
         address _uniswapV2Pair = IUniswapV2Factory(router.factory())
            .createPair(address(this), router.WETH());
           uniswapV2Pair   = _uniswapV2Pair;
           marketingWallet = address(0x3a1bd8DD569767cba161ad257642F34ada5253a5); //0x3a1bd8DD569767cba161ad257642F34ada5253a5

           excludedFromFees[address(this)] = true;
           excludedFromFees[msg.sender] = true;
           excludedFromFees[marketingWallet] = true;

            _mint(msg.sender, 69420000000000000000000000000); //69,420,000,000.000000000000000000 PEPEMISSOR
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setRule(bool _limited, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;

        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function setMarketingFee (uint256 buy, uint256 sell) external onlyOwner {
        buyMarketingFee = buy;
        sellMarketingFee = sell;
        require (buyMarketingFee + sellMarketingFee <= 99, "Max Fees limit is 99%");
    }

      function enableTrading() external onlyOwner{
        require(!tradingEnabled, "Trading already enabled.");
        tradingEnabled = true;
        swapEnabled = true;
    }

    function updateMarketingWallet (address newWallet) external onlyOwner {
        marketingWallet = newWallet;
    }

    function _transfer(address from,address to,uint256 amount) internal  override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
         require(!blacklists[to] && !blacklists[from], "Blacklisted");
        require(tradingEnabled || excludedFromFees[from] || excludedFromFees[to], "Trading not yet enabled!");
       
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

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

		uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (canSwap &&
            !swapping &&
            to == uniswapV2Pair &&
            swapEnabled
        ) {
            swapping = true;
                
            swapAndLiquify(contractTokenBalance);

            swapping = false;
        }

         bool takeFee = !swapping;
 
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (excludedFromFees[from] || excludedFromFees[to]) {
            takeFee = false;
        }
 

       uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellMarketingFee > 0) {
                fees = (amount * sellMarketingFee) / 100;
               
            }
            // on buy
            if (from == uniswapV2Pair && buyMarketingFee > 0) {
                fees = (amount * buyMarketingFee) / 100;
               
            }
 
            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }
 
            amount -= fees;
        }

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

     function swapAndLiquify(uint256 tokens) private {
       
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        if(allowance(address(this), address(router)) < tokens ){
       _approve(address(this), address(router), ~uint256(0));
        }
       router.swapExactTokensForETHSupportingFeeOnTransferTokens(
           tokens,
            0,
            path,
            marketingWallet,
            block.timestamp);
        
    }

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

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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526006805460ff191660011790556be04ee0ccb27ac646ac000000600755600a60098190556014905569152d02c7e14af6800000600b55600e80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790553480156200006d57600080fd5b506040518060400160405280600b81526020016a2832b8329026b4b9b9b7b960a91b8152506040518060400160405280600a8152602001692822a822a6a4a9a9a7a960b11b815250620000cf620000c96200030960201b60201c565b6200030d565b6004620000dd8382620004ee565b506005620000ec8282620004ee565b5050506000600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000145573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016b9190620005ba565b6001600160a01b031663c9c6539630600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f49190620005ba565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000242573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002689190620005ba565b600c80546001600160a01b038084166001600160a01b031992831617909255600d8054909116733a1bd8dd569767cba161ad257642f34ada5253a517815530600090815260106020526040808220805460ff19908116600190811790925533808552838520805483168417905594549095168352912080549093161790915590915062000302906be04ee0ccb27ac646ac0000006200035d565b5062000614565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620003b85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620003cc9190620005ec565b90915550506001600160a01b03821660009081526001602052604081208054839290620003fb908490620005ec565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200047557607f821691505b6020821081036200049657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200044557600081815260208120601f850160051c81016020861015620004c55750805b601f850160051c820191505b81811015620004e657828155600101620004d1565b505050505050565b81516001600160401b038111156200050a576200050a6200044a565b62000522816200051b845462000460565b846200049c565b602080601f8311600181146200055a5760008415620005415750858301515b600019600386901b1c1916600185901b178555620004e6565b600085815260208120601f198616915b828110156200058b578886015182559484019460019091019084016200056a565b5085821015620005aa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005cd57600080fd5b81516001600160a01b0381168114620005e557600080fd5b9392505050565b808201808211156200060e57634e487b7160e01b600052601160045260246000fd5b92915050565b61175780620006246000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806375f0a8741161010f578063a457c2d7116100a2578063dbe66ca011610071578063dbe66ca01461040e578063dd62ed3e14610431578063e2f456051461046a578063f2fde38b1461047357600080fd5b8063a457c2d7146103c2578063a9059cbb146103d5578063aacebbe3146103e8578063d07ea4e2146103fb57600080fd5b80638a8c523c116100de5780638a8c523c146103985780638da5cb5b146103a057806392136913146103b157806395d89b41146103ba57600080fd5b806375f0a874146103665780637bce5a0414610379578063860a32ec1461038257806389f9a1d31461038f57600080fd5b80633f301893116101875780634ada218b116101565780634ada218b1461030f5780636ddd17131461032157806370a0823114610335578063715018a61461035e57600080fd5b80633f301893146102a9578063404e5129146102be57806342966c68146102d157806349bd5a5e146102e457600080fd5b80631ab99e12116101c35780631ab99e121461026b57806323b872dd14610274578063313ce56714610287578063395093511461029657600080fd5b806306fdde03146101f5578063095ea7b31461021357806316c021291461023657806318160ddd14610259575b600080fd5b6101fd610486565b60405161020a919061132c565b60405180910390f35b61022661022136600461138f565b610518565b604051901515815260200161020a565b6102266102443660046113bb565b600f6020526000908152604090205460ff1681565b6003545b60405190815260200161020a565b61025d60085481565b6102266102823660046113df565b61052f565b6040516012815260200161020a565b6102266102a436600461138f565b6105de565b6102bc6102b7366004611420565b61061a565b005b6102bc6102cc366004611457565b6106a4565b6102bc6102df36600461148c565b6106f9565b600c546102f7906001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b60065461022690610100900460ff1681565b600654610226906301000000900460ff1681565b61025d6103433660046113bb565b6001600160a01b031660009081526001602052604090205490565b6102bc610706565b600d546102f7906001600160a01b031681565b61025d60095481565b6006546102269060ff1681565b61025d60075481565b6102bc61073c565b6000546001600160a01b03166102f7565b61025d600a5481565b6101fd6107d3565b6102266103d036600461138f565b6107e2565b6102266103e336600461138f565b61087b565b6102bc6103f63660046113bb565b610888565b6102bc6104093660046114a5565b6108d4565b61022661041c3660046113bb565b60106020526000908152604090205460ff1681565b61025d61043f3660046114d8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61025d600b5481565b6102bc6104813660046113bb565b610918565b60606004805461049590611511565b80601f01602080910402602001604051908101604052809291908181526020018280546104c190611511565b801561050e5780601f106104e35761010080835404028352916020019161050e565b820191906000526020600020905b8154815290600101906020018083116104f157829003601f168201915b5050505050905090565b60006105253384846109b0565b5060015b92915050565b600061053c848484610ad4565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105c65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105d385338584036109b0565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610525918590610615908690611561565b6109b0565b6000546001600160a01b031633146106445760405162461bcd60e51b81526004016105bd90611574565b6009829055600a819055606361065a8284611561565b11156106a05760405162461bcd60e51b81526020600482015260156024820152744d61782046656573206c696d69742069732039392560581b60448201526064016105bd565b5050565b6000546001600160a01b031633146106ce5760405162461bcd60e51b81526004016105bd90611574565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6107033382610eaa565b50565b6000546001600160a01b031633146107305760405162461bcd60e51b81526004016105bd90611574565b61073a6000610ff8565b565b6000546001600160a01b031633146107665760405162461bcd60e51b81526004016105bd90611574565b600654610100900460ff16156107be5760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e000000000000000060448201526064016105bd565b6006805463ff00ff0019166301000100179055565b60606005805461049590611511565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156108645760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105bd565b61087133858584036109b0565b5060019392505050565b6000610525338484610ad4565b6000546001600160a01b031633146108b25760405162461bcd60e51b81526004016105bd90611574565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146108fe5760405162461bcd60e51b81526004016105bd90611574565b6006805460ff191693151593909317909255600755600855565b6000546001600160a01b031633146109425760405162461bcd60e51b81526004016105bd90611574565b6001600160a01b0381166109a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105bd565b61070381610ff8565b6001600160a01b038316610a125760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105bd565b6001600160a01b038216610a735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105bd565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610afa5760405162461bcd60e51b81526004016105bd906115a9565b6001600160a01b038216610b205760405162461bcd60e51b81526004016105bd906115ee565b6001600160a01b0382166000908152600f602052604090205460ff16158015610b6257506001600160a01b0383166000908152600f602052604090205460ff16155b610b9c5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016105bd565b600654610100900460ff1680610bca57506001600160a01b03831660009081526010602052604090205460ff165b80610bed57506001600160a01b03821660009081526010602052604090205460ff165b610c395760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c656421000000000000000060448201526064016105bd565b80600003610c5257610c4d83836000611048565b505050565b60065460ff168015610c715750600c546001600160a01b038481169116145b15610d115760075481610c99846001600160a01b031660009081526001602052604090205490565b610ca39190611561565b11158015610cdc575060085481610ccf846001600160a01b031660009081526001602052604090205490565b610cd99190611561565b10155b610d115760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016105bd565b30600090815260016020526040902054600b5481108015908190610d3e575060065462010000900460ff16155b8015610d575750600c546001600160a01b038581169116145b8015610d6c57506006546301000000900460ff165b15610d98576006805462ff0000191662010000179055610d8b8261119d565b6006805462ff0000191690555b6006546001600160a01b03861660009081526010602052604090205460ff62010000909204821615911680610de557506001600160a01b03851660009081526010602052604090205460ff165b15610dee575060005b60008115610e9657600c546001600160a01b038781169116148015610e1557506000600a54115b15610e37576064600a5486610e2a9190611631565b610e349190611648565b90505b600c546001600160a01b038881169116148015610e5657506000600954115b15610e7857606460095486610e6b9190611631565b610e759190611648565b90505b8015610e8957610e89873083611048565b610e93818661166a565b94505b610ea1878787611048565b50505050505050565b6001600160a01b038216610f0a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105bd565b6001600160a01b03821660009081526001602052604090205481811015610f7e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105bd565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610fad90849061166a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03831661106e5760405162461bcd60e51b81526004016105bd906115a9565b6001600160a01b0382166110945760405162461bcd60e51b81526004016105bd906115ee565b6001600160a01b0383166000908152600160205260409020548181101561110c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105bd565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290611143908490611561565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118f91815260200190565b60405180910390a350505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106111d2576111d261167d565b6001600160a01b03928316602091820292909201810191909152600e54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561122b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124f9190611693565b816001815181106112625761126261167d565b6001600160a01b03928316602091820292909201810191909152600e54306000908152600283526040808220929094168152915220548211156112b957600e546112b99030906001600160a01b03166000196109b0565b600e54600d5460405163791ac94760e01b81526001600160a01b039283169263791ac947926112f6928792600092889291169042906004016116b0565b600060405180830381600087803b15801561131057600080fd5b505af1158015611324573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156113595785810183015185820160400152820161133d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461070357600080fd5b600080604083850312156113a257600080fd5b82356113ad8161137a565b946020939093013593505050565b6000602082840312156113cd57600080fd5b81356113d88161137a565b9392505050565b6000806000606084860312156113f457600080fd5b83356113ff8161137a565b9250602084013561140f8161137a565b929592945050506040919091013590565b6000806040838503121561143357600080fd5b50508035926020909101359150565b8035801515811461145257600080fd5b919050565b6000806040838503121561146a57600080fd5b82356114758161137a565b915061148360208401611442565b90509250929050565b60006020828403121561149e57600080fd5b5035919050565b6000806000606084860312156114ba57600080fd5b6114c384611442565b95602085013595506040909401359392505050565b600080604083850312156114eb57600080fd5b82356114f68161137a565b915060208301356115068161137a565b809150509250929050565b600181811c9082168061152557607f821691505b60208210810361154557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105295761052961154b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176105295761052961154b565b60008261166557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156105295761052961154b565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156116a557600080fd5b81516113d88161137a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117005784516001600160a01b0316835293830193918301916001016116db565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208f4a6e25f439d7ebeb8423327f9532eb584813bdf6e431abc16ee167d8a72e8064736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806375f0a8741161010f578063a457c2d7116100a2578063dbe66ca011610071578063dbe66ca01461040e578063dd62ed3e14610431578063e2f456051461046a578063f2fde38b1461047357600080fd5b8063a457c2d7146103c2578063a9059cbb146103d5578063aacebbe3146103e8578063d07ea4e2146103fb57600080fd5b80638a8c523c116100de5780638a8c523c146103985780638da5cb5b146103a057806392136913146103b157806395d89b41146103ba57600080fd5b806375f0a874146103665780637bce5a0414610379578063860a32ec1461038257806389f9a1d31461038f57600080fd5b80633f301893116101875780634ada218b116101565780634ada218b1461030f5780636ddd17131461032157806370a0823114610335578063715018a61461035e57600080fd5b80633f301893146102a9578063404e5129146102be57806342966c68146102d157806349bd5a5e146102e457600080fd5b80631ab99e12116101c35780631ab99e121461026b57806323b872dd14610274578063313ce56714610287578063395093511461029657600080fd5b806306fdde03146101f5578063095ea7b31461021357806316c021291461023657806318160ddd14610259575b600080fd5b6101fd610486565b60405161020a919061132c565b60405180910390f35b61022661022136600461138f565b610518565b604051901515815260200161020a565b6102266102443660046113bb565b600f6020526000908152604090205460ff1681565b6003545b60405190815260200161020a565b61025d60085481565b6102266102823660046113df565b61052f565b6040516012815260200161020a565b6102266102a436600461138f565b6105de565b6102bc6102b7366004611420565b61061a565b005b6102bc6102cc366004611457565b6106a4565b6102bc6102df36600461148c565b6106f9565b600c546102f7906001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b60065461022690610100900460ff1681565b600654610226906301000000900460ff1681565b61025d6103433660046113bb565b6001600160a01b031660009081526001602052604090205490565b6102bc610706565b600d546102f7906001600160a01b031681565b61025d60095481565b6006546102269060ff1681565b61025d60075481565b6102bc61073c565b6000546001600160a01b03166102f7565b61025d600a5481565b6101fd6107d3565b6102266103d036600461138f565b6107e2565b6102266103e336600461138f565b61087b565b6102bc6103f63660046113bb565b610888565b6102bc6104093660046114a5565b6108d4565b61022661041c3660046113bb565b60106020526000908152604090205460ff1681565b61025d61043f3660046114d8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61025d600b5481565b6102bc6104813660046113bb565b610918565b60606004805461049590611511565b80601f01602080910402602001604051908101604052809291908181526020018280546104c190611511565b801561050e5780601f106104e35761010080835404028352916020019161050e565b820191906000526020600020905b8154815290600101906020018083116104f157829003601f168201915b5050505050905090565b60006105253384846109b0565b5060015b92915050565b600061053c848484610ad4565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105c65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105d385338584036109b0565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610525918590610615908690611561565b6109b0565b6000546001600160a01b031633146106445760405162461bcd60e51b81526004016105bd90611574565b6009829055600a819055606361065a8284611561565b11156106a05760405162461bcd60e51b81526020600482015260156024820152744d61782046656573206c696d69742069732039392560581b60448201526064016105bd565b5050565b6000546001600160a01b031633146106ce5760405162461bcd60e51b81526004016105bd90611574565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6107033382610eaa565b50565b6000546001600160a01b031633146107305760405162461bcd60e51b81526004016105bd90611574565b61073a6000610ff8565b565b6000546001600160a01b031633146107665760405162461bcd60e51b81526004016105bd90611574565b600654610100900460ff16156107be5760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e000000000000000060448201526064016105bd565b6006805463ff00ff0019166301000100179055565b60606005805461049590611511565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156108645760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105bd565b61087133858584036109b0565b5060019392505050565b6000610525338484610ad4565b6000546001600160a01b031633146108b25760405162461bcd60e51b81526004016105bd90611574565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146108fe5760405162461bcd60e51b81526004016105bd90611574565b6006805460ff191693151593909317909255600755600855565b6000546001600160a01b031633146109425760405162461bcd60e51b81526004016105bd90611574565b6001600160a01b0381166109a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105bd565b61070381610ff8565b6001600160a01b038316610a125760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105bd565b6001600160a01b038216610a735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105bd565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610afa5760405162461bcd60e51b81526004016105bd906115a9565b6001600160a01b038216610b205760405162461bcd60e51b81526004016105bd906115ee565b6001600160a01b0382166000908152600f602052604090205460ff16158015610b6257506001600160a01b0383166000908152600f602052604090205460ff16155b610b9c5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016105bd565b600654610100900460ff1680610bca57506001600160a01b03831660009081526010602052604090205460ff165b80610bed57506001600160a01b03821660009081526010602052604090205460ff165b610c395760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c656421000000000000000060448201526064016105bd565b80600003610c5257610c4d83836000611048565b505050565b60065460ff168015610c715750600c546001600160a01b038481169116145b15610d115760075481610c99846001600160a01b031660009081526001602052604090205490565b610ca39190611561565b11158015610cdc575060085481610ccf846001600160a01b031660009081526001602052604090205490565b610cd99190611561565b10155b610d115760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016105bd565b30600090815260016020526040902054600b5481108015908190610d3e575060065462010000900460ff16155b8015610d575750600c546001600160a01b038581169116145b8015610d6c57506006546301000000900460ff165b15610d98576006805462ff0000191662010000179055610d8b8261119d565b6006805462ff0000191690555b6006546001600160a01b03861660009081526010602052604090205460ff62010000909204821615911680610de557506001600160a01b03851660009081526010602052604090205460ff165b15610dee575060005b60008115610e9657600c546001600160a01b038781169116148015610e1557506000600a54115b15610e37576064600a5486610e2a9190611631565b610e349190611648565b90505b600c546001600160a01b038881169116148015610e5657506000600954115b15610e7857606460095486610e6b9190611631565b610e759190611648565b90505b8015610e8957610e89873083611048565b610e93818661166a565b94505b610ea1878787611048565b50505050505050565b6001600160a01b038216610f0a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105bd565b6001600160a01b03821660009081526001602052604090205481811015610f7e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105bd565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610fad90849061166a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03831661106e5760405162461bcd60e51b81526004016105bd906115a9565b6001600160a01b0382166110945760405162461bcd60e51b81526004016105bd906115ee565b6001600160a01b0383166000908152600160205260409020548181101561110c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105bd565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290611143908490611561565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118f91815260200190565b60405180910390a350505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106111d2576111d261167d565b6001600160a01b03928316602091820292909201810191909152600e54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561122b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124f9190611693565b816001815181106112625761126261167d565b6001600160a01b03928316602091820292909201810191909152600e54306000908152600283526040808220929094168152915220548211156112b957600e546112b99030906001600160a01b03166000196109b0565b600e54600d5460405163791ac94760e01b81526001600160a01b039283169263791ac947926112f6928792600092889291169042906004016116b0565b600060405180830381600087803b15801561131057600080fd5b505af1158015611324573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156113595785810183015185820160400152820161133d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461070357600080fd5b600080604083850312156113a257600080fd5b82356113ad8161137a565b946020939093013593505050565b6000602082840312156113cd57600080fd5b81356113d88161137a565b9392505050565b6000806000606084860312156113f457600080fd5b83356113ff8161137a565b9250602084013561140f8161137a565b929592945050506040919091013590565b6000806040838503121561143357600080fd5b50508035926020909101359150565b8035801515811461145257600080fd5b919050565b6000806040838503121561146a57600080fd5b82356114758161137a565b915061148360208401611442565b90509250929050565b60006020828403121561149e57600080fd5b5035919050565b6000806000606084860312156114ba57600080fd5b6114c384611442565b95602085013595506040909401359392505050565b600080604083850312156114eb57600080fd5b82356114f68161137a565b915060208301356115068161137a565b809150509250929050565b600181811c9082168061152557607f821691505b60208210810361154557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105295761052961154b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176105295761052961154b565b60008261166557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156105295761052961154b565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156116a557600080fd5b81516113d88161137a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117005784516001600160a01b0316835293830193918301916001016116db565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208f4a6e25f439d7ebeb8423327f9532eb584813bdf6e431abc16ee167d8a72e8064736f6c63430008130033

Deployed Bytecode Sourcemap

19976:4998:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9349:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11516:169;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11516:169:0;1023:187:1;20639:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10469:108;10557:12;;10469:108;;;1613:25:1;;;1601:2;1586:18;10469:108:0;1467:177:1;20217:31:0;;;;;;12167:492;;;;;;:::i;:::-;;:::i;10311:93::-;;;10394:2;2252:36:1;;2240:2;2225:18;10311:93:0;2110:184:1;13068:215:0;;;;;;:::i;:::-;;:::i;21773:232::-;;;;;;:::i;:::-;;:::i;:::-;;21384:135;;;;;;:::i;:::-;;:::i;24890:81::-;;;;;;:::i;:::-;;:::i;20449:28::-;;;;;-1:-1:-1;;;;;20449:28:0;;;;;;-1:-1:-1;;;;;3386:32:1;;;3368:51;;3356:2;3341:18;20449:28:0;3222:203:1;20054:26:0;;;;;;;;;;;;20115:23;;;;;;;;;;;;10640:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10741:18:0;10714:7;10741:18;;;:9;:18;;;;;;;10640:127;2750:103;;;:::i;20484:30::-;;;;;-1:-1:-1;;;;;20484:30:0;;;20257:35;;;;;;20021:26;;;;;;;;;20147:63;;;;;;22015:175;;;:::i;2099:87::-;2145:7;2172:6;-1:-1:-1;;;;;2172:6:0;2099:87;;20323:36;;;;;;9568:104;;;:::i;13786:413::-;;;;;;:::i;:::-;;:::i;10980:175::-;;;;;;:::i;:::-;;:::i;22198:116::-;;;;;;:::i;:::-;;:::i;21527:238::-;;;;;;:::i;:::-;;:::i;20688:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;11218:151;;;;;;:::i;:::-;-1:-1:-1;;;;;11334:18:0;;;11307:7;11334:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11218:151;20393:49;;;;;;3008:201;;;;;;:::i;:::-;;:::i;9349:100::-;9403:13;9436:5;9429:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9349:100;:::o;11516:169::-;11599:4;11616:39;897:10;11639:7;11648:6;11616:8;:39::i;:::-;-1:-1:-1;11673:4:0;11516:169;;;;;:::o;12167:492::-;12307:4;12324:36;12334:6;12342:9;12353:6;12324:9;:36::i;:::-;-1:-1:-1;;;;;12400:19:0;;12373:24;12400:19;;;:11;:19;;;;;;;;897:10;12400:33;;;;;;;;12452:26;;;;12444:79;;;;-1:-1:-1;;;12444:79:0;;4731:2:1;12444:79:0;;;4713:21:1;4770:2;4750:18;;;4743:30;4809:34;4789:18;;;4782:62;-1:-1:-1;;;4860:18:1;;;4853:38;4908:19;;12444:79:0;;;;;;;;;12559:57;12568:6;897:10;12609:6;12590:16;:25;12559:8;:57::i;:::-;-1:-1:-1;12647:4:0;;12167:492;-1:-1:-1;;;;12167:492:0:o;13068:215::-;897:10;13156:4;13205:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13205:34:0;;;;;;;;;;13156:4;;13173:80;;13196:7;;13205:47;;13242:10;;13205:47;:::i;:::-;13173:8;:80::i;21773:232::-;2145:7;2172:6;-1:-1:-1;;;;;2172:6:0;897:10;2319:23;2311:68;;;;-1:-1:-1;;;2311:68:0;;;;;;;:::i;:::-;21856:15:::1;:21:::0;;;21888:16:::1;:23:::0;;;21969:2:::1;21931:34;21907:4:::0;21874:3;21931:34:::1;:::i;:::-;:40;;21922:75;;;::::0;-1:-1:-1;;;21922:75:0;;5763:2:1;21922:75:0::1;::::0;::::1;5745:21:1::0;5802:2;5782:18;;;5775:30;-1:-1:-1;;;5821:18:1;;;5814:51;5882:18;;21922:75:0::1;5561:345:1::0;21922:75:0::1;21773:232:::0;;:::o;21384:135::-;2145:7;2172:6;-1:-1:-1;;;;;2172:6:0;897:10;2319:23;2311:68;;;;-1:-1:-1;;;2311:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21473:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;21473:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21384:135::o;24890:81::-;24939:24;24945:10;24957:5;24939;:24::i;:::-;24890:81;:::o;2750:103::-;2145:7;2172:6;-1:-1:-1;;;;;2172:6:0;897:10;2319:23;2311:68;;;;-1:-1:-1;;;2311:68:0;;;;;;;:::i;:::-;2815:30:::1;2842:1;2815:18;:30::i;:::-;2750:103::o:0;22015:175::-;2145:7;2172:6;-1:-1:-1;;;;;2172:6:0;897:10;2319:23;2311:68;;;;-1:-1:-1;;;2311:68:0;;;;;;;:::i;:::-;22078:14:::1;::::0;::::1;::::0;::::1;;;22077:15;22069:52;;;::::0;-1:-1:-1;;;22069:52:0;;6113:2:1;22069:52:0::1;::::0;::::1;6095:21:1::0;6152:2;6132:18;;;6125:30;6191:26;6171:18;;;6164:54;6235:18;;22069:52:0::1;5911:348:1::0;22069:52:0::1;22132:14;:21:::0;;-1:-1:-1;;22164:18:0;;;;;22015:175::o;9568:104::-;9624:13;9657:7;9650:14;;;;;:::i;13786:413::-;897:10;13879:4;13923:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13923:34:0;;;;;;;;;;13976:35;;;;13968:85;;;;-1:-1:-1;;;13968:85:0;;6466:2:1;13968:85:0;;;6448:21:1;6505:2;6485:18;;;6478:30;6544:34;6524:18;;;6517:62;-1:-1:-1;;;6595:18:1;;;6588:35;6640:19;;13968:85:0;6264:401:1;13968:85:0;14089:67;897:10;14112:7;14140:15;14121:16;:34;14089:8;:67::i;:::-;-1:-1:-1;14187:4:0;;13786:413;-1:-1:-1;;;13786:413:0:o;10980:175::-;11066:4;11083:42;897:10;11107:9;11118:6;11083:9;:42::i;22198:116::-;2145:7;2172:6;-1:-1:-1;;;;;2172:6:0;897:10;2319:23;2311:68;;;;-1:-1:-1;;;2311:68:0;;;;;;;:::i;:::-;22279:15:::1;:27:::0;;-1:-1:-1;;;;;;22279:27:0::1;-1:-1:-1::0;;;;;22279:27:0;;;::::1;::::0;;;::::1;::::0;;22198:116::o;21527:238::-;2145:7;2172:6;-1:-1:-1;;;;;2172:6:0;897:10;2319:23;2311:68;;;;-1:-1:-1;;;2311:68:0;;;;;;;:::i;:::-;21643:7:::1;:18:::0;;-1:-1:-1;;21643:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;21674:16:::1;:36:::0;21721:16:::1;:36:::0;21527:238::o;3008:201::-;2145:7;2172:6;-1:-1:-1;;;;;2172:6:0;897:10;2319:23;2311:68;;;;-1:-1:-1;;;2311:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3097:22:0;::::1;3089:73;;;::::0;-1:-1:-1;;;3089:73:0;;6872:2:1;3089:73:0::1;::::0;::::1;6854:21:1::0;6911:2;6891:18;;;6884:30;6950:34;6930:18;;;6923:62;-1:-1:-1;;;7001:18:1;;;6994:36;7047:19;;3089:73:0::1;6670:402:1::0;3089:73:0::1;3173:28;3192:8;3173:18;:28::i;17470:380::-:0;-1:-1:-1;;;;;17606:19:0;;17598:68;;;;-1:-1:-1;;;17598:68:0;;7279:2:1;17598:68:0;;;7261:21:1;7318:2;7298:18;;;7291:30;7357:34;7337:18;;;7330:62;-1:-1:-1;;;7408:18:1;;;7401:34;7452:19;;17598:68:0;7077:400:1;17598:68:0;-1:-1:-1;;;;;17685:21:0;;17677:68;;;;-1:-1:-1;;;17677:68:0;;7684:2:1;17677:68:0;;;7666:21:1;7723:2;7703:18;;;7696:30;7762:34;7742:18;;;7735:62;-1:-1:-1;;;7813:18:1;;;7806:32;7855:19;;17677:68:0;7482:398:1;17677:68:0;-1:-1:-1;;;;;17758:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17810:32;;1613:25:1;;;17810:32:0;;1586:18:1;17810:32:0;;;;;;;17470:380;;;:::o;22322:2034::-;-1:-1:-1;;;;;22419:18:0;;22411:68;;;;-1:-1:-1;;;22411:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22498:16:0;;22490:64;;;;-1:-1:-1;;;22490:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22575:14:0;;;;;;:10;:14;;;;;;;;22574:15;:36;;;;-1:-1:-1;;;;;;22594:16:0;;;;;;:10;:16;;;;;;;;22593:17;22574:36;22566:60;;;;-1:-1:-1;;;22566:60:0;;8897:2:1;22566:60:0;;;8879:21:1;8936:2;8916:18;;;8909:30;-1:-1:-1;;;8955:18:1;;;8948:41;9006:18;;22566:60:0;8695:335:1;22566:60:0;22645:14;;;;;;;;:40;;-1:-1:-1;;;;;;22663:22:0;;;;;;:16;:22;;;;;;;;22645:40;:64;;;-1:-1:-1;;;;;;22689:20:0;;;;;;:16;:20;;;;;;;;22645:64;22637:101;;;;-1:-1:-1;;;22637:101:0;;9237:2:1;22637:101:0;;;9219:21:1;9276:2;9256:18;;;9249:30;9315:26;9295:18;;;9288:54;9359:18;;22637:101:0;9035:348:1;22637:101:0;22762:6;22772:1;22762:11;22758:93;;22790:28;22806:4;22812:2;22816:1;22790:15;:28::i;:::-;22322:2034;;;:::o;22758:93::-;22867:7;;;;:32;;;;-1:-1:-1;22886:13:0;;-1:-1:-1;;;;;22878:21:0;;;22886:13;;22878:21;22867:32;22863:172;;;22950:16;;22940:6;22924:13;22934:2;-1:-1:-1;;;;;10741:18:0;10714:7;10741:18;;;:9;:18;;;;;;;10640:127;22924:13;:22;;;;:::i;:::-;:42;;:88;;;;;22996:16;;22986:6;22970:13;22980:2;-1:-1:-1;;;;;10741:18:0;10714:7;10741:18;;;:9;:18;;;;;;;10640:127;22970:13;:22;;;;:::i;:::-;:42;;22924:88;22916:107;;;;-1:-1:-1;;;22916:107:0;;9590:2:1;22916:107:0;;;9572:21:1;9629:1;9609:18;;;9602:29;-1:-1:-1;;;9647:18:1;;;9640:36;9693:18;;22916:107:0;9388:329:1;22916:107:0;23090:4;23041:28;10741:18;;;:9;:18;;;;;;23148;;23124:42;;;;;;;23183:33;;-1:-1:-1;23208:8:0;;;;;;;23207:9;23183:33;:69;;;;-1:-1:-1;23239:13:0;;-1:-1:-1;;;;;23233:19:0;;;23239:13;;23233:19;23183:69;:97;;;;-1:-1:-1;23269:11:0;;;;;;;23183:97;23179:257;;;23307:8;:15;;-1:-1:-1;;23307:15:0;;;;;23355:36;23370:20;23355:14;:36::i;:::-;23408:8;:16;;-1:-1:-1;;23408:16:0;;;23179:257;23465:8;;-1:-1:-1;;;;;23576:22:0;;23449:12;23576:22;;;:16;:22;;;;;;23465:8;;;;;;;23464:9;;23576:22;;:46;;-1:-1:-1;;;;;;23602:20:0;;;;;;:16;:20;;;;;;;;23576:46;23572:94;;;-1:-1:-1;23649:5:0;23572:94;23680:12;23785:7;23781:522;;;23843:13;;-1:-1:-1;;;;;23837:19:0;;;23843:13;;23837:19;:43;;;;;23879:1;23860:16;;:20;23837:43;23833:141;;;23938:3;23918:16;;23909:6;:25;;;;:::i;:::-;23908:33;;;;:::i;:::-;23901:40;;23833:141;24023:13;;-1:-1:-1;;;;;24015:21:0;;;24023:13;;24015:21;:44;;;;;24058:1;24040:15;;:19;24015:44;24011:141;;;24116:3;24097:15;;24088:6;:24;;;;:::i;:::-;24087:32;;;;:::i;:::-;24080:39;;24011:141;24173:8;;24169:91;;24202:42;24218:4;24232;24239;24202:15;:42::i;:::-;24277:14;24287:4;24277:14;;:::i;:::-;;;23781:522;24315:33;24331:4;24337:2;24341:6;24315:15;:33::i;:::-;22400:1956;;;;22322:2034;;;:::o;16441:591::-;-1:-1:-1;;;;;16525:21:0;;16517:67;;;;-1:-1:-1;;;16517:67:0;;10452:2:1;16517:67:0;;;10434:21:1;10491:2;10471:18;;;10464:30;10530:34;10510:18;;;10503:62;-1:-1:-1;;;10581:18:1;;;10574:31;10622:19;;16517:67:0;10250:397:1;16517:67:0;-1:-1:-1;;;;;16684:18:0;;16659:22;16684:18;;;:9;:18;;;;;;16721:24;;;;16713:71;;;;-1:-1:-1;;;16713:71:0;;10854:2:1;16713:71:0;;;10836:21:1;10893:2;10873:18;;;10866:30;10932:34;10912:18;;;10905:62;-1:-1:-1;;;10983:18:1;;;10976:32;11025:19;;16713:71:0;10652:398:1;16713:71:0;-1:-1:-1;;;;;16820:18:0;;;;;;:9;:18;;;;;16841:23;;;16820:44;;16886:12;:22;;16858:6;;16820:18;16886:22;;16858:6;;16886:22;:::i;:::-;;;;-1:-1:-1;;16926:37:0;;1613:25:1;;;16952:1:0;;-1:-1:-1;;;;;16926:37:0;;;;;1601:2:1;1586:18;16926:37:0;;;;;;;22322:2034;;;:::o;3369:191::-;3443:16;3462:6;;-1:-1:-1;;;;;3479:17:0;;;-1:-1:-1;;;;;;3479:17:0;;;;;;3512:40;;3462:6;;;;;;;3512:40;;3443:16;3512:40;3432:128;3369:191;:::o;14689:733::-;-1:-1:-1;;;;;14829:20:0;;14821:70;;;;-1:-1:-1;;;14821:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14910:23:0;;14902:71;;;;-1:-1:-1;;;14902:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15070:17:0;;15046:21;15070:17;;;:9;:17;;;;;;15106:23;;;;15098:74;;;;-1:-1:-1;;;15098:74:0;;11257:2:1;15098:74:0;;;11239:21:1;11296:2;11276:18;;;11269:30;11335:34;11315:18;;;11308:62;-1:-1:-1;;;11386:18:1;;;11379:36;11432:19;;15098:74:0;11055:402:1;15098:74:0;-1:-1:-1;;;;;15208:17:0;;;;;;;:9;:17;;;;;;15228:22;;;15208:42;;15272:20;;;;;;;;:30;;15244:6;;15208:17;15272:30;;15244:6;;15272:30;:::i;:::-;;;;;;;;15337:9;-1:-1:-1;;;;;15320:35:0;15329:6;-1:-1:-1;;;;;15320:35:0;;15348:6;15320:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;15320:35:0;;;;;;;;14810:612;14689:733;;;:::o;24365:517::-;24457:16;;;24471:1;24457:16;;;;;;;;24433:21;;24457:16;;;;;;;;;;-1:-1:-1;24457:16:0;24433:40;;24502:4;24484;24489:1;24484:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24484:23:0;;;:7;;;;;;;;;;:23;;;;24528:6;;:13;;;-1:-1:-1;;;24528:13:0;;;;:6;;;;;:11;;:13;;;;;24484:7;;24528:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24518:4;24523:1;24518:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24518:23:0;;;:7;;;;;;;;;;:23;;;;24588:6;;24573:4;11307:7;11334:18;;;:11;:18;;;;;;24588:6;;;;11334:27;;;;;;24599:6;-1:-1:-1;24552:130:0;;;24649:6;;24617:53;;24634:4;;-1:-1:-1;;;;;24649:6:0;-1:-1:-1;;24617:8:0;:53::i;:::-;24691:6;;24818:15;;24691:173;;-1:-1:-1;;;24691:173:0;;-1:-1:-1;;;;;24691:6:0;;;;:57;;:173;;24762:6;;24691;;24799:4;;24818:15;;;24848;;24691:173;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24413:469;24365:517;:::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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;:::-;1451:5;1215:247;-1:-1:-1;;;1215:247:1:o;1649:456::-;1726:6;1734;1742;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1850:9;1837:23;1869:31;1894:5;1869:31;:::i;:::-;1919:5;-1:-1:-1;1976:2:1;1961:18;;1948:32;1989:33;1948:32;1989:33;:::i;:::-;1649:456;;2041:7;;-1:-1:-1;;;2095:2:1;2080:18;;;;2067:32;;1649:456::o;2299:248::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;-1:-1:-1;;2467:23:1;;;2537:2;2522:18;;;2509:32;;-1:-1:-1;2299:248:1:o;2552:160::-;2617:20;;2673:13;;2666:21;2656:32;;2646:60;;2702:1;2699;2692:12;2646:60;2552:160;;;:::o;2717:315::-;2782:6;2790;2843:2;2831:9;2822:7;2818:23;2814:32;2811:52;;;2859:1;2856;2849:12;2811:52;2898:9;2885:23;2917:31;2942:5;2917:31;:::i;:::-;2967:5;-1:-1:-1;2991:35:1;3022:2;3007:18;;2991:35;:::i;:::-;2981:45;;2717:315;;;;;:::o;3037:180::-;3096:6;3149:2;3137:9;3128:7;3124:23;3120:32;3117:52;;;3165:1;3162;3155:12;3117:52;-1:-1:-1;3188:23:1;;3037:180;-1:-1:-1;3037:180:1:o;3430:316::-;3504:6;3512;3520;3573:2;3561:9;3552:7;3548:23;3544:32;3541:52;;;3589:1;3586;3579:12;3541:52;3612:26;3628:9;3612:26;:::i;:::-;3602:36;3685:2;3670:18;;3657:32;;-1:-1:-1;3736:2:1;3721:18;;;3708:32;;3430:316;-1:-1:-1;;;3430:316:1:o;3751:388::-;3819:6;3827;3880:2;3868:9;3859:7;3855:23;3851:32;3848:52;;;3896:1;3893;3886:12;3848:52;3935:9;3922:23;3954:31;3979:5;3954:31;:::i;:::-;4004:5;-1:-1:-1;4061:2:1;4046:18;;4033:32;4074:33;4033:32;4074:33;:::i;:::-;4126:7;4116:17;;;3751:388;;;;;:::o;4144:380::-;4223:1;4219:12;;;;4266;;;4287:61;;4341:4;4333:6;4329:17;4319:27;;4287:61;4394:2;4386:6;4383:14;4363:18;4360:38;4357:161;;4440:10;4435:3;4431:20;4428:1;4421:31;4475:4;4472:1;4465:15;4503:4;4500:1;4493:15;4357:161;;4144:380;;;:::o;4938:127::-;4999:10;4994:3;4990:20;4987:1;4980:31;5030:4;5027:1;5020:15;5054:4;5051:1;5044:15;5070:125;5135:9;;;5156:10;;;5153:36;;;5169:18;;:::i;5200:356::-;5402:2;5384:21;;;5421:18;;;5414:30;5480:34;5475:2;5460:18;;5453:62;5547:2;5532:18;;5200:356::o;7885:401::-;8087:2;8069:21;;;8126:2;8106:18;;;8099:30;8165:34;8160:2;8145:18;;8138:62;-1:-1:-1;;;8231:2:1;8216:18;;8209:35;8276:3;8261:19;;7885:401::o;8291:399::-;8493:2;8475:21;;;8532:2;8512:18;;;8505:30;8571:34;8566:2;8551:18;;8544:62;-1:-1:-1;;;8637:2:1;8622:18;;8615:33;8680:3;8665:19;;8291:399::o;9722:168::-;9795:9;;;9826;;9843:15;;;9837:22;;9823:37;9813:71;;9864:18;;:::i;9895:217::-;9935:1;9961;9951:132;;10005:10;10000:3;9996:20;9993:1;9986:31;10040:4;10037:1;10030:15;10068:4;10065:1;10058:15;9951:132;-1:-1:-1;10097:9:1;;9895:217::o;10117:128::-;10184:9;;;10205:11;;;10202:37;;;10219:18;;:::i;11594:127::-;11655:10;11650:3;11646:20;11643:1;11636:31;11686:4;11683:1;11676:15;11710:4;11707:1;11700:15;11726:251;11796:6;11849:2;11837:9;11828:7;11824:23;11820:32;11817:52;;;11865:1;11862;11855:12;11817:52;11897:9;11891:16;11916:31;11941:5;11916:31;:::i;11982:980::-;12244:4;12292:3;12281:9;12277:19;12323:6;12312:9;12305:25;12349:2;12387:6;12382:2;12371:9;12367:18;12360:34;12430:3;12425:2;12414:9;12410:18;12403:31;12454:6;12489;12483:13;12520:6;12512;12505:22;12558:3;12547:9;12543:19;12536:26;;12597:2;12589:6;12585:15;12571:29;;12618:1;12628:195;12642:6;12639:1;12636:13;12628:195;;;12707:13;;-1:-1:-1;;;;;12703:39:1;12691:52;;12798:15;;;;12763:12;;;;12739:1;12657:9;12628:195;;;-1:-1:-1;;;;;;;12879:32:1;;;;12874:2;12859:18;;12852:60;-1:-1:-1;;;12943:3:1;12928:19;12921:35;12840:3;11982:980;-1:-1:-1;;;11982:980:1:o

Swarm Source

ipfs://8f4a6e25f439d7ebeb8423327f9532eb584813bdf6e431abc16ee167d8a72e80
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.