ETH Price: $3,312.64 (-4.89%)
Gas: 3 Gwei

Token

Slept on Pepe (SLEPE)
 

Overview

Max Total Supply

420,689,999,999,999.999999999999998764 SLEPE

Holders

204 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
206,850,754,648.12957879155653121 SLEPE

Value
$0.00
0xda0a5b38c8814f8ce779de4f0779fc59104a3163
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Slept on Pepe was created to give a second chance to everyone who missed out on the Pepe train, hence the name $SLEPE

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SlepeToken

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)

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/SlepeToken.sol

pragma solidity ^0.8.0;


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

    uint256 public maxHoldingAmount = 4206899999999999999999999999987;
    uint256 public minHoldingAmount;

    uint256 public buyMarketingFee = 1; // 1% buy marketing fee
    uint256 public sellMarketingFee = 1; // 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("Slept on Pepe", "SLEPE") {
         address _uniswapV2Pair = IUniswapV2Factory(router.factory())
            .createPair(address(this), router.WETH());
           uniswapV2Pair   = _uniswapV2Pair;
           marketingWallet = address(0xCA3e6986D58af79c544d5c7d7B66b51AABf8b830); //0xCA3e6986D58af79c544d5c7d7B66b51AABf8b830

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

            _mint(msg.sender, 420689999999999999999999999998764); //420,689,999,999,999.999999999999998764 Slepe
    }

    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 <= 10, "Max Fees limit is 10%");
    }

      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"}]

