ETH Price: $3,262.74 (+2.89%)
Gas: 2 Gwei

Token

Picture Day by Gina Palmerin (PDAY)
 

Overview

Max Total Supply

613 PDAY

Holders

255

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
b-right.eth
Balance
1 PDAY
0x751ed86531754ea1df93ca61440ac980d8b20015
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:
PictureDay

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-05
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A_Demo.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used). 
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

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

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

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

// 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/security/ReentrancyGuard.sol
pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

pragma solidity ^0.8.4;

/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is Context, ERC721A {

    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        _burn(tokenId);
    }
}

// Smart Contract -- Coded By VSNZLAB
contract PictureDay is ERC721ABurnable, Ownable, ReentrancyGuard {
    using Strings for uint256;

    // Variables
    string baseURI;
    string public baseExtension = ".json"; // Base extension of metadata file
    uint256 public cost = 0.1 ether; // Cost of each NFT
    uint256 public maxSupply = 5000; // Max amount of NFTs that can be minted in total
    uint256 public maxMintAmount = 10; // Max amount to be minted at once
    bool public paused = true; // Contract paused when deployed
    bool public revealed = false; // NFT collection revealed when deployed
    string public notRevealedUri; // URI for placeholder image
    uint256 public nftPerAddressLimit = 10; // Maximum NFTs mintable on one wallet
    bool public onlyWhitelisted = true; // Whitelist address minting only
    mapping(address => bool) members;
    event MemberAdded(address member);
    event MemberRemoved(address member);
    mapping(address => uint256) public addressMintedBalance;
    uint256 totalBurned = 0;

    // Constructor
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri,
        address[] memory _members
    ) ERC721A(_name, _symbol) {
        for (uint256 i = 0; i < _members.length; i++) {
            members[_members[i]] = true;
        }
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

    // Internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    // Public
    // Minting Function
    function mint(uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(!paused, "The contract is paused.");
        if (onlyWhitelisted == true) {
            require(
                isMember(msg.sender),
                "Your wallet address is not yet whitelisted."
            );
        }
        require(_mintAmount > 0, "Need to mint at least 1 NFT.");
        require(_mintAmount <= maxMintAmount, "Max mint amount per session exceeded.");
		if (totalBurned == 0){
			require(supply + _mintAmount <= maxSupply, "Max NFT limit exceeded.");
		}
		else{
			require(supply + totalBurned - 1 + _mintAmount <= maxSupply, "Max NFT limit exceeded.");
		}
        
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "Max NFT per address exceeded.");

        if (msg.sender != owner()) {
            require(msg.value >= cost * _mintAmount, "Insufficient funds.");
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[msg.sender]++;   
        }

        _safeMint(msg.sender, _mintAmount);
    }

    // Burn
    function burn(uint256 tokenId) public override {
        totalBurned++;
        _burn(tokenId);
    }

    // Checks if wallet address is whitelisted or not
    function isMember(address _member) public view returns (bool) {
        return members[_member];
    }

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

        if (revealed == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }
    
    // Update NFT price
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    // Update Max Supply
    function setmaxSupply(uint256 _newmaxSupply) public onlyOwner {
        maxSupply = _newmaxSupply;
    }

    // Update maximum amount of NFTs that can be minted at once.
    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    // Update not revealed/placeholder image URI
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    // Update original image URI
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    // Update extension for metadata file
    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    // Pause smart contract to stop minting
    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    // Reveals original NFTs for minted and non-minted NFTs
    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    // Sets whether whitelisted wallets can mint only
    function setOnlyWhitelisted(bool _state) public onlyOwner {
        onlyWhitelisted = _state;
    }

    // Updates maximum numbers of NFTs per wallet
    function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAddressLimit = _limit;
    }

    // Adds wallet address to whitelist
    function addMember(address _member) public onlyOwner {
        require(!isMember(_member), "Wallet address is already whitelisted.");

        members[_member] = true;
        emit MemberAdded(_member);
    }

    // Removes wallet address from whitelist
    function removeMember(address _member) public onlyOwner {
        require(isMember(_member), "Wallet address is not whitelisted.");

        delete members[_member];
        emit MemberRemoved(_member);
    }

    // Adds list of wallet addresses to whitelist
    function addMemberList(address[] memory _memberList) public onlyOwner {
        for (uint i = 0; i < _memberList.length; i++) {
            require(!isMember(_memberList[i]), "Wallet address is already whitelisted.");
            members[_memberList[i]] = true;
        }
    }

    // Removes list of wallet addresses to whitelist
    function removeMemberList(address[] memory _memberList) public onlyOwner {
        for (uint i = 0; i < _memberList.length; i++) {
            require(isMember(_memberList[i]), "Wallet address is not whitelisted.");
            delete members[_memberList[i]];
        }
    }

    // Withdraw funds from NFT contract
    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"address[]","name":"_members","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":false,"internalType":"address","name":"member","type":"address"}],"name":"MemberAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"member","type":"address"}],"name":"MemberRemoved","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":[{"internalType":"address","name":"_member","type":"address"}],"name":"addMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_memberList","type":"address[]"}],"name":"addMemberList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_member","type":"address"}],"name":"isMember","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_member","type":"address"}],"name":"removeMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_memberList","type":"address[]"}],"name":"removeMemberList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200005192919062000469565b5067016345785d8a0000600c55611388600d55600a600e556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff021916908315150217905550600a6011556001601260006101000a81548160ff0219169083151502179055506000601555348015620000d157600080fd5b50604051620058c9380380620058c98339818101604052810190620000f79190620007f6565b848481600290805190602001906200011192919062000469565b5080600390805190602001906200012a92919062000469565b5050506200014d620001416200021b60201b60201c565b6200022360201b60201c565b600160098190555060005b8151811015620001ed576001601360008484815181106200017e576200017d62000919565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080620001e49062000981565b91505062000158565b50620001ff83620002e960201b60201c565b62000210826200039460201b60201c565b505050505062000ab7565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002f96200021b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031f6200043f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000378576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036f9062000a30565b60405180910390fd5b80600a90805190602001906200039092919062000469565b5050565b620003a46200021b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003ca6200043f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000423576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041a9062000a30565b60405180910390fd5b80601090805190602001906200043b92919062000469565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004779062000a81565b90600052602060002090601f0160209004810192826200049b5760008555620004e7565b82601f10620004b657805160ff1916838001178555620004e7565b82800160010185558215620004e7579182015b82811115620004e6578251825591602001919060010190620004c9565b5b509050620004f69190620004fa565b5090565b5b8082111562000515576000816000905550600101620004fb565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005828262000537565b810181811067ffffffffffffffff82111715620005a457620005a362000548565b5b80604052505050565b6000620005b962000519565b9050620005c7828262000577565b919050565b600067ffffffffffffffff821115620005ea57620005e962000548565b5b620005f58262000537565b9050602081019050919050565b60005b838110156200062257808201518184015260208101905062000605565b8381111562000632576000848401525b50505050565b60006200064f6200064984620005cc565b620005ad565b9050828152602081018484840111156200066e576200066d62000532565b5b6200067b84828562000602565b509392505050565b600082601f8301126200069b576200069a6200052d565b5b8151620006ad84826020860162000638565b91505092915050565b600067ffffffffffffffff821115620006d457620006d362000548565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200071782620006ea565b9050919050565b62000729816200070a565b81146200073557600080fd5b50565b60008151905062000749816200071e565b92915050565b6000620007666200076084620006b6565b620005ad565b905080838252602082019050602084028301858111156200078c576200078b620006e5565b5b835b81811015620007b95780620007a4888262000738565b8452602084019350506020810190506200078e565b5050509392505050565b600082601f830112620007db57620007da6200052d565b5b8151620007ed8482602086016200074f565b91505092915050565b600080600080600060a0868803121562000815576200081462000523565b5b600086015167ffffffffffffffff81111562000836576200083562000528565b5b620008448882890162000683565b955050602086015167ffffffffffffffff81111562000868576200086762000528565b5b620008768882890162000683565b945050604086015167ffffffffffffffff8111156200089a576200089962000528565b5b620008a88882890162000683565b935050606086015167ffffffffffffffff811115620008cc57620008cb62000528565b5b620008da8882890162000683565b925050608086015167ffffffffffffffff811115620008fe57620008fd62000528565b5b6200090c88828901620007c3565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b60006200098e8262000977565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620009c457620009c362000948565b5b600182019050919050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000a18602083620009cf565b915062000a2582620009e0565b602082019050919050565b6000602082019050818103600083015262000a4b8162000a09565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a9a57607f821691505b6020821081141562000ab15762000ab062000a52565b5b50919050565b614e028062000ac76000396000f3fe6080604052600436106102715760003560e01c80635c975abb1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb011461091b578063da3ef23f14610946578063e0a808531461096f578063e985e9c514610998578063f2c4ce1e146109d5578063f2fde38b146109fe57610271565b8063b88d4fde1461080d578063ba7d2c7614610836578063c668286214610861578063c87b56dd1461088c578063ca6d56dc146108c9578063d0eb26b0146108f257610271565b80638da5cb5b116101135780638da5cb5b1461070a57806395d89b41146107355780639c70b51214610760578063a0712d681461078b578063a22cb465146107a7578063a230c524146107d057610271565b80635c975abb146106255780636352211e1461065057806370a082311461068d578063715018a6146106ca5780637f00c7a6146106e157610271565b806321cf115f116101e85780633ccfd60b116101ac5780633ccfd60b1461054c57806342842e0e1461055657806342966c681461057f57806344a0d68a146105a857806351830227146105d157806355f804b3146105fc57610271565b806321cf115f1461047d578063228025e8146104a6578063239c70ae146104cf57806323b872dd146104fa5780633c9527641461052357610271565b8063081c8c441161023a578063081c8c441461036d578063095ea7b3146103985780630b1ca49a146103c157806313faede6146103ea57806318160ddd1461041557806318cae2691461044057610271565b8062173f5c1461027657806301ffc9a71461029f57806302329a29146102dc57806306fdde0314610305578063081812fc14610330575b600080fd5b34801561028257600080fd5b5061029d60048036038101906102989190613d11565b610a27565b005b3480156102ab57600080fd5b506102c660048036038101906102c19190613db2565b610b9b565b6040516102d39190613dfa565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613e41565b610c7d565b005b34801561031157600080fd5b5061031a610d16565b6040516103279190613ef6565b60405180910390f35b34801561033c57600080fd5b5061035760048036038101906103529190613f4e565b610da8565b6040516103649190613f8a565b60405180910390f35b34801561037957600080fd5b50610382610e24565b60405161038f9190613ef6565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190613fa5565b610eb2565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613fe5565b610fbd565b005b3480156103f657600080fd5b506103ff61110a565b60405161040c9190614021565b60405180910390f35b34801561042157600080fd5b5061042a611110565b6040516104379190614021565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190613fe5565b61111e565b6040516104749190614021565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613d11565b611136565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190613f4e565b6112a0565b005b3480156104db57600080fd5b506104e4611326565b6040516104f19190614021565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061403c565b61132c565b005b34801561052f57600080fd5b5061054a60048036038101906105459190613e41565b61133c565b005b6105546113d5565b005b34801561056257600080fd5b5061057d6004803603810190610578919061403c565b6114d1565b005b34801561058b57600080fd5b506105a660048036038101906105a19190613f4e565b6114f1565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190613f4e565b611515565b005b3480156105dd57600080fd5b506105e661159b565b6040516105f39190613dfa565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e9190614144565b6115ae565b005b34801561063157600080fd5b5061063a611644565b6040516106479190613dfa565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190613f4e565b611657565b6040516106849190613f8a565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af9190613fe5565b61166d565b6040516106c19190614021565b60405180910390f35b3480156106d657600080fd5b506106df61173d565b005b3480156106ed57600080fd5b5061070860048036038101906107039190613f4e565b6117c5565b005b34801561071657600080fd5b5061071f61184b565b60405161072c9190613f8a565b60405180910390f35b34801561074157600080fd5b5061074a611875565b6040516107579190613ef6565b60405180910390f35b34801561076c57600080fd5b50610775611907565b6040516107829190613dfa565b60405180910390f35b6107a560048036038101906107a09190613f4e565b61191a565b005b3480156107b357600080fd5b506107ce60048036038101906107c9919061418d565b611cd2565b005b3480156107dc57600080fd5b506107f760048036038101906107f29190613fe5565b611e4a565b6040516108049190613dfa565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f919061426e565b611ea0565b005b34801561084257600080fd5b5061084b611ef3565b6040516108589190614021565b60405180910390f35b34801561086d57600080fd5b50610876611ef9565b6040516108839190613ef6565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190613f4e565b611f87565b6040516108c09190613ef6565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb9190613fe5565b6120e0565b005b3480156108fe57600080fd5b5061091960048036038101906109149190613f4e565b612237565b005b34801561092757600080fd5b506109306122bd565b60405161093d9190614021565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190614144565b6122c3565b005b34801561097b57600080fd5b5061099660048036038101906109919190613e41565b612359565b005b3480156109a457600080fd5b506109bf60048036038101906109ba91906142f1565b6123f2565b6040516109cc9190613dfa565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190614144565b612486565b005b348015610a0a57600080fd5b50610a256004803603810190610a209190613fe5565b61251c565b005b610a2f612614565b73ffffffffffffffffffffffffffffffffffffffff16610a4d61184b565b73ffffffffffffffffffffffffffffffffffffffff1614610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a9061437d565b60405180910390fd5b60005b8151811015610b9757610ad2828281518110610ac557610ac461439d565b5b6020026020010151611e4a565b15610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b099061443e565b60405180910390fd5b600160136000848481518110610b2b57610b2a61439d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b8f9061448d565b915050610aa6565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c6657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c765750610c758261261c565b5b9050919050565b610c85612614565b73ffffffffffffffffffffffffffffffffffffffff16610ca361184b565b73ffffffffffffffffffffffffffffffffffffffff1614610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf09061437d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610d2590614505565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5190614505565b8015610d9e5780601f10610d7357610100808354040283529160200191610d9e565b820191906000526020600020905b815481529060010190602001808311610d8157829003601f168201915b5050505050905090565b6000610db382612686565b610de9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60108054610e3190614505565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5d90614505565b8015610eaa5780601f10610e7f57610100808354040283529160200191610eaa565b820191906000526020600020905b815481529060010190602001808311610e8d57829003601f168201915b505050505081565b6000610ebd82611657565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f25576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f44612614565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f765750610f7481610f6f612614565b6123f2565b155b15610fad576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fb88383836126c0565b505050565b610fc5612614565b73ffffffffffffffffffffffffffffffffffffffff16610fe361184b565b73ffffffffffffffffffffffffffffffffffffffff1614611039576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110309061437d565b60405180910390fd5b61104281611e4a565b611081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611078906145a9565b60405180910390fd5b601360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690557f6e76fb4c77256006d9c38ec7d82b45a8c8f3c27b1d6766fffc42dfb8de684492816040516110ff9190613f8a565b60405180910390a150565b600c5481565b600060015460005403905090565b60146020528060005260406000206000915090505481565b61113e612614565b73ffffffffffffffffffffffffffffffffffffffff1661115c61184b565b73ffffffffffffffffffffffffffffffffffffffff16146111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a99061437d565b60405180910390fd5b60005b815181101561129c576111e18282815181106111d4576111d361439d565b5b6020026020010151611e4a565b611220576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611217906145a9565b60405180910390fd5b601360008383815181106112375761123661439d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806112949061448d565b9150506111b5565b5050565b6112a8612614565b73ffffffffffffffffffffffffffffffffffffffff166112c661184b565b73ffffffffffffffffffffffffffffffffffffffff161461131c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113139061437d565b60405180910390fd5b80600d8190555050565b600e5481565b611337838383612772565b505050565b611344612614565b73ffffffffffffffffffffffffffffffffffffffff1661136261184b565b73ffffffffffffffffffffffffffffffffffffffff16146113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af9061437d565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6113dd612614565b73ffffffffffffffffffffffffffffffffffffffff166113fb61184b565b73ffffffffffffffffffffffffffffffffffffffff1614611451576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114489061437d565b60405180910390fd5b600061145b61184b565b73ffffffffffffffffffffffffffffffffffffffff164760405161147e906145fa565b60006040518083038185875af1925050503d80600081146114bb576040519150601f19603f3d011682016040523d82523d6000602084013e6114c0565b606091505b50509050806114ce57600080fd5b50565b6114ec83838360405180602001604052806000815250611ea0565b505050565b601560008154809291906115049061448d565b919050555061151281612c63565b50565b61151d612614565b73ffffffffffffffffffffffffffffffffffffffff1661153b61184b565b73ffffffffffffffffffffffffffffffffffffffff1614611591576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115889061437d565b60405180910390fd5b80600c8190555050565b600f60019054906101000a900460ff1681565b6115b6612614565b73ffffffffffffffffffffffffffffffffffffffff166115d461184b565b73ffffffffffffffffffffffffffffffffffffffff161461162a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116219061437d565b60405180910390fd5b80600a9080519060200190611640929190613a60565b5050565b600f60009054906101000a900460ff1681565b600061166282613007565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611745612614565b73ffffffffffffffffffffffffffffffffffffffff1661176361184b565b73ffffffffffffffffffffffffffffffffffffffff16146117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b09061437d565b60405180910390fd5b6117c36000613283565b565b6117cd612614565b73ffffffffffffffffffffffffffffffffffffffff166117eb61184b565b73ffffffffffffffffffffffffffffffffffffffff1614611841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118389061437d565b60405180910390fd5b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461188490614505565b80601f01602080910402602001604051908101604052809291908181526020018280546118b090614505565b80156118fd5780601f106118d2576101008083540402835291602001916118fd565b820191906000526020600020905b8154815290600101906020018083116118e057829003601f168201915b5050505050905090565b601260009054906101000a900460ff1681565b6000611924611110565b9050600f60009054906101000a900460ff1615611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d9061465b565b60405180910390fd5b60011515601260009054906101000a900460ff16151514156119db5761199b33611e4a565b6119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d1906146ed565b60405180910390fd5b5b60008211611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590614759565b60405180910390fd5b600e54821115611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a906147eb565b60405180910390fd5b60006015541415611ac357600d548282611a7d919061480b565b1115611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab5906148ad565b60405180910390fd5b611b2d565b600d5482600160155484611ad7919061480b565b611ae191906148cd565b611aeb919061480b565b1115611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b23906148ad565b60405180910390fd5b5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506011548382611b80919061480b565b1115611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb89061494d565b60405180910390fd5b611bc961184b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c4c5782600c54611c09919061496d565b341015611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4290614a13565b60405180910390fd5b5b6000600190505b838111611cc257601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611caa9061448d565b91905055508080611cba9061448d565b915050611c53565b50611ccd3384613349565b505050565b611cda612614565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d4c612614565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611df9612614565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e3e9190613dfa565b60405180910390a35050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611eab848484612772565b611eb784848484613367565b611eed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60115481565b600b8054611f0690614505565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3290614505565b8015611f7f5780601f10611f5457610100808354040283529160200191611f7f565b820191906000526020600020905b815481529060010190602001808311611f6257829003601f168201915b505050505081565b6060611f9282612686565b611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc890614aa5565b60405180910390fd5b60001515600f60019054906101000a900460ff161515141561207f5760108054611ffa90614505565b80601f016020809104026020016040519081016040528092919081815260200182805461202690614505565b80156120735780601f1061204857610100808354040283529160200191612073565b820191906000526020600020905b81548152906001019060200180831161205657829003601f168201915b505050505090506120db565b60006120896134f5565b905060008151116120a957604051806020016040528060008152506120d7565b806120b384613587565b600b6040516020016120c793929190614b95565b6040516020818303038152906040525b9150505b919050565b6120e8612614565b73ffffffffffffffffffffffffffffffffffffffff1661210661184b565b73ffffffffffffffffffffffffffffffffffffffff161461215c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121539061437d565b60405180910390fd5b61216581611e4a565b156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c9061443e565b60405180910390fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fb251eb052afc73ffd02ffe85ad79990a8b3fed60d76dbc2fa2fdd7123dffd9148160405161222c9190613f8a565b60405180910390a150565b61223f612614565b73ffffffffffffffffffffffffffffffffffffffff1661225d61184b565b73ffffffffffffffffffffffffffffffffffffffff16146122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa9061437d565b60405180910390fd5b8060118190555050565b600d5481565b6122cb612614565b73ffffffffffffffffffffffffffffffffffffffff166122e961184b565b73ffffffffffffffffffffffffffffffffffffffff161461233f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123369061437d565b60405180910390fd5b80600b9080519060200190612355929190613a60565b5050565b612361612614565b73ffffffffffffffffffffffffffffffffffffffff1661237f61184b565b73ffffffffffffffffffffffffffffffffffffffff16146123d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cc9061437d565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61248e612614565b73ffffffffffffffffffffffffffffffffffffffff166124ac61184b565b73ffffffffffffffffffffffffffffffffffffffff1614612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f99061437d565b60405180910390fd5b8060109080519060200190612518929190613a60565b5050565b612524612614565b73ffffffffffffffffffffffffffffffffffffffff1661254261184b565b73ffffffffffffffffffffffffffffffffffffffff1614612598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258f9061437d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff90614c38565b60405180910390fd5b61261181613283565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156126b9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061277d82613007565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127a4612614565b73ffffffffffffffffffffffffffffffffffffffff1614806127d757506127d682600001516127d1612614565b6123f2565b5b8061281c57506127e5612614565b73ffffffffffffffffffffffffffffffffffffffff1661280484610da8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612855576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128be576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612925576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61293285858560016136e8565b61294260008484600001516126c0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612bf357600054811015612bf25782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5c85858560016136ee565b5050505050565b6000612c6e82613007565b9050612c82816000015160008460016136e8565b612c9260008383600001516126c0565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f7e57600054811015612f7d5781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ff1816000015160008460016136ee565b6001600081548092919060010191905055505050565b61300f613ae6565b600082905060005481101561324c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161324a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461312e57809250505061327e565b5b60011561324957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461324457809250505061327e565b61312f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6133638282604051806020016040528060008152506136f4565b5050565b60006133888473ffffffffffffffffffffffffffffffffffffffff16613706565b156134e8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133b1612614565b8786866040518563ffffffff1660e01b81526004016133d39493929190614cad565b602060405180830381600087803b1580156133ed57600080fd5b505af192505050801561341e57506040513d601f19601f8201168201806040525081019061341b9190614d0e565b60015b613498573d806000811461344e576040519150601f19603f3d011682016040523d82523d6000602084013e613453565b606091505b50600081511415613490576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134ed565b600190505b949350505050565b6060600a805461350490614505565b80601f016020809104026020016040519081016040528092919081815260200182805461353090614505565b801561357d5780601f106135525761010080835404028352916020019161357d565b820191906000526020600020905b81548152906001019060200180831161356057829003601f168201915b5050505050905090565b606060008214156135cf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136e3565b600082905060005b600082146136015780806135ea9061448d565b915050600a826135fa9190614d6a565b91506135d7565b60008167ffffffffffffffff81111561361d5761361c613b70565b5b6040519080825280601f01601f19166020018201604052801561364f5781602001600182028036833780820191505090505b5090505b600085146136dc5760018261366891906148cd565b9150600a856136779190614d9b565b6030613683919061480b565b60f81b8183815181106136995761369861439d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136d59190614d6a565b9450613653565b8093505050505b919050565b50505050565b50505050565b6137018383836001613729565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613796576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156137d1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137de60008683876136e8565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613a4357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156139f757506139f56000888488613367565b155b15613a2e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061397c565b508060008190555050613a5960008683876136ee565b5050505050565b828054613a6c90614505565b90600052602060002090601f016020900481019282613a8e5760008555613ad5565b82601f10613aa757805160ff1916838001178555613ad5565b82800160010185558215613ad5579182015b82811115613ad4578251825591602001919060010190613ab9565b5b509050613ae29190613b29565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b42576000816000905550600101613b2a565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ba882613b5f565b810181811067ffffffffffffffff82111715613bc757613bc6613b70565b5b80604052505050565b6000613bda613b46565b9050613be68282613b9f565b919050565b600067ffffffffffffffff821115613c0657613c05613b70565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c4782613c1c565b9050919050565b613c5781613c3c565b8114613c6257600080fd5b50565b600081359050613c7481613c4e565b92915050565b6000613c8d613c8884613beb565b613bd0565b90508083825260208201905060208402830185811115613cb057613caf613c17565b5b835b81811015613cd95780613cc58882613c65565b845260208401935050602081019050613cb2565b5050509392505050565b600082601f830112613cf857613cf7613b5a565b5b8135613d08848260208601613c7a565b91505092915050565b600060208284031215613d2757613d26613b50565b5b600082013567ffffffffffffffff811115613d4557613d44613b55565b5b613d5184828501613ce3565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613d8f81613d5a565b8114613d9a57600080fd5b50565b600081359050613dac81613d86565b92915050565b600060208284031215613dc857613dc7613b50565b5b6000613dd684828501613d9d565b91505092915050565b60008115159050919050565b613df481613ddf565b82525050565b6000602082019050613e0f6000830184613deb565b92915050565b613e1e81613ddf565b8114613e2957600080fd5b50565b600081359050613e3b81613e15565b92915050565b600060208284031215613e5757613e56613b50565b5b6000613e6584828501613e2c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ea8578082015181840152602081019050613e8d565b83811115613eb7576000848401525b50505050565b6000613ec882613e6e565b613ed28185613e79565b9350613ee2818560208601613e8a565b613eeb81613b5f565b840191505092915050565b60006020820190508181036000830152613f108184613ebd565b905092915050565b6000819050919050565b613f2b81613f18565b8114613f3657600080fd5b50565b600081359050613f4881613f22565b92915050565b600060208284031215613f6457613f63613b50565b5b6000613f7284828501613f39565b91505092915050565b613f8481613c3c565b82525050565b6000602082019050613f9f6000830184613f7b565b92915050565b60008060408385031215613fbc57613fbb613b50565b5b6000613fca85828601613c65565b9250506020613fdb85828601613f39565b9150509250929050565b600060208284031215613ffb57613ffa613b50565b5b600061400984828501613c65565b91505092915050565b61401b81613f18565b82525050565b60006020820190506140366000830184614012565b92915050565b60008060006060848603121561405557614054613b50565b5b600061406386828701613c65565b935050602061407486828701613c65565b925050604061408586828701613f39565b9150509250925092565b600080fd5b600067ffffffffffffffff8211156140af576140ae613b70565b5b6140b882613b5f565b9050602081019050919050565b82818337600083830152505050565b60006140e76140e284614094565b613bd0565b9050828152602081018484840111156141035761410261408f565b5b61410e8482856140c5565b509392505050565b600082601f83011261412b5761412a613b5a565b5b813561413b8482602086016140d4565b91505092915050565b60006020828403121561415a57614159613b50565b5b600082013567ffffffffffffffff81111561417857614177613b55565b5b61418484828501614116565b91505092915050565b600080604083850312156141a4576141a3613b50565b5b60006141b285828601613c65565b92505060206141c385828601613e2c565b9150509250929050565b600067ffffffffffffffff8211156141e8576141e7613b70565b5b6141f182613b5f565b9050602081019050919050565b600061421161420c846141cd565b613bd0565b90508281526020810184848401111561422d5761422c61408f565b5b6142388482856140c5565b509392505050565b600082601f83011261425557614254613b5a565b5b81356142658482602086016141fe565b91505092915050565b6000806000806080858703121561428857614287613b50565b5b600061429687828801613c65565b94505060206142a787828801613c65565b93505060406142b887828801613f39565b925050606085013567ffffffffffffffff8111156142d9576142d8613b55565b5b6142e587828801614240565b91505092959194509250565b6000806040838503121561430857614307613b50565b5b600061431685828601613c65565b925050602061432785828601613c65565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614367602083613e79565b915061437282614331565b602082019050919050565b600060208201905081810360008301526143968161435a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f57616c6c6574206164647265737320697320616c72656164792077686974656c60008201527f69737465642e0000000000000000000000000000000000000000000000000000602082015250565b6000614428602683613e79565b9150614433826143cc565b604082019050919050565b600060208201905081810360008301526144578161441b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061449882613f18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144cb576144ca61445e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061451d57607f821691505b60208210811415614531576145306144d6565b5b50919050565b7f57616c6c65742061646472657373206973206e6f742077686974656c6973746560008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b6000614593602283613e79565b915061459e82614537565b604082019050919050565b600060208201905081810360008301526145c281614586565b9050919050565b600081905092915050565b50565b60006145e46000836145c9565b91506145ef826145d4565b600082019050919050565b6000614605826145d7565b9150819050919050565b7f54686520636f6e7472616374206973207061757365642e000000000000000000600082015250565b6000614645601783613e79565b91506146508261460f565b602082019050919050565b6000602082019050818103600083015261467481614638565b9050919050565b7f596f75722077616c6c65742061646472657373206973206e6f7420796574207760008201527f686974656c69737465642e000000000000000000000000000000000000000000602082015250565b60006146d7602b83613e79565b91506146e28261467b565b604082019050919050565b60006020820190508181036000830152614706816146ca565b9050919050565b7f4e65656420746f206d696e74206174206c656173742031204e46542e00000000600082015250565b6000614743601c83613e79565b915061474e8261470d565b602082019050919050565b6000602082019050818103600083015261477281614736565b9050919050565b7f4d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f656465642e000000000000000000000000000000000000000000000000000000602082015250565b60006147d5602583613e79565b91506147e082614779565b604082019050919050565b60006020820190508181036000830152614804816147c8565b9050919050565b600061481682613f18565b915061482183613f18565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148565761485561445e565b5b828201905092915050565b7f4d6178204e4654206c696d69742065786365656465642e000000000000000000600082015250565b6000614897601783613e79565b91506148a282614861565b602082019050919050565b600060208201905081810360008301526148c68161488a565b9050919050565b60006148d882613f18565b91506148e383613f18565b9250828210156148f6576148f561445e565b5b828203905092915050565b7f4d6178204e46542070657220616464726573732065786365656465642e000000600082015250565b6000614937601d83613e79565b915061494282614901565b602082019050919050565b600060208201905081810360008301526149668161492a565b9050919050565b600061497882613f18565b915061498383613f18565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149bc576149bb61445e565b5b828202905092915050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b60006149fd601383613e79565b9150614a08826149c7565b602082019050919050565b60006020820190508181036000830152614a2c816149f0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a8f602f83613e79565b9150614a9a82614a33565b604082019050919050565b60006020820190508181036000830152614abe81614a82565b9050919050565b600081905092915050565b6000614adb82613e6e565b614ae58185614ac5565b9350614af5818560208601613e8a565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614b2381614505565b614b2d8186614ac5565b94506001821660008114614b485760018114614b5957614b8c565b60ff19831686528186019350614b8c565b614b6285614b01565b60005b83811015614b8457815481890152600182019150602081019050614b65565b838801955050505b50505092915050565b6000614ba18286614ad0565b9150614bad8285614ad0565b9150614bb98284614b16565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c22602683613e79565b9150614c2d82614bc6565b604082019050919050565b60006020820190508181036000830152614c5181614c15565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c7f82614c58565b614c898185614c63565b9350614c99818560208601613e8a565b614ca281613b5f565b840191505092915050565b6000608082019050614cc26000830187613f7b565b614ccf6020830186613f7b565b614cdc6040830185614012565b8181036060830152614cee8184614c74565b905095945050505050565b600081519050614d0881613d86565b92915050565b600060208284031215614d2457614d23613b50565b5b6000614d3284828501614cf9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d7582613f18565b9150614d8083613f18565b925082614d9057614d8f614d3b565b5b828204905092915050565b6000614da682613f18565b9150614db183613f18565b925082614dc157614dc0614d3b565b5b82820690509291505056fea2646970667358221220365b0c1b2ab024b787ed96abbd943776d597f6d75ac260364140485392cfc89d64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001c50696374757265204461792062792047696e612050616c6d6572696e00000000000000000000000000000000000000000000000000000000000000000000000450444159000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d523135676b704c597277734a7736395770365a546848624c4c35776632455061556f52697673784e516379662f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d516666416973533259426361594336634b534271386d6d757851464a4a317439723741394470554d453648552f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000cfab3d21dea0e180749ee7338636d67347932c7d

