ETH Price: $3,490.37 (+2.09%)
Gas: 13 Gwei

Token

Molly (MOLLY)
 

Overview

Max Total Supply

4,444 MOLLY

Holders

1,238

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mdrfkr.eth
Balance
133 MOLLY
0x60314c86b99a2a108e5097fc2688aa1e3c30be30
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

4444 Unique 3D NFTs with one simple, yet ambitious goal- create the largest decentralized community & alpha group of high-end art collectors & artists.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Molly

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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: @openzeppelin/contracts/utils/cryptography/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;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 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: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/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: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/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: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/Molly/Molly.sol

//SPDX-License-Identifier: UNLICENSED
/**
    Molly NFT Collection 1.0 : 4444 Unique 3D NFTs with one simple,
    yet ambitious goal- create the largest decentralized community & 
    alpha group of high-end art collectors & artists.
*/

pragma solidity ^0.8.0;





contract Molly is ERC721, Ownable {
    using Strings for uint256;
    using ECDSA for bytes32;

    uint256 public MAX_PRESALE = 1111;
    uint256 public maxSupply = 4444;
    uint256 public currentSupply = 0;
    uint256 public maxPerWallet = 1;

    uint256 public salePrice = 0.4 ether;

    uint256 public presaleCount;

    uint256 private freeMinted;

    //Placeholders
    address private presaleAddress = address(0x3B0c5492F5d8e01B6152B6D678740e9333035946);
    address private wallet = address(0x5176BB80780a68ae0194af21Ff2D168574734638);

    string private baseURI;
    string private notRevealedUri = "ipfs://QmNPEK6cqcufwQcWFUuTTM4bG6Em4PjQZEg9axpBKduQp9";

    bool public revealed = false;
    bool public baseLocked = false;

    enum WorkflowStatus {
        Before,
        Presale,
        Sale,
        Paused,
        Reveal
    }

    WorkflowStatus public workflow;

    mapping(address => uint256) public freeMintAccess;
    mapping(address => uint256) public presaleMintLog;
    mapping(address => uint256) public freeMintLog;

    constructor()
        ERC721("Molly", "MOLLY")
    {
        transferOwnership(msg.sender);
        workflow = WorkflowStatus.Before;
    }

    function withdraw() public onlyOwner {
        uint256 _balance = address( this ).balance;
        
        payable( wallet ).transfer( _balance );
    }

    //GETTERS
    function getSaleStatus() public view returns (WorkflowStatus) {
        return workflow;
    }

    function totalSupply() public view returns (uint256) {
        return currentSupply;
    }

    function getFreeMintAmount( address _acc ) public view returns (uint256) {
        return freeMintAccess[ _acc ];
    }

    function getFreeMintLog( address _acc ) public view returns (uint256) {
        return freeMintLog[ _acc ];
    }

    function validateSignature( address _addr, bytes memory _s ) internal view returns (bool){
        bytes32 messageHash = keccak256(
            abi.encodePacked( address(this), msg.sender)
        );

        address signer = messageHash.toEthSignedMessageHash().recover(_s);

        if( _addr == signer ) {
            return true;
        } else {
            return false;
        }
    }

    //Batch minting
    function mintBatch(
        address to,
        uint256 baseId,
        uint256 number
    ) internal {

        for (uint256 i = 0; i < number; i++) {
            _safeMint(to, baseId + i);
        }

    }

    /**
        Claims tokens for free paying only gas fees
     */
    function freeMint(uint256 _amount) external {
        uint256 supply = currentSupply;

        require( 
          freeMintAccess[ msg.sender ] >= _amount, 
          "You dont have permision to free mint that amount." 
        );

        require(
            supply + _amount <= maxSupply,
            "Molly: Mint too large, exceeding the maxSupply"
        );

        freeMintAccess[ msg.sender ] -= _amount;
        freeMintLog[ msg.sender ] += _amount;

        freeMinted += _amount;
        currentSupply += _amount;

        mintBatch(msg.sender, supply, _amount);
    }


    function presaleMint(
        uint256 amount,
        bytes calldata signature
    ) external payable {
        
        require(
            workflow == WorkflowStatus.Presale,
            "Molly: Presale is not currently active."
        );

        require(
            validateSignature(
                presaleAddress,
                signature
            ),
            "SIGNATURE_VALIDATION_FAILED"
        );

        require(amount > 0, "You must mint at least one token");

        require(
            presaleMintLog[ msg.sender ] + amount <= maxPerWallet,
            "Molly: You have exceeded the max per wallet amount!"
        );
        
        require(
            presaleCount + amount <= MAX_PRESALE,
            "Molly: Selected amount exceeds the max presale supply"
        );

        presaleCount += amount;
        currentSupply += amount;
        presaleMintLog[ msg.sender ] += amount;

        mintBatch(msg.sender, currentSupply - amount, amount);
    }

    function publicSaleMint(uint256 amount) external payable {
        require( amount > 0, "You must mint at least one NFT.");
        
        uint256 supply = currentSupply;

        require( supply < maxSupply, "Molly: Sold out!" );
        require( supply + amount <= maxSupply, "Molly: Selected amount exceeds the max supply.");

        require(
            workflow == WorkflowStatus.Sale,
            "Molly: Public sale has not active."
        );

        require(
            msg.value >= salePrice * amount,
            "Molly: Insuficient ETH amount sent."
        );

        currentSupply += amount;

        mintBatch(msg.sender, supply, amount);
    }

    function forceMint(uint256 number, address receiver) external onlyOwner {
        uint256 supply = currentSupply;

        require(
            supply + number <= maxSupply,
            "Molly: You can't mint more than max supply"
        );

        currentSupply += number;

        mintBatch( receiver, supply, number);
    }

    function ownerMint(uint256 number) external onlyOwner {
        uint256 supply = currentSupply;

        require(
            supply + number <= maxSupply,
            "Molly: You can't mint more than max supply"
        );

        currentSupply += number;

        mintBatch(msg.sender, supply, number);
    }

    function airdrop(address[] calldata addresses) external onlyOwner {
        uint256 supply = currentSupply;
        require(
            supply + addresses.length <= maxSupply,
            "Molly: You can't mint more than max supply"
        );

        currentSupply += addresses.length;

        for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], supply + i);
        }
    }

    // END MINT FUNCTIONS
    function getFreeMinted() public view onlyOwner returns (uint256){
        return freeMinted;
    }

    function setUpBefore() external onlyOwner {
        workflow = WorkflowStatus.Before;
    }

    function setUpPresale() external onlyOwner {
        workflow = WorkflowStatus.Presale;
    }

    function setUpSale() external onlyOwner {
        workflow = WorkflowStatus.Sale;
    }

    function pauseSale() external onlyOwner {
        workflow = WorkflowStatus.Paused;
    }

    function setMaxPerWallet( uint256 _amount ) external onlyOwner {
        maxPerWallet = _amount;
    }

    function setMaxPresale( uint256 _amount ) external onlyOwner {
        MAX_PRESALE = _amount;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        require( baseLocked == false, "Base URI change has been disabled permanently");

        baseURI = _newBaseURI;
    }

    function setPresaleAddress(address _newAddress) public onlyOwner {
        require(_newAddress != address(0), "CAN'T PUT 0 ADDRESS");
        presaleAddress = _newAddress;
    }

    function setWallet(address _newWallet) public onlyOwner {
        wallet = _newWallet;
    }

    function setSalePrice(uint256 _newPrice) public onlyOwner {
        salePrice = _newPrice;
    }

    function setFreeMintAccess(address _acc, uint256 _am ) public onlyOwner {
        freeMintAccess[ _acc ] = _am;
    }

    function lockBase() public onlyOwner {
        baseLocked = true;
    }

    // FACTORY
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        if (revealed == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = baseURI;
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(),'.json'))
                : "";
    }
}

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":"MAX_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"baseLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"forceMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintAccess","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintLog","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_acc","type":"address"}],"name":"getFreeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_acc","type":"address"}],"name":"getFreeMintLog","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleStatus","outputs":[{"internalType":"enum Molly.WorkflowStatus","name":"","type":"uint8"}],"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":[],"name":"lockBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMintLog","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_acc","type":"address"},{"internalType":"uint256","name":"_am","type":"uint256"}],"name":"setFreeMintAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setPresaleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpBefore","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setWallet","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":"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"workflow","outputs":[{"internalType":"enum Molly.WorkflowStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"}]

