ETH Price: $2,922.12 (-3.53%)
Gas: 2 Gwei

Token

YRUG (YRUG)
 

Overview

Max Total Supply

420,690,000,000,000 YRUG

Holders

62

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 YRUG

Value
$0.00
0x6efecbc6d76375e2a69c32cd8ca4dfd866e7838c
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:
YRUGToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-02
*/

//     8 8                                                             
//  ad88888ba  8b        d8  88888888ba   88        88    ,ad8888ba,   
// d8" 8 8 "8b  Y8,    ,8P   88      "8b  88        88   d8"'    `"8b  
// Y8, 8 8       Y8,  ,8P    88      ,8P  88        88  d8'            
// `Y8a8a8a,      "8aa8"     88aaaaaa8P'  88        88  88             
//   `"8"8"8b,     `88'      88""""88'    88        88  88      88888  
//     8 8 `8b      88       88    `8b    88        88  Y8,        88  
// Y8a 8 8 a8P      88       88     `8b   Y8a.    .a8P   Y8a.    .a88  
//  "Y88888P"       88       88      `8b   `"Y8888Y"'     `"Y88888P"   
//     8 8                                                             
                                                                    
// https://twitter.com/yrugerc
// https://t.me/yrugerc
// https://yrug.xyz/


// 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/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/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 {}
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

// File: yeyoTAX.sol





 
pragma solidity ^0.8.0;
 
contract YRUGToken is Ownable, ERC20 {
    IUniswapV2Router02 public uniswapV2Router;
    bool public limited;
    bool taxesEnabled = true;
    bool pause = true;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    uint256 taxPercent = 2; // Never change to ZERO, disable taxes istead
    address marketingWallet = 0xa1456EbF25956Bc3E1aa3C1987E03e1dbf8C70F7;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;
    mapping(address => bool) public _isExcludedFromFees;
 
    constructor() ERC20("YRUG", "YRUG") {
        _mint(msg.sender, 420690000000000000000000000000000);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
 
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
 
        _isExcludedFromFees[msg.sender] = true;
        _isExcludedFromFees[marketingWallet] = true;
        _isExcludedFromFees[uniswapV2Pair] = true;
     }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "ERC20: transfer must be greater than 0");
 
        uint256 taxAmount;
        if (taxesEnabled) {
            if (from == uniswapV2Pair) {
                //Buy
 
                if (!_isExcludedFromFees[to])
                    taxAmount = (amount * taxPercent) / 100;
            }
                // Sell
            if (to == uniswapV2Pair) {
                if (!_isExcludedFromFees[from])
                    taxAmount = (amount * taxPercent) / 100;
            }
        }
 
        // Fees
        if (taxAmount > 0) {
            uint256 userAmount = amount - taxAmount;
            super._transfer(from, marketingWallet, taxAmount);
            super._transfer(from, to, userAmount);
        } else {
            super._transfer(from, to, amount);
        }
    }
 
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");
 

        if (pause) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(
                super.balanceOf(to) + amount <= maxHoldingAmount &&
                    super.balanceOf(to) + amount >= minHoldingAmount,
                "Forbid"
            );
        }
    }
 
    function changeMarketingWallet(
        address _newMarketingWallet
    ) external onlyOwner {
        marketingWallet = _newMarketingWallet;
    }
 
    function changeTaxPercent(uint256 _newTaxPercent) external onlyOwner {
        taxPercent = _newTaxPercent;
    }
 
    function excludeFromFees(
        address _address,
        bool _isExcluded
    ) external onlyOwner {
        _isExcludedFromFees[_address] = _isExcluded;
    }
 
    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

    function togglePause() external onlyOwner{
        pause = !pause;
    }
 
    function enableTaxes(bool _enable) external onlyOwner {
        taxesEnabled = _enable;
    }
 
    function toggleLimited() external onlyOwner {
        limited = !limited;
    }
 
    function blacklist(
        address _address,
        bool _isBlacklisting
    ) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }
 
    function setRule(
        bool _limited,
        uint256 _maxHoldingAmount,
        uint256 _minHoldingAmount
    ) external onlyOwner {
        limited = _limited;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }
}
 
// Interfaces
interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint
    );
 
    function feeTo() external view returns (address);
 
    function feeToSetter() external view returns (address);
 
    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);
 
    function allPairs(uint) external view returns (address pair);
 
    function allPairsLength() external view returns (uint);
 
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
 
    function setFeeTo(address) external;
 
    function setFeeToSetter(address) external;
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
 
    function symbol() external pure returns (string memory);
 
    function decimals() external pure returns (uint8);
 
    function totalSupply() external view returns (uint);
 
    function balanceOf(address owner) external view returns (uint);
 
    function allowance(
        address owner,
        address spender
    ) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
 
    function transfer(address to, uint value) external returns (bool);
 
    function transferFrom(
        address from,
        address to,
        uint value
    ) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
 
    function PERMIT_TYPEHASH() external pure returns (bytes32);
 
    function nonces(address owner) external view returns (uint);
 
    function permit(
        address owner,
        address spender,
        uint value,
        uint deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(
        address indexed sender,
        uint amount0,
        uint amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);
 
    function MINIMUM_LIQUIDITY() external pure returns (uint);
 
    function factory() external view returns (address);
 
    function token0() external view returns (address);
 
    function token1() external view returns (address);
 
    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
 
    function price0CumulativeLast() external view returns (uint);
 
    function price1CumulativeLast() external view returns (uint);
 
    function kLast() external view returns (uint);
 
    function mint(address to) external returns (uint liquidity);
 
    function burn(address to) external returns (uint amount0, uint amount1);
 
    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external;
 
    function skim(address to) external;
 
    function sync() external;
 
    function initialize(address, address) external;
}
 