Deployed Bytecode

0x6080604052600436106102715760003560e01c80635c975abb1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb011461091b578063da3ef23f14610946578063e0a808531461096f578063e985e9c514610998578063f2c4ce1e146109d5578063f2fde38b146109fe57610271565b8063b88d4fde1461080d578063ba7d2c7614610836578063c668286214610861578063c87b56dd1461088c578063ca6d56dc146108c9578063d0eb26b0146108f257610271565b80638da5cb5b116101135780638da5cb5b1461070a57806395d89b41146107355780639c70b51214610760578063a0712d681461078b578063a22cb465146107a7578063a230c524146107d057610271565b80635c975abb146106255780636352211e1461065057806370a082311461068d578063715018a6146106ca5780637f00c7a6146106e157610271565b806321cf115f116101e85780633ccfd60b116101ac5780633ccfd60b1461054c57806342842e0e1461055657806342966c681461057f57806344a0d68a146105a857806351830227146105d157806355f804b3146105fc57610271565b806321cf115f1461047d578063228025e8146104a6578063239c70ae146104cf57806323b872dd146104fa5780633c9527641461052357610271565b8063081c8c441161023a578063081c8c441461036d578063095ea7b3146103985780630b1ca49a146103c157806313faede6146103ea57806318160ddd1461041557806318cae2691461044057610271565b8062173f5c1461027657806301ffc9a71461029f57806302329a29146102dc57806306fdde0314610305578063081812fc14610330575b600080fd5b34801561028257600080fd5b5061029d60048036038101906102989190613d11565b610a27565b005b3480156102ab57600080fd5b506102c660048036038101906102c19190613db2565b610b9b565b6040516102d39190613dfa565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613e41565b610c7d565b005b34801561031157600080fd5b5061031a610d16565b6040516103279190613ef6565b60405180910390f35b34801561033c57600080fd5b5061035760048036038101906103529190613f4e565b610da8565b6040516103649190613f8a565b60405180910390f35b34801561037957600080fd5b50610382610e24565b60405161038f9190613ef6565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190613fa5565b610eb2565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613fe5565b610fbd565b005b3480156103f657600080fd5b506103ff61110a565b60405161040c9190614021565b60405180910390f35b34801561042157600080fd5b5061042a611110565b6040516104379190614021565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190613fe5565b61111e565b6040516104749190614021565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613d11565b611136565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190613f4e565b6112a0565b005b3480156104db57600080fd5b506104e4611326565b6040516104f19190614021565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061403c565b61132c565b005b34801561052f57600080fd5b5061054a60048036038101906105459190613e41565b61133c565b005b6105546113d5565b005b34801561056257600080fd5b5061057d6004803603810190610578919061403c565b6114d1565b005b34801561058b57600080fd5b506105a660048036038101906105a19190613f4e565b6114f1565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190613f4e565b611515565b005b3480156105dd57600080fd5b506105e661159b565b6040516105f39190613dfa565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e9190614144565b6115ae565b005b34801561063157600080fd5b5061063a611644565b6040516106479190613dfa565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190613f4e565b611657565b6040516106849190613f8a565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af9190613fe5565b61166d565b6040516106c19190614021565b60405180910390f35b3480156106d657600080fd5b506106df61173d565b005b3480156106ed57600080fd5b5061070860048036038101906107039190613f4e565b6117c5565b005b34801561071657600080fd5b5061071f61184b565b60405161072c9190613f8a565b60405180910390f35b34801561074157600080fd5b5061074a611875565b6040516107579190613ef6565b60405180910390f35b34801561076c57600080fd5b50610775611907565b6040516107829190613dfa565b60405180910390f35b6107a560048036038101906107a09190613f4e565b61191a565b005b3480156107b357600080fd5b506107ce60048036038101906107c9919061418d565b611cd2565b005b3480156107dc57600080fd5b506107f760048036038101906107f29190613fe5565b611e4a565b6040516108049190613dfa565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f919061426e565b611ea0565b005b34801561084257600080fd5b5061084b611ef3565b6040516108589190614021565b60405180910390f35b34801561086d57600080fd5b50610876611ef9565b6040516108839190613ef6565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190613f4e565b611f87565b6040516108c09190613ef6565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb9190613fe5565b6120e0565b005b3480156108fe57600080fd5b5061091960048036038101906109149190613f4e565b612237565b005b34801561092757600080fd5b506109306122bd565b60405161093d9190614021565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190614144565b6122c3565b005b34801561097b57600080fd5b5061099660048036038101906109919190613e41565b612359565b005b3480156109a457600080fd5b506109bf60048036038101906109ba91906142f1565b6123f2565b6040516109cc9190613dfa565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190614144565b612486565b005b348015610a0a57600080fd5b50610a256004803603810190610a209190613fe5565b61251c565b005b610a2f612614565b73ffffffffffffffffffffffffffffffffffffffff16610a4d61184b565b73ffffffffffffffffffffffffffffffffffffffff1614610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a9061437d565b60405180910390fd5b60005b8151811015610b9757610ad2828281518110610ac557610ac461439d565b5b6020026020010151611e4a565b15610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b099061443e565b60405180910390fd5b600160136000848481518110610b2b57610b2a61439d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b8f9061448d565b915050610aa6565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c6657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c765750610c758261261c565b5b9050919050565b610c85612614565b73ffffffffffffffffffffffffffffffffffffffff16610ca361184b565b73ffffffffffffffffffffffffffffffffffffffff1614610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf09061437d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610d2590614505565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5190614505565b8015610d9e5780601f10610d7357610100808354040283529160200191610d9e565b820191906000526020600020905b815481529060010190602001808311610d8157829003601f168201915b5050505050905090565b6000610db382612686565b610de9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60108054610e3190614505565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5d90614505565b8015610eaa5780601f10610e7f57610100808354040283529160200191610eaa565b820191906000526020600020905b815481529060010190602001808311610e8d57829003601f168201915b505050505081565b6000610ebd82611657565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f25576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f44612614565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f765750610f7481610f6f612614565b6123f2565b155b15610fad576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fb88383836126c0565b505050565b610fc5612614565b73ffffffffffffffffffffffffffffffffffffffff16610fe361184b565b73ffffffffffffffffffffffffffffffffffffffff1614611039576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110309061437d565b60405180910390fd5b61104281611e4a565b611081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611078906145a9565b60405180910390fd5b601360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690557f6e76fb4c77256006d9c38ec7d82b45a8c8f3c27b1d6766fffc42dfb8de684492816040516110ff9190613f8a565b60405180910390a150565b600c5481565b600060015460005403905090565b60146020528060005260406000206000915090505481565b61113e612614565b73ffffffffffffffffffffffffffffffffffffffff1661115c61184b565b73ffffffffffffffffffffffffffffffffffffffff16146111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a99061437d565b60405180910390fd5b60005b815181101561129c576111e18282815181106111d4576111d361439d565b5b6020026020010151611e4a565b611220576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611217906145a9565b60405180910390fd5b601360008383815181106112375761123661439d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806112949061448d565b9150506111b5565b5050565b6112a8612614565b73ffffffffffffffffffffffffffffffffffffffff166112c661184b565b73ffffffffffffffffffffffffffffffffffffffff161461131c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113139061437d565b60405180910390fd5b80600d8190555050565b600e5481565b611337838383612772565b505050565b611344612614565b73ffffffffffffffffffffffffffffffffffffffff1661136261184b565b73ffffffffffffffffffffffffffffffffffffffff16146113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af9061437d565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6113dd612614565b73ffffffffffffffffffffffffffffffffffffffff166113fb61184b565b73ffffffffffffffffffffffffffffffffffffffff1614611451576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114489061437d565b60405180910390fd5b600061145b61184b565b73ffffffffffffffffffffffffffffffffffffffff164760405161147e906145fa565b60006040518083038185875af1925050503d80600081146114bb576040519150601f19603f3d011682016040523d82523d6000602084013e6114c0565b606091505b50509050806114ce57600080fd5b50565b6114ec83838360405180602001604052806000815250611ea0565b505050565b601560008154809291906115049061448d565b919050555061151281612c63565b50565b61151d612614565b73ffffffffffffffffffffffffffffffffffffffff1661153b61184b565b73ffffffffffffffffffffffffffffffffffffffff1614611591576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115889061437d565b60405180910390fd5b80600c8190555050565b600f60019054906101000a900460ff1681565b6115b6612614565b73ffffffffffffffffffffffffffffffffffffffff166115d461184b565b73ffffffffffffffffffffffffffffffffffffffff161461162a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116219061437d565b60405180910390fd5b80600a9080519060200190611640929190613a60565b5050565b600f60009054906101000a900460ff1681565b600061166282613007565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611745612614565b73ffffffffffffffffffffffffffffffffffffffff1661176361184b565b73ffffffffffffffffffffffffffffffffffffffff16146117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b09061437d565b60405180910390fd5b6117c36000613283565b565b6117cd612614565b73ffffffffffffffffffffffffffffffffffffffff166117eb61184b565b73ffffffffffffffffffffffffffffffffffffffff1614611841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118389061437d565b60405180910390fd5b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461188490614505565b80601f01602080910402602001604051908101604052809291908181526020018280546118b090614505565b80156118fd5780601f106118d2576101008083540402835291602001916118fd565b820191906000526020600020905b8154815290600101906020018083116118e057829003601f168201915b5050505050905090565b601260009054906101000a900460ff1681565b6000611924611110565b9050600f60009054906101000a900460ff1615611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d9061465b565b60405180910390fd5b60011515601260009054906101000a900460ff16151514156119db5761199b33611e4a565b6119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d1906146ed565b60405180910390fd5b5b60008211611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590614759565b60405180910390fd5b600e54821115611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a906147eb565b60405180910390fd5b60006015541415611ac357600d548282611a7d919061480b565b1115611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab5906148ad565b60405180910390fd5b611b2d565b600d5482600160155484611ad7919061480b565b611ae191906148cd565b611aeb919061480b565b1115611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b23906148ad565b60405180910390fd5b5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506011548382611b80919061480b565b1115611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb89061494d565b60405180910390fd5b611bc961184b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c4c5782600c54611c09919061496d565b341015611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4290614a13565b60405180910390fd5b5b6000600190505b838111611cc257601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611caa9061448d565b91905055508080611cba9061448d565b915050611c53565b50611ccd3384613349565b505050565b611cda612614565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d4c612614565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611df9612614565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e3e9190613dfa565b60405180910390a35050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611eab848484612772565b611eb784848484613367565b611eed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60115481565b600b8054611f0690614505565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3290614505565b8015611f7f5780601f10611f5457610100808354040283529160200191611f7f565b820191906000526020600020905b815481529060010190602001808311611f6257829003601f168201915b505050505081565b6060611f9282612686565b611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc890614aa5565b60405180910390fd5b60001515600f60019054906101000a900460ff161515141561207f5760108054611ffa90614505565b80601f016020809104026020016040519081016040528092919081815260200182805461202690614505565b80156120735780601f1061204857610100808354040283529160200191612073565b820191906000526020600020905b81548152906001019060200180831161205657829003601f168201915b505050505090506120db565b60006120896134f5565b905060008151116120a957604051806020016040528060008152506120d7565b806120b384613587565b600b6040516020016120c793929190614b95565b6040516020818303038152906040525b9150505b919050565b6120e8612614565b73ffffffffffffffffffffffffffffffffffffffff1661210661184b565b73ffffffffffffffffffffffffffffffffffffffff161461215c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121539061437d565b60405180910390fd5b61216581611e4a565b156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c9061443e565b60405180910390fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fb251eb052afc73ffd02ffe85ad79990a8b3fed60d76dbc2fa2fdd7123dffd9148160405161222c9190613f8a565b60405180910390a150565b61223f612614565b73ffffffffffffffffffffffffffffffffffffffff1661225d61184b565b73ffffffffffffffffffffffffffffffffffffffff16146122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa9061437d565b60405180910390fd5b8060118190555050565b600d5481565b6122cb612614565b73ffffffffffffffffffffffffffffffffffffffff166122e961184b565b73ffffffffffffffffffffffffffffffffffffffff161461233f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123369061437d565b60405180910390fd5b80600b9080519060200190612355929190613a60565b5050565b612361612614565b73ffffffffffffffffffffffffffffffffffffffff1661237f61184b565b73ffffffffffffffffffffffffffffffffffffffff16146123d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cc9061437d565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61248e612614565b73ffffffffffffffffffffffffffffffffffffffff166124ac61184b565b73ffffffffffffffffffffffffffffffffffffffff1614612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f99061437d565b60405180910390fd5b8060109080519060200190612518929190613a60565b5050565b612524612614565b73ffffffffffffffffffffffffffffffffffffffff1661254261184b565b73ffffffffffffffffffffffffffffffffffffffff1614612598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258f9061437d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff90614c38565b60405180910390fd5b61261181613283565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156126b9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061277d82613007565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127a4612614565b73ffffffffffffffffffffffffffffffffffffffff1614806127d757506127d682600001516127d1612614565b6123f2565b5b8061281c57506127e5612614565b73ffffffffffffffffffffffffffffffffffffffff1661280484610da8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612855576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128be576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612925576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61293285858560016136e8565b61294260008484600001516126c0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612bf357600054811015612bf25782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5c85858560016136ee565b5050505050565b6000612c6e82613007565b9050612c82816000015160008460016136e8565b612c9260008383600001516126c0565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f7e57600054811015612f7d5781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ff1816000015160008460016136ee565b6001600081548092919060010191905055505050565b61300f613ae6565b600082905060005481101561324c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161324a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461312e57809250505061327e565b5b60011561324957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461324457809250505061327e565b61312f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6133638282604051806020016040528060008152506136f4565b5050565b60006133888473ffffffffffffffffffffffffffffffffffffffff16613706565b156134e8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133b1612614565b8786866040518563ffffffff1660e01b81526004016133d39493929190614cad565b602060405180830381600087803b1580156133ed57600080fd5b505af192505050801561341e57506040513d601f19601f8201168201806040525081019061341b9190614d0e565b60015b613498573d806000811461344e576040519150601f19603f3d011682016040523d82523d6000602084013e613453565b606091505b50600081511415613490576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134ed565b600190505b949350505050565b6060600a805461350490614505565b80601f016020809104026020016040519081016040528092919081815260200182805461353090614505565b801561357d5780601f106135525761010080835404028352916020019161357d565b820191906000526020600020905b81548152906001019060200180831161356057829003601f168201915b5050505050905090565b606060008214156135cf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136e3565b600082905060005b600082146136015780806135ea9061448d565b915050600a826135fa9190614d6a565b91506135d7565b60008167ffffffffffffffff81111561361d5761361c613b70565b5b6040519080825280601f01601f19166020018201604052801561364f5781602001600182028036833780820191505090505b5090505b600085146136dc5760018261366891906148cd565b9150600a856136779190614d9b565b6030613683919061480b565b60f81b8183815181106136995761369861439d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136d59190614d6a565b9450613653565b8093505050505b919050565b50505050565b50505050565b6137018383836001613729565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613796576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156137d1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137de60008683876136e8565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613a4357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156139f757506139f56000888488613367565b155b15613a2e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061397c565b508060008190555050613a5960008683876136ee565b5050505050565b828054613a6c90614505565b90600052602060002090601f016020900481019282613a8e5760008555613ad5565b82601f10613aa757805160ff1916838001178555613ad5565b82800160010185558215613ad5579182015b82811115613ad4578251825591602001919060010190613ab9565b5b509050613ae29190613b29565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b42576000816000905550600101613b2a565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ba882613b5f565b810181811067ffffffffffffffff82111715613bc757613bc6613b70565b5b80604052505050565b6000613bda613b46565b9050613be68282613b9f565b919050565b600067ffffffffffffffff821115613c0657613c05613b70565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c4782613c1c565b9050919050565b613c5781613c3c565b8114613c6257600080fd5b50565b600081359050613c7481613c4e565b92915050565b6000613c8d613c8884613beb565b613bd0565b90508083825260208201905060208402830185811115613cb057613caf613c17565b5b835b81811015613cd95780613cc58882613c65565b845260208401935050602081019050613cb2565b5050509392505050565b600082601f830112613cf857613cf7613b5a565b5b8135613d08848260208601613c7a565b91505092915050565b600060208284031215613d2757613d26613b50565b5b600082013567ffffffffffffffff811115613d4557613d44613b55565b5b613d5184828501613ce3565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613d8f81613d5a565b8114613d9a57600080fd5b50565b600081359050613dac81613d86565b92915050565b600060208284031215613dc857613dc7613b50565b5b6000613dd684828501613d9d565b91505092915050565b60008115159050919050565b613df481613ddf565b82525050565b6000602082019050613e0f6000830184613deb565b92915050565b613e1e81613ddf565b8114613e2957600080fd5b50565b600081359050613e3b81613e15565b92915050565b600060208284031215613e5757613e56613b50565b5b6000613e6584828501613e2c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ea8578082015181840152602081019050613e8d565b83811115613eb7576000848401525b50505050565b6000613ec882613e6e565b613ed28185613e79565b9350613ee2818560208601613e8a565b613eeb81613b5f565b840191505092915050565b60006020820190508181036000830152613f108184613ebd565b905092915050565b6000819050919050565b613f2b81613f18565b8114613f3657600080fd5b50565b600081359050613f4881613f22565b92915050565b600060208284031215613f6457613f63613b50565b5b6000613f7284828501613f39565b91505092915050565b613f8481613c3c565b82525050565b6000602082019050613f9f6000830184613f7b565b92915050565b60008060408385031215613fbc57613fbb613b50565b5b6000613fca85828601613c65565b9250506020613fdb85828601613f39565b9150509250929050565b600060208284031215613ffb57613ffa613b50565b5b600061400984828501613c65565b91505092915050565b61401b81613f18565b82525050565b60006020820190506140366000830184614012565b92915050565b60008060006060848603121561405557614054613b50565b5b600061406386828701613c65565b935050602061407486828701613c65565b925050604061408586828701613f39565b9150509250925092565b600080fd5b600067ffffffffffffffff8211156140af576140ae613b70565b5b6140b882613b5f565b9050602081019050919050565b82818337600083830152505050565b60006140e76140e284614094565b613bd0565b9050828152602081018484840111156141035761410261408f565b5b61410e8482856140c5565b509392505050565b600082601f83011261412b5761412a613b5a565b5b813561413b8482602086016140d4565b91505092915050565b60006020828403121561415a57614159613b50565b5b600082013567ffffffffffffffff81111561417857614177613b55565b5b61418484828501614116565b91505092915050565b600080604083850312156141a4576141a3613b50565b5b60006141b285828601613c65565b92505060206141c385828601613e2c565b9150509250929050565b600067ffffffffffffffff8211156141e8576141e7613b70565b5b6141f182613b5f565b9050602081019050919050565b600061421161420c846141cd565b613bd0565b90508281526020810184848401111561422d5761422c61408f565b5b6142388482856140c5565b509392505050565b600082601f83011261425557614254613b5a565b5b81356142658482602086016141fe565b91505092915050565b6000806000806080858703121561428857614287613b50565b5b600061429687828801613c65565b94505060206142a787828801613c65565b93505060406142b887828801613f39565b925050606085013567ffffffffffffffff8111156142d9576142d8613b55565b5b6142e587828801614240565b91505092959194509250565b6000806040838503121561430857614307613b50565b5b600061431685828601613c65565b925050602061432785828601613c65565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614367602083613e79565b915061437282614331565b602082019050919050565b600060208201905081810360008301526143968161435a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f57616c6c6574206164647265737320697320616c72656164792077686974656c60008201527f69737465642e0000000000000000000000000000000000000000000000000000602082015250565b6000614428602683613e79565b9150614433826143cc565b604082019050919050565b600060208201905081810360008301526144578161441b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061449882613f18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144cb576144ca61445e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061451d57607f821691505b60208210811415614531576145306144d6565b5b50919050565b7f57616c6c65742061646472657373206973206e6f742077686974656c6973746560008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b6000614593602283613e79565b915061459e82614537565b604082019050919050565b600060208201905081810360008301526145c281614586565b9050919050565b600081905092915050565b50565b60006145e46000836145c9565b91506145ef826145d4565b600082019050919050565b6000614605826145d7565b9150819050919050565b7f54686520636f6e7472616374206973207061757365642e000000000000000000600082015250565b6000614645601783613e79565b91506146508261460f565b602082019050919050565b6000602082019050818103600083015261467481614638565b9050919050565b7f596f75722077616c6c65742061646472657373206973206e6f7420796574207760008201527f686974656c69737465642e000000000000000000000000000000000000000000602082015250565b60006146d7602b83613e79565b91506146e28261467b565b604082019050919050565b60006020820190508181036000830152614706816146ca565b9050919050565b7f4e65656420746f206d696e74206174206c656173742031204e46542e00000000600082015250565b6000614743601c83613e79565b915061474e8261470d565b602082019050919050565b6000602082019050818103600083015261477281614736565b9050919050565b7f4d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f656465642e000000000000000000000000000000000000000000000000000000602082015250565b60006147d5602583613e79565b91506147e082614779565b604082019050919050565b60006020820190508181036000830152614804816147c8565b9050919050565b600061481682613f18565b915061482183613f18565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148565761485561445e565b5b828201905092915050565b7f4d6178204e4654206c696d69742065786365656465642e000000000000000000600082015250565b6000614897601783613e79565b91506148a282614861565b602082019050919050565b600060208201905081810360008301526148c68161488a565b9050919050565b60006148d882613f18565b91506148e383613f18565b9250828210156148f6576148f561445e565b5b828203905092915050565b7f4d6178204e46542070657220616464726573732065786365656465642e000000600082015250565b6000614937601d83613e79565b915061494282614901565b602082019050919050565b600060208201905081810360008301526149668161492a565b9050919050565b600061497882613f18565b915061498383613f18565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149bc576149bb61445e565b5b828202905092915050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b60006149fd601383613e79565b9150614a08826149c7565b602082019050919050565b60006020820190508181036000830152614a2c816149f0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a8f602f83613e79565b9150614a9a82614a33565b604082019050919050565b60006020820190508181036000830152614abe81614a82565b9050919050565b600081905092915050565b6000614adb82613e6e565b614ae58185614ac5565b9350614af5818560208601613e8a565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614b2381614505565b614b2d8186614ac5565b94506001821660008114614b485760018114614b5957614b8c565b60ff19831686528186019350614b8c565b614b6285614b01565b60005b83811015614b8457815481890152600182019150602081019050614b65565b838801955050505b50505092915050565b6000614ba18286614ad0565b9150614bad8285614ad0565b9150614bb98284614b16565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c22602683613e79565b9150614c2d82614bc6565b604082019050919050565b60006020820190508181036000830152614c5181614c15565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c7f82614c58565b614c898185614c63565b9350614c99818560208601613e8a565b614ca281613b5f565b840191505092915050565b6000608082019050614cc26000830187613f7b565b614ccf6020830186613f7b565b614cdc6040830185614012565b8181036060830152614cee8184614c74565b905095945050505050565b600081519050614d0881613d86565b92915050565b600060208284031215614d2457614d23613b50565b5b6000614d3284828501614cf9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d7582613f18565b9150614d8083613f18565b925082614d9057614d8f614d3b565b5b828204905092915050565b6000614da682613f18565b9150614db183613f18565b925082614dc157614dc0614d3b565b5b82820690509291505056fea2646970667358221220365b0c1b2ab024b787ed96abbd943776d597f6d75ac260364140485392cfc89d64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001c50696374757265204461792062792047696e612050616c6d6572696e00000000000000000000000000000000000000000000000000000000000000000000000450444159000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d523135676b704c597277734a7736395770365a546848624c4c35776632455061556f52697673784e516379662f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d516666416973533259426361594336634b534271386d6d757851464a4a317439723741394470554d453648552f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000cfab3d21dea0e180749ee7338636d67347932c7d

