ETH Price: $2,710.10 (+6.82%)
Gas: 2 Gwei

Token

WhaleGoddess Mint Pass (WGMP)
 

Overview

Max Total Supply

0 WGMP

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
adhdegen.eth
Balance
1 WGMP
0xea85CCD2a311e579167Ae0406D9f3302A358db06
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:
MintPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-28
*/

// File: @openzeppelin/contracts/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/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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/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



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



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



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



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



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



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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 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/MintPass.sol

//"SPDX-License-Identifier: UNLICENSED"
pragma solidity ^0.8.7;



interface ICollectible is IERC721 {
	function mintWithWGPass(address _user) external;
} 

contract MintPass is ERC721, Ownable {
    uint256 public tokenCounter;

    uint256 private _salePrice = 50000000000000000; // .05 ETH

    uint256 private _maxPerTx = 6; // Set to one higher than actual, to save gas on <= checks.

    uint256 public _totalSupply = 100; 

    string private _baseTokenURI;
    uint private _saleState; // 0 - No sale. 1 - Main Sale.

    // Faciliating the needed functionality for the Mint Pass
    mapping(ICollectible => bool) trustedCollectibles;
    mapping(ICollectible => mapping(uint256 => bool)) mintClaimed;

    constructor () ERC721 ("WhaleGoddess Mint Pass","WGMP")  {
        tokenCounter = 0;
        _saleState = 0;
    }
    
    function addTrustedCollectible(ICollectible collectible) public onlyOwner {
        trustedCollectibles[collectible] = true;
    }
    
    function mintTrustedCollectible(ICollectible collectible) public {
        require(unclaimedCollectibles(collectible) > 0, "None of collectible to mint"); 
        for(uint256 i = 0; i < tokenCounter; i++) {
            if(msg.sender == ownerOf(i) && !mintClaimed[collectible][i]) {
                collectible.mintWithWGPass(msg.sender);
                mintClaimed[collectible][i] = true;
            }
        }
    }

    function unclaimedCollectibles(ICollectible collectible) public view returns (uint256) {
        require(trustedCollectibles[collectible], "untrusted collectible");
        uint256 inc = 0;
        for(uint256 i = 0; i < tokenCounter; i++) {
            if(msg.sender == ownerOf(i) && !mintClaimed[collectible][i]) {
                inc++;
            }
        }
        
        return inc;
    }

    function mint(uint256 _count) public payable {
        require(isSaleOpen(), "Sale is not yet open");
        require(_count < _maxPerTx, "Cant mint more than mintMax");
        require((_count + tokenCounter) <= _totalSupply, "Ran out of NFTs for sale! Sry!");
        require(msg.value >= (_salePrice * _count), "Ether value sent is not correct");

        createCollectibles(_count);
    }

    function ownerMint(uint256 _count) public onlyOwner {
        require((_count + tokenCounter) <= _totalSupply, "Ran out of NFTs for presale! Sry!");

        createCollectibles(_count);
    }
    function createCollectibles(uint256 _count) private {
        for(uint i = 0; i < _count; i++) {
            createCollectible();
        }
    }

    function createCollectible() private {
            _safeMint(msg.sender, tokenCounter);
            tokenCounter = tokenCounter + 1;
    }
    
    function maxMintsPerTransaction() public view returns (uint) {
        return _maxPerTx - 1; //_maxPerTx is off by 1 for require checks in HOF Mint. Allows use of < instead of <=, less gas
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return getBaseURI();
    }
    function wenSale() public view returns (string memory) {
        if(!isSaleOpen()) return "#soon";
        return isSaleComplete() ? "complete" : "now!";
    }

    function isSaleOpen() public view returns (bool) {
        return _saleState == 1;
    }

    function isSaleComplete() public view returns (bool) {
        return tokenCounter == _totalSupply;
    }
    
    function getSaleState() private view returns (uint){
        return _saleState;
    }
    
    function setSaleState(uint saleState) public onlyOwner {
        _saleState = saleState;
    }
    
    function getSalePrice() private view returns (uint){
        return _salePrice;
    }
    
    function setSalePrice(uint256 salePrice) public onlyOwner {
        _salePrice = salePrice;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getBaseURI() public view returns (string memory){
        return _baseTokenURI;
    }
    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

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":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ICollectible","name":"collectible","type":"address"}],"name":"addTrustedCollectible","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isSaleComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract ICollectible","name":"collectible","type":"address"}],"name":"mintTrustedCollectible","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"saleState","type":"uint256"}],"name":"setSaleState","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":[],"name":"tokenCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"contract ICollectible","name":"collectible","type":"address"}],"name":"unclaimedCollectibles","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wenSale","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266b1a2bc2ec5000060085560066009556064600a553480156200002657600080fd5b506040518060400160405280601681526020017f5768616c65476f6464657373204d696e742050617373000000000000000000008152506040518060400160405280600481526020017f57474d50000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ab929190620001cb565b508060019080519060200190620000c4929190620001cb565b505050620000e7620000db620000fd60201b60201c565b6200010560201b60201c565b60006007819055506000600c81905550620002e0565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d9906200027b565b90600052602060002090601f016020900481019282620001fd576000855562000249565b82601f106200021857805160ff191683800117855562000249565b8280016001018555821562000249579182015b82811115620002485782518255916020019190600101906200022b565b5b5090506200025891906200025c565b5090565b5b80821115620002775760008160009055506001016200025d565b5090565b600060028204905060018216806200029457607f821691505b60208210811415620002ab57620002aa620002b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c1280620002f06000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a76d192511610095578063d082e38111610064578063d082e381146106b0578063e985e9c5146106db578063f19e75d414610718578063f2fde38b14610741576101e3565b8063a76d1925146105e2578063b88d4fde1461061f578063c31c0b6214610648578063c87b56dd14610673576101e3565b80638da5cb5b116100d15780638da5cb5b1461054757806395d89b4114610572578063a0712d681461059d578063a22cb465146105b9576101e3565b806370a08231146104be578063714c5398146104fb578063715018a614610526578063853828b61461053d576101e3565b806323b872dd1161017a5780634445129411610149578063444512941461040257806355f804b31461042d5780636352211e1461045657806364aa0c7914610493576101e3565b806323b872dd1461035c5780633e5b5986146103855780633eaaf86b146103ae57806342842e0e146103d9576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806311a23db0146102df5780631919fed7146103085780631a08133014610331576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063084c40881461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906129a3565b61076a565b60405161021c9190612ecb565b60405180910390f35b34801561023157600080fd5b5061023a61084c565b6040516102479190612ee6565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612a73565b6108de565b6040516102849190612e64565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612a73565b610963565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612963565b6109e9565b005b3480156102eb57600080fd5b50610306600480360381019061030191906129fd565b610b01565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612a73565b610ce8565b005b34801561033d57600080fd5b50610346610d6e565b6040516103539190612ecb565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e919061284d565b610d7b565b005b34801561039157600080fd5b506103ac60048036038101906103a791906129fd565b610ddb565b005b3480156103ba57600080fd5b506103c3610eb2565b6040516103d091906131e8565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb919061284d565b610eb8565b005b34801561040e57600080fd5b50610417610ed8565b6040516104249190612ee6565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612a2a565b610fa7565b005b34801561046257600080fd5b5061047d60048036038101906104789190612a73565b61103d565b60405161048a9190612e64565b60405180910390f35b34801561049f57600080fd5b506104a86110ef565b6040516104b591906131e8565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e091906127e0565b611105565b6040516104f291906131e8565b60405180910390f35b34801561050757600080fd5b506105106111bd565b60405161051d9190612ee6565b60405180910390f35b34801561053257600080fd5b5061053b61124f565b005b6105456112d7565b005b34801561055357600080fd5b5061055c611393565b6040516105699190612e64565b60405180910390f35b34801561057e57600080fd5b506105876113bd565b6040516105949190612ee6565b60405180910390f35b6105b760048036038101906105b29190612a73565b61144f565b005b3480156105c557600080fd5b506105e060048036038101906105db9190612923565b611588565b005b3480156105ee57600080fd5b50610609600480360381019061060491906129fd565b611709565b60405161061691906131e8565b60405180910390f35b34801561062b57600080fd5b50610646600480360381019061064191906128a0565b611874565b005b34801561065457600080fd5b5061065d6118d6565b60405161066a9190612ecb565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612a73565b6118e4565b6040516106a79190612ee6565b60405180910390f35b3480156106bc57600080fd5b506106c561193d565b6040516106d291906131e8565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd919061280d565b611943565b60405161070f9190612ecb565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190612a73565b6119d7565b005b34801561074d57600080fd5b50610768600480360381019061076391906127e0565b611ab1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610845575061084482611ba9565b5b9050919050565b60606000805461085b9061346e565b80601f01602080910402602001604051908101604052809291908181526020018280546108879061346e565b80156108d45780601f106108a9576101008083540402835291602001916108d4565b820191906000526020600020905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b60006108e982611c13565b610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f906130e8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61096b611c7f565b73ffffffffffffffffffffffffffffffffffffffff16610989611393565b73ffffffffffffffffffffffffffffffffffffffff16146109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690613108565b60405180910390fd5b80600c8190555050565b60006109f48261103d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906131a8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a84611c7f565b73ffffffffffffffffffffffffffffffffffffffff161480610ab35750610ab281610aad611c7f565b611943565b5b610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990613028565b60405180910390fd5b610afc8383611c87565b505050565b6000610b0c82611709565b11610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4390613128565b60405180910390fd5b60005b600754811015610ce457610b628161103d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148015610bf75750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff16155b15610cd1578173ffffffffffffffffffffffffffffffffffffffff166386cbadce336040518263ffffffff1660e01b8152600401610c359190612e64565b600060405180830381600087803b158015610c4f57600080fd5b505af1158015610c63573d6000803e3d6000fd5b505050506001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8080610cdc906134d1565b915050610b4f565b5050565b610cf0611c7f565b73ffffffffffffffffffffffffffffffffffffffff16610d0e611393565b73ffffffffffffffffffffffffffffffffffffffff1614610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90613108565b60405180910390fd5b8060088190555050565b60006001600c5414905090565b610d8c610d86611c7f565b82611d40565b610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906131c8565b60405180910390fd5b610dd6838383611e1e565b505050565b610de3611c7f565b73ffffffffffffffffffffffffffffffffffffffff16610e01611393565b73ffffffffffffffffffffffffffffffffffffffff1614610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90613108565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a5481565b610ed383838360405180602001604052806000815250611874565b505050565b6060610ee2610d6e565b610f23576040518060400160405280600581526020017f23736f6f6e0000000000000000000000000000000000000000000000000000008152509050610fa4565b610f2b6118d6565b610f6a576040518060400160405280600481526020017f6e6f772100000000000000000000000000000000000000000000000000000000815250610fa1565b6040518060400160405280600881526020017f636f6d706c6574650000000000000000000000000000000000000000000000008152505b90505b90565b610faf611c7f565b73ffffffffffffffffffffffffffffffffffffffff16610fcd611393565b73ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90613108565b60405180910390fd5b80600b90805190602001906110399291906125df565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90613068565b60405180910390fd5b80915050919050565b600060016009546111009190613372565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90613048565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600b80546111cc9061346e565b80601f01602080910402602001604051908101604052809291908181526020018280546111f89061346e565b80156112455780601f1061121a57610100808354040283529160200191611245565b820191906000526020600020905b81548152906001019060200180831161122857829003601f168201915b5050505050905090565b611257611c7f565b73ffffffffffffffffffffffffffffffffffffffff16611275611393565b73ffffffffffffffffffffffffffffffffffffffff16146112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290613108565b60405180910390fd5b6112d5600061207a565b565b6112df611c7f565b73ffffffffffffffffffffffffffffffffffffffff166112fd611393565b73ffffffffffffffffffffffffffffffffffffffff1614611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613108565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061139157600080fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113cc9061346e565b80601f01602080910402602001604051908101604052809291908181526020018280546113f89061346e565b80156114455780601f1061141a57610100808354040283529160200191611445565b820191906000526020600020905b81548152906001019060200180831161142857829003601f168201915b5050505050905090565b611457610d6e565b611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90612f68565b60405180910390fd5b60095481106114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d1906130a8565b60405180910390fd5b600a54600754826114eb91906132c2565b111561152c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611523906130c8565b60405180910390fd5b8060085461153a9190613318565b34101561157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390612fc8565b60405180910390fd5b61158581612140565b50565b611590611c7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590612fa8565b60405180910390fd5b806005600061160b611c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116b8611c7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116fd9190612ecb565b60405180910390a35050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e90613008565b60405180910390fd5b6000805b60075481101561186a576117ae8161103d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480156118435750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff16155b15611857578180611853906134d1565b9250505b8080611862906134d1565b91505061179b565b5080915050919050565b61188561187f611c7f565b83611d40565b6118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb906131c8565b60405180910390fd5b6118d08484848461216a565b50505050565b6000600a5460075414905090565b60606118ef82611c13565b61192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590613168565b60405180910390fd5b6119366111bd565b9050919050565b60075481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119df611c7f565b73ffffffffffffffffffffffffffffffffffffffff166119fd611393565b73ffffffffffffffffffffffffffffffffffffffff1614611a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4a90613108565b60405180910390fd5b600a5460075482611a6491906132c2565b1115611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613188565b60405180910390fd5b611aae81612140565b50565b611ab9611c7f565b73ffffffffffffffffffffffffffffffffffffffff16611ad7611393565b73ffffffffffffffffffffffffffffffffffffffff1614611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2490613108565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490612f28565b60405180910390fd5b611ba68161207a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cfa8361103d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d4b82611c13565b611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8190612fe8565b60405180910390fd5b6000611d958361103d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e0457508373ffffffffffffffffffffffffffffffffffffffff16611dec846108de565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e155750611e148185611943565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e3e8261103d565b73ffffffffffffffffffffffffffffffffffffffff1614611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b90613148565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90612f88565b60405180910390fd5b611f0f8383836121c6565b611f1a600082611c87565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f6a9190613372565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fc191906132c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612166576121536121cb565b808061215e906134d1565b915050612143565b5050565b612175848484611e1e565b612181848484846121ee565b6121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b790612f08565b60405180910390fd5b50505050565b505050565b6121d733600754612385565b60016007546121e691906132c2565b600781905550565b600061220f8473ffffffffffffffffffffffffffffffffffffffff166123a3565b15612378578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612238611c7f565b8786866040518563ffffffff1660e01b815260040161225a9493929190612e7f565b602060405180830381600087803b15801561227457600080fd5b505af19250505080156122a557506040513d601f19601f820116820180604052508101906122a291906129d0565b60015b612328573d80600081146122d5576040519150601f19603f3d011682016040523d82523d6000602084013e6122da565b606091505b50600081511415612320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231790612f08565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061237d565b600190505b949350505050565b61239f8282604051806020016040528060008152506123b6565b5050565b600080823b905060008111915050919050565b6123c08383612411565b6123cd60008484846121ee565b61240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390612f08565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247890613088565b60405180910390fd5b61248a81611c13565b156124ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c190612f48565b60405180910390fd5b6124d6600083836121c6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252691906132c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546125eb9061346e565b90600052602060002090601f01602090048101928261260d5760008555612654565b82601f1061262657805160ff1916838001178555612654565b82800160010185558215612654579182015b82811115612653578251825591602001919060010190612638565b5b5090506126619190612665565b5090565b5b8082111561267e576000816000905550600101612666565b5090565b600061269561269084613228565b613203565b9050828152602081018484840111156126b1576126b06135ac565b5b6126bc84828561342c565b509392505050565b60006126d76126d284613259565b613203565b9050828152602081018484840111156126f3576126f26135ac565b5b6126fe84828561342c565b509392505050565b60008135905061271581613b69565b92915050565b60008135905061272a81613b80565b92915050565b60008135905061273f81613b97565b92915050565b60008151905061275481613b97565b92915050565b600082601f83011261276f5761276e6135a7565b5b813561277f848260208601612682565b91505092915050565b60008135905061279781613bae565b92915050565b600082601f8301126127b2576127b16135a7565b5b81356127c28482602086016126c4565b91505092915050565b6000813590506127da81613bc5565b92915050565b6000602082840312156127f6576127f56135b6565b5b600061280484828501612706565b91505092915050565b60008060408385031215612824576128236135b6565b5b600061283285828601612706565b925050602061284385828601612706565b9150509250929050565b600080600060608486031215612866576128656135b6565b5b600061287486828701612706565b935050602061288586828701612706565b9250506040612896868287016127cb565b9150509250925092565b600080600080608085870312156128ba576128b96135b6565b5b60006128c887828801612706565b94505060206128d987828801612706565b93505060406128ea878288016127cb565b925050606085013567ffffffffffffffff81111561290b5761290a6135b1565b5b6129178782880161275a565b91505092959194509250565b6000806040838503121561293a576129396135b6565b5b600061294885828601612706565b92505060206129598582860161271b565b9150509250929050565b6000806040838503121561297a576129796135b6565b5b600061298885828601612706565b9250506020612999858286016127cb565b9150509250929050565b6000602082840312156129b9576129b86135b6565b5b60006129c784828501612730565b91505092915050565b6000602082840312156129e6576129e56135b6565b5b60006129f484828501612745565b91505092915050565b600060208284031215612a1357612a126135b6565b5b6000612a2184828501612788565b91505092915050565b600060208284031215612a4057612a3f6135b6565b5b600082013567ffffffffffffffff811115612a5e57612a5d6135b1565b5b612a6a8482850161279d565b91505092915050565b600060208284031215612a8957612a886135b6565b5b6000612a97848285016127cb565b91505092915050565b612aa9816133a6565b82525050565b612ab8816133b8565b82525050565b6000612ac98261328a565b612ad381856132a0565b9350612ae381856020860161343b565b612aec816135bb565b840191505092915050565b6000612b0282613295565b612b0c81856132b1565b9350612b1c81856020860161343b565b612b25816135bb565b840191505092915050565b6000612b3d6032836132b1565b9150612b48826135cc565b604082019050919050565b6000612b606026836132b1565b9150612b6b8261361b565b604082019050919050565b6000612b83601c836132b1565b9150612b8e8261366a565b602082019050919050565b6000612ba66014836132b1565b9150612bb182613693565b602082019050919050565b6000612bc96024836132b1565b9150612bd4826136bc565b604082019050919050565b6000612bec6019836132b1565b9150612bf78261370b565b602082019050919050565b6000612c0f601f836132b1565b9150612c1a82613734565b602082019050919050565b6000612c32602c836132b1565b9150612c3d8261375d565b604082019050919050565b6000612c556015836132b1565b9150612c60826137ac565b602082019050919050565b6000612c786038836132b1565b9150612c83826137d5565b604082019050919050565b6000612c9b602a836132b1565b9150612ca682613824565b604082019050919050565b6000612cbe6029836132b1565b9150612cc982613873565b604082019050919050565b6000612ce16020836132b1565b9150612cec826138c2565b602082019050919050565b6000612d04601b836132b1565b9150612d0f826138eb565b602082019050919050565b6000612d27601e836132b1565b9150612d3282613914565b602082019050919050565b6000612d4a602c836132b1565b9150612d558261393d565b604082019050919050565b6000612d6d6020836132b1565b9150612d788261398c565b602082019050919050565b6000612d90601b836132b1565b9150612d9b826139b5565b602082019050919050565b6000612db36029836132b1565b9150612dbe826139de565b604082019050919050565b6000612dd6602f836132b1565b9150612de182613a2d565b604082019050919050565b6000612df96021836132b1565b9150612e0482613a7c565b604082019050919050565b6000612e1c6021836132b1565b9150612e2782613acb565b604082019050919050565b6000612e3f6031836132b1565b9150612e4a82613b1a565b604082019050919050565b612e5e81613422565b82525050565b6000602082019050612e796000830184612aa0565b92915050565b6000608082019050612e946000830187612aa0565b612ea16020830186612aa0565b612eae6040830185612e55565b8181036060830152612ec08184612abe565b905095945050505050565b6000602082019050612ee06000830184612aaf565b92915050565b60006020820190508181036000830152612f008184612af7565b905092915050565b60006020820190508181036000830152612f2181612b30565b9050919050565b60006020820190508181036000830152612f4181612b53565b9050919050565b60006020820190508181036000830152612f6181612b76565b9050919050565b60006020820190508181036000830152612f8181612b99565b9050919050565b60006020820190508181036000830152612fa181612bbc565b9050919050565b60006020820190508181036000830152612fc181612bdf565b9050919050565b60006020820190508181036000830152612fe181612c02565b9050919050565b6000602082019050818103600083015261300181612c25565b9050919050565b6000602082019050818103600083015261302181612c48565b9050919050565b6000602082019050818103600083015261304181612c6b565b9050919050565b6000602082019050818103600083015261306181612c8e565b9050919050565b6000602082019050818103600083015261308181612cb1565b9050919050565b600060208201905081810360008301526130a181612cd4565b9050919050565b600060208201905081810360008301526130c181612cf7565b9050919050565b600060208201905081810360008301526130e181612d1a565b9050919050565b6000602082019050818103600083015261310181612d3d565b9050919050565b6000602082019050818103600083015261312181612d60565b9050919050565b6000602082019050818103600083015261314181612d83565b9050919050565b6000602082019050818103600083015261316181612da6565b9050919050565b6000602082019050818103600083015261318181612dc9565b9050919050565b600060208201905081810360008301526131a181612dec565b9050919050565b600060208201905081810360008301526131c181612e0f565b9050919050565b600060208201905081810360008301526131e181612e32565b9050919050565b60006020820190506131fd6000830184612e55565b92915050565b600061320d61321e565b905061321982826134a0565b919050565b6000604051905090565b600067ffffffffffffffff82111561324357613242613578565b5b61324c826135bb565b9050602081019050919050565b600067ffffffffffffffff82111561327457613273613578565b5b61327d826135bb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006132cd82613422565b91506132d883613422565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330d5761330c61351a565b5b828201905092915050565b600061332382613422565b915061332e83613422565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133675761336661351a565b5b828202905092915050565b600061337d82613422565b915061338883613422565b92508282101561339b5761339a61351a565b5b828203905092915050565b60006133b182613402565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006133fb826133a6565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561345957808201518184015260208101905061343e565b83811115613468576000848401525b50505050565b6000600282049050600182168061348657607f821691505b6020821081141561349a57613499613549565b5b50919050565b6134a9826135bb565b810181811067ffffffffffffffff821117156134c8576134c7613578565b5b80604052505050565b60006134dc82613422565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561350f5761350e61351a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c65206973206e6f7420796574206f70656e000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f756e7472757374656420636f6c6c65637469626c650000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e74206d696e74206d6f7265207468616e206d696e744d61780000000000600082015250565b7f52616e206f7574206f66204e46547320666f722073616c652120537279210000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e65206f6620636f6c6c65637469626c6520746f206d696e740000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f52616e206f7574206f66204e46547320666f722070726573616c65212053727960008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613b72816133a6565b8114613b7d57600080fd5b50565b613b89816133b8565b8114613b9457600080fd5b50565b613ba0816133c4565b8114613bab57600080fd5b50565b613bb7816133f0565b8114613bc257600080fd5b50565b613bce81613422565b8114613bd957600080fd5b5056fea26469706673582212205afcc90c4625b2d052fbe40eb846c1597973d44bb9bab2db368809f59bb4799464736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063a76d192511610095578063d082e38111610064578063d082e381146106b0578063e985e9c5146106db578063f19e75d414610718578063f2fde38b14610741576101e3565b8063a76d1925146105e2578063b88d4fde1461061f578063c31c0b6214610648578063c87b56dd14610673576101e3565b80638da5cb5b116100d15780638da5cb5b1461054757806395d89b4114610572578063a0712d681461059d578063a22cb465146105b9576101e3565b806370a08231146104be578063714c5398146104fb578063715018a614610526578063853828b61461053d576101e3565b806323b872dd1161017a5780634445129411610149578063444512941461040257806355f804b31461042d5780636352211e1461045657806364aa0c7914610493576101e3565b806323b872dd1461035c5780633e5b5986146103855780633eaaf86b146103ae57806342842e0e146103d9576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806311a23db0146102df5780631919fed7146103085780631a08133014610331576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063084c40881461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906129a3565b61076a565b60405161021c9190612ecb565b60405180910390f35b34801561023157600080fd5b5061023a61084c565b6040516102479190612ee6565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612a73565b6108de565b6040516102849190612e64565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612a73565b610963565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612963565b6109e9565b005b3480156102eb57600080fd5b50610306600480360381019061030191906129fd565b610b01565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612a73565b610ce8565b005b34801561033d57600080fd5b50610346610d6e565b6040516103539190612ecb565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e919061284d565b610d7b565b005b34801561039157600080fd5b506103ac60048036038101906103a791906129fd565b610ddb565b005b3480156103ba57600080fd5b506103c3610eb2565b6040516103d091906131e8565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb919061284d565b610eb8565b005b34801561040e57600080fd5b50610417610ed8565b6040516104249190612ee6565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612a2a565b610fa7565b005b34801561046257600080fd5b5061047d60048036038101906104789190612a73565b61103d565b60405161048a9190612e64565b60405180910390f35b34801561049f57600080fd5b506104a86110ef565b6040516104b591906131e8565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e091906127e0565b611105565b6040516104f291906131e8565b60405180910390f35b34801561050757600080fd5b506105106111bd565b60405161051d9190612ee6565b60405180910390f35b34801561053257600080fd5b5061053b61124f565b005b6105456112d7565b005b34801561055357600080fd5b5061055c611393565b6040516105699190612e64565b60405180910390f35b34801561057e57600080fd5b506105876113bd565b6040516105949190612ee6565b60405180910390f35b6105b760048036038101906105b29190612a73565b61144f565b005b3480156105c557600080fd5b506105e060048036038101906105db9190612923565b611588565b005b3480156105ee57600080fd5b50610609600480360381019061060491906129fd565b611709565b60405161061691906131e8565b60405180910390f35b34801561062b57600080fd5b50610646600480360381019061064191906128a0565b611874565b005b34801561065457600080fd5b5061065d6118d6565b60405161066a9190612ecb565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612a73565b6118e4565b6040516106a79190612ee6565b60405180910390f35b3480156106bc57600080fd5b506106c561193d565b6040516106d291906131e8565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd919061280d565b611943565b60405161070f9190612ecb565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190612a73565b6119d7565b005b34801561074d57600080fd5b50610768600480360381019061076391906127e0565b611ab1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610845575061084482611ba9565b5b9050919050565b60606000805461085b9061346e565b80601f01602080910402602001604051908101604052809291908181526020018280546108879061346e565b80156108d45780601f106108a9576101008083540402835291602001916108d4565b820191906000526020600020905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b60006108e982611c13565b610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f906130e8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61096b611c7f565b73ffffffffffffffffffffffffffffffffffffffff16610989611393565b73ffffffffffffffffffffffffffffffffffffffff16146109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690613108565b60405180910390fd5b80600c8190555050565b60006109f48261103d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906131a8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a84611c7f565b73ffffffffffffffffffffffffffffffffffffffff161480610ab35750610ab281610aad611c7f565b611943565b5b610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990613028565b60405180910390fd5b610afc8383611c87565b505050565b6000610b0c82611709565b11610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4390613128565b60405180910390fd5b60005b600754811015610ce457610b628161103d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148015610bf75750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff16155b15610cd1578173ffffffffffffffffffffffffffffffffffffffff166386cbadce336040518263ffffffff1660e01b8152600401610c359190612e64565b600060405180830381600087803b158015610c4f57600080fd5b505af1158015610c63573d6000803e3d6000fd5b505050506001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8080610cdc906134d1565b915050610b4f565b5050565b610cf0611c7f565b73ffffffffffffffffffffffffffffffffffffffff16610d0e611393565b73ffffffffffffffffffffffffffffffffffffffff1614610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90613108565b60405180910390fd5b8060088190555050565b60006001600c5414905090565b610d8c610d86611c7f565b82611d40565b610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906131c8565b60405180910390fd5b610dd6838383611e1e565b505050565b610de3611c7f565b73ffffffffffffffffffffffffffffffffffffffff16610e01611393565b73ffffffffffffffffffffffffffffffffffffffff1614610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90613108565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a5481565b610ed383838360405180602001604052806000815250611874565b505050565b6060610ee2610d6e565b610f23576040518060400160405280600581526020017f23736f6f6e0000000000000000000000000000000000000000000000000000008152509050610fa4565b610f2b6118d6565b610f6a576040518060400160405280600481526020017f6e6f772100000000000000000000000000000000000000000000000000000000815250610fa1565b6040518060400160405280600881526020017f636f6d706c6574650000000000000000000000000000000000000000000000008152505b90505b90565b610faf611c7f565b73ffffffffffffffffffffffffffffffffffffffff16610fcd611393565b73ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90613108565b60405180910390fd5b80600b90805190602001906110399291906125df565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90613068565b60405180910390fd5b80915050919050565b600060016009546111009190613372565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90613048565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600b80546111cc9061346e565b80601f01602080910402602001604051908101604052809291908181526020018280546111f89061346e565b80156112455780601f1061121a57610100808354040283529160200191611245565b820191906000526020600020905b81548152906001019060200180831161122857829003601f168201915b5050505050905090565b611257611c7f565b73ffffffffffffffffffffffffffffffffffffffff16611275611393565b73ffffffffffffffffffffffffffffffffffffffff16146112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290613108565b60405180910390fd5b6112d5600061207a565b565b6112df611c7f565b73ffffffffffffffffffffffffffffffffffffffff166112fd611393565b73ffffffffffffffffffffffffffffffffffffffff1614611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613108565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061139157600080fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113cc9061346e565b80601f01602080910402602001604051908101604052809291908181526020018280546113f89061346e565b80156114455780601f1061141a57610100808354040283529160200191611445565b820191906000526020600020905b81548152906001019060200180831161142857829003601f168201915b5050505050905090565b611457610d6e565b611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90612f68565b60405180910390fd5b60095481106114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d1906130a8565b60405180910390fd5b600a54600754826114eb91906132c2565b111561152c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611523906130c8565b60405180910390fd5b8060085461153a9190613318565b34101561157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390612fc8565b60405180910390fd5b61158581612140565b50565b611590611c7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590612fa8565b60405180910390fd5b806005600061160b611c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116b8611c7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116fd9190612ecb565b60405180910390a35050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e90613008565b60405180910390fd5b6000805b60075481101561186a576117ae8161103d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480156118435750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff16155b15611857578180611853906134d1565b9250505b8080611862906134d1565b91505061179b565b5080915050919050565b61188561187f611c7f565b83611d40565b6118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb906131c8565b60405180910390fd5b6118d08484848461216a565b50505050565b6000600a5460075414905090565b60606118ef82611c13565b61192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590613168565b60405180910390fd5b6119366111bd565b9050919050565b60075481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119df611c7f565b73ffffffffffffffffffffffffffffffffffffffff166119fd611393565b73ffffffffffffffffffffffffffffffffffffffff1614611a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4a90613108565b60405180910390fd5b600a5460075482611a6491906132c2565b1115611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613188565b60405180910390fd5b611aae81612140565b50565b611ab9611c7f565b73ffffffffffffffffffffffffffffffffffffffff16611ad7611393565b73ffffffffffffffffffffffffffffffffffffffff1614611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2490613108565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490612f28565b60405180910390fd5b611ba68161207a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cfa8361103d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d4b82611c13565b611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8190612fe8565b60405180910390fd5b6000611d958361103d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e0457508373ffffffffffffffffffffffffffffffffffffffff16611dec846108de565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e155750611e148185611943565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e3e8261103d565b73ffffffffffffffffffffffffffffffffffffffff1614611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b90613148565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90612f88565b60405180910390fd5b611f0f8383836121c6565b611f1a600082611c87565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f6a9190613372565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fc191906132c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612166576121536121cb565b808061215e906134d1565b915050612143565b5050565b612175848484611e1e565b612181848484846121ee565b6121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b790612f08565b60405180910390fd5b50505050565b505050565b6121d733600754612385565b60016007546121e691906132c2565b600781905550565b600061220f8473ffffffffffffffffffffffffffffffffffffffff166123a3565b15612378578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612238611c7f565b8786866040518563ffffffff1660e01b815260040161225a9493929190612e7f565b602060405180830381600087803b15801561227457600080fd5b505af19250505080156122a557506040513d601f19601f820116820180604052508101906122a291906129d0565b60015b612328573d80600081146122d5576040519150601f19603f3d011682016040523d82523d6000602084013e6122da565b606091505b50600081511415612320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231790612f08565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061237d565b600190505b949350505050565b61239f8282604051806020016040528060008152506123b6565b5050565b600080823b905060008111915050919050565b6123c08383612411565b6123cd60008484846121ee565b61240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390612f08565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247890613088565b60405180910390fd5b61248a81611c13565b156124ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c190612f48565b60405180910390fd5b6124d6600083836121c6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252691906132c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546125eb9061346e565b90600052602060002090601f01602090048101928261260d5760008555612654565b82601f1061262657805160ff1916838001178555612654565b82800160010185558215612654579182015b82811115612653578251825591602001919060010190612638565b5b5090506126619190612665565b5090565b5b8082111561267e576000816000905550600101612666565b5090565b600061269561269084613228565b613203565b9050828152602081018484840111156126b1576126b06135ac565b5b6126bc84828561342c565b509392505050565b60006126d76126d284613259565b613203565b9050828152602081018484840111156126f3576126f26135ac565b5b6126fe84828561342c565b509392505050565b60008135905061271581613b69565b92915050565b60008135905061272a81613b80565b92915050565b60008135905061273f81613b97565b92915050565b60008151905061275481613b97565b92915050565b600082601f83011261276f5761276e6135a7565b5b813561277f848260208601612682565b91505092915050565b60008135905061279781613bae565b92915050565b600082601f8301126127b2576127b16135a7565b5b81356127c28482602086016126c4565b91505092915050565b6000813590506127da81613bc5565b92915050565b6000602082840312156127f6576127f56135b6565b5b600061280484828501612706565b91505092915050565b60008060408385031215612824576128236135b6565b5b600061283285828601612706565b925050602061284385828601612706565b9150509250929050565b600080600060608486031215612866576128656135b6565b5b600061287486828701612706565b935050602061288586828701612706565b9250506040612896868287016127cb565b9150509250925092565b600080600080608085870312156128ba576128b96135b6565b5b60006128c887828801612706565b94505060206128d987828801612706565b93505060406128ea878288016127cb565b925050606085013567ffffffffffffffff81111561290b5761290a6135b1565b5b6129178782880161275a565b91505092959194509250565b6000806040838503121561293a576129396135b6565b5b600061294885828601612706565b92505060206129598582860161271b565b9150509250929050565b6000806040838503121561297a576129796135b6565b5b600061298885828601612706565b9250506020612999858286016127cb565b9150509250929050565b6000602082840312156129b9576129b86135b6565b5b60006129c784828501612730565b91505092915050565b6000602082840312156129e6576129e56135b6565b5b60006129f484828501612745565b91505092915050565b600060208284031215612a1357612a126135b6565b5b6000612a2184828501612788565b91505092915050565b600060208284031215612a4057612a3f6135b6565b5b600082013567ffffffffffffffff811115612a5e57612a5d6135b1565b5b612a6a8482850161279d565b91505092915050565b600060208284031215612a8957612a886135b6565b5b6000612a97848285016127cb565b91505092915050565b612aa9816133a6565b82525050565b612ab8816133b8565b82525050565b6000612ac98261328a565b612ad381856132a0565b9350612ae381856020860161343b565b612aec816135bb565b840191505092915050565b6000612b0282613295565b612b0c81856132b1565b9350612b1c81856020860161343b565b612b25816135bb565b840191505092915050565b6000612b3d6032836132b1565b9150612b48826135cc565b604082019050919050565b6000612b606026836132b1565b9150612b6b8261361b565b604082019050919050565b6000612b83601c836132b1565b9150612b8e8261366a565b602082019050919050565b6000612ba66014836132b1565b9150612bb182613693565b602082019050919050565b6000612bc96024836132b1565b9150612bd4826136bc565b604082019050919050565b6000612bec6019836132b1565b9150612bf78261370b565b602082019050919050565b6000612c0f601f836132b1565b9150612c1a82613734565b602082019050919050565b6000612c32602c836132b1565b9150612c3d8261375d565b604082019050919050565b6000612c556015836132b1565b9150612c60826137ac565b602082019050919050565b6000612c786038836132b1565b9150612c83826137d5565b604082019050919050565b6000612c9b602a836132b1565b9150612ca682613824565b604082019050919050565b6000612cbe6029836132b1565b9150612cc982613873565b604082019050919050565b6000612ce16020836132b1565b9150612cec826138c2565b602082019050919050565b6000612d04601b836132b1565b9150612d0f826138eb565b602082019050919050565b6000612d27601e836132b1565b9150612d3282613914565b602082019050919050565b6000612d4a602c836132b1565b9150612d558261393d565b604082019050919050565b6000612d6d6020836132b1565b9150612d788261398c565b602082019050919050565b6000612d90601b836132b1565b9150612d9b826139b5565b602082019050919050565b6000612db36029836132b1565b9150612dbe826139de565b604082019050919050565b6000612dd6602f836132b1565b9150612de182613a2d565b604082019050919050565b6000612df96021836132b1565b9150612e0482613a7c565b604082019050919050565b6000612e1c6021836132b1565b9150612e2782613acb565b604082019050919050565b6000612e3f6031836132b1565b9150612e4a82613b1a565b604082019050919050565b612e5e81613422565b82525050565b6000602082019050612e796000830184612aa0565b92915050565b6000608082019050612e946000830187612aa0565b612ea16020830186612aa0565b612eae6040830185612e55565b8181036060830152612ec08184612abe565b905095945050505050565b6000602082019050612ee06000830184612aaf565b92915050565b60006020820190508181036000830152612f008184612af7565b905092915050565b60006020820190508181036000830152612f2181612b30565b9050919050565b60006020820190508181036000830152612f4181612b53565b9050919050565b60006020820190508181036000830152612f6181612b76565b9050919050565b60006020820190508181036000830152612f8181612b99565b9050919050565b60006020820190508181036000830152612fa181612bbc565b9050919050565b60006020820190508181036000830152612fc181612bdf565b9050919050565b60006020820190508181036000830152612fe181612c02565b9050919050565b6000602082019050818103600083015261300181612c25565b9050919050565b6000602082019050818103600083015261302181612c48565b9050919050565b6000602082019050818103600083015261304181612c6b565b9050919050565b6000602082019050818103600083015261306181612c8e565b9050919050565b6000602082019050818103600083015261308181612cb1565b9050919050565b600060208201905081810360008301526130a181612cd4565b9050919050565b600060208201905081810360008301526130c181612cf7565b9050919050565b600060208201905081810360008301526130e181612d1a565b9050919050565b6000602082019050818103600083015261310181612d3d565b9050919050565b6000602082019050818103600083015261312181612d60565b9050919050565b6000602082019050818103600083015261314181612d83565b9050919050565b6000602082019050818103600083015261316181612da6565b9050919050565b6000602082019050818103600083015261318181612dc9565b9050919050565b600060208201905081810360008301526131a181612dec565b9050919050565b600060208201905081810360008301526131c181612e0f565b9050919050565b600060208201905081810360008301526131e181612e32565b9050919050565b60006020820190506131fd6000830184612e55565b92915050565b600061320d61321e565b905061321982826134a0565b919050565b6000604051905090565b600067ffffffffffffffff82111561324357613242613578565b5b61324c826135bb565b9050602081019050919050565b600067ffffffffffffffff82111561327457613273613578565b5b61327d826135bb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006132cd82613422565b91506132d883613422565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330d5761330c61351a565b5b828201905092915050565b600061332382613422565b915061332e83613422565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133675761336661351a565b5b828202905092915050565b600061337d82613422565b915061338883613422565b92508282101561339b5761339a61351a565b5b828203905092915050565b60006133b182613402565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006133fb826133a6565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561345957808201518184015260208101905061343e565b83811115613468576000848401525b50505050565b6000600282049050600182168061348657607f821691505b6020821081141561349a57613499613549565b5b50919050565b6134a9826135bb565b810181811067ffffffffffffffff821117156134c8576134c7613578565b5b80604052505050565b60006134dc82613422565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561350f5761350e61351a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c65206973206e6f7420796574206f70656e000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f756e7472757374656420636f6c6c65637469626c650000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e74206d696e74206d6f7265207468616e206d696e744d61780000000000600082015250565b7f52616e206f7574206f66204e46547320666f722073616c652120537279210000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e65206f6620636f6c6c65637469626c6520746f206d696e740000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f52616e206f7574206f66204e46547320666f722070726573616c65212053727960008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613b72816133a6565b8114613b7d57600080fd5b50565b613b89816133b8565b8114613b9457600080fd5b50565b613ba0816133c4565b8114613bab57600080fd5b50565b613bb7816133f0565b8114613bc257600080fd5b50565b613bce81613422565b8114613bd957600080fd5b5056fea26469706673582212205afcc90c4625b2d052fbe40eb846c1597973d44bb9bab2db368809f59bb4799464736f6c63430008070033