61045760075561115c60085560006009556001600a5567058d15e176280000600b55600e80546001600160a01b0319908116733b0c5492f5d8e01b6152b6d678740e933303594617909155600f8054909116735176bb80780a68ae0194af21ff2d16857473463817905560e06040526035608081815290620038be60a039805162000093916011916020909101906200023c565b506012805461ffff19169055348015620000ac57600080fd5b50604051806040016040528060058152602001644d6f6c6c7960d81b815250604051806040016040528060058152602001644d4f4c4c5960d81b8152508160009080519060200190620001019291906200023c565b508051620001179060019060208401906200023c565b505050620001346200012e6200015160201b60201c565b62000155565b6200013f33620001a7565b6012805462ff0000191690556200039a565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001b162000151565b6001600160a01b0316620001c46200022d565b6001600160a01b031614620001f65760405162461bcd60e51b8152600401620001ed9062000328565b60405180910390fd5b6001600160a01b0381166200021f5760405162461bcd60e51b8152600401620001ed90620002e2565b6200022a8162000155565b50565b6006546001600160a01b031690565b8280546200024a906200035d565b90600052602060002090601f0160209004810192826200026e5760008555620002b9565b82601f106200028957805160ff1916838001178555620002b9565b82800160010185558215620002b9579182015b82811115620002b95782518255916020019190600101906200029c565b50620002c7929150620002cb565b5090565b5b80821115620002c75760008155600101620002cc565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200037257607f821691505b602082108114156200039457634e487b7160e01b600052602260045260246000fd5b50919050565b61351480620003aa6000396000f3fe6080604052600436106103355760003560e01c80637c928fe9116101ab578063bdb9f28d116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b146108c7578063f51f96dd146108e7578063fb7ddd04146108fc578063fd24a8541461091c57610335565b8063e985e9c514610867578063f19e75d414610887578063f2c4ce1e146108a757610335565b8063cde27a35116100d1578063cde27a35146107fd578063d5abeb0114610812578063deaa59df14610827578063e268e4d31461084757610335565b8063bdb9f28d1461079d578063c87b56dd146107bd578063cb04aa1f146107dd57610335565b806395d89b4111610164578063a33441251161013e578063a334412514610740578063a475b5dd14610755578063b3ab66b01461076a578063b88d4fde1461077d57610335565b806395d89b41146106eb57806397b9bd0814610700578063a22cb4651461072057610335565b80637c928fe91461063f5780638074be981461065f578063847e21011461067f5780638c3c4b34146106945780638da5cb5b146106b6578063916d31ff146106cb57610335565b80633ccfd60b1161028557806355f804b311610223578063715018a6116101fd578063715018a6146105e0578063729ad39e146105f5578063771282f6146106155780637b0826101461062a57610335565b806355f804b3146105805780636352211e146105a057806370a08231146105c057610335565b80634c7091631161025f5780634c709163146105215780634d4c4e9914610541578063518302271461055657806355367ba91461056b57610335565b80633ccfd60b146104d757806342842e0e146104ec578063453c23101461050c57610335565b806315c316fc116102f25780631bbc1afa116102cc5780631bbc1afa1461046d5780631c03ceb51461048d5780631f2898c3146104a257806323b872dd146104b757610335565b806315c316fc1461042357806318160ddd146104385780631919fed71461044d57610335565b806301ffc9a71461033a578063033bea201461037057806306fdde0314610392578063081812fc146103b4578063095ea7b3146103e15780630b2af42e14610403575b600080fd5b34801561034657600080fd5b5061035a6103553660046127e3565b61092f565b6040516103679190612a26565b60405180910390f35b34801561037c57600080fd5b50610385610977565b6040516103679190613385565b34801561039e57600080fd5b506103a76109c8565b6040516103679190612a77565b3480156103c057600080fd5b506103d46103cf366004612861565b610a5a565b60405161036791906129d5565b3480156103ed57600080fd5b506104016103fc36600461274b565b610a9d565b005b34801561040f57600080fd5b5061040161041e36600461274b565b610b35565b34801561042f57600080fd5b50610401610b90565b34801561044457600080fd5b50610385610bea565b34801561045957600080fd5b50610401610468366004612861565b610bf0565b34801561047957600080fd5b50610401610488366004612861565b610c34565b34801561049957600080fd5b50610401610c78565b3480156104ae57600080fd5b50610401610cc8565b3480156104c357600080fd5b506104016104d236600461265d565b610d1f565b3480156104e357600080fd5b50610401610d57565b3480156104f857600080fd5b5061040161050736600461265d565b610dd4565b34801561051857600080fd5b50610385610def565b34801561052d57600080fd5b5061038561053c366004612611565b610df5565b34801561054d57600080fd5b50610385610e07565b34801561056257600080fd5b5061035a610e0d565b34801561057757600080fd5b50610401610e16565b34801561058c57600080fd5b5061040161059b36600461281b565b610e6d565b3480156105ac57600080fd5b506103d46105bb366004612861565b610ee7565b3480156105cc57600080fd5b506103856105db366004612611565b610f1c565b3480156105ec57600080fd5b50610401610f60565b34801561060157600080fd5b50610401610610366004612774565b610fab565b34801561062157600080fd5b5061038561109d565b34801561063657600080fd5b5061035a6110a3565b34801561064b57600080fd5b5061040161065a366004612861565b6110b1565b34801561066b57600080fd5b5061040161067a366004612879565b611194565b34801561068b57600080fd5b50610401611224565b3480156106a057600080fd5b506106a961127b565b6040516103679190612a4f565b3480156106c257600080fd5b506103d461128a565b3480156106d757600080fd5b506103856106e6366004612611565b611299565b3480156106f757600080fd5b506103a76112ab565b34801561070c57600080fd5b5061038561071b366004612611565b6112ba565b34801561072c57600080fd5b5061040161073b366004612711565b6112d5565b34801561074c57600080fd5b506106a96112e7565b34801561076157600080fd5b506104016112f6565b610401610778366004612861565b611344565b34801561078957600080fd5b50610401610798366004612698565b61143c565b3480156107a957600080fd5b506104016107b8366004612611565b611475565b3480156107c957600080fd5b506103a76107d8366004612861565b6114fc565b3480156107e957600080fd5b506103856107f8366004612611565b61167a565b34801561080957600080fd5b5061038561168c565b34801561081e57600080fd5b50610385611692565b34801561083357600080fd5b50610401610842366004612611565b611698565b34801561085357600080fd5b50610401610862366004612861565b6116f9565b34801561087357600080fd5b5061035a61088236600461262b565b61173d565b34801561089357600080fd5b506104016108a2366004612861565b61176d565b3480156108b357600080fd5b506104016108c236600461281b565b6117da565b3480156108d357600080fd5b506104016108e2366004612611565b61182c565b3480156108f357600080fd5b5061038561189d565b34801561090857600080fd5b50610385610917366004612611565b6118a3565b61040161092a36600461289b565b6118be565b60006001600160e01b031982166380ac58cd60e01b148061096057506001600160e01b03198216635b5e139f60e01b145b8061096f575061096f82611a67565b90505b919050565b6000610981611a80565b6001600160a01b031661099261128a565b6001600160a01b0316146109c15760405162461bcd60e51b81526004016109b8906130b1565b60405180910390fd5b50600d5490565b6060600080546109d79061341c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a039061341c565b8015610a505780601f10610a2557610100808354040283529160200191610a50565b820191906000526020600020905b815481529060010190602001808311610a3357829003601f168201915b5050505050905090565b6000610a6582611a84565b610a815760405162461bcd60e51b81526004016109b890613065565b506000908152600460205260409020546001600160a01b031690565b6000610aa882610ee7565b9050806001600160a01b0316836001600160a01b03161415610adc5760405162461bcd60e51b81526004016109b890613159565b806001600160a01b0316610aee611a80565b6001600160a01b03161480610b0a5750610b0a81610882611a80565b610b265760405162461bcd60e51b81526004016109b890612ed1565b610b308383611aa1565b505050565b610b3d611a80565b6001600160a01b0316610b4e61128a565b6001600160a01b031614610b745760405162461bcd60e51b81526004016109b8906130b1565b6001600160a01b03909116600090815260136020526040902055565b610b98611a80565b6001600160a01b0316610ba961128a565b6001600160a01b031614610bcf5760405162461bcd60e51b81526004016109b8906130b1565b601280546001919062ff0000191662010000835b0217905550565b60095490565b610bf8611a80565b6001600160a01b0316610c0961128a565b6001600160a01b031614610c2f5760405162461bcd60e51b81526004016109b8906130b1565b600b55565b610c3c611a80565b6001600160a01b0316610c4d61128a565b6001600160a01b031614610c735760405162461bcd60e51b81526004016109b8906130b1565b600755565b610c80611a80565b6001600160a01b0316610c9161128a565b6001600160a01b031614610cb75760405162461bcd60e51b81526004016109b8906130b1565b6012805461ff001916610100179055565b610cd0611a80565b6001600160a01b0316610ce161128a565b6001600160a01b031614610d075760405162461bcd60e51b81526004016109b8906130b1565b601280546002919062ff000019166201000083610be3565b610d30610d2a611a80565b82611b0f565b610d4c5760405162461bcd60e51b81526004016109b8906131cf565b610b30838383611b94565b610d5f611a80565b6001600160a01b0316610d7061128a565b6001600160a01b031614610d965760405162461bcd60e51b81526004016109b8906130b1565b600f5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610dd0573d6000803e3d6000fd5b5050565b610b308383836040518060200160405280600081525061143c565b600a5481565b60156020526000908152604090205481565b60075481565b60125460ff1681565b610e1e611a80565b6001600160a01b0316610e2f61128a565b6001600160a01b031614610e555760405162461bcd60e51b81526004016109b8906130b1565b601280546003919062ff000019166201000083610be3565b610e75611a80565b6001600160a01b0316610e8661128a565b6001600160a01b031614610eac5760405162461bcd60e51b81526004016109b8906130b1565b601254610100900460ff1615610ed45760405162461bcd60e51b81526004016109b890612ac1565b8051610dd09060109060208401906124f1565b6000818152600260205260408120546001600160a01b03168061096f5760405162461bcd60e51b81526004016109b890612f78565b60006001600160a01b038216610f445760405162461bcd60e51b81526004016109b890612f2e565b506001600160a01b031660009081526003602052604090205490565b610f68611a80565b6001600160a01b0316610f7961128a565b6001600160a01b031614610f9f5760405162461bcd60e51b81526004016109b8906130b1565b610fa96000611cc1565b565b610fb3611a80565b6001600160a01b0316610fc461128a565b6001600160a01b031614610fea5760405162461bcd60e51b81526004016109b8906130b1565b600954600854610ffa838361338e565b11156110185760405162461bcd60e51b81526004016109b89061333b565b828290506009600082825461102d919061338e565b90915550600090505b828110156110975761108584848381811061106157634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110769190612611565b611080838561338e565b611d13565b8061108f81613457565b915050611036565b50505050565b60095481565b601254610100900460ff1681565b600954336000908152601360205260409020548211156110e35760405162461bcd60e51b81526004016109b890612bdd565b6008546110f0838361338e565b111561110e5760405162461bcd60e51b81526004016109b890612e83565b336000908152601360205260408120805484929061112d9084906133d9565b9091555050336000908152601560205260408120805484929061115190849061338e565b9250508190555081600d600082825461116a919061338e565b925050819055508160096000828254611183919061338e565b90915550610dd09050338284611d2d565b61119c611a80565b6001600160a01b03166111ad61128a565b6001600160a01b0316146111d35760405162461bcd60e51b81526004016109b8906130b1565b6009546008546111e3848361338e565b11156112015760405162461bcd60e51b81526004016109b89061333b565b8260096000828254611213919061338e565b90915550610b309050828285611d2d565b61122c611a80565b6001600160a01b031661123d61128a565b6001600160a01b0316146112635760405162461bcd60e51b81526004016109b8906130b1565b601280546000919062ff000019166201000083610be3565b60125462010000900460ff1690565b6006546001600160a01b031690565b60136020526000908152604090205481565b6060600180546109d79061341c565b6001600160a01b031660009081526015602052604090205490565b610dd06112e0611a80565b8383611d58565b60125462010000900460ff1681565b6112fe611a80565b6001600160a01b031661130f61128a565b6001600160a01b0316146113355760405162461bcd60e51b81526004016109b8906130b1565b6012805460ff19166001179055565b600081116113645760405162461bcd60e51b81526004016109b890613220565b60095460085481106113885760405162461bcd60e51b81526004016109b89061312f565b600854611395838361338e565b11156113b35760405162461bcd60e51b81526004016109b8906132ed565b600260125462010000900460ff1660048111156113e057634e487b7160e01b600052602160045260246000fd5b146113fd5760405162461bcd60e51b81526004016109b890612ce0565b81600b5461140b91906133ba565b34101561142a5760405162461bcd60e51b81526004016109b890613257565b8160096000828254611183919061338e565b61144d611447611a80565b83611b0f565b6114695760405162461bcd60e51b81526004016109b8906131cf565b61109784848484611dfb565b61147d611a80565b6001600160a01b031661148e61128a565b6001600160a01b0316146114b45760405162461bcd60e51b81526004016109b8906130b1565b6001600160a01b0381166114da5760405162461bcd60e51b81526004016109b890612fc1565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60125460609060ff1661159b57601180546115169061341c565b80601f01602080910402602001604051908101604052809291908181526020018280546115429061341c565b801561158f5780601f106115645761010080835404028352916020019161158f565b820191906000526020600020905b81548152906001019060200180831161157257829003601f168201915b50505050509050610972565b6000601080546115aa9061341c565b80601f01602080910402602001604051908101604052809291908181526020018280546115d69061341c565b80156116235780601f106115f857610100808354040283529160200191611623565b820191906000526020600020905b81548152906001019060200180831161160657829003601f168201915b5050505050905060008151116116485760405180602001604052806000815250611673565b8061165284611e2e565b604051602001611663929190612965565b6040516020818303038152906040525b9392505050565b60146020526000908152604090205481565b600c5481565b60085481565b6116a0611a80565b6001600160a01b03166116b161128a565b6001600160a01b0316146116d75760405162461bcd60e51b81526004016109b8906130b1565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b611701611a80565b6001600160a01b031661171261128a565b6001600160a01b0316146117385760405162461bcd60e51b81526004016109b8906130b1565b600a55565b6001600160a01b0380831660009081526005602090815260408083209385168352929052205460ff165b92915050565b611775611a80565b6001600160a01b031661178661128a565b6001600160a01b0316146117ac5760405162461bcd60e51b81526004016109b8906130b1565b6009546008546117bc838361338e565b111561142a5760405162461bcd60e51b81526004016109b89061333b565b6117e2611a80565b6001600160a01b03166117f361128a565b6001600160a01b0316146118195760405162461bcd60e51b81526004016109b8906130b1565b8051610dd09060119060208401906124f1565b611834611a80565b6001600160a01b031661184561128a565b6001600160a01b03161461186b5760405162461bcd60e51b81526004016109b8906130b1565b6001600160a01b0381166118915760405162461bcd60e51b81526004016109b890612b97565b61189a81611cc1565b50565b600b5481565b6001600160a01b031660009081526013602052604090205490565b600160125462010000900460ff1660048111156118eb57634e487b7160e01b600052602160045260246000fd5b146119085760405162461bcd60e51b81526004016109b890612d64565b600e54604080516020601f8501819004810282018101909252838152611952926001600160a01b0316918590859081908401838280828437600092019190915250611f4992505050565b61196e5760405162461bcd60e51b81526004016109b890612df7565b6000831161198e5760405162461bcd60e51b81526004016109b89061319a565b600a54336000908152601460205260409020546119ac90859061338e565b11156119ca5760405162461bcd60e51b81526004016109b89061329a565b60075483600c546119db919061338e565b11156119f95760405162461bcd60e51b81526004016109b890612e2e565b82600c6000828254611a0b919061338e565b925050819055508260096000828254611a24919061338e565b90915550503360009081526014602052604081208054859290611a4890849061338e565b92505081905550610b303384600954611a6191906133d9565b85611d2d565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ad682610ee7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b1a82611a84565b611b365760405162461bcd60e51b81526004016109b890612dab565b6000611b4183610ee7565b9050806001600160a01b0316846001600160a01b03161480611b7c5750836001600160a01b0316611b7184610a5a565b6001600160a01b0316145b80611b8c5750611b8c818561173d565b949350505050565b826001600160a01b0316611ba782610ee7565b6001600160a01b031614611bcd5760405162461bcd60e51b81526004016109b8906130e6565b6001600160a01b038216611bf35760405162461bcd60e51b81526004016109b890612c65565b611bfe838383610b30565b611c09600082611aa1565b6001600160a01b0383166000908152600360205260408120805460019290611c329084906133d9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c6090849061338e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610dd0828260405180602001604052806000815250611fbe565b60005b8181101561109757611d4684611080838661338e565b80611d5081613457565b915050611d30565b816001600160a01b0316836001600160a01b03161415611d8a5760405162461bcd60e51b81526004016109b890612ca9565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611dee908590612a26565b60405180910390a3505050565b611e06848484611b94565b611e1284848484611ff1565b6110975760405162461bcd60e51b81526004016109b890612b45565b606081611e5357506040805180820190915260018152600360fc1b6020820152610972565b8160005b8115611e7d5780611e6781613457565b9150611e769050600a836133a6565b9150611e57565b60008167ffffffffffffffff811115611ea657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ed0576020820181803683370190505b5090505b8415611b8c57611ee56001836133d9565b9150611ef2600a86613472565b611efd90603061338e565b60f81b818381518110611f2057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f42600a866133a6565b9450611ed4565b6000803033604051602001611f5f92919061293e565b6040516020818303038152906040528051906020012090506000611f8c84611f868461210c565b9061213c565b9050806001600160a01b0316856001600160a01b03161415611fb357600192505050611767565b600092505050611767565b611fc88383612160565b611fd56000848484611ff1565b610b305760405162461bcd60e51b81526004016109b890612b45565b6000612005846001600160a01b031661223f565b1561210157836001600160a01b031663150b7a02612021611a80565b8786866040518563ffffffff1660e01b815260040161204394939291906129e9565b602060405180830381600087803b15801561205d57600080fd5b505af192505050801561208d575060408051601f3d908101601f1916820190925261208a918101906127ff565b60015b6120e7573d8080156120bb576040519150601f19603f3d011682016040523d82523d6000602084013e6120c0565b606091505b5080516120df5760405162461bcd60e51b81526004016109b890612b45565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b8c565b506001949350505050565b60008160405160200161211f91906129a4565b604051602081830303815290604052805190602001209050919050565b600080600061214b8585612245565b91509150612158816122b5565b509392505050565b6001600160a01b0382166121865760405162461bcd60e51b81526004016109b890613030565b61218f81611a84565b156121ac5760405162461bcd60e51b81526004016109b890612c2e565b6121b860008383610b30565b6001600160a01b03821660009081526003602052604081208054600192906121e190849061338e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b60008082516041141561227c5760208301516040840151606085015160001a612270878285856123e2565b945094505050506122ae565b8251604014156122a6576020830151604084015161229b8683836124c2565b9350935050506122ae565b506000905060025b9250929050565b60008160048111156122d757634e487b7160e01b600052602160045260246000fd5b14156122e25761189a565b600181600481111561230457634e487b7160e01b600052602160045260246000fd5b14156123225760405162461bcd60e51b81526004016109b890612a8a565b600281600481111561234457634e487b7160e01b600052602160045260246000fd5b14156123625760405162461bcd60e51b81526004016109b890612b0e565b600381600481111561238457634e487b7160e01b600052602160045260246000fd5b14156123a25760405162461bcd60e51b81526004016109b890612d22565b60048160048111156123c457634e487b7160e01b600052602160045260246000fd5b141561189a5760405162461bcd60e51b81526004016109b890612fee565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561241957506000905060036124b9565b8460ff16601b1415801561243157508460ff16601c14155b1561244257506000905060046124b9565b6000600187878787604051600081526020016040526040516124679493929190612a31565b6020604051602081039080840390855afa158015612489573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166124b2576000600192509250506124b9565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016124e3878288856123e2565b935093505050935093915050565b8280546124fd9061341c565b90600052602060002090601f01602090048101928261251f5760008555612565565b82601f1061253857805160ff1916838001178555612565565b82800160010185558215612565579182015b8281111561256557825182559160200191906001019061254a565b50612571929150612575565b5090565b5b808211156125715760008155600101612576565b600067ffffffffffffffff808411156125a5576125a56134b2565b604051601f8501601f1916810160200182811182821017156125c9576125c96134b2565b6040528481529150818385018610156125e157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461097257600080fd5b600060208284031215612622578081fd5b611673826125fa565b6000806040838503121561263d578081fd5b612646836125fa565b9150612654602084016125fa565b90509250929050565b600080600060608486031215612671578081fd5b61267a846125fa565b9250612688602085016125fa565b9150604084013590509250925092565b600080600080608085870312156126ad578081fd5b6126b6856125fa565b93506126c4602086016125fa565b925060408501359150606085013567ffffffffffffffff8111156126e6578182fd5b8501601f810187136126f6578182fd5b6127058782356020840161258a565b91505092959194509250565b60008060408385031215612723578182fd5b61272c836125fa565b915060208301358015158114612740578182fd5b809150509250929050565b6000806040838503121561275d578182fd5b612766836125fa565b946020939093013593505050565b60008060208385031215612786578182fd5b823567ffffffffffffffff8082111561279d578384fd5b818501915085601f8301126127b0578384fd5b8135818111156127be578485fd5b86602080830285010111156127d1578485fd5b60209290920196919550909350505050565b6000602082840312156127f4578081fd5b8135611673816134c8565b600060208284031215612810578081fd5b8151611673816134c8565b60006020828403121561282c578081fd5b813567ffffffffffffffff811115612842578182fd5b8201601f81018413612852578182fd5b611b8c8482356020840161258a565b600060208284031215612872578081fd5b5035919050565b6000806040838503121561288b578182fd5b82359150612654602084016125fa565b6000806000604084860312156128af578283fd5b83359250602084013567ffffffffffffffff808211156128cd578384fd5b818601915086601f8301126128e0578384fd5b8135818111156128ee578485fd5b8760208285010111156128ff578485fd5b6020830194508093505050509250925092565b6000815180845261292a8160208601602086016133f0565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606093841b811682529190921b16601482015260280190565b600083516129778184602088016133f0565b83519083019061298b8183602088016133f0565b64173539b7b760d91b9101908152600501949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a1c90830184612912565b9695505050505050565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6020810160058310612a7157634e487b7160e01b600052602160045260246000fd5b91905290565b6000602082526116736020830184612912565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252602d908201527f4261736520555249206368616e676520686173206265656e2064697361626c6560408201526c64207065726d616e656e746c7960981b606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526031908201527f596f7520646f6e742068617665207065726d6973696f6e20746f20667265652060408201527036b4b73a103a3430ba1030b6b7bab73a1760791b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526022908201527f4d6f6c6c793a205075626c69632073616c6520686173206e6f74206163746976604082015261329760f11b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526027908201527f4d6f6c6c793a2050726573616c65206973206e6f742063757272656e746c792060408201526630b1ba34bb329760c91b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601b908201527f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000604082015260600190565b60208082526035908201527f4d6f6c6c793a2053656c656374656420616d6f756e74206578636565647320746040820152746865206d61782070726573616c6520737570706c7960581b606082015260800190565b6020808252602e908201527f4d6f6c6c793a204d696e7420746f6f206c617267652c20657863656564696e6760408201526d20746865206d6178537570706c7960901b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526013908201527243414e2754205055542030204144445245535360681b604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526010908201526f4d6f6c6c793a20536f6c64206f75742160801b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f596f75206d757374206d696e74206174206c65617374206f6e65204e46542e00604082015260600190565b60208082526023908201527f4d6f6c6c793a20496e737566696369656e742045544820616d6f756e74207365604082015262373a1760e91b606082015260800190565b60208082526033908201527f4d6f6c6c793a20596f75206861766520657863656564656420746865206d6178604082015272207065722077616c6c657420616d6f756e742160681b606082015260800190565b6020808252602e908201527f4d6f6c6c793a2053656c656374656420616d6f756e742065786365656473207460408201526d34329036b0bc1039bab838363c9760911b606082015260800190565b6020808252602a908201527f4d6f6c6c793a20596f752063616e2774206d696e74206d6f7265207468616e206040820152696d617820737570706c7960b01b606082015260800190565b90815260200190565b600082198211156133a1576133a1613486565b500190565b6000826133b5576133b561349c565b500490565b60008160001904831182151516156133d4576133d4613486565b500290565b6000828210156133eb576133eb613486565b500390565b60005b8381101561340b5781810151838201526020016133f3565b838111156110975750506000910152565b60028104600182168061343057607f821691505b6020821081141561345157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561346b5761346b613486565b5060010190565b6000826134815761348161349c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461189a57600080fdfea2646970667358221220876e2daf5eedd46ff5d59b98825f38b6f50d1d734574608c8fc24371d07ca45c64736f6c63430008000033697066733a2f2f516d4e50454b3663716375667751635746557554544d34624736456d34506a515a456739617870424b6475517039