interface IUniswapV2Router01 {
    function factory() external pure returns (address);
 
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
 
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);
 
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
 
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
 
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);
 
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);
 
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
 
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
 
    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);
 
    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
 
    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
 
    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);
 
    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);
 
    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);
 
    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);
 
    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
 
    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}
 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
 
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountETH);
 
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
 
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
 
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketingWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTaxPercent","type":"uint256"}],"name":"changeTaxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"excludeFromFees","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":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleLimited","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60806040526001600660156101000a81548160ff0219169083151502179055506001600660166101000a81548160ff021916908315150217905550600260095573a1456ebf25956bc3e1aa3c1987e03e1dbf8c70f7600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a157600080fd5b506040518060400160405280600481526020017f59525547000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f59525547000000000000000000000000000000000000000000000000000000008152506200012e620001226200050a60201b60201c565b6200051260201b60201c565b81600490805190602001906200014692919062000a97565b5080600590805190602001906200015f92919062000a97565b50505062000182336d14bddab3e51a57cff87a50000000620005d660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e457600080fd5b505afa158015620001f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021f919062000b5e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028257600080fd5b505afa15801562000297573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bd919062000b5e565b6040518363ffffffff1660e01b8152600401620002dc92919062000cb4565b602060405180830381600087803b158015620002f757600080fd5b505af11580156200030c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000332919062000b5e565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505062000ee0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000649576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006409062000d25565b60405180910390fd5b6200065d600083836200074560201b60201c565b806003600082825462000671919062000d97565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000725919062000d69565b60405180910390a3620007416000838362000a2060201b60201c565b5050565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620007ea5750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6200082c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008239062000d47565b60405180910390fd5b600660169054906101000a900460ff16156200090e576200085262000a2560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620008c657506200089762000a2560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000908576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ff9062000d03565b60405180910390fd5b62000a1b565b600660149054906101000a900460ff168015620009785750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1562000a1a5760075481620009988462000a4e60201b620008221760201c565b620009a4919062000d97565b11158015620009d7575060085481620009c88462000a4e60201b620008221760201c565b620009d4919062000d97565b10155b62000a19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a109062000ce1565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000aa59062000e32565b90600052602060002090601f01602090048101928262000ac9576000855562000b15565b82601f1062000ae457805160ff191683800117855562000b15565b8280016001018555821562000b15579182015b8281111562000b1457825182559160200191906001019062000af7565b5b50905062000b24919062000b28565b5090565b5b8082111562000b4357600081600090555060010162000b29565b5090565b60008151905062000b588162000ec6565b92915050565b60006020828403121562000b7157600080fd5b600062000b818482850162000b47565b91505092915050565b62000b958162000df4565b82525050565b600062000baa60068362000d86565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b600062000bec60168362000d86565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b600062000c2e601f8362000d86565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b600062000c70600b8362000d86565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b62000cae8162000e28565b82525050565b600060408201905062000ccb600083018562000b8a565b62000cda602083018462000b8a565b9392505050565b6000602082019050818103600083015262000cfc8162000b9b565b9050919050565b6000602082019050818103600083015262000d1e8162000bdd565b9050919050565b6000602082019050818103600083015262000d408162000c1f565b9050919050565b6000602082019050818103600083015262000d628162000c61565b9050919050565b600060208201905062000d80600083018462000ca3565b92915050565b600082825260208201905092915050565b600062000da48262000e28565b915062000db18362000e28565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000de95762000de862000e68565b5b828201905092915050565b600062000e018262000e08565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000e4b57607f821691505b6020821081141562000e625762000e6162000e97565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000ed18162000df4565b811462000edd57600080fd5b50565b61277b8062000ef06000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063bb85c6d1116100a2578063dd62ed3e11610071578063dd62ed3e14610521578063e0bf7fd114610551578063f2fde38b14610581578063fc06b26a1461059d576101da565b8063bb85c6d1146104c3578063c0246668146104df578063c4ae3168146104fb578063d07ea4e214610505576101da565b80638da5cb5b116100de5780638da5cb5b1461042757806395d89b4114610445578063a457c2d714610463578063a9059cbb14610493576101da565b8063715018a6146103e1578063860a32ec146103eb57806389f9a1d314610409576101da565b806323b872dd1161017c578063404e51291161014b578063404e51291461035b57806342966c681461037757806349bd5a5e1461039357806370a08231146103b1576101da565b806323b872dd146102c157806330275744146102f1578063313ce5671461030d578063395093511461032b576101da565b80631694505e116101b85780631694505e1461023757806316c021291461025557806318160ddd146102855780631ab99e12146102a3576101da565b806303417ed5146101df57806306fdde03146101e9578063095ea7b314610207575b600080fd5b6101e76105b9565b005b6101f16105ed565b6040516101fe919061221b565b60405180910390f35b610221600480360381019061021c9190611b2d565b61067f565b60405161022e91906121e5565b60405180910390f35b61023f6106a2565b60405161024c9190612200565b60405180910390f35b61026f600480360381019061026a9190611a3d565b6106c8565b60405161027c91906121e5565b60405180910390f35b61028d6106e8565b60405161029a919061241d565b60405180910390f35b6102ab6106f2565b6040516102b8919061241d565b60405180910390f35b6102db60048036038101906102d69190611aa2565b6106f8565b6040516102e891906121e5565b60405180910390f35b61030b60048036038101906103069190611b69565b610727565b005b61031561074c565b6040516103229190612438565b60405180910390f35b61034560048036038101906103409190611b2d565b610755565b60405161035291906121e5565b60405180910390f35b61037560048036038101906103709190611af1565b61078c565b005b610391600480360381019061038c9190611be1565b6107ef565b005b61039b6107fc565b6040516103a891906121ca565b60405180910390f35b6103cb60048036038101906103c69190611a3d565b610822565b6040516103d8919061241d565b60405180910390f35b6103e961086b565b005b6103f361087f565b60405161040091906121e5565b60405180910390f35b610411610892565b60405161041e919061241d565b60405180910390f35b61042f610898565b60405161043c91906121ca565b60405180910390f35b61044d6108c1565b60405161045a919061221b565b60405180910390f35b61047d60048036038101906104789190611b2d565b610953565b60405161048a91906121e5565b60405180910390f35b6104ad60048036038101906104a89190611b2d565b6109ca565b6040516104ba91906121e5565b60405180910390f35b6104dd60048036038101906104d89190611a3d565b6109ed565b005b6104f960048036038101906104f49190611af1565b610a39565b005b610503610a9c565b005b61051f600480360381019061051a9190611b92565b610ad0565b005b61053b60048036038101906105369190611a66565b610b05565b604051610548919061241d565b60405180910390f35b61056b60048036038101906105669190611a3d565b610b8c565b60405161057891906121e5565b60405180910390f35b61059b60048036038101906105969190611a3d565b610bac565b005b6105b760048036038101906105b29190611be1565b610c30565b005b6105c1610c42565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6060600480546105fc90612630565b80601f016020809104026020016040519081016040528092919081815260200182805461062890612630565b80156106755780601f1061064a57610100808354040283529160200191610675565b820191906000526020600020905b81548152906001019060200180831161065857829003601f168201915b5050505050905090565b60008061068a610cc0565b9050610697818585610cc8565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b600080610703610cc0565b9050610710858285610e93565b61071b858585610f1f565b60019150509392505050565b61072f610c42565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b600080610760610cc0565b90506107818185856107728589610b05565b61077c919061246f565b610cc8565b600191505092915050565b610794610c42565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6107f9338261124d565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610873610c42565b61087d600061141d565b565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108d090612630565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc90612630565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b60008061095e610cc0565b9050600061096c8286610b05565b9050838110156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a8906123dd565b60405180910390fd5b6109be8286868403610cc8565b60019250505092915050565b6000806109d5610cc0565b90506109e2818585610f1f565b600191505092915050565b6109f5610c42565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a41610c42565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610aa4610c42565b600660169054906101000a900460ff1615600660166101000a81548160ff021916908315150217905550565b610ad8610c42565b82600660146101000a81548160ff0219169083151502179055508160078190555080600881905550505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b610bb4610c42565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b9061227d565b60405180910390fd5b610c2d8161141d565b50565b610c38610c42565b8060098190555050565b610c4a610cc0565b73ffffffffffffffffffffffffffffffffffffffff16610c68610898565b73ffffffffffffffffffffffffffffffffffffffff1614610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb59061233d565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f906123bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f9061229d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e86919061241d565b60405180910390a3505050565b6000610e9f8484610b05565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f195781811015610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f02906122dd565b60405180910390fd5b610f188484848403610cc8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f869061239d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff69061223d565b60405180910390fd5b60008111611042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611039906122bd565b60405180910390fd5b6000600660159054906101000a900460ff16156111e457600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561111e57600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661111d5760646009548361111091906124f6565b61111a91906124c5565b90505b5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111e357600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111e2576064600954836111d591906124f6565b6111df91906124c5565b90505b5b5b600081111561123b57600081836111fb9190612550565b905061122a85600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114e1565b6112358585836114e1565b50611247565b6112468484846114e1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b49061235d565b60405180910390fd5b6112c98260008361175c565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611350576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113479061225d565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611404919061241d565b60405180910390a3611418836000846119f9565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611551576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115489061239d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b89061223d565b60405180910390fd5b6115cc83838361175c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a906122fd565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611743919061241d565b60405180910390a36117568484846119f9565b50505050565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156118005750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61183f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611836906123fd565b60405180910390fd5b600660169054906101000a900460ff161561190b5761185c610898565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806118c75750611898610898565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd9061237d565b60405180910390fd5b6119f4565b600660149054906101000a900460ff1680156119745750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156119f3576007548161198684610822565b611990919061246f565b111580156119b35750600854816119a684610822565b6119b0919061246f565b10155b6119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e99061231d565b60405180910390fd5b5b5b505050565b505050565b600081359050611a0d81612700565b92915050565b600081359050611a2281612717565b92915050565b600081359050611a378161272e565b92915050565b600060208284031215611a4f57600080fd5b6000611a5d848285016119fe565b91505092915050565b60008060408385031215611a7957600080fd5b6000611a87858286016119fe565b9250506020611a98858286016119fe565b9150509250929050565b600080600060608486031215611ab757600080fd5b6000611ac5868287016119fe565b9350506020611ad6868287016119fe565b9250506040611ae786828701611a28565b9150509250925092565b60008060408385031215611b0457600080fd5b6000611b12858286016119fe565b9250506020611b2385828601611a13565b9150509250929050565b60008060408385031215611b4057600080fd5b6000611b4e858286016119fe565b9250506020611b5f85828601611a28565b9150509250929050565b600060208284031215611b7b57600080fd5b6000611b8984828501611a13565b91505092915050565b600080600060608486031215611ba757600080fd5b6000611bb586828701611a13565b9350506020611bc686828701611a28565b9250506040611bd786828701611a28565b9150509250925092565b600060208284031215611bf357600080fd5b6000611c0184828501611a28565b91505092915050565b611c1381612584565b82525050565b611c2281612596565b82525050565b611c31816125d9565b82525050565b6000611c4282612453565b611c4c818561245e565b9350611c5c8185602086016125fd565b611c65816126ef565b840191505092915050565b6000611c7d60238361245e565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ce360228361245e565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d4960268361245e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611daf60228361245e565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e1560268361245e565b91507f45524332303a207472616e73666572206d75737420626520677265617465722060008301527f7468616e203000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e7b601d8361245e565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611ebb60268361245e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f2160068361245e565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611f6160208361245e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611fa160218361245e565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061200760168361245e565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b600061204760258361245e565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120ad60248361245e565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061211360258361245e565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612179600b8361245e565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b6121b5816125c2565b82525050565b6121c4816125cc565b82525050565b60006020820190506121df6000830184611c0a565b92915050565b60006020820190506121fa6000830184611c19565b92915050565b60006020820190506122156000830184611c28565b92915050565b600060208201905081810360008301526122358184611c37565b905092915050565b6000602082019050818103600083015261225681611c70565b9050919050565b6000602082019050818103600083015261227681611cd6565b9050919050565b6000602082019050818103600083015261229681611d3c565b9050919050565b600060208201905081810360008301526122b681611da2565b9050919050565b600060208201905081810360008301526122d681611e08565b9050919050565b600060208201905081810360008301526122f681611e6e565b9050919050565b6000602082019050818103600083015261231681611eae565b9050919050565b6000602082019050818103600083015261233681611f14565b9050919050565b6000602082019050818103600083015261235681611f54565b9050919050565b6000602082019050818103600083015261237681611f94565b9050919050565b6000602082019050818103600083015261239681611ffa565b9050919050565b600060208201905081810360008301526123b68161203a565b9050919050565b600060208201905081810360008301526123d6816120a0565b9050919050565b600060208201905081810360008301526123f681612106565b9050919050565b600060208201905081810360008301526124168161216c565b9050919050565b600060208201905061243260008301846121ac565b92915050565b600060208201905061244d60008301846121bb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061247a826125c2565b9150612485836125c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124ba576124b9612662565b5b828201905092915050565b60006124d0826125c2565b91506124db836125c2565b9250826124eb576124ea612691565b5b828204905092915050565b6000612501826125c2565b915061250c836125c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561254557612544612662565b5b828202905092915050565b600061255b826125c2565b9150612566836125c2565b92508282101561257957612578612662565b5b828203905092915050565b600061258f826125a2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006125e4826125eb565b9050919050565b60006125f6826125a2565b9050919050565b60005b8381101561261b578082015181840152602081019050612600565b8381111561262a576000848401525b50505050565b6000600282049050600182168061264857607f821691505b6020821081141561265c5761265b6126c0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61270981612584565b811461271457600080fd5b50565b61272081612596565b811461272b57600080fd5b50565b612737816125c2565b811461274257600080fd5b5056fea2646970667358221220349ca7c36849dd2f2e055f31196f87986436cb142eb6e6bc2ccfada57338cae164736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063bb85c6d1116100a2578063dd62ed3e11610071578063dd62ed3e14610521578063e0bf7fd114610551578063f2fde38b14610581578063fc06b26a1461059d576101da565b8063bb85c6d1146104c3578063c0246668146104df578063c4ae3168146104fb578063d07ea4e214610505576101da565b80638da5cb5b116100de5780638da5cb5b1461042757806395d89b4114610445578063a457c2d714610463578063a9059cbb14610493576101da565b8063715018a6146103e1578063860a32ec146103eb57806389f9a1d314610409576101da565b806323b872dd1161017c578063404e51291161014b578063404e51291461035b57806342966c681461037757806349bd5a5e1461039357806370a08231146103b1576101da565b806323b872dd146102c157806330275744146102f1578063313ce5671461030d578063395093511461032b576101da565b80631694505e116101b85780631694505e1461023757806316c021291461025557806318160ddd146102855780631ab99e12146102a3576101da565b806303417ed5146101df57806306fdde03146101e9578063095ea7b314610207575b600080fd5b6101e76105b9565b005b6101f16105ed565b6040516101fe919061221b565b60405180910390f35b610221600480360381019061021c9190611b2d565b61067f565b60405161022e91906121e5565b60405180910390f35b61023f6106a2565b60405161024c9190612200565b60405180910390f35b61026f600480360381019061026a9190611a3d565b6106c8565b60405161027c91906121e5565b60405180910390f35b61028d6106e8565b60405161029a919061241d565b60405180910390f35b6102ab6106f2565b6040516102b8919061241d565b60405180910390f35b6102db60048036038101906102d69190611aa2565b6106f8565b6040516102e891906121e5565b60405180910390f35b61030b60048036038101906103069190611b69565b610727565b005b61031561074c565b6040516103229190612438565b60405180910390f35b61034560048036038101906103409190611b2d565b610755565b60405161035291906121e5565b60405180910390f35b61037560048036038101906103709190611af1565b61078c565b005b610391600480360381019061038c9190611be1565b6107ef565b005b61039b6107fc565b6040516103a891906121ca565b60405180910390f35b6103cb60048036038101906103c69190611a3d565b610822565b6040516103d8919061241d565b60405180910390f35b6103e961086b565b005b6103f361087f565b60405161040091906121e5565b60405180910390f35b610411610892565b60405161041e919061241d565b60405180910390f35b61042f610898565b60405161043c91906121ca565b60405180910390f35b61044d6108c1565b60405161045a919061221b565b60405180910390f35b61047d60048036038101906104789190611b2d565b610953565b60405161048a91906121e5565b60405180910390f35b6104ad60048036038101906104a89190611b2d565b6109ca565b6040516104ba91906121e5565b60405180910390f35b6104dd60048036038101906104d89190611a3d565b6109ed565b005b6104f960048036038101906104f49190611af1565b610a39565b005b610503610a9c565b005b61051f600480360381019061051a9190611b92565b610ad0565b005b61053b60048036038101906105369190611a66565b610b05565b604051610548919061241d565b60405180910390f35b61056b60048036038101906105669190611a3d565b610b8c565b60405161057891906121e5565b60405180910390f35b61059b60048036038101906105969190611a3d565b610bac565b005b6105b760048036038101906105b29190611be1565b610c30565b005b6105c1610c42565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6060600480546105fc90612630565b80601f016020809104026020016040519081016040528092919081815260200182805461062890612630565b80156106755780601f1061064a57610100808354040283529160200191610675565b820191906000526020600020905b81548152906001019060200180831161065857829003601f168201915b5050505050905090565b60008061068a610cc0565b9050610697818585610cc8565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b600080610703610cc0565b9050610710858285610e93565b61071b858585610f1f565b60019150509392505050565b61072f610c42565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b600080610760610cc0565b90506107818185856107728589610b05565b61077c919061246f565b610cc8565b600191505092915050565b610794610c42565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6107f9338261124d565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610873610c42565b61087d600061141d565b565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108d090612630565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc90612630565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b60008061095e610cc0565b9050600061096c8286610b05565b9050838110156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a8906123dd565b60405180910390fd5b6109be8286868403610cc8565b60019250505092915050565b6000806109d5610cc0565b90506109e2818585610f1f565b600191505092915050565b6109f5610c42565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a41610c42565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610aa4610c42565b600660169054906101000a900460ff1615600660166101000a81548160ff021916908315150217905550565b610ad8610c42565b82600660146101000a81548160ff0219169083151502179055508160078190555080600881905550505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b610bb4610c42565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b9061227d565b60405180910390fd5b610c2d8161141d565b50565b610c38610c42565b8060098190555050565b610c4a610cc0565b73ffffffffffffffffffffffffffffffffffffffff16610c68610898565b73ffffffffffffffffffffffffffffffffffffffff1614610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb59061233d565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f906123bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f9061229d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e86919061241d565b60405180910390a3505050565b6000610e9f8484610b05565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f195781811015610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f02906122dd565b60405180910390fd5b610f188484848403610cc8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f869061239d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff69061223d565b60405180910390fd5b60008111611042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611039906122bd565b60405180910390fd5b6000600660159054906101000a900460ff16156111e457600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561111e57600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661111d5760646009548361111091906124f6565b61111a91906124c5565b90505b5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111e357600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111e2576064600954836111d591906124f6565b6111df91906124c5565b90505b5b5b600081111561123b57600081836111fb9190612550565b905061122a85600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114e1565b6112358585836114e1565b50611247565b6112468484846114e1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b49061235d565b60405180910390fd5b6112c98260008361175c565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611350576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113479061225d565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611404919061241d565b60405180910390a3611418836000846119f9565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611551576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115489061239d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b89061223d565b60405180910390fd5b6115cc83838361175c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a906122fd565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611743919061241d565b60405180910390a36117568484846119f9565b50505050565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156118005750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61183f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611836906123fd565b60405180910390fd5b600660169054906101000a900460ff161561190b5761185c610898565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806118c75750611898610898565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd9061237d565b60405180910390fd5b6119f4565b600660149054906101000a900460ff1680156119745750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156119f3576007548161198684610822565b611990919061246f565b111580156119b35750600854816119a684610822565b6119b0919061246f565b10155b6119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e99061231d565b60405180910390fd5b5b5b505050565b505050565b600081359050611a0d81612700565b92915050565b600081359050611a2281612717565b92915050565b600081359050611a378161272e565b92915050565b600060208284031215611a4f57600080fd5b6000611a5d848285016119fe565b91505092915050565b60008060408385031215611a7957600080fd5b6000611a87858286016119fe565b9250506020611a98858286016119fe565b9150509250929050565b600080600060608486031215611ab757600080fd5b6000611ac5868287016119fe565b9350506020611ad6868287016119fe565b9250506040611ae786828701611a28565b9150509250925092565b60008060408385031215611b0457600080fd5b6000611b12858286016119fe565b9250506020611b2385828601611a13565b9150509250929050565b60008060408385031215611b4057600080fd5b6000611b4e858286016119fe565b9250506020611b5f85828601611a28565b9150509250929050565b600060208284031215611b7b57600080fd5b6000611b8984828501611a13565b91505092915050565b600080600060608486031215611ba757600080fd5b6000611bb586828701611a13565b9350506020611bc686828701611a28565b9250506040611bd786828701611a28565b9150509250925092565b600060208284031215611bf357600080fd5b6000611c0184828501611a28565b91505092915050565b611c1381612584565b82525050565b611c2281612596565b82525050565b611c31816125d9565b82525050565b6000611c4282612453565b611c4c818561245e565b9350611c5c8185602086016125fd565b611c65816126ef565b840191505092915050565b6000611c7d60238361245e565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ce360228361245e565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d4960268361245e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611daf60228361245e565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e1560268361245e565b91507f45524332303a207472616e73666572206d75737420626520677265617465722060008301527f7468616e203000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e7b601d8361245e565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611ebb60268361245e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f2160068361245e565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611f6160208361245e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611fa160218361245e565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061200760168361245e565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b600061204760258361245e565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120ad60248361245e565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061211360258361245e565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612179600b8361245e565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b6121b5816125c2565b82525050565b6121c4816125cc565b82525050565b60006020820190506121df6000830184611c0a565b92915050565b60006020820190506121fa6000830184611c19565b92915050565b60006020820190506122156000830184611c28565b92915050565b600060208201905081810360008301526122358184611c37565b905092915050565b6000602082019050818103600083015261225681611c70565b9050919050565b6000602082019050818103600083015261227681611cd6565b9050919050565b6000602082019050818103600083015261229681611d3c565b9050919050565b600060208201905081810360008301526122b681611da2565b9050919050565b600060208201905081810360008301526122d681611e08565b9050919050565b600060208201905081810360008301526122f681611e6e565b9050919050565b6000602082019050818103600083015261231681611eae565b9050919050565b6000602082019050818103600083015261233681611f14565b9050919050565b6000602082019050818103600083015261235681611f54565b9050919050565b6000602082019050818103600083015261237681611f94565b9050919050565b6000602082019050818103600083015261239681611ffa565b9050919050565b600060208201905081810360008301526123b68161203a565b9050919050565b600060208201905081810360008301526123d6816120a0565b9050919050565b600060208201905081810360008301526123f681612106565b9050919050565b600060208201905081810360008301526124168161216c565b9050919050565b600060208201905061243260008301846121ac565b92915050565b600060208201905061244d60008301846121bb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061247a826125c2565b9150612485836125c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124ba576124b9612662565b5b828201905092915050565b60006124d0826125c2565b91506124db836125c2565b9250826124eb576124ea612691565b5b828204905092915050565b6000612501826125c2565b915061250c836125c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561254557612544612662565b5b828202905092915050565b600061255b826125c2565b9150612566836125c2565b92508282101561257957612578612662565b5b828203905092915050565b600061258f826125a2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006125e4826125eb565b9050919050565b60006125f6826125a2565b9050919050565b60005b8381101561261b578082015181840152602081019050612600565b8381111561262a576000848401525b50505050565b6000600282049050600182168061264857607f821691505b6020821081141561265c5761265b6126c0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61270981612584565b811461271457600080fd5b50565b61272081612596565b811461272b57600080fd5b50565b612737816125c2565b811461274257600080fd5b5056fea2646970667358221220349ca7c36849dd2f2e055f31196f87986436cb142eb6e6bc2ccfada57338cae164736f6c63430008000033

