ETH Price: $3,250.61 (+3.48%)
Gas: 6 Gwei

Token

Molly Secret Collection (MOLLYSECRET)
 

Overview

Max Total Supply

888 MOLLYSECRET

Holders

339

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MOLLYSECRET
0x2af6d6ec3a49443d71729f184c3df65b827411d9
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
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-26
*/

// 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/MollySecret/MollySecret.sol

//SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.0;





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

    uint256 public MAX_PRESALE = 200;
    uint256 public MAX_FREE = 488;
    uint256 public maxSupply = 888;

    uint256 public currentSupply = 0;
    uint256 public maxPerWallet = 3;

    uint256 public salePrice = 0.1 ether;
    uint256 public presalePrice = 0.075 ether;

    uint256 public presaleCount;

    uint256 public freeMinted;

    //Placeholders
    address private presaleAddress = address(0xb8A0800157d8583ba59485E9f4346a01b47fFD98);
    address private freeAddress = address(0xE17519ADA87671D6F5fEd05fb51c6d06cE1a844C);
    address private wallet = address(0xE0F6Bb10e17Ae2fEcD114d43603482fcEa5A9654);

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

    bool public revealed = false;
    bool public baseLocked = false;
    bool public marketOpened = false;
    bool public freeMintOpened = 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 Secret Collection", "MOLLYSECRET")
    {
        transferOwnership(msg.sender);
        workflow = WorkflowStatus.Before;

        initFree();
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(marketOpened, 'The sale of NFTs on the marketplaces has not been opened yet.');
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    function approve(address to, uint256 tokenId) public virtual override {
        require(marketOpened, 'The sale of NFTs on the marketplaces has not been opened yet.');
        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);
    }

    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, bytes calldata signature) external {
        //Free mint check
        require( 
            freeMintOpened, 
            "Free mint is not opened yet." 
        );

        //Check free mint signature
        require(
            validateSignature(
                freeAddress,
                signature
            ),
            "SIGNATURE_VALIDATION_FAILED"
        );

        uint256 supply = currentSupply;
        uint256 allowedAmount = 1;

        if( freeMintAccess[ msg.sender ] > 0 ) {
            allowedAmount = freeMintAccess[ msg.sender ];
        } 

        require( 
            freeMintLog[ msg.sender ] + _amount <= allowedAmount, 
            "You dont have permision to free mint that amount." 
        );

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

        require(
            freeMinted + _amount <= MAX_FREE,
            "Molly: Mint too large, exceeding the free mint 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");

        //Max per wallet check
        require(
            presaleMintLog[ msg.sender ] + amount <= maxPerWallet,
            "Molly: You have exceeded the max per wallet amount!"
        );

        //Price check
        require(
            msg.value >= presalePrice * amount,
            "Molly: Insuficient ETH amount sent."
        );
        
        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);
        }
    }

    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 openFreeMint() public onlyOwner {
        freeMintOpened = true;
    }
    
    function stopFreeMint() public onlyOwner {
        freeMintOpened = false;
    }

    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 setPresalePrice(uint256 _newPrice) public onlyOwner {
        presalePrice = _newPrice;
    }
    
    function setFreeMintAccess(address _acc, uint256 _am ) public onlyOwner {
        freeMintAccess[ _acc ] = _am;
    }

    //Lock base security - your nfts can never be changed.
    function lockBase() public onlyOwner {
        baseLocked = true;
    }

    //Once opened, it can not be closed again
    function openMarket() public onlyOwner {
        marketOpened = 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'))
                : "";
    }

    function initFree() internal {
        freeMintAccess[ address(0x3fEdc94dB76395a83982277203cB5789ABa955b4) ] = 19;
        freeMintAccess[ address(0xdFA7ae04064eE82378b01FDe8Fcd1aE72cE957a8) ] = 53;
        freeMintAccess[ address(0x4c1447148B00692bFd46b9f67A26be44Caa115fA) ] = 11;
        freeMintAccess[ address(0x27F419ea59873fDed5aa65220792EDB6187b5036) ] = 8;
        freeMintAccess[ address(0x793089C3170C6968a7ea0cA42b3E58a12C3F7c22) ] = 8;
        freeMintAccess[ address(0x4a9b4cea73531Ebbe64922639683574104e72E4E) ] = 5;
        freeMintAccess[ address(0xE5d08078CA78C9B14101f16fcACbEE8818D06Bfa) ] = 5;
        freeMintAccess[ address(0x919D316475DD4B894E2926Fe2c24B329d8Ade524) ] = 4;
        freeMintAccess[ address(0xC24838b9077720a30935A73C17d18872E570D7c9) ] = 4;
        freeMintAccess[ address(0x522dC68b2fd2da341d1d25595101E27118B232bD) ] = 4;
        freeMintAccess[ address(0x2bBD55313F6aFF47638DFe9CbCe59c3428A8C969) ] = 4;
        freeMintAccess[ address(0xc2Ad53Dcdb5A82ce0ed9F165De1BC614031Ff729) ] = 4;
        freeMintAccess[ address(0xCd06439f77C95dCcb5becA93CD59037A11688888) ] = 3;
        freeMintAccess[ address(0x8813df11Cf5DDc4cFb234eD7Bf78b2CfA9a63Ce5) ] = 3;
        freeMintAccess[ address(0xE170dE7864c63A2442C6FBf5Fff8322D5c72D4fe) ] = 3;
        freeMintAccess[ address(0xc650846f6D9C7E0EE2A4EaAD6f4Be09789eC7141) ] = 3;
        freeMintAccess[ address(0xcC0862A45c1c446E62FB99387cEa44Ef4C4FC2D4) ] = 3;
        freeMintAccess[ address(0x2132F5a587163540E0858c3258A6813d31fde053) ] = 3;
        freeMintAccess[ address(0x2910d2fc6DFcBb75D07C5c1307aD5314D33B386E) ] = 3;
        freeMintAccess[ address(0xd8777f3f65E84CCdca6a4f2C4dCDC1a11030132c) ] = 3;
        freeMintAccess[ address(0xECd1E3E5531f5494bbA65E1788E6C216E7E6bC3D) ] = 2;
        freeMintAccess[ address(0x255e0776F7Fe144d500e644ef2865Cf52b40e6C0) ] = 2;
        freeMintAccess[ address(0xE0F6Bb10e17Ae2fEcD114d43603482fcEa5A9654) ] = 3;
        freeMintAccess[ address(0xC6Ac567b250b986acAE49A842Dad7865dA4be3a0) ] = 3;
        freeMintAccess[ address(0x3CB1FE91005B4B92F59D99D2611A0f3C6Ca1aBbb) ] = 2;
        freeMintAccess[ address(0xCE5443fE2C6B2542C1331Bed2d82f0dd9c14ebbe) ] = 2;
        freeMintAccess[ address(0x6BFc87A9559F0d2129C9A418821A6F1Be09d1991) ] = 2;
        freeMintAccess[ address(0xBaA3f0f0983267D1B9847B6328eDa968Aa5cB0e5) ] = 2;
        freeMintAccess[ address(0xdE694b3D3DDC92914F87c8618B067a6306BAcEDA) ] = 2;
        freeMintAccess[ address(0xa215495dB3a2923c74BF570F5253e5Bc05247635) ] = 2;
        freeMintAccess[ address(0xDEFfF6c7681afBE3f0C12A4b2a6E1d23a46a4614) ] = 2;
        freeMintAccess[ address(0x08528a318b20e6213d1b848Baef381B3819c139b) ] = 2;
        freeMintAccess[ address(0x545152C6c3077579702d60A1764a405575F395B2) ] = 2;
        freeMintAccess[ address(0x6D1AA0EbCe51657e901CC77bD9f05594eB2CA50C) ] = 2;
        freeMintAccess[ address(0xc70A3Ad498E0Db94d0752cBF05dC4210aCDa0d1F) ] = 2;
        freeMintAccess[ address(0x92b449114420c1b3F10324491727De57809f9Cc8) ] = 2;
        freeMintAccess[ address(0xFc045bFbA2Cc210993DA7D0e5240575Cd4292558) ] = 2;
        freeMintAccess[ address(0x03D98243C825b799E518e1AA4c9314E6614896b2) ] = 2;
        freeMintAccess[ address(0x5c8aD9343c76CCE594cB3B663410DD2fa1aC0e78) ] = 2;
        freeMintAccess[ address(0x05120B86e5ABFEC60a3ba7AbF60D74CF9a7d49e9) ] = 2;
        freeMintAccess[ address(0x7226a4ce2023D5E1228FA55C325bC6D83686c9B7) ] = 2;
        freeMintAccess[ address(0xdC8A96B8613C7f4834F1abC5cf52b0c6FC0730A2) ] = 2;
        freeMintAccess[ address(0x0ACD3b41e5B21e8b23b2ED054645316a9B1Db287) ] = 2;
        freeMintAccess[ address(0x40E5529fc270566dD00272af0Bfa684C230cb210) ] = 2;
        freeMintAccess[ address(0x2487faF298eC13EF92B696DECc2FE46fe8197AFa) ] = 2;
        freeMintAccess[ address(0x94c1CB2cecb2a0e9BE3A8C24e11507BE5Ebce172) ] = 2;
    }

}

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_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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"},{"internalType":"bytes","name":"signature","type":"bytes"}],"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":[],"name":"freeMintOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMinted","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":"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":"marketOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"openFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openMarket","outputs":[],"stateMutability":"nonpayable","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":[],"name":"presalePrice","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":"setPresalePrice","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":[],"name":"stopFreeMint","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"}]

