ETH Price: $3,259.71 (-0.19%)
Gas: 1 Gwei

Token

Gmx 2.0 (GMX2.0)
 

Overview

Max Total Supply

19,191,919,191 GMX2.0

Holders

107

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,800,111.350859883467747817 GMX2.0

Value
$0.00
0x300e3005afb5c3f54ff5ea73c1836ccfd2567a12
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:
GMX2

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-07-20
*/

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}




pragma solidity ^0.8.0;



interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(address token,uint amountTokenDesired,uint amountTokenMin,uint amountETHMin,address to,uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
} 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn,uint amountOutMin,address[] calldata path,address to,uint deadline) external;
}
interface IUniswapV2Factory {
     function createPair(address tokenA, address tokenB) external returns (address pair);
}

contract GMX2 is ERC20, Ownable {
    IUniswapV2Router02 public uniswapV2Router; 
    bool private swapping;
    bool public tradeEnabled = false;
    uint256 public marketingTaxSell = 50; // marketing tax on sell
    uint256 public marketingTaxBuy = 50; // marketing tax on sell

    uint256 public maxTxAmount = 191900000 ether; 
    uint256 public maxWalletAmount = 383800000 ether; 
    uint256 public marketingTaxThreshold = 1919000 ether; 

    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedFromLimits;
    mapping (address => bool) public automatedMarketMakerPairs;

    address public marketingAddress = payable(0x0142c2072698bed2746D9436D60a1457314F962D);
    address public uniswapV2Pair;

    event TradeEnabled();

    constructor() ERC20("Gmx 2.0", "GMX2.0") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);
        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[marketingAddress] = true;
        _isExcludedFromLimits[owner()] = true;
        _isExcludedFromLimits[0x000000000000000000000000000000000000dEaD] = true;
        _isExcludedFromLimits[marketingAddress] = true;
        _mint(msg.sender, 19_191_919_191 * 10**decimals());
    }
    
    receive() external payable {}

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "The router already has that address");
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Pair = _uniswapV2Pair;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }
    
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (from != owner() && to != owner()) {
            if(!_isExcludedFromLimits[from] && !_isExcludedFromLimits[to]) {
                require(tradeEnabled, "Trading is currently disabled");
                require(amount <= maxTxAmount, "Transfer amount exceeds the maximum allowed");
                if (to != uniswapV2Pair) {
                    require(balanceOf(to) + amount < maxWalletAmount, "TOKEN: Balance exceeds wallet size!");
                }
            }
        }

        bool canSendMarketingFee = balanceOf(address(this)) >= marketingTaxThreshold;
         if( canSendMarketingFee &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            from != owner() &&
            to != owner()
        ) 
        {
            claimMarketingFees();
        } 

        bool takeFee = !swapping;
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }   

        if (takeFee) {
            if (automatedMarketMakerPairs[to]) {
                 uint256 marketingTax = amount * marketingTaxSell / 100;
                amount = amount - marketingTax;
                super._transfer(from, address(this), marketingTax);
            }
            else if (automatedMarketMakerPairs[from]) {
                 uint256 marketingTax = amount * marketingTaxBuy / 100;
                amount = amount - marketingTax;
                super._transfer(from, address(this), marketingTax);
            }
        }
            
        super._transfer(from, to, amount);
    }


    function claimMarketingFees() public {
        uint _pendingMarketingFee = balanceOf(address(this));
        if (_pendingMarketingFee > 0) 
        {
        swapping = true;    
        swapTokensForEth(_pendingMarketingFee);
        uint amount = address(this).balance;
        (bool success, ) = address(marketingAddress).call{ value: amount }("");
        require(success, "Address: unable to extract value, tx may have reverted");
        swapping = false;         
        }
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;
    }

    function excludeMultipleAccountsFromFees(address[] memory accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }
    }

    function excludeFromLimits(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromLimits[account] != excluded, "Account is already the value of 'excluded'");
        _isExcludedFromLimits[account] = excluded;
    }

    function excludeMultipleAccountsFromLimits(address[] memory accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromLimits[accounts[i]] = excluded;
        }
    }

    function enableTrading() external onlyOwner {
        tradeEnabled = true;
        emit TradeEnabled();
    }

    function setmarketingTaxSell(uint256 selltax) external onlyOwner {
        require(selltax <= 50, "SellMarketingTax cannot be more than 50%");
        marketingTaxSell = selltax;
    }

    function setmarketingTaxBuy(uint256 buytax) external onlyOwner {
        require(buytax <= 50, "BuyMarketingTax cannot be more than 50%");
        marketingTaxBuy = buytax;
    }

    function setMaxTxAmount(uint256 amount) external onlyOwner {
        require(amount >= 1_919_191 ether, "MaxTxAmount cannot be less");
        maxTxAmount = amount;
    }

    function setMaxWalletAmount(uint256 amount) external onlyOwner {
        require(amount >= 1_919_191 ether, "MaxWalletAmount cannot be less");
        maxWalletAmount = amount;
    }

    function setMarketingTaxThreshold(uint256 amount) external onlyOwner {
        marketingTaxThreshold = amount;
    }

    function setMarketingAddress(address payable _newaddress) external  onlyOwner {
        _isExcludedFromLimits[marketingAddress] = false;
        _isExcludedFromFees[marketingAddress] = false;
        marketingAddress = _newaddress;
        _isExcludedFromLimits[marketingAddress] = true;
        _isExcludedFromFees[marketingAddress] = true;
    }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            address(this),
            block.timestamp
        );
    }

}

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":[],"name":"TradeEnabled","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":"","type":"address"}],"name":"_isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimMarketingFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingTaxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingTaxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingTaxThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newaddress","type":"address"}],"name":"setMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMarketingTaxThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buytax","type":"uint256"}],"name":"setmarketingTaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"selltax","type":"uint256"}],"name":"setmarketingTaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526006805460ff60a81b19169055603260078190556008556a9ebc67d851d0edc98000006009556b013d78cfb0a3a1db93000000600a556a01965d32cd9e3fd1600000600b55600f80546001600160a01b031916730142c2072698bed2746d9436d60a1457314f962d1790553480156200007c57600080fd5b50604051806040016040528060078152602001660476d7820322e360cc1b815250604051806040016040528060068152602001650474d58322e360d41b8152508160039081620000cd91906200065e565b506004620000dc82826200065e565b505050620000f9620000f3620003d560201b60201c565b620003d9565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000153573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017991906200072a565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ed91906200072a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200023b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026191906200072a565b600680546001600160a01b038086166001600160a01b03199283161790925560108054928416929091169190911790559050620002a08160016200042b565b6001600c6000620002b96005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600c909352818320805485166001908117909155600f54909116835290822080549093168117909255600d90620003296005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600d9093527fdc7fafdc41998a74ecacb8f8bd877011aba1f1d03a3a0d37a2e7879a393b1d6a805485166001908117909155600f54909116835291208054909216179055620003cd33620003a9601290565b620003b690600a62000871565b620003c790640477ed725762000882565b620004f2565b5050620008b2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600e602052604090205481151560ff909116151503620004c75760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084015b60405180910390fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6001600160a01b0382166200054a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004be565b80600260008282546200055e91906200089c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005e557607f821691505b6020821081036200060657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005b557600081815260208120601f850160051c81016020861015620006355750805b601f850160051c820191505b81811015620006565782815560010162000641565b505050505050565b81516001600160401b038111156200067a576200067a620005ba565b62000692816200068b8454620005d0565b846200060c565b602080601f831160018114620006ca5760008415620006b15750858301515b600019600386901b1c1916600185901b17855562000656565b600085815260208120601f198616915b82811015620006fb57888601518255948401946001909101908401620006da565b50858210156200071a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200073d57600080fd5b81516001600160a01b03811681146200075557600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007b35781600019048211156200079757620007976200075c565b80851615620007a557918102915b93841c939080029062000777565b509250929050565b600082620007cc575060016200086b565b81620007db575060006200086b565b8160018114620007f45760028114620007ff576200081f565b60019150506200086b565b60ff8411156200081357620008136200075c565b50506001821b6200086b565b5060208310610133831016604e8410600b841016171562000844575081810a6200086b565b62000850838362000772565b80600019048211156200086757620008676200075c565b0290505b92915050565b60006200075560ff841683620007bb565b80820281158282048414176200086b576200086b6200075c565b808201808211156200086b576200086b6200075c565b61203080620008c26000396000f3fe60806040526004361061023e5760003560e01c80638c0b5e221161012e578063b62496f5116100ab578063d621e8131161006f578063d621e813146106b9578063dd62ed3e146106da578063e550573d146106fa578063ec28438a1461072a578063f2fde38b1461074a57600080fd5b8063b62496f514610609578063c024666814610639578063c0a904a214610659578063c492f04614610679578063c6e5a5ab1461069957600080fd5b8063a457c2d7116100f2578063a457c2d71461057d578063a5ece9411461059d578063a9059cbb146105bd578063aa4bde28146105dd578063b2e20879146105f357600080fd5b80638c0b5e22146104f45780638da5cb5b1461050a578063906e9dd01461052857806395d89b41146105485780639a7a23d61461055d57600080fd5b806342d0b0bc116101bc578063715018a611610180578063715018a614610474578063721e6233146104895780637c3a128f1461049f5780638753cc48146104bf5780638a8c523c146104df57600080fd5b806342d0b0bc146103af57806349bd5a5e146103c55780634fbee193146103e557806365b8dbc01461041e57806370a082311461043e57600080fd5b806318160ddd1161020357806318160ddd1461031457806323b872dd1461033357806327a14fc214610353578063313ce56714610373578063395093511461038f57600080fd5b8062272d601461024a57806306fdde031461026c57806307dce0f814610297578063095ea7b3146102ac5780631694505e146102dc57600080fd5b3661024557005b600080fd5b34801561025657600080fd5b5061026a610265366004611b34565b61076a565b005b34801561027857600080fd5b506102816107dd565b60405161028e9190611b4d565b60405180910390f35b3480156102a357600080fd5b5061026a61086f565b3480156102b857600080fd5b506102cc6102c7366004611bc0565b61097a565b604051901515815260200161028e565b3480156102e857600080fd5b506006546102fc906001600160a01b031681565b6040516001600160a01b03909116815260200161028e565b34801561032057600080fd5b506002545b60405190815260200161028e565b34801561033f57600080fd5b506102cc61034e366004611bec565b610994565b34801561035f57600080fd5b5061026a61036e366004611b34565b6109b8565b34801561037f57600080fd5b506040516012815260200161028e565b34801561039b57600080fd5b506102cc6103aa366004611bc0565b610a20565b3480156103bb57600080fd5b5061032560075481565b3480156103d157600080fd5b506010546102fc906001600160a01b031681565b3480156103f157600080fd5b506102cc610400366004611c2d565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561042a57600080fd5b5061026a610439366004611c2d565b610a42565b34801561044a57600080fd5b50610325610459366004611c2d565b6001600160a01b031660009081526020819052604090205490565b34801561048057600080fd5b5061026a610c4f565b34801561049557600080fd5b5061032560085481565b3480156104ab57600080fd5b5061026a6104ba366004611b34565b610c63565b3480156104cb57600080fd5b5061026a6104da366004611b34565b610cd2565b3480156104eb57600080fd5b5061026a610cdf565b34801561050057600080fd5b5061032560095481565b34801561051657600080fd5b506005546001600160a01b03166102fc565b34801561053457600080fd5b5061026a610543366004611c2d565b610d25565b34801561055457600080fd5b50610281610dab565b34801561056957600080fd5b5061026a610578366004611c61565b610dba565b34801561058957600080fd5b506102cc610598366004611bc0565b610e62565b3480156105a957600080fd5b50600f546102fc906001600160a01b031681565b3480156105c957600080fd5b506102cc6105d8366004611bc0565b610edd565b3480156105e957600080fd5b50610325600a5481565b3480156105ff57600080fd5b50610325600b5481565b34801561061557600080fd5b506102cc610624366004611c2d565b600e6020526000908152604090205460ff1681565b34801561064557600080fd5b5061026a610654366004611c61565b610eeb565b34801561066557600080fd5b5061026a610674366004611c61565b610f5e565b34801561068557600080fd5b5061026a610694366004611cac565b610fd1565b3480156106a557600080fd5b5061026a6106b4366004611cac565b611045565b3480156106c557600080fd5b506006546102cc90600160a81b900460ff1681565b3480156106e657600080fd5b506103256106f5366004611d83565b6110b4565b34801561070657600080fd5b506102cc610715366004611c2d565b600d6020526000908152604090205460ff1681565b34801561073657600080fd5b5061026a610745366004611b34565b6110df565b34801561075657600080fd5b5061026a610765366004611c2d565b611147565b6107726111bd565b60328111156107d85760405162461bcd60e51b815260206004820152602760248201527f4275794d61726b6574696e675461782063616e6e6f74206265206d6f7265207460448201526668616e2035302560c81b60648201526084015b60405180910390fd5b600855565b6060600380546107ec90611dbc565b80601f016020809104026020016040519081016040528092919081815260200182805461081890611dbc565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b306000908152602081905260409020548015610977576006805460ff60a01b1916600160a01b1790556108a181611217565b600f5460405147916000916001600160a01b039091169083908381818185875af1925050503d80600081146108f2576040519150601f19603f3d011682016040523d82523d6000602084013e6108f7565b606091505b50509050806109675760405162461bcd60e51b815260206004820152603660248201527f416464726573733a20756e61626c6520746f20657874726163742076616c75656044820152750b081d1e081b585e481a185d99481c995d995c9d195960521b60648201526084016107cf565b50506006805460ff60a01b191690555b50565b600033610988818585611371565b60019150505b92915050565b6000336109a2858285611495565b6109ad85858561150f565b506001949350505050565b6109c06111bd565b6a0196678d75ee49b4fc0000811015610a1b5760405162461bcd60e51b815260206004820152601e60248201527f4d617857616c6c6574416d6f756e742063616e6e6f74206265206c657373000060448201526064016107cf565b600a55565b600033610988818585610a3383836110b4565b610a3d9190611e0c565b611371565b610a4a6111bd565b6006546001600160a01b0390811690821603610ab45760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b60648201526084016107cf565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015610b10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b349190611e1f565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba9190611e1f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610c07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2b9190611e1f565b601080546001600160a01b0319166001600160a01b03929092169190911790555050565b610c576111bd565b610c6160006118f7565b565b610c6b6111bd565b6032811115610ccd5760405162461bcd60e51b815260206004820152602860248201527f53656c6c4d61726b6574696e675461782063616e6e6f74206265206d6f7265206044820152677468616e2035302560c01b60648201526084016107cf565b600755565b610cda6111bd565b600b55565b610ce76111bd565b6006805460ff60a81b1916600160a81b1790556040517f0270d74976d9c744a465e24d0e2675086607ed6163edf4e36cabaf9740ce2ef490600090a1565b610d2d6111bd565b600f80546001600160a01b039081166000908152600d60208181526040808420805460ff19908116909155865486168552600c80845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b6060600480546107ec90611dbc565b610dc26111bd565b6010546001600160a01b0390811690831603610e545760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a4016107cf565b610e5e8282611949565b5050565b60003381610e7082866110b4565b905083811015610ed05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107cf565b6109ad8286868403611371565b60003361098881858561150f565b610ef36111bd565b6001600160a01b0382166000908152600c602052604090205481151560ff909116151503610f335760405162461bcd60e51b81526004016107cf90611e3c565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b610f666111bd565b6001600160a01b0382166000908152600d602052604090205481151560ff909116151503610fa65760405162461bcd60e51b81526004016107cf90611e3c565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610fd96111bd565b60005b82518110156110405781600c6000858481518110610ffc57610ffc611e86565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061103881611e9c565b915050610fdc565b505050565b61104d6111bd565b60005b82518110156110405781600d600085848151811061107057611070611e86565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110ac81611e9c565b915050611050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6110e76111bd565b6a0196678d75ee49b4fc00008110156111425760405162461bcd60e51b815260206004820152601a60248201527f4d61785478416d6f756e742063616e6e6f74206265206c65737300000000000060448201526064016107cf565b600955565b61114f6111bd565b6001600160a01b0381166111b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cf565b610977816118f7565b6005546001600160a01b03163314610c615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107cf565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061124c5761124c611e86565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156112a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c99190611e1f565b816001815181106112dc576112dc611e86565b6001600160a01b0392831660209182029290920101526006546113029130911684611371565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061133b908590600090869030904290600401611eb5565b600060405180830381600087803b15801561135557600080fd5b505af1158015611369573d6000803e3d6000fd5b505050505050565b6001600160a01b0383166113d35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107cf565b6001600160a01b0382166114345760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107cf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006114a184846110b4565b9050600019811461150957818110156114fc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107cf565b6115098484848403611371565b50505050565b6001600160a01b0383166115355760405162461bcd60e51b81526004016107cf90611f26565b6001600160a01b03821661155b5760405162461bcd60e51b81526004016107cf90611f6b565b8060000361156f5761104083836000611a0a565b6005546001600160a01b0384811691161480159061159b57506005546001600160a01b03838116911614155b15611741576001600160a01b0383166000908152600d602052604090205460ff161580156115e257506001600160a01b0382166000908152600d602052604090205460ff16155b1561174157600654600160a81b900460ff166116405760405162461bcd60e51b815260206004820152601d60248201527f54726164696e672069732063757272656e746c792064697361626c656400000060448201526064016107cf565b6009548111156116a65760405162461bcd60e51b815260206004820152602b60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61786960448201526a1b5d5b48185b1b1bddd95960aa1b60648201526084016107cf565b6010546001600160a01b0383811691161461174157600a54816116de846001600160a01b031660009081526020819052604090205490565b6116e89190611e0c565b106117415760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b60648201526084016107cf565b600b543060009081526020819052604090205410801590819061176e5750600654600160a01b900460ff16155b801561179357506001600160a01b0384166000908152600e602052604090205460ff16155b80156117ad57506005546001600160a01b03858116911614155b80156117c757506005546001600160a01b03848116911614155b156117d4576117d461086f565b6006546001600160a01b0385166000908152600c602052604090205460ff600160a01b90920482161591168061182257506001600160a01b0384166000908152600c602052604090205460ff165b1561182b575060005b80156118e5576001600160a01b0384166000908152600e602052604090205460ff161561188d5760006064600754856118649190611fae565b61186e9190611fc5565b905061187a8185611fe7565b9350611887863083611a0a565b506118e5565b6001600160a01b0385166000908152600e602052604090205460ff16156118e55760006064600854856118c09190611fae565b6118ca9190611fc5565b90506118d68185611fe7565b93506118e3863083611a0a565b505b6118f0858585611a0a565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600e602052604090205481151560ff9091161515036119df5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084016107cf565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6001600160a01b038316611a305760405162461bcd60e51b81526004016107cf90611f26565b6001600160a01b038216611a565760405162461bcd60e51b81526004016107cf90611f6b565b6001600160a01b03831660009081526020819052604090205481811015611ace5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107cf565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611509565b600060208284031215611b4657600080fd5b5035919050565b600060208083528351808285015260005b81811015611b7a57858101830151858201604001528201611b5e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461097757600080fd5b8035611bbb81611b9b565b919050565b60008060408385031215611bd357600080fd5b8235611bde81611b9b565b946020939093013593505050565b600080600060608486031215611c0157600080fd5b8335611c0c81611b9b565b92506020840135611c1c81611b9b565b929592945050506040919091013590565b600060208284031215611c3f57600080fd5b8135611c4a81611b9b565b9392505050565b80358015158114611bbb57600080fd5b60008060408385031215611c7457600080fd5b8235611c7f81611b9b565b9150611c8d60208401611c51565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215611cbf57600080fd5b823567ffffffffffffffff80821115611cd757600080fd5b818501915085601f830112611ceb57600080fd5b8135602082821115611cff57611cff611c96565b8160051b604051601f19603f83011681018181108682111715611d2457611d24611c96565b604052928352818301935084810182019289841115611d4257600080fd5b948201945b83861015611d6757611d5886611bb0565b85529482019493820193611d47565b9650611d769050878201611c51565b9450505050509250929050565b60008060408385031215611d9657600080fd5b8235611da181611b9b565b91506020830135611db181611b9b565b809150509250929050565b600181811c90821680611dd057607f821691505b602082108103611df057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561098e5761098e611df6565b600060208284031215611e3157600080fd5b8151611c4a81611b9b565b6020808252602a908201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604082015269276578636c756465642760b01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060018201611eae57611eae611df6565b5060010190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f055784516001600160a01b031683529383019391830191600101611ee0565b50506001600160a01b03969096166060850152505050608001529392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761098e5761098e611df6565b600082611fe257634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561098e5761098e611df656fea264697066735822122094429a8653c8e88431bd70d19d9628492f97b67cda2687304ca698cbfde3ed9564736f6c63430008130033