60806040526006805460ff191660019081179091556c35193a1e7376a35c15b3fffff36007556009819055600a5569152d02c7e14af6800000600b55600e80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790553480156200006e57600080fd5b506040518060400160405280600d81526020016c536c657074206f6e205065706560981b81525060405180604001604052806005815260200164534c45504560d81b815250620000cd620000c76200030960201b60201c565b6200030d565b6004620000db8382620004ee565b506005620000ea8282620004ee565b5050506000600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000143573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001699190620005ba565b6001600160a01b031663c9c6539630600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f29190620005ba565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000240573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002669190620005ba565b600c80546001600160a01b038084166001600160a01b031992831617909255600d805490911673ca3e6986d58af79c544d5c7d7b66b51aabf8b83017815530600090815260106020526040808220805460ff19908116600190811790925533808552838520805483168417905594549095168352912080549093161790915590915062000302906d14bddab3e51a57cff87a4ffffb2c6200035d565b5062000614565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620003b85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620003cc9190620005ec565b90915550506001600160a01b03821660009081526001602052604081208054839290620003fb908490620005ec565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200047557607f821691505b6020821081036200049657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200044557600081815260208120601f850160051c81016020861015620004c55750805b601f850160051c820191505b81811015620004e657828155600101620004d1565b505050505050565b81516001600160401b038111156200050a576200050a6200044a565b62000522816200051b845462000460565b846200049c565b602080601f8311600181146200055a5760008415620005415750858301515b600019600386901b1c1916600185901b178555620004e6565b600085815260208120601f198616915b828110156200058b578886015182559484019460019091019084016200056a565b5085821015620005aa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005cd57600080fd5b81516001600160a01b0381168114620005e557600080fd5b9392505050565b808201808211156200060e57634e487b7160e01b600052601160045260246000fd5b92915050565b61175580620006246000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806375f0a8741161010f578063a457c2d7116100a2578063dbe66ca011610071578063dbe66ca01461040e578063dd62ed3e14610431578063e2f456051461046a578063f2fde38b1461047357600080fd5b8063a457c2d7146103c2578063a9059cbb146103d5578063aacebbe3146103e8578063d07ea4e2146103fb57600080fd5b80638a8c523c116100de5780638a8c523c146103985780638da5cb5b146103a057806392136913146103b157806395d89b41146103ba57600080fd5b806375f0a874146103665780637bce5a0414610379578063860a32ec1461038257806389f9a1d31461038f57600080fd5b80633f301893116101875780634ada218b116101565780634ada218b1461030f5780636ddd17131461032157806370a0823114610335578063715018a61461035e57600080fd5b80633f301893146102a9578063404e5129146102be57806342966c68146102d157806349bd5a5e146102e457600080fd5b80631ab99e12116101c35780631ab99e121461026b57806323b872dd14610274578063313ce56714610287578063395093511461029657600080fd5b806306fdde03146101f5578063095ea7b31461021357806316c021291461023657806318160ddd14610259575b600080fd5b6101fd610486565b60405161020a919061132a565b60405180910390f35b61022661022136600461138d565b610518565b604051901515815260200161020a565b6102266102443660046113b9565b600f6020526000908152604090205460ff1681565b6003545b60405190815260200161020a565b61025d60085481565b6102266102823660046113dd565b61052f565b6040516012815260200161020a565b6102266102a436600461138d565b6105de565b6102bc6102b736600461141e565b61061a565b005b6102bc6102cc366004611455565b6106a2565b6102bc6102df36600461148a565b6106f7565b600c546102f7906001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b60065461022690610100900460ff1681565b600654610226906301000000900460ff1681565b61025d6103433660046113b9565b6001600160a01b031660009081526001602052604090205490565b6102bc610704565b600d546102f7906001600160a01b031681565b61025d60095481565b6006546102269060ff1681565b61025d60075481565b6102bc61073a565b6000546001600160a01b03166102f7565b61025d600a5481565b6101fd6107d1565b6102266103d036600461138d565b6107e0565b6102266103e336600461138d565b610879565b6102bc6103f63660046113b9565b610886565b6102bc6104093660046114a3565b6108d2565b61022661041c3660046113b9565b60106020526000908152604090205460ff1681565b61025d61043f3660046114d6565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61025d600b5481565b6102bc6104813660046113b9565b610916565b6060600480546104959061150f565b80601f01602080910402602001604051908101604052809291908181526020018280546104c19061150f565b801561050e5780601f106104e35761010080835404028352916020019161050e565b820191906000526020600020905b8154815290600101906020018083116104f157829003601f168201915b5050505050905090565b60006105253384846109ae565b5060015b92915050565b600061053c848484610ad2565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105c65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105d385338584036109ae565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161052591859061061590869061155f565b6109ae565b6000546001600160a01b031633146106445760405162461bcd60e51b81526004016105bd90611572565b6009829055600a818155610658828461155f565b111561069e5760405162461bcd60e51b81526020600482015260156024820152744d61782046656573206c696d69742069732031302560581b60448201526064016105bd565b5050565b6000546001600160a01b031633146106cc5760405162461bcd60e51b81526004016105bd90611572565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6107013382610ea8565b50565b6000546001600160a01b0316331461072e5760405162461bcd60e51b81526004016105bd90611572565b6107386000610ff6565b565b6000546001600160a01b031633146107645760405162461bcd60e51b81526004016105bd90611572565b600654610100900460ff16156107bc5760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e000000000000000060448201526064016105bd565b6006805463ff00ff0019166301000100179055565b6060600580546104959061150f565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156108625760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105bd565b61086f33858584036109ae565b5060019392505050565b6000610525338484610ad2565b6000546001600160a01b031633146108b05760405162461bcd60e51b81526004016105bd90611572565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146108fc5760405162461bcd60e51b81526004016105bd90611572565b6006805460ff191693151593909317909255600755600855565b6000546001600160a01b031633146109405760405162461bcd60e51b81526004016105bd90611572565b6001600160a01b0381166109a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105bd565b61070181610ff6565b6001600160a01b038316610a105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105bd565b6001600160a01b038216610a715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105bd565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610af85760405162461bcd60e51b81526004016105bd906115a7565b6001600160a01b038216610b1e5760405162461bcd60e51b81526004016105bd906115ec565b6001600160a01b0382166000908152600f602052604090205460ff16158015610b6057506001600160a01b0383166000908152600f602052604090205460ff16155b610b9a5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016105bd565b600654610100900460ff1680610bc857506001600160a01b03831660009081526010602052604090205460ff165b80610beb57506001600160a01b03821660009081526010602052604090205460ff165b610c375760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c656421000000000000000060448201526064016105bd565b80600003610c5057610c4b83836000611046565b505050565b60065460ff168015610c6f5750600c546001600160a01b038481169116145b15610d0f5760075481610c97846001600160a01b031660009081526001602052604090205490565b610ca1919061155f565b11158015610cda575060085481610ccd846001600160a01b031660009081526001602052604090205490565b610cd7919061155f565b10155b610d0f5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016105bd565b30600090815260016020526040902054600b5481108015908190610d3c575060065462010000900460ff16155b8015610d555750600c546001600160a01b038581169116145b8015610d6a57506006546301000000900460ff165b15610d96576006805462ff0000191662010000179055610d898261119b565b6006805462ff0000191690555b6006546001600160a01b03861660009081526010602052604090205460ff62010000909204821615911680610de357506001600160a01b03851660009081526010602052604090205460ff165b15610dec575060005b60008115610e9457600c546001600160a01b038781169116148015610e1357506000600a54115b15610e35576064600a5486610e28919061162f565b610e329190611646565b90505b600c546001600160a01b038881169116148015610e5457506000600954115b15610e7657606460095486610e69919061162f565b610e739190611646565b90505b8015610e8757610e87873083611046565b610e918186611668565b94505b610e9f878787611046565b50505050505050565b6001600160a01b038216610f085760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105bd565b6001600160a01b03821660009081526001602052604090205481811015610f7c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105bd565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610fab908490611668565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03831661106c5760405162461bcd60e51b81526004016105bd906115a7565b6001600160a01b0382166110925760405162461bcd60e51b81526004016105bd906115ec565b6001600160a01b0383166000908152600160205260409020548181101561110a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105bd565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061114190849061155f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118d91815260200190565b60405180910390a350505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106111d0576111d061167b565b6001600160a01b03928316602091820292909201810191909152600e54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611229573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124d9190611691565b816001815181106112605761126061167b565b6001600160a01b03928316602091820292909201810191909152600e54306000908152600283526040808220929094168152915220548211156112b757600e546112b79030906001600160a01b03166000196109ae565b600e54600d5460405163791ac94760e01b81526001600160a01b039283169263791ac947926112f4928792600092889291169042906004016116ae565b600060405180830381600087803b15801561130e57600080fd5b505af1158015611322573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156113575785810183015185820160400152820161133b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461070157600080fd5b600080604083850312156113a057600080fd5b82356113ab81611378565b946020939093013593505050565b6000602082840312156113cb57600080fd5b81356113d681611378565b9392505050565b6000806000606084860312156113f257600080fd5b83356113fd81611378565b9250602084013561140d81611378565b929592945050506040919091013590565b6000806040838503121561143157600080fd5b50508035926020909101359150565b8035801515811461145057600080fd5b919050565b6000806040838503121561146857600080fd5b823561147381611378565b915061148160208401611440565b90509250929050565b60006020828403121561149c57600080fd5b5035919050565b6000806000606084860312156114b857600080fd5b6114c184611440565b95602085013595506040909401359392505050565b600080604083850312156114e957600080fd5b82356114f481611378565b9150602083013561150481611378565b809150509250929050565b600181811c9082168061152357607f821691505b60208210810361154357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561052957610529611549565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761052957610529611549565b60008261166357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561052957610529611549565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156116a357600080fd5b81516113d681611378565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116fe5784516001600160a01b0316835293830193918301916001016116d9565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a9092869b85b76a6f76651170a2d5fb3d30a7abcbc41f9f77f6ae6f5d3f7ec5e64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806375f0a8741161010f578063a457c2d7116100a2578063dbe66ca011610071578063dbe66ca01461040e578063dd62ed3e14610431578063e2f456051461046a578063f2fde38b1461047357600080fd5b8063a457c2d7146103c2578063a9059cbb146103d5578063aacebbe3146103e8578063d07ea4e2146103fb57600080fd5b80638a8c523c116100de5780638a8c523c146103985780638da5cb5b146103a057806392136913146103b157806395d89b41146103ba57600080fd5b806375f0a874146103665780637bce5a0414610379578063860a32ec1461038257806389f9a1d31461038f57600080fd5b80633f301893116101875780634ada218b116101565780634ada218b1461030f5780636ddd17131461032157806370a0823114610335578063715018a61461035e57600080fd5b80633f301893146102a9578063404e5129146102be57806342966c68146102d157806349bd5a5e146102e457600080fd5b80631ab99e12116101c35780631ab99e121461026b57806323b872dd14610274578063313ce56714610287578063395093511461029657600080fd5b806306fdde03146101f5578063095ea7b31461021357806316c021291461023657806318160ddd14610259575b600080fd5b6101fd610486565b60405161020a919061132a565b60405180910390f35b61022661022136600461138d565b610518565b604051901515815260200161020a565b6102266102443660046113b9565b600f6020526000908152604090205460ff1681565b6003545b60405190815260200161020a565b61025d60085481565b6102266102823660046113dd565b61052f565b6040516012815260200161020a565b6102266102a436600461138d565b6105de565b6102bc6102b736600461141e565b61061a565b005b6102bc6102cc366004611455565b6106a2565b6102bc6102df36600461148a565b6106f7565b600c546102f7906001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b60065461022690610100900460ff1681565b600654610226906301000000900460ff1681565b61025d6103433660046113b9565b6001600160a01b031660009081526001602052604090205490565b6102bc610704565b600d546102f7906001600160a01b031681565b61025d60095481565b6006546102269060ff1681565b61025d60075481565b6102bc61073a565b6000546001600160a01b03166102f7565b61025d600a5481565b6101fd6107d1565b6102266103d036600461138d565b6107e0565b6102266103e336600461138d565b610879565b6102bc6103f63660046113b9565b610886565b6102bc6104093660046114a3565b6108d2565b61022661041c3660046113b9565b60106020526000908152604090205460ff1681565b61025d61043f3660046114d6565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61025d600b5481565b6102bc6104813660046113b9565b610916565b6060600480546104959061150f565b80601f01602080910402602001604051908101604052809291908181526020018280546104c19061150f565b801561050e5780601f106104e35761010080835404028352916020019161050e565b820191906000526020600020905b8154815290600101906020018083116104f157829003601f168201915b5050505050905090565b60006105253384846109ae565b5060015b92915050565b600061053c848484610ad2565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105c65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105d385338584036109ae565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161052591859061061590869061155f565b6109ae565b6000546001600160a01b031633146106445760405162461bcd60e51b81526004016105bd90611572565b6009829055600a818155610658828461155f565b111561069e5760405162461bcd60e51b81526020600482015260156024820152744d61782046656573206c696d69742069732031302560581b60448201526064016105bd565b5050565b6000546001600160a01b031633146106cc5760405162461bcd60e51b81526004016105bd90611572565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6107013382610ea8565b50565b6000546001600160a01b0316331461072e5760405162461bcd60e51b81526004016105bd90611572565b6107386000610ff6565b565b6000546001600160a01b031633146107645760405162461bcd60e51b81526004016105bd90611572565b600654610100900460ff16156107bc5760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e000000000000000060448201526064016105bd565b6006805463ff00ff0019166301000100179055565b6060600580546104959061150f565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156108625760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105bd565b61086f33858584036109ae565b5060019392505050565b6000610525338484610ad2565b6000546001600160a01b031633146108b05760405162461bcd60e51b81526004016105bd90611572565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146108fc5760405162461bcd60e51b81526004016105bd90611572565b6006805460ff191693151593909317909255600755600855565b6000546001600160a01b031633146109405760405162461bcd60e51b81526004016105bd90611572565b6001600160a01b0381166109a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105bd565b61070181610ff6565b6001600160a01b038316610a105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105bd565b6001600160a01b038216610a715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105bd565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610af85760405162461bcd60e51b81526004016105bd906115a7565b6001600160a01b038216610b1e5760405162461bcd60e51b81526004016105bd906115ec565b6001600160a01b0382166000908152600f602052604090205460ff16158015610b6057506001600160a01b0383166000908152600f602052604090205460ff16155b610b9a5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016105bd565b600654610100900460ff1680610bc857506001600160a01b03831660009081526010602052604090205460ff165b80610beb57506001600160a01b03821660009081526010602052604090205460ff165b610c375760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c656421000000000000000060448201526064016105bd565b80600003610c5057610c4b83836000611046565b505050565b60065460ff168015610c6f5750600c546001600160a01b038481169116145b15610d0f5760075481610c97846001600160a01b031660009081526001602052604090205490565b610ca1919061155f565b11158015610cda575060085481610ccd846001600160a01b031660009081526001602052604090205490565b610cd7919061155f565b10155b610d0f5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016105bd565b30600090815260016020526040902054600b5481108015908190610d3c575060065462010000900460ff16155b8015610d555750600c546001600160a01b038581169116145b8015610d6a57506006546301000000900460ff165b15610d96576006805462ff0000191662010000179055610d898261119b565b6006805462ff0000191690555b6006546001600160a01b03861660009081526010602052604090205460ff62010000909204821615911680610de357506001600160a01b03851660009081526010602052604090205460ff165b15610dec575060005b60008115610e9457600c546001600160a01b038781169116148015610e1357506000600a54115b15610e35576064600a5486610e28919061162f565b610e329190611646565b90505b600c546001600160a01b038881169116148015610e5457506000600954115b15610e7657606460095486610e69919061162f565b610e739190611646565b90505b8015610e8757610e87873083611046565b610e918186611668565b94505b610e9f878787611046565b50505050505050565b6001600160a01b038216610f085760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105bd565b6001600160a01b03821660009081526001602052604090205481811015610f7c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105bd565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610fab908490611668565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03831661106c5760405162461bcd60e51b81526004016105bd906115a7565b6001600160a01b0382166110925760405162461bcd60e51b81526004016105bd906115ec565b6001600160a01b0383166000908152600160205260409020548181101561110a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105bd565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061114190849061155f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118d91815260200190565b60405180910390a350505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106111d0576111d061167b565b6001600160a01b03928316602091820292909201810191909152600e54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611229573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124d9190611691565b816001815181106112605761126061167b565b6001600160a01b03928316602091820292909201810191909152600e54306000908152600283526040808220929094168152915220548211156112b757600e546112b79030906001600160a01b03166000196109ae565b600e54600d5460405163791ac94760e01b81526001600160a01b039283169263791ac947926112f4928792600092889291169042906004016116ae565b600060405180830381600087803b15801561130e57600080fd5b505af1158015611322573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156113575785810183015185820160400152820161133b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461070157600080fd5b600080604083850312156113a057600080fd5b82356113ab81611378565b946020939093013593505050565b6000602082840312156113cb57600080fd5b81356113d681611378565b9392505050565b6000806000606084860312156113f257600080fd5b83356113fd81611378565b9250602084013561140d81611378565b929592945050506040919091013590565b6000806040838503121561143157600080fd5b50508035926020909101359150565b8035801515811461145057600080fd5b919050565b6000806040838503121561146857600080fd5b823561147381611378565b915061148160208401611440565b90509250929050565b60006020828403121561149c57600080fd5b5035919050565b6000806000606084860312156114b857600080fd5b6114c184611440565b95602085013595506040909401359392505050565b600080604083850312156114e957600080fd5b82356114f481611378565b9150602083013561150481611378565b809150509250929050565b600181811c9082168061152357607f821691505b60208210810361154357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561052957610529611549565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761052957610529611549565b60008261166357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561052957610529611549565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156116a357600080fd5b81516113d681611378565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116fe5784516001600160a01b0316835293830193918301916001016116d9565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a9092869b85b76a6f76651170a2d5fb3d30a7abcbc41f9f77f6ae6f5d3f7ec5e64736f6c63430008130033