60c86007556101e86008556103786009556000600a556003600b5567016345785d8a0000600c5567010a741a46278000600d55601080546001600160a01b031990811673b8a0800157d8583ba59485e9f4346a01b47ffd981790915560118054821673e17519ada87671d6f5fed05fb51c6d06ce1a844c1790556012805490911673e0f6bb10e17ae2fecd114d43603482fcea5a965417905560e060405260356080818152906200445160a0398051620000c29160149160209091019062000926565b506015805463ffffffff19169055348015620000dd57600080fd5b50604080518082018252601781527f4d6f6c6c792053656372657420436f6c6c656374696f6e00000000000000000060208083019182528351808501909452600b84526a1353d3131654d150d4915560aa1b908401528151919291620001469160009162000926565b5080516200015c90600190602084019062000926565b5050506200017962000173620001a160201b60201c565b620001a5565b6200018433620001f7565b6015805460ff60201b191690556200019b6200027d565b62000a84565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000201620001a1565b6001600160a01b03166200021462000917565b6001600160a01b031614620002465760405162461bcd60e51b81526004016200023d9062000a12565b60405180910390fd5b6001600160a01b0381166200026f5760405162461bcd60e51b81526004016200023d90620009cc565b6200027a81620001a5565b50565b601660205260137f9f040721e692574deb9d83dd415f2c46e571c58436f466e040419995022141035560357f3050fb4a4008960fc3fa880973d299ba4fe8d86688cf5519fcccc5654f25259855600b7fbbe55d2dfd7261113b2c1a572c50f14a505490b0ee5ad922a0249d53911356a55560087fb561d55d29fe71ccac3ecbc0dda1196ecec4a98304e5ac9ae28028d942448c9e8190557f16faea1e0aa91589cab70643700124b4b3fedb6495c0974b4f0e64dfb457d40e5560057fb6f2238f164f3dd13ede46957f5f35a58491aca25aeac82af6595d97c791e8158190557f81a4554162257917b089ba7722b7b99861b478da87285f16629623970b6c2a105560047f9cc81bc00023b230779e9c62d4f4fe963b67151cc805173021c09a3fbe236c1b8190557f13caaf2b118bfeabbc8316bf45350799a89b223e4b99a6b768cd9db32b58d8a38190557fa49815e881e69f783a1af2ce6d9ec1682a4ef005bbe2ae968dd1954b32d5718d8190557f6738bb4b7ee0bb2be1ae1e95506ad41be64d8103af5aa6d55ddd09e4cbe01cd28190557f138e263134c7d93675d30f1c623fdef92d002b34b358a31d8672dd8c9ddc9f855560037f362cc164fc91606d949a802eb6b0d90f307731d1dab77180305ea6c95ebc1ba58190557f45acc966d8acb6f3f0536dde0a306832437afd7f91e97633858fd58bd1d97b6b8190557fee48447122377d658c4fae477f58d7b9148375393b173dc7fa589da24d468f478190557fd7720b2baa6176bcb2fb1da9d29023321fdcd7c18a55cd0ef600d6e68ce1ae898190557f621621512bef6ad603af40618ec48c97862a43aa5d48f403bc5e321a70468f568190557f88540eda4371b2244b1d075ce3bd2b685c8a954d70d8aac563c87c0bd8663ab08190557f60e5bec68ab553af0cf02432efc31b854039efd4a28258d73bc91bc3dc8c4d9f8190557fad02ca46eee9e350eefde4d9847e56db45c49a2ca9a8617b7d7ddbe650004c1b81905560027f5e9e55cc86d2415164ea63410a5070cc6748a770482c08ee332e2865e800c9b18190557f4ea0188dfbff96bf3660301b838617b231e8dec59e40b07da657ee5b5ca5fabb8190557f8ce1f69fa7f83b56e488d691d4f6565413968996aed4b2f87a7b921767bab7308290557f50f6966f0c5d80f85f38325009ef41c8bef4ce4e0fdcc6f00550fe442f811277919091557f0dc67d541304da6d77d9a11da00954c98b63f4dbe4d905b92540f272fb751ee38190557ffed03bd8b6d2b5ca5b6403fa01467a21df02be6c7c59db22147b3822609233128190557f5eff4a12169a17a036e1cc22253a991741bf029fbf200833530b62c4b202853d8190557fca24384671f7b0055daacfe109f14fab5cc15de322c6448dd1298547a2ed6c818190557f9fc5ff551b9408043a8b35c2aadf4420c65a1ea8fb690bb2a7879e52362168ea8190557f9ee41ab4e2b143a0aa921efc5f70aa3b79b2be9c562a7e810eb0d9efdc17cba28190557fa8607b8e43d0936f881d0ec34213f2bac22713da5c54452a5e938e607483f3aa8190557fcc0c71f4a831a3ca866fc816a9a8ace95269b580bd69ec88f865336ae67f203d8190557fa6b92e1ac8fe4437b505c40ecf843f05dd036b4f7e113d320cad21564395b3df8190557fcfbd148c865e52756a4554c247f66bcaf109a4d4bcdc29e48d9632add5e6458b8190557f3a8d1f06d382ad98ad85895069a895382276db43ea959e2c6054fef0222a3f798190557f7e05b32558eaf5890923d3dd64317411a5515d26bae9223d57a5517f7dbc1fc48190557f99ddcb56f2953f2ab6c83777443c5cec0b52d9b8dc0eba37a28e8c4ab049962e8190557faab992ead2245096d07795de13019c163b959cdd9d2535460e954a211a6092b48190557f4417a3d910feb20b37ffcc520283f0123cea3b5b89bf64019aafa2f17ea90a278190557fc34de29e34f5170b084efde7492b39c643d1a7e8f39a405f7c674de184ea78068190557f7454c21a3cd7d9b6ed017f29128c96b31022d9b2466dcb4db41e893099c585ae8190557f3df3209b33dec78c20e19c7fbdf7f7880bce2efbef7a4cce19efef5058e235a58190557f72bc7a45a305af5d7cb20378a3b8c6fce733387893759f251edf342e0005a1998190557fc69384b2b991ec252a063508a8ef55e6353add48c66e8d0a9607bad5717594248190557fc767de2bffacd3b47c1180348342740df6467e141a195eda2e0b241eb61cacfe8190557394c1cb2cecb2a0e9be3a8c24e11507be5ebce1726000527f3f0bad70fdb93d76eedf23552298e7191461d5a8caa0155c803e770d6b457eb755565b6006546001600160a01b031690565b828054620009349062000a47565b90600052602060002090601f016020900481019282620009585760008555620009a3565b82601f106200097357805160ff1916838001178555620009a3565b82800160010185558215620009a3579182015b82811115620009a357825182559160200191906001019062000986565b50620009b1929150620009b5565b5090565b5b80821115620009b15760008155600101620009b6565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60028104600182168062000a5c57607f821691505b6020821081141562000a7e57634e487b7160e01b600052602260045260246000fd5b50919050565b6139bd8062000a946000396000f3fe6080604052600436106103ac5760003560e01c8063817415c4116101e7578063c87b56dd1161010d578063e985e9c5116100a0578063f2fde38b1161006f578063f2fde38b146109f1578063f51f96dd14610a11578063fb7ddd0414610a26578063fd24a85414610a46576103ac565b8063e985e9c51461097c578063ed6661c21461099c578063f19e75d4146109b1578063f2c4ce1e146109d1576103ac565b8063d5abeb01116100dc578063d5abeb0114610912578063d8a4169e14610927578063deaa59df1461093c578063e268e4d31461095c576103ac565b8063c87b56dd146108a8578063cb04aa1f146108c8578063cde27a35146108e8578063d10a1a2b146108fd576103ac565b806397b9bd0811610185578063a475b5dd11610154578063a475b5dd14610840578063b3ab66b014610855578063b88d4fde14610868578063bdb9f28d14610888576103ac565b806397b9bd08146107d65780639cbb5b4a146107f6578063a22cb4651461080b578063a33441251461082b576103ac565b80638c3c4b34116101c15780638c3c4b341461076a5780638da5cb5b1461078c578063916d31ff146107a157806395d89b41146107c1576103ac565b8063817415c414610720578063847e210114610740578063882567ca14610755576103ac565b80633606f5b9116102d757806355f804b31161026a578063729ad39e11610239578063729ad39e146106b6578063771282f6146106d65780637b082610146106eb5780638074be9814610700576103ac565b806355f804b3146106415780636352211e1461066157806370a0823114610681578063715018a6146106a1576103ac565b80634c709163116102a65780634c709163146105e25780634d4c4e9914610602578063518302271461061757806355367ba91461062c576103ac565b80633606f5b9146105835780633ccfd60b1461059857806342842e0e146105ad578063453c2310146105cd576103ac565b806318160ddd1161034f5780631f2898c31161031e5780631f2898c314610519578063215a41631461052e57806323b872dd146105435780633549345e14610563576103ac565b806318160ddd146104af5780631919fed7146104c45780631bbc1afa146104e45780631c03ceb514610504576103ac565b8063081812fc1161038b578063081812fc1461042b578063095ea7b3146104585780630b2af42e1461047a57806315c316fc1461049a576103ac565b80620e7fa8146103b157806301ffc9a7146103dc57806306fdde0314610409575b600080fd5b3480156103bd57600080fd5b506103c6610a59565b6040516103d3919061382e565b60405180910390f35b3480156103e857600080fd5b506103fc6103f7366004612ba3565b610a5f565b6040516103d39190612de6565b34801561041557600080fd5b5061041e610aa7565b6040516103d39190612e37565b34801561043757600080fd5b5061044b610446366004612c21565b610b39565b6040516103d39190612d95565b34801561046457600080fd5b50610478610473366004612b0b565b610b85565b005b34801561048657600080fd5b50610478610495366004612b0b565b610c45565b3480156104a657600080fd5b50610478610ca0565b3480156104bb57600080fd5b506103c6610cfd565b3480156104d057600080fd5b506104786104df366004612c21565b610d03565b3480156104f057600080fd5b506104786104ff366004612c21565b610d47565b34801561051057600080fd5b50610478610d8b565b34801561052557600080fd5b50610478610ddb565b34801561053a57600080fd5b50610478610e35565b34801561054f57600080fd5b5061047861055e366004612a1d565b610e89565b34801561056f57600080fd5b5061047861057e366004612c21565b610ec1565b34801561058f57600080fd5b50610478610f05565b3480156105a457600080fd5b50610478610f57565b3480156105b957600080fd5b506104786105c8366004612a1d565b610fd4565b3480156105d957600080fd5b506103c6610fef565b3480156105ee57600080fd5b506103c66105fd3660046129d1565b610ff5565b34801561060e57600080fd5b506103c6611007565b34801561062357600080fd5b506103fc61100d565b34801561063857600080fd5b50610478611016565b34801561064d57600080fd5b5061047861065c366004612bdb565b611070565b34801561066d57600080fd5b5061044b61067c366004612c21565b6110ea565b34801561068d57600080fd5b506103c661069c3660046129d1565b61111f565b3480156106ad57600080fd5b50610478611163565b3480156106c257600080fd5b506104786106d1366004612b34565b6111ae565b3480156106e257600080fd5b506103c66112a0565b3480156106f757600080fd5b506103fc6112a6565b34801561070c57600080fd5b5061047861071b366004612c39565b6112b4565b34801561072c57600080fd5b5061047861073b366004612c5b565b611344565b34801561074c57600080fd5b506104786114fe565b34801561076157600080fd5b506103fc611558565b34801561077657600080fd5b5061077f611567565b6040516103d39190612e0f565b34801561079857600080fd5b5061044b611577565b3480156107ad57600080fd5b506103c66107bc3660046129d1565b611586565b3480156107cd57600080fd5b5061041e611598565b3480156107e257600080fd5b506103c66107f13660046129d1565b6115a7565b34801561080257600080fd5b506103fc6115c2565b34801561081757600080fd5b50610478610826366004612ad1565b6115d2565b34801561083757600080fd5b5061077f61160c565b34801561084c57600080fd5b5061047861161c565b610478610863366004612c21565b61166a565b34801561087457600080fd5b50610478610883366004612a58565b611774565b34801561089457600080fd5b506104786108a33660046129d1565b6117ad565b3480156108b457600080fd5b5061041e6108c3366004612c21565b611834565b3480156108d457600080fd5b506103c66108e33660046129d1565b6119b2565b3480156108f457600080fd5b506103c66119c4565b34801561090957600080fd5b506103c66119ca565b34801561091e57600080fd5b506103c66119d0565b34801561093357600080fd5b506104786119d6565b34801561094857600080fd5b506104786109573660046129d1565b611a24565b34801561096857600080fd5b50610478610977366004612c21565b611a85565b34801561098857600080fd5b506103fc6109973660046129eb565b611ac9565b3480156109a857600080fd5b506103c6611af9565b3480156109bd57600080fd5b506104786109cc366004612c21565b611aff565b3480156109dd57600080fd5b506104786109ec366004612bdb565b611b6c565b3480156109fd57600080fd5b50610478610a0c3660046129d1565b611bbe565b348015610a1d57600080fd5b506103c6611c2f565b348015610a3257600080fd5b506103c6610a413660046129d1565b611c35565b610478610a54366004612c5b565b611c50565b600d5481565b60006001600160e01b031982166380ac58cd60e01b1480610a9057506001600160e01b03198216635b5e139f60e01b145b80610a9f5750610a9f82611e27565b90505b919050565b606060008054610ab6906138c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae2906138c5565b8015610b2f5780601f10610b0457610100808354040283529160200191610b2f565b820191906000526020600020905b815481529060010190602001808311610b1257829003601f168201915b5050505050905090565b6000610b4482611e40565b610b695760405162461bcd60e51b8152600401610b609061350e565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60155462010000900460ff16610bad5760405162461bcd60e51b8152600401610b6090613243565b6000610bb8826110ea565b9050806001600160a01b0316836001600160a01b03161415610bec5760405162461bcd60e51b8152600401610b6090613602565b806001600160a01b0316610bfe611e5d565b6001600160a01b03161480610c1a5750610c1a81610997611e5d565b610c365760405162461bcd60e51b8152600401610b60906132ee565b610c408383611e61565b505050565b610c4d611e5d565b6001600160a01b0316610c5e611577565b6001600160a01b031614610c845760405162461bcd60e51b8152600401610b609061355a565b6001600160a01b03909116600090815260166020526040902055565b610ca8611e5d565b6001600160a01b0316610cb9611577565b6001600160a01b031614610cdf5760405162461bcd60e51b8152600401610b609061355a565b601580546001919064ff000000001916600160201b835b0217905550565b600a5490565b610d0b611e5d565b6001600160a01b0316610d1c611577565b6001600160a01b031614610d425760405162461bcd60e51b8152600401610b609061355a565b600c55565b610d4f611e5d565b6001600160a01b0316610d60611577565b6001600160a01b031614610d865760405162461bcd60e51b8152600401610b609061355a565b600755565b610d93611e5d565b6001600160a01b0316610da4611577565b6001600160a01b031614610dca5760405162461bcd60e51b8152600401610b609061355a565b6015805461ff001916610100179055565b610de3611e5d565b6001600160a01b0316610df4611577565b6001600160a01b031614610e1a5760405162461bcd60e51b8152600401610b609061355a565b601580546002919064ff000000001916600160201b83610cf6565b610e3d611e5d565b6001600160a01b0316610e4e611577565b6001600160a01b031614610e745760405162461bcd60e51b8152600401610b609061355a565b6015805463ff00000019166301000000179055565b610e9a610e94611e5d565b82611ecf565b610eb65760405162461bcd60e51b8152600401610b6090613678565b610c40838383611f54565b610ec9611e5d565b6001600160a01b0316610eda611577565b6001600160a01b031614610f005760405162461bcd60e51b8152600401610b609061355a565b600d55565b610f0d611e5d565b6001600160a01b0316610f1e611577565b6001600160a01b031614610f445760405162461bcd60e51b8152600401610b609061355a565b6015805462ff0000191662010000179055565b610f5f611e5d565b6001600160a01b0316610f70611577565b6001600160a01b031614610f965760405162461bcd60e51b8152600401610b609061355a565b60125460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610fd0573d6000803e3d6000fd5b5050565b610c4083838360405180602001604052806000815250611774565b600b5481565b60186020526000908152604090205481565b60075481565b60155460ff1681565b61101e611e5d565b6001600160a01b031661102f611577565b6001600160a01b0316146110555760405162461bcd60e51b8152600401610b609061355a565b601580546003919064ff000000001916600160201b83610cf6565b611078611e5d565b6001600160a01b0316611089611577565b6001600160a01b0316146110af5760405162461bcd60e51b8152600401610b609061355a565b601554610100900460ff16156110d75760405162461bcd60e51b8152600401610b6090612e81565b8051610fd09060139060208401906128b1565b6000818152600260205260408120546001600160a01b031680610a9f5760405162461bcd60e51b8152600401610b6090613395565b60006001600160a01b0382166111475760405162461bcd60e51b8152600401610b609061334b565b506001600160a01b031660009081526003602052604090205490565b61116b611e5d565b6001600160a01b031661117c611577565b6001600160a01b0316146111a25760405162461bcd60e51b8152600401610b609061355a565b6111ac6000612081565b565b6111b6611e5d565b6001600160a01b03166111c7611577565b6001600160a01b0316146111ed5760405162461bcd60e51b8152600401610b609061355a565b600a546009546111fd8383613837565b111561121b5760405162461bcd60e51b8152600401610b60906137e4565b82829050600a60008282546112309190613837565b90915550600090505b8281101561129a5761128884848381811061126457634e487b7160e01b600052603260045260246000fd5b905060200201602081019061127991906129d1565b6112838385613837565b6120d3565b8061129281613900565b915050611239565b50505050565b600a5481565b601554610100900460ff1681565b6112bc611e5d565b6001600160a01b03166112cd611577565b6001600160a01b0316146112f35760405162461bcd60e51b8152600401610b609061355a565b600a546009546113038483613837565b11156113215760405162461bcd60e51b8152600401610b60906137e4565b82600a60008282546113339190613837565b90915550610c4090508282856120ed565b6015546301000000900460ff1661136d5760405162461bcd60e51b8152600401610b60906134a2565b601154604080516020601f85018190048102820181019092528381526113b7926001600160a01b031691859085908190840183828082843760009201919091525061211892505050565b6113d35760405162461bcd60e51b8152600401610b60906131b7565b600a5433600090815260166020526040902054600190156114005750336000908152601660205260409020545b33600090815260186020526040902054819061141d908790613837565b111561143b5760405162461bcd60e51b8152600401610b6090612f9d565b6009546114488684613837565b11156114665760405162461bcd60e51b8152600401610b60906132a0565b60085485600f546114779190613837565b11156114955760405162461bcd60e51b8152600401610b60906133de565b33600090815260186020526040812080548792906114b4908490613837565b9250508190555084600f60008282546114cd9190613837565b9250508190555084600a60008282546114e69190613837565b909155506114f790503383876120ed565b5050505050565b611506611e5d565b6001600160a01b0316611517611577565b6001600160a01b03161461153d5760405162461bcd60e51b8152600401610b609061355a565b601580546000919064ff000000001916600160201b83610cf6565b60155462010000900460ff1681565b601554600160201b900460ff1690565b6006546001600160a01b031690565b60166020526000908152604090205481565b606060018054610ab6906138c5565b6001600160a01b031660009081526018602052604090205490565b6015546301000000900460ff1681565b60155462010000900460ff166115fa5760405162461bcd60e51b8152600401610b6090613243565b610fd0611605611e5d565b838361218d565b601554600160201b900460ff1681565b611624611e5d565b6001600160a01b0316611635611577565b6001600160a01b03161461165b5760405162461bcd60e51b8152600401610b609061355a565b6015805460ff19166001179055565b6000811161168a5760405162461bcd60e51b8152600401610b60906136c9565b600a5460095481106116ae5760405162461bcd60e51b8152600401610b60906135d8565b6009546116bb8383613837565b11156116d95760405162461bcd60e51b8152600401610b6090613796565b6002601554600160201b900460ff16600481111561170757634e487b7160e01b600052602160045260246000fd5b146117245760405162461bcd60e51b8152600401610b60906130a0565b81600c546117329190613863565b3410156117515760405162461bcd60e51b8152600401610b6090613700565b81600a60008282546117639190613837565b90915550610fd090503382846120ed565b61178561177f611e5d565b83611ecf565b6117a15760405162461bcd60e51b8152600401610b6090613678565b61129a84848484612230565b6117b5611e5d565b6001600160a01b03166117c6611577565b6001600160a01b0316146117ec5760405162461bcd60e51b8152600401610b609061355a565b6001600160a01b0381166118125760405162461bcd60e51b8152600401610b6090613433565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b60155460609060ff166118d3576014805461184e906138c5565b80601f016020809104026020016040519081016040528092919081815260200182805461187a906138c5565b80156118c75780601f1061189c576101008083540402835291602001916118c7565b820191906000526020600020905b8154815290600101906020018083116118aa57829003601f168201915b50505050509050610aa2565b6000601380546118e2906138c5565b80601f016020809104026020016040519081016040528092919081815260200182805461190e906138c5565b801561195b5780601f106119305761010080835404028352916020019161195b565b820191906000526020600020905b81548152906001019060200180831161193e57829003601f168201915b50505050509050600081511161198057604051806020016040528060008152506119ab565b8061198a84612263565b60405160200161199b929190612d25565b6040516020818303038152906040525b9392505050565b60176020526000908152604090205481565b600e5481565b600f5481565b60095481565b6119de611e5d565b6001600160a01b03166119ef611577565b6001600160a01b031614611a155760405162461bcd60e51b8152600401610b609061355a565b6015805463ff00000019169055565b611a2c611e5d565b6001600160a01b0316611a3d611577565b6001600160a01b031614611a635760405162461bcd60e51b8152600401610b609061355a565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b611a8d611e5d565b6001600160a01b0316611a9e611577565b6001600160a01b031614611ac45760405162461bcd60e51b8152600401610b609061355a565b600b55565b6001600160a01b0380831660009081526005602090815260408083209385168352929052205460ff165b92915050565b60085481565b611b07611e5d565b6001600160a01b0316611b18611577565b6001600160a01b031614611b3e5760405162461bcd60e51b8152600401610b609061355a565b600a54600954611b4e8383613837565b11156117515760405162461bcd60e51b8152600401610b60906137e4565b611b74611e5d565b6001600160a01b0316611b85611577565b6001600160a01b031614611bab5760405162461bcd60e51b8152600401610b609061355a565b8051610fd09060149060208401906128b1565b611bc6611e5d565b6001600160a01b0316611bd7611577565b6001600160a01b031614611bfd5760405162461bcd60e51b8152600401610b609061355a565b6001600160a01b038116611c235760405162461bcd60e51b8152600401610b6090612f57565b611c2c81612081565b50565b600c5481565b6001600160a01b031660009081526016602052604090205490565b6001601554600160201b900460ff166004811115611c7e57634e487b7160e01b600052602160045260246000fd5b14611c9b5760405162461bcd60e51b8152600401610b6090613124565b601054604080516020601f8501819004810282018101909252838152611ce5926001600160a01b031691859085908190840183828082843760009201919091525061211892505050565b611d015760405162461bcd60e51b8152600401610b60906131b7565b60008311611d215760405162461bcd60e51b8152600401610b6090613643565b600b5433600090815260176020526040902054611d3f908590613837565b1115611d5d5760405162461bcd60e51b8152600401610b6090613743565b82600d54611d6b9190613863565b341015611d8a5760405162461bcd60e51b8152600401610b6090613700565b60075483600e54611d9b9190613837565b1115611db95760405162461bcd60e51b8152600401610b60906131ee565b82600e6000828254611dcb9190613837565b9250508190555082600a6000828254611de49190613837565b90915550503360009081526017602052604081208054859290611e08908490613837565b92505081905550610c403384600a54611e219190613882565b856120ed565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e96826110ea565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611eda82611e40565b611ef65760405162461bcd60e51b8152600401610b609061316b565b6000611f01836110ea565b9050806001600160a01b0316846001600160a01b03161480611f3c5750836001600160a01b0316611f3184610b39565b6001600160a01b0316145b80611f4c5750611f4c8185611ac9565b949350505050565b826001600160a01b0316611f67826110ea565b6001600160a01b031614611f8d5760405162461bcd60e51b8152600401610b609061358f565b6001600160a01b038216611fb35760405162461bcd60e51b8152600401610b6090613025565b611fbe838383610c40565b611fc9600082611e61565b6001600160a01b0383166000908152600360205260408120805460019290611ff2908490613882565b90915550506001600160a01b0382166000908152600360205260408120805460019290612020908490613837565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610fd082826040518060200160405280600081525061237e565b60005b8181101561129a57612106846112838386613837565b8061211081613900565b9150506120f0565b600080303360405160200161212e929190612cfe565b604051602081830303815290604052805190602001209050600061215b84612155846123b1565b906123e1565b9050806001600160a01b0316856001600160a01b0316141561218257600192505050611af3565b600092505050611af3565b816001600160a01b0316836001600160a01b031614156121bf5760405162461bcd60e51b8152600401610b6090613069565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190612223908590612de6565b60405180910390a3505050565b61223b848484611f54565b61224784848484612405565b61129a5760405162461bcd60e51b8152600401610b6090612f05565b60608161228857506040805180820190915260018152600360fc1b6020820152610aa2565b8160005b81156122b2578061229c81613900565b91506122ab9050600a8361384f565b915061228c565b60008167ffffffffffffffff8111156122db57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612305576020820181803683370190505b5090505b8415611f4c5761231a600183613882565b9150612327600a8661391b565b612332906030613837565b60f81b81838151811061235557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612377600a8661384f565b9450612309565b6123888383612520565b6123956000848484612405565b610c405760405162461bcd60e51b8152600401610b6090612f05565b6000816040516020016123c49190612d64565b604051602081830303815290604052805190602001209050919050565b60008060006123f085856125ff565b915091506123fd8161266f565b509392505050565b6000612419846001600160a01b031661279c565b1561251557836001600160a01b031663150b7a02612435611e5d565b8786866040518563ffffffff1660e01b81526004016124579493929190612da9565b602060405180830381600087803b15801561247157600080fd5b505af19250505080156124a1575060408051601f3d908101601f1916820190925261249e91810190612bbf565b60015b6124fb573d8080156124cf576040519150601f19603f3d011682016040523d82523d6000602084013e6124d4565b606091505b5080516124f35760405162461bcd60e51b8152600401610b6090612f05565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f4c565b506001949350505050565b6001600160a01b0382166125465760405162461bcd60e51b8152600401610b60906134d9565b61254f81611e40565b1561256c5760405162461bcd60e51b8152600401610b6090612fee565b61257860008383610c40565b6001600160a01b03821660009081526003602052604081208054600192906125a1908490613837565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000808251604114156126365760208301516040840151606085015160001a61262a878285856127a2565b94509450505050612668565b8251604014156126605760208301516040840151612655868383612882565b935093505050612668565b506000905060025b9250929050565b600081600481111561269157634e487b7160e01b600052602160045260246000fd5b141561269c57611c2c565b60018160048111156126be57634e487b7160e01b600052602160045260246000fd5b14156126dc5760405162461bcd60e51b8152600401610b6090612e4a565b60028160048111156126fe57634e487b7160e01b600052602160045260246000fd5b141561271c5760405162461bcd60e51b8152600401610b6090612ece565b600381600481111561273e57634e487b7160e01b600052602160045260246000fd5b141561275c5760405162461bcd60e51b8152600401610b60906130e2565b600481600481111561277e57634e487b7160e01b600052602160045260246000fd5b1415611c2c5760405162461bcd60e51b8152600401610b6090613460565b3b151590565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156127d95750600090506003612879565b8460ff16601b141580156127f157508460ff16601c14155b156128025750600090506004612879565b6000600187878787604051600081526020016040526040516128279493929190612df1565b6020604051602081039080840390855afa158015612849573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661287257600060019250925050612879565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016128a3878288856127a2565b935093505050935093915050565b8280546128bd906138c5565b90600052602060002090601f0160209004810192826128df5760008555612925565b82601f106128f857805160ff1916838001178555612925565b82800160010185558215612925579182015b8281111561292557825182559160200191906001019061290a565b50612931929150612935565b5090565b5b808211156129315760008155600101612936565b600067ffffffffffffffff808411156129655761296561395b565b604051601f8501601f1916810160200182811182821017156129895761298961395b565b6040528481529150818385018610156129a157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b0381168114610aa257600080fd5b6000602082840312156129e2578081fd5b6119ab826129ba565b600080604083850312156129fd578081fd5b612a06836129ba565b9150612a14602084016129ba565b90509250929050565b600080600060608486031215612a31578081fd5b612a3a846129ba565b9250612a48602085016129ba565b9150604084013590509250925092565b60008060008060808587031215612a6d578081fd5b612a76856129ba565b9350612a84602086016129ba565b925060408501359150606085013567ffffffffffffffff811115612aa6578182fd5b8501601f81018713612ab6578182fd5b612ac58782356020840161294a565b91505092959194509250565b60008060408385031215612ae3578182fd5b612aec836129ba565b915060208301358015158114612b00578182fd5b809150509250929050565b60008060408385031215612b1d578182fd5b612b26836129ba565b946020939093013593505050565b60008060208385031215612b46578182fd5b823567ffffffffffffffff80821115612b5d578384fd5b818501915085601f830112612b70578384fd5b813581811115612b7e578485fd5b8660208083028501011115612b91578485fd5b60209290920196919550909350505050565b600060208284031215612bb4578081fd5b81356119ab81613971565b600060208284031215612bd0578081fd5b81516119ab81613971565b600060208284031215612bec578081fd5b813567ffffffffffffffff811115612c02578182fd5b8201601f81018413612c12578182fd5b611f4c8482356020840161294a565b600060208284031215612c32578081fd5b5035919050565b60008060408385031215612c4b578182fd5b82359150612a14602084016129ba565b600080600060408486031215612c6f578283fd5b83359250602084013567ffffffffffffffff80821115612c8d578384fd5b818601915086601f830112612ca0578384fd5b813581811115612cae578485fd5b876020828501011115612cbf578485fd5b6020830194508093505050509250925092565b60008151808452612cea816020860160208601613899565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606093841b811682529190921b16601482015260280190565b60008351612d37818460208801613899565b835190830190612d4b818360208801613899565b64173539b7b760d91b9101908152600501949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ddc90830184612cd2565b9695505050505050565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6020810160058310612e3157634e487b7160e01b600052602160045260246000fd5b91905290565b6000602082526119ab6020830184612cd2565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252602d908201527f4261736520555249206368616e676520686173206265656e2064697361626c6560408201526c64207065726d616e656e746c7960981b606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526031908201527f596f7520646f6e742068617665207065726d6973696f6e20746f20667265652060408201527036b4b73a103a3430ba1030b6b7bab73a1760791b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526022908201527f4d6f6c6c793a205075626c69632073616c6520686173206e6f74206163746976604082015261329760f11b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526027908201527f4d6f6c6c793a2050726573616c65206973206e6f742063757272656e746c792060408201526630b1ba34bb329760c91b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601b908201527f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000604082015260600190565b60208082526035908201527f4d6f6c6c793a2053656c656374656420616d6f756e74206578636565647320746040820152746865206d61782070726573616c6520737570706c7960581b606082015260800190565b6020808252603d908201527f5468652073616c65206f66204e465473206f6e20746865206d61726b6574706c60408201527f6163657320686173206e6f74206265656e206f70656e6564207965742e000000606082015260800190565b6020808252602e908201527f4d6f6c6c793a204d696e7420746f6f206c617267652c20657863656564696e6760408201526d20746865206d6178537570706c7960901b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526035908201527f4d6f6c6c793a204d696e7420746f6f206c617267652c20657863656564696e67604082015274081d1a1948199c9959481b5a5b9d08185b5bdd5b9d605a1b606082015260800190565b60208082526013908201527243414e2754205055542030204144445245535360681b604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252601c908201527f46726565206d696e74206973206e6f74206f70656e6564207965742e00000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526010908201526f4d6f6c6c793a20536f6c64206f75742160801b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f596f75206d757374206d696e74206174206c65617374206f6e65204e46542e00604082015260600190565b60208082526023908201527f4d6f6c6c793a20496e737566696369656e742045544820616d6f756e74207365604082015262373a1760e91b606082015260800190565b60208082526033908201527f4d6f6c6c793a20596f75206861766520657863656564656420746865206d6178604082015272207065722077616c6c657420616d6f756e742160681b606082015260800190565b6020808252602e908201527f4d6f6c6c793a2053656c656374656420616d6f756e742065786365656473207460408201526d34329036b0bc1039bab838363c9760911b606082015260800190565b6020808252602a908201527f4d6f6c6c793a20596f752063616e2774206d696e74206d6f7265207468616e206040820152696d617820737570706c7960b01b606082015260800190565b90815260200190565b6000821982111561384a5761384a61392f565b500190565b60008261385e5761385e613945565b500490565b600081600019048311821515161561387d5761387d61392f565b500290565b6000828210156138945761389461392f565b500390565b60005b838110156138b457818101518382015260200161389c565b8381111561129a5750506000910152565b6002810460018216806138d957607f821691505b602082108114156138fa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139145761391461392f565b5060010190565b60008261392a5761392a613945565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c2c57600080fdfea26469706673582212207a559b9405ea114086ad60210d2cd8152e0f231418491a74bf26a26603a2d22764736f6c63430008000033697066733a2f2f516d505468677662655059345150454574454c4e674644506b77676d366977784154764651725355686e467a6f44