-----Decoded View---------------
Arg [0] : _name (string): Picture Day by Gina Palmerin
Arg [1] : _symbol (string): PDAY
Arg [2] : _initBaseURI (string): ipfs://QmR15gkpLYrwsJw69Wp6ZThHbLL5wf2EPaUoRivsxNQcyf/
Arg [3] : _initNotRevealedUri (string): ipfs://QmQffAisS2YBcaYC6cKSBq8mmuxQFJJ1t9r7A9DpUME6HU/hidden.json
Arg [4] : _members (address[]): 0xCfab3d21dEA0e180749Ee7338636d67347932c7D

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [5] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [6] : 50696374757265204461792062792047696e612050616c6d6572696e00000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 5044415900000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d523135676b704c597277734a7736395770365a54684862
Arg [11] : 4c4c35776632455061556f52697673784e516379662f00000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [13] : 697066733a2f2f516d516666416973533259426361594336634b534271386d6d
Arg [14] : 757851464a4a317439723741394470554d453648552f68696464656e2e6a736f
Arg [15] : 6e00000000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [17] : 000000000000000000000000cfab3d21dea0e180749ee7338636d67347932c7d


Deployed Bytecode Sourcemap

48051:6952:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54172:282;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24983:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53016:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28343:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29846:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48637:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29409:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53900:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48275:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24640:271;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48981:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54516:280;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52129:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48421:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30703:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53314:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54845:155;;;:::i;:::-;;30944:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50914:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52009:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48561:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52657:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48496:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28152:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25352:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43851:94;;;;;;;;;;;;;:::i;:::-;;52309:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43200:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28512:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48785:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49700:1193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30122:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51081:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31200:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48701:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48196:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51247:725;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53633:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53474:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48333:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52812:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53164:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30472:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52489:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44100:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54172:282;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54258:6:::1;54253:194;54274:11;:18;54270:1;:22;54253:194;;;54323:24;54332:11;54344:1;54332:14;;;;;;;;:::i;:::-;;;;;;;;54323:8;:24::i;:::-;54322:25;54314:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;54431:4;54405:7;:23;54413:11;54425:1;54413:14;;;;;;;;:::i;:::-;;;;;;;;54405:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;54294:3;;;;;:::i;:::-;;;;54253:194;;;;54172:282:::0;:::o;24983:305::-;25085:4;25137:25;25122:40;;;:11;:40;;;;:105;;;;25194:33;25179:48;;;:11;:48;;;;25122:105;:158;;;;25244:36;25268:11;25244:23;:36::i;:::-;25122:158;25102:178;;24983:305;;;:::o;53016:79::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53081:6:::1;53072;;:15;;;;;;;;;;;;;;;;;;53016:79:::0;:::o;28343:100::-;28397:13;28430:5;28423:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28343:100;:::o;29846:204::-;29914:7;29939:16;29947:7;29939;:16::i;:::-;29934:64;;29964:34;;;;;;;;;;;;;;29934:64;30018:15;:24;30034:7;30018:24;;;;;;;;;;;;;;;;;;;;;30011:31;;29846:204;;;:::o;48637:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29409:371::-;29482:13;29498:24;29514:7;29498:15;:24::i;:::-;29482:40;;29543:5;29537:11;;:2;:11;;;29533:48;;;29557:24;;;;;;;;;;;;;;29533:48;29614:5;29598:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;29624:37;29641:5;29648:12;:10;:12::i;:::-;29624:16;:37::i;:::-;29623:38;29598:63;29594:138;;;29685:35;;;;;;;;;;;;;;29594:138;29744:28;29753:2;29757:7;29766:5;29744:8;:28::i;:::-;29471:309;29409:371;;:::o;53900:213::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53975:17:::1;53984:7;53975:8;:17::i;:::-;53967:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;54051:7;:16;54059:7;54051:16;;;;;;;;;;;;;;;;54044:23;;;;;;;;;;;54083:22;54097:7;54083:22;;;;;;:::i;:::-;;;;;;;;53900:213:::0;:::o;48275:31::-;;;;:::o;24640:271::-;24684:7;24876:12;;24860:13;;:28;24853:35;;24640:271;:::o;48981:55::-;;;;;;;;;;;;;;;;;:::o;54516:280::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54605:6:::1;54600:189;54621:11;:18;54617:1;:22;54600:189;;;54669:24;54678:11;54690:1;54678:14;;;;;;;;:::i;:::-;;;;;;;;54669:8;:24::i;:::-;54661:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;54754:7;:23;54762:11;54774:1;54762:14;;;;;;;;:::i;:::-;;;;;;;;54754:23;;;;;;;;;;;;;;;;54747:30;;;;;;;;;;;54641:3;;;;;:::i;:::-;;;;54600:189;;;;54516:280:::0;:::o;52129:106::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52214:13:::1;52202:9;:25;;;;52129:106:::0;:::o;48421:33::-;;;;:::o;30703:170::-;30837:28;30847:4;30853:2;30857:7;30837:9;:28::i;:::-;30703:170;;;:::o;53314:101::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53401:6:::1;53383:15;;:24;;;;;;;;;;;;;;;;;;53314:101:::0;:::o;54845:155::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54902:7:::1;54923;:5;:7::i;:::-;54915:21;;54944;54915:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54901:69;;;54989:2;54981:11;;;::::0;::::1;;54890:110;54845:155::o:0;30944:185::-;31082:39;31099:4;31105:2;31109:7;31082:39;;;;;;;;;;;;:16;:39::i;:::-;30944:185;;;:::o;50914:104::-;50972:11;;:13;;;;;;;;;:::i;:::-;;;;;;50996:14;51002:7;50996:5;:14::i;:::-;50914:104;:::o;52009:86::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52079:8:::1;52072:4;:15;;;;52009:86:::0;:::o;48561:28::-;;;;;;;;;;;;;:::o;52657:104::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52742:11:::1;52732:7;:21;;;;;;;;;;;;:::i;:::-;;52657:104:::0;:::o;48496:25::-;;;;;;;;;;;;;:::o;28152:124::-;28216:7;28243:20;28255:7;28243:11;:20::i;:::-;:25;;;28236:32;;28152:124;;;:::o;25352:206::-;25416:7;25457:1;25440:19;;:5;:19;;;25436:60;;;25468:28;;;;;;;;;;;;;;25436:60;25522:12;:19;25535:5;25522:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25514:36;;25507:43;;25352:206;;;:::o;43851:94::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43916:21:::1;43934:1;43916:9;:21::i;:::-;43851:94::o:0;52309:122::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52406:17:::1;52390:13;:33;;;;52309:122:::0;:::o;43200:87::-;43246:7;43273:6;;;;;;;;;;;43266:13;;43200:87;:::o;28512:104::-;28568:13;28601:7;28594:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28512:104;:::o;48785:34::-;;;;;;;;;;;;;:::o;49700:1193::-;49761:14;49778:13;:11;:13::i;:::-;49761:30;;49811:6;;;;;;;;;;;49810:7;49802:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;49879:4;49860:23;;:15;;;;;;;;;;;:23;;;49856:181;;;49926:20;49935:10;49926:8;:20::i;:::-;49900:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;49856:181;50069:1;50055:11;:15;50047:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;50137:13;;50122:11;:28;;50114:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;50216:1;50201:11;;:16;50197:209;;;50256:9;;50241:11;50232:6;:20;;;;:::i;:::-;:33;;50224:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50197:209;;;50363:9;;50348:11;50344:1;50330:11;;50321:6;:20;;;;:::i;:::-;:24;;;;:::i;:::-;:38;;;;:::i;:::-;:51;;50313:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;50197:209;50426:24;50453:20;:32;50474:10;50453:32;;;;;;;;;;;;;;;;50426:59;;50538:18;;50523:11;50504:16;:30;;;;:::i;:::-;:52;;50496:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;50621:7;:5;:7::i;:::-;50607:21;;:10;:21;;;50603:117;;50673:11;50666:4;;:18;;;;:::i;:::-;50653:9;:31;;50645:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50603:117;50737:9;50749:1;50737:13;;50732:107;50757:11;50752:1;:16;50732:107;;50790:20;:32;50811:10;50790:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;50770:3;;;;;:::i;:::-;;;;50732:107;;;;50851:34;50861:10;50873:11;50851:9;:34::i;:::-;49750:1143;;49700:1193;:::o;30122:279::-;30225:12;:10;:12::i;:::-;30213:24;;:8;:24;;;30209:54;;;30246:17;;;;;;;;;;;;;;30209:54;30321:8;30276:18;:32;30295:12;:10;:12::i;:::-;30276:32;;;;;;;;;;;;;;;:42;30309:8;30276:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30374:8;30345:48;;30360:12;:10;:12::i;:::-;30345:48;;;30384:8;30345:48;;;;;;:::i;:::-;;;;;;;;30122:279;;:::o;51081:104::-;51137:4;51161:7;:16;51169:7;51161:16;;;;;;;;;;;;;;;;;;;;;;;;;51154:23;;51081:104;;;:::o;31200:342::-;31367:28;31377:4;31383:2;31387:7;31367:9;:28::i;:::-;31411:48;31434:4;31440:2;31444:7;31453:5;31411:22;:48::i;:::-;31406:129;;31483:40;;;;;;;;;;;;;;31406:129;31200:342;;;;:::o;48701:38::-;;;;:::o;48196:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51247:725::-;51365:13;51418:16;51426:7;51418;:16::i;:::-;51396:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;51538:5;51526:17;;:8;;;;;;;;;;;:17;;;51522:71;;;51567:14;51560:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51522:71;51605:28;51636:10;:8;:10::i;:::-;51605:41;;51708:1;51683:14;51677:28;:32;:287;;;;;;;;;;;;;;;;;51801:14;51842:18;:7;:16;:18::i;:::-;51887:13;51758:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51677:287;51657:307;;;51247:725;;;;:::o;53633:213::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53706:17:::1;53715:7;53706:8;:17::i;:::-;53705:18;53697:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;53798:4;53779:7;:16;53787:7;53779:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;53818:20;53830:7;53818:20;;;;;;:::i;:::-;;;;;;;;53633:213:::0;:::o;53474:110::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53570:6:::1;53549:18;:27;;;;53474:110:::0;:::o;48333:31::-;;;;:::o;52812:151::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52938:17:::1;52922:13;:33;;;;;;;;;;;;:::i;:::-;;52812:151:::0;:::o;53164:87::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53237:6:::1;53226:8;;:17;;;;;;;;;;;;;;;;;;53164:87:::0;:::o;30472:164::-;30569:4;30593:18;:25;30612:5;30593:25;;;;;;;;;;;;;;;:35;30619:8;30593:35;;;;;;;;;;;;;;;;;;;;;;;;;30586:42;;30472:164;;;;:::o;52489:126::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52592:15:::1;52575:14;:32;;;;;;;;;;;;:::i;:::-;;52489:126:::0;:::o;44100:229::-;43431:12;:10;:12::i;:::-;43420:23;;:7;:5;:7::i;:::-;:23;;;43412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44223:1:::1;44203:22;;:8;:22;;;;44181:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;44302:19;44312:8;44302:9;:19::i;:::-;44100:229:::0;:::o;2838:98::-;2891:7;2918:10;2911:17;;2838:98;:::o;14368:157::-;14453:4;14492:25;14477:40;;;:11;:40;;;;14470:47;;14368:157;;;:::o;31797:144::-;31854:4;31888:13;;31878:7;:23;:55;;;;;31906:11;:20;31918:7;31906:20;;;;;;;;;;;:27;;;;;;;;;;;;31905:28;31878:55;31871:62;;31797:144;;;:::o;39003:196::-;39145:2;39118:15;:24;39134:7;39118:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39183:7;39179:2;39163:28;;39172:5;39163:28;;;;;;;;;;;;39003:196;;;:::o;34504:2112::-;34619:35;34657:20;34669:7;34657:11;:20::i;:::-;34619:58;;34690:22;34732:13;:18;;;34716:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;34767:50;34784:13;:18;;;34804:12;:10;:12::i;:::-;34767:16;:50::i;:::-;34716:101;:154;;;;34858:12;:10;:12::i;:::-;34834:36;;:20;34846:7;34834:11;:20::i;:::-;:36;;;34716:154;34690:181;;34889:17;34884:66;;34915:35;;;;;;;;;;;;;;34884:66;34987:4;34965:26;;:13;:18;;;:26;;;34961:67;;35000:28;;;;;;;;;;;;;;34961:67;35057:1;35043:16;;:2;:16;;;35039:52;;;35068:23;;;;;;;;;;;;;;35039:52;35104:43;35126:4;35132:2;35136:7;35145:1;35104:21;:43::i;:::-;35212:49;35229:1;35233:7;35242:13;:18;;;35212:8;:49::i;:::-;35587:1;35557:12;:18;35570:4;35557:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35631:1;35603:12;:16;35616:2;35603:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35677:2;35649:11;:20;35661:7;35649:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;35739:15;35694:11;:20;35706:7;35694:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;36007:19;36039:1;36029:7;:11;36007:33;;36100:1;36059:43;;:11;:24;36071:11;36059:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36055:445;;;36284:13;;36270:11;:27;36266:219;;;36354:13;:18;;;36322:11;:24;36334:11;36322:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;36437:13;:28;;;36395:11;:24;36407:11;36395:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;36266:219;36055:445;35532:979;36547:7;36543:2;36528:27;;36537:4;36528:27;;;;;;;;;;;;36566:42;36587:4;36593:2;36597:7;36606:1;36566:20;:42::i;:::-;34608:2008;;34504:2112;;;:::o;36845:2040::-;36905:35;36943:20;36955:7;36943:11;:20::i;:::-;36905:58;;36976:65;36998:13;:18;;;37026:1;37030:7;37039:1;36976:21;:65::i;:::-;37106:49;37123:1;37127:7;37136:13;:18;;;37106:8;:49::i;:::-;37495:1;37451:12;:32;37464:13;:18;;;37451:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37560:1;37511:12;:32;37524:13;:18;;;37511:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37688:13;:18;;;37660:11;:20;37672:7;37660:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;37766:15;37721:11;:20;37733:7;37721:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;37827:4;37797:11;:20;37809:7;37797:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;38079:19;38111:1;38101:7;:11;38079:33;;38172:1;38131:43;;:11;:24;38143:11;38131:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;38127:445;;;38356:13;;38342:11;:27;38338:219;;;38426:13;:18;;;38394:11;:24;38406:11;38394:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;38509:13;:28;;;38467:11;:24;38479:11;38467:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;38338:219;38127:445;37426:1157;38641:7;38637:1;38600:49;;38609:13;:18;;;38600:49;;;;;;;;;;;;38660:64;38681:13;:18;;;38709:1;38713:7;38722:1;38660:20;:64::i;:::-;38852:12;;:14;;;;;;;;;;;;;36894:1991;36845:2040;:::o;27007:1083::-;27068:21;;:::i;:::-;27102:12;27117:7;27102:22;;27173:13;;27166:4;:20;27162:861;;;27207:31;27241:11;:17;27253:4;27241:17;;;;;;;;;;;27207:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27282:9;:16;;;27277:731;;27353:1;27327:28;;:9;:14;;;:28;;;27323:101;;27391:9;27384:16;;;;;;27323:101;27728:261;27735:4;27728:261;;;27768:6;;;;;;;;27813:11;:17;27825:4;27813:17;;;;;;;;;;;27801:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27887:1;27861:28;;:9;:14;;;:28;;;27857:109;;27929:9;27922:16;;;;;;27857:109;27728:261;;;27277:731;27188:835;27162:861;28051:31;;;;;;;;;;;;;;27007:1083;;;;:::o;44337:173::-;44393:16;44412:6;;;;;;;;;;;44393:25;;44438:8;44429:6;;:17;;;;;;;;;;;;;;;;;;44493:8;44462:40;;44483:8;44462:40;;;;;;;;;;;;44382:128;44337:173;:::o;31949:104::-;32018:27;32028:2;32032:8;32018:27;;;;;;;;;;;;:9;:27::i;:::-;31949:104;;:::o;39764:790::-;39919:4;39940:15;:2;:13;;;:15::i;:::-;39936:611;;;39992:2;39976:36;;;40013:12;:10;:12::i;:::-;40027:4;40033:7;40042:5;39976:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39972:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40239:1;40222:6;:13;:18;40218:259;;;40272:40;;;;;;;;;;;;;;40218:259;40427:6;40421:13;40412:6;40408:2;40404:15;40397:38;39972:520;40109:45;;;40099:55;;;:6;:55;;;;40092:62;;;;;39936:611;40531:4;40524:11;;39764:790;;;;;;;:::o;49544:108::-;49604:13;49637:7;49630:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49544:108;:::o;400:723::-;456:13;686:1;677:5;:10;673:53;;;704:10;;;;;;;;;;;;;;;;;;;;;673:53;736:12;751:5;736:20;;767:14;792:78;807:1;799:4;:9;792:78;;825:8;;;;;:::i;:::-;;;;856:2;848:10;;;;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880:39;;930:154;946:1;937:5;:10;930:154;;974:1;964:11;;;;;:::i;:::-;;;1041:2;1033:5;:10;;;;:::i;:::-;1020:2;:24;;;;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1070:2;1061:11;;;;;:::i;:::-;;;930:154;;;1108:6;1094:21;;;;;400:723;;;;:::o;41202:159::-;;;;;:::o;42020:158::-;;;;;:::o;32416:163::-;32539:32;32545:2;32549:8;32559:5;32566:4;32539:5;:32::i;:::-;32416:163;;;:::o;4285:326::-;4345:4;4602:1;4580:7;:19;;;:23;4573:30;;4285:326;;;:::o;32838:1412::-;32977:20;33000:13;;32977:36;;33042:1;33028:16;;:2;:16;;;33024:48;;;33053:19;;;;;;;;;;;;;;33024:48;33099:1;33087:8;:13;33083:44;;;33109:18;;;;;;;;;;;;;;33083:44;33140:61;33170:1;33174:2;33178:12;33192:8;33140:21;:61::i;:::-;33513:8;33478:12;:16;33491:2;33478:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33577:8;33537:12;:16;33550:2;33537:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33636:2;33603:11;:25;33615:12;33603:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33703:15;33653:11;:25;33665:12;33653:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33736:20;33759:12;33736:35;;33793:9;33788:328;33808:8;33804:1;:12;33788:328;;;33872:12;33868:2;33847:38;;33864:1;33847:38;;;;;;;;;;;;33908:4;:68;;;;;33917:59;33948:1;33952:2;33956:12;33970:5;33917:22;:59::i;:::-;33916:60;33908:68;33904:164;;;34008:40;;;;;;;;;;;;;;33904:164;34086:14;;;;;;;33818:3;;;;;;;33788:328;;;;34148:12;34132:13;:28;;;;33453:719;34182:60;34211:1;34215:2;34219:12;34233:8;34182:20;:60::i;:::-;32966:1284;32838:1412;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:102;498:6;549:2;545:7;540:2;533:5;529:14;525:28;515:38;;457:102;;;:::o;565:180::-;613:77;610:1;603:88;710:4;707:1;700:15;734:4;731:1;724:15;751:281;834:27;856:4;834:27;:::i;:::-;826:6;822:40;964:6;952:10;949:22;928:18;916:10;913:34;910:62;907:88;;;975:18;;:::i;:::-;907:88;1015:10;1011:2;1004:22;794:238;751:281;;:::o;1038:129::-;1072:6;1099:20;;:::i;:::-;1089:30;;1128:33;1156:4;1148:6;1128:33;:::i;:::-;1038:129;;;:::o;1173:311::-;1250:4;1340:18;1332:6;1329:30;1326:56;;;1362:18;;:::i;:::-;1326:56;1412:4;1404:6;1400:17;1392:25;;1472:4;1466;1462:15;1454:23;;1173:311;;;:::o;1490:117::-;1599:1;1596;1589:12;1613:126;1650:7;1690:42;1683:5;1679:54;1668:65;;1613:126;;;:::o;1745:96::-;1782:7;1811:24;1829:5;1811:24;:::i;:::-;1800:35;;1745:96;;;:::o;1847:122::-;1920:24;1938:5;1920:24;:::i;:::-;1913:5;1910:35;1900:63;;1959:1;1956;1949:12;1900:63;1847:122;:::o;1975:139::-;2021:5;2059:6;2046:20;2037:29;;2075:33;2102:5;2075:33;:::i;:::-;1975:139;;;;:::o;2137:710::-;2233:5;2258:81;2274:64;2331:6;2274:64;:::i;:::-;2258:81;:::i;:::-;2249:90;;2359:5;2388:6;2381:5;2374:21;2422:4;2415:5;2411:16;2404:23;;2475:4;2467:6;2463:17;2455:6;2451:30;2504:3;2496:6;2493:15;2490:122;;;2523:79;;:::i;:::-;2490:122;2638:6;2621:220;2655:6;2650:3;2647:15;2621:220;;;2730:3;2759:37;2792:3;2780:10;2759:37;:::i;:::-;2754:3;2747:50;2826:4;2821:3;2817:14;2810:21;;2697:144;2681:4;2676:3;2672:14;2665:21;;2621:220;;;2625:21;2239:608;;2137:710;;;;;:::o;2870:370::-;2941:5;2990:3;2983:4;2975:6;2971:17;2967:27;2957:122;;2998:79;;:::i;:::-;2957:122;3115:6;3102:20;3140:94;3230:3;3222:6;3215:4;3207:6;3203:17;3140:94;:::i;:::-;3131:103;;2947:293;2870:370;;;;:::o;3246:539::-;3330:6;3379:2;3367:9;3358:7;3354:23;3350:32;3347:119;;;3385:79;;:::i;:::-;3347:119;3533:1;3522:9;3518:17;3505:31;3563:18;3555:6;3552:30;3549:117;;;3585:79;;:::i;:::-;3549:117;3690:78;3760:7;3751:6;3740:9;3736:22;3690:78;:::i;:::-;3680:88;;3476:302;3246:539;;;;:::o;3791:149::-;3827:7;3867:66;3860:5;3856:78;3845:89;;3791:149;;;:::o;3946:120::-;4018:23;4035:5;4018:23;:::i;:::-;4011:5;4008:34;3998:62;;4056:1;4053;4046:12;3998:62;3946:120;:::o;4072:137::-;4117:5;4155:6;4142:20;4133:29;;4171:32;4197:5;4171:32;:::i;:::-;4072:137;;;;:::o;4215:327::-;4273:6;4322:2;4310:9;4301:7;4297:23;4293:32;4290:119;;;4328:79;;:::i;:::-;4290:119;4448:1;4473:52;4517:7;4508:6;4497:9;4493:22;4473:52;:::i;:::-;4463:62;;4419:116;4215:327;;;;:::o;4548:90::-;4582:7;4625:5;4618:13;4611:21;4600:32;;4548:90;;;:::o;4644:109::-;4725:21;4740:5;4725:21;:::i;:::-;4720:3;4713:34;4644:109;;:::o;4759:210::-;4846:4;4884:2;4873:9;4869:18;4861:26;;4897:65;4959:1;4948:9;4944:17;4935:6;4897:65;:::i;:::-;4759:210;;;;:::o;4975:116::-;5045:21;5060:5;5045:21;:::i;:::-;5038:5;5035:32;5025:60;;5081:1;5078;5071:12;5025:60;4975:116;:::o;5097:133::-;5140:5;5178:6;5165:20;5156:29;;5194:30;5218:5;5194:30;:::i;:::-;5097:133;;;;:::o;5236:323::-;5292:6;5341:2;5329:9;5320:7;5316:23;5312:32;5309:119;;;5347:79;;:::i;:::-;5309:119;5467:1;5492:50;5534:7;5525:6;5514:9;5510:22;5492:50;:::i;:::-;5482:60;;5438:114;5236:323;;;;:::o;5565:99::-;5617:6;5651:5;5645:12;5635:22;;5565:99;;;:::o;5670:169::-;5754:11;5788:6;5783:3;5776:19;5828:4;5823:3;5819:14;5804:29;;5670:169;;;;:::o;5845:307::-;5913:1;5923:113;5937:6;5934:1;5931:13;5923:113;;;6022:1;6017:3;6013:11;6007:18;6003:1;5998:3;5994:11;5987:39;5959:2;5956:1;5952:10;5947:15;;5923:113;;;6054:6;6051:1;6048:13;6045:101;;;6134:1;6125:6;6120:3;6116:16;6109:27;6045:101;5894:258;5845:307;;;:::o;6158:364::-;6246:3;6274:39;6307:5;6274:39;:::i;:::-;6329:71;6393:6;6388:3;6329:71;:::i;:::-;6322:78;;6409:52;6454:6;6449:3;6442:4;6435:5;6431:16;6409:52;:::i;:::-;6486:29;6508:6;6486:29;:::i;:::-;6481:3;6477:39;6470:46;;6250:272;6158:364;;;;:::o;6528:313::-;6641:4;6679:2;6668:9;6664:18;6656:26;;6728:9;6722:4;6718:20;6714:1;6703:9;6699:17;6692:47;6756:78;6829:4;6820:6;6756:78;:::i;:::-;6748:86;;6528:313;;;;:::o;6847:77::-;6884:7;6913:5;6902:16;;6847:77;;;:::o;6930:122::-;7003:24;7021:5;7003:24;:::i;:::-;6996:5;6993:35;6983:63;;7042:1;7039;7032:12;6983:63;6930:122;:::o;7058:139::-;7104:5;7142:6;7129:20;7120:29;;7158:33;7185:5;7158:33;:::i;:::-;7058:139;;;;:::o;7203:329::-;7262:6;7311:2;7299:9;7290:7;7286:23;7282:32;7279:119;;;7317:79;;:::i;:::-;7279:119;7437:1;7462:53;7507:7;7498:6;7487:9;7483:22;7462:53;:::i;:::-;7452:63;;7408:117;7203:329;;;;:::o;7538:118::-;7625:24;7643:5;7625:24;:::i;:::-;7620:3;7613:37;7538:118;;:::o;7662:222::-;7755:4;7793:2;7782:9;7778:18;7770:26;;7806:71;7874:1;7863:9;7859:17;7850:6;7806:71;:::i;:::-;7662:222;;;;:::o;7890:474::-;7958:6;7966;8015:2;8003:9;7994:7;7990:23;7986:32;7983:119;;;8021:79;;:::i;:::-;7983:119;8141:1;8166:53;8211:7;8202:6;8191:9;8187:22;8166:53;:::i;:::-;8156:63;;8112:117;8268:2;8294:53;8339:7;8330:6;8319:9;8315:22;8294:53;:::i;:::-;8284:63;;8239:118;7890:474;;;;;:::o;8370:329::-;8429:6;8478:2;8466:9;8457:7;8453:23;8449:32;8446:119;;;8484:79;;:::i;:::-;8446:119;8604:1;8629:53;8674:7;8665:6;8654:9;8650:22;8629:53;:::i;:::-;8619:63;;8575:117;8370:329;;;;:::o;8705:118::-;8792:24;8810:5;8792:24;:::i;:::-;8787:3;8780:37;8705:118;;:::o;8829:222::-;8922:4;8960:2;8949:9;8945:18;8937:26;;8973:71;9041:1;9030:9;9026:17;9017:6;8973:71;:::i;:::-;8829:222;;;;:::o;9057:619::-;9134:6;9142;9150;9199:2;9187:9;9178:7;9174:23;9170:32;9167:119;;;9205:79;;:::i;:::-;9167:119;9325:1;9350:53;9395:7;9386:6;9375:9;9371:22;9350:53;:::i;:::-;9340:63;;9296:117;9452:2;9478:53;9523:7;9514:6;9503:9;9499:22;9478:53;:::i;:::-;9468:63;;9423:118;9580:2;9606:53;9651:7;9642:6;9631:9;9627:22;9606:53;:::i;:::-;9596:63;;9551:118;9057:619;;;;;:::o;9682:117::-;9791:1;9788;9781:12;9805:308;9867:4;9957:18;9949:6;9946:30;9943:56;;;9979:18;;:::i;:::-;9943:56;10017:29;10039:6;10017:29;:::i;:::-;10009:37;;10101:4;10095;10091:15;10083:23;;9805:308;;;:::o;10119:154::-;10203:6;10198:3;10193;10180:30;10265:1;10256:6;10251:3;10247:16;10240:27;10119:154;;;:::o;10279:412::-;10357:5;10382:66;10398:49;10440:6;10398:49;:::i;:::-;10382:66;:::i;:::-;10373:75;;10471:6;10464:5;10457:21;10509:4;10502:5;10498:16;10547:3;10538:6;10533:3;10529:16;10526:25;10523:112;;;10554:79;;:::i;:::-;10523:112;10644:41;10678:6;10673:3;10668;10644:41;:::i;:::-;10363:328;10279:412;;;;;:::o;10711:340::-;10767:5;10816:3;10809:4;10801:6;10797:17;10793:27;10783:122;;10824:79;;:::i;:::-;10783:122;10941:6;10928:20;10966:79;11041:3;11033:6;11026:4;11018:6;11014:17;10966:79;:::i;:::-;10957:88;;10773:278;10711:340;;;;:::o;11057:509::-;11126:6;11175:2;11163:9;11154:7;11150:23;11146:32;11143:119;;;11181:79;;:::i;:::-;11143:119;11329:1;11318:9;11314:17;11301:31;11359:18;11351:6;11348:30;11345:117;;;11381:79;;:::i;:::-;11345:117;11486:63;11541:7;11532:6;11521:9;11517:22;11486:63;:::i;:::-;11476:73;;11272:287;11057:509;;;;:::o;11572:468::-;11637:6;11645;11694:2;11682:9;11673:7;11669:23;11665:32;11662:119;;;11700:79;;:::i;:::-;11662:119;11820:1;11845:53;11890:7;11881:6;11870:9;11866:22;11845:53;:::i;:::-;11835:63;;11791:117;11947:2;11973:50;12015:7;12006:6;11995:9;11991:22;11973:50;:::i;:::-;11963:60;;11918:115;11572:468;;;;;:::o;12046:307::-;12107:4;12197:18;12189:6;12186:30;12183:56;;;12219:18;;:::i;:::-;12183:56;12257:29;12279:6;12257:29;:::i;:::-;12249:37;;12341:4;12335;12331:15;12323:23;;12046:307;;;:::o;12359:410::-;12436:5;12461:65;12477:48;12518:6;12477:48;:::i;:::-;12461:65;:::i;:::-;12452:74;;12549:6;12542:5;12535:21;12587:4;12580:5;12576:16;12625:3;12616:6;12611:3;12607:16;12604:25;12601:112;;;12632:79;;:::i;:::-;12601:112;12722:41;12756:6;12751:3;12746;12722:41;:::i;:::-;12442:327;12359:410;;;;;:::o;12788:338::-;12843:5;12892:3;12885:4;12877:6;12873:17;12869:27;12859:122;;12900:79;;:::i;:::-;12859:122;13017:6;13004:20;13042:78;13116:3;13108:6;13101:4;13093:6;13089:17;13042:78;:::i;:::-;13033:87;;12849:277;12788:338;;;;:::o;13132:943::-;13227:6;13235;13243;13251;13300:3;13288:9;13279:7;13275:23;13271:33;13268:120;;;13307:79;;:::i;:::-;13268:120;13427:1;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13398:117;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13682:2;13708:53;13753:7;13744:6;13733:9;13729:22;13708:53;:::i;:::-;13698:63;;13653:118;13838:2;13827:9;13823:18;13810:32;13869:18;13861:6;13858:30;13855:117;;;13891:79;;:::i;:::-;13855:117;13996:62;14050:7;14041:6;14030:9;14026:22;13996:62;:::i;:::-;13986:72;;13781:287;13132:943;;;;;;;:::o;14081:474::-;14149:6;14157;14206:2;14194:9;14185:7;14181:23;14177:32;14174:119;;;14212:79;;:::i;:::-;14174:119;14332:1;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14303:117;14459:2;14485:53;14530:7;14521:6;14510:9;14506:22;14485:53;:::i;:::-;14475:63;;14430:118;14081:474;;;;;:::o;14561:182::-;14701:34;14697:1;14689:6;14685:14;14678:58;14561:182;:::o;14749:366::-;14891:3;14912:67;14976:2;14971:3;14912:67;:::i;:::-;14905:74;;14988:93;15077:3;14988:93;:::i;:::-;15106:2;15101:3;15097:12;15090:19;;14749:366;;;:::o;15121:419::-;15287:4;15325:2;15314:9;15310:18;15302:26;;15374:9;15368:4;15364:20;15360:1;15349:9;15345:17;15338:47;15402:131;15528:4;15402:131;:::i;:::-;15394:139;;15121:419;;;:::o;15546:180::-;15594:77;15591:1;15584:88;15691:4;15688:1;15681:15;15715:4;15712:1;15705:15;15732:225;15872:34;15868:1;15860:6;15856:14;15849:58;15941:8;15936:2;15928:6;15924:15;15917:33;15732:225;:::o;15963:366::-;16105:3;16126:67;16190:2;16185:3;16126:67;:::i;:::-;16119:74;;16202:93;16291:3;16202:93;:::i;:::-;16320:2;16315:3;16311:12;16304:19;;15963:366;;;:::o;16335:419::-;16501:4;16539:2;16528:9;16524:18;16516:26;;16588:9;16582:4;16578:20;16574:1;16563:9;16559:17;16552:47;16616:131;16742:4;16616:131;:::i;:::-;16608:139;;16335:419;;;:::o;16760:180::-;16808:77;16805:1;16798:88;16905:4;16902:1;16895:15;16929:4;16926:1;16919:15;16946:233;16985:3;17008:24;17026:5;17008:24;:::i;:::-;16999:33;;17054:66;17047:5;17044:77;17041:103;;;17124:18;;:::i;:::-;17041:103;17171:1;17164:5;17160:13;17153:20;;16946:233;;;:::o;17185:180::-;17233:77;17230:1;17223:88;17330:4;17327:1;17320:15;17354:4;17351:1;17344:15;17371:320;17415:6;17452:1;17446:4;17442:12;17432:22;;17499:1;17493:4;17489:12;17520:18;17510:81;;17576:4;17568:6;17564:17;17554:27;;17510:81;17638:2;17630:6;17627:14;17607:18;17604:38;17601:84;;;17657:18;;:::i;:::-;17601:84;17422:269;17371:320;;;:::o;17697:221::-;17837:34;17833:1;17825:6;17821:14;17814:58;17906:4;17901:2;17893:6;17889:15;17882:29;17697:221;:::o;17924:366::-;18066:3;18087:67;18151:2;18146:3;18087:67;:::i;:::-;18080:74;;18163:93;18252:3;18163:93;:::i;:::-;18281:2;18276:3;18272:12;18265:19;;17924:366;;;:::o;18296:419::-;18462:4;18500:2;18489:9;18485:18;18477:26;;18549:9;18543:4;18539:20;18535:1;18524:9;18520:17;18513:47;18577:131;18703:4;18577:131;:::i;:::-;18569:139;;18296:419;;;:::o;18721:147::-;18822:11;18859:3;18844:18;;18721:147;;;;:::o;18874:114::-;;:::o;18994:398::-;19153:3;19174:83;19255:1;19250:3;19174:83;:::i;:::-;19167:90;;19266:93;19355:3;19266:93;:::i;:::-;19384:1;19379:3;19375:11;19368:18;;18994:398;;;:::o;19398:379::-;19582:3;19604:147;19747:3;19604:147;:::i;:::-;19597:154;;19768:3;19761:10;;19398:379;;;:::o;19783:173::-;19923:25;19919:1;19911:6;19907:14;19900:49;19783:173;:::o;19962:366::-;20104:3;20125:67;20189:2;20184:3;20125:67;:::i;:::-;20118:74;;20201:93;20290:3;20201:93;:::i;:::-;20319:2;20314:3;20310:12;20303:19;;19962:366;;;:::o;20334:419::-;20500:4;20538:2;20527:9;20523:18;20515:26;;20587:9;20581:4;20577:20;20573:1;20562:9;20558:17;20551:47;20615:131;20741:4;20615:131;:::i;:::-;20607:139;;20334:419;;;:::o;20759:230::-;20899:34;20895:1;20887:6;20883:14;20876:58;20968:13;20963:2;20955:6;20951:15;20944:38;20759:230;:::o;20995:366::-;21137:3;21158:67;21222:2;21217:3;21158:67;:::i;:::-;21151:74;;21234:93;21323:3;21234:93;:::i;:::-;21352:2;21347:3;21343:12;21336:19;;20995:366;;;:::o;21367:419::-;21533:4;21571:2;21560:9;21556:18;21548:26;;21620:9;21614:4;21610:20;21606:1;21595:9;21591:17;21584:47;21648:131;21774:4;21648:131;:::i;:::-;21640:139;;21367:419;;;:::o;21792:178::-;21932:30;21928:1;21920:6;21916:14;21909:54;21792:178;:::o;21976:366::-;22118:3;22139:67;22203:2;22198:3;22139:67;:::i;:::-;22132:74;;22215:93;22304:3;22215:93;:::i;:::-;22333:2;22328:3;22324:12;22317:19;;21976:366;;;:::o;22348:419::-;22514:4;22552:2;22541:9;22537:18;22529:26;;22601:9;22595:4;22591:20;22587:1;22576:9;22572:17;22565:47;22629:131;22755:4;22629:131;:::i;:::-;22621:139;;22348:419;;;:::o;22773:224::-;22913:34;22909:1;22901:6;22897:14;22890:58;22982:7;22977:2;22969:6;22965:15;22958:32;22773:224;:::o;23003:366::-;23145:3;23166:67;23230:2;23225:3;23166:67;:::i;:::-;23159:74;;23242:93;23331:3;23242:93;:::i;:::-;23360:2;23355:3;23351:12;23344:19;;23003:366;;;:::o;23375:419::-;23541:4;23579:2;23568:9;23564:18;23556:26;;23628:9;23622:4;23618:20;23614:1;23603:9;23599:17;23592:47;23656:131;23782:4;23656:131;:::i;:::-;23648:139;;23375:419;;;:::o;23800:305::-;23840:3;23859:20;23877:1;23859:20;:::i;:::-;23854:25;;23893:20;23911:1;23893:20;:::i;:::-;23888:25;;24047:1;23979:66;23975:74;23972:1;23969:81;23966:107;;;24053:18;;:::i;:::-;23966:107;24097:1;24094;24090:9;24083:16;;23800:305;;;;:::o;24111:173::-;24251:25;24247:1;24239:6;24235:14;24228:49;24111:173;:::o;24290:366::-;24432:3;24453:67;24517:2;24512:3;24453:67;:::i;:::-;24446:74;;24529:93;24618:3;24529:93;:::i;:::-;24647:2;24642:3;24638:12;24631:19;;24290:366;;;:::o;24662:419::-;24828:4;24866:2;24855:9;24851:18;24843:26;;24915:9;24909:4;24905:20;24901:1;24890:9;24886:17;24879:47;24943:131;25069:4;24943:131;:::i;:::-;24935:139;;24662:419;;;:::o;25087:191::-;25127:4;25147:20;25165:1;25147:20;:::i;:::-;25142:25;;25181:20;25199:1;25181:20;:::i;:::-;25176:25;;25220:1;25217;25214:8;25211:34;;;25225:18;;:::i;:::-;25211:34;25270:1;25267;25263:9;25255:17;;25087:191;;;;:::o;25284:179::-;25424:31;25420:1;25412:6;25408:14;25401:55;25284:179;:::o;25469:366::-;25611:3;25632:67;25696:2;25691:3;25632:67;:::i;:::-;25625:74;;25708:93;25797:3;25708:93;:::i;:::-;25826:2;25821:3;25817:12;25810:19;;25469:366;;;:::o;25841:419::-;26007:4;26045:2;26034:9;26030:18;26022:26;;26094:9;26088:4;26084:20;26080:1;26069:9;26065:17;26058:47;26122:131;26248:4;26122:131;:::i;:::-;26114:139;;25841:419;;;:::o;26266:348::-;26306:7;26329:20;26347:1;26329:20;:::i;:::-;26324:25;;26363:20;26381:1;26363:20;:::i;:::-;26358:25;;26551:1;26483:66;26479:74;26476:1;26473:81;26468:1;26461:9;26454:17;26450:105;26447:131;;;26558:18;;:::i;:::-;26447:131;26606:1;26603;26599:9;26588:20;;26266:348;;;;:::o;26620:169::-;26760:21;26756:1;26748:6;26744:14;26737:45;26620:169;:::o;26795:366::-;26937:3;26958:67;27022:2;27017:3;26958:67;:::i;:::-;26951:74;;27034:93;27123:3;27034:93;:::i;:::-;27152:2;27147:3;27143:12;27136:19;;26795:366;;;:::o;27167:419::-;27333:4;27371:2;27360:9;27356:18;27348:26;;27420:9;27414:4;27410:20;27406:1;27395:9;27391:17;27384:47;27448:131;27574:4;27448:131;:::i;:::-;27440:139;;27167:419;;;:::o;27592:234::-;27732:34;27728:1;27720:6;27716:14;27709:58;27801:17;27796:2;27788:6;27784:15;27777:42;27592:234;:::o;27832:366::-;27974:3;27995:67;28059:2;28054:3;27995:67;:::i;:::-;27988:74;;28071:93;28160:3;28071:93;:::i;:::-;28189:2;28184:3;28180:12;28173:19;;27832:366;;;:::o;28204:419::-;28370:4;28408:2;28397:9;28393:18;28385:26;;28457:9;28451:4;28447:20;28443:1;28432:9;28428:17;28421:47;28485:131;28611:4;28485:131;:::i;:::-;28477:139;;28204:419;;;:::o;28629:148::-;28731:11;28768:3;28753:18;;28629:148;;;;:::o;28783:377::-;28889:3;28917:39;28950:5;28917:39;:::i;:::-;28972:89;29054:6;29049:3;28972:89;:::i;:::-;28965:96;;29070:52;29115:6;29110:3;29103:4;29096:5;29092:16;29070:52;:::i;:::-;29147:6;29142:3;29138:16;29131:23;;28893:267;28783:377;;;;:::o;29166:141::-;29215:4;29238:3;29230:11;;29261:3;29258:1;29251:14;29295:4;29292:1;29282:18;29274:26;;29166:141;;;:::o;29337:845::-;29440:3;29477:5;29471:12;29506:36;29532:9;29506:36;:::i;:::-;29558:89;29640:6;29635:3;29558:89;:::i;:::-;29551:96;;29678:1;29667:9;29663:17;29694:1;29689:137;;;;29840:1;29835:341;;;;29656:520;;29689:137;29773:4;29769:9;29758;29754:25;29749:3;29742:38;29809:6;29804:3;29800:16;29793:23;;29689:137;;29835:341;29902:38;29934:5;29902:38;:::i;:::-;29962:1;29976:154;29990:6;29987:1;29984:13;29976:154;;;30064:7;30058:14;30054:1;30049:3;30045:11;30038:35;30114:1;30105:7;30101:15;30090:26;;30012:4;30009:1;30005:12;30000:17;;29976:154;;;30159:6;30154:3;30150:16;30143:23;;29842:334;;29656:520;;29444:738;;29337:845;;;;:::o;30188:589::-;30413:3;30435:95;30526:3;30517:6;30435:95;:::i;:::-;30428:102;;30547:95;30638:3;30629:6;30547:95;:::i;:::-;30540:102;;30659:92;30747:3;30738:6;30659:92;:::i;:::-;30652:99;;30768:3;30761:10;;30188:589;;;;;;:::o;30783:225::-;30923:34;30919:1;30911:6;30907:14;30900:58;30992:8;30987:2;30979:6;30975:15;30968:33;30783:225;:::o;31014:366::-;31156:3;31177:67;31241:2;31236:3;31177:67;:::i;:::-;31170:74;;31253:93;31342:3;31253:93;:::i;:::-;31371:2;31366:3;31362:12;31355:19;;31014:366;;;:::o;31386:419::-;31552:4;31590:2;31579:9;31575:18;31567:26;;31639:9;31633:4;31629:20;31625:1;31614:9;31610:17;31603:47;31667:131;31793:4;31667:131;:::i;:::-;31659:139;;31386:419;;;:::o;31811:98::-;31862:6;31896:5;31890:12;31880:22;;31811:98;;;:::o;31915:168::-;31998:11;32032:6;32027:3;32020:19;32072:4;32067:3;32063:14;32048:29;;31915:168;;;;:::o;32089:360::-;32175:3;32203:38;32235:5;32203:38;:::i;:::-;32257:70;32320:6;32315:3;32257:70;:::i;:::-;32250:77;;32336:52;32381:6;32376:3;32369:4;32362:5;32358:16;32336:52;:::i;:::-;32413:29;32435:6;32413:29;:::i;:::-;32408:3;32404:39;32397:46;;32179:270;32089:360;;;;:::o;32455:640::-;32650:4;32688:3;32677:9;32673:19;32665:27;;32702:71;32770:1;32759:9;32755:17;32746:6;32702:71;:::i;:::-;32783:72;32851:2;32840:9;32836:18;32827:6;32783:72;:::i;:::-;32865;32933:2;32922:9;32918:18;32909:6;32865:72;:::i;:::-;32984:9;32978:4;32974:20;32969:2;32958:9;32954:18;32947:48;33012:76;33083:4;33074:6;33012:76;:::i;:::-;33004:84;;32455:640;;;;;;;:::o;33101:141::-;33157:5;33188:6;33182:13;33173:22;;33204:32;33230:5;33204:32;:::i;:::-;33101:141;;;;:::o;33248:349::-;33317:6;33366:2;33354:9;33345:7;33341:23;33337:32;33334:119;;;33372:79;;:::i;:::-;33334:119;33492:1;33517:63;33572:7;33563:6;33552:9;33548:22;33517:63;:::i;:::-;33507:73;;33463:127;33248:349;;;;:::o;33603:180::-;33651:77;33648:1;33641:88;33748:4;33745:1;33738:15;33772:4;33769:1;33762:15;33789:185;33829:1;33846:20;33864:1;33846:20;:::i;:::-;33841:25;;33880:20;33898:1;33880:20;:::i;:::-;33875:25;;33919:1;33909:35;;33924:18;;:::i;:::-;33909:35;33966:1;33963;33959:9;33954:14;;33789:185;;;;:::o;33980:176::-;34012:1;34029:20;34047:1;34029:20;:::i;:::-;34024:25;;34063:20;34081:1;34063:20;:::i;:::-;34058:25;;34102:1;34092:35;;34107:18;;:::i;:::-;34092:35;34148:1;34145;34141:9;34136:14;;33980:176;;;;:::o

Swarm Source

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