Deployed Bytecode Sourcemap

19875:5000:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9248:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11415:169;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11415:169:0;1023:187:1;20539:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10368:108;10456:12;;10368:108;;;1613:25:1;;;1601:2;1586:18;10368:108:0;1467:177:1;20118:31:0;;;;;;12066:492;;;;;;:::i;:::-;;:::i;10210:93::-;;;10293:2;2252:36:1;;2240:2;2225:18;10210:93:0;2110:184:1;12967:215:0;;;;;;:::i;:::-;;:::i;21674:232::-;;;;;;:::i;:::-;;:::i;:::-;;21285:135;;;;;;:::i;:::-;;:::i;24791:81::-;;;;;;:::i;:::-;;:::i;20348:28::-;;;;;-1:-1:-1;;;;;20348:28:0;;;;;;-1:-1:-1;;;;;3386:32:1;;;3368:51;;3356:2;3341:18;20348:28:0;3222:203:1;19953:26:0;;;;;;;;;;;;20014:23;;;;;;;;;;;;10539:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10640:18:0;10613:7;10640:18;;;:9;:18;;;;;;;10539:127;2649:103;;;:::i;20383:30::-;;;;;-1:-1:-1;;;;;20383:30:0;;;20158:34;;;;;;19920:26;;;;;;;;;20046:65;;;;;;21916:175;;;:::i;1998:87::-;2044:7;2071:6;-1:-1:-1;;;;;2071:6:0;1998:87;;20223:35;;;;;;9467:104;;;:::i;13685:413::-;;;;;;:::i;:::-;;:::i;10879:175::-;;;;;;:::i;:::-;;:::i;22099:116::-;;;;;;:::i;:::-;;:::i;21428:238::-;;;;;;:::i;:::-;;:::i;20588:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;11117:151;;;;;;:::i;:::-;-1:-1:-1;;;;;11233:18:0;;;11206:7;11233:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11117:151;20292:49;;;;;;2907:201;;;;;;:::i;:::-;;:::i;9248:100::-;9302:13;9335:5;9328:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9248:100;:::o;11415:169::-;11498:4;11515:39;796:10;11538:7;11547:6;11515:8;:39::i;:::-;-1:-1:-1;11572:4:0;11415:169;;;;;:::o;12066:492::-;12206:4;12223:36;12233:6;12241:9;12252:6;12223:9;:36::i;:::-;-1:-1:-1;;;;;12299:19:0;;12272:24;12299:19;;;:11;:19;;;;;;;;796:10;12299:33;;;;;;;;12351:26;;;;12343:79;;;;-1:-1:-1;;;12343:79:0;;4731:2:1;12343: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;;12343:79:0;;;;;;;;;12458:57;12467:6;796:10;12508:6;12489:16;:25;12458:8;:57::i;:::-;-1:-1:-1;12546:4:0;;12066:492;-1:-1:-1;;;;12066:492:0:o;12967:215::-;796:10;13055:4;13104:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13104:34:0;;;;;;;;;;13055:4;;13072:80;;13095:7;;13104:47;;13141:10;;13104:47;:::i;:::-;13072:8;:80::i;21674:232::-;2044:7;2071:6;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;21757:15:::1;:21:::0;;;21789:16:::1;:23:::0;;;21832:34:::1;21808:4:::0;21775:3;21832:34:::1;:::i;:::-;:40;;21823:75;;;::::0;-1:-1:-1;;;21823:75:0;;5763:2:1;21823: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;;21823:75:0::1;5561:345:1::0;21823:75:0::1;21674:232:::0;;:::o;21285:135::-;2044:7;2071:6;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21374:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;21374:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21285:135::o;24791:81::-;24840:24;24846:10;24858:5;24840;:24::i;:::-;24791:81;:::o;2649:103::-;2044:7;2071:6;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;2714:30:::1;2741:1;2714:18;:30::i;:::-;2649:103::o:0;21916:175::-;2044:7;2071:6;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;21979:14:::1;::::0;::::1;::::0;::::1;;;21978:15;21970:52;;;::::0;-1:-1:-1;;;21970:52:0;;6113:2:1;21970:52:0::1;::::0;::::1;6095:21:1::0;6152:2;6132:18;;;6125:30;6191:26;6171:18;;;6164:54;6235:18;;21970:52:0::1;5911:348:1::0;21970:52:0::1;22033:14;:21:::0;;-1:-1:-1;;22065:18:0;;;;;21916:175::o;9467:104::-;9523:13;9556:7;9549:14;;;;;:::i;13685:413::-;796:10;13778:4;13822:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13822:34:0;;;;;;;;;;13875:35;;;;13867:85;;;;-1:-1:-1;;;13867:85:0;;6466:2:1;13867: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;;13867:85:0;6264:401:1;13867:85:0;13988:67;796:10;14011:7;14039:15;14020:16;:34;13988:8;:67::i;:::-;-1:-1:-1;14086:4:0;;13685:413;-1:-1:-1;;;13685:413:0:o;10879:175::-;10965:4;10982:42;796:10;11006:9;11017:6;10982:9;:42::i;22099:116::-;2044:7;2071:6;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;22180:15:::1;:27:::0;;-1:-1:-1;;;;;;22180:27:0::1;-1:-1:-1::0;;;;;22180:27:0;;;::::1;::::0;;;::::1;::::0;;22099:116::o;21428:238::-;2044:7;2071:6;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;21544:7:::1;:18:::0;;-1:-1:-1;;21544:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;21575:16:::1;:36:::0;21622:16:::1;:36:::0;21428:238::o;2907:201::-;2044:7;2071:6;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2996:22:0;::::1;2988:73;;;::::0;-1:-1:-1;;;2988:73:0;;6872:2:1;2988: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;;2988:73:0::1;6670:402:1::0;2988:73:0::1;3072:28;3091:8;3072:18;:28::i;17369:380::-:0;-1:-1:-1;;;;;17505:19:0;;17497:68;;;;-1:-1:-1;;;17497:68:0;;7279:2:1;17497: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;;17497:68:0;7077:400:1;17497:68:0;-1:-1:-1;;;;;17584:21:0;;17576:68;;;;-1:-1:-1;;;17576:68:0;;7684:2:1;17576: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;;17576:68:0;7482:398:1;17576:68:0;-1:-1:-1;;;;;17657:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17709:32;;1613:25:1;;;17709:32:0;;1586:18:1;17709:32:0;;;;;;;17369:380;;;:::o;22223:2034::-;-1:-1:-1;;;;;22320:18:0;;22312:68;;;;-1:-1:-1;;;22312:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22399:16:0;;22391:64;;;;-1:-1:-1;;;22391:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22476:14:0;;;;;;:10;:14;;;;;;;;22475:15;:36;;;;-1:-1:-1;;;;;;22495:16:0;;;;;;:10;:16;;;;;;;;22494:17;22475:36;22467:60;;;;-1:-1:-1;;;22467:60:0;;8897:2:1;22467:60:0;;;8879:21:1;8936:2;8916:18;;;8909:30;-1:-1:-1;;;8955:18:1;;;8948:41;9006:18;;22467:60:0;8695:335:1;22467:60:0;22546:14;;;;;;;;:40;;-1:-1:-1;;;;;;22564:22:0;;;;;;:16;:22;;;;;;;;22546:40;:64;;;-1:-1:-1;;;;;;22590:20:0;;;;;;:16;:20;;;;;;;;22546:64;22538:101;;;;-1:-1:-1;;;22538:101:0;;9237:2:1;22538:101:0;;;9219:21:1;9276:2;9256:18;;;9249:30;9315:26;9295:18;;;9288:54;9359:18;;22538:101:0;9035:348:1;22538:101:0;22663:6;22673:1;22663:11;22659:93;;22691:28;22707:4;22713:2;22717:1;22691:15;:28::i;:::-;22223:2034;;;:::o;22659:93::-;22768:7;;;;:32;;;;-1:-1:-1;22787:13:0;;-1:-1:-1;;;;;22779:21:0;;;22787:13;;22779:21;22768:32;22764:172;;;22851:16;;22841:6;22825:13;22835:2;-1:-1:-1;;;;;10640:18:0;10613:7;10640:18;;;:9;:18;;;;;;;10539:127;22825:13;:22;;;;:::i;:::-;:42;;:88;;;;;22897:16;;22887:6;22871:13;22881:2;-1:-1:-1;;;;;10640:18:0;10613:7;10640:18;;;:9;:18;;;;;;;10539:127;22871:13;:22;;;;:::i;:::-;:42;;22825:88;22817:107;;;;-1:-1:-1;;;22817:107:0;;9590:2:1;22817:107:0;;;9572:21:1;9629:1;9609:18;;;9602:29;-1:-1:-1;;;9647:18:1;;;9640:36;9693:18;;22817:107:0;9388:329:1;22817:107:0;22991:4;22942:28;10640:18;;;:9;:18;;;;;;23049;;23025:42;;;;;;;23084:33;;-1:-1:-1;23109:8:0;;;;;;;23108:9;23084:33;:69;;;;-1:-1:-1;23140:13:0;;-1:-1:-1;;;;;23134:19:0;;;23140:13;;23134:19;23084:69;:97;;;;-1:-1:-1;23170:11:0;;;;;;;23084:97;23080:257;;;23208:8;:15;;-1:-1:-1;;23208:15:0;;;;;23256:36;23271:20;23256:14;:36::i;:::-;23309:8;:16;;-1:-1:-1;;23309:16:0;;;23080:257;23366:8;;-1:-1:-1;;;;;23477:22:0;;23350:12;23477:22;;;:16;:22;;;;;;23366:8;;;;;;;23365:9;;23477:22;;:46;;-1:-1:-1;;;;;;23503:20:0;;;;;;:16;:20;;;;;;;;23477:46;23473:94;;;-1:-1:-1;23550:5:0;23473:94;23581:12;23686:7;23682:522;;;23744:13;;-1:-1:-1;;;;;23738:19:0;;;23744:13;;23738:19;:43;;;;;23780:1;23761:16;;:20;23738:43;23734:141;;;23839:3;23819:16;;23810:6;:25;;;;:::i;:::-;23809:33;;;;:::i;:::-;23802:40;;23734:141;23924:13;;-1:-1:-1;;;;;23916:21:0;;;23924:13;;23916:21;:44;;;;;23959:1;23941:15;;:19;23916:44;23912:141;;;24017:3;23998:15;;23989:6;:24;;;;:::i;:::-;23988:32;;;;:::i;:::-;23981:39;;23912:141;24074:8;;24070:91;;24103:42;24119:4;24133;24140;24103:15;:42::i;:::-;24178:14;24188:4;24178:14;;:::i;:::-;;;23682:522;24216:33;24232:4;24238:2;24242:6;24216:15;:33::i;:::-;22301:1956;;;;22223:2034;;;:::o;16340:591::-;-1:-1:-1;;;;;16424:21:0;;16416:67;;;;-1:-1:-1;;;16416:67:0;;10452:2:1;16416: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;;16416:67:0;10250:397:1;16416:67:0;-1:-1:-1;;;;;16583:18:0;;16558:22;16583:18;;;:9;:18;;;;;;16620:24;;;;16612:71;;;;-1:-1:-1;;;16612:71:0;;10854:2:1;16612: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;;16612:71:0;10652:398:1;16612:71:0;-1:-1:-1;;;;;16719:18:0;;;;;;:9;:18;;;;;16740:23;;;16719:44;;16785:12;:22;;16757:6;;16719:18;16785:22;;16757:6;;16785:22;:::i;:::-;;;;-1:-1:-1;;16825:37:0;;1613:25:1;;;16851:1:0;;-1:-1:-1;;;;;16825:37:0;;;;;1601:2:1;1586:18;16825:37:0;;;;;;;22223:2034;;;:::o;3268:191::-;3342:16;3361:6;;-1:-1:-1;;;;;3378:17:0;;;-1:-1:-1;;;;;;3378:17:0;;;;;;3411:40;;3361:6;;;;;;;3411:40;;3342:16;3411:40;3331:128;3268:191;:::o;14588:733::-;-1:-1:-1;;;;;14728:20:0;;14720:70;;;;-1:-1:-1;;;14720:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14809:23:0;;14801:71;;;;-1:-1:-1;;;14801:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14969:17:0;;14945:21;14969:17;;;:9;:17;;;;;;15005:23;;;;14997:74;;;;-1:-1:-1;;;14997:74:0;;11257:2:1;14997: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;;14997:74:0;11055:402:1;14997:74:0;-1:-1:-1;;;;;15107:17:0;;;;;;;:9;:17;;;;;;15127:22;;;15107:42;;15171:20;;;;;;;;:30;;15143:6;;15107:17;15171:30;;15143:6;;15171:30;:::i;:::-;;;;;;;;15236:9;-1:-1:-1;;;;;15219:35:0;15228:6;-1:-1:-1;;;;;15219:35:0;;15247:6;15219:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;15219:35:0;;;;;;;;14709:612;14588:733;;;:::o;24266:517::-;24358:16;;;24372:1;24358:16;;;;;;;;24334:21;;24358:16;;;;;;;;;;-1:-1:-1;24358:16:0;24334:40;;24403:4;24385;24390:1;24385:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24385:23:0;;;:7;;;;;;;;;;:23;;;;24429:6;;:13;;;-1:-1:-1;;;24429:13:0;;;;:6;;;;;:11;;:13;;;;;24385:7;;24429:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24419:4;24424:1;24419:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24419:23:0;;;:7;;;;;;;;;;:23;;;;24489:6;;24474:4;11206:7;11233:18;;;:11;:18;;;;;;24489:6;;;;11233:27;;;;;;24500:6;-1:-1:-1;24453:130:0;;;24550:6;;24518:53;;24535:4;;-1:-1:-1;;;;;24550:6:0;-1:-1:-1;;24518:8:0;:53::i;:::-;24592:6;;24719:15;;24592:173;;-1:-1:-1;;;24592:173:0;;-1:-1:-1;;;;;24592:6:0;;;;:57;;:173;;24663:6;;24592;;24700:4;;24719:15;;;24749;;24592:173;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24314:469;24266: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://a9092869b85b76a6f76651170a2d5fb3d30a7abcbc41f9f77f6ae6f5d3f7ec5e
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.