Deployed Bytecode

0x60806040526004361061023e5760003560e01c80638c0b5e221161012e578063b62496f5116100ab578063d621e8131161006f578063d621e813146106b9578063dd62ed3e146106da578063e550573d146106fa578063ec28438a1461072a578063f2fde38b1461074a57600080fd5b8063b62496f514610609578063c024666814610639578063c0a904a214610659578063c492f04614610679578063c6e5a5ab1461069957600080fd5b8063a457c2d7116100f2578063a457c2d71461057d578063a5ece9411461059d578063a9059cbb146105bd578063aa4bde28146105dd578063b2e20879146105f357600080fd5b80638c0b5e22146104f45780638da5cb5b1461050a578063906e9dd01461052857806395d89b41146105485780639a7a23d61461055d57600080fd5b806342d0b0bc116101bc578063715018a611610180578063715018a614610474578063721e6233146104895780637c3a128f1461049f5780638753cc48146104bf5780638a8c523c146104df57600080fd5b806342d0b0bc146103af57806349bd5a5e146103c55780634fbee193146103e557806365b8dbc01461041e57806370a082311461043e57600080fd5b806318160ddd1161020357806318160ddd1461031457806323b872dd1461033357806327a14fc214610353578063313ce56714610373578063395093511461038f57600080fd5b8062272d601461024a57806306fdde031461026c57806307dce0f814610297578063095ea7b3146102ac5780631694505e146102dc57600080fd5b3661024557005b600080fd5b34801561025657600080fd5b5061026a610265366004611b34565b61076a565b005b34801561027857600080fd5b506102816107dd565b60405161028e9190611b4d565b60405180910390f35b3480156102a357600080fd5b5061026a61086f565b3480156102b857600080fd5b506102cc6102c7366004611bc0565b61097a565b604051901515815260200161028e565b3480156102e857600080fd5b506006546102fc906001600160a01b031681565b6040516001600160a01b03909116815260200161028e565b34801561032057600080fd5b506002545b60405190815260200161028e565b34801561033f57600080fd5b506102cc61034e366004611bec565b610994565b34801561035f57600080fd5b5061026a61036e366004611b34565b6109b8565b34801561037f57600080fd5b506040516012815260200161028e565b34801561039b57600080fd5b506102cc6103aa366004611bc0565b610a20565b3480156103bb57600080fd5b5061032560075481565b3480156103d157600080fd5b506010546102fc906001600160a01b031681565b3480156103f157600080fd5b506102cc610400366004611c2d565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561042a57600080fd5b5061026a610439366004611c2d565b610a42565b34801561044a57600080fd5b50610325610459366004611c2d565b6001600160a01b031660009081526020819052604090205490565b34801561048057600080fd5b5061026a610c4f565b34801561049557600080fd5b5061032560085481565b3480156104ab57600080fd5b5061026a6104ba366004611b34565b610c63565b3480156104cb57600080fd5b5061026a6104da366004611b34565b610cd2565b3480156104eb57600080fd5b5061026a610cdf565b34801561050057600080fd5b5061032560095481565b34801561051657600080fd5b506005546001600160a01b03166102fc565b34801561053457600080fd5b5061026a610543366004611c2d565b610d25565b34801561055457600080fd5b50610281610dab565b34801561056957600080fd5b5061026a610578366004611c61565b610dba565b34801561058957600080fd5b506102cc610598366004611bc0565b610e62565b3480156105a957600080fd5b50600f546102fc906001600160a01b031681565b3480156105c957600080fd5b506102cc6105d8366004611bc0565b610edd565b3480156105e957600080fd5b50610325600a5481565b3480156105ff57600080fd5b50610325600b5481565b34801561061557600080fd5b506102cc610624366004611c2d565b600e6020526000908152604090205460ff1681565b34801561064557600080fd5b5061026a610654366004611c61565b610eeb565b34801561066557600080fd5b5061026a610674366004611c61565b610f5e565b34801561068557600080fd5b5061026a610694366004611cac565b610fd1565b3480156106a557600080fd5b5061026a6106b4366004611cac565b611045565b3480156106c557600080fd5b506006546102cc90600160a81b900460ff1681565b3480156106e657600080fd5b506103256106f5366004611d83565b6110b4565b34801561070657600080fd5b506102cc610715366004611c2d565b600d6020526000908152604090205460ff1681565b34801561073657600080fd5b5061026a610745366004611b34565b6110df565b34801561075657600080fd5b5061026a610765366004611c2d565b611147565b6107726111bd565b60328111156107d85760405162461bcd60e51b815260206004820152602760248201527f4275794d61726b6574696e675461782063616e6e6f74206265206d6f7265207460448201526668616e2035302560c81b60648201526084015b60405180910390fd5b600855565b6060600380546107ec90611dbc565b80601f016020809104026020016040519081016040528092919081815260200182805461081890611dbc565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b306000908152602081905260409020548015610977576006805460ff60a01b1916600160a01b1790556108a181611217565b600f5460405147916000916001600160a01b039091169083908381818185875af1925050503d80600081146108f2576040519150601f19603f3d011682016040523d82523d6000602084013e6108f7565b606091505b50509050806109675760405162461bcd60e51b815260206004820152603660248201527f416464726573733a20756e61626c6520746f20657874726163742076616c75656044820152750b081d1e081b585e481a185d99481c995d995c9d195960521b60648201526084016107cf565b50506006805460ff60a01b191690555b50565b600033610988818585611371565b60019150505b92915050565b6000336109a2858285611495565b6109ad85858561150f565b506001949350505050565b6109c06111bd565b6a0196678d75ee49b4fc0000811015610a1b5760405162461bcd60e51b815260206004820152601e60248201527f4d617857616c6c6574416d6f756e742063616e6e6f74206265206c657373000060448201526064016107cf565b600a55565b600033610988818585610a3383836110b4565b610a3d9190611e0c565b611371565b610a4a6111bd565b6006546001600160a01b0390811690821603610ab45760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b60648201526084016107cf565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015610b10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b349190611e1f565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba9190611e1f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610c07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2b9190611e1f565b601080546001600160a01b0319166001600160a01b03929092169190911790555050565b610c576111bd565b610c6160006118f7565b565b610c6b6111bd565b6032811115610ccd5760405162461bcd60e51b815260206004820152602860248201527f53656c6c4d61726b6574696e675461782063616e6e6f74206265206d6f7265206044820152677468616e2035302560c01b60648201526084016107cf565b600755565b610cda6111bd565b600b55565b610ce76111bd565b6006805460ff60a81b1916600160a81b1790556040517f0270d74976d9c744a465e24d0e2675086607ed6163edf4e36cabaf9740ce2ef490600090a1565b610d2d6111bd565b600f80546001600160a01b039081166000908152600d60208181526040808420805460ff19908116909155865486168552600c80845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b6060600480546107ec90611dbc565b610dc26111bd565b6010546001600160a01b0390811690831603610e545760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a4016107cf565b610e5e8282611949565b5050565b60003381610e7082866110b4565b905083811015610ed05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107cf565b6109ad8286868403611371565b60003361098881858561150f565b610ef36111bd565b6001600160a01b0382166000908152600c602052604090205481151560ff909116151503610f335760405162461bcd60e51b81526004016107cf90611e3c565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b610f666111bd565b6001600160a01b0382166000908152600d602052604090205481151560ff909116151503610fa65760405162461bcd60e51b81526004016107cf90611e3c565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610fd96111bd565b60005b82518110156110405781600c6000858481518110610ffc57610ffc611e86565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061103881611e9c565b915050610fdc565b505050565b61104d6111bd565b60005b82518110156110405781600d600085848151811061107057611070611e86565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110ac81611e9c565b915050611050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6110e76111bd565b6a0196678d75ee49b4fc00008110156111425760405162461bcd60e51b815260206004820152601a60248201527f4d61785478416d6f756e742063616e6e6f74206265206c65737300000000000060448201526064016107cf565b600955565b61114f6111bd565b6001600160a01b0381166111b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cf565b610977816118f7565b6005546001600160a01b03163314610c615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107cf565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061124c5761124c611e86565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156112a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c99190611e1f565b816001815181106112dc576112dc611e86565b6001600160a01b0392831660209182029290920101526006546113029130911684611371565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061133b908590600090869030904290600401611eb5565b600060405180830381600087803b15801561135557600080fd5b505af1158015611369573d6000803e3d6000fd5b505050505050565b6001600160a01b0383166113d35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107cf565b6001600160a01b0382166114345760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107cf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006114a184846110b4565b9050600019811461150957818110156114fc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107cf565b6115098484848403611371565b50505050565b6001600160a01b0383166115355760405162461bcd60e51b81526004016107cf90611f26565b6001600160a01b03821661155b5760405162461bcd60e51b81526004016107cf90611f6b565b8060000361156f5761104083836000611a0a565b6005546001600160a01b0384811691161480159061159b57506005546001600160a01b03838116911614155b15611741576001600160a01b0383166000908152600d602052604090205460ff161580156115e257506001600160a01b0382166000908152600d602052604090205460ff16155b1561174157600654600160a81b900460ff166116405760405162461bcd60e51b815260206004820152601d60248201527f54726164696e672069732063757272656e746c792064697361626c656400000060448201526064016107cf565b6009548111156116a65760405162461bcd60e51b815260206004820152602b60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61786960448201526a1b5d5b48185b1b1bddd95960aa1b60648201526084016107cf565b6010546001600160a01b0383811691161461174157600a54816116de846001600160a01b031660009081526020819052604090205490565b6116e89190611e0c565b106117415760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b60648201526084016107cf565b600b543060009081526020819052604090205410801590819061176e5750600654600160a01b900460ff16155b801561179357506001600160a01b0384166000908152600e602052604090205460ff16155b80156117ad57506005546001600160a01b03858116911614155b80156117c757506005546001600160a01b03848116911614155b156117d4576117d461086f565b6006546001600160a01b0385166000908152600c602052604090205460ff600160a01b90920482161591168061182257506001600160a01b0384166000908152600c602052604090205460ff165b1561182b575060005b80156118e5576001600160a01b0384166000908152600e602052604090205460ff161561188d5760006064600754856118649190611fae565b61186e9190611fc5565b905061187a8185611fe7565b9350611887863083611a0a565b506118e5565b6001600160a01b0385166000908152600e602052604090205460ff16156118e55760006064600854856118c09190611fae565b6118ca9190611fc5565b90506118d68185611fe7565b93506118e3863083611a0a565b505b6118f0858585611a0a565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600e602052604090205481151560ff9091161515036119df5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084016107cf565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6001600160a01b038316611a305760405162461bcd60e51b81526004016107cf90611f26565b6001600160a01b038216611a565760405162461bcd60e51b81526004016107cf90611f6b565b6001600160a01b03831660009081526020819052604090205481811015611ace5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107cf565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611509565b600060208284031215611b4657600080fd5b5035919050565b600060208083528351808285015260005b81811015611b7a57858101830151858201604001528201611b5e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461097757600080fd5b8035611bbb81611b9b565b919050565b60008060408385031215611bd357600080fd5b8235611bde81611b9b565b946020939093013593505050565b600080600060608486031215611c0157600080fd5b8335611c0c81611b9b565b92506020840135611c1c81611b9b565b929592945050506040919091013590565b600060208284031215611c3f57600080fd5b8135611c4a81611b9b565b9392505050565b80358015158114611bbb57600080fd5b60008060408385031215611c7457600080fd5b8235611c7f81611b9b565b9150611c8d60208401611c51565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215611cbf57600080fd5b823567ffffffffffffffff80821115611cd757600080fd5b818501915085601f830112611ceb57600080fd5b8135602082821115611cff57611cff611c96565b8160051b604051601f19603f83011681018181108682111715611d2457611d24611c96565b604052928352818301935084810182019289841115611d4257600080fd5b948201945b83861015611d6757611d5886611bb0565b85529482019493820193611d47565b9650611d769050878201611c51565b9450505050509250929050565b60008060408385031215611d9657600080fd5b8235611da181611b9b565b91506020830135611db181611b9b565b809150509250929050565b600181811c90821680611dd057607f821691505b602082108103611df057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561098e5761098e611df6565b600060208284031215611e3157600080fd5b8151611c4a81611b9b565b6020808252602a908201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604082015269276578636c756465642760b01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060018201611eae57611eae611df6565b5060010190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f055784516001600160a01b031683529383019391830191600101611ee0565b50506001600160a01b03969096166060850152505050608001529392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761098e5761098e611df6565b600082611fe257634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561098e5761098e611df656fea264697066735822122094429a8653c8e88431bd70d19d9628492f97b67cda2687304ca698cbfde3ed9564736f6c63430008130033