Deployed Bytecode

0x6080604052600436106103ac5760003560e01c8063817415c4116101e7578063c87b56dd1161010d578063e985e9c5116100a0578063f2fde38b1161006f578063f2fde38b146109f1578063f51f96dd14610a11578063fb7ddd0414610a26578063fd24a85414610a46576103ac565b8063e985e9c51461097c578063ed6661c21461099c578063f19e75d4146109b1578063f2c4ce1e146109d1576103ac565b8063d5abeb01116100dc578063d5abeb0114610912578063d8a4169e14610927578063deaa59df1461093c578063e268e4d31461095c576103ac565b8063c87b56dd146108a8578063cb04aa1f146108c8578063cde27a35146108e8578063d10a1a2b146108fd576103ac565b806397b9bd0811610185578063a475b5dd11610154578063a475b5dd14610840578063b3ab66b014610855578063b88d4fde14610868578063bdb9f28d14610888576103ac565b806397b9bd08146107d65780639cbb5b4a146107f6578063a22cb4651461080b578063a33441251461082b576103ac565b80638c3c4b34116101c15780638c3c4b341461076a5780638da5cb5b1461078c578063916d31ff146107a157806395d89b41146107c1576103ac565b8063817415c414610720578063847e210114610740578063882567ca14610755576103ac565b80633606f5b9116102d757806355f804b31161026a578063729ad39e11610239578063729ad39e146106b6578063771282f6146106d65780637b082610146106eb5780638074be9814610700576103ac565b806355f804b3146106415780636352211e1461066157806370a0823114610681578063715018a6146106a1576103ac565b80634c709163116102a65780634c709163146105e25780634d4c4e9914610602578063518302271461061757806355367ba91461062c576103ac565b80633606f5b9146105835780633ccfd60b1461059857806342842e0e146105ad578063453c2310146105cd576103ac565b806318160ddd1161034f5780631f2898c31161031e5780631f2898c314610519578063215a41631461052e57806323b872dd146105435780633549345e14610563576103ac565b806318160ddd146104af5780631919fed7146104c45780631bbc1afa146104e45780631c03ceb514610504576103ac565b8063081812fc1161038b578063081812fc1461042b578063095ea7b3146104585780630b2af42e1461047a57806315c316fc1461049a576103ac565b80620e7fa8146103b157806301ffc9a7146103dc57806306fdde0314610409575b600080fd5b3480156103bd57600080fd5b506103c6610a59565b6040516103d3919061382e565b60405180910390f35b3480156103e857600080fd5b506103fc6103f7366004612ba3565b610a5f565b6040516103d39190612de6565b34801561041557600080fd5b5061041e610aa7565b6040516103d39190612e37565b34801561043757600080fd5b5061044b610446366004612c21565b610b39565b6040516103d39190612d95565b34801561046457600080fd5b50610478610473366004612b0b565b610b85565b005b34801561048657600080fd5b50610478610495366004612b0b565b610c45565b3480156104a657600080fd5b50610478610ca0565b3480156104bb57600080fd5b506103c6610cfd565b3480156104d057600080fd5b506104786104df366004612c21565b610d03565b3480156104f057600080fd5b506104786104ff366004612c21565b610d47565b34801561051057600080fd5b50610478610d8b565b34801561052557600080fd5b50610478610ddb565b34801561053a57600080fd5b50610478610e35565b34801561054f57600080fd5b5061047861055e366004612a1d565b610e89565b34801561056f57600080fd5b5061047861057e366004612c21565b610ec1565b34801561058f57600080fd5b50610478610f05565b3480156105a457600080fd5b50610478610f57565b3480156105b957600080fd5b506104786105c8366004612a1d565b610fd4565b3480156105d957600080fd5b506103c6610fef565b3480156105ee57600080fd5b506103c66105fd3660046129d1565b610ff5565b34801561060e57600080fd5b506103c6611007565b34801561062357600080fd5b506103fc61100d565b34801561063857600080fd5b50610478611016565b34801561064d57600080fd5b5061047861065c366004612bdb565b611070565b34801561066d57600080fd5b5061044b61067c366004612c21565b6110ea565b34801561068d57600080fd5b506103c661069c3660046129d1565b61111f565b3480156106ad57600080fd5b50610478611163565b3480156106c257600080fd5b506104786106d1366004612b34565b6111ae565b3480156106e257600080fd5b506103c66112a0565b3480156106f757600080fd5b506103fc6112a6565b34801561070c57600080fd5b5061047861071b366004612c39565b6112b4565b34801561072c57600080fd5b5061047861073b366004612c5b565b611344565b34801561074c57600080fd5b506104786114fe565b34801561076157600080fd5b506103fc611558565b34801561077657600080fd5b5061077f611567565b6040516103d39190612e0f565b34801561079857600080fd5b5061044b611577565b3480156107ad57600080fd5b506103c66107bc3660046129d1565b611586565b3480156107cd57600080fd5b5061041e611598565b3480156107e257600080fd5b506103c66107f13660046129d1565b6115a7565b34801561080257600080fd5b506103fc6115c2565b34801561081757600080fd5b50610478610826366004612ad1565b6115d2565b34801561083757600080fd5b5061077f61160c565b34801561084c57600080fd5b5061047861161c565b610478610863366004612c21565b61166a565b34801561087457600080fd5b50610478610883366004612a58565b611774565b34801561089457600080fd5b506104786108a33660046129d1565b6117ad565b3480156108b457600080fd5b5061041e6108c3366004612c21565b611834565b3480156108d457600080fd5b506103c66108e33660046129d1565b6119b2565b3480156108f457600080fd5b506103c66119c4565b34801561090957600080fd5b506103c66119ca565b34801561091e57600080fd5b506103c66119d0565b34801561093357600080fd5b506104786119d6565b34801561094857600080fd5b506104786109573660046129d1565b611a24565b34801561096857600080fd5b50610478610977366004612c21565b611a85565b34801561098857600080fd5b506103fc6109973660046129eb565b611ac9565b3480156109a857600080fd5b506103c6611af9565b3480156109bd57600080fd5b506104786109cc366004612c21565b611aff565b3480156109dd57600080fd5b506104786109ec366004612bdb565b611b6c565b3480156109fd57600080fd5b50610478610a0c3660046129d1565b611bbe565b348015610a1d57600080fd5b506103c6611c2f565b348015610a3257600080fd5b506103c6610a413660046129d1565b611c35565b610478610a54366004612c5b565b611c50565b600d5481565b60006001600160e01b031982166380ac58cd60e01b1480610a9057506001600160e01b03198216635b5e139f60e01b145b80610a9f5750610a9f82611e27565b90505b919050565b606060008054610ab6906138c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae2906138c5565b8015610b2f5780601f10610b0457610100808354040283529160200191610b2f565b820191906000526020600020905b815481529060010190602001808311610b1257829003601f168201915b5050505050905090565b6000610b4482611e40565b610b695760405162461bcd60e51b8152600401610b609061350e565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60155462010000900460ff16610bad5760405162461bcd60e51b8152600401610b6090613243565b6000610bb8826110ea565b9050806001600160a01b0316836001600160a01b03161415610bec5760405162461bcd60e51b8152600401610b6090613602565b806001600160a01b0316610bfe611e5d565b6001600160a01b03161480610c1a5750610c1a81610997611e5d565b610c365760405162461bcd60e51b8152600401610b60906132ee565b610c408383611e61565b505050565b610c4d611e5d565b6001600160a01b0316610c5e611577565b6001600160a01b031614610c845760405162461bcd60e51b8152600401610b609061355a565b6001600160a01b03909116600090815260166020526040902055565b610ca8611e5d565b6001600160a01b0316610cb9611577565b6001600160a01b031614610cdf5760405162461bcd60e51b8152600401610b609061355a565b601580546001919064ff000000001916600160201b835b0217905550565b600a5490565b610d0b611e5d565b6001600160a01b0316610d1c611577565b6001600160a01b031614610d425760405162461bcd60e51b8152600401610b609061355a565b600c55565b610d4f611e5d565b6001600160a01b0316610d60611577565b6001600160a01b031614610d865760405162461bcd60e51b8152600401610b609061355a565b600755565b610d93611e5d565b6001600160a01b0316610da4611577565b6001600160a01b031614610dca5760405162461bcd60e51b8152600401610b609061355a565b6015805461ff001916610100179055565b610de3611e5d565b6001600160a01b0316610df4611577565b6001600160a01b031614610e1a5760405162461bcd60e51b8152600401610b609061355a565b601580546002919064ff000000001916600160201b83610cf6565b610e3d611e5d565b6001600160a01b0316610e4e611577565b6001600160a01b031614610e745760405162461bcd60e51b8152600401610b609061355a565b6015805463ff00000019166301000000179055565b610e9a610e94611e5d565b82611ecf565b610eb65760405162461bcd60e51b8152600401610b6090613678565b610c40838383611f54565b610ec9611e5d565b6001600160a01b0316610eda611577565b6001600160a01b031614610f005760405162461bcd60e51b8152600401610b609061355a565b600d55565b610f0d611e5d565b6001600160a01b0316610f1e611577565b6001600160a01b031614610f445760405162461bcd60e51b8152600401610b609061355a565b6015805462ff0000191662010000179055565b610f5f611e5d565b6001600160a01b0316610f70611577565b6001600160a01b031614610f965760405162461bcd60e51b8152600401610b609061355a565b60125460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610fd0573d6000803e3d6000fd5b5050565b610c4083838360405180602001604052806000815250611774565b600b5481565b60186020526000908152604090205481565b60075481565b60155460ff1681565b61101e611e5d565b6001600160a01b031661102f611577565b6001600160a01b0316146110555760405162461bcd60e51b8152600401610b609061355a565b601580546003919064ff000000001916600160201b83610cf6565b611078611e5d565b6001600160a01b0316611089611577565b6001600160a01b0316146110af5760405162461bcd60e51b8152600401610b609061355a565b601554610100900460ff16156110d75760405162461bcd60e51b8152600401610b6090612e81565b8051610fd09060139060208401906128b1565b6000818152600260205260408120546001600160a01b031680610a9f5760405162461bcd60e51b8152600401610b6090613395565b60006001600160a01b0382166111475760405162461bcd60e51b8152600401610b609061334b565b506001600160a01b031660009081526003602052604090205490565b61116b611e5d565b6001600160a01b031661117c611577565b6001600160a01b0316146111a25760405162461bcd60e51b8152600401610b609061355a565b6111ac6000612081565b565b6111b6611e5d565b6001600160a01b03166111c7611577565b6001600160a01b0316146111ed5760405162461bcd60e51b8152600401610b609061355a565b600a546009546111fd8383613837565b111561121b5760405162461bcd60e51b8152600401610b60906137e4565b82829050600a60008282546112309190613837565b90915550600090505b8281101561129a5761128884848381811061126457634e487b7160e01b600052603260045260246000fd5b905060200201602081019061127991906129d1565b6112838385613837565b6120d3565b8061129281613900565b915050611239565b50505050565b600a5481565b601554610100900460ff1681565b6112bc611e5d565b6001600160a01b03166112cd611577565b6001600160a01b0316146112f35760405162461bcd60e51b8152600401610b609061355a565b600a546009546113038483613837565b11156113215760405162461bcd60e51b8152600401610b60906137e4565b82600a60008282546113339190613837565b90915550610c4090508282856120ed565b6015546301000000900460ff1661136d5760405162461bcd60e51b8152600401610b60906134a2565b601154604080516020601f85018190048102820181019092528381526113b7926001600160a01b031691859085908190840183828082843760009201919091525061211892505050565b6113d35760405162461bcd60e51b8152600401610b60906131b7565b600a5433600090815260166020526040902054600190156114005750336000908152601660205260409020545b33600090815260186020526040902054819061141d908790613837565b111561143b5760405162461bcd60e51b8152600401610b6090612f9d565b6009546114488684613837565b11156114665760405162461bcd60e51b8152600401610b60906132a0565b60085485600f546114779190613837565b11156114955760405162461bcd60e51b8152600401610b60906133de565b33600090815260186020526040812080548792906114b4908490613837565b9250508190555084600f60008282546114cd9190613837565b9250508190555084600a60008282546114e69190613837565b909155506114f790503383876120ed565b5050505050565b611506611e5d565b6001600160a01b0316611517611577565b6001600160a01b03161461153d5760405162461bcd60e51b8152600401610b609061355a565b601580546000919064ff000000001916600160201b83610cf6565b60155462010000900460ff1681565b601554600160201b900460ff1690565b6006546001600160a01b031690565b60166020526000908152604090205481565b606060018054610ab6906138c5565b6001600160a01b031660009081526018602052604090205490565b6015546301000000900460ff1681565b60155462010000900460ff166115fa5760405162461bcd60e51b8152600401610b6090613243565b610fd0611605611e5d565b838361218d565b601554600160201b900460ff1681565b611624611e5d565b6001600160a01b0316611635611577565b6001600160a01b03161461165b5760405162461bcd60e51b8152600401610b609061355a565b6015805460ff19166001179055565b6000811161168a5760405162461bcd60e51b8152600401610b60906136c9565b600a5460095481106116ae5760405162461bcd60e51b8152600401610b60906135d8565b6009546116bb8383613837565b11156116d95760405162461bcd60e51b8152600401610b6090613796565b6002601554600160201b900460ff16600481111561170757634e487b7160e01b600052602160045260246000fd5b146117245760405162461bcd60e51b8152600401610b60906130a0565b81600c546117329190613863565b3410156117515760405162461bcd60e51b8152600401610b6090613700565b81600a60008282546117639190613837565b90915550610fd090503382846120ed565b61178561177f611e5d565b83611ecf565b6117a15760405162461bcd60e51b8152600401610b6090613678565b61129a84848484612230565b6117b5611e5d565b6001600160a01b03166117c6611577565b6001600160a01b0316146117ec5760405162461bcd60e51b8152600401610b609061355a565b6001600160a01b0381166118125760405162461bcd60e51b8152600401610b6090613433565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b60155460609060ff166118d3576014805461184e906138c5565b80601f016020809104026020016040519081016040528092919081815260200182805461187a906138c5565b80156118c75780601f1061189c576101008083540402835291602001916118c7565b820191906000526020600020905b8154815290600101906020018083116118aa57829003601f168201915b50505050509050610aa2565b6000601380546118e2906138c5565b80601f016020809104026020016040519081016040528092919081815260200182805461190e906138c5565b801561195b5780601f106119305761010080835404028352916020019161195b565b820191906000526020600020905b81548152906001019060200180831161193e57829003601f168201915b50505050509050600081511161198057604051806020016040528060008152506119ab565b8061198a84612263565b60405160200161199b929190612d25565b6040516020818303038152906040525b9392505050565b60176020526000908152604090205481565b600e5481565b600f5481565b60095481565b6119de611e5d565b6001600160a01b03166119ef611577565b6001600160a01b031614611a155760405162461bcd60e51b8152600401610b609061355a565b6015805463ff00000019169055565b611a2c611e5d565b6001600160a01b0316611a3d611577565b6001600160a01b031614611a635760405162461bcd60e51b8152600401610b609061355a565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b611a8d611e5d565b6001600160a01b0316611a9e611577565b6001600160a01b031614611ac45760405162461bcd60e51b8152600401610b609061355a565b600b55565b6001600160a01b0380831660009081526005602090815260408083209385168352929052205460ff165b92915050565b60085481565b611b07611e5d565b6001600160a01b0316611b18611577565b6001600160a01b031614611b3e5760405162461bcd60e51b8152600401610b609061355a565b600a54600954611b4e8383613837565b11156117515760405162461bcd60e51b8152600401610b60906137e4565b611b74611e5d565b6001600160a01b0316611b85611577565b6001600160a01b031614611bab5760405162461bcd60e51b8152600401610b609061355a565b8051610fd09060149060208401906128b1565b611bc6611e5d565b6001600160a01b0316611bd7611577565b6001600160a01b031614611bfd5760405162461bcd60e51b8152600401610b609061355a565b6001600160a01b038116611c235760405162461bcd60e51b8152600401610b6090612f57565b611c2c81612081565b50565b600c5481565b6001600160a01b031660009081526016602052604090205490565b6001601554600160201b900460ff166004811115611c7e57634e487b7160e01b600052602160045260246000fd5b14611c9b5760405162461bcd60e51b8152600401610b6090613124565b601054604080516020601f8501819004810282018101909252838152611ce5926001600160a01b031691859085908190840183828082843760009201919091525061211892505050565b611d015760405162461bcd60e51b8152600401610b60906131b7565b60008311611d215760405162461bcd60e51b8152600401610b6090613643565b600b5433600090815260176020526040902054611d3f908590613837565b1115611d5d5760405162461bcd60e51b8152600401610b6090613743565b82600d54611d6b9190613863565b341015611d8a5760405162461bcd60e51b8152600401610b6090613700565b60075483600e54611d9b9190613837565b1115611db95760405162461bcd60e51b8152600401610b60906131ee565b82600e6000828254611dcb9190613837565b9250508190555082600a6000828254611de49190613837565b90915550503360009081526017602052604081208054859290611e08908490613837565b92505081905550610c403384600a54611e219190613882565b856120ed565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e96826110ea565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611eda82611e40565b611ef65760405162461bcd60e51b8152600401610b609061316b565b6000611f01836110ea565b9050806001600160a01b0316846001600160a01b03161480611f3c5750836001600160a01b0316611f3184610b39565b6001600160a01b0316145b80611f4c5750611f4c8185611ac9565b949350505050565b826001600160a01b0316611f67826110ea565b6001600160a01b031614611f8d5760405162461bcd60e51b8152600401610b609061358f565b6001600160a01b038216611fb35760405162461bcd60e51b8152600401610b6090613025565b611fbe838383610c40565b611fc9600082611e61565b6001600160a01b0383166000908152600360205260408120805460019290611ff2908490613882565b90915550506001600160a01b0382166000908152600360205260408120805460019290612020908490613837565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610fd082826040518060200160405280600081525061237e565b60005b8181101561129a57612106846112838386613837565b8061211081613900565b9150506120f0565b600080303360405160200161212e929190612cfe565b604051602081830303815290604052805190602001209050600061215b84612155846123b1565b906123e1565b9050806001600160a01b0316856001600160a01b0316141561218257600192505050611af3565b600092505050611af3565b816001600160a01b0316836001600160a01b031614156121bf5760405162461bcd60e51b8152600401610b6090613069565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190612223908590612de6565b60405180910390a3505050565b61223b848484611f54565b61224784848484612405565b61129a5760405162461bcd60e51b8152600401610b6090612f05565b60608161228857506040805180820190915260018152600360fc1b6020820152610aa2565b8160005b81156122b2578061229c81613900565b91506122ab9050600a8361384f565b915061228c565b60008167ffffffffffffffff8111156122db57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612305576020820181803683370190505b5090505b8415611f4c5761231a600183613882565b9150612327600a8661391b565b612332906030613837565b60f81b81838151811061235557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612377600a8661384f565b9450612309565b6123888383612520565b6123956000848484612405565b610c405760405162461bcd60e51b8152600401610b6090612f05565b6000816040516020016123c49190612d64565b604051602081830303815290604052805190602001209050919050565b60008060006123f085856125ff565b915091506123fd8161266f565b509392505050565b6000612419846001600160a01b031661279c565b1561251557836001600160a01b031663150b7a02612435611e5d565b8786866040518563ffffffff1660e01b81526004016124579493929190612da9565b602060405180830381600087803b15801561247157600080fd5b505af19250505080156124a1575060408051601f3d908101601f1916820190925261249e91810190612bbf565b60015b6124fb573d8080156124cf576040519150601f19603f3d011682016040523d82523d6000602084013e6124d4565b606091505b5080516124f35760405162461bcd60e51b8152600401610b6090612f05565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f4c565b506001949350505050565b6001600160a01b0382166125465760405162461bcd60e51b8152600401610b60906134d9565b61254f81611e40565b1561256c5760405162461bcd60e51b8152600401610b6090612fee565b61257860008383610c40565b6001600160a01b03821660009081526003602052604081208054600192906125a1908490613837565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000808251604114156126365760208301516040840151606085015160001a61262a878285856127a2565b94509450505050612668565b8251604014156126605760208301516040840151612655868383612882565b935093505050612668565b506000905060025b9250929050565b600081600481111561269157634e487b7160e01b600052602160045260246000fd5b141561269c57611c2c565b60018160048111156126be57634e487b7160e01b600052602160045260246000fd5b14156126dc5760405162461bcd60e51b8152600401610b6090612e4a565b60028160048111156126fe57634e487b7160e01b600052602160045260246000fd5b141561271c5760405162461bcd60e51b8152600401610b6090612ece565b600381600481111561273e57634e487b7160e01b600052602160045260246000fd5b141561275c5760405162461bcd60e51b8152600401610b60906130e2565b600481600481111561277e57634e487b7160e01b600052602160045260246000fd5b1415611c2c5760405162461bcd60e51b8152600401610b6090613460565b3b151590565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156127d95750600090506003612879565b8460ff16601b141580156127f157508460ff16601c14155b156128025750600090506004612879565b6000600187878787604051600081526020016040526040516128279493929190612df1565b6020604051602081039080840390855afa158015612849573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661287257600060019250925050612879565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016128a3878288856127a2565b935093505050935093915050565b8280546128bd906138c5565b90600052602060002090601f0160209004810192826128df5760008555612925565b82601f106128f857805160ff1916838001178555612925565b82800160010185558215612925579182015b8281111561292557825182559160200191906001019061290a565b50612931929150612935565b5090565b5b808211156129315760008155600101612936565b600067ffffffffffffffff808411156129655761296561395b565b604051601f8501601f1916810160200182811182821017156129895761298961395b565b6040528481529150818385018610156129a157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b0381168114610aa257600080fd5b6000602082840312156129e2578081fd5b6119ab826129ba565b600080604083850312156129fd578081fd5b612a06836129ba565b9150612a14602084016129ba565b90509250929050565b600080600060608486031215612a31578081fd5b612a3a846129ba565b9250612a48602085016129ba565b9150604084013590509250925092565b60008060008060808587031215612a6d578081fd5b612a76856129ba565b9350612a84602086016129ba565b925060408501359150606085013567ffffffffffffffff811115612aa6578182fd5b8501601f81018713612ab6578182fd5b612ac58782356020840161294a565b91505092959194509250565b60008060408385031215612ae3578182fd5b612aec836129ba565b915060208301358015158114612b00578182fd5b809150509250929050565b60008060408385031215612b1d578182fd5b612b26836129ba565b946020939093013593505050565b60008060208385031215612b46578182fd5b823567ffffffffffffffff80821115612b5d578384fd5b818501915085601f830112612b70578384fd5b813581811115612b7e578485fd5b8660208083028501011115612b91578485fd5b60209290920196919550909350505050565b600060208284031215612bb4578081fd5b81356119ab81613971565b600060208284031215612bd0578081fd5b81516119ab81613971565b600060208284031215612bec578081fd5b813567ffffffffffffffff811115612c02578182fd5b8201601f81018413612c12578182fd5b611f4c8482356020840161294a565b600060208284031215612c32578081fd5b5035919050565b60008060408385031215612c4b578182fd5b82359150612a14602084016129ba565b600080600060408486031215612c6f578283fd5b83359250602084013567ffffffffffffffff80821115612c8d578384fd5b818601915086601f830112612ca0578384fd5b813581811115612cae578485fd5b876020828501011115612cbf578485fd5b6020830194508093505050509250925092565b60008151808452612cea816020860160208601613899565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606093841b811682529190921b16601482015260280190565b60008351612d37818460208801613899565b835190830190612d4b818360208801613899565b64173539b7b760d91b9101908152600501949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ddc90830184612cd2565b9695505050505050565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6020810160058310612e3157634e487b7160e01b600052602160045260246000fd5b91905290565b6000602082526119ab6020830184612cd2565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252602d908201527f4261736520555249206368616e676520686173206265656e2064697361626c6560408201526c64207065726d616e656e746c7960981b606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526031908201527f596f7520646f6e742068617665207065726d6973696f6e20746f20667265652060408201527036b4b73a103a3430ba1030b6b7bab73a1760791b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526022908201527f4d6f6c6c793a205075626c69632073616c6520686173206e6f74206163746976604082015261329760f11b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526027908201527f4d6f6c6c793a2050726573616c65206973206e6f742063757272656e746c792060408201526630b1ba34bb329760c91b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601b908201527f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000604082015260600190565b60208082526035908201527f4d6f6c6c793a2053656c656374656420616d6f756e74206578636565647320746040820152746865206d61782070726573616c6520737570706c7960581b606082015260800190565b6020808252603d908201527f5468652073616c65206f66204e465473206f6e20746865206d61726b6574706c60408201527f6163657320686173206e6f74206265656e206f70656e6564207965742e000000606082015260800190565b6020808252602e908201527f4d6f6c6c793a204d696e7420746f6f206c617267652c20657863656564696e6760408201526d20746865206d6178537570706c7960901b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526035908201527f4d6f6c6c793a204d696e7420746f6f206c617267652c20657863656564696e67604082015274081d1a1948199c9959481b5a5b9d08185b5bdd5b9d605a1b606082015260800190565b60208082526013908201527243414e2754205055542030204144445245535360681b604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252601c908201527f46726565206d696e74206973206e6f74206f70656e6564207965742e00000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526010908201526f4d6f6c6c793a20536f6c64206f75742160801b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f596f75206d757374206d696e74206174206c65617374206f6e65204e46542e00604082015260600190565b60208082526023908201527f4d6f6c6c793a20496e737566696369656e742045544820616d6f756e74207365604082015262373a1760e91b606082015260800190565b60208082526033908201527f4d6f6c6c793a20596f75206861766520657863656564656420746865206d6178604082015272207065722077616c6c657420616d6f756e742160681b606082015260800190565b6020808252602e908201527f4d6f6c6c793a2053656c656374656420616d6f756e742065786365656473207460408201526d34329036b0bc1039bab838363c9760911b606082015260800190565b6020808252602a908201527f4d6f6c6c793a20596f752063616e2774206d696e74206d6f7265207468616e206040820152696d617820737570706c7960b01b606082015260800190565b90815260200190565b6000821982111561384a5761384a61392f565b500190565b60008261385e5761385e613945565b500490565b600081600019048311821515161561387d5761387d61392f565b500290565b6000828210156138945761389461392f565b500390565b60005b838110156138b457818101518382015260200161389c565b8381111561129a5750506000910152565b6002810460018216806138d957607f821691505b602082108114156138fa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139145761391461392f565b5060010190565b60008261392a5761392a613945565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c2c57600080fdfea26469706673582212207a559b9405ea114086ad60210d2cd8152e0f231418491a74bf26a26603a2d22764736f6c63430008000033