Deployed Bytecode

0x6080604052600436106103355760003560e01c80637c928fe9116101ab578063bdb9f28d116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b146108c7578063f51f96dd146108e7578063fb7ddd04146108fc578063fd24a8541461091c57610335565b8063e985e9c514610867578063f19e75d414610887578063f2c4ce1e146108a757610335565b8063cde27a35116100d1578063cde27a35146107fd578063d5abeb0114610812578063deaa59df14610827578063e268e4d31461084757610335565b8063bdb9f28d1461079d578063c87b56dd146107bd578063cb04aa1f146107dd57610335565b806395d89b4111610164578063a33441251161013e578063a334412514610740578063a475b5dd14610755578063b3ab66b01461076a578063b88d4fde1461077d57610335565b806395d89b41146106eb57806397b9bd0814610700578063a22cb4651461072057610335565b80637c928fe91461063f5780638074be981461065f578063847e21011461067f5780638c3c4b34146106945780638da5cb5b146106b6578063916d31ff146106cb57610335565b80633ccfd60b1161028557806355f804b311610223578063715018a6116101fd578063715018a6146105e0578063729ad39e146105f5578063771282f6146106155780637b0826101461062a57610335565b806355f804b3146105805780636352211e146105a057806370a08231146105c057610335565b80634c7091631161025f5780634c709163146105215780634d4c4e9914610541578063518302271461055657806355367ba91461056b57610335565b80633ccfd60b146104d757806342842e0e146104ec578063453c23101461050c57610335565b806315c316fc116102f25780631bbc1afa116102cc5780631bbc1afa1461046d5780631c03ceb51461048d5780631f2898c3146104a257806323b872dd146104b757610335565b806315c316fc1461042357806318160ddd146104385780631919fed71461044d57610335565b806301ffc9a71461033a578063033bea201461037057806306fdde0314610392578063081812fc146103b4578063095ea7b3146103e15780630b2af42e14610403575b600080fd5b34801561034657600080fd5b5061035a6103553660046127e3565b61092f565b6040516103679190612a26565b60405180910390f35b34801561037c57600080fd5b50610385610977565b6040516103679190613385565b34801561039e57600080fd5b506103a76109c8565b6040516103679190612a77565b3480156103c057600080fd5b506103d46103cf366004612861565b610a5a565b60405161036791906129d5565b3480156103ed57600080fd5b506104016103fc36600461274b565b610a9d565b005b34801561040f57600080fd5b5061040161041e36600461274b565b610b35565b34801561042f57600080fd5b50610401610b90565b34801561044457600080fd5b50610385610bea565b34801561045957600080fd5b50610401610468366004612861565b610bf0565b34801561047957600080fd5b50610401610488366004612861565b610c34565b34801561049957600080fd5b50610401610c78565b3480156104ae57600080fd5b50610401610cc8565b3480156104c357600080fd5b506104016104d236600461265d565b610d1f565b3480156104e357600080fd5b50610401610d57565b3480156104f857600080fd5b5061040161050736600461265d565b610dd4565b34801561051857600080fd5b50610385610def565b34801561052d57600080fd5b5061038561053c366004612611565b610df5565b34801561054d57600080fd5b50610385610e07565b34801561056257600080fd5b5061035a610e0d565b34801561057757600080fd5b50610401610e16565b34801561058c57600080fd5b5061040161059b36600461281b565b610e6d565b3480156105ac57600080fd5b506103d46105bb366004612861565b610ee7565b3480156105cc57600080fd5b506103856105db366004612611565b610f1c565b3480156105ec57600080fd5b50610401610f60565b34801561060157600080fd5b50610401610610366004612774565b610fab565b34801561062157600080fd5b5061038561109d565b34801561063657600080fd5b5061035a6110a3565b34801561064b57600080fd5b5061040161065a366004612861565b6110b1565b34801561066b57600080fd5b5061040161067a366004612879565b611194565b34801561068b57600080fd5b50610401611224565b3480156106a057600080fd5b506106a961127b565b6040516103679190612a4f565b3480156106c257600080fd5b506103d461128a565b3480156106d757600080fd5b506103856106e6366004612611565b611299565b3480156106f757600080fd5b506103a76112ab565b34801561070c57600080fd5b5061038561071b366004612611565b6112ba565b34801561072c57600080fd5b5061040161073b366004612711565b6112d5565b34801561074c57600080fd5b506106a96112e7565b34801561076157600080fd5b506104016112f6565b610401610778366004612861565b611344565b34801561078957600080fd5b50610401610798366004612698565b61143c565b3480156107a957600080fd5b506104016107b8366004612611565b611475565b3480156107c957600080fd5b506103a76107d8366004612861565b6114fc565b3480156107e957600080fd5b506103856107f8366004612611565b61167a565b34801561080957600080fd5b5061038561168c565b34801561081e57600080fd5b50610385611692565b34801561083357600080fd5b50610401610842366004612611565b611698565b34801561085357600080fd5b50610401610862366004612861565b6116f9565b34801561087357600080fd5b5061035a61088236600461262b565b61173d565b34801561089357600080fd5b506104016108a2366004612861565b61176d565b3480156108b357600080fd5b506104016108c236600461281b565b6117da565b3480156108d357600080fd5b506104016108e2366004612611565b61182c565b3480156108f357600080fd5b5061038561189d565b34801561090857600080fd5b50610385610917366004612611565b6118a3565b61040161092a36600461289b565b6118be565b60006001600160e01b031982166380ac58cd60e01b148061096057506001600160e01b03198216635b5e139f60e01b145b8061096f575061096f82611a67565b90505b919050565b6000610981611a80565b6001600160a01b031661099261128a565b6001600160a01b0316146109c15760405162461bcd60e51b81526004016109b8906130b1565b60405180910390fd5b50600d5490565b6060600080546109d79061341c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a039061341c565b8015610a505780601f10610a2557610100808354040283529160200191610a50565b820191906000526020600020905b815481529060010190602001808311610a3357829003601f168201915b5050505050905090565b6000610a6582611a84565b610a815760405162461bcd60e51b81526004016109b890613065565b506000908152600460205260409020546001600160a01b031690565b6000610aa882610ee7565b9050806001600160a01b0316836001600160a01b03161415610adc5760405162461bcd60e51b81526004016109b890613159565b806001600160a01b0316610aee611a80565b6001600160a01b03161480610b0a5750610b0a81610882611a80565b610b265760405162461bcd60e51b81526004016109b890612ed1565b610b308383611aa1565b505050565b610b3d611a80565b6001600160a01b0316610b4e61128a565b6001600160a01b031614610b745760405162461bcd60e51b81526004016109b8906130b1565b6001600160a01b03909116600090815260136020526040902055565b610b98611a80565b6001600160a01b0316610ba961128a565b6001600160a01b031614610bcf5760405162461bcd60e51b81526004016109b8906130b1565b601280546001919062ff0000191662010000835b0217905550565b60095490565b610bf8611a80565b6001600160a01b0316610c0961128a565b6001600160a01b031614610c2f5760405162461bcd60e51b81526004016109b8906130b1565b600b55565b610c3c611a80565b6001600160a01b0316610c4d61128a565b6001600160a01b031614610c735760405162461bcd60e51b81526004016109b8906130b1565b600755565b610c80611a80565b6001600160a01b0316610c9161128a565b6001600160a01b031614610cb75760405162461bcd60e51b81526004016109b8906130b1565b6012805461ff001916610100179055565b610cd0611a80565b6001600160a01b0316610ce161128a565b6001600160a01b031614610d075760405162461bcd60e51b81526004016109b8906130b1565b601280546002919062ff000019166201000083610be3565b610d30610d2a611a80565b82611b0f565b610d4c5760405162461bcd60e51b81526004016109b8906131cf565b610b30838383611b94565b610d5f611a80565b6001600160a01b0316610d7061128a565b6001600160a01b031614610d965760405162461bcd60e51b81526004016109b8906130b1565b600f5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610dd0573d6000803e3d6000fd5b5050565b610b308383836040518060200160405280600081525061143c565b600a5481565b60156020526000908152604090205481565b60075481565b60125460ff1681565b610e1e611a80565b6001600160a01b0316610e2f61128a565b6001600160a01b031614610e555760405162461bcd60e51b81526004016109b8906130b1565b601280546003919062ff000019166201000083610be3565b610e75611a80565b6001600160a01b0316610e8661128a565b6001600160a01b031614610eac5760405162461bcd60e51b81526004016109b8906130b1565b601254610100900460ff1615610ed45760405162461bcd60e51b81526004016109b890612ac1565b8051610dd09060109060208401906124f1565b6000818152600260205260408120546001600160a01b03168061096f5760405162461bcd60e51b81526004016109b890612f78565b60006001600160a01b038216610f445760405162461bcd60e51b81526004016109b890612f2e565b506001600160a01b031660009081526003602052604090205490565b610f68611a80565b6001600160a01b0316610f7961128a565b6001600160a01b031614610f9f5760405162461bcd60e51b81526004016109b8906130b1565b610fa96000611cc1565b565b610fb3611a80565b6001600160a01b0316610fc461128a565b6001600160a01b031614610fea5760405162461bcd60e51b81526004016109b8906130b1565b600954600854610ffa838361338e565b11156110185760405162461bcd60e51b81526004016109b89061333b565b828290506009600082825461102d919061338e565b90915550600090505b828110156110975761108584848381811061106157634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110769190612611565b611080838561338e565b611d13565b8061108f81613457565b915050611036565b50505050565b60095481565b601254610100900460ff1681565b600954336000908152601360205260409020548211156110e35760405162461bcd60e51b81526004016109b890612bdd565b6008546110f0838361338e565b111561110e5760405162461bcd60e51b81526004016109b890612e83565b336000908152601360205260408120805484929061112d9084906133d9565b9091555050336000908152601560205260408120805484929061115190849061338e565b9250508190555081600d600082825461116a919061338e565b925050819055508160096000828254611183919061338e565b90915550610dd09050338284611d2d565b61119c611a80565b6001600160a01b03166111ad61128a565b6001600160a01b0316146111d35760405162461bcd60e51b81526004016109b8906130b1565b6009546008546111e3848361338e565b11156112015760405162461bcd60e51b81526004016109b89061333b565b8260096000828254611213919061338e565b90915550610b309050828285611d2d565b61122c611a80565b6001600160a01b031661123d61128a565b6001600160a01b0316146112635760405162461bcd60e51b81526004016109b8906130b1565b601280546000919062ff000019166201000083610be3565b60125462010000900460ff1690565b6006546001600160a01b031690565b60136020526000908152604090205481565b6060600180546109d79061341c565b6001600160a01b031660009081526015602052604090205490565b610dd06112e0611a80565b8383611d58565b60125462010000900460ff1681565b6112fe611a80565b6001600160a01b031661130f61128a565b6001600160a01b0316146113355760405162461bcd60e51b81526004016109b8906130b1565b6012805460ff19166001179055565b600081116113645760405162461bcd60e51b81526004016109b890613220565b60095460085481106113885760405162461bcd60e51b81526004016109b89061312f565b600854611395838361338e565b11156113b35760405162461bcd60e51b81526004016109b8906132ed565b600260125462010000900460ff1660048111156113e057634e487b7160e01b600052602160045260246000fd5b146113fd5760405162461bcd60e51b81526004016109b890612ce0565b81600b5461140b91906133ba565b34101561142a5760405162461bcd60e51b81526004016109b890613257565b8160096000828254611183919061338e565b61144d611447611a80565b83611b0f565b6114695760405162461bcd60e51b81526004016109b8906131cf565b61109784848484611dfb565b61147d611a80565b6001600160a01b031661148e61128a565b6001600160a01b0316146114b45760405162461bcd60e51b81526004016109b8906130b1565b6001600160a01b0381166114da5760405162461bcd60e51b81526004016109b890612fc1565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60125460609060ff1661159b57601180546115169061341c565b80601f01602080910402602001604051908101604052809291908181526020018280546115429061341c565b801561158f5780601f106115645761010080835404028352916020019161158f565b820191906000526020600020905b81548152906001019060200180831161157257829003601f168201915b50505050509050610972565b6000601080546115aa9061341c565b80601f01602080910402602001604051908101604052809291908181526020018280546115d69061341c565b80156116235780601f106115f857610100808354040283529160200191611623565b820191906000526020600020905b81548152906001019060200180831161160657829003601f168201915b5050505050905060008151116116485760405180602001604052806000815250611673565b8061165284611e2e565b604051602001611663929190612965565b6040516020818303038152906040525b9392505050565b60146020526000908152604090205481565b600c5481565b60085481565b6116a0611a80565b6001600160a01b03166116b161128a565b6001600160a01b0316146116d75760405162461bcd60e51b81526004016109b8906130b1565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b611701611a80565b6001600160a01b031661171261128a565b6001600160a01b0316146117385760405162461bcd60e51b81526004016109b8906130b1565b600a55565b6001600160a01b0380831660009081526005602090815260408083209385168352929052205460ff165b92915050565b611775611a80565b6001600160a01b031661178661128a565b6001600160a01b0316146117ac5760405162461bcd60e51b81526004016109b8906130b1565b6009546008546117bc838361338e565b111561142a5760405162461bcd60e51b81526004016109b89061333b565b6117e2611a80565b6001600160a01b03166117f361128a565b6001600160a01b0316146118195760405162461bcd60e51b81526004016109b8906130b1565b8051610dd09060119060208401906124f1565b611834611a80565b6001600160a01b031661184561128a565b6001600160a01b03161461186b5760405162461bcd60e51b81526004016109b8906130b1565b6001600160a01b0381166118915760405162461bcd60e51b81526004016109b890612b97565b61189a81611cc1565b50565b600b5481565b6001600160a01b031660009081526013602052604090205490565b600160125462010000900460ff1660048111156118eb57634e487b7160e01b600052602160045260246000fd5b146119085760405162461bcd60e51b81526004016109b890612d64565b600e54604080516020601f8501819004810282018101909252838152611952926001600160a01b0316918590859081908401838280828437600092019190915250611f4992505050565b61196e5760405162461bcd60e51b81526004016109b890612df7565b6000831161198e5760405162461bcd60e51b81526004016109b89061319a565b600a54336000908152601460205260409020546119ac90859061338e565b11156119ca5760405162461bcd60e51b81526004016109b89061329a565b60075483600c546119db919061338e565b11156119f95760405162461bcd60e51b81526004016109b890612e2e565b82600c6000828254611a0b919061338e565b925050819055508260096000828254611a24919061338e565b90915550503360009081526014602052604081208054859290611a4890849061338e565b92505081905550610b303384600954611a6191906133d9565b85611d2d565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ad682610ee7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b1a82611a84565b611b365760405162461bcd60e51b81526004016109b890612dab565b6000611b4183610ee7565b9050806001600160a01b0316846001600160a01b03161480611b7c5750836001600160a01b0316611b7184610a5a565b6001600160a01b0316145b80611b8c5750611b8c818561173d565b949350505050565b826001600160a01b0316611ba782610ee7565b6001600160a01b031614611bcd5760405162461bcd60e51b81526004016109b8906130e6565b6001600160a01b038216611bf35760405162461bcd60e51b81526004016109b890612c65565b611bfe838383610b30565b611c09600082611aa1565b6001600160a01b0383166000908152600360205260408120805460019290611c329084906133d9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c6090849061338e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610dd0828260405180602001604052806000815250611fbe565b60005b8181101561109757611d4684611080838661338e565b80611d5081613457565b915050611d30565b816001600160a01b0316836001600160a01b03161415611d8a5760405162461bcd60e51b81526004016109b890612ca9565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611dee908590612a26565b60405180910390a3505050565b611e06848484611b94565b611e1284848484611ff1565b6110975760405162461bcd60e51b81526004016109b890612b45565b606081611e5357506040805180820190915260018152600360fc1b6020820152610972565b8160005b8115611e7d5780611e6781613457565b9150611e769050600a836133a6565b9150611e57565b60008167ffffffffffffffff811115611ea657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ed0576020820181803683370190505b5090505b8415611b8c57611ee56001836133d9565b9150611ef2600a86613472565b611efd90603061338e565b60f81b818381518110611f2057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f42600a866133a6565b9450611ed4565b6000803033604051602001611f5f92919061293e565b6040516020818303038152906040528051906020012090506000611f8c84611f868461210c565b9061213c565b9050806001600160a01b0316856001600160a01b03161415611fb357600192505050611767565b600092505050611767565b611fc88383612160565b611fd56000848484611ff1565b610b305760405162461bcd60e51b81526004016109b890612b45565b6000612005846001600160a01b031661223f565b1561210157836001600160a01b031663150b7a02612021611a80565b8786866040518563ffffffff1660e01b815260040161204394939291906129e9565b602060405180830381600087803b15801561205d57600080fd5b505af192505050801561208d575060408051601f3d908101601f1916820190925261208a918101906127ff565b60015b6120e7573d8080156120bb576040519150601f19603f3d011682016040523d82523d6000602084013e6120c0565b606091505b5080516120df5760405162461bcd60e51b81526004016109b890612b45565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b8c565b506001949350505050565b60008160405160200161211f91906129a4565b604051602081830303815290604052805190602001209050919050565b600080600061214b8585612245565b91509150612158816122b5565b509392505050565b6001600160a01b0382166121865760405162461bcd60e51b81526004016109b890613030565b61218f81611a84565b156121ac5760405162461bcd60e51b81526004016109b890612c2e565b6121b860008383610b30565b6001600160a01b03821660009081526003602052604081208054600192906121e190849061338e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b60008082516041141561227c5760208301516040840151606085015160001a612270878285856123e2565b945094505050506122ae565b8251604014156122a6576020830151604084015161229b8683836124c2565b9350935050506122ae565b506000905060025b9250929050565b60008160048111156122d757634e487b7160e01b600052602160045260246000fd5b14156122e25761189a565b600181600481111561230457634e487b7160e01b600052602160045260246000fd5b14156123225760405162461bcd60e51b81526004016109b890612a8a565b600281600481111561234457634e487b7160e01b600052602160045260246000fd5b14156123625760405162461bcd60e51b81526004016109b890612b0e565b600381600481111561238457634e487b7160e01b600052602160045260246000fd5b14156123a25760405162461bcd60e51b81526004016109b890612d22565b60048160048111156123c457634e487b7160e01b600052602160045260246000fd5b141561189a5760405162461bcd60e51b81526004016109b890612fee565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561241957506000905060036124b9565b8460ff16601b1415801561243157508460ff16601c14155b1561244257506000905060046124b9565b6000600187878787604051600081526020016040526040516124679493929190612a31565b6020604051602081039080840390855afa158015612489573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166124b2576000600192509250506124b9565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016124e3878288856123e2565b935093505050935093915050565b8280546124fd9061341c565b90600052602060002090601f01602090048101928261251f5760008555612565565b82601f1061253857805160ff1916838001178555612565565b82800160010185558215612565579182015b8281111561256557825182559160200191906001019061254a565b50612571929150612575565b5090565b5b808211156125715760008155600101612576565b600067ffffffffffffffff808411156125a5576125a56134b2565b604051601f8501601f1916810160200182811182821017156125c9576125c96134b2565b6040528481529150818385018610156125e157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461097257600080fd5b600060208284031215612622578081fd5b611673826125fa565b6000806040838503121561263d578081fd5b612646836125fa565b9150612654602084016125fa565b90509250929050565b600080600060608486031215612671578081fd5b61267a846125fa565b9250612688602085016125fa565b9150604084013590509250925092565b600080600080608085870312156126ad578081fd5b6126b6856125fa565b93506126c4602086016125fa565b925060408501359150606085013567ffffffffffffffff8111156126e6578182fd5b8501601f810187136126f6578182fd5b6127058782356020840161258a565b91505092959194509250565b60008060408385031215612723578182fd5b61272c836125fa565b915060208301358015158114612740578182fd5b809150509250929050565b6000806040838503121561275d578182fd5b612766836125fa565b946020939093013593505050565b60008060208385031215612786578182fd5b823567ffffffffffffffff8082111561279d578384fd5b818501915085601f8301126127b0578384fd5b8135818111156127be578485fd5b86602080830285010111156127d1578485fd5b60209290920196919550909350505050565b6000602082840312156127f4578081fd5b8135611673816134c8565b600060208284031215612810578081fd5b8151611673816134c8565b60006020828403121561282c578081fd5b813567ffffffffffffffff811115612842578182fd5b8201601f81018413612852578182fd5b611b8c8482356020840161258a565b600060208284031215612872578081fd5b5035919050565b6000806040838503121561288b578182fd5b82359150612654602084016125fa565b6000806000604084860312156128af578283fd5b83359250602084013567ffffffffffffffff808211156128cd578384fd5b818601915086601f8301126128e0578384fd5b8135818111156128ee578485fd5b8760208285010111156128ff578485fd5b6020830194508093505050509250925092565b6000815180845261292a8160208601602086016133f0565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606093841b811682529190921b16601482015260280190565b600083516129778184602088016133f0565b83519083019061298b8183602088016133f0565b64173539b7b760d91b9101908152600501949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a1c90830184612912565b9695505050505050565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6020810160058310612a7157634e487b7160e01b600052602160045260246000fd5b91905290565b6000602082526116736020830184612912565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252602d908201527f4261736520555249206368616e676520686173206265656e2064697361626c6560408201526c64207065726d616e656e746c7960981b606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526031908201527f596f7520646f6e742068617665207065726d6973696f6e20746f20667265652060408201527036b4b73a103a3430ba1030b6b7bab73a1760791b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526022908201527f4d6f6c6c793a205075626c69632073616c6520686173206e6f74206163746976604082015261329760f11b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526027908201527f4d6f6c6c793a2050726573616c65206973206e6f742063757272656e746c792060408201526630b1ba34bb329760c91b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601b908201527f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000604082015260600190565b60208082526035908201527f4d6f6c6c793a2053656c656374656420616d6f756e74206578636565647320746040820152746865206d61782070726573616c6520737570706c7960581b606082015260800190565b6020808252602e908201527f4d6f6c6c793a204d696e7420746f6f206c617267652c20657863656564696e6760408201526d20746865206d6178537570706c7960901b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526013908201527243414e2754205055542030204144445245535360681b604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526010908201526f4d6f6c6c793a20536f6c64206f75742160801b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f596f75206d757374206d696e74206174206c65617374206f6e65204e46542e00604082015260600190565b60208082526023908201527f4d6f6c6c793a20496e737566696369656e742045544820616d6f756e74207365604082015262373a1760e91b606082015260800190565b60208082526033908201527f4d6f6c6c793a20596f75206861766520657863656564656420746865206d6178604082015272207065722077616c6c657420616d6f756e742160681b606082015260800190565b6020808252602e908201527f4d6f6c6c793a2053656c656374656420616d6f756e742065786365656473207460408201526d34329036b0bc1039bab838363c9760911b606082015260800190565b6020808252602a908201527f4d6f6c6c793a20596f752063616e2774206d696e74206d6f7265207468616e206040820152696d617820737570706c7960b01b606082015260800190565b90815260200190565b600082198211156133a1576133a1613486565b500190565b6000826133b5576133b561349c565b500490565b60008160001904831182151516156133d4576133d4613486565b500290565b6000828210156133eb576133eb613486565b500390565b60005b8381101561340b5781810151838201526020016133f3565b838111156110975750506000910152565b60028104600182168061343057607f821691505b6020821081141561345157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561346b5761346b613486565b5060010190565b6000826134815761348161349c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461189a57600080fdfea2646970667358221220876e2daf5eedd46ff5d59b98825f38b6f50d1d734574608c8fc24371d07ca45c64736f6c63430008000033