Deployed Bytecode Sourcemap

21075:8092:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27507:181;;;;;;;;;;-1:-1:-1;27507:181:0;;;;;:::i;:::-;;:::i;:::-;;9348:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25703:497;;;;;;;;;;;;;:::i;11708:201::-;;;;;;;;;;-1:-1:-1;11708:201:0;;;;;:::i;:::-;;:::i;:::-;;;1512:14:1;;1505:22;1487:41;;1475:2;1460:18;11708:201:0;1347:187:1;21114:41:0;;;;;;;;;;-1:-1:-1;21114:41:0;;;;-1:-1:-1;;;;;21114:41:0;;;;;;-1:-1:-1;;;;;1729:32:1;;;1711:51;;1699:2;1684:18;21114:41:0;1539:229:1;10477:108:0;;;;;;;;;;-1:-1:-1;10565:12:0;;10477:108;;;1919:25:1;;;1907:2;1892:18;10477:108:0;1773:177:1;12489:261:0;;;;;;;;;;-1:-1:-1;12489:261:0;;;;;:::i;:::-;;:::i;27877:185::-;;;;;;;;;;-1:-1:-1;27877:185:0;;;;;:::i;:::-;;:::i;10319:93::-;;;;;;;;;;-1:-1:-1;10319:93:0;;10402:2;2558:36:1;;2546:2;2531:18;10319:93:0;2416:184:1;13159:238:0;;;;;;;;;;-1:-1:-1;13159:238:0;;;;;:::i;:::-;;:::i;21230:36::-;;;;;;;;;;;;;;;;21817:28;;;;;;;;;;-1:-1:-1;21817:28:0;;;;-1:-1:-1;;;;;21817:28:0;;;28557:125;;;;;;;;;;-1:-1:-1;28557:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;28646:28:0;28622:4;28646:28;;;:19;:28;;;;;;;;;28557:125;22787:403;;;;;;;;;;-1:-1:-1;22787:403:0;;;;;:::i;:::-;;:::i;10648:127::-;;;;;;;;;;-1:-1:-1;10648:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10749:18:0;10722:7;10749:18;;;;;;;;;;;;10648:127;2769:103;;;;;;;;;;;;;:::i;21298:35::-;;;;;;;;;;;;;;;;27312:187;;;;;;;;;;-1:-1:-1;27312:187:0;;;;;:::i;:::-;;:::i;28070:118::-;;;;;;;;;;-1:-1:-1;28070:118:0;;;;;:::i;:::-;;:::i;27192:112::-;;;;;;;;;;;;;:::i;21367:44::-;;;;;;;;;;;;;;;;2128:87;;;;;;;;;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;2201:6:0;2128:87;;28196:353;;;;;;;;;;-1:-1:-1;28196:353:0;;;;;:::i;:::-;;:::i;9567:104::-;;;;;;;;;;;;;:::i;23198:254::-;;;;;;;;;;-1:-1:-1;23198:254:0;;;;;:::i;:::-;;:::i;13900:436::-;;;;;;;;;;-1:-1:-1;13900:436:0;;;;;:::i;:::-;;:::i;21725:85::-;;;;;;;;;;-1:-1:-1;21725:85:0;;;;-1:-1:-1;;;;;21725:85:0;;;10981:193;;;;;;;;;;-1:-1:-1;10981:193:0;;;;;:::i;:::-;;:::i;21419:48::-;;;;;;;;;;;;;;;;21475:52;;;;;;;;;;;;;;;;21658:58;;;;;;;;;;-1:-1:-1;21658:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26208:238;;;;;;;;;;-1:-1:-1;26208:238:0;;;;;:::i;:::-;;:::i;26695:244::-;;;;;;;;;;-1:-1:-1;26695:244:0;;;;;:::i;:::-;;:::i;26454:233::-;;;;;;;;;;-1:-1:-1;26454:233:0;;;;;:::i;:::-;;:::i;26947:237::-;;;;;;;;;;-1:-1:-1;26947:237:0;;;;;:::i;:::-;;:::i;21191:32::-;;;;;;;;;;-1:-1:-1;21191:32:0;;;;-1:-1:-1;;;21191:32:0;;;;;;11237:151;;;;;;;;;;-1:-1:-1;11237:151:0;;;;;:::i;:::-;;:::i;21597:54::-;;;;;;;;;;-1:-1:-1;21597:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27696:173;;;;;;;;;;-1:-1:-1;27696:173:0;;;;;:::i;:::-;;:::i;3027:201::-;;;;;;;;;;-1:-1:-1;3027:201:0;;;;;:::i;:::-;;:::i;27507:181::-;2014:13;:11;:13::i;:::-;27599:2:::1;27589:6;:12;;27581:64;;;::::0;-1:-1:-1;;;27581:64:0;;5733:2:1;27581:64:0::1;::::0;::::1;5715:21:1::0;5772:2;5752:18;;;5745:30;5811:34;5791:18;;;5784:62;-1:-1:-1;;;5862:18:1;;;5855:37;5909:19;;27581:64:0::1;;;;;;;;;27656:15;:24:::0;27507:181::o;9348:100::-;9402:13;9435:5;9428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9348:100;:::o;25703:497::-;25797:4;25751:25;10749:18;;;;;;;;;;;25818:24;;25814:379;;25865:8;:15;;-1:-1:-1;;;;25865:15:0;-1:-1:-1;;;25865:15:0;;;25895:38;25912:20;25895:16;:38::i;:::-;26017:16;;26009:51;;25958:21;;25944:11;;-1:-1:-1;;;;;26017:16:0;;;;25958:21;;25944:11;26009:51;25944:11;26009:51;25958:21;26017:16;26009:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25990:70;;;26079:7;26071:74;;;;-1:-1:-1;;;26071:74:0;;6736:2:1;26071:74:0;;;6718:21:1;6775:2;6755:18;;;6748:30;6814:34;6794:18;;;6787:62;-1:-1:-1;;;6865:18:1;;;6858:52;6927:19;;26071:74:0;6534:418:1;26071:74:0;-1:-1:-1;;26156:8:0;:16;;-1:-1:-1;;;;26156:16:0;;;25814:379;25740:460;25703:497::o;11708:201::-;11791:4;759:10;11847:32;759:10;11863:7;11872:6;11847:8;:32::i;:::-;11897:4;11890:11;;;11708:201;;;;;:::o;12489:261::-;12586:4;759:10;12644:38;12660:4;759:10;12675:6;12644:15;:38::i;:::-;12693:27;12703:4;12709:2;12713:6;12693:9;:27::i;:::-;-1:-1:-1;12738:4:0;;12489:261;-1:-1:-1;;;;12489:261:0:o;27877:185::-;2014:13;:11;:13::i;:::-;27969:15:::1;27959:6;:25;;27951:68;;;::::0;-1:-1:-1;;;27951:68:0;;7159:2:1;27951:68:0::1;::::0;::::1;7141:21:1::0;7198:2;7178:18;;;7171:30;7237:32;7217:18;;;7210:60;7287:18;;27951:68:0::1;6957:354:1::0;27951:68:0::1;28030:15;:24:::0;27877:185::o;13159:238::-;13247:4;759:10;13303:64;759:10;13319:7;13356:10;13328:25;759:10;13319:7;13328:9;:25::i;:::-;:38;;;;:::i;:::-;13303:8;:64::i;22787:403::-;2014:13;:11;:13::i;:::-;22896:15:::1;::::0;-1:-1:-1;;;;;22896:15:0;;::::1;22874:38:::0;;::::1;::::0;22866:86:::1;;;::::0;-1:-1:-1;;;22866:86:0;;7780:2:1;22866:86:0::1;::::0;::::1;7762:21:1::0;7819:2;7799:18;;;7792:30;7858:34;7838:18;;;7831:62;-1:-1:-1;;;7909:18:1;;;7902:33;7952:19;;22866:86:0::1;7578:399:1::0;22866:86:0::1;22963:15;:48:::0;;-1:-1:-1;;;;;;22963:48:0::1;-1:-1:-1::0;;;;;22963:48:0;::::1;::::0;;::::1;::::0;;;23065:25:::1;::::0;;-1:-1:-1;;;23065:25:0;;;;-1:-1:-1;;22963:48:0;23065:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;22963:48;23065:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23047:55:0::1;;23111:4;23118:15;;;;;;;;;-1:-1:-1::0;;;;;23118:15:0::1;-1:-1:-1::0;;;;;23118:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23047:94;::::0;-1:-1:-1;;;;;;23047:94:0::1;::::0;;;;;;-1:-1:-1;;;;;8468:15:1;;;23047:94:0::1;::::0;::::1;8450:34:1::0;8520:15;;8500:18;;;8493:43;8385:18;;23047:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23152:13;:30:::0;;-1:-1:-1;;;;;;23152:30:0::1;-1:-1:-1::0;;;;;23152:30:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;22787:403:0:o;2769:103::-;2014:13;:11;:13::i;:::-;2834:30:::1;2861:1;2834:18;:30::i;:::-;2769:103::o:0;27312:187::-;2014:13;:11;:13::i;:::-;27407:2:::1;27396:7;:13;;27388:66;;;::::0;-1:-1:-1;;;27388:66:0;;8749:2:1;27388:66:0::1;::::0;::::1;8731:21:1::0;8788:2;8768:18;;;8761:30;8827:34;8807:18;;;8800:62;-1:-1:-1;;;8878:18:1;;;8871:38;8926:19;;27388:66:0::1;8547:404:1::0;27388:66:0::1;27465:16;:26:::0;27312:187::o;28070:118::-;2014:13;:11;:13::i;:::-;28150:21:::1;:30:::0;28070:118::o;27192:112::-;2014:13;:11;:13::i;:::-;27247:12:::1;:19:::0;;-1:-1:-1;;;;27247:19:0::1;-1:-1:-1::0;;;27247:19:0::1;::::0;;27282:14:::1;::::0;::::1;::::0;27247:19;;27282:14:::1;27192:112::o:0;28196:353::-;2014:13;:11;:13::i;:::-;28307:16:::1;::::0;;-1:-1:-1;;;;;28307:16:0;;::::1;28327:5;28285:39:::0;;;:21:::1;:39;::::0;;;;;;;:47;;-1:-1:-1;;28285:47:0;;::::1;::::0;;;28363:16;;;::::1;28343:37:::0;;:19:::1;:37:::0;;;;;;:45;;;::::1;::::0;;28399:30;;-1:-1:-1;;;;;;28399:30:0::1;::::0;;::::1;::::0;;::::1;::::0;;28440:39;;;;;;;;;:46;;;::::1;-1:-1:-1::0;28440:46:0;;::::1;::::0;;;28517:16;;;;::::1;28497:37:::0;;;;;;;:44;;;;::::1;;::::0;;28196:353::o;9567:104::-;9623:13;9656:7;9649:14;;;;;:::i;23198:254::-;2014:13;:11;:13::i;:::-;23305::::1;::::0;-1:-1:-1;;;;;23305:13:0;;::::1;23297:21:::0;;::::1;::::0;23289:103:::1;;;::::0;-1:-1:-1;;;23289:103:0;;9158:2:1;23289:103:0::1;::::0;::::1;9140:21:1::0;9197:2;9177:18;;;9170:30;9236:34;9216:18;;;9209:62;9307:34;9287:18;;;9280:62;-1:-1:-1;;;9358:19:1;;;9351:36;9404:19;;23289:103:0::1;8956:473:1::0;23289:103:0::1;23403:41;23432:4;23438:5;23403:28;:41::i;:::-;23198:254:::0;;:::o;13900:436::-;13993:4;759:10;13993:4;14076:25;759:10;14093:7;14076:9;:25::i;:::-;14049:52;;14140:15;14120:16;:35;;14112:85;;;;-1:-1:-1;;;14112:85:0;;9636:2:1;14112:85:0;;;9618:21:1;9675:2;9655:18;;;9648:30;9714:34;9694:18;;;9687:62;-1:-1:-1;;;9765:18:1;;;9758:35;9810:19;;14112:85:0;9434:401:1;14112:85:0;14233:60;14242:5;14249:7;14277:15;14258:16;:34;14233:8;:60::i;10981:193::-;11060:4;759:10;11116:28;759:10;11133:2;11137:6;11116:9;:28::i;26208:238::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;26301:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;26293:95:::1;;;;-1:-1:-1::0;;;26293:95:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26399:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;26399:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26208:238::o;26695:244::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;26790:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;;:42;::::1;;:30;::::0;;::::1;:42;;::::0;26782:97:::1;;;;-1:-1:-1::0;;;26782:97:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26890:30:0;;;::::1;;::::0;;;:21:::1;:30;::::0;;;;:41;;-1:-1:-1;;26890:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26695:244::o;26454:233::-;2014:13;:11;:13::i;:::-;26569:9:::1;26565:115;26588:8;:15;26584:1;:19;26565:115;;;26660:8;26625:19;:32;26645:8;26654:1;26645:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;26625:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;26625:32:0;:43;;-1:-1:-1;;26625:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26605:3;::::1;::::0;::::1;:::i;:::-;;;;26565:115;;;;26454:233:::0;;:::o;26947:237::-;2014:13;:11;:13::i;:::-;27064:9:::1;27060:117;27083:8;:15;27079:1;:19;27060:117;;;27157:8;27120:21;:34;27142:8;27151:1;27142:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;27120:34:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;27120:34:0;:45;;-1:-1:-1;;27120:45:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27100:3;::::1;::::0;::::1;:::i;:::-;;;;27060:117;;11237:151:::0;-1:-1:-1;;;;;11353:18:0;;;11326:7;11353:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11237:151::o;27696:173::-;2014:13;:11;:13::i;:::-;27784:15:::1;27774:6;:25;;27766:64;;;::::0;-1:-1:-1;;;27766:64:0;;10725:2:1;27766:64:0::1;::::0;::::1;10707:21:1::0;10764:2;10744:18;;;10737:30;10803:28;10783:18;;;10776:56;10849:18;;27766:64:0::1;10523:350:1::0;27766:64:0::1;27841:11;:20:::0;27696:173::o;3027:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3116:22:0;::::1;3108:73;;;::::0;-1:-1:-1;;;3108:73:0;;11080:2:1;3108:73:0::1;::::0;::::1;11062:21:1::0;11119:2;11099:18;;;11092:30;11158:34;11138:18;;;11131:62;-1:-1:-1;;;11209:18:1;;;11202:36;11255:19;;3108:73:0::1;10878:402:1::0;3108:73:0::1;3192:28;3211:8;3192:18;:28::i;2293:132::-:0;2201:6;;-1:-1:-1;;;;;2201:6:0;759:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;11487:2:1;2349:68:0;;;11469:21:1;;;11506:18;;;11499:30;11565:34;11545:18;;;11538:62;11617:18;;2349:68:0;11285:356:1;28690:472:0;28780:16;;;28794:1;28780:16;;;;;;;;28756:21;;28780:16;;;;;;;;;;-1:-1:-1;28780:16:0;28756:40;;28825:4;28807;28812:1;28807:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;28807:23:0;;;:7;;;;;;;;;;:23;;;;28851:15;;:22;;;-1:-1:-1;;;28851:22:0;;;;:15;;;;;:20;;:22;;;;;28807:7;;28851:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28841:4;28846:1;28841:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;28841:32:0;;;:7;;;;;;;;;:32;28916:15;;28884:62;;28901:4;;28916:15;28934:11;28884:8;:62::i;:::-;28957:15;;:197;;-1:-1:-1;;;28957:197:0;;-1:-1:-1;;;;;28957:15:0;;;;:66;;:197;;29038:11;;28957:15;;29081:4;;29108;;29128:15;;28957:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28745:417;28690:472;:::o;17893:346::-;-1:-1:-1;;;;;17995:19:0;;17987:68;;;;-1:-1:-1;;;17987:68:0;;12833:2:1;17987:68:0;;;12815:21:1;12872:2;12852:18;;;12845:30;12911:34;12891:18;;;12884:62;-1:-1:-1;;;12962:18:1;;;12955:34;13006:19;;17987:68:0;12631:400:1;17987:68:0;-1:-1:-1;;;;;18074:21:0;;18066:68;;;;-1:-1:-1;;;18066:68:0;;13238:2:1;18066:68:0;;;13220:21:1;13277:2;13257:18;;;13250:30;13316:34;13296:18;;;13289:62;-1:-1:-1;;;13367:18:1;;;13360:32;13409:19;;18066:68:0;13036:398:1;18066:68:0;-1:-1:-1;;;;;18147:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18199:32;;1919:25:1;;;18199:32:0;;1892:18:1;18199:32:0;;;;;;;17893:346;;;:::o;18530:419::-;18631:24;18658:25;18668:5;18675:7;18658:9;:25::i;:::-;18631:52;;-1:-1:-1;;18698:16:0;:37;18694:248;;18780:6;18760:16;:26;;18752:68;;;;-1:-1:-1;;;18752:68:0;;13641:2:1;18752:68:0;;;13623:21:1;13680:2;13660:18;;;13653:30;13719:31;13699:18;;;13692:59;13768:18;;18752:68:0;13439:353:1;18752:68:0;18864:51;18873:5;18880:7;18908:6;18889:16;:25;18864:8;:51::i;:::-;18620:329;18530:419;;;:::o;23722:1971::-;-1:-1:-1;;;;;23854:18:0;;23846:68;;;;-1:-1:-1;;;23846:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23933:16:0;;23925:64;;;;-1:-1:-1;;;23925:64:0;;;;;;;:::i;:::-;24005:6;24015:1;24005:11;24002:92;;24033:28;24049:4;24055:2;24059:1;24033:15;:28::i;24002:92::-;2201:6;;-1:-1:-1;;;;;24110:15:0;;;2201:6;;24110:15;;;;:32;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;24129:13:0;;;2201:6;;24129:13;;24110:32;24106:486;;;-1:-1:-1;;;;;24163:27:0;;;;;;:21;:27;;;;;;;;24162:28;:58;;;;-1:-1:-1;;;;;;24195:25:0;;;;;;:21;:25;;;;;;;;24194:26;24162:58;24159:422;;;24249:12;;-1:-1:-1;;;24249:12:0;;;;24241:54;;;;-1:-1:-1;;;24241:54:0;;14809:2:1;24241:54:0;;;14791:21:1;14848:2;14828:18;;;14821:30;14887:31;14867:18;;;14860:59;14936:18;;24241:54:0;14607:353:1;24241:54:0;24332:11;;24322:6;:21;;24314:77;;;;-1:-1:-1;;;24314:77:0;;15167:2:1;24314:77:0;;;15149:21:1;15206:2;15186:18;;;15179:30;15245:34;15225:18;;;15218:62;-1:-1:-1;;;15296:18:1;;;15289:41;15347:19;;24314:77:0;14965:407:1;24314:77:0;24420:13;;-1:-1:-1;;;;;24414:19:0;;;24420:13;;24414:19;24410:156;;24491:15;;24482:6;24466:13;24476:2;-1:-1:-1;;;;;10749:18:0;10722:7;10749:18;;;;;;;;;;;;10648:127;24466:13;:22;;;;:::i;:::-;:40;24458:88;;;;-1:-1:-1;;;24458:88:0;;15579:2:1;24458:88:0;;;15561:21:1;15618:2;15598:18;;;15591:30;15657:34;15637:18;;;15630:62;-1:-1:-1;;;15708:18:1;;;15701:33;15751:19;;24458:88:0;15377:399:1;24458:88:0;24659:21;;24649:4;24604:24;10749:18;;;;;;;;;;;-1:-1:-1;24631:49:0;;;;;24696:45;;-1:-1:-1;24733:8:0;;-1:-1:-1;;;24733:8:0;;;;24732:9;24696:45;:94;;;;-1:-1:-1;;;;;;24759:31:0;;;;;;:25;:31;;;;;;;;24758:32;24696:94;:126;;;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;24807:15:0;;;2201:6;;24807:15;;24696:126;:156;;;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;24839:13:0;;;2201:6;;24839:13;;24696:156;24692:229;;;24889:20;:18;:20::i;:::-;24950:8;;-1:-1:-1;;;;;24972:25:0;;24934:12;24972:25;;;:19;:25;;;;;;24950:8;-1:-1:-1;;;24950:8:0;;;;;24949:9;;24972:25;;:52;;-1:-1:-1;;;;;;25001:23:0;;;;;;:19;:23;;;;;;;;24972:52;24969:99;;;-1:-1:-1;25051:5:0;24969:99;25087:7;25083:545;;;-1:-1:-1;;;;;25115:29:0;;;;;;:25;:29;;;;;;;;25111:506;;;25166:20;25217:3;25198:16;;25189:6;:25;;;;:::i;:::-;:31;;;;:::i;:::-;25166:54;-1:-1:-1;25248:21:0;25166:54;25248:6;:21;:::i;:::-;25239:30;;25288:50;25304:4;25318;25325:12;25288:15;:50::i;:::-;25146:208;25111:506;;;-1:-1:-1;;;;;25377:31:0;;;;;;:25;:31;;;;;;;;25373:244;;;25430:20;25480:3;25462:15;;25453:6;:24;;;;:::i;:::-;:30;;;;:::i;:::-;25430:53;-1:-1:-1;25511:21:0;25430:53;25511:6;:21;:::i;:::-;25502:30;;25551:50;25567:4;25581;25588:12;25551:15;:50::i;:::-;25410:207;25373:244;25652:33;25668:4;25674:2;25678:6;25652:15;:33::i;:::-;23835:1858;;23722:1971;;;:::o;3388:191::-;3481:6;;;-1:-1:-1;;;;;3498:17:0;;;-1:-1:-1;;;;;;3498:17:0;;;;;;;3531:40;;3481:6;;;3498:17;3481:6;;3531:40;;3462:16;;3531:40;3451:128;3388:191;:::o;23464:250::-;-1:-1:-1;;;;;23555:31:0;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;23547:109;;;;-1:-1:-1;;;23547:109:0;;16511:2:1;23547:109:0;;;16493:21:1;16550:2;16530:18;;;16523:30;16589:34;16569:18;;;16562:62;16660:26;16640:18;;;16633:54;16704:19;;23547:109:0;16309:420:1;23547:109:0;-1:-1:-1;;;;;23667:31:0;;;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;23667:39:0;;;;;;;;;;23464:250::o;14806:806::-;-1:-1:-1;;;;;14903:18:0;;14895:68;;;;-1:-1:-1;;;14895:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14982:16:0;;14974:64;;;;-1:-1:-1;;;14974:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15124:15:0;;15102:19;15124:15;;;;;;;;;;;15158:21;;;;15150:72;;;;-1:-1:-1;;;15150:72:0;;16936:2:1;15150:72:0;;;16918:21:1;16975:2;16955:18;;;16948:30;17014:34;16994:18;;;16987:62;-1:-1:-1;;;17065:18:1;;;17058:36;17111:19;;15150:72:0;16734:402:1;15150:72:0;-1:-1:-1;;;;;15258:15:0;;;:9;:15;;;;;;;;;;;15276:20;;;15258:38;;15476:13;;;;;;;;;;:23;;;;;;15528:26;;1919:25:1;;;15476:13:0;;15528:26;;1892:18:1;15528:26:0;;;;;;;15567:37;26454:233;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:548::-;311:4;340:2;369;358:9;351:21;401:6;395:13;444:6;439:2;428:9;424:18;417:34;469:1;479:140;493:6;490:1;487:13;479:140;;;588:14;;;584:23;;578:30;554:17;;;573:2;550:26;543:66;508:10;;479:140;;;483:3;668:1;663:2;654:6;643:9;639:22;635:31;628:42;738:2;731;727:7;722:2;714:6;710:15;706:29;695:9;691:45;687:54;679:62;;;;199:548;;;;:::o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:134;956:20;;985:31;956:20;985:31;:::i;:::-;888:134;;;:::o;1027:315::-;1095:6;1103;1156:2;1144:9;1135:7;1131:23;1127:32;1124:52;;;1172:1;1169;1162:12;1124:52;1211:9;1198:23;1230:31;1255:5;1230:31;:::i;:::-;1280:5;1332:2;1317:18;;;;1304:32;;-1:-1:-1;;;1027:315:1:o;1955:456::-;2032:6;2040;2048;2101:2;2089:9;2080:7;2076:23;2072:32;2069:52;;;2117:1;2114;2107:12;2069:52;2156:9;2143:23;2175:31;2200:5;2175:31;:::i;:::-;2225:5;-1:-1:-1;2282:2:1;2267:18;;2254:32;2295:33;2254:32;2295:33;:::i;:::-;1955:456;;2347:7;;-1:-1:-1;;;2401:2:1;2386:18;;;;2373:32;;1955:456::o;2813:247::-;2872:6;2925:2;2913:9;2904:7;2900:23;2896:32;2893:52;;;2941:1;2938;2931:12;2893:52;2980:9;2967:23;2999:31;3024:5;2999:31;:::i;:::-;3049:5;2813:247;-1:-1:-1;;;2813:247:1:o;3325:160::-;3390:20;;3446:13;;3439:21;3429:32;;3419:60;;3475:1;3472;3465:12;3490:315;3555:6;3563;3616:2;3604:9;3595:7;3591:23;3587:32;3584:52;;;3632:1;3629;3622:12;3584:52;3671:9;3658:23;3690:31;3715:5;3690:31;:::i;:::-;3740:5;-1:-1:-1;3764:35:1;3795:2;3780:18;;3764:35;:::i;:::-;3754:45;;3490:315;;;;;:::o;3810:127::-;3871:10;3866:3;3862:20;3859:1;3852:31;3902:4;3899:1;3892:15;3926:4;3923:1;3916:15;3942:1191;4032:6;4040;4093:2;4081:9;4072:7;4068:23;4064:32;4061:52;;;4109:1;4106;4099:12;4061:52;4149:9;4136:23;4178:18;4219:2;4211:6;4208:14;4205:34;;;4235:1;4232;4225:12;4205:34;4273:6;4262:9;4258:22;4248:32;;4318:7;4311:4;4307:2;4303:13;4299:27;4289:55;;4340:1;4337;4330:12;4289:55;4376:2;4363:16;4398:4;4421:2;4417;4414:10;4411:36;;;4427:18;;:::i;:::-;4473:2;4470:1;4466:10;4505:2;4499:9;4568:2;4564:7;4559:2;4555;4551:11;4547:25;4539:6;4535:38;4623:6;4611:10;4608:22;4603:2;4591:10;4588:18;4585:46;4582:72;;;4634:18;;:::i;:::-;4670:2;4663:22;4720:18;;;4754:15;;;;-1:-1:-1;4796:11:1;;;4792:20;;;4824:19;;;4821:39;;;4856:1;4853;4846:12;4821:39;4880:11;;;;4900:148;4916:6;4911:3;4908:15;4900:148;;;4982:23;5001:3;4982:23;:::i;:::-;4970:36;;4933:12;;;;5026;;;;4900:148;;;5067:6;-1:-1:-1;5092:35:1;;-1:-1:-1;5108:18:1;;;5092:35;:::i;:::-;5082:45;;;;;;3942:1191;;;;;:::o;5138:388::-;5206:6;5214;5267:2;5255:9;5246:7;5242:23;5238:32;5235:52;;;5283:1;5280;5273:12;5235:52;5322:9;5309:23;5341:31;5366:5;5341:31;:::i;:::-;5391:5;-1:-1:-1;5448:2:1;5433:18;;5420:32;5461:33;5420:32;5461:33;:::i;:::-;5513:7;5503:17;;;5138:388;;;;;:::o;5939:380::-;6018:1;6014:12;;;;6061;;;6082:61;;6136:4;6128:6;6124:17;6114:27;;6082:61;6189:2;6181:6;6178:14;6158:18;6155:38;6152:161;;6235:10;6230:3;6226:20;6223:1;6216:31;6270:4;6267:1;6260:15;6298:4;6295:1;6288:15;6152:161;;5939:380;;;:::o;7316:127::-;7377:10;7372:3;7368:20;7365:1;7358:31;7408:4;7405:1;7398:15;7432:4;7429:1;7422:15;7448:125;7513:9;;;7534:10;;;7531:36;;;7547:18;;:::i;7982:251::-;8052:6;8105:2;8093:9;8084:7;8080:23;8076:32;8073:52;;;8121:1;8118;8111:12;8073:52;8153:9;8147:16;8172:31;8197:5;8172:31;:::i;9840:406::-;10042:2;10024:21;;;10081:2;10061:18;;;10054:30;10120:34;10115:2;10100:18;;10093:62;-1:-1:-1;;;10186:2:1;10171:18;;10164:40;10236:3;10221:19;;9840:406::o;10251:127::-;10312:10;10307:3;10303:20;10300:1;10293:31;10343:4;10340:1;10333:15;10367:4;10364:1;10357:15;10383:135;10422:3;10443:17;;;10440:43;;10463:18;;:::i;:::-;-1:-1:-1;10510:1:1;10499:13;;10383:135::o;11646:980::-;11908:4;11956:3;11945:9;11941:19;11987:6;11976:9;11969:25;12013:2;12051:6;12046:2;12035:9;12031:18;12024:34;12094:3;12089:2;12078:9;12074:18;12067:31;12118:6;12153;12147:13;12184:6;12176;12169:22;12222:3;12211:9;12207:19;12200:26;;12261:2;12253:6;12249:15;12235:29;;12282:1;12292:195;12306:6;12303:1;12300:13;12292:195;;;12371:13;;-1:-1:-1;;;;;12367:39:1;12355:52;;12462:15;;;;12427:12;;;;12403:1;12321:9;12292:195;;;-1:-1:-1;;;;;;;12543:32:1;;;;12538:2;12523:18;;12516:60;-1:-1:-1;;;12607:3:1;12592:19;12585:35;12504:3;11646:980;-1:-1:-1;;;11646:980:1:o;13797:401::-;13999:2;13981:21;;;14038:2;14018:18;;;14011:30;14077:34;14072:2;14057:18;;14050:62;-1:-1:-1;;;14143:2:1;14128:18;;14121:35;14188:3;14173:19;;13797:401::o;14203:399::-;14405:2;14387:21;;;14444:2;14424:18;;;14417:30;14483:34;14478:2;14463:18;;14456:62;-1:-1:-1;;;14549:2:1;14534:18;;14527:33;14592:3;14577:19;;14203:399::o;15781:168::-;15854:9;;;15885;;15902:15;;;15896:22;;15882:37;15872:71;;15923:18;;:::i;15954:217::-;15994:1;16020;16010:132;;16064:10;16059:3;16055:20;16052:1;16045:31;16099:4;16096:1;16089:15;16127:4;16124:1;16117:15;16010:132;-1:-1:-1;16156:9:1;;15954:217::o;16176:128::-;16243:9;;;16264:11;;;16261:37;;;16278:18;;:::i

Swarm Source

ipfs://94429a8653c8e88431bd70d19d9628492f97b67cda2687304ca698cbfde3ed95
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.