Deployed Bytecode Sourcemap

22588:4191:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26247:81;;;:::i;:::-;;7473:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9824:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22632:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23022:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8593:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22799:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10605:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26143:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8435:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11309:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26337:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25971:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22987:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8764:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21708:103;;;:::i;:::-;;22680:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22761:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21060:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7692:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12050:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9097:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25511:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25795:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26060:74;;;:::i;:::-;;26506:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9353:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23071:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21966:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25671:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26247:81;20946:13;:11;:13::i;:::-;26313:7:::1;;;;;;;;;;;26312:8;26302:7;;:18;;;;;;;;;;;;;;;;;;26247:81::o:0;7473:100::-;7527:13;7560:5;7553:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7473:100;:::o;9824:201::-;9907:4;9924:13;9940:12;:10;:12::i;:::-;9924:28;;9963:32;9972:5;9979:7;9988:6;9963:8;:32::i;:::-;10013:4;10006:11;;;9824:201;;;;:::o;22632:41::-;;;;;;;;;;;;;:::o;23022:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;8593:108::-;8654:7;8681:12;;8674:19;;8593:108;:::o;22799:31::-;;;;:::o;10605:295::-;10736:4;10753:15;10771:12;:10;:12::i;:::-;10753:30;;10794:38;10810:4;10816:7;10825:6;10794:15;:38::i;:::-;10843:27;10853:4;10859:2;10863:6;10843:9;:27::i;:::-;10888:4;10881:11;;;10605:295;;;;;:::o;26143:95::-;20946:13;:11;:13::i;:::-;26223:7:::1;26208:12;;:22;;;;;;;;;;;;;;;;;;26143:95:::0;:::o;8435:93::-;8493:5;8518:2;8511:9;;8435:93;:::o;11309:238::-;11397:4;11414:13;11430:12;:10;:12::i;:::-;11414:28;;11453:64;11462:5;11469:7;11506:10;11478:25;11488:5;11495:7;11478:9;:25::i;:::-;:38;;;;:::i;:::-;11453:8;:64::i;:::-;11535:4;11528:11;;;11309:238;;;;:::o;26337:160::-;20946:13;:11;:13::i;:::-;26474:15:::1;26451:10;:20;26462:8;26451:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;26337:160:::0;;:::o;25971:81::-;26020:24;26026:10;26038:5;26020;:24::i;:::-;25971:81;:::o;22987:28::-;;;;;;;;;;;;;:::o;8764:127::-;8838:7;8865:9;:18;8875:7;8865:18;;;;;;;;;;;;;;;;8858:25;;8764:127;;;:::o;21708:103::-;20946:13;:11;:13::i;:::-;21773:30:::1;21800:1;21773:18;:30::i;:::-;21708:103::o:0;22680:19::-;;;;;;;;;;;;;:::o;22761:31::-;;;;:::o;21060:87::-;21106:7;21133:6;;;;;;;;;;;21126:13;;21060:87;:::o;7692:104::-;7748:13;7781:7;7774:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7692:104;:::o;12050:436::-;12143:4;12160:13;12176:12;:10;:12::i;:::-;12160:28;;12199:24;12226:25;12236:5;12243:7;12226:9;:25::i;:::-;12199:52;;12290:15;12270:16;:35;;12262:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12383:60;12392:5;12399:7;12427:15;12408:16;:34;12383:8;:60::i;:::-;12474:4;12467:11;;;;12050:436;;;;:::o;9097:193::-;9176:4;9193:13;9209:12;:10;:12::i;:::-;9193:28;;9232;9242:5;9249:2;9253:6;9232:9;:28::i;:::-;9278:4;9271:11;;;9097:193;;;;:::o;25511:151::-;20946:13;:11;:13::i;:::-;25635:19:::1;25617:15;;:37;;;;;;;;;;;;;;;;;;25511:151:::0;:::o;25795:167::-;20946:13;:11;:13::i;:::-;25943:11:::1;25911:19;:29;25931:8;25911:29;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;25795:167:::0;;:::o;26060:74::-;20946:13;:11;:13::i;:::-;26121:5:::1;;;;;;;;;;;26120:6;26112:5;;:14;;;;;;;;;;;;;;;;;;26060:74::o:0;26506:270::-;20946:13;:11;:13::i;:::-;26666:8:::1;26656:7;;:18;;;;;;;;;;;;;;;;;;26704:17;26685:16;:36;;;;26751:17;26732:16;:36;;;;26506:270:::0;;;:::o;9353:151::-;9442:7;9469:11;:18;9481:5;9469:18;;;;;;;;;;;;;;;:27;9488:7;9469:27;;;;;;;;;;;;;;;;9462:34;;9353:151;;;;:::o;23071:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;21966:201::-;20946:13;:11;:13::i;:::-;22075:1:::1;22055:22;;:8;:22;;;;22047:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22131:28;22150:8;22131:18;:28::i;:::-;21966:201:::0;:::o;25671:115::-;20946:13;:11;:13::i;:::-;25764:14:::1;25751:10;:27;;;;25671:115:::0;:::o;21225:132::-;21300:12;:10;:12::i;:::-;21289:23;;:7;:5;:7::i;:::-;:23;;;21281:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21225:132::o;5115:98::-;5168:7;5195:10;5188:17;;5115:98;:::o;16077:380::-;16230:1;16213:19;;:5;:19;;;;16205:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16311:1;16292:21;;:7;:21;;;;16284:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16395:6;16365:11;:18;16377:5;16365:18;;;;;;;;;;;;;;;:27;16384:7;16365:27;;;;;;;;;;;;;;;:36;;;;16433:7;16417:32;;16426:5;16417:32;;;16442:6;16417:32;;;;;;:::i;:::-;;;;;;;;16077:380;;;:::o;16748:453::-;16883:24;16910:25;16920:5;16927:7;16910:9;:25::i;:::-;16883:52;;16970:17;16950:16;:37;16946:248;;17032:6;17012:16;:26;;17004:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17116:51;17125:5;17132:7;17160:6;17141:16;:25;17116:8;:51::i;:::-;16946:248;16748:453;;;;:::o;23777:1098::-;23925:1;23909:18;;:4;:18;;;;23901:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24002:1;23988:16;;:2;:16;;;;23980:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;24072:1;24063:6;:10;24055:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;24130:17;24162:12;;;;;;;;;;;24158:413;;;24203:13;;;;;;;;;;;24195:21;;:4;:21;;;24191:178;;;24268:19;:23;24288:2;24268:23;;;;;;;;;;;;;;;;;;;;;;;;;24263:90;;24350:3;24336:10;;24327:6;:19;;;;:::i;:::-;24326:27;;;;:::i;:::-;24314:39;;24263:90;24191:178;24418:13;;;;;;;;;;;24412:19;;:2;:19;;;24408:152;;;24457:19;:25;24477:4;24457:25;;;;;;;;;;;;;;;;;;;;;;;;;24452:92;;24541:3;24527:10;;24518:6;:19;;;;:::i;:::-;24517:27;;;;:::i;:::-;24505:39;;24452:92;24408:152;24158:413;24617:1;24605:9;:13;24601:267;;;24635:18;24665:9;24656:6;:18;;;;:::i;:::-;24635:39;;24689:49;24705:4;24711:15;;;;;;;;;;;24728:9;24689:15;:49::i;:::-;24753:37;24769:4;24775:2;24779:10;24753:15;:37::i;:::-;24601:267;;;;24823:33;24839:4;24845:2;24849:6;24823:15;:33::i;:::-;24601:267;23777:1098;;;;:::o;14964:675::-;15067:1;15048:21;;:7;:21;;;;15040:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15120:49;15141:7;15158:1;15162:6;15120:20;:49::i;:::-;15182:22;15207:9;:18;15217:7;15207:18;;;;;;;;;;;;;;;;15182:43;;15262:6;15244:14;:24;;15236:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15381:6;15364:14;:23;15343:9;:18;15353:7;15343:18;;;;;;;;;;;;;;;:44;;;;15498:6;15482:12;;:22;;;;;;;;;;;15559:1;15533:37;;15542:7;15533:37;;;15563:6;15533:37;;;;;;:::i;:::-;;;;;;;;15583:48;15603:7;15620:1;15624:6;15583:19;:48::i;:::-;14964:675;;;:::o;22327:191::-;22401:16;22420:6;;;;;;;;;;;22401:25;;22446:8;22437:6;;:17;;;;;;;;;;;;;;;;;;22501:8;22470:40;;22491:8;22470:40;;;;;;;;;;;;22327:191;;:::o;12956:840::-;13103:1;13087:18;;:4;:18;;;;13079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13180:1;13166:16;;:2;:16;;;;13158:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;13235:38;13256:4;13262:2;13266:6;13235:20;:38::i;:::-;13286:19;13308:9;:15;13318:4;13308:15;;;;;;;;;;;;;;;;13286:37;;13357:6;13342:11;:21;;13334:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;13474:6;13460:11;:20;13442:9;:15;13452:4;13442:15;;;;;;;;;;;;;;;:38;;;;13677:6;13660:9;:13;13670:2;13660:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13727:2;13712:26;;13721:4;13712:26;;;13731:6;13712:26;;;;;;:::i;:::-;;;;;;;;13751:37;13771:4;13777:2;13781:6;13751:19;:37::i;:::-;12956:840;;;;:::o;24884:618::-;25036:10;:14;25047:2;25036:14;;;;;;;;;;;;;;;;;;;;;;;;;25035:15;:36;;;;;25055:10;:16;25066:4;25055:16;;;;;;;;;;;;;;;;;;;;;;;;;25054:17;25035:36;25027:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;25107:5;;;;;;;;;;;25103:126;;;25145:7;:5;:7::i;:::-;25137:15;;:4;:15;;;:32;;;;25162:7;:5;:7::i;:::-;25156:13;;:2;:13;;;25137:32;25129:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;25211:7;;25103:126;25245:7;;;;;;;;;;;:32;;;;;25264:13;;;;;;;;;;;25256:21;;:4;:21;;;25245:32;25241:254;;;25352:16;;25342:6;25320:19;25336:2;25320:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:121;;;;;25425:16;;25415:6;25393:19;25409:2;25393:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;25320:121;25294:189;;;;;;;;;;;;:::i;:::-;;;;;;;;;25241:254;24884:618;;;;:::o;18530:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;;;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;;;;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:401::-;;;1797:2;1785:9;1776:7;1772:23;1768:32;1765:2;;;1813:1;1810;1803:12;1765:2;1856:1;1881:53;1926:7;1917:6;1906:9;1902:22;1881:53;:::i;:::-;1871:63;;1827:117;1983:2;2009:50;2051:7;2042:6;2031:9;2027:22;2009:50;:::i;:::-;1999:60;;1954:115;1755:321;;;;;:::o;2082:407::-;;;2207:2;2195:9;2186:7;2182:23;2178:32;2175:2;;;2223:1;2220;2213:12;2175:2;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2393:2;2419:53;2464:7;2455:6;2444:9;2440:22;2419:53;:::i;:::-;2409:63;;2364:118;2165:324;;;;;:::o;2495:256::-;;2600:2;2588:9;2579:7;2575:23;2571:32;2568:2;;;2616:1;2613;2606:12;2568:2;2659:1;2684:50;2726:7;2717:6;2706:9;2702:22;2684:50;:::i;:::-;2674:60;;2630:114;2558:193;;;;:::o;2757:546::-;;;;2896:2;2884:9;2875:7;2871:23;2867:32;2864:2;;;2912:1;2909;2902:12;2864:2;2955:1;2980:50;3022:7;3013:6;3002:9;2998:22;2980:50;:::i;:::-;2970:60;;2926:114;3079:2;3105:53;3150:7;3141:6;3130:9;3126:22;3105:53;:::i;:::-;3095:63;;3050:118;3207:2;3233:53;3278:7;3269:6;3258:9;3254:22;3233:53;:::i;:::-;3223:63;;3178:118;2854:449;;;;;:::o;3309:262::-;;3417:2;3405:9;3396:7;3392:23;3388:32;3385:2;;;3433:1;3430;3423:12;3385:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3375:196;;;;:::o;3577:118::-;3664:24;3682:5;3664:24;:::i;:::-;3659:3;3652:37;3642:53;;:::o;3701:109::-;3782:21;3797:5;3782:21;:::i;:::-;3777:3;3770:34;3760:50;;:::o;3816:185::-;3930:64;3988:5;3930:64;:::i;:::-;3925:3;3918:77;3908:93;;:::o;4007:364::-;;4123:39;4156:5;4123:39;:::i;:::-;4178:71;4242:6;4237:3;4178:71;:::i;:::-;4171:78;;4258:52;4303:6;4298:3;4291:4;4284:5;4280:16;4258:52;:::i;:::-;4335:29;4357:6;4335:29;:::i;:::-;4330:3;4326:39;4319:46;;4099:272;;;;;:::o;4377:367::-;;4540:67;4604:2;4599:3;4540:67;:::i;:::-;4533:74;;4637:34;4633:1;4628:3;4624:11;4617:55;4703:5;4698:2;4693:3;4689:12;4682:27;4735:2;4730:3;4726:12;4719:19;;4523:221;;;:::o;4750:366::-;;4913:67;4977:2;4972:3;4913:67;:::i;:::-;4906:74;;5010:34;5006:1;5001:3;4997:11;4990:55;5076:4;5071:2;5066:3;5062:12;5055:26;5107:2;5102:3;5098:12;5091:19;;4896:220;;;:::o;5122:370::-;;5285:67;5349:2;5344:3;5285:67;:::i;:::-;5278:74;;5382:34;5378:1;5373:3;5369:11;5362:55;5448:8;5443:2;5438:3;5434:12;5427:30;5483:2;5478:3;5474:12;5467:19;;5268:224;;;:::o;5498:366::-;;5661:67;5725:2;5720:3;5661:67;:::i;:::-;5654:74;;5758:34;5754:1;5749:3;5745:11;5738:55;5824:4;5819:2;5814:3;5810:12;5803:26;5855:2;5850:3;5846:12;5839:19;;5644:220;;;:::o;5870:370::-;;6033:67;6097:2;6092:3;6033:67;:::i;:::-;6026:74;;6130:34;6126:1;6121:3;6117:11;6110:55;6196:8;6191:2;6186:3;6182:12;6175:30;6231:2;6226:3;6222:12;6215:19;;6016:224;;;:::o;6246:327::-;;6409:67;6473:2;6468:3;6409:67;:::i;:::-;6402:74;;6506:31;6502:1;6497:3;6493:11;6486:52;6564:2;6559:3;6555:12;6548:19;;6392:181;;;:::o;6579:370::-;;6742:67;6806:2;6801:3;6742:67;:::i;:::-;6735:74;;6839:34;6835:1;6830:3;6826:11;6819:55;6905:8;6900:2;6895:3;6891:12;6884:30;6940:2;6935:3;6931:12;6924:19;;6725:224;;;:::o;6955:303::-;;7118:66;7182:1;7177:3;7118:66;:::i;:::-;7111:73;;7214:8;7210:1;7205:3;7201:11;7194:29;7249:2;7244:3;7240:12;7233:19;;7101:157;;;:::o;7264:330::-;;7427:67;7491:2;7486:3;7427:67;:::i;:::-;7420:74;;7524:34;7520:1;7515:3;7511:11;7504:55;7585:2;7580:3;7576:12;7569:19;;7410:184;;;:::o;7600:365::-;;7763:67;7827:2;7822:3;7763:67;:::i;:::-;7756:74;;7860:34;7856:1;7851:3;7847:11;7840:55;7926:3;7921:2;7916:3;7912:12;7905:25;7956:2;7951:3;7947:12;7940:19;;7746:219;;;:::o;7971:320::-;;8134:67;8198:2;8193:3;8134:67;:::i;:::-;8127:74;;8231:24;8227:1;8222:3;8218:11;8211:45;8282:2;8277:3;8273:12;8266:19;;8117:174;;;:::o;8297:369::-;;8460:67;8524:2;8519:3;8460:67;:::i;:::-;8453:74;;8557:34;8553:1;8548:3;8544:11;8537:55;8623:7;8618:2;8613:3;8609:12;8602:29;8657:2;8652:3;8648:12;8641:19;;8443:223;;;:::o;8672:368::-;;8835:67;8899:2;8894:3;8835:67;:::i;:::-;8828:74;;8932:34;8928:1;8923:3;8919:11;8912:55;8998:6;8993:2;8988:3;8984:12;8977:28;9031:2;9026:3;9022:12;9015:19;;8818:222;;;:::o;9046:369::-;;9209:67;9273:2;9268:3;9209:67;:::i;:::-;9202:74;;9306:34;9302:1;9297:3;9293:11;9286:55;9372:7;9367:2;9362:3;9358:12;9351:29;9406:2;9401:3;9397:12;9390:19;;9192:223;;;:::o;9421:309::-;;9584:67;9648:2;9643:3;9584:67;:::i;:::-;9577:74;;9681:13;9677:1;9672:3;9668:11;9661:34;9721:2;9716:3;9712:12;9705:19;;9567:163;;;:::o;9736:118::-;9823:24;9841:5;9823:24;:::i;:::-;9818:3;9811:37;9801:53;;:::o;9860:112::-;9943:22;9959:5;9943:22;:::i;:::-;9938:3;9931:35;9921:51;;:::o;9978:222::-;;10109:2;10098:9;10094:18;10086:26;;10122:71;10190:1;10179:9;10175:17;10166:6;10122:71;:::i;:::-;10076:124;;;;:::o;10206:210::-;;10331:2;10320:9;10316:18;10308:26;;10344:65;10406:1;10395:9;10391:17;10382:6;10344:65;:::i;:::-;10298:118;;;;:::o;10422:276::-;;10580:2;10569:9;10565:18;10557:26;;10593:98;10688:1;10677:9;10673:17;10664:6;10593:98;:::i;:::-;10547:151;;;;:::o;10704:313::-;;10855:2;10844:9;10840:18;10832:26;;10904:9;10898:4;10894:20;10890:1;10879:9;10875:17;10868:47;10932:78;11005:4;10996:6;10932:78;:::i;:::-;10924:86;;10822:195;;;;:::o;11023:419::-;;11227:2;11216:9;11212:18;11204:26;;11276:9;11270:4;11266:20;11262:1;11251:9;11247:17;11240:47;11304:131;11430:4;11304:131;:::i;:::-;11296:139;;11194:248;;;:::o;11448:419::-;;11652:2;11641:9;11637:18;11629:26;;11701:9;11695:4;11691:20;11687:1;11676:9;11672:17;11665:47;11729:131;11855:4;11729:131;:::i;:::-;11721:139;;11619:248;;;:::o;11873:419::-;;12077:2;12066:9;12062:18;12054:26;;12126:9;12120:4;12116:20;12112:1;12101:9;12097:17;12090:47;12154:131;12280:4;12154:131;:::i;:::-;12146:139;;12044:248;;;:::o;12298:419::-;;12502:2;12491:9;12487:18;12479:26;;12551:9;12545:4;12541:20;12537:1;12526:9;12522:17;12515:47;12579:131;12705:4;12579:131;:::i;:::-;12571:139;;12469:248;;;:::o;12723:419::-;;12927:2;12916:9;12912:18;12904:26;;12976:9;12970:4;12966:20;12962:1;12951:9;12947:17;12940:47;13004:131;13130:4;13004:131;:::i;:::-;12996:139;;12894:248;;;:::o;13148:419::-;;13352:2;13341:9;13337:18;13329:26;;13401:9;13395:4;13391:20;13387:1;13376:9;13372:17;13365:47;13429:131;13555:4;13429:131;:::i;:::-;13421:139;;13319:248;;;:::o;13573:419::-;;13777:2;13766:9;13762:18;13754:26;;13826:9;13820:4;13816:20;13812:1;13801:9;13797:17;13790:47;13854:131;13980:4;13854:131;:::i;:::-;13846:139;;13744:248;;;:::o;13998:419::-;;14202:2;14191:9;14187:18;14179:26;;14251:9;14245:4;14241:20;14237:1;14226:9;14222:17;14215:47;14279:131;14405:4;14279:131;:::i;:::-;14271:139;;14169:248;;;:::o;14423:419::-;;14627:2;14616:9;14612:18;14604:26;;14676:9;14670:4;14666:20;14662:1;14651:9;14647:17;14640:47;14704:131;14830:4;14704:131;:::i;:::-;14696:139;;14594:248;;;:::o;14848:419::-;;15052:2;15041:9;15037:18;15029:26;;15101:9;15095:4;15091:20;15087:1;15076:9;15072:17;15065:47;15129:131;15255:4;15129:131;:::i;:::-;15121:139;;15019:248;;;:::o;15273:419::-;;15477:2;15466:9;15462:18;15454:26;;15526:9;15520:4;15516:20;15512:1;15501:9;15497:17;15490:47;15554:131;15680:4;15554:131;:::i;:::-;15546:139;;15444:248;;;:::o;15698:419::-;;15902:2;15891:9;15887:18;15879:26;;15951:9;15945:4;15941:20;15937:1;15926:9;15922:17;15915:47;15979:131;16105:4;15979:131;:::i;:::-;15971:139;;15869:248;;;:::o;16123:419::-;;16327:2;16316:9;16312:18;16304:26;;16376:9;16370:4;16366:20;16362:1;16351:9;16347:17;16340:47;16404:131;16530:4;16404:131;:::i;:::-;16396:139;;16294:248;;;:::o;16548:419::-;;16752:2;16741:9;16737:18;16729:26;;16801:9;16795:4;16791:20;16787:1;16776:9;16772:17;16765:47;16829:131;16955:4;16829:131;:::i;:::-;16821:139;;16719:248;;;:::o;16973:419::-;;17177:2;17166:9;17162:18;17154:26;;17226:9;17220:4;17216:20;17212:1;17201:9;17197:17;17190:47;17254:131;17380:4;17254:131;:::i;:::-;17246:139;;17144:248;;;:::o;17398:222::-;;17529:2;17518:9;17514:18;17506:26;;17542:71;17610:1;17599:9;17595:17;17586:6;17542:71;:::i;:::-;17496:124;;;;:::o;17626:214::-;;17753:2;17742:9;17738:18;17730:26;;17766:67;17830:1;17819:9;17815:17;17806:6;17766:67;:::i;:::-;17720:120;;;;:::o;17846:99::-;;17932:5;17926:12;17916:22;;17905:40;;;:::o;17951:169::-;;18069:6;18064:3;18057:19;18109:4;18104:3;18100:14;18085:29;;18047:73;;;;:::o;18126:305::-;;18185:20;18203:1;18185:20;:::i;:::-;18180:25;;18219:20;18237:1;18219:20;:::i;:::-;18214:25;;18373:1;18305:66;18301:74;18298:1;18295:81;18292:2;;;18379:18;;:::i;:::-;18292:2;18423:1;18420;18416:9;18409:16;;18170:261;;;;:::o;18437:185::-;;18494:20;18512:1;18494:20;:::i;:::-;18489:25;;18528:20;18546:1;18528:20;:::i;:::-;18523:25;;18567:1;18557:2;;18572:18;;:::i;:::-;18557:2;18614:1;18611;18607:9;18602:14;;18479:143;;;;:::o;18628:348::-;;18691:20;18709:1;18691:20;:::i;:::-;18686:25;;18725:20;18743:1;18725:20;:::i;:::-;18720:25;;18913:1;18845:66;18841:74;18838:1;18835:81;18830:1;18823:9;18816:17;18812:105;18809:2;;;18920:18;;:::i;:::-;18809:2;18968:1;18965;18961:9;18950:20;;18676:300;;;;:::o;18982:191::-;;19042:20;19060:1;19042:20;:::i;:::-;19037:25;;19076:20;19094:1;19076:20;:::i;:::-;19071:25;;19115:1;19112;19109:8;19106:2;;;19120:18;;:::i;:::-;19106:2;19165:1;19162;19158:9;19150:17;;19027:146;;;;:::o;19179:96::-;;19245:24;19263:5;19245:24;:::i;:::-;19234:35;;19224:51;;;:::o;19281:90::-;;19358:5;19351:13;19344:21;19333:32;;19323:48;;;:::o;19377:126::-;;19454:42;19447:5;19443:54;19432:65;;19422:81;;;:::o;19509:77::-;;19575:5;19564:16;;19554:32;;;:::o;19592:86::-;;19667:4;19660:5;19656:16;19645:27;;19635:43;;;:::o;19684:180::-;;19794:64;19852:5;19794:64;:::i;:::-;19781:77;;19771:93;;;:::o;19870:140::-;;19980:24;19998:5;19980:24;:::i;:::-;19967:37;;19957:53;;;:::o;20016:307::-;20084:1;20094:113;20108:6;20105:1;20102:13;20094:113;;;20193:1;20188:3;20184:11;20178:18;20174:1;20169:3;20165:11;20158:39;20130:2;20127:1;20123:10;20118:15;;20094:113;;;20225:6;20222:1;20219:13;20216:2;;;20305:1;20296:6;20291:3;20287:16;20280:27;20216:2;20065:258;;;;:::o;20329:320::-;;20410:1;20404:4;20400:12;20390:22;;20457:1;20451:4;20447:12;20478:18;20468:2;;20534:4;20526:6;20522:17;20512:27;;20468:2;20596;20588:6;20585:14;20565:18;20562:38;20559:2;;;20615:18;;:::i;:::-;20559:2;20380:269;;;;:::o;20655:180::-;20703:77;20700:1;20693:88;20800:4;20797:1;20790:15;20824:4;20821:1;20814:15;20841:180;20889:77;20886:1;20879:88;20986:4;20983:1;20976:15;21010:4;21007:1;21000:15;21027:180;21075:77;21072:1;21065:88;21172:4;21169:1;21162:15;21196:4;21193:1;21186:15;21213:102;;21305:2;21301:7;21296:2;21289:5;21285:14;21281:28;21271:38;;21261:54;;;:::o;21321:122::-;21394:24;21412:5;21394:24;:::i;:::-;21387:5;21384:35;21374:2;;21433:1;21430;21423:12;21374:2;21364:79;:::o;21449:116::-;21519:21;21534:5;21519:21;:::i;:::-;21512:5;21509:32;21499:2;;21555:1;21552;21545:12;21499:2;21489:76;:::o;21571:122::-;21644:24;21662:5;21644:24;:::i;:::-;21637:5;21634:35;21624:2;;21683:1;21680;21673:12;21624:2;21614:79;:::o

Swarm Source

ipfs://349ca7c36849dd2f2e055f31196f87986436cb142eb6e6bc2ccfada57338cae1
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.