Deployed Bytecode Sourcemap

47339:14476:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47680:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34773:305;;;;;;;;;;-1:-1:-1;34773:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35718:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37277:221::-;;;;;;;;;;-1:-1:-1;37277:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49147:508::-;;;;;;;;;;-1:-1:-1;49147:508:0;;;;;:::i;:::-;;:::i;:::-;;57040:119;;;;;;;;;;-1:-1:-1;57040:119:0;;;;;:::i;:::-;;:::i;55407:95::-;;;;;;;;;;;;;:::i;49947:92::-;;;;;;;;;;;;;:::i;56814:98::-;;;;;;;;;;-1:-1:-1;56814:98:0;;;;;:::i;:::-;;:::i;55818:101::-;;;;;;;;;;-1:-1:-1;55818:101:0;;;;;:::i;:::-;;:::i;57227:73::-;;;;;;;;;;;;;:::i;55510:89::-;;;;;;;;;;;;;:::i;55927:81::-;;;;;;;;;;;;;:::i;38027:339::-;;;;;;;;;;-1:-1:-1;38027:339:0;;;;;:::i;:::-;;:::i;56924:104::-;;;;;;;;;;-1:-1:-1;56924:104:0;;;;;:::i;:::-;;:::i;57355:77::-;;;;;;;;;;;;;:::i;49663:157::-;;;;;;;;;;;;;:::i;38437:185::-;;;;;;;;;;-1:-1:-1;38437:185:0;;;;;:::i;:::-;;:::i;47597:31::-;;;;;;;;;;;;;:::i;48633:46::-;;;;;;;;;;-1:-1:-1;48633:46:0;;;;;:::i;:::-;;:::i;47444:32::-;;;;;;;;;;;;;:::i;48209:28::-;;;;;;;;;;;;;:::i;55607:91::-;;;;;;;;;;;;;:::i;56321:195::-;;;;;;;;;;-1:-1:-1;56321: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;54875:423::-;;;;;;;;;;-1:-1:-1;54875:423:0;;;;;:::i;:::-;;:::i;47558:32::-;;;;;;;;;;;;;:::i;48244:30::-;;;;;;;;;;;;;:::i;54198:339::-;;;;;;;;;;-1:-1:-1;54198:339:0;;;;;:::i;:::-;;:::i;51028:1252::-;;;;;;;;;;-1:-1:-1;51028:1252:0;;;;;:::i;:::-;;:::i;55306:93::-;;;;;;;;;;;;;:::i;48281:32::-;;;;;;;;;;;;;:::i;49843:96::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;15110:87::-;;;;;;;;;;;;;:::i;48521:49::-;;;;;;;;;;-1:-1:-1;48521:49:0;;;;;:::i;:::-;;:::i;35887:104::-;;;;;;;;;;;;;:::i;50176:115::-;;;;;;;;;;-1:-1:-1;50176:115:0;;;;;:::i;:::-;;:::i;48320:34::-;;;;;;;;;;;;;:::i;48887:252::-;;;;;;;;;;-1:-1:-1;48887:252:0;;;;;:::i;:::-;;:::i;48482:30::-;;;;;;;;;;;;;:::i;56110:69::-;;;;;;;;;;;;;:::i;53504:686::-;;;;;;:::i;:::-;;:::i;38693:328::-;;;;;;;;;;-1:-1:-1;38693:328:0;;;;;:::i;:::-;;:::i;56524:180::-;;;;;;;;;;-1:-1:-1;56524:180:0;;;;;:::i;:::-;;:::i;57456:442::-;;;;;;;;;;-1:-1:-1;57456:442:0;;;;;:::i;:::-;;:::i;48577:49::-;;;;;;;;;;-1:-1:-1;48577:49:0;;;;;:::i;:::-;;:::i;47730:27::-;;;;;;;;;;;;;:::i;47766:25::-;;;;;;;;;;;;;:::i;47519:30::-;;;;;;;;;;;;;:::i;56020:82::-;;;;;;;;;;;;;:::i;56712:94::-;;;;;;;;;;-1:-1:-1;56712:94:0;;;;;:::i;:::-;;:::i;55706:104::-;;;;;;;;;;-1:-1:-1;55706:104:0;;;;;:::i;:::-;;:::i;37796:164::-;;;;;;;;;;-1:-1:-1;37796:164:0;;;;;:::i;:::-;;:::i;47483:29::-;;;;;;;;;;;;;:::i;54545:322::-;;;;;;;;;;-1:-1:-1;54545:322:0;;;;;:::i;:::-;;:::i;56187:126::-;;;;;;;;;;-1:-1:-1;56187:126:0;;;;;:::i;:::-;;:::i;16019:201::-;;;;;;;;;;-1:-1:-1;16019:201:0;;;;;:::i;:::-;;:::i;47637:36::-;;;;;;;;;;;;;:::i;50047:121::-;;;;;;;;;;-1:-1:-1;50047:121:0;;;;;:::i;:::-;;:::i;52290:1206::-;;;;;;:::i;:::-;;:::i;47680:41::-;;;;:::o;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;35718:100::-;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;49147:508::-;49236:12;;;;;;;49228:86;;;;-1:-1:-1;;;49228:86:0;;;;;;;:::i;:::-;49325:13;49341:23;49356:7;49341:14;:23::i;:::-;49325:39;;49389:5;-1:-1:-1;;;;;49383:11:0;:2;-1:-1:-1;;;;;49383:11:0;;;49375:57;;;;-1:-1:-1;;;49375:57:0;;;;;;;:::i;:::-;49483:5;-1:-1:-1;;;;;49467:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;49467:21:0;;:62;;;;49492:37;49509:5;49516:12;:10;:12::i;49492:37::-;49445:168;;;;-1:-1:-1;;;49445:168:0;;;;;;;:::i;:::-;49626:21;49635:2;49639:7;49626:8;:21::i;:::-;49147:508;;;:::o;57040: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;;;;;57123:22:0;;::::1;;::::0;;;:14:::1;:22;::::0;;;;:28;57040:119::o;55407: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;:::-;55461:8:::1;:33:::0;;55472:22:::1;::::0;55461:8;-1:-1:-1;;55461:33:0::1;-1:-1:-1::0;;;55472:22:0;55461:33:::1;;;;;;55407:95::o:0;49947:92::-;50018:13;;49947:92;:::o;56814: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;:::-;56883:9:::1;:21:::0;56814:98::o;55818: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;:::-;55890:11:::1;:21:::0;55818:101::o;57227: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;:::-;57275:10:::1;:17:::0;;-1:-1:-1;;57275:17:0::1;;;::::0;;57227:73::o;55510: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;:::-;55561:8:::1;:30:::0;;55572:19:::1;::::0;55561:8;-1:-1:-1;;55561:30:0::1;-1:-1:-1::0;;;55572:19:0;55561:30:::1;::::0;55927:81;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;:::-;55979:14:::1;:21:::0;;-1:-1:-1;;55979:21:0::1;::::0;::::1;::::0;;55927:81::o;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;56924: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;:::-;56996:12:::1;:24:::0;56924:104::o;57355:77::-;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;:::-;57405:12:::1;:19:::0;;-1:-1:-1;;57405:19:0::1;::::0;::::1;::::0;;57355:77::o;49663: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;:::-;49783:6:::1;::::0;49774:38:::1;::::0;49730:23:::1;::::0;-1:-1:-1;;;;;49783:6:0::1;::::0;49774:38;::::1;;;::::0;49730:23;;49711:16:::1;49774:38:::0;49711:16;49774:38;49730:23;49783:6;49774:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;15401:1;49663:157::o:0;38437:185::-;38575:39;38592:4;38598:2;38602:7;38575:39;;;;;;;;;;;;:16;:39::i;47597:31::-;;;;:::o;48633:46::-;;;;;;;;;;;;;:::o;47444:32::-;;;;:::o;48209:28::-;;;;;;:::o;55607: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;:::-;55658:8:::1;:32:::0;;55669:21:::1;::::0;55658:8;-1:-1:-1;;55658:32:0::1;-1:-1:-1::0;;;55669:21:0;55658:32:::1;::::0;56321: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;:::-;56405:10:::1;::::0;::::1;::::0;::::1;;;:19;56396:78;;;;-1:-1:-1::0;;;56396:78:0::1;;;;;;;:::i;:::-;56487: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;54875: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;:::-;54969:13:::1;::::0;55044:9:::1;::::0;55015:25:::1;55024:9:::0;54969:13;55015:25:::1;:::i;:::-;:38;;54993:130;;;;-1:-1:-1::0;;;54993:130:0::1;;;;;;;:::i;:::-;55153:9;;:16;;55136:13;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;55187:9:0::1;::::0;-1:-1:-1;55182:109:0::1;55202:20:::0;;::::1;55182:109;;;55244:35;55254:9;;55264:1;55254:12;;;;;-1:-1:-1::0;;;55254:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55268:10;55277:1:::0;55268:6;:10:::1;:::i;:::-;55244:9;:35::i;:::-;55224:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55182:109;;;;15401:1;54875:423:::0;;:::o;47558:32::-;;;;:::o;48244:30::-;;;;;;;;;:::o;54198: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;:::-;54298:13:::1;::::0;54365:9:::1;::::0;54346:15:::1;54355:6:::0;54298:13;54346:15:::1;:::i;:::-;:28;;54324:120;;;;-1:-1:-1::0;;;54324:120:0::1;;;;;;;:::i;:::-;54474:6;54457:13;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;54493:36:0::1;::::0;-1:-1:-1;54504:8:0;54514:6;54522;54493:9:::1;:36::i;51028:1252::-:0;51159:14;;;;;;;51136:95;;;;-1:-1:-1;;;51136:95:0;;;;;;;:::i;:::-;51339:11;;51303:90;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51339:11:0;;51369:9;;;;;;51303:90;;51369:9;;;;51303:90;;;;;;;;;-1:-1:-1;51303:17:0;;-1:-1:-1;;;51303:90:0:i;:::-;51281:167;;;;-1:-1:-1;;;51281:167:0;;;;;;;:::i;:::-;51478:13;;51560:10;51461:14;51544:28;;;:14;:28;;;;;;51526:1;;51544:32;51540:110;;-1:-1:-1;51626:10:0;51610:28;;;;:14;:28;;;;;;51540:110;51699:10;51686:25;;;;:11;:25;;;;;;51725:13;;51686:35;;51714:7;;51686:35;:::i;:::-;:52;;51663:154;;;;-1:-1:-1;;;51663:154:0;;;;;;;:::i;:::-;51872:9;;51852:16;51861:7;51852:6;:16;:::i;:::-;:29;;51830:125;;;;-1:-1:-1;;;51830:125:0;;;;;;;:::i;:::-;52014:8;;52003:7;51990:10;;:20;;;;:::i;:::-;:32;;51968:135;;;;-1:-1:-1;;;51968:135:0;;;;;;;:::i;:::-;52131:10;52118:25;;;;:11;:25;;;;;:36;;52147:7;;52118:25;:36;;52147:7;;52118:36;:::i;:::-;;;;;;;;52179:7;52165:10;;:21;;;;;;;:::i;:::-;;;;;;;;52214:7;52197:13;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;52234:38:0;;-1:-1:-1;52244:10:0;52256:6;52264:7;52234:9;:38::i;:::-;51028:1252;;;;;:::o;55306:93::-;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;:::-;55359:8:::1;:32:::0;;55370:21:::1;::::0;55359:8;-1:-1:-1;;55359:32:0::1;-1:-1:-1::0;;;55370:21:0;55359:32:::1;::::0;48281;;;;;;;;;:::o;49843:96::-;49923:8;;-1:-1:-1;;;49923:8:0;;;;;49843:96::o;15110:87::-;15183:6;;-1:-1:-1;;;;;15183:6:0;15110:87;:::o;48521:49::-;;;;;;;;;;;;;:::o;35887:104::-;35943:13;35976:7;35969:14;;;;;:::i;50176:115::-;-1:-1:-1;;;;;50264:19:0;50237:7;50264:19;;;:11;:19;;;;;;;50176:115::o;48320:34::-;;;;;;;;;:::o;48887:252::-;48990:12;;;;;;;48982:86;;;;-1:-1:-1;;;48982:86:0;;;;;;;:::i;:::-;49079:52;49098:12;:10;:12::i;:::-;49112:8;49122;49079:18;:52::i;48482:30::-;;;-1:-1:-1;;;48482:30:0;;;;;:::o;56110: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;:::-;56156:8:::1;:15:::0;;-1:-1:-1;;56156:15:0::1;56167:4;56156:15;::::0;;56110:69::o;53504:686::-;53590:1;53581:6;:10;53572:55;;;;-1:-1:-1;;;53572:55:0;;;;;;;:::i;:::-;53665:13;;53709:9;;53700:18;;53691:49;;;;-1:-1:-1;;;53691:49:0;;;;;;;:::i;:::-;53779:9;;53760:15;53769:6;53760;:15;:::i;:::-;:28;;53751:88;;;;-1:-1:-1;;;53751:88:0;;;;;;;:::i;:::-;53886:19;53874:8;;-1:-1:-1;;;53874:8:0;;;;;:31;;;;;-1:-1:-1;;;53874:31:0;;;;;;;;;;53852:115;;;;-1:-1:-1;;;53852:115:0;;;;;;;:::i;:::-;54027:6;54015:9;;:18;;;;:::i;:::-;54002:9;:31;;53980:116;;;;-1:-1:-1;;;53980:116:0;;;;;;;:::i;:::-;54126:6;54109:13;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;54145:37:0;;-1:-1:-1;54155:10:0;54167:6;54175;54145:9;:37::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;56524: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;;;;;56608:25:0;::::1;56600:57;;;;-1:-1:-1::0;;;56600:57:0::1;;;;;;;:::i;:::-;56668:14;:28:::0;;-1:-1:-1;;;;;;56668:28:0::1;-1:-1:-1::0;;;;;56668:28:0;;;::::1;::::0;;;::::1;::::0;;56524:180::o;57456:442::-;57600:8;;57565:13;;57600:8;;57596:71;;57641:14;57634:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57596:71;57679:28;57710:7;57679:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57779:1;57754:14;57748:28;:32;:142;;;;;;;;;;;;;;;;;57824:14;57840:18;:7;:16;:18::i;:::-;57807:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57748:142;57728:162;57456:442;-1:-1:-1;;;57456:442:0:o;48577:49::-;;;;;;;;;;;;;:::o;47730:27::-;;;;:::o;47766:25::-;;;;:::o;47519:30::-;;;;:::o;56020:82::-;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;:::-;56072:14:::1;:22:::0;;-1:-1:-1;;56072:22:0::1;::::0;;56020:82::o;56712: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;:::-;56779:6:::1;:19:::0;;-1:-1:-1;;;;;;56779:19:0::1;-1:-1:-1::0;;;;;56779:19:0;;;::::1;::::0;;;::::1;::::0;;56712:94::o;55706: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;:::-;55780:12:::1;:22:::0;55706:104::o;37796:164::-;-1:-1:-1;;;;;37917:25:0;;;37893:4;37917:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37796:164;;;;;:::o;47483:29::-;;;;:::o;54545: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;:::-;54627:13:::1;::::0;54694:9:::1;::::0;54675:15:::1;54684:6:::0;54627:13;54675:15:::1;:::i;:::-;:28;;54653:120;;;;-1:-1:-1::0;;;54653:120:0::1;;;;;;;:::i;56187: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;:::-;56273: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;47637:36::-;;;;:::o;50047:121::-;-1:-1:-1;;;;;50138:22:0;50111:7;50138:22;;;:14;:22;;;;;;;50047:121::o;52290:1206::-;52450:22;52438:8;;-1:-1:-1;;;52438:8:0;;;;;:34;;;;;-1:-1:-1;;;52438:34:0;;;;;;;;;;52416:123;;;;-1:-1:-1;;;52416:123:0;;;;;;;:::i;:::-;52610:14;;52574:93;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52610:14:0;;52643:9;;;;;;52574:93;;52643:9;;;;52574:93;;;;;;;;;-1:-1:-1;52574:17:0;;-1:-1:-1;;;52574:93:0:i;:::-;52552:170;;;;-1:-1:-1;;;52552:170:0;;;;;;;:::i;:::-;52752:1;52743:6;:10;52735:55;;;;-1:-1:-1;;;52735:55:0;;;;;;;:::i;:::-;52898:12;;52873:10;52857:28;;;;:14;:28;;;;;;:37;;52888:6;;52857:37;:::i;:::-;:53;;52835:154;;;;-1:-1:-1;;;52835:154:0;;;;;;;:::i;:::-;53075:6;53060:12;;:21;;;;:::i;:::-;53047:9;:34;;53025:119;;;;-1:-1:-1;;;53025:119:0;;;;;;;:::i;:::-;53212:11;;53202:6;53187:12;;:21;;;;:::i;:::-;:36;;53165:139;;;;-1:-1:-1;;;53165:139:0;;;;;;;:::i;:::-;53333:6;53317:12;;:22;;;;;;;:::i;:::-;;;;;;;;53367:6;53350:13;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;53400:10:0;53384:28;;;;:14;:28;;;;;:38;;53416:6;;53384:28;:38;;53416:6;;53384:38;:::i;:::-;;;;;;;;53435:53;53445:10;53473:6;53457:13;;:22;;;;:::i;:::-;53481:6;53435:9;:53::i;27542:157::-;-1:-1:-1;;;;;;27651:40:0;;-1:-1:-1;;;27651:40:0;27542:157;;;:::o;40531:127::-;40596:4;40620:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40620:16:0;:30;;;40531:127::o;13834:98::-;13914:10;13834:98;:::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;50732:217::-;50856:9;50851:89;50875:6;50871:1;:10;50851:89;;;50903:25;50913:2;50917:10;50926:1;50917:6;:10;:::i;50903:25::-;50883:3;;;;:::i;:::-;;;;50851:89;;50299:404;50383:4;50399:19;50471:4;50478:10;50445:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50421:79;;;;;;50399:101;;50513:14;50530:48;50575:2;50530:36;:11;:34;:36::i;:::-;:44;;:48::i;:::-;50513:65;;50604:6;-1:-1:-1;;;;;50595:15:0;:5;-1:-1:-1;;;;;50595:15:0;;50591:105;;;50635:4;50628:11;;;;;;50591:105;50679:5;50672:12;;;;;;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;;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;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;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;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;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;17398:387::-;17721:20;17769:8;;;17398:387::o;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:425::-;15452:2;15434:21;;;15491:2;15471:18;;;15464:30;15530:34;15525:2;15510:18;;15503:62;15601:31;15596:2;15581:18;;15574:59;15665:3;15650:19;;15424:251::o;15680:410::-;15882:2;15864:21;;;15921:2;15901:18;;;15894:30;15960:34;15955:2;15940:18;;15933:62;-1:-1:-1;;;16026:2:1;16011:18;;16004:44;16080:3;16065:19;;15854:236::o;16095:420::-;16297:2;16279:21;;;16336:2;16316:18;;;16309:30;16375:34;16370:2;16355:18;;16348:62;16446:26;16441:2;16426:18;;16419:54;16505:3;16490:19;;16269:246::o;16520:406::-;16722:2;16704:21;;;16761:2;16741:18;;;16734:30;16800:34;16795:2;16780:18;;16773:62;-1:-1:-1;;;16866:2:1;16851:18;;16844:40;16916:3;16901:19;;16694:232::o;16931:405::-;17133:2;17115:21;;;17172:2;17152:18;;;17145:30;17211:34;17206:2;17191:18;;17184:62;-1:-1:-1;;;17277:2:1;17262:18;;17255:39;17326:3;17311:19;;17105:231::o;17341:417::-;17543:2;17525:21;;;17582:2;17562:18;;;17555:30;17621:34;17616:2;17601:18;;17594:62;-1:-1:-1;;;17687:2:1;17672:18;;17665:51;17748:3;17733:19;;17515:243::o;17763:343::-;17965:2;17947:21;;;18004:2;17984:18;;;17977:30;-1:-1:-1;;;18038:2:1;18023:18;;18016:49;18097:2;18082:18;;17937:169::o;18111:398::-;18313:2;18295:21;;;18352:2;18332:18;;;18325:30;18391:34;18386:2;18371:18;;18364:62;-1:-1:-1;;;18457:2:1;18442:18;;18435:32;18499:3;18484:19;;18285:224::o;18514:352::-;18716:2;18698:21;;;18755:2;18735:18;;;18728:30;18794;18789:2;18774:18;;18767:58;18857:2;18842:18;;18688:178::o;18871:356::-;19073:2;19055:21;;;19092:18;;;19085:30;19151:34;19146:2;19131:18;;19124:62;19218:2;19203:18;;19045:182::o;19232:408::-;19434:2;19416:21;;;19473:2;19453:18;;;19446:30;19512:34;19507:2;19492:18;;19485:62;-1:-1:-1;;;19578:2:1;19563:18;;19556:42;19630:3;19615:19;;19406:234::o;19645:356::-;19847:2;19829:21;;;19866:18;;;19859:30;19925:34;19920:2;19905:18;;19898:62;19992:2;19977:18;;19819:182::o;20006:405::-;20208:2;20190:21;;;20247:2;20227:18;;;20220:30;20286:34;20281:2;20266:18;;20259:62;-1:-1:-1;;;20352:2:1;20337:18;;20330:39;20401:3;20386:19;;20180:231::o;20416:340::-;20618:2;20600:21;;;20657:2;20637:18;;;20630:30;-1:-1:-1;;;20691:2:1;20676:18;;20669:46;20747:2;20732:18;;20590:166::o;20761:397::-;20963:2;20945:21;;;21002:2;20982:18;;;20975:30;21041:34;21036:2;21021:18;;21014:62;-1:-1:-1;;;21107:2:1;21092:18;;21085:31;21148:3;21133:19;;20935:223::o;21163:356::-;21365:2;21347:21;;;21384:18;;;21377:30;21443:34;21438:2;21423:18;;21416:62;21510:2;21495:18;;21337:182::o;21524:413::-;21726:2;21708:21;;;21765:2;21745:18;;;21738:30;21804:34;21799:2;21784:18;;21777:62;-1:-1:-1;;;21870:2:1;21855:18;;21848:47;21927:3;21912:19;;21698:239::o;21942:355::-;22144:2;22126:21;;;22183:2;22163:18;;;22156:30;22222:33;22217:2;22202:18;;22195:61;22288:2;22273:18;;22116:181::o;22302:399::-;22504:2;22486:21;;;22543:2;22523:18;;;22516:30;22582:34;22577:2;22562:18;;22555:62;-1:-1:-1;;;22648:2:1;22633:18;;22626:33;22691:3;22676:19;;22476:225::o;22706:415::-;22908:2;22890:21;;;22947:2;22927:18;;;22920:30;22986:34;22981:2;22966:18;;22959:62;-1:-1:-1;;;23052:2:1;23037:18;;23030:49;23111:3;23096:19;;22880:241::o;23126:410::-;23328:2;23310:21;;;23367:2;23347:18;;;23340:30;23406:34;23401:2;23386:18;;23379:62;-1:-1:-1;;;23472:2:1;23457:18;;23450:44;23526:3;23511:19;;23300:236::o;23541:406::-;23743:2;23725:21;;;23782:2;23762:18;;;23755:30;23821:34;23816:2;23801:18;;23794:62;-1:-1:-1;;;23887:2:1;23872:18;;23865:40;23937:3;23922:19;;23715:232::o;23952:177::-;24098:25;;;24086:2;24071:18;;24053:76::o;24134:128::-;;24205:1;24201:6;24198:1;24195:13;24192:2;;;24211:18;;:::i;:::-;-1:-1:-1;24247:9:1;;24182:80::o;24267:120::-;;24333:1;24323:2;;24338:18;;:::i;:::-;-1:-1:-1;24372:9:1;;24313:74::o;24392:168::-;;24498:1;24494;24490:6;24486:14;24483:1;24480:21;24475:1;24468:9;24461:17;24457:45;24454:2;;;24505:18;;:::i;:::-;-1:-1:-1;24545:9:1;;24444:116::o;24565:125::-;;24633:1;24630;24627:8;24624:2;;;24638:18;;:::i;:::-;-1:-1:-1;24675:9:1;;24614:76::o;24695:258::-;24767:1;24777:113;24791:6;24788:1;24785:13;24777:113;;;24867:11;;;24861:18;24848:11;;;24841:39;24813:2;24806:10;24777:113;;;24908:6;24905:1;24902:13;24899:2;;;-1:-1:-1;;24943:1:1;24925:16;;24918:27;24748:205::o;24958:380::-;25043:1;25033:12;;25090:1;25080:12;;;25101:2;;25155:4;25147:6;25143:17;25133:27;;25101:2;25208;25200:6;25197:14;25177:18;25174:38;25171:2;;;25254:10;25249:3;25245:20;25242:1;25235:31;25289:4;25286:1;25279:15;25317:4;25314:1;25307:15;25171:2;;25013:325;;;:::o;25343:135::-;;-1:-1:-1;;25403:17:1;;25400:2;;;25423:18;;:::i;:::-;-1:-1:-1;25470:1:1;25459:13;;25390:88::o;25483:112::-;;25541:1;25531:2;;25546:18;;:::i;:::-;-1:-1:-1;25580:9:1;;25521:74::o;25600:127::-;25661:10;25656:3;25652:20;25649:1;25642:31;25692:4;25689:1;25682:15;25716:4;25713:1;25706:15;25732:127;25793:10;25788:3;25784:20;25781:1;25774:31;25824:4;25821:1;25814:15;25848:4;25845:1;25838:15;25864:127;25925:10;25920:3;25916:20;25913:1;25906:31;25956:4;25953:1;25946:15;25980:4;25977:1;25970:15;25996:133;-1:-1:-1;;;;;;26072:32:1;;26062:43;;26052:2;;26119:1;26116;26109:12

Swarm Source

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