Deployed Bytecode Sourcemap

47531:8289:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34773:305;;;;;;;;;;-1:-1:-1;34773:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53612:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35718:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37277:221::-;;;;;;;;;;-1:-1:-1;37277:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36800:411::-;;;;;;;;;;-1:-1:-1;36800:411:0;;;;;:::i;:::-;;:::i;:::-;;55151:119;;;;;;;;;;-1:-1:-1;55151:119:0;;;;;:::i;:::-;;:::i;53821:95::-;;;;;;;;;;;;;:::i;49065:92::-;;;;;;;;;;;;;:::i;55045:98::-;;;;;;;;;;-1:-1:-1;55045:98:0;;;;;:::i;:::-;;:::i;54232:101::-;;;;;;;;;;-1:-1:-1;54232:101:0;;;;;:::i;:::-;;:::i;55278:73::-;;;;;;;;;;;;;:::i;53924:89::-;;;;;;;;;;;;;:::i;38027:339::-;;;;;;;;;;-1:-1:-1;38027:339:0;;;;;:::i;:::-;;:::i;48781:157::-;;;;;;;;;;;;;:::i;38437:185::-;;;;;;;;;;-1:-1:-1;38437:185:0;;;;;:::i;:::-;;:::i;47753:31::-;;;;;;;;;;;;;:::i;48574:46::-;;;;;;;;;;-1:-1:-1;48574:46:0;;;;;:::i;:::-;;:::i;47636:33::-;;;;;;;;;;;;;:::i;48230:28::-;;;;;;;;;;;;;:::i;54021:91::-;;;;;;;;;;;;;:::i;54552:195::-;;;;;;;;;;-1:-1:-1;54552:195:0;;;;;:::i;:::-;;:::i;35412:239::-;;;;;;;;;;-1:-1:-1;35412:239:0;;;;;:::i;:::-;;:::i;35142:208::-;;;;;;;;;;-1:-1:-1;35142:208:0;;;;;:::i;:::-;;:::i;15761:103::-;;;;;;;;;;;;;:::i;53154:423::-;;;;;;;;;;-1:-1:-1;53154:423:0;;;;;:::i;:::-;;:::i;47714:32::-;;;;;;;;;;;;;:::i;48265:30::-;;;;;;;;;;;;;:::i;50146:600::-;;;;;;;;;;-1:-1:-1;50146:600:0;;;;;:::i;:::-;;:::i;52477:339::-;;;;;;;;;;-1:-1:-1;52477:339:0;;;;;:::i;:::-;;:::i;53720:93::-;;;;;;;;;;;;;:::i;48961:96::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;15110:87::-;;;;;;;;;;;;;:::i;48462:49::-;;;;;;;;;;-1:-1:-1;48462:49:0;;;;;:::i;:::-;;:::i;35887:104::-;;;;;;;;;;;;;:::i;49294:115::-;;;;;;;;;;-1:-1:-1;49294:115:0;;;;;:::i;:::-;;:::i;37570:155::-;;;;;;;;;;-1:-1:-1;37570:155:0;;;;;:::i;:::-;;:::i;48423:30::-;;;;;;;;;;;;;:::i;54341:69::-;;;;;;;;;;;;;:::i;51783:686::-;;;;;;:::i;:::-;;:::i;38693:328::-;;;;;;;;;;-1:-1:-1;38693:328:0;;;;;:::i;:::-;;:::i;54755:180::-;;;;;;;;;;-1:-1:-1;54755:180:0;;;;;:::i;:::-;;:::i;55375:442::-;;;;;;;;;;-1:-1:-1;55375:442:0;;;;;:::i;:::-;;:::i;48518:49::-;;;;;;;;;;-1:-1:-1;48518:49:0;;;;;:::i;:::-;;:::i;47838:27::-;;;;;;;;;;;;;:::i;47676:31::-;;;;;;;;;;;;;:::i;54943:94::-;;;;;;;;;;-1:-1:-1;54943:94:0;;;;;:::i;:::-;;:::i;54120:104::-;;;;;;;;;;-1:-1:-1;54120:104:0;;;;;:::i;:::-;;:::i;37796:164::-;;;;;;;;;;-1:-1:-1;37796:164:0;;;;;:::i;:::-;;:::i;52824:322::-;;;;;;;;;;-1:-1:-1;52824:322:0;;;;;:::i;:::-;;:::i;54418:126::-;;;;;;;;;;-1:-1:-1;54418:126:0;;;;;:::i;:::-;;:::i;16019:201::-;;;;;;;;;;-1:-1:-1;16019:201:0;;;;;:::i;:::-;;:::i;47793:36::-;;;;;;;;;;;;;:::i;49165:121::-;;;;;;;;;;-1:-1:-1;49165:121:0;;;;;:::i;:::-;;:::i;50756:1019::-;;;;;;:::i;:::-;;:::i;34773:305::-;34875:4;-1:-1:-1;;;;;;34912:40:0;;-1:-1:-1;;;34912:40:0;;:105;;-1:-1:-1;;;;;;;34969:48:0;;-1:-1:-1;;;34969:48:0;34912:105;:158;;;;35034:36;35058:11;35034:23;:36::i;:::-;34892:178;;34773:305;;;;:::o;53612:100::-;53668:7;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;53694:10:0::1;::::0;53612:100;:::o;35718:::-;35772:13;35805:5;35798:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35718:100;:::o;37277:221::-;37353:7;37381:16;37389:7;37381;:16::i;:::-;37373:73;;;;-1:-1:-1;;;37373:73:0;;;;;;;:::i;:::-;-1:-1:-1;37466:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37466:24:0;;37277:221::o;36800:411::-;36881:13;36897:23;36912:7;36897:14;:23::i;:::-;36881:39;;36945:5;-1:-1:-1;;;;;36939:11:0;:2;-1:-1:-1;;;;;36939:11:0;;;36931:57;;;;-1:-1:-1;;;36931:57:0;;;;;;;:::i;:::-;37039:5;-1:-1:-1;;;;;37023:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;37023:21:0;;:62;;;;37048:37;37065:5;37072:12;:10;:12::i;37048:37::-;37001:168;;;;-1:-1:-1;;;37001:168:0;;;;;;;:::i;:::-;37182:21;37191:2;37195:7;37182:8;:21::i;:::-;36800:411;;;:::o;55151:119::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55234:22:0;;::::1;;::::0;;;:14:::1;:22;::::0;;;;:28;55151:119::o;53821:95::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;53875:8:::1;:33:::0;;53886:22:::1;::::0;53875:8;-1:-1:-1;;53875:33:0::1;::::0;53886:22;53875:33:::1;;;;;;53821:95::o:0;49065:92::-;49136:13;;49065:92;:::o;55045:98::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;55114:9:::1;:21:::0;55045:98::o;54232:101::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;54304:11:::1;:21:::0;54232:101::o;55278:73::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;55326:10:::1;:17:::0;;-1:-1:-1;;55326:17:0::1;;;::::0;;55278:73::o;53924:89::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;53975:8:::1;:30:::0;;53986:19:::1;::::0;53975:8;-1:-1:-1;;53975:30:0::1;::::0;53986:19;53975:30:::1;::::0;38027:339;38222:41;38241:12;:10;:12::i;:::-;38255:7;38222:18;:41::i;:::-;38214:103;;;;-1:-1:-1;;;38214:103:0;;;;;;;:::i;:::-;38330:28;38340:4;38346:2;38350:7;38330:9;:28::i;48781:157::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;48901:6:::1;::::0;48892:38:::1;::::0;48848:23:::1;::::0;-1:-1:-1;;;;;48901:6:0::1;::::0;48892:38;::::1;;;::::0;48848:23;;48829:16:::1;48892:38:::0;48829:16;48892:38;48848:23;48901:6;48892:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;15401:1;48781:157::o:0;38437:185::-;38575:39;38592:4;38598:2;38602:7;38575:39;;;;;;;;;;;;:16;:39::i;47753:31::-;;;;:::o;48574:46::-;;;;;;;;;;;;;:::o;47636:33::-;;;;:::o;48230:28::-;;;;;;:::o;54021:91::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;54072:8:::1;:32:::0;;54083:21:::1;::::0;54072:8;-1:-1:-1;;54072:32:0::1;::::0;54083:21;54072:32:::1;::::0;54552:195;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;54636:10:::1;::::0;::::1;::::0;::::1;;;:19;54627:78;;;;-1:-1:-1::0;;;54627:78:0::1;;;;;;;:::i;:::-;54718:21:::0;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;35412:239::-:0;35484:7;35520:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35520:16:0;35555:19;35547:73;;;;-1:-1:-1;;;35547:73:0;;;;;;;:::i;35142:208::-;35214:7;-1:-1:-1;;;;;35242:19:0;;35234:74;;;;-1:-1:-1;;;35234:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35326:16:0;;;;;:9;:16;;;;;;;35142:208::o;15761:103::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;15826:30:::1;15853:1;15826:18;:30::i;:::-;15761:103::o:0;53154:423::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;53248:13:::1;::::0;53323:9:::1;::::0;53294:25:::1;53303:9:::0;53248:13;53294:25:::1;:::i;:::-;:38;;53272:130;;;;-1:-1:-1::0;;;53272:130:0::1;;;;;;;:::i;:::-;53432:9;;:16;;53415:13;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;53466:9:0::1;::::0;-1:-1:-1;53461:109:0::1;53481:20:::0;;::::1;53461:109;;;53523:35;53533:9;;53543:1;53533:12;;;;;-1:-1:-1::0;;;53533:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53547:10;53556:1:::0;53547:6;:10:::1;:::i;:::-;53523:9;:35::i;:::-;53503:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53461:109;;;;15401:1;53154:423:::0;;:::o;47714:32::-;;;;:::o;48265:30::-;;;;;;;;;:::o;50146:600::-;50218:13;;50281:10;50201:14;50265:28;;;:14;:28;;;;;;:39;-1:-1:-1;50265:39:0;50244:137;;;;-1:-1:-1;;;50244:137:0;;;;;;;:::i;:::-;50436:9;;50416:16;50425:7;50416:6;:16;:::i;:::-;:29;;50394:125;;;;-1:-1:-1;;;50394:125:0;;;;;;;:::i;:::-;50548:10;50532:28;;;;:14;:28;;;;;:39;;50564:7;;50532:28;:39;;50564:7;;50532:39;:::i;:::-;;;;-1:-1:-1;;50595:10:0;50582:25;;;;:11;:25;;;;;:36;;50611:7;;50582:25;:36;;50611:7;;50582:36;:::i;:::-;;;;;;;;50645:7;50631:10;;:21;;;;;;;:::i;:::-;;;;;;;;50680:7;50663:13;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;50700:38:0;;-1:-1:-1;50710:10:0;50722:6;50730:7;50700:9;:38::i;52477:339::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;52577:13:::1;::::0;52644:9:::1;::::0;52625:15:::1;52634:6:::0;52577:13;52625:15:::1;:::i;:::-;:28;;52603:120;;;;-1:-1:-1::0;;;52603:120:0::1;;;;;;;:::i;:::-;52753:6;52736:13;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;52772:36:0::1;::::0;-1:-1:-1;52783:8:0;52793:6;52801;52772:9:::1;:36::i;53720:93::-:0;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;53773:8:::1;:32:::0;;53784:21:::1;::::0;53773:8;-1:-1:-1;;53773:32:0::1;::::0;53784:21;53773:32:::1;::::0;48961:96;49041:8;;;;;;;;48961:96::o;15110:87::-;15183:6;;-1:-1:-1;;;;;15183:6:0;15110:87;:::o;48462:49::-;;;;;;;;;;;;;:::o;35887:104::-;35943:13;35976:7;35969:14;;;;;:::i;49294:115::-;-1:-1:-1;;;;;49382:19:0;49355:7;49382:19;;;:11;:19;;;;;;;49294:115::o;37570:155::-;37665:52;37684:12;:10;:12::i;:::-;37698:8;37708;37665:18;:52::i;48423:30::-;;;;;;;;;:::o;54341:69::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;54387:8:::1;:15:::0;;-1:-1:-1;;54387:15:0::1;54398:4;54387:15;::::0;;54341:69::o;51783:686::-;51869:1;51860:6;:10;51851:55;;;;-1:-1:-1;;;51851:55:0;;;;;;;:::i;:::-;51944:13;;51988:9;;51979:18;;51970:49;;;;-1:-1:-1;;;51970:49:0;;;;;;;:::i;:::-;52058:9;;52039:15;52048:6;52039;:15;:::i;:::-;:28;;52030:88;;;;-1:-1:-1;;;52030:88:0;;;;;;;:::i;:::-;52165:19;52153:8;;;;;;;:31;;;;;;-1:-1:-1;;;52153:31:0;;;;;;;;;;52131:115;;;;-1:-1:-1;;;52131:115:0;;;;;;;:::i;:::-;52306:6;52294:9;;:18;;;;:::i;:::-;52281:9;:31;;52259:116;;;;-1:-1:-1;;;52259:116:0;;;;;;;:::i;:::-;52405:6;52388:13;;:23;;;;;;;:::i;38693:328::-;38868:41;38887:12;:10;:12::i;:::-;38901:7;38868:18;:41::i;:::-;38860:103;;;;-1:-1:-1;;;38860:103:0;;;;;;;:::i;:::-;38974:39;38988:4;38994:2;38998:7;39007:5;38974:13;:39::i;54755:180::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54839:25:0;::::1;54831:57;;;;-1:-1:-1::0;;;54831:57:0::1;;;;;;;:::i;:::-;54899:14;:28:::0;;-1:-1:-1;;;;;;54899:28:0::1;-1:-1:-1::0;;;;;54899:28:0;;;::::1;::::0;;;::::1;::::0;;54755:180::o;55375:442::-;55519:8;;55484:13;;55519:8;;55515:71;;55560:14;55553:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55515:71;55598:28;55629:7;55598:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55698:1;55673:14;55667:28;:32;:142;;;;;;;;;;;;;;;;;55743:14;55759:18;:7;:16;:18::i;:::-;55726:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55667:142;55647:162;55375:442;-1:-1:-1;;;55375:442:0:o;48518:49::-;;;;;;;;;;;;;:::o;47838:27::-;;;;:::o;47676:31::-;;;;:::o;54943:94::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;55010:6:::1;:19:::0;;-1:-1:-1;;;;;;55010:19:0::1;-1:-1:-1::0;;;;;55010:19:0;;;::::1;::::0;;;::::1;::::0;;54943:94::o;54120:104::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;54194:12:::1;:22:::0;54120:104::o;37796:164::-;-1:-1:-1;;;;;37917:25:0;;;37893:4;37917:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37796:164;;;;;:::o;52824:322::-;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;52906:13:::1;::::0;52973:9:::1;::::0;52954:15:::1;52963:6:::0;52906:13;52954:15:::1;:::i;:::-;:28;;52932:120;;;;-1:-1:-1::0;;;52932:120:0::1;;;;;;;:::i;54418:126::-:0;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;54504:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;16019:201::-:0;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15330:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15330:23:0;;15322:68;;;;-1:-1:-1;;;15322:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16108:22:0;::::1;16100:73;;;;-1:-1:-1::0;;;16100:73:0::1;;;;;;;:::i;:::-;16184:28;16203:8;16184:18;:28::i;:::-;16019:201:::0;:::o;47793:36::-;;;;:::o;49165:121::-;-1:-1:-1;;;;;49256:22:0;49229:7;49256:22;;;:14;:22;;;;;;;49165:121::o;50756:1019::-;50916:22;50904:8;;;;;;;:34;;;;;;-1:-1:-1;;;50904:34:0;;;;;;;;;;50882:123;;;;-1:-1:-1;;;50882:123:0;;;;;;;:::i;:::-;51076:14;;51040:93;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51076:14:0;;51109:9;;;;;;51040:93;;51109:9;;;;51040:93;;;;;;;;;-1:-1:-1;51040:17:0;;-1:-1:-1;;;51040:93:0:i;:::-;51018:170;;;;-1:-1:-1;;;51018:170:0;;;;;;;:::i;:::-;51218:1;51209:6;:10;51201:55;;;;-1:-1:-1;;;51201:55:0;;;;;;;:::i;:::-;51332:12;;51307:10;51291:28;;;;:14;:28;;;;;;:37;;51322:6;;51291:37;:::i;:::-;:53;;51269:154;;;;-1:-1:-1;;;51269:154:0;;;;;;;:::i;:::-;51491:11;;51481:6;51466:12;;:21;;;;:::i;:::-;:36;;51444:139;;;;-1:-1:-1;;;51444:139:0;;;;;;;:::i;:::-;51612:6;51596:12;;:22;;;;;;;:::i;:::-;;;;;;;;51646:6;51629:13;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;51679:10:0;51663:28;;;;:14;:28;;;;;:38;;51695:6;;51663:28;:38;;51695:6;;51663:38;:::i;:::-;;;;;;;;51714:53;51724:10;51752:6;51736:13;;:22;;;;:::i;:::-;51760:6;51714:9;:53::i;27542:157::-;-1:-1:-1;;;;;;27651:40:0;;-1:-1:-1;;;27651:40:0;27542:157;;;:::o;13834:98::-;13914:10;13834:98;:::o;40531:127::-;40596:4;40620:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40620:16:0;:30;;;40531:127::o;44513:174::-;44588:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44588:29:0;-1:-1:-1;;;;;44588:29:0;;;;;;;;:24;;44642:23;44588:24;44642:14;:23::i;:::-;-1:-1:-1;;;;;44633:46:0;;;;;;;;;;;44513:174;;:::o;40825:348::-;40918:4;40943:16;40951:7;40943;:16::i;:::-;40935:73;;;;-1:-1:-1;;;40935:73:0;;;;;;;:::i;:::-;41019:13;41035:23;41050:7;41035:14;:23::i;:::-;41019:39;;41088:5;-1:-1:-1;;;;;41077:16:0;:7;-1:-1:-1;;;;;41077:16:0;;:51;;;;41121:7;-1:-1:-1;;;;;41097:31:0;:20;41109:7;41097:11;:20::i;:::-;-1:-1:-1;;;;;41097:31:0;;41077:51;:87;;;;41132:32;41149:5;41156:7;41132:16;:32::i;:::-;41069:96;40825:348;-1:-1:-1;;;;40825:348:0:o;43817:578::-;43976:4;-1:-1:-1;;;;;43949:31:0;:23;43964:7;43949:14;:23::i;:::-;-1:-1:-1;;;;;43949:31:0;;43941:85;;;;-1:-1:-1;;;43941:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44045:16:0;;44037:65;;;;-1:-1:-1;;;44037:65:0;;;;;;;:::i;:::-;44115:39;44136:4;44142:2;44146:7;44115:20;:39::i;:::-;44219:29;44236:1;44240:7;44219:8;:29::i;:::-;-1:-1:-1;;;;;44261:15:0;;;;;;:9;:15;;;;;:20;;44280:1;;44261:15;:20;;44280:1;;44261:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44292:13:0;;;;;;:9;:13;;;;;:18;;44309:1;;44292:13;:18;;44309:1;;44292:18;:::i;:::-;;;;-1:-1:-1;;44321:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44321:21:0;-1:-1:-1;;;;;44321:21:0;;;;;;;;;44360:27;;44321:16;;44360:27;;;;;;;43817:578;;;:::o;16380:191::-;16473:6;;;-1:-1:-1;;;;;16490:17:0;;;-1:-1:-1;;;;;;16490:17:0;;;;;;;16523:40;;16473:6;;;16490:17;16473:6;;16523:40;;16454:16;;16523:40;16380:191;;:::o;41515:110::-;41591:26;41601:2;41605:7;41591:26;;;;;;;;;;;;:9;:26::i;49850:217::-;49974:9;49969:89;49993:6;49989:1;:10;49969:89;;;50021:25;50031:2;50035:10;50044:1;50035:6;:10;:::i;50021:25::-;50001:3;;;;:::i;:::-;;;;49969:89;;44829:315;44984:8;-1:-1:-1;;;;;44975:17:0;:5;-1:-1:-1;;;;;44975:17:0;;;44967:55;;;;-1:-1:-1;;;44967:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45033:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;45033:46:0;;;;;;;45095:41;;;;;45033:46;;45095:41;:::i;:::-;;;;;;;;44829:315;;;:::o;39903:::-;40060:28;40070:4;40076:2;40080:7;40060:9;:28::i;:::-;40107:48;40130:4;40136:2;40140:7;40149:5;40107:22;:48::i;:::-;40099:111;;;;-1:-1:-1;;;40099:111:0;;;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;;2103:53;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;-1:-1:-1;;;2332:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;-1:-1:-1;;;2420:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;49417:404;49501:4;49517:19;49589:4;49596:10;49563:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49539:79;;;;;;49517:101;;49631:14;49648:48;49693:2;49648:36;:11;:34;:36::i;:::-;:44;;:48::i;:::-;49631:65;;49722:6;-1:-1:-1;;;;;49713:15:0;:5;-1:-1:-1;;;;;49713:15:0;;49709:105;;;49753:4;49746:11;;;;;;49709:105;49797:5;49790:12;;;;;;41852:321;41982:18;41988:2;41992:7;41982:5;:18::i;:::-;42033:54;42064:1;42068:2;42072:7;42081:5;42033:22;:54::i;:::-;42011:154;;;;-1:-1:-1;;;42011:154:0;;;;;;;:::i;45709:799::-;45864:4;45885:15;:2;-1:-1:-1;;;;;45885:13:0;;:15::i;:::-;45881:620;;;45937:2;-1:-1:-1;;;;;45921:36:0;;45958:12;:10;:12::i;:::-;45972:4;45978:7;45987:5;45921:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45921:72:0;;;;;;;;-1:-1:-1;;45921:72:0;;;;;;;;;;;;:::i;:::-;;;45917:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46163:13:0;;46159:272;;46206:60;;-1:-1:-1;;;46206:60:0;;;;;;;:::i;46159:272::-;46381:6;46375:13;46366:6;46362:2;46358:15;46351:38;45917:529;-1:-1:-1;;;;;;46044:51:0;-1:-1:-1;;;46044:51:0;;-1:-1:-1;46037:58:0;;45881:620;-1:-1:-1;46485:4:0;45709:799;;;;;;:::o;11840:269::-;11909:7;12095:4;12042:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;12032:69;;;;;;12025:76;;11840:269;;;:::o;7991:231::-;8069:7;8090:17;8109:18;8131:27;8142:4;8148:9;8131:10;:27::i;:::-;8089:69;;;;8169:18;8181:5;8169:11;:18::i;:::-;-1:-1:-1;8205:9:0;7991:231;-1:-1:-1;;;7991:231:0:o;42509:382::-;-1:-1:-1;;;;;42589:16:0;;42581:61;;;;-1:-1:-1;;;42581:61:0;;;;;;;:::i;:::-;42662:16;42670:7;42662;:16::i;:::-;42661:17;42653:58;;;;-1:-1:-1;;;42653:58:0;;;;;;;:::i;:::-;42724:45;42753:1;42757:2;42761:7;42724:20;:45::i;:::-;-1:-1:-1;;;;;42782:13:0;;;;;;:9;:13;;;;;:18;;42799:1;;42782:13;:18;;42799:1;;42782:18;:::i;:::-;;;;-1:-1:-1;;42811:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42811:21:0;-1:-1:-1;;;;;42811:21:0;;;;;;;;42850:33;;42811:16;;;42850:33;;42811:16;;42850:33;42509:382;;:::o;17398:387::-;17721:20;17769:8;;;17398:387::o;5881:1308::-;5962:7;5971:12;6196:9;:16;6216:2;6196:22;6192:990;;;6492:4;6477:20;;6471:27;6542:4;6527:20;;6521:27;6600:4;6585:20;;6579:27;6235:9;6571:36;6643:25;6654:4;6571:36;6471:27;6521;6643:10;:25::i;:::-;6636:32;;;;;;;;;6192:990;6690:9;:16;6710:2;6690:22;6686:496;;;6965:4;6950:20;;6944:27;7016:4;7001:20;;6995:27;7058:23;7069:4;6944:27;6995;7058:10;:23::i;:::-;7051:30;;;;;;;;6686:496;-1:-1:-1;7130:1:0;;-1:-1:-1;7134:35:0;6686:496;5881:1308;;;;;:::o;4152:643::-;4230:20;4221:5;:29;;;;;;-1:-1:-1;;;4221:29:0;;;;;;;;;;4217:571;;;4267:7;;4217:571;4328:29;4319:5;:38;;;;;;-1:-1:-1;;;4319:38:0;;;;;;;;;;4315:473;;;4374:34;;-1:-1:-1;;;4374:34:0;;;;;;;:::i;4315:473::-;4439:35;4430:5;:44;;;;;;-1:-1:-1;;;4430:44:0;;;;;;;;;;4426:362;;;4491:41;;-1:-1:-1;;;4491:41:0;;;;;;;:::i;4426:362::-;4563:30;4554:5;:39;;;;;;-1:-1:-1;;;4554:39:0;;;;;;;;;;4550:238;;;4610:44;;-1:-1:-1;;;4610:44:0;;;;;;;:::i;4550:238::-;4685:30;4676:5;:39;;;;;;-1:-1:-1;;;4676:39:0;;;;;;;;;;4672:116;;;4732:44;;-1:-1:-1;;;4732:44:0;;;;;;;:::i;9490:1632::-;9621:7;;10555:66;10542:79;;10538:163;;;-1:-1:-1;10654:1:0;;-1:-1:-1;10658:30:0;10638:51;;10538:163;10715:1;:7;;10720:2;10715:7;;:18;;;;;10726:1;:7;;10731:2;10726:7;;10715:18;10711:102;;;-1:-1:-1;10766:1:0;;-1:-1:-1;10770:30:0;10750:51;;10711:102;10910:14;10927:24;10937:4;10943:1;10946;10949;10927:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;10927:24:0;;-1:-1:-1;;10927:24:0;;;-1:-1:-1;;;;;;;10966:20:0;;10962:103;;11019:1;11023:29;11003:50;;;;;;;10962:103;11085:6;-1:-1:-1;11093:20:0;;-1:-1:-1;9490:1632:0;;;;;;;;:::o;8485:391::-;8599:7;;-1:-1:-1;;;;;8700:75:0;;8802:3;8798:12;;;8812:2;8794:21;8843:25;8854:4;8794:21;8863:1;8700:75;8843:10;:25::i;:::-;8836:32;;;;;;8485:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:666::-;;;3134:2;3122:9;3113:7;3109:23;3105:32;3102:2;;;3155:6;3147;3140:22;3102:2;3200:9;3187:23;3229:18;3270:2;3262:6;3259:14;3256:2;;;3291:6;3283;3276:22;3256:2;3334:6;3323:9;3319:22;3309:32;;3379:7;3372:4;3368:2;3364:13;3360:27;3350:2;;3406:6;3398;3391:22;3350:2;3451;3438:16;3477:2;3469:6;3466:14;3463:2;;;3498:6;3490;3483:22;3463:2;3557:7;3552:2;3546;3538:6;3534:15;3530:2;3526:24;3522:33;3519:46;3516:2;;;3583:6;3575;3568:22;3516:2;3619;3611:11;;;;;3641:6;;-1:-1:-1;3092:561:1;;-1:-1:-1;;;;3092:561:1:o;3658:257::-;;3769:2;3757:9;3748:7;3744:23;3740:32;3737:2;;;3790:6;3782;3775:22;3737:2;3834:9;3821:23;3853:32;3879:5;3853:32;:::i;3920:261::-;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4063:6;4055;4048:22;4010:2;4100:9;4094:16;4119:32;4145:5;4119:32;:::i;4186:482::-;;4308:2;4296:9;4287:7;4283:23;4279:32;4276:2;;;4329:6;4321;4314:22;4276:2;4374:9;4361:23;4407:18;4399:6;4396:30;4393:2;;;4444:6;4436;4429:22;4393:2;4472:22;;4525:4;4517:13;;4513:27;-1:-1:-1;4503:2:1;;4559:6;4551;4544:22;4503:2;4587:75;4654:7;4649:2;4636:16;4631:2;4627;4623:11;4587:75;:::i;4673:190::-;;4785:2;4773:9;4764:7;4760:23;4756:32;4753:2;;;4806:6;4798;4791:22;4753:2;-1:-1:-1;4834:23:1;;4743:120;-1:-1:-1;4743:120:1:o;4868:266::-;;;4997:2;4985:9;4976:7;4972:23;4968:32;4965:2;;;5018:6;5010;5003:22;4965:2;5059:9;5046:23;5036:33;;5088:40;5124:2;5113:9;5109:18;5088:40;:::i;5139:709::-;;;;5287:2;5275:9;5266:7;5262:23;5258:32;5255:2;;;5308:6;5300;5293:22;5255:2;5349:9;5336:23;5326:33;;5410:2;5399:9;5395:18;5382:32;5433:18;5474:2;5466:6;5463:14;5460:2;;;5495:6;5487;5480:22;5460:2;5538:6;5527:9;5523:22;5513:32;;5583:7;5576:4;5572:2;5568:13;5564:27;5554:2;;5610:6;5602;5595:22;5554:2;5655;5642:16;5681:2;5673:6;5670:14;5667:2;;;5702:6;5694;5687:22;5667:2;5752:7;5747:2;5738:6;5734:2;5730:15;5726:24;5723:37;5720:2;;;5778:6;5770;5763:22;5720:2;5814;5810;5806:11;5796:21;;5836:6;5826:16;;;;;5245:603;;;;;:::o;5853:259::-;;5934:5;5928:12;5961:6;5956:3;5949:19;5977:63;6033:6;6026:4;6021:3;6017:14;6010:4;6003:5;5999:16;5977:63;:::i;:::-;6094:2;6073:15;-1:-1:-1;;6069:29:1;6060:39;;;;6101:4;6056:50;;5904:208;-1:-1:-1;;5904:208:1:o;6117:333::-;-1:-1:-1;;6344:2:1;6340:15;;;6336:24;;6324:37;;6395:15;;;;6391:24;6386:2;6377:12;;6370:46;6441:2;6432:12;;6264:186::o;6455:637::-;;6773:6;6767:13;6789:53;6835:6;6830:3;6823:4;6815:6;6811:17;6789:53;:::i;:::-;6905:13;;6864:16;;;;6927:57;6905:13;6864:16;6961:4;6949:17;;6927:57;:::i;:::-;-1:-1:-1;;;7006:20:1;;7035:22;;;7084:1;7073:13;;6743:349;-1:-1:-1;;;;6743:349:1:o;7097:380::-;7339:66;7327:79;;7431:2;7422:12;;7415:28;;;;7468:2;7459:12;;7317:160::o;7482:203::-;-1:-1:-1;;;;;7646:32:1;;;;7628:51;;7616:2;7601:18;;7583:102::o;7690:490::-;-1:-1:-1;;;;;7959:15:1;;;7941:34;;8011:15;;8006:2;7991:18;;7984:43;8058:2;8043:18;;8036:34;;;8106:3;8101:2;8086:18;;8079:31;;;7690:490;;8127:47;;8154:19;;8146:6;8127:47;:::i;:::-;8119:55;7893:287;-1:-1:-1;;;;;;7893:287:1:o;8185:187::-;8350:14;;8343:22;8325:41;;8313:2;8298:18;;8280:92::o;8377:398::-;8604:25;;;8677:4;8665:17;;;;8660:2;8645:18;;8638:45;8714:2;8699:18;;8692:34;8757:2;8742:18;;8735:34;8591:3;8576:19;;8558:217::o;8780:347::-;8931:2;8916:18;;8964:1;8953:13;;8943:2;;9009:10;9004:3;9000:20;8997:1;8990:31;9044:4;9041:1;9034:15;9072:4;9069:1;9062:15;8943:2;9096:25;;;8898:229;:::o;9132:221::-;;9281:2;9270:9;9263:21;9301:46;9343:2;9332:9;9328:18;9320:6;9301:46;:::i;9358:348::-;9560:2;9542:21;;;9599:2;9579:18;;;9572:30;9638:26;9633:2;9618:18;;9611:54;9697:2;9682:18;;9532:174::o;9711:409::-;9913:2;9895:21;;;9952:2;9932:18;;;9925:30;9991:34;9986:2;9971:18;;9964:62;-1:-1:-1;;;10057:2:1;10042:18;;10035:43;10110:3;10095:19;;9885:235::o;10125:355::-;10327:2;10309:21;;;10366:2;10346:18;;;10339:30;10405:33;10400:2;10385:18;;10378:61;10471:2;10456:18;;10299:181::o;10485:414::-;10687:2;10669:21;;;10726:2;10706:18;;;10699:30;10765:34;10760:2;10745:18;;10738:62;-1:-1:-1;;;10831:2:1;10816:18;;10809:48;10889:3;10874:19;;10659:240::o;10904:402::-;11106:2;11088:21;;;11145:2;11125:18;;;11118:30;11184:34;11179:2;11164:18;;11157:62;-1:-1:-1;;;11250:2:1;11235:18;;11228:36;11296:3;11281:19;;11078:228::o;11311:413::-;11513:2;11495:21;;;11552:2;11532:18;;;11525:30;11591:34;11586:2;11571:18;;11564:62;-1:-1:-1;;;11657:2:1;11642:18;;11635:47;11714:3;11699:19;;11485:239::o;11729:352::-;11931:2;11913:21;;;11970:2;11950:18;;;11943:30;12009;12004:2;11989:18;;11982:58;12072:2;12057:18;;11903:178::o;12086:400::-;12288:2;12270:21;;;12327:2;12307:18;;;12300:30;12366:34;12361:2;12346:18;;12339:62;-1:-1:-1;;;12432:2:1;12417:18;;12410:34;12476:3;12461:19;;12260:226::o;12491:349::-;12693:2;12675:21;;;12732:2;12712:18;;;12705:30;12771:27;12766:2;12751:18;;12744:55;12831:2;12816:18;;12665:175::o;12845:398::-;13047:2;13029:21;;;13086:2;13066:18;;;13059:30;13125:34;13120:2;13105:18;;13098:62;-1:-1:-1;;;13191:2:1;13176:18;;13169:32;13233:3;13218:19;;13019:224::o;13248:398::-;13450:2;13432:21;;;13489:2;13469:18;;;13462:30;13528:34;13523:2;13508:18;;13501:62;-1:-1:-1;;;13594:2:1;13579:18;;13572:32;13636:3;13621:19;;13422:224::o;13651:403::-;13853:2;13835:21;;;13892:2;13872:18;;;13865:30;13931:34;13926:2;13911:18;;13904:62;-1:-1:-1;;;13997:2:1;13982:18;;13975:37;14044:3;14029:19;;13825:229::o;14059:408::-;14261:2;14243:21;;;14300:2;14280:18;;;14273:30;14339:34;14334:2;14319:18;;14312:62;-1:-1:-1;;;14405:2:1;14390:18;;14383:42;14457:3;14442:19;;14233:234::o;14472:351::-;14674:2;14656:21;;;14713:2;14693:18;;;14686:30;14752:29;14747:2;14732:18;;14725:57;14814:2;14799:18;;14646:177::o;14828:417::-;15030:2;15012:21;;;15069:2;15049:18;;;15042:30;15108:34;15103:2;15088:18;;15081:62;-1:-1:-1;;;15174:2:1;15159:18;;15152:51;15235:3;15220:19;;15002:243::o;15250:410::-;15452:2;15434:21;;;15491:2;15471:18;;;15464:30;15530:34;15525:2;15510:18;;15503:62;-1:-1:-1;;;15596:2:1;15581:18;;15574:44;15650:3;15635:19;;15424:236::o;15665:420::-;15867:2;15849:21;;;15906:2;15886:18;;;15879:30;15945:34;15940:2;15925:18;;15918:62;16016:26;16011:2;15996:18;;15989:54;16075:3;16060:19;;15839:246::o;16090:406::-;16292:2;16274:21;;;16331:2;16311:18;;;16304:30;16370:34;16365:2;16350:18;;16343:62;-1:-1:-1;;;16436:2:1;16421:18;;16414:40;16486:3;16471:19;;16264:232::o;16501:405::-;16703:2;16685:21;;;16742:2;16722:18;;;16715:30;16781:34;16776:2;16761:18;;16754:62;-1:-1:-1;;;16847:2:1;16832:18;;16825:39;16896:3;16881:19;;16675:231::o;16911:343::-;17113:2;17095:21;;;17152:2;17132:18;;;17125:30;-1:-1:-1;;;17186:2:1;17171:18;;17164:49;17245:2;17230:18;;17085:169::o;17259:398::-;17461:2;17443:21;;;17500:2;17480:18;;;17473:30;17539:34;17534:2;17519:18;;17512:62;-1:-1:-1;;;17605:2:1;17590:18;;17583:32;17647:3;17632:19;;17433:224::o;17662:356::-;17864:2;17846:21;;;17883:18;;;17876:30;17942:34;17937:2;17922:18;;17915:62;18009:2;17994:18;;17836:182::o;18023:408::-;18225:2;18207:21;;;18264:2;18244:18;;;18237:30;18303:34;18298:2;18283:18;;18276:62;-1:-1:-1;;;18369:2:1;18354:18;;18347:42;18421:3;18406:19;;18197:234::o;18436:356::-;18638:2;18620:21;;;18657:18;;;18650:30;18716:34;18711:2;18696:18;;18689:62;18783:2;18768:18;;18610:182::o;18797:405::-;18999:2;18981:21;;;19038:2;19018:18;;;19011:30;19077:34;19072:2;19057:18;;19050:62;-1:-1:-1;;;19143:2:1;19128:18;;19121:39;19192:3;19177:19;;18971:231::o;19207:340::-;19409:2;19391:21;;;19448:2;19428:18;;;19421:30;-1:-1:-1;;;19482:2:1;19467:18;;19460:46;19538:2;19523:18;;19381:166::o;19552:397::-;19754:2;19736:21;;;19793:2;19773:18;;;19766:30;19832:34;19827:2;19812:18;;19805:62;-1:-1:-1;;;19898:2:1;19883:18;;19876:31;19939:3;19924:19;;19726:223::o;19954:356::-;20156:2;20138:21;;;20175:18;;;20168:30;20234:34;20229:2;20214:18;;20207:62;20301:2;20286:18;;20128:182::o;20315:413::-;20517:2;20499:21;;;20556:2;20536:18;;;20529:30;20595:34;20590:2;20575:18;;20568:62;-1:-1:-1;;;20661:2:1;20646:18;;20639:47;20718:3;20703:19;;20489:239::o;20733:355::-;20935:2;20917:21;;;20974:2;20954:18;;;20947:30;21013:33;21008:2;20993:18;;20986:61;21079:2;21064:18;;20907:181::o;21093:399::-;21295:2;21277:21;;;21334:2;21314:18;;;21307:30;21373:34;21368:2;21353:18;;21346:62;-1:-1:-1;;;21439:2:1;21424:18;;21417:33;21482:3;21467:19;;21267:225::o;21497:415::-;21699:2;21681:21;;;21738:2;21718:18;;;21711:30;21777:34;21772:2;21757:18;;21750:62;-1:-1:-1;;;21843:2:1;21828:18;;21821:49;21902:3;21887:19;;21671:241::o;21917:410::-;22119:2;22101:21;;;22158:2;22138:18;;;22131:30;22197:34;22192:2;22177:18;;22170:62;-1:-1:-1;;;22263:2:1;22248:18;;22241:44;22317:3;22302:19;;22091:236::o;22332:406::-;22534:2;22516:21;;;22573:2;22553:18;;;22546:30;22612:34;22607:2;22592:18;;22585:62;-1:-1:-1;;;22678:2:1;22663:18;;22656:40;22728:3;22713:19;;22506:232::o;22743:177::-;22889:25;;;22877:2;22862:18;;22844:76::o;22925:128::-;;22996:1;22992:6;22989:1;22986:13;22983:2;;;23002:18;;:::i;:::-;-1:-1:-1;23038:9:1;;22973:80::o;23058:120::-;;23124:1;23114:2;;23129:18;;:::i;:::-;-1:-1:-1;23163:9:1;;23104:74::o;23183:168::-;;23289:1;23285;23281:6;23277:14;23274:1;23271:21;23266:1;23259:9;23252:17;23248:45;23245:2;;;23296:18;;:::i;:::-;-1:-1:-1;23336:9:1;;23235:116::o;23356:125::-;;23424:1;23421;23418:8;23415:2;;;23429:18;;:::i;:::-;-1:-1:-1;23466:9:1;;23405:76::o;23486:258::-;23558:1;23568:113;23582:6;23579:1;23576:13;23568:113;;;23658:11;;;23652:18;23639:11;;;23632:39;23604:2;23597:10;23568:113;;;23699:6;23696:1;23693:13;23690:2;;;-1:-1:-1;;23734:1:1;23716:16;;23709:27;23539:205::o;23749:380::-;23834:1;23824:12;;23881:1;23871:12;;;23892:2;;23946:4;23938:6;23934:17;23924:27;;23892:2;23999;23991:6;23988:14;23968:18;23965:38;23962:2;;;24045:10;24040:3;24036:20;24033:1;24026:31;24080:4;24077:1;24070:15;24108:4;24105:1;24098:15;23962:2;;23804:325;;;:::o;24134:135::-;;-1:-1:-1;;24194:17:1;;24191:2;;;24214:18;;:::i;:::-;-1:-1:-1;24261:1:1;24250:13;;24181:88::o;24274:112::-;;24332:1;24322:2;;24337:18;;:::i;:::-;-1:-1:-1;24371:9:1;;24312:74::o;24391:127::-;24452:10;24447:3;24443:20;24440:1;24433:31;24483:4;24480:1;24473:15;24507:4;24504:1;24497:15;24523:127;24584:10;24579:3;24575:20;24572:1;24565:31;24615:4;24612:1;24605:15;24639:4;24636:1;24629:15;24655:127;24716:10;24711:3;24707:20;24704:1;24697:31;24747:4;24744:1;24737:15;24771:4;24768:1;24761:15;24787:133;-1:-1:-1;;;;;;24863:32:1;;24853:43;;24843:2;;24910:1;24907;24900:12

Swarm Source

ipfs://876e2daf5eedd46ff5d59b98825f38b6f50d1d734574608c8fc24371d07ca45c
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.