ETH Price: $3,241.08 (+2.09%)
Gas: 1 Gwei

Token

gremlinville (GREMLIN)
 

Overview

Max Total Supply

1,308 GREMLIN

Holders

306

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 GREMLIN
0x7b5d32ce9743b254d9db045046e5d3430d997212
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:
gremlinville

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}
// File: ECDSA.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}
// File: Context.sol



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: Ownable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// File: Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// File: Payment.sol


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;



/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract Payment is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }


    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }


    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }


    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}
// File: IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}
// File: IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}
// File: IERC721.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}
// File: IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: ERC721A.sol


pragma solidity ^0.8.0;









contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

pragma solidity ^0.8.2;

contract gremlinville is ERC721A, Ownable, ReentrancyGuard {  
    using Strings for uint256;
    string public _wingslink;
    bool public flyfly = false;
    uint256 public gremlins = 9999;
    uint256 public gremlinsmax = 1; 
    mapping(address => uint256) public howmanygremlins;
   
	constructor() ERC721A("gremlinville", "GREMLIN") {}

    function _baseURI() internal view virtual override returns (string memory) {
        return _wingslink;
    }

 	function makingremlin() external nonReentrant {
  	    uint256 totalgremlinsss = totalSupply();
        require(flyfly);
        require(totalgremlinsss + gremlinsmax <= gremlins);
        require(msg.sender == tx.origin);
    	require(howmanygremlins[msg.sender] < gremlinsmax);
        _safeMint(msg.sender, gremlinsmax);
        howmanygremlins[msg.sender] += gremlinsmax;
    }

 	function spreadgremlinWings(address lords, uint256 _gremlins) public onlyOwner {
  	    uint256 totalgremlinsss = totalSupply();
	    require(totalgremlinsss + _gremlins <= gremlins);
        _safeMint(lords, _gremlins);
    }

    function makegremlingoflyfly(bool _fly) external onlyOwner {
        flyfly = _fly;
    }

    function spredgremlins(uint256 _flyfly) external onlyOwner {
        gremlinsmax = _flyfly;
    }

    function makegremlinshavewings(string memory wings) external onlyOwner {
        _wingslink = wings;
    }

    function ooohtreasure() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_wingslink","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flyfly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gremlins","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gremlinsmax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"howmanygremlins","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_fly","type":"bool"}],"name":"makegremlingoflyfly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"wings","type":"string"}],"name":"makegremlinshavewings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"makingremlin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ooohtreasure","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lords","type":"address"},{"internalType":"uint256","name":"_gremlins","type":"uint256"}],"name":"spreadgremlinWings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_flyfly","type":"uint256"}],"name":"spredgremlins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff1916905561270f600b556001600c553480156200002657600080fd5b50604080518082018252600c81526b6772656d6c696e76696c6c6560a01b60208083019182528351808501909452600784526623a922a6a624a760c91b9084015281519192916200007a916001916200010e565b508051620000909060029060208401906200010e565b505050620000ad620000a7620000b860201b60201c565b620000bc565b6001600855620001f1565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011c90620001b4565b90600052602060002090601f0160209004810192826200014057600085556200018b565b82601f106200015b57805160ff19168380011785556200018b565b828001600101855582156200018b579182015b828111156200018b5782518255916020019190600101906200016e565b50620001999291506200019d565b5090565b5b808211156200019957600081556001016200019e565b600281046001821680620001c957607f821691505b60208210811415620001eb57634e487b7160e01b600052602260045260246000fd5b50919050565b61285880620002016000396000f3fe6080604052600436106101cd5760003560e01c8063743d12a7116100f7578063aa83e3a111610095578063cc6dd79011610064578063cc6dd7901461051e578063db3dc68014610534578063e985e9c514610549578063f2fde38b1461059f576101cd565b8063aa83e3a1146104a8578063afa65675146104c8578063b88d4fde146104de578063c87b56dd146104fe576101cd565b80638da5cb5b116100d15780638da5cb5b1461041b57806395d89b41146104465780639ea07d3f1461045b578063a22cb46514610488576101cd565b8063743d12a7146103d35780637d0acf5d146103f35780638b503b5614610413576101cd565b806323b872dd1161016f5780636352211e1161013e5780636352211e1461036457806368d202821461038457806370a082311461039e578063715018a6146103be576101cd565b806323b872dd146102e45780632f745c591461030457806342842e0e146103245780634f6ccce714610344576101cd565b8063095ea7b3116101ab578063095ea7b31461026e5780630d2762091461029057806318160ddd146102b0578063215482e6146102cf576101cd565b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046124ec565b6105bf565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6106f2565b6040516101fe9190612644565b34801561023557600080fd5b5061024961024436600461256a565b610784565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101fe565b34801561027a57600080fd5b5061028e6102893660046124a9565b610831565b005b34801561029c57600080fd5b5061028e6102ab366004612524565b61098b565b3480156102bc57600080fd5b506000545b6040519081526020016101fe565b3480156102db57600080fd5b5061021c610a09565b3480156102f057600080fd5b5061028e6102ff3660046123cc565b610a97565b34801561031057600080fd5b506102c161031f3660046124a9565b610aa2565b34801561033057600080fd5b5061028e61033f3660046123cc565b610c67565b34801561035057600080fd5b506102c161035f36600461256a565b610c82565b34801561037057600080fd5b5061024961037f36600461256a565b610cfe565b34801561039057600080fd5b50600a546101f29060ff1681565b3480156103aa57600080fd5b506102c16103b9366004612380565b610d10565b3480156103ca57600080fd5b5061028e610dd6565b3480156103df57600080fd5b5061028e6103ee36600461256a565b610e49565b3480156103ff57600080fd5b5061028e61040e3660046124d2565b610eb5565b61028e610f4d565b34801561042757600080fd5b5060075473ffffffffffffffffffffffffffffffffffffffff16610249565b34801561045257600080fd5b5061021c61100c565b34801561046757600080fd5b506102c1610476366004612380565b600d6020526000908152604090205481565b34801561049457600080fd5b5061028e6104a3366004612480565b61101b565b3480156104b457600080fd5b5061028e6104c33660046124a9565b611132565b3480156104d457600080fd5b506102c1600c5481565b3480156104ea57600080fd5b5061028e6104f9366004612407565b6111be565b34801561050a57600080fd5b5061021c61051936600461256a565b61124d565b34801561052a57600080fd5b506102c1600b5481565b34801561054057600080fd5b5061028e611329565b34801561055557600080fd5b506101f261056436600461239a565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ab57600080fd5b5061028e6105ba366004612380565b611412565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061065257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061069e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b806106ea57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b90505b919050565b606060018054610701906126c6565b80601f016020809104026020016040519081016040528092919081815260200182805461072d906126c6565b801561077a5780601f1061074f5761010080835404028352916020019161077a565b820191906000526020600020905b81548152906001019060200180831161075d57829003601f168201915b5050505050905090565b6000610791826000541190565b6108085760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061083c82610cfe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f657200000000000000000000000000000000000000000000000000000000000060648201526084016107ff565b3373ffffffffffffffffffffffffffffffffffffffff8216148061090957506109098133610564565b61097b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107ff565b61098683838361150b565b505050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146109f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b8051610a05906009906020840190612228565b5050565b60098054610a16906126c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a42906126c6565b8015610a8f5780601f10610a6457610100808354040283529160200191610a8f565b820191906000526020600020905b815481529060010190602001808311610a7257829003601f168201915b505050505081565b61098683838361158c565b6000610aad83610d10565b8210610b215760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016107ff565b600080549080805b83811015610bf25760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610b9a57805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be95786841415610be257509350610c6192505050565b6001909301925b50600101610b29565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e64657800000000000000000000000000000000000060648201526084016107ff565b92915050565b610986838383604051806020016040528060008152506111be565b600080548210610cfa5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e6473000000000000000000000000000000000000000000000000000000000060648201526084016107ff565b5090565b6000610d0982611a05565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff8216610d9b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084016107ff565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b60075473ffffffffffffffffffffffffffffffffffffffff163314610e3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b610e476000611b2d565b565b60075473ffffffffffffffffffffffffffffffffffffffff163314610eb05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b600c55565b60075473ffffffffffffffffffffffffffffffffffffffff163314610f1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60075473ffffffffffffffffffffffffffffffffffffffff163314610fb45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b604051600090339047908381818185875af1925050503d8060008114610ff6576040519150601f19603f3d011682016040523d82523d6000602084013e610ffb565b606091505b505090508061100957600080fd5b50565b606060028054610701906126c6565b73ffffffffffffffffffffffffffffffffffffffff82163314156110815760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107ff565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925290912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168415151790559073ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611126911515815260200190565b60405180910390a35050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146111995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b600054600b546111a98383612657565b11156111b457600080fd5b6109868383611ba4565b6111c984848461158c565b6111d584848484611bbe565b6112475760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016107ff565b50505050565b606061125a826000541190565b6112cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107ff565b60006112d6611da4565b90508051600014156112f75760405180602001604052806000815250611322565b8061130184611db3565b6040516020016113129291906125cc565b6040516020818303038152906040525b9392505050565b6002600854141561137c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107ff565b6002600855600054600a5460ff1661139357600080fd5b600b54600c546113a39083612657565b11156113ae57600080fd5b3332146113ba57600080fd5b600c54336000908152600d6020526040902054106113d757600080fd5b6113e333600c54611ba4565b600c54336000908152600d602052604081208054909190611405908490612657565b9091555050600160085550565b60075473ffffffffffffffffffffffffffffffffffffffff1633146114795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b73ffffffffffffffffffffffffffffffffffffffff81166115025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107ff565b61100981611b2d565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061159782611a05565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806115f55750336115dd84610784565b73ffffffffffffffffffffffffffffffffffffffff16145b80611607575081516116079033610564565b90508061167c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016107ff565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146117215760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e6572000000000000000000000000000000000000000000000000000060648201526084016107ff565b73ffffffffffffffffffffffffffffffffffffffff84166117aa5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107ff565b6117ba600084846000015161150b565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091177fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000004267ffffffffffffffff16021790559086018083529120549091166119a1576118f9816000541190565b156119a1578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff73ffffffffffffffffffffffffffffffffffffffff9094167fffffffffffffffffffffffff000000000000000000000000000000000000000090931692909217929092161790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611a24826000541190565b611a965760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e0000000000000000000000000000000000000000000060648201526084016107ff565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215611b055791506106ed9050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01611a98565b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a05828260405180602001604052806000815250611f34565b600073ffffffffffffffffffffffffffffffffffffffff84163b15611d98576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611c359033908990889088906004016125fb565b602060405180830381600087803b158015611c4f57600080fd5b505af1925050508015611c9d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611c9a91810190612508565b60015b611d4d573d808015611ccb576040519150601f19603f3d011682016040523d82523d6000602084013e611cd0565b606091505b508051611d455760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016107ff565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611d9c565b5060015b949350505050565b606060098054610701906126c6565b606081611df4575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526106ed565b8160005b8115611e1e5780611e088161271a565b9150611e179050600a8361266f565b9150611df8565b60008167ffffffffffffffff811115611e60577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e8a576020820181803683370190505b5090505b8415611d9c57611e9f600183612683565b9150611eac600a86612753565b611eb7906030612657565b60f81b818381518110611ef3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611f2d600a8661266f565b9450611e8e565b610986838383600160005473ffffffffffffffffffffffffffffffffffffffff8516611fc85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016107ff565b8361203b5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e203000000000000000000000000000000000000000000000000060648201526084016107ff565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547fffffffffffffffffffffffffffffffff0000000000000000000000000000000081166fffffffffffffffffffffffffffffffff9182168b018216178082167001000000000000000000000000000000009182900483168c01909216021790558483526003909152812080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169092177fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b8581101561221f57604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612213576121a16000888488611bbe565b6122135760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016107ff565b60019182019101612141565b506000556119fe565b828054612234906126c6565b90600052602060002090601f016020900481019282612256576000855561229c565b82601f1061226f57805160ff191683800117855561229c565b8280016001018555821561229c579182015b8281111561229c578251825591602001919060010190612281565b50610cfa9291505b80821115610cfa57600081556001016122a4565b600067ffffffffffffffff808411156122d3576122d36127c5565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612319576123196127c5565b8160405280935085815286868601111561233257600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff811681146106ed57600080fd5b803580151581146106ed57600080fd5b600060208284031215612391578081fd5b6113228261234c565b600080604083850312156123ac578081fd5b6123b58361234c565b91506123c36020840161234c565b90509250929050565b6000806000606084860312156123e0578081fd5b6123e98461234c565b92506123f76020850161234c565b9150604084013590509250925092565b6000806000806080858703121561241c578081fd5b6124258561234c565b93506124336020860161234c565b925060408501359150606085013567ffffffffffffffff811115612455578182fd5b8501601f81018713612465578182fd5b612474878235602084016122b8565b91505092959194509250565b60008060408385031215612492578182fd5b61249b8361234c565b91506123c360208401612370565b600080604083850312156124bb578182fd5b6124c48361234c565b946020939093013593505050565b6000602082840312156124e3578081fd5b61132282612370565b6000602082840312156124fd578081fd5b8135611322816127f4565b600060208284031215612519578081fd5b8151611322816127f4565b600060208284031215612535578081fd5b813567ffffffffffffffff81111561254b578182fd5b8201601f8101841361255b578182fd5b611d9c848235602084016122b8565b60006020828403121561257b578081fd5b5035919050565b6000815180845261259a81602086016020860161269a565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516125de81846020880161269a565b8351908301906125f281836020880161269a565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261263a6080830184612582565b9695505050505050565b6000602082526113226020830184612582565b6000821982111561266a5761266a612767565b500190565b60008261267e5761267e612796565b500490565b60008282101561269557612695612767565b500390565b60005b838110156126b557818101518382015260200161269d565b838111156112475750506000910152565b6002810460018216806126da57607f821691505b60208210811415612714577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561274c5761274c612767565b5060010190565b60008261276257612762612796565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461100957600080fdfea26469706673582212209f780b3d9fc0a592f4e4e754811825ae9c97f8ba14100e8de9d838192be9016f64736f6c63430008020033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063743d12a7116100f7578063aa83e3a111610095578063cc6dd79011610064578063cc6dd7901461051e578063db3dc68014610534578063e985e9c514610549578063f2fde38b1461059f576101cd565b8063aa83e3a1146104a8578063afa65675146104c8578063b88d4fde146104de578063c87b56dd146104fe576101cd565b80638da5cb5b116100d15780638da5cb5b1461041b57806395d89b41146104465780639ea07d3f1461045b578063a22cb46514610488576101cd565b8063743d12a7146103d35780637d0acf5d146103f35780638b503b5614610413576101cd565b806323b872dd1161016f5780636352211e1161013e5780636352211e1461036457806368d202821461038457806370a082311461039e578063715018a6146103be576101cd565b806323b872dd146102e45780632f745c591461030457806342842e0e146103245780634f6ccce714610344576101cd565b8063095ea7b3116101ab578063095ea7b31461026e5780630d2762091461029057806318160ddd146102b0578063215482e6146102cf576101cd565b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046124ec565b6105bf565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6106f2565b6040516101fe9190612644565b34801561023557600080fd5b5061024961024436600461256a565b610784565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101fe565b34801561027a57600080fd5b5061028e6102893660046124a9565b610831565b005b34801561029c57600080fd5b5061028e6102ab366004612524565b61098b565b3480156102bc57600080fd5b506000545b6040519081526020016101fe565b3480156102db57600080fd5b5061021c610a09565b3480156102f057600080fd5b5061028e6102ff3660046123cc565b610a97565b34801561031057600080fd5b506102c161031f3660046124a9565b610aa2565b34801561033057600080fd5b5061028e61033f3660046123cc565b610c67565b34801561035057600080fd5b506102c161035f36600461256a565b610c82565b34801561037057600080fd5b5061024961037f36600461256a565b610cfe565b34801561039057600080fd5b50600a546101f29060ff1681565b3480156103aa57600080fd5b506102c16103b9366004612380565b610d10565b3480156103ca57600080fd5b5061028e610dd6565b3480156103df57600080fd5b5061028e6103ee36600461256a565b610e49565b3480156103ff57600080fd5b5061028e61040e3660046124d2565b610eb5565b61028e610f4d565b34801561042757600080fd5b5060075473ffffffffffffffffffffffffffffffffffffffff16610249565b34801561045257600080fd5b5061021c61100c565b34801561046757600080fd5b506102c1610476366004612380565b600d6020526000908152604090205481565b34801561049457600080fd5b5061028e6104a3366004612480565b61101b565b3480156104b457600080fd5b5061028e6104c33660046124a9565b611132565b3480156104d457600080fd5b506102c1600c5481565b3480156104ea57600080fd5b5061028e6104f9366004612407565b6111be565b34801561050a57600080fd5b5061021c61051936600461256a565b61124d565b34801561052a57600080fd5b506102c1600b5481565b34801561054057600080fd5b5061028e611329565b34801561055557600080fd5b506101f261056436600461239a565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ab57600080fd5b5061028e6105ba366004612380565b611412565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061065257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061069e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b806106ea57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b90505b919050565b606060018054610701906126c6565b80601f016020809104026020016040519081016040528092919081815260200182805461072d906126c6565b801561077a5780601f1061074f5761010080835404028352916020019161077a565b820191906000526020600020905b81548152906001019060200180831161075d57829003601f168201915b5050505050905090565b6000610791826000541190565b6108085760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061083c82610cfe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f657200000000000000000000000000000000000000000000000000000000000060648201526084016107ff565b3373ffffffffffffffffffffffffffffffffffffffff8216148061090957506109098133610564565b61097b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107ff565b61098683838361150b565b505050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146109f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b8051610a05906009906020840190612228565b5050565b60098054610a16906126c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a42906126c6565b8015610a8f5780601f10610a6457610100808354040283529160200191610a8f565b820191906000526020600020905b815481529060010190602001808311610a7257829003601f168201915b505050505081565b61098683838361158c565b6000610aad83610d10565b8210610b215760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016107ff565b600080549080805b83811015610bf25760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610b9a57805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be95786841415610be257509350610c6192505050565b6001909301925b50600101610b29565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e64657800000000000000000000000000000000000060648201526084016107ff565b92915050565b610986838383604051806020016040528060008152506111be565b600080548210610cfa5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e6473000000000000000000000000000000000000000000000000000000000060648201526084016107ff565b5090565b6000610d0982611a05565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff8216610d9b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084016107ff565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b60075473ffffffffffffffffffffffffffffffffffffffff163314610e3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b610e476000611b2d565b565b60075473ffffffffffffffffffffffffffffffffffffffff163314610eb05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b600c55565b60075473ffffffffffffffffffffffffffffffffffffffff163314610f1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60075473ffffffffffffffffffffffffffffffffffffffff163314610fb45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b604051600090339047908381818185875af1925050503d8060008114610ff6576040519150601f19603f3d011682016040523d82523d6000602084013e610ffb565b606091505b505090508061100957600080fd5b50565b606060028054610701906126c6565b73ffffffffffffffffffffffffffffffffffffffff82163314156110815760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107ff565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925290912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168415151790559073ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611126911515815260200190565b60405180910390a35050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146111995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b600054600b546111a98383612657565b11156111b457600080fd5b6109868383611ba4565b6111c984848461158c565b6111d584848484611bbe565b6112475760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016107ff565b50505050565b606061125a826000541190565b6112cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107ff565b60006112d6611da4565b90508051600014156112f75760405180602001604052806000815250611322565b8061130184611db3565b6040516020016113129291906125cc565b6040516020818303038152906040525b9392505050565b6002600854141561137c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107ff565b6002600855600054600a5460ff1661139357600080fd5b600b54600c546113a39083612657565b11156113ae57600080fd5b3332146113ba57600080fd5b600c54336000908152600d6020526040902054106113d757600080fd5b6113e333600c54611ba4565b600c54336000908152600d602052604081208054909190611405908490612657565b9091555050600160085550565b60075473ffffffffffffffffffffffffffffffffffffffff1633146114795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b73ffffffffffffffffffffffffffffffffffffffff81166115025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107ff565b61100981611b2d565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061159782611a05565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806115f55750336115dd84610784565b73ffffffffffffffffffffffffffffffffffffffff16145b80611607575081516116079033610564565b90508061167c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016107ff565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146117215760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e6572000000000000000000000000000000000000000000000000000060648201526084016107ff565b73ffffffffffffffffffffffffffffffffffffffff84166117aa5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107ff565b6117ba600084846000015161150b565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091177fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000004267ffffffffffffffff16021790559086018083529120549091166119a1576118f9816000541190565b156119a1578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff73ffffffffffffffffffffffffffffffffffffffff9094167fffffffffffffffffffffffff000000000000000000000000000000000000000090931692909217929092161790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611a24826000541190565b611a965760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e0000000000000000000000000000000000000000000060648201526084016107ff565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215611b055791506106ed9050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01611a98565b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a05828260405180602001604052806000815250611f34565b600073ffffffffffffffffffffffffffffffffffffffff84163b15611d98576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611c359033908990889088906004016125fb565b602060405180830381600087803b158015611c4f57600080fd5b505af1925050508015611c9d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611c9a91810190612508565b60015b611d4d573d808015611ccb576040519150601f19603f3d011682016040523d82523d6000602084013e611cd0565b606091505b508051611d455760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016107ff565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611d9c565b5060015b949350505050565b606060098054610701906126c6565b606081611df4575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526106ed565b8160005b8115611e1e5780611e088161271a565b9150611e179050600a8361266f565b9150611df8565b60008167ffffffffffffffff811115611e60577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e8a576020820181803683370190505b5090505b8415611d9c57611e9f600183612683565b9150611eac600a86612753565b611eb7906030612657565b60f81b818381518110611ef3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611f2d600a8661266f565b9450611e8e565b610986838383600160005473ffffffffffffffffffffffffffffffffffffffff8516611fc85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016107ff565b8361203b5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e203000000000000000000000000000000000000000000000000060648201526084016107ff565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547fffffffffffffffffffffffffffffffff0000000000000000000000000000000081166fffffffffffffffffffffffffffffffff9182168b018216178082167001000000000000000000000000000000009182900483168c01909216021790558483526003909152812080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169092177fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b8581101561221f57604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612213576121a16000888488611bbe565b6122135760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016107ff565b60019182019101612141565b506000556119fe565b828054612234906126c6565b90600052602060002090601f016020900481019282612256576000855561229c565b82601f1061226f57805160ff191683800117855561229c565b8280016001018555821561229c579182015b8281111561229c578251825591602001919060010190612281565b50610cfa9291505b80821115610cfa57600081556001016122a4565b600067ffffffffffffffff808411156122d3576122d36127c5565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612319576123196127c5565b8160405280935085815286868601111561233257600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff811681146106ed57600080fd5b803580151581146106ed57600080fd5b600060208284031215612391578081fd5b6113228261234c565b600080604083850312156123ac578081fd5b6123b58361234c565b91506123c36020840161234c565b90509250929050565b6000806000606084860312156123e0578081fd5b6123e98461234c565b92506123f76020850161234c565b9150604084013590509250925092565b6000806000806080858703121561241c578081fd5b6124258561234c565b93506124336020860161234c565b925060408501359150606085013567ffffffffffffffff811115612455578182fd5b8501601f81018713612465578182fd5b612474878235602084016122b8565b91505092959194509250565b60008060408385031215612492578182fd5b61249b8361234c565b91506123c360208401612370565b600080604083850312156124bb578182fd5b6124c48361234c565b946020939093013593505050565b6000602082840312156124e3578081fd5b61132282612370565b6000602082840312156124fd578081fd5b8135611322816127f4565b600060208284031215612519578081fd5b8151611322816127f4565b600060208284031215612535578081fd5b813567ffffffffffffffff81111561254b578182fd5b8201601f8101841361255b578182fd5b611d9c848235602084016122b8565b60006020828403121561257b578081fd5b5035919050565b6000815180845261259a81602086016020860161269a565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516125de81846020880161269a565b8351908301906125f281836020880161269a565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261263a6080830184612582565b9695505050505050565b6000602082526113226020830184612582565b6000821982111561266a5761266a612767565b500190565b60008261267e5761267e612796565b500490565b60008282101561269557612695612767565b500390565b60005b838110156126b557818101518382015260200161269d565b838111156112475750506000910152565b6002810460018216806126da57607f821691505b60208210811415612714577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561274c5761274c612767565b5060010190565b60008261276257612762612796565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461100957600080fdfea26469706673582212209f780b3d9fc0a592f4e4e754811825ae9c97f8ba14100e8de9d838192be9016f64736f6c63430008020033