Deployed Bytecode Sourcemap

35247:4184:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22923:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23868:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25427:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38775:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24950:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36094:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38982:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38459:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26317:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35950:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35491:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26727:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38289:162;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39093:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23562:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37864:196;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23292:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39203:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4558:94;;;;;;;;;;;;;:::i;:::-;;39305:123;;;:::i;:::-;;3907:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24037:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36946:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25720:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36530:408;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26983:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38557:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38068:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35291:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26086:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37353:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4807:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22923:305;23025:4;23077:25;23062:40;;;:11;:40;;;;:105;;;;23134:33;23119:48;;;:11;:48;;;;23062:105;:158;;;;23184:36;23208:11;23184:23;:36::i;:::-;23062:158;23042:178;;22923:305;;;:::o;23868:100::-;23922:13;23955:5;23948:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23868:100;:::o;25427:221::-;25503:7;25531:16;25539:7;25531;:16::i;:::-;25523:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25616:15;:24;25632:7;25616:24;;;;;;;;;;;;;;;;;;;;;25609:31;;25427:221;;;:::o;38775:96::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38854:9:::1;38841:10;:22;;;;38775:96:::0;:::o;24950:411::-;25031:13;25047:23;25062:7;25047:14;:23::i;:::-;25031:39;;25095:5;25089:11;;:2;:11;;;;25081:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25189:5;25173:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25198:37;25215:5;25222:12;:10;:12::i;:::-;25198:16;:37::i;:::-;25173:62;25151:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25332:21;25341:2;25345:7;25332:8;:21::i;:::-;25020:341;24950:411;;:::o;36094:428::-;36215:1;36178:34;36200:11;36178:21;:34::i;:::-;:38;36170:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;36264:9;36260:255;36283:12;;36279:1;:16;36260:255;;;36334:10;36342:1;36334:7;:10::i;:::-;36320:24;;:10;:24;;;:56;;;;;36349:11;:24;36361:11;36349:24;;;;;;;;;;;;;;;:27;36374:1;36349:27;;;;;;;;;;;;;;;;;;;;;36348:28;36320:56;36317:187;;;36397:11;:26;;;36424:10;36397:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36484:4;36454:11;:24;36466:11;36454:24;;;;;;;;;;;;;;;:27;36479:1;36454:27;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;36317:187;36297:3;;;;;:::i;:::-;;;;36260:255;;;;36094:428;:::o;38982:99::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39064:9:::1;39051:10;:22;;;;38982:99:::0;:::o;38459:90::-;38502:4;38540:1;38526:10;;:15;38519:22;;38459:90;:::o;26317:339::-;26512:41;26531:12;:10;:12::i;:::-;26545:7;26512:18;:41::i;:::-;26504:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26620:28;26630:4;26636:2;26640:7;26620:9;:28::i;:::-;26317:339;;;:::o;35950:132::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36070:4:::1;36035:19;:32;36055:11;36035:32;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35950:132:::0;:::o;35491:33::-;;;;:::o;26727:185::-;26865:39;26882:4;26888:2;26892:7;26865:39;;;;;;;;;;;;:16;:39::i;:::-;26727:185;;;:::o;38289:162::-;38329:13;38359:12;:10;:12::i;:::-;38355:32;;38373:14;;;;;;;;;;;;;;;;;;;;;38355:32;38405:16;:14;:16::i;:::-;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38398:45;;38289:162;;:::o;39093:102::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39180:7:::1;39164:13;:23;;;;;;;;;;;;:::i;:::-;;39093:102:::0;:::o;23562:239::-;23634:7;23654:13;23670:7;:16;23678:7;23670:16;;;;;;;;;;;;;;;;;;;;;23654:32;;23722:1;23705:19;;:5;:19;;;;23697:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23788:5;23781:12;;;23562:239;;;:::o;37864:196::-;37919:4;37955:1;37943:9;;:13;;;;:::i;:::-;37936:20;;37864:196;:::o;23292:208::-;23364:7;23409:1;23392:19;;:5;:19;;;;23384:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23476:9;:16;23486:5;23476:16;;;;;;;;;;;;;;;;23469:23;;23292:208;;;:::o;39203:96::-;39246:13;39278;39271:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39203:96;:::o;4558:94::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;39305:123::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39380:10:::1;39372:24;;:47;39397:21;39372:47;;;;;;;;;;;;;;;;;;;;;;;39364:56;;;::::0;::::1;;39305:123::o:0;3907:87::-;3953:7;3980:6;;;;;;;;;;;3973:13;;3907:87;:::o;24037:104::-;24093:13;24126:7;24119:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24037:104;:::o;36946:399::-;37010:12;:10;:12::i;:::-;37002:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;37075:9;;37066:6;:18;37058:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37162:12;;37145;;37136:6;:21;;;;:::i;:::-;37135:39;;37127:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;37255:6;37242:10;;:19;;;;:::i;:::-;37228:9;:34;;37220:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;37311:26;37330:6;37311:18;:26::i;:::-;36946:399;:::o;25720:295::-;25835:12;:10;:12::i;:::-;25823:24;;:8;:24;;;;25815:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25935:8;25890:18;:32;25909:12;:10;:12::i;:::-;25890:32;;;;;;;;;;;;;;;:42;25923:8;25890:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25988:8;25959:48;;25974:12;:10;:12::i;:::-;25959:48;;;25998:8;25959:48;;;;;;:::i;:::-;;;;;;;;25720:295;;:::o;36530:408::-;36608:7;36636:19;:32;36656:11;36636:32;;;;;;;;;;;;;;;;;;;;;;;;;36628:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36705:11;36735:9;36731:169;36754:12;;36750:1;:16;36731:169;;;36805:10;36813:1;36805:7;:10::i;:::-;36791:24;;:10;:24;;;:56;;;;;36820:11;:24;36832:11;36820:24;;;;;;;;;;;;;;;:27;36845:1;36820:27;;;;;;;;;;;;;;;;;;;;;36819:28;36791:56;36788:101;;;36868:5;;;;;:::i;:::-;;;;36788:101;36768:3;;;;;:::i;:::-;;;;36731:169;;;;36927:3;36920:10;;;36530:408;;;:::o;26983:328::-;27158:41;27177:12;:10;:12::i;:::-;27191:7;27158:18;:41::i;:::-;27150:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27264:39;27278:4;27284:2;27288:7;27297:5;27264:13;:39::i;:::-;26983:328;;;;:::o;38557:107::-;38604:4;38644:12;;38628;;:28;38621:35;;38557:107;:::o;38068:215::-;38141:13;38175:16;38183:7;38175;:16::i;:::-;38167:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;38263:12;:10;:12::i;:::-;38256:19;;38068:215;;;:::o;35291:27::-;;;;:::o;26086:164::-;26183:4;26207:18;:25;26226:5;26207:25;;;;;;;;;;;;;;;:35;26233:8;26207:35;;;;;;;;;;;;;;;;;;;;;;;;;26200:42;;26086:164;;;;:::o;37353:195::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37451:12:::1;;37434;;37425:6;:21;;;;:::i;:::-;37424:39;;37416:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;37514:26;37533:6;37514:18;:26::i;:::-;37353:195:::0;:::o;4807:192::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4916:1:::1;4896:22;;:8;:22;;;;4888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;15893:157::-;15978:4;16017:25;16002:40;;;:11;:40;;;;15995:47;;15893:157;;;:::o;28821:127::-;28886:4;28938:1;28910:30;;:7;:16;28918:7;28910:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28903:37;;28821:127;;;:::o;2695:98::-;2748:7;2775:10;2768:17;;2695:98;:::o;32803:174::-;32905:2;32878:15;:24;32894:7;32878:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32961:7;32957:2;32923:46;;32932:23;32947:7;32932:14;:23::i;:::-;32923:46;;;;;;;;;;;;32803:174;;:::o;29115:348::-;29208:4;29233:16;29241:7;29233;:16::i;:::-;29225:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29309:13;29325:23;29340:7;29325:14;:23::i;:::-;29309:39;;29378:5;29367:16;;:7;:16;;;:51;;;;29411:7;29387:31;;:20;29399:7;29387:11;:20::i;:::-;:31;;;29367:51;:87;;;;29422:32;29439:5;29446:7;29422:16;:32::i;:::-;29367:87;29359:96;;;29115:348;;;;:::o;32107:578::-;32266:4;32239:31;;:23;32254:7;32239:14;:23::i;:::-;:31;;;32231:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32349:1;32335:16;;:2;:16;;;;32327:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32405:39;32426:4;32432:2;32436:7;32405:20;:39::i;:::-;32509:29;32526:1;32530:7;32509:8;:29::i;:::-;32570:1;32551:9;:15;32561:4;32551:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32599:1;32582:9;:13;32592:2;32582:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32630:2;32611:7;:16;32619:7;32611:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32669:7;32665:2;32650:27;;32659:4;32650:27;;;;;;;;;;;;32107:578;;;:::o;5007:173::-;5063:16;5082:6;;;;;;;;;;;5063:25;;5108:8;5099:6;;:17;;;;;;;;;;;;;;;;;;5163:8;5132:40;;5153:8;5132:40;;;;;;;;;;;;5052:128;5007:173;:::o;37554:149::-;37621:6;37617:79;37637:6;37633:1;:10;37617:79;;;37665:19;:17;:19::i;:::-;37645:3;;;;;:::i;:::-;;;;37617:79;;;;37554:149;:::o;28193:315::-;28350:28;28360:4;28366:2;28370:7;28350:9;:28::i;:::-;28397:48;28420:4;28426:2;28430:7;28439:5;28397:22;:48::i;:::-;28389:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28193:315;;;;:::o;34913:126::-;;;;:::o;37711:141::-;37763:35;37773:10;37785:12;;37763:9;:35::i;:::-;37843:1;37828:12;;:16;;;;:::i;:::-;37813:12;:31;;;;37711:141::o;33542:799::-;33697:4;33718:15;:2;:13;;;:15::i;:::-;33714:620;;;33770:2;33754:36;;;33791:12;:10;:12::i;:::-;33805:4;33811:7;33820:5;33754:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33750:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34013:1;33996:6;:13;:18;33992:272;;;34039:60;;;;;;;;;;:::i;:::-;;;;;;;;33992:272;34214:6;34208:13;34199:6;34195:2;34191:15;34184:38;33750:529;33887:41;;;33877:51;;;:6;:51;;;;33870:58;;;;;33714:620;34318:4;34311:11;;33542:799;;;;;;;:::o;29805:110::-;29881:26;29891:2;29895:7;29881:26;;;;;;;;;;;;:9;:26::i;:::-;29805:110;;:::o;5953:387::-;6013:4;6221:12;6288:7;6276:20;6268:28;;6331:1;6324:4;:8;6317:15;;;5953:387;;;:::o;30142:321::-;30272:18;30278:2;30282:7;30272:5;:18::i;:::-;30323:54;30354:1;30358:2;30362:7;30371:5;30323:22;:54::i;:::-;30301:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;30142:321;;;:::o;30799:382::-;30893:1;30879:16;;:2;:16;;;;30871:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30952:16;30960:7;30952;:16::i;:::-;30951:17;30943:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31014:45;31043:1;31047:2;31051:7;31014:20;:45::i;:::-;31089:1;31072:9;:13;31082:2;31072:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31120:2;31101:7;:16;31109:7;31101:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31165:7;31161:2;31140:33;;31157:1;31140:33;;;;;;;;;;;;30799:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:181::-;1839:5;1877:6;1864:20;1855:29;;1893:54;1941:5;1893:54;:::i;:::-;1772:181;;;;:::o;1973:340::-;2029:5;2078:3;2071:4;2063:6;2059:17;2055:27;2045:122;;2086:79;;:::i;:::-;2045:122;2203:6;2190:20;2228:79;2303:3;2295:6;2288:4;2280:6;2276:17;2228:79;:::i;:::-;2219:88;;2035:278;1973:340;;;;:::o;2319:139::-;2365:5;2403:6;2390:20;2381:29;;2419:33;2446:5;2419:33;:::i;:::-;2319:139;;;;:::o;2464:329::-;2523:6;2572:2;2560:9;2551:7;2547:23;2543:32;2540:119;;;2578:79;;:::i;:::-;2540:119;2698:1;2723:53;2768:7;2759:6;2748:9;2744:22;2723:53;:::i;:::-;2713:63;;2669:117;2464:329;;;;:::o;2799:474::-;2867:6;2875;2924:2;2912:9;2903:7;2899:23;2895:32;2892:119;;;2930:79;;:::i;:::-;2892:119;3050:1;3075:53;3120:7;3111:6;3100:9;3096:22;3075:53;:::i;:::-;3065:63;;3021:117;3177:2;3203:53;3248:7;3239:6;3228:9;3224:22;3203:53;:::i;:::-;3193:63;;3148:118;2799:474;;;;;:::o;3279:619::-;3356:6;3364;3372;3421:2;3409:9;3400:7;3396:23;3392:32;3389:119;;;3427:79;;:::i;:::-;3389:119;3547:1;3572:53;3617:7;3608:6;3597:9;3593:22;3572:53;:::i;:::-;3562:63;;3518:117;3674:2;3700:53;3745:7;3736:6;3725:9;3721:22;3700:53;:::i;:::-;3690:63;;3645:118;3802:2;3828:53;3873:7;3864:6;3853:9;3849:22;3828:53;:::i;:::-;3818:63;;3773:118;3279:619;;;;;:::o;3904:943::-;3999:6;4007;4015;4023;4072:3;4060:9;4051:7;4047:23;4043:33;4040:120;;;4079:79;;:::i;:::-;4040:120;4199:1;4224:53;4269:7;4260:6;4249:9;4245:22;4224:53;:::i;:::-;4214:63;;4170:117;4326:2;4352:53;4397:7;4388:6;4377:9;4373:22;4352:53;:::i;:::-;4342:63;;4297:118;4454:2;4480:53;4525:7;4516:6;4505:9;4501:22;4480:53;:::i;:::-;4470:63;;4425:118;4610:2;4599:9;4595:18;4582:32;4641:18;4633:6;4630:30;4627:117;;;4663:79;;:::i;:::-;4627:117;4768:62;4822:7;4813:6;4802:9;4798:22;4768:62;:::i;:::-;4758:72;;4553:287;3904:943;;;;;;;:::o;4853:468::-;4918:6;4926;4975:2;4963:9;4954:7;4950:23;4946:32;4943:119;;;4981:79;;:::i;:::-;4943:119;5101:1;5126:53;5171:7;5162:6;5151:9;5147:22;5126:53;:::i;:::-;5116:63;;5072:117;5228:2;5254:50;5296:7;5287:6;5276:9;5272:22;5254:50;:::i;:::-;5244:60;;5199:115;4853:468;;;;;:::o;5327:474::-;5395:6;5403;5452:2;5440:9;5431:7;5427:23;5423:32;5420:119;;;5458:79;;:::i;:::-;5420:119;5578:1;5603:53;5648:7;5639:6;5628:9;5624:22;5603:53;:::i;:::-;5593:63;;5549:117;5705:2;5731:53;5776:7;5767:6;5756:9;5752:22;5731:53;:::i;:::-;5721:63;;5676:118;5327:474;;;;;:::o;5807:327::-;5865:6;5914:2;5902:9;5893:7;5889:23;5885:32;5882:119;;;5920:79;;:::i;:::-;5882:119;6040:1;6065:52;6109:7;6100:6;6089:9;6085:22;6065:52;:::i;:::-;6055:62;;6011:116;5807:327;;;;:::o;6140:349::-;6209:6;6258:2;6246:9;6237:7;6233:23;6229:32;6226:119;;;6264:79;;:::i;:::-;6226:119;6384:1;6409:63;6464:7;6455:6;6444:9;6440:22;6409:63;:::i;:::-;6399:73;;6355:127;6140:349;;;;:::o;6495:371::-;6575:6;6624:2;6612:9;6603:7;6599:23;6595:32;6592:119;;;6630:79;;:::i;:::-;6592:119;6750:1;6775:74;6841:7;6832:6;6821:9;6817:22;6775:74;:::i;:::-;6765:84;;6721:138;6495:371;;;;:::o;6872:509::-;6941:6;6990:2;6978:9;6969:7;6965:23;6961:32;6958:119;;;6996:79;;:::i;:::-;6958:119;7144:1;7133:9;7129:17;7116:31;7174:18;7166:6;7163:30;7160:117;;;7196:79;;:::i;:::-;7160:117;7301:63;7356:7;7347:6;7336:9;7332:22;7301:63;:::i;:::-;7291:73;;7087:287;6872:509;;;;:::o;7387:329::-;7446:6;7495:2;7483:9;7474:7;7470:23;7466:32;7463:119;;;7501:79;;:::i;:::-;7463:119;7621:1;7646:53;7691:7;7682:6;7671:9;7667:22;7646:53;:::i;:::-;7636:63;;7592:117;7387:329;;;;:::o;7722:118::-;7809:24;7827:5;7809:24;:::i;:::-;7804:3;7797:37;7722:118;;:::o;7846:109::-;7927:21;7942:5;7927:21;:::i;:::-;7922:3;7915:34;7846:109;;:::o;7961:360::-;8047:3;8075:38;8107:5;8075:38;:::i;:::-;8129:70;8192:6;8187:3;8129:70;:::i;:::-;8122:77;;8208:52;8253:6;8248:3;8241:4;8234:5;8230:16;8208:52;:::i;:::-;8285:29;8307:6;8285:29;:::i;:::-;8280:3;8276:39;8269:46;;8051:270;7961:360;;;;:::o;8327:364::-;8415:3;8443:39;8476:5;8443:39;:::i;:::-;8498:71;8562:6;8557:3;8498:71;:::i;:::-;8491:78;;8578:52;8623:6;8618:3;8611:4;8604:5;8600:16;8578:52;:::i;:::-;8655:29;8677:6;8655:29;:::i;:::-;8650:3;8646:39;8639:46;;8419:272;8327:364;;;;:::o;8697:366::-;8839:3;8860:67;8924:2;8919:3;8860:67;:::i;:::-;8853:74;;8936:93;9025:3;8936:93;:::i;:::-;9054:2;9049:3;9045:12;9038:19;;8697:366;;;:::o;9069:::-;9211:3;9232:67;9296:2;9291:3;9232:67;:::i;:::-;9225:74;;9308:93;9397:3;9308:93;:::i;:::-;9426:2;9421:3;9417:12;9410:19;;9069:366;;;:::o;9441:::-;9583:3;9604:67;9668:2;9663:3;9604:67;:::i;:::-;9597:74;;9680:93;9769:3;9680:93;:::i;:::-;9798:2;9793:3;9789:12;9782:19;;9441:366;;;:::o;9813:::-;9955:3;9976:67;10040:2;10035:3;9976:67;:::i;:::-;9969:74;;10052:93;10141:3;10052:93;:::i;:::-;10170:2;10165:3;10161:12;10154:19;;9813:366;;;:::o;10185:::-;10327:3;10348:67;10412:2;10407:3;10348:67;:::i;:::-;10341:74;;10424:93;10513:3;10424:93;:::i;:::-;10542:2;10537:3;10533:12;10526:19;;10185:366;;;:::o;10557:::-;10699:3;10720:67;10784:2;10779:3;10720:67;:::i;:::-;10713:74;;10796:93;10885:3;10796:93;:::i;:::-;10914:2;10909:3;10905:12;10898:19;;10557:366;;;:::o;10929:::-;11071:3;11092:67;11156:2;11151:3;11092:67;:::i;:::-;11085:74;;11168:93;11257:3;11168:93;:::i;:::-;11286:2;11281:3;11277:12;11270:19;;10929:366;;;:::o;11301:::-;11443:3;11464:67;11528:2;11523:3;11464:67;:::i;:::-;11457:74;;11540:93;11629:3;11540:93;:::i;:::-;11658:2;11653:3;11649:12;11642:19;;11301:366;;;:::o;11673:::-;11815:3;11836:67;11900:2;11895:3;11836:67;:::i;:::-;11829:74;;11912:93;12001:3;11912:93;:::i;:::-;12030:2;12025:3;12021:12;12014:19;;11673:366;;;:::o;12045:::-;12187:3;12208:67;12272:2;12267:3;12208:67;:::i;:::-;12201:74;;12284:93;12373:3;12284:93;:::i;:::-;12402:2;12397:3;12393:12;12386:19;;12045:366;;;:::o;12417:::-;12559:3;12580:67;12644:2;12639:3;12580:67;:::i;:::-;12573:74;;12656:93;12745:3;12656:93;:::i;:::-;12774:2;12769:3;12765:12;12758:19;;12417:366;;;:::o;12789:::-;12931:3;12952:67;13016:2;13011:3;12952:67;:::i;:::-;12945:74;;13028:93;13117:3;13028:93;:::i;:::-;13146:2;13141:3;13137:12;13130:19;;12789:366;;;:::o;13161:::-;13303:3;13324:67;13388:2;13383:3;13324:67;:::i;:::-;13317:74;;13400:93;13489:3;13400:93;:::i;:::-;13518:2;13513:3;13509:12;13502:19;;13161:366;;;:::o;13533:::-;13675:3;13696:67;13760:2;13755:3;13696:67;:::i;:::-;13689:74;;13772:93;13861:3;13772:93;:::i;:::-;13890:2;13885:3;13881:12;13874:19;;13533:366;;;:::o;13905:::-;14047:3;14068:67;14132:2;14127:3;14068:67;:::i;:::-;14061:74;;14144:93;14233:3;14144:93;:::i;:::-;14262:2;14257:3;14253:12;14246:19;;13905:366;;;:::o;14277:::-;14419:3;14440:67;14504:2;14499:3;14440:67;:::i;:::-;14433:74;;14516:93;14605:3;14516:93;:::i;:::-;14634:2;14629:3;14625:12;14618:19;;14277:366;;;:::o;14649:::-;14791:3;14812:67;14876:2;14871:3;14812:67;:::i;:::-;14805:74;;14888:93;14977:3;14888:93;:::i;:::-;15006:2;15001:3;14997:12;14990:19;;14649:366;;;:::o;15021:::-;15163:3;15184:67;15248:2;15243:3;15184:67;:::i;:::-;15177:74;;15260:93;15349:3;15260:93;:::i;:::-;15378:2;15373:3;15369:12;15362:19;;15021:366;;;:::o;15393:::-;15535:3;15556:67;15620:2;15615:3;15556:67;:::i;:::-;15549:74;;15632:93;15721:3;15632:93;:::i;:::-;15750:2;15745:3;15741:12;15734:19;;15393:366;;;:::o;15765:::-;15907:3;15928:67;15992:2;15987:3;15928:67;:::i;:::-;15921:74;;16004:93;16093:3;16004:93;:::i;:::-;16122:2;16117:3;16113:12;16106:19;;15765:366;;;:::o;16137:::-;16279:3;16300:67;16364:2;16359:3;16300:67;:::i;:::-;16293:74;;16376:93;16465:3;16376:93;:::i;:::-;16494:2;16489:3;16485:12;16478:19;;16137:366;;;:::o;16509:::-;16651:3;16672:67;16736:2;16731:3;16672:67;:::i;:::-;16665:74;;16748:93;16837:3;16748:93;:::i;:::-;16866:2;16861:3;16857:12;16850:19;;16509:366;;;:::o;16881:::-;17023:3;17044:67;17108:2;17103:3;17044:67;:::i;:::-;17037:74;;17120:93;17209:3;17120:93;:::i;:::-;17238:2;17233:3;17229:12;17222:19;;16881:366;;;:::o;17253:118::-;17340:24;17358:5;17340:24;:::i;:::-;17335:3;17328:37;17253:118;;:::o;17377:222::-;17470:4;17508:2;17497:9;17493:18;17485:26;;17521:71;17589:1;17578:9;17574:17;17565:6;17521:71;:::i;:::-;17377:222;;;;:::o;17605:640::-;17800:4;17838:3;17827:9;17823:19;17815:27;;17852:71;17920:1;17909:9;17905:17;17896:6;17852:71;:::i;:::-;17933:72;18001:2;17990:9;17986:18;17977:6;17933:72;:::i;:::-;18015;18083:2;18072:9;18068:18;18059:6;18015:72;:::i;:::-;18134:9;18128:4;18124:20;18119:2;18108:9;18104:18;18097:48;18162:76;18233:4;18224:6;18162:76;:::i;:::-;18154:84;;17605:640;;;;;;;:::o;18251:210::-;18338:4;18376:2;18365:9;18361:18;18353:26;;18389:65;18451:1;18440:9;18436:17;18427:6;18389:65;:::i;:::-;18251:210;;;;:::o;18467:313::-;18580:4;18618:2;18607:9;18603:18;18595:26;;18667:9;18661:4;18657:20;18653:1;18642:9;18638:17;18631:47;18695:78;18768:4;18759:6;18695:78;:::i;:::-;18687:86;;18467:313;;;;:::o;18786:419::-;18952:4;18990:2;18979:9;18975:18;18967:26;;19039:9;19033:4;19029:20;19025:1;19014:9;19010:17;19003:47;19067:131;19193:4;19067:131;:::i;:::-;19059:139;;18786:419;;;:::o;19211:::-;19377:4;19415:2;19404:9;19400:18;19392:26;;19464:9;19458:4;19454:20;19450:1;19439:9;19435:17;19428:47;19492:131;19618:4;19492:131;:::i;:::-;19484:139;;19211:419;;;:::o;19636:::-;19802:4;19840:2;19829:9;19825:18;19817:26;;19889:9;19883:4;19879:20;19875:1;19864:9;19860:17;19853:47;19917:131;20043:4;19917:131;:::i;:::-;19909:139;;19636:419;;;:::o;20061:::-;20227:4;20265:2;20254:9;20250:18;20242:26;;20314:9;20308:4;20304:20;20300:1;20289:9;20285:17;20278:47;20342:131;20468:4;20342:131;:::i;:::-;20334:139;;20061:419;;;:::o;20486:::-;20652:4;20690:2;20679:9;20675:18;20667:26;;20739:9;20733:4;20729:20;20725:1;20714:9;20710:17;20703:47;20767:131;20893:4;20767:131;:::i;:::-;20759:139;;20486:419;;;:::o;20911:::-;21077:4;21115:2;21104:9;21100:18;21092:26;;21164:9;21158:4;21154:20;21150:1;21139:9;21135:17;21128:47;21192:131;21318:4;21192:131;:::i;:::-;21184:139;;20911:419;;;:::o;21336:::-;21502:4;21540:2;21529:9;21525:18;21517:26;;21589:9;21583:4;21579:20;21575:1;21564:9;21560:17;21553:47;21617:131;21743:4;21617:131;:::i;:::-;21609:139;;21336:419;;;:::o;21761:::-;21927:4;21965:2;21954:9;21950:18;21942:26;;22014:9;22008:4;22004:20;22000:1;21989:9;21985:17;21978:47;22042:131;22168:4;22042:131;:::i;:::-;22034:139;;21761:419;;;:::o;22186:::-;22352:4;22390:2;22379:9;22375:18;22367:26;;22439:9;22433:4;22429:20;22425:1;22414:9;22410:17;22403:47;22467:131;22593:4;22467:131;:::i;:::-;22459:139;;22186:419;;;:::o;22611:::-;22777:4;22815:2;22804:9;22800:18;22792:26;;22864:9;22858:4;22854:20;22850:1;22839:9;22835:17;22828:47;22892:131;23018:4;22892:131;:::i;:::-;22884:139;;22611:419;;;:::o;23036:::-;23202:4;23240:2;23229:9;23225:18;23217:26;;23289:9;23283:4;23279:20;23275:1;23264:9;23260:17;23253:47;23317:131;23443:4;23317:131;:::i;:::-;23309:139;;23036:419;;;:::o;23461:::-;23627:4;23665:2;23654:9;23650:18;23642:26;;23714:9;23708:4;23704:20;23700:1;23689:9;23685:17;23678:47;23742:131;23868:4;23742:131;:::i;:::-;23734:139;;23461:419;;;:::o;23886:::-;24052:4;24090:2;24079:9;24075:18;24067:26;;24139:9;24133:4;24129:20;24125:1;24114:9;24110:17;24103:47;24167:131;24293:4;24167:131;:::i;:::-;24159:139;;23886:419;;;:::o;24311:::-;24477:4;24515:2;24504:9;24500:18;24492:26;;24564:9;24558:4;24554:20;24550:1;24539:9;24535:17;24528:47;24592:131;24718:4;24592:131;:::i;:::-;24584:139;;24311:419;;;:::o;24736:::-;24902:4;24940:2;24929:9;24925:18;24917:26;;24989:9;24983:4;24979:20;24975:1;24964:9;24960:17;24953:47;25017:131;25143:4;25017:131;:::i;:::-;25009:139;;24736:419;;;:::o;25161:::-;25327:4;25365:2;25354:9;25350:18;25342:26;;25414:9;25408:4;25404:20;25400:1;25389:9;25385:17;25378:47;25442:131;25568:4;25442:131;:::i;:::-;25434:139;;25161:419;;;:::o;25586:::-;25752:4;25790:2;25779:9;25775:18;25767:26;;25839:9;25833:4;25829:20;25825:1;25814:9;25810:17;25803:47;25867:131;25993:4;25867:131;:::i;:::-;25859:139;;25586:419;;;:::o;26011:::-;26177:4;26215:2;26204:9;26200:18;26192:26;;26264:9;26258:4;26254:20;26250:1;26239:9;26235:17;26228:47;26292:131;26418:4;26292:131;:::i;:::-;26284:139;;26011:419;;;:::o;26436:::-;26602:4;26640:2;26629:9;26625:18;26617:26;;26689:9;26683:4;26679:20;26675:1;26664:9;26660:17;26653:47;26717:131;26843:4;26717:131;:::i;:::-;26709:139;;26436:419;;;:::o;26861:::-;27027:4;27065:2;27054:9;27050:18;27042:26;;27114:9;27108:4;27104:20;27100:1;27089:9;27085:17;27078:47;27142:131;27268:4;27142:131;:::i;:::-;27134:139;;26861:419;;;:::o;27286:::-;27452:4;27490:2;27479:9;27475:18;27467:26;;27539:9;27533:4;27529:20;27525:1;27514:9;27510:17;27503:47;27567:131;27693:4;27567:131;:::i;:::-;27559:139;;27286:419;;;:::o;27711:::-;27877:4;27915:2;27904:9;27900:18;27892:26;;27964:9;27958:4;27954:20;27950:1;27939:9;27935:17;27928:47;27992:131;28118:4;27992:131;:::i;:::-;27984:139;;27711:419;;;:::o;28136:::-;28302:4;28340:2;28329:9;28325:18;28317:26;;28389:9;28383:4;28379:20;28375:1;28364:9;28360:17;28353:47;28417:131;28543:4;28417:131;:::i;:::-;28409:139;;28136:419;;;:::o;28561:222::-;28654:4;28692:2;28681:9;28677:18;28669:26;;28705:71;28773:1;28762:9;28758:17;28749:6;28705:71;:::i;:::-;28561:222;;;;:::o;28789:129::-;28823:6;28850:20;;:::i;:::-;28840:30;;28879:33;28907:4;28899:6;28879:33;:::i;:::-;28789:129;;;:::o;28924:75::-;28957:6;28990:2;28984:9;28974:19;;28924:75;:::o;29005:307::-;29066:4;29156:18;29148:6;29145:30;29142:56;;;29178:18;;:::i;:::-;29142:56;29216:29;29238:6;29216:29;:::i;:::-;29208:37;;29300:4;29294;29290:15;29282:23;;29005:307;;;:::o;29318:308::-;29380:4;29470:18;29462:6;29459:30;29456:56;;;29492:18;;:::i;:::-;29456:56;29530:29;29552:6;29530:29;:::i;:::-;29522:37;;29614:4;29608;29604:15;29596:23;;29318:308;;;:::o;29632:98::-;29683:6;29717:5;29711:12;29701:22;;29632:98;;;:::o;29736:99::-;29788:6;29822:5;29816:12;29806:22;;29736:99;;;:::o;29841:168::-;29924:11;29958:6;29953:3;29946:19;29998:4;29993:3;29989:14;29974:29;;29841:168;;;;:::o;30015:169::-;30099:11;30133:6;30128:3;30121:19;30173:4;30168:3;30164:14;30149:29;;30015:169;;;;:::o;30190:305::-;30230:3;30249:20;30267:1;30249:20;:::i;:::-;30244:25;;30283:20;30301:1;30283:20;:::i;:::-;30278:25;;30437:1;30369:66;30365:74;30362:1;30359:81;30356:107;;;30443:18;;:::i;:::-;30356:107;30487:1;30484;30480:9;30473:16;;30190:305;;;;:::o;30501:348::-;30541:7;30564:20;30582:1;30564:20;:::i;:::-;30559:25;;30598:20;30616:1;30598:20;:::i;:::-;30593:25;;30786:1;30718:66;30714:74;30711:1;30708:81;30703:1;30696:9;30689:17;30685:105;30682:131;;;30793:18;;:::i;:::-;30682:131;30841:1;30838;30834:9;30823:20;;30501:348;;;;:::o;30855:191::-;30895:4;30915:20;30933:1;30915:20;:::i;:::-;30910:25;;30949:20;30967:1;30949:20;:::i;:::-;30944:25;;30988:1;30985;30982:8;30979:34;;;30993:18;;:::i;:::-;30979:34;31038:1;31035;31031:9;31023:17;;30855:191;;;;:::o;31052:96::-;31089:7;31118:24;31136:5;31118:24;:::i;:::-;31107:35;;31052:96;;;:::o;31154:90::-;31188:7;31231:5;31224:13;31217:21;31206:32;;31154:90;;;:::o;31250:149::-;31286:7;31326:66;31319:5;31315:78;31304:89;;31250:149;;;:::o;31405:117::-;31463:7;31492:24;31510:5;31492:24;:::i;:::-;31481:35;;31405:117;;;:::o;31528:126::-;31565:7;31605:42;31598:5;31594:54;31583:65;;31528:126;;;:::o;31660:77::-;31697:7;31726:5;31715:16;;31660:77;;;:::o;31743:154::-;31827:6;31822:3;31817;31804:30;31889:1;31880:6;31875:3;31871:16;31864:27;31743:154;;;:::o;31903:307::-;31971:1;31981:113;31995:6;31992:1;31989:13;31981:113;;;32080:1;32075:3;32071:11;32065:18;32061:1;32056:3;32052:11;32045:39;32017:2;32014:1;32010:10;32005:15;;31981:113;;;32112:6;32109:1;32106:13;32103:101;;;32192:1;32183:6;32178:3;32174:16;32167:27;32103:101;31952:258;31903:307;;;:::o;32216:320::-;32260:6;32297:1;32291:4;32287:12;32277:22;;32344:1;32338:4;32334:12;32365:18;32355:81;;32421:4;32413:6;32409:17;32399:27;;32355:81;32483:2;32475:6;32472:14;32452:18;32449:38;32446:84;;;32502:18;;:::i;:::-;32446:84;32267:269;32216:320;;;:::o;32542:281::-;32625:27;32647:4;32625:27;:::i;:::-;32617:6;32613:40;32755:6;32743:10;32740:22;32719:18;32707:10;32704:34;32701:62;32698:88;;;32766:18;;:::i;:::-;32698:88;32806:10;32802:2;32795:22;32585:238;32542:281;;:::o;32829:233::-;32868:3;32891:24;32909:5;32891:24;:::i;:::-;32882:33;;32937:66;32930:5;32927:77;32924:103;;;33007:18;;:::i;:::-;32924:103;33054:1;33047:5;33043:13;33036:20;;32829:233;;;:::o;33068:180::-;33116:77;33113:1;33106:88;33213:4;33210:1;33203:15;33237:4;33234:1;33227:15;33254:180;33302:77;33299:1;33292:88;33399:4;33396:1;33389:15;33423:4;33420:1;33413:15;33440:180;33488:77;33485:1;33478:88;33585:4;33582:1;33575:15;33609:4;33606:1;33599:15;33626:117;33735:1;33732;33725:12;33749:117;33858:1;33855;33848:12;33872:117;33981:1;33978;33971:12;33995:117;34104:1;34101;34094:12;34118:102;34159:6;34210:2;34206:7;34201:2;34194:5;34190:14;34186:28;34176:38;;34118:102;;;:::o;34226:237::-;34366:34;34362:1;34354:6;34350:14;34343:58;34435:20;34430:2;34422:6;34418:15;34411:45;34226:237;:::o;34469:225::-;34609:34;34605:1;34597:6;34593:14;34586:58;34678:8;34673:2;34665:6;34661:15;34654:33;34469:225;:::o;34700:178::-;34840:30;34836:1;34828:6;34824:14;34817:54;34700:178;:::o;34884:170::-;35024:22;35020:1;35012:6;35008:14;35001:46;34884:170;:::o;35060:223::-;35200:34;35196:1;35188:6;35184:14;35177:58;35269:6;35264:2;35256:6;35252:15;35245:31;35060:223;:::o;35289:175::-;35429:27;35425:1;35417:6;35413:14;35406:51;35289:175;:::o;35470:181::-;35610:33;35606:1;35598:6;35594:14;35587:57;35470:181;:::o;35657:231::-;35797:34;35793:1;35785:6;35781:14;35774:58;35866:14;35861:2;35853:6;35849:15;35842:39;35657:231;:::o;35894:171::-;36034:23;36030:1;36022:6;36018:14;36011:47;35894:171;:::o;36071:243::-;36211:34;36207:1;36199:6;36195:14;36188:58;36280:26;36275:2;36267:6;36263:15;36256:51;36071:243;:::o;36320:229::-;36460:34;36456:1;36448:6;36444:14;36437:58;36529:12;36524:2;36516:6;36512:15;36505:37;36320:229;:::o;36555:228::-;36695:34;36691:1;36683:6;36679:14;36672:58;36764:11;36759:2;36751:6;36747:15;36740:36;36555:228;:::o;36789:182::-;36929:34;36925:1;36917:6;36913:14;36906:58;36789:182;:::o;36977:177::-;37117:29;37113:1;37105:6;37101:14;37094:53;36977:177;:::o;37160:180::-;37300:32;37296:1;37288:6;37284:14;37277:56;37160:180;:::o;37346:231::-;37486:34;37482:1;37474:6;37470:14;37463:58;37555:14;37550:2;37542:6;37538:15;37531:39;37346:231;:::o;37583:182::-;37723:34;37719:1;37711:6;37707:14;37700:58;37583:182;:::o;37771:177::-;37911:29;37907:1;37899:6;37895:14;37888:53;37771:177;:::o;37954:228::-;38094:34;38090:1;38082:6;38078:14;38071:58;38163:11;38158:2;38150:6;38146:15;38139:36;37954:228;:::o;38188:234::-;38328:34;38324:1;38316:6;38312:14;38305:58;38397:17;38392:2;38384:6;38380:15;38373:42;38188:234;:::o;38428:220::-;38568:34;38564:1;38556:6;38552:14;38545:58;38637:3;38632:2;38624:6;38620:15;38613:28;38428:220;:::o;38654:::-;38794:34;38790:1;38782:6;38778:14;38771:58;38863:3;38858:2;38850:6;38846:15;38839:28;38654:220;:::o;38880:236::-;39020:34;39016:1;39008:6;39004:14;38997:58;39089:19;39084:2;39076:6;39072:15;39065:44;38880:236;:::o;39122:122::-;39195:24;39213:5;39195:24;:::i;:::-;39188:5;39185:35;39175:63;;39234:1;39231;39224:12;39175:63;39122:122;:::o;39250:116::-;39320:21;39335:5;39320:21;:::i;:::-;39313:5;39310:32;39300:60;;39356:1;39353;39346:12;39300:60;39250:116;:::o;39372:120::-;39444:23;39461:5;39444:23;:::i;:::-;39437:5;39434:34;39424:62;;39482:1;39479;39472:12;39424:62;39372:120;:::o;39498:164::-;39592:45;39631:5;39592:45;:::i;:::-;39585:5;39582:56;39572:84;;39652:1;39649;39642:12;39572:84;39498:164;:::o;39668:122::-;39741:24;39759:5;39741:24;:::i;:::-;39734:5;39731:35;39721:63;;39780:1;39777;39770:12;39721:63;39668:122;:::o

Swarm Source

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