Deployed Bytecode Sourcemap

56200:1588:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40357:372;;;;;;;;;;-1:-1:-1;40357:372:0;;;;;:::i;:::-;;:::i;:::-;;;6450:14:1;;6443:22;6425:41;;6413:2;6398:18;40357:372:0;;;;;;;;42243:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43805:214::-;;;;;;;;;;-1:-1:-1;43805:214:0;;;;;:::i;:::-;;:::i;:::-;;;5714:42:1;5702:55;;;5684:74;;5672:2;5657:18;43805:214:0;5639:125:1;43326:413:0;;;;;;;;;;-1:-1:-1;43326:413:0;;;;;:::i;:::-;;:::i;:::-;;57513:108;;;;;;;;;;-1:-1:-1;57513:108:0;;;;;:::i;:::-;;:::i;38614:100::-;;;;;;;;;;-1:-1:-1;38667:7:0;38694:12;38614:100;;;14913:25:1;;;14901:2;14886:18;38614:100:0;14868:76:1;56300:24:0;;;;;;;;;;;;;:::i;44681:162::-;;;;;;;;;;-1:-1:-1;44681:162:0;;;;;:::i;:::-;;:::i;39278:1007::-;;;;;;;;;;-1:-1:-1;39278:1007:0;;;;;:::i;:::-;;:::i;44914:177::-;;;;;;;;;;-1:-1:-1;44914:177:0;;;;;:::i;:::-;;:::i;38791:187::-;;;;;;;;;;-1:-1:-1;38791:187:0;;;;;:::i;:::-;;:::i;42052:124::-;;;;;;;;;;-1:-1:-1;42052:124:0;;;;;:::i;:::-;;:::i;56331:26::-;;;;;;;;;;-1:-1:-1;56331:26:0;;;;;;;;40793:221;;;;;;;;;;-1:-1:-1;40793:221:0;;;;;:::i;:::-;;:::i;13944:94::-;;;;;;;;;;;;;:::i;57406:99::-;;;;;;;;;;-1:-1:-1;57406:99:0;;;;;:::i;:::-;;:::i;57307:91::-;;;;;;;;;;-1:-1:-1;57307:91:0;;;;;:::i;:::-;;:::i;57629:156::-;;;:::i;13293:87::-;;;;;;;;;;-1:-1:-1;13366:6:0;;;;13293:87;;42412:104;;;;;;;;;;;;;:::i;56439:50::-;;;;;;;;;;-1:-1:-1;56439:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;44091:288;;;;;;;;;;-1:-1:-1;44091:288:0;;;;;:::i;:::-;;:::i;57069:230::-;;;;;;;;;;-1:-1:-1;57069:230:0;;;;;:::i;:::-;;:::i;56401:30::-;;;;;;;;;;;;;;;;45162:355;;;;;;;;;;-1:-1:-1;45162:355:0;;;;;:::i;:::-;;:::i;42587:335::-;;;;;;;;;;-1:-1:-1;42587:335:0;;;;;:::i;:::-;;:::i;56364:30::-;;;;;;;;;;;;;;;;56674:389;;;;;;;;;;;;;:::i;44450:164::-;;;;;;;;;;-1:-1:-1;44450:164:0;;;;;:::i;:::-;44571:25;;;;44547:4;44571:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44450:164;14193:192;;;;;;;;;;-1:-1:-1;14193:192:0;;;;;:::i;:::-;;:::i;40357:372::-;40459:4;40496:40;;;40511:25;40496:40;;:105;;-1:-1:-1;40553:48:0;;;40568:33;40553:48;40496:105;:172;;;-1:-1:-1;40618:50:0;;;40633:35;40618:50;40496:172;:225;;;-1:-1:-1;30869:25:0;30854:40;;;;40685:36;40476:245;;40357:372;;;;:::o;42243:100::-;42297:13;42330:5;42323:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42243:100;:::o;43805:214::-;43873:7;43901:16;43909:7;45829:4;45863:12;-1:-1:-1;45853:22:0;45772:111;43901:16;43893:74;;;;-1:-1:-1;;;43893:74:0;;14555:2:1;43893:74:0;;;14537:21:1;14594:2;14574:18;;;14567:30;14633:34;14613:18;;;14606:62;14704:15;14684:18;;;14677:43;14737:19;;43893:74:0;;;;;;;;;-1:-1:-1;43987:24:0;;;;:15;:24;;;;;;;;;43805:214::o;43326:413::-;43399:13;43415:24;43431:7;43415:15;:24::i;:::-;43399:40;;43464:5;43458:11;;:2;:11;;;;43450:58;;;;-1:-1:-1;;;43450:58:0;;11730:2:1;43450:58:0;;;11712:21:1;11769:2;11749:18;;;11742:30;11808:34;11788:18;;;11781:62;11879:4;11859:18;;;11852:32;11901:19;;43450:58:0;11702:224:1;43450:58:0;12194:10;43543:21;;;;;:62;;-1:-1:-1;43568:37:0;43585:5;12194:10;43592:12;12114:98;43568:37;43521:169;;;;-1:-1:-1;;;43521:169:0;;8934:2:1;43521:169:0;;;8916:21:1;8973:2;8953:18;;;8946:30;9012:34;8992:18;;;8985:62;9083:27;9063:18;;;9056:55;9128:19;;43521:169:0;8906:247:1;43521:169:0;43703:28;43712:2;43716:7;43725:5;43703:8;:28::i;:::-;43326:413;;;:::o;57513:108::-;13366:6;;13513:23;13366:6;12194:10;13513:23;13505:68;;;;-1:-1:-1;;;13505:68:0;;10179:2:1;13505:68:0;;;10161:21:1;;;10198:18;;;10191:30;10257:34;10237:18;;;10230:62;10309:18;;13505:68:0;10151:182:1;13505:68:0;57595:18;;::::1;::::0;:10:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57513:108:::0;:::o;56300:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44681:162::-;44807:28;44817:4;44823:2;44827:7;44807:9;:28::i;39278:1007::-;39367:7;39403:16;39413:5;39403:9;:16::i;:::-;39395:5;:24;39387:71;;;;-1:-1:-1;;;39387:71:0;;6903:2:1;39387:71:0;;;6885:21:1;6942:2;6922:18;;;6915:30;6981:34;6961:18;;;6954:62;7052:4;7032:18;;;7025:32;7074:19;;39387:71:0;6875:224:1;39387:71:0;39469:22;38694:12;;;39469:22;;39732:466;39752:14;39748:1;:18;39732:466;;;39792:31;39826:14;;;:11;:14;;;;;;;;;39792:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;39863:28;39859:111;;39936:14;;;-1:-1:-1;39859:111:0;40013:5;39992:26;;:17;:26;;;39988:195;;;40062:5;40047:11;:20;40043:85;;;-1:-1:-1;40103:1:0;-1:-1:-1;40096:8:0;;-1:-1:-1;;;40096:8:0;40043:85;40150:13;;;;;39988:195;-1:-1:-1;39768:3:0;;39732:466;;;-1:-1:-1;40221:56:0;;-1:-1:-1;;;40221:56:0;;13364:2:1;40221:56:0;;;13346:21:1;13403:2;13383:18;;;13376:30;13442:34;13422:18;;;13415:62;13513:16;13493:18;;;13486:44;13547:19;;40221:56:0;13336:236:1;39278:1007:0;;;;;:::o;44914:177::-;45044:39;45061:4;45067:2;45071:7;45044:39;;;;;;;;;;;;:16;:39::i;38791:187::-;38858:7;38694:12;;38886:5;:21;38878:69;;;;-1:-1:-1;;;38878:69:0;;8124:2:1;38878:69:0;;;8106:21:1;8163:2;8143:18;;;8136:30;8202:34;8182:18;;;8175:62;8273:5;8253:18;;;8246:33;8296:19;;38878:69:0;8096:225:1;38878:69:0;-1:-1:-1;38965:5:0;38791:187::o;42052:124::-;42116:7;42143:20;42155:7;42143:11;:20::i;:::-;:25;;42052:124;-1:-1:-1;;42052:124:0:o;40793:221::-;40857:7;40885:19;;;40877:75;;;;-1:-1:-1;;;40877:75:0;;9360:2:1;40877:75:0;;;9342:21:1;9399:2;9379:18;;;9372:30;9438:34;9418:18;;;9411:62;9509:13;9489:18;;;9482:41;9540:19;;40877:75:0;9332:233:1;40877:75:0;-1:-1:-1;40978:19:0;;;;;;:12;:19;;;;;:27;;;;40793:221::o;13944:94::-;13366:6;;13513:23;13366:6;12194:10;13513:23;13505:68;;;;-1:-1:-1;;;13505:68:0;;10179:2:1;13505:68:0;;;10161:21:1;;;10198:18;;;10191:30;10257:34;10237:18;;;10230:62;10309:18;;13505:68:0;10151:182:1;13505:68:0;14009:21:::1;14027:1;14009:9;:21::i;:::-;13944:94::o:0;57406:99::-;13366:6;;13513:23;13366:6;12194:10;13513:23;13505:68;;;;-1:-1:-1;;;13505:68:0;;10179:2:1;13505:68:0;;;10161:21:1;;;10198:18;;;10191:30;10257:34;10237:18;;;10230:62;10309:18;;13505:68:0;10151:182:1;13505:68:0;57476:11:::1;:21:::0;57406:99::o;57307:91::-;13366:6;;13513:23;13366:6;12194:10;13513:23;13505:68;;;;-1:-1:-1;;;13505:68:0;;10179:2:1;13505:68:0;;;10161:21:1;;;10198:18;;;10191:30;10257:34;10237:18;;;10230:62;10309:18;;13505:68:0;10151:182:1;13505:68:0;57377:6:::1;:13:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;57307:91::o;57629:156::-;13366:6;;13513:23;13366:6;12194:10;13513:23;13505:68;;;;-1:-1:-1;;;13505:68:0;;10179:2:1;13505:68:0;;;10161:21:1;;;10198:18;;;10191:30;10257:34;10237:18;;;10230:62;10309:18;;13505:68:0;10151:182:1;13505:68:0;57701:58:::1;::::0;57683:12:::1;::::0;57709:10:::1;::::0;57733:21:::1;::::0;57683:12;57701:58;57683:12;57701:58;57733:21;57709:10;57701:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57682:77;;;57772:7;57764:16;;;::::0;::::1;;13584:1;57629:156::o:0;42412:104::-;42468:13;42501:7;42494:14;;;;;:::i;44091:288::-;44186:24;;;12194:10;44186:24;;44178:63;;;;-1:-1:-1;;;44178:63:0;;10956:2:1;44178:63:0;;;10938:21:1;10995:2;10975:18;;;10968:30;11034:28;11014:18;;;11007:56;11080:18;;44178:63:0;10928:176:1;44178:63:0;12194:10;44254:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;:53;;;;;;;;;;:42;44323:48;;;44362:8;44323:48;;;;6450:14:1;6443:22;6425:41;;6413:2;6398:18;;6380:92;44323:48:0;;;;;;;;44091:288;;:::o;57069:230::-;13366:6;;13513:23;13366:6;12194:10;13513:23;13505:68;;;;-1:-1:-1;;;13505:68:0;;10179:2:1;13505:68:0;;;10161:21:1;;;10198:18;;;10191:30;10257:34;10237:18;;;10230:62;10309:18;;13505:68:0;10151:182:1;13505:68:0;57158:23:::1;38694:12:::0;57244:8:::1;::::0;57213:27:::1;57231:9:::0;38694:12;57213:27:::1;:::i;:::-;:39;;57205:48;;;::::0;::::1;;57264:27;57274:5;57281:9;57264;:27::i;45162:355::-:0;45321:28;45331:4;45337:2;45341:7;45321:9;:28::i;:::-;45382:48;45405:4;45411:2;45415:7;45424:5;45382:22;:48::i;:::-;45360:149;;;;-1:-1:-1;;;45360:149:0;;12133:2:1;45360:149:0;;;12115:21:1;12172:2;12152:18;;;12145:30;12211:34;12191:18;;;12184:62;12282:21;12262:18;;;12255:49;12321:19;;45360:149:0;12105:241:1;45360:149:0;45162:355;;;;:::o;42587:335::-;42660:13;42694:16;42702:7;45829:4;45863:12;-1:-1:-1;45853:22:0;45772:111;42694:16;42686:76;;;;-1:-1:-1;;;42686:76:0;;10540:2:1;42686:76:0;;;10522:21:1;10579:2;10559:18;;;10552:30;10618:34;10598:18;;;10591:62;10689:17;10669:18;;;10662:45;10724:19;;42686:76:0;10512:237:1;42686:76:0;42775:21;42799:10;:8;:10::i;:::-;42775:34;;42833:7;42827:21;42852:1;42827:26;;:87;;;;;;;;;;;;;;;;;42880:7;42889:18;:7;:16;:18::i;:::-;42863:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42827:87;42820:94;42587:335;-1:-1:-1;;;42587:335:0:o;56674:389::-;55226:1;55824:7;;:19;;55816:63;;;;-1:-1:-1;;;55816:63:0;;13779:2:1;55816:63:0;;;13761:21:1;13818:2;13798:18;;;13791:30;13857:33;13837:18;;;13830:61;13908:18;;55816:63:0;13751:181:1;55816:63:0;55226:1;55957:7;:18;56730:23:::1;38694:12:::0;56788:6:::1;::::0;::::1;;56780:15;;;::::0;::::1;;56847:8;::::0;56832:11:::1;::::0;56814:29:::1;::::0;:15;:29:::1;:::i;:::-;:41;;56806:50;;;::::0;::::1;;56875:10;56889:9;56875:23;56867:32;;;::::0;::::1;;56945:11;::::0;56931:10:::1;56915:27;::::0;;;:15:::1;:27;::::0;;;;;:41:::1;56907:50;;;::::0;::::1;;56968:34;56978:10;56990:11;;56968:9;:34::i;:::-;57044:11;::::0;57029:10:::1;57013:27;::::0;;;:15:::1;:27;::::0;;;;:42;;:27;;;:42:::1;::::0;57044:11;;57013:42:::1;:::i;:::-;::::0;;;-1:-1:-1;;55182:1:0;56136:7;:22;-1:-1:-1;56674:389:0:o;14193:192::-;13366:6;;13513:23;13366:6;12194:10;13513:23;13505:68;;;;-1:-1:-1;;;13505:68:0;;10179:2:1;13505:68:0;;;10161:21:1;;;10198:18;;;10191:30;10257:34;10237:18;;;10230:62;10309:18;;13505:68:0;10151:182:1;13505:68:0;14282:22:::1;::::0;::::1;14274:73;;;::::0;-1:-1:-1;;;14274:73:0;;7306:2:1;14274:73:0::1;::::0;::::1;7288:21:1::0;7345:2;7325:18;;;7318:30;7384:34;7364:18;;;7357:62;7455:8;7435:18;;;7428:36;7481:19;;14274:73:0::1;7278:228:1::0;14274:73:0::1;14358:19;14368:8;14358:9;:19::i;50692:196::-:0;50807:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;50852:28;;50807:24;;50852:28;;;;;;;50692:196;;;:::o;48572:2002::-;48687:35;48725:20;48737:7;48725:11;:20::i;:::-;48800:18;;48687:58;;-1:-1:-1;48758:22:0;;48784:34;;12194:10;48784:34;;;:87;;;-1:-1:-1;12194:10:0;48835:20;48847:7;48835:11;:20::i;:::-;:36;;;48784:87;:154;;;-1:-1:-1;48905:18:0;;48888:50;;12194:10;48925:12;12114:98;48888:50;48758:181;;48960:17;48952:80;;;;-1:-1:-1;;;48952:80:0;;11311:2:1;48952:80:0;;;11293:21:1;11350:2;11330:18;;;11323:30;11389:34;11369:18;;;11362:62;11460:20;11440:18;;;11433:48;11498:19;;48952:80:0;11283:240:1;48952:80:0;49075:4;49053:26;;:13;:18;;;:26;;;49045:77;;;;-1:-1:-1;;;49045:77:0;;9772:2:1;49045:77:0;;;9754:21:1;9811:2;9791:18;;;9784:30;9850:34;9830:18;;;9823:62;9921:8;9901:18;;;9894:36;9947:19;;49045:77:0;9744:228:1;49045:77:0;49141:16;;;49133:66;;;;-1:-1:-1;;;49133:66:0;;8528:2:1;49133:66:0;;;8510:21:1;8567:2;8547:18;;;8540:30;8606:34;8586:18;;;8579:62;8677:7;8657:18;;;8650:35;8702:19;;49133:66:0;8500:227:1;49133:66:0;49320:49;49337:1;49341:7;49350:13;:18;;;49320:8;:49::i;:::-;49665:18;;;;;;;;:12;:18;;;;;;;;:31;;;;;;;;;;;;;;;;;;49711:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49711:29:0;;;;;;;;;;;;;49757:20;;;:11;:20;;;;;;:30;;;;;;;49802:61;;;49847:15;49802:61;;;;;;50137:11;;;50167:24;;;;;:29;50137:11;;50167:29;50163:295;;50235:20;50243:11;45829:4;45863:12;-1:-1:-1;45853:22:0;45772:111;50235:20;50231:212;;;50312:18;;;50280:24;;;:11;:24;;;;;;;;:50;;50395:28;;;;50353:70;;;;;50280:50;;;;;;;;;;;;50353:70;;;;;;;50231:212;48572:2002;50505:7;50501:2;50486:27;;50495:4;50486:27;;;;;;;;;;;;50524:42;48572:2002;;;;;:::o;41453:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;41556:16:0;41564:7;45829:4;45863:12;-1:-1:-1;45853:22:0;45772:111;41556:16;41548:71;;;;-1:-1:-1;;;41548:71:0;;7713:2:1;41548:71:0;;;7695:21:1;7752:2;7732:18;;;7725:30;7791:34;7771:18;;;7764:62;7862:12;7842:18;;;7835:40;7892:19;;41548:71:0;7685:232:1;41548:71:0;41677:7;41657:245;41724:31;41758:17;;;:11;:17;;;;;;;;;41724:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;41798:28;41794:93;;41858:9;-1:-1:-1;41851:16:0;;-1:-1:-1;41851:16:0;41794:93;-1:-1:-1;41697:6:0;;41657:245;;14393:173;14468:6;;;;14485:17;;;;;;;;;;;14518:40;;14468:6;;;14485:17;14468:6;;14518:40;;14449:16;;14518:40;14393:173;;:::o;45891:104::-;45960:27;45970:2;45974:8;45960:27;;;;;;;;;;;;:9;:27::i;51453:804::-;51608:4;51629:13;;;15630:20;15678:8;51625:625;;51665:72;;;;;:36;;;;;;:72;;12194:10;;51716:4;;51722:7;;51731:5;;51665:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51665:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51661:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51911:13:0;;51907:273;;51954:61;;-1:-1:-1;;;51954:61:0;;12133:2:1;51954:61:0;;;12115:21:1;12172:2;12152:18;;;12145:30;12211:34;12191:18;;;12184:62;12282:21;12262:18;;;12255:49;12321:19;;51954:61:0;12105:241:1;51907:273:0;52130:6;52124:13;52115:6;52111:2;52107:15;52100:38;51661:534;51788:55;;51798:45;51788:55;;-1:-1:-1;51781:62:0;;51625:625;-1:-1:-1;52234:4:0;51625:625;51453:804;;;;;;:::o;56557:111::-;56617:13;56650:10;56643:17;;;;;:::i;288:723::-;344:13;565:10;561:53;;-1:-1:-1;592:10:0;;;;;;;;;;;;;;;;;;;561:53;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:0;;-1:-1:-1;744:2:0;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:0;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:0;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;949:11:0;958:2;949:11;;:::i;:::-;;;818:154;;46358:163;46481:32;46487:2;46491:8;46501:5;46508:4;46919:20;46942:12;46973:16;;;46965:62;;;;-1:-1:-1;;;46965:62:0;;12553:2:1;46965:62:0;;;12535:21:1;12592:2;12572:18;;;12565:30;12631:34;12611:18;;;12604:62;12702:3;12682:18;;;12675:31;12723:19;;46965:62:0;12525:223:1;46965:62:0;47046:13;47038:66;;;;-1:-1:-1;;;47038:66:0;;12955:2:1;47038:66:0;;;12937:21:1;12994:2;12974:18;;;12967:30;13033:34;13013:18;;;13006:62;13104:10;13084:18;;;13077:38;13132:19;;47038:66:0;12927:230:1;47038:66:0;47456:16;;;;;;;:12;:16;;;;;;;;:45;;;;;;;;;;;;;;47516:50;;;;;;;;;;;;;;;;;;;47583:25;;;:11;:25;;;;;:35;;;;;;;47633:66;;;47683:15;47633:66;;;;;;;47583:25;;47768:415;47788:8;47784:1;:12;47768:415;;;47827:38;;47852:12;;47827:38;;;;47844:1;;47827:38;;47844:1;;47827:38;47888:4;47884:249;;;47951:59;47982:1;47986:2;47990:12;48004:5;47951:22;:59::i;:::-;47917:196;;;;-1:-1:-1;;;47917:196:0;;12133:2:1;47917:196:0;;;12115:21:1;12172:2;12152:18;;;12145:30;12211:34;12191:18;;;12184:62;12282:21;12262:18;;;12255:49;12321:19;;47917:196:0;12105:241:1;47917:196:0;48153:14;;;;;47798:3;47768:415;;;-1:-1:-1;48199:12:0;:27;48250:60;45162:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:690:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;194:66;339:24;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:2;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:2;;;591:1;588;581:12;550:2;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;88:616;;;;;:::o;709:196::-;777:20;;837:42;826:54;;816:65;;806:2;;895:1;892;885:12;910:160;975:20;;1031:13;;1024:21;1014:32;;1004:2;;1060:1;1057;1050:12;1075:196;;1187:2;1175:9;1166:7;1162:23;1158:32;1155:2;;;1208:6;1200;1193:22;1155:2;1236:29;1255:9;1236:29;:::i;1276:270::-;;;1405:2;1393:9;1384:7;1380:23;1376:32;1373:2;;;1426:6;1418;1411:22;1373:2;1454:29;1473:9;1454:29;:::i;:::-;1444:39;;1502:38;1536:2;1525:9;1521:18;1502:38;:::i;:::-;1492:48;;1363:183;;;;;:::o;1551:338::-;;;;1697:2;1685:9;1676:7;1672:23;1668:32;1665:2;;;1718:6;1710;1703:22;1665:2;1746:29;1765:9;1746:29;:::i;:::-;1736:39;;1794:38;1828:2;1817:9;1813:18;1794:38;:::i;:::-;1784:48;;1879:2;1868:9;1864:18;1851:32;1841:42;;1655:234;;;;;:::o;1894:696::-;;;;;2066:3;2054:9;2045:7;2041:23;2037:33;2034:2;;;2088:6;2080;2073:22;2034:2;2116:29;2135:9;2116:29;:::i;:::-;2106:39;;2164:38;2198:2;2187:9;2183:18;2164:38;:::i;:::-;2154:48;;2249:2;2238:9;2234:18;2221:32;2211:42;;2304:2;2293:9;2289:18;2276:32;2331:18;2323:6;2320:30;2317:2;;;2368:6;2360;2353:22;2317:2;2396:22;;2449:4;2441:13;;2437:27;-1:-1:-1;2427:2:1;;2483:6;2475;2468:22;2427:2;2511:73;2576:7;2571:2;2558:16;2553:2;2549;2545:11;2511:73;:::i;:::-;2501:83;;;2024:566;;;;;;;:::o;2595:264::-;;;2721:2;2709:9;2700:7;2696:23;2692:32;2689:2;;;2742:6;2734;2727:22;2689:2;2770:29;2789:9;2770:29;:::i;:::-;2760:39;;2818:35;2849:2;2838:9;2834:18;2818:35;:::i;2864:264::-;;;2993:2;2981:9;2972:7;2968:23;2964:32;2961:2;;;3014:6;3006;2999:22;2961:2;3042:29;3061:9;3042:29;:::i;:::-;3032:39;3118:2;3103:18;;;;3090:32;;-1:-1:-1;;;2951:177:1:o;3133:190::-;;3242:2;3230:9;3221:7;3217:23;3213:32;3210:2;;;3263:6;3255;3248:22;3210:2;3291:26;3307:9;3291:26;:::i;3328:255::-;;3439:2;3427:9;3418:7;3414:23;3410:32;3407:2;;;3460:6;3452;3445:22;3407:2;3504:9;3491:23;3523:30;3547:5;3523:30;:::i;3588:259::-;;3710:2;3698:9;3689:7;3685:23;3681:32;3678:2;;;3731:6;3723;3716:22;3678:2;3768:9;3762:16;3787:30;3811:5;3787:30;:::i;3852:480::-;;3974:2;3962:9;3953:7;3949:23;3945:32;3942:2;;;3995:6;3987;3980:22;3942:2;4040:9;4027:23;4073:18;4065:6;4062:30;4059:2;;;4110:6;4102;4095:22;4059:2;4138:22;;4191:4;4183:13;;4179:27;-1:-1:-1;4169:2:1;;4225:6;4217;4210:22;4169:2;4253:73;4318:7;4313:2;4300:16;4295:2;4291;4287:11;4253:73;:::i;4337:190::-;;4449:2;4437:9;4428:7;4424:23;4420:32;4417:2;;;4470:6;4462;4455:22;4417:2;-1:-1:-1;4498:23:1;;4407:120;-1:-1:-1;4407:120:1:o;4532:316::-;;4611:5;4605:12;4638:6;4633:3;4626:19;4654:63;4710:6;4703:4;4698:3;4694:14;4687:4;4680:5;4676:16;4654:63;:::i;:::-;4762:2;4750:15;4767:66;4746:88;4737:98;;;;4837:4;4733:109;;4581:267;-1:-1:-1;;4581:267:1:o;4853:470::-;;5070:6;5064:13;5086:53;5132:6;5127:3;5120:4;5112:6;5108:17;5086:53;:::i;:::-;5202:13;;5161:16;;;;5224:57;5202:13;5161:16;5258:4;5246:17;;5224:57;:::i;:::-;5297:20;;5040:283;-1:-1:-1;;;;5040:283:1:o;5769:511::-;;5992:42;6073:2;6065:6;6061:15;6050:9;6043:34;6125:2;6117:6;6113:15;6108:2;6097:9;6093:18;6086:43;;6165:6;6160:2;6149:9;6145:18;6138:34;6208:3;6203:2;6192:9;6188:18;6181:31;6229:45;6269:3;6258:9;6254:19;6246:6;6229:45;:::i;:::-;6221:53;5972:308;-1:-1:-1;;;;;;5972:308:1:o;6477:219::-;;6626:2;6615:9;6608:21;6646:44;6686:2;6675:9;6671:18;6663:6;6646:44;:::i;14949:128::-;;15020:1;15016:6;15013:1;15010:13;15007:2;;;15026:18;;:::i;:::-;-1:-1:-1;15062:9:1;;14997:80::o;15082:120::-;;15148:1;15138:2;;15153:18;;:::i;:::-;-1:-1:-1;15187:9:1;;15128:74::o;15207:125::-;;15275:1;15272;15269:8;15266:2;;;15280:18;;:::i;:::-;-1:-1:-1;15317:9:1;;15256:76::o;15337:258::-;15409:1;15419:113;15433:6;15430:1;15427:13;15419:113;;;15509:11;;;15503:18;15490:11;;;15483:39;15455:2;15448:10;15419:113;;;15550:6;15547:1;15544:13;15541:2;;;-1:-1:-1;;15585:1:1;15567:16;;15560:27;15390:205::o;15600:437::-;15685:1;15675:12;;15732:1;15722:12;;;15743:2;;15797:4;15789:6;15785:17;15775:27;;15743:2;15850;15842:6;15839:14;15819:18;15816:38;15813:2;;;15887:77;15884:1;15877:88;15988:4;15985:1;15978:15;16016:4;16013:1;16006:15;15813:2;;15655:382;;;:::o;16042:195::-;;16112:66;16105:5;16102:77;16099:2;;;16182:18;;:::i;:::-;-1:-1:-1;16229:1:1;16218:13;;16089:148::o;16242:112::-;;16300:1;16290:2;;16305:18;;:::i;:::-;-1:-1:-1;16339:9:1;;16280:74::o;16359:184::-;16411:77;16408:1;16401:88;16508:4;16505:1;16498:15;16532:4;16529:1;16522:15;16548:184;16600:77;16597:1;16590:88;16697:4;16694:1;16687:15;16721:4;16718:1;16711:15;16737:184;16789:77;16786:1;16779:88;16886:4;16883:1;16876:15;16910:4;16907:1;16900:15;16926:177;17011:66;17004:5;17000:78;16993:5;16990:89;16980:2;;17093:1;17090;17083:12

Swarm Source

ipfs://9f780b3d9fc0a592f4e4e754811825ae9c97f8ba14100e8de9d838192be9016f
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.