ETH Price: $2,966.73 (-1.78%)
Gas: 2 Gwei

Token

DAPE (DAPE)
 

Overview

Max Total Supply

2,444 DAPE

Holders

933

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
0 DAPE
0xd5a6c61f02e4212dec386f09c1670bdb300690e9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A genesis collection of 2444 minimal styled DAPEs on the blockchain. Culturally styled traits, inspired and driven by the community.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DAPE

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes 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/Address.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// 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: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // 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) private _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;

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

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

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

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

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > currentIndex - 1) {
            endIndex = currentIndex - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp);
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/DAPE.sol



pragma solidity ^0.8.0;





contract DAPE is Ownable, ERC721A, ReentrancyGuard {
  string public uriPrefix = "";
  string public constant uriSuffix = ".json";
  string public hiddenMetadataUri;
  uint256 public collectionSize = 8888;
  uint256 public auctionStartPrice;
  uint256 public maxPerAddressDuringMint = 4;
  bool public revealed = false;

  // number of items to include in auction and for giveaways
  uint256 public amountForAuctionAndDev = 6655;

  // used for giveaways
  uint256 public amountForDevs = 144;

  struct SaleConfig {
    uint32 allowListSaleStartTime;
    uint32 auctionSaleStartTime;
    uint32 publicSaleStartTime;
    uint64 mintlistPrice;
    uint64 publicPrice;
  }

  SaleConfig public saleConfig;

  mapping(address => uint256) public allowlist;
 
  // Name, Symbol, Max batch size, collection size.
  constructor() ERC721A("DAPE", "DAPE", maxPerAddressDuringMint) {
    require(
       amountForAuctionAndDev <= collectionSize,
       "larger collection size needed"
     );
    require (
      amountForDevs % maxPerAddressDuringMint == 0,
      "dev mints must be multiple of maxbatchsize"
    );
    setHiddenMetadataUri("ipfs://__CID__/hidden.json");
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  // REGION - Mint functions and helpers  
  function auctionMint(uint256 quantity) external payable callerIsUser {
    uint256 _saleStartTime = uint256(saleConfig.auctionSaleStartTime);
    require(
      _saleStartTime != 0 && block.timestamp >= _saleStartTime,
      "auction sale has not started yet"
    );
    require(
      totalSupply() + quantity <= amountForAuctionAndDev,
      "not enough remaining reserved for auction to support desired mint amount"
    );
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    uint256 totalCost = getAuctionPrice(_saleStartTime) * quantity;
    refundIfOver(totalCost);
    _safeMint(msg.sender, quantity);
  }

  function publicSaleMint(uint256 quantity)
    external
    payable
    callerIsUser
  {
    SaleConfig memory config = saleConfig;
    uint256 publicPrice = uint256(config.publicPrice);
    uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);

    require(
      isPublicSaleOn(publicPrice, publicSaleStartTime),
      "public sale has not begun yet"
    );
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    refundIfOver(publicPrice * quantity);
    _safeMint(msg.sender, quantity);
  }

  function allowlistMint() external payable callerIsUser {
    uint256 _allowListStartTime = uint256(saleConfig.allowListSaleStartTime);
    require(
      _allowListStartTime != 0 && block.timestamp >= _allowListStartTime,
      "white list sale has not begun yet or has ended"
    );
    uint256 price = uint256(saleConfig.mintlistPrice);
    require(price != 0, "white list sale has not begun yet or has ended");
    require(allowlist[msg.sender] > 0, "not eligible for white list mint");
    require(totalSupply() + 1 <= collectionSize, "reached max supply");
    if (allowlist[msg.sender] == 1) {
      delete allowlist[msg.sender];
    } else {
      allowlist[msg.sender]--;
    }
    refundIfOver(price);
    _safeMint(msg.sender, 1);
  }

   function refundIfOver(uint256 price) private {
    require(msg.value >= price, "Need to send more ETH.");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }

  function isPublicSaleOn(
    uint256 publicPriceWei,
    uint256 publicSaleStartTime
  ) public view returns (bool) {
    return
      publicPriceWei != 0 &&
      block.timestamp >= publicSaleStartTime;
  }

  function isAllowListSaleOn()
    public view returns (bool) {

    uint256 _allowListStartTime = uint256(saleConfig.allowListSaleStartTime);
    return _allowListStartTime != 0 && block.timestamp >= _allowListStartTime;
  }

   // Mint for marketing and giveaways
  function devMint(uint256 quantity) external onlyOwner {
    require(
      totalSupply() + quantity <= amountForDevs,
      "too many already minted before dev mint"
    );
    require(
      quantity % maxBatchSize == 0,
      "can only mint a multiple of the maxBatchSize"
    );
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }
 
  uint256 public constant AUCTION_END_PRICE = 0.3 ether;
  uint256 public constant AUCTION_DROP_INTERVAL = 10 minutes;
  uint256 public constant AUCTION_DROP_PER_STEP = 0.05 ether;

   function getAuctionPrice(uint256 _saleStartTime)
    public
    view
    returns (uint256)
  {
    if (block.timestamp < _saleStartTime) {
      return auctionStartPrice;
    }
    uint256 auctionCurveLength = getAuctionCurveLength();
    if (block.timestamp - _saleStartTime >= auctionCurveLength) {
      return AUCTION_END_PRICE;
    } else {
      uint256 steps = (block.timestamp - _saleStartTime) /
        AUCTION_DROP_INTERVAL;
      return auctionStartPrice - (steps * AUCTION_DROP_PER_STEP);
    }
  }

  function endAuctionAndSetupNonAuctionSaleInfo(
    uint64 mintlistPriceWei,
    uint64 publicPriceWei,
    uint32 publicSaleStartTime
  ) external onlyOwner {
    saleConfig = SaleConfig(
      0, //allow list sale start time
      0, //auction sale start time
      publicSaleStartTime,
      mintlistPriceWei,
      publicPriceWei
    );
  }

  function getAuctionCurveLength(
  ) public view returns (uint256) {
    return
      ((auctionStartPrice - AUCTION_END_PRICE) * AUCTION_DROP_INTERVAL) /
      AUCTION_DROP_PER_STEP;
  }

  function setAuctionStartPrice(
    uint256 startPriceWei
  ) external onlyOwner {
    auctionStartPrice = startPriceWei;
  }

  function setMintListPrice(
    uint64 mintListPriceWei
  ) external onlyOwner {
    saleConfig.mintlistPrice = mintListPriceWei;
  }

  function setAllowListSaleStartTime(uint32 timestamp) external onlyOwner {
    saleConfig.allowListSaleStartTime = timestamp;
  }

  function setAuctionSaleStartTime(uint32 timestamp) external onlyOwner {
    saleConfig.auctionSaleStartTime = timestamp;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function seedAllowlist(address[] memory addresses, uint256[] memory numSlots)
    external
    onlyOwner
  {
    require(
      addresses.length == numSlots.length,
      "addresses does not match numSlots length"
    );
    for (uint256 i = 0; i < addresses.length; i++) {
      allowlist[addresses[i]] = numSlots[i];
    }
  }

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

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

      string memory currentBaseURI = _baseURI();
      return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, Strings.toString(tokenId), uriSuffix))
        : "";
    }

  // metadata URI
  string private _baseTokenURI;

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

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

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AUCTION_DROP_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AUCTION_DROP_PER_STEP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AUCTION_END_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"amountForAuctionAndDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","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":"uint256","name":"quantity","type":"uint256"}],"name":"auctionMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"auctionStartPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"mintlistPriceWei","type":"uint64"},{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"name":"endAuctionAndSetupNonAuctionSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAuctionCurveLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartTime","type":"uint256"}],"name":"getAuctionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"publicPriceWei","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"allowListSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"auctionSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"mintlistPrice","type":"uint64"},{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"}],"name":"setAllowListSaleStartTime","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":"uint32","name":"timestamp","type":"uint32"}],"name":"setAuctionSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startPriceWei","type":"uint256"}],"name":"setAuctionStartPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"mintListPriceWei","type":"uint64"}],"name":"setMintListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60006001819055600881905560c0604081905260a08290526200002691600a919062000320565b506122b8600c556004600e55600f805460ff191690556119ff60105560906011553480156200005457600080fd5b50604051806040016040528060048152602001634441504560e01b815250604051806040016040528060048152602001634441504560e01b815250600e54620000ac620000a66200025760201b60201c565b6200025b565b60008111620001125760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b82516200012790600290602086019062000320565b5081516200013d90600390602085019062000320565b5060805250506001600955600c5460105411156200019e5760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604482015260640162000109565b600e54601154620001b0919062000403565b15620002125760405162461bcd60e51b815260206004820152602a60248201527f646576206d696e7473206d757374206265206d756c7469706c65206f66206d6160448201526978626174636873697a6560b01b606482015260840162000109565b60408051808201909152601a81527f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e00000000000060208201526200025190620002ab565b62000426565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620003075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000109565b80516200031c90600b90602084019062000320565b5050565b8280546200032e90620003c6565b90600052602060002090601f0160209004810192826200035257600085556200039d565b82601f106200036d57805160ff19168380011785556200039d565b828001600101855582156200039d579182015b828111156200039d57825182559160200191906001019062000380565b50620003ab929150620003af565b5090565b5b80821115620003ab5760008155600101620003b0565b600181811c90821680620003db57607f821691505b60208210811415620003fd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000826200042157634e487b7160e01b600052601260045260246000fd5b500690565b60805161385e62000465600039600081816110be0152818161114c0152818161118401528181612746015281816127700152612c31015261385e6000f3fe6080604052600436106103505760003560e01c806363e53ebc116101c6578063ac446002116100f7578063d756985b11610095578063e985e9c51161006f578063e985e9c5146109c8578063eab13b5414610a11578063f2fde38b14610a31578063fbe1aa5114610a5157600080fd5b8063d756985b14610972578063dbcad76f14610988578063dc33e681146109a857600080fd5b8063b88d4fde116100d1578063b88d4fde14610900578063c87b56dd14610920578063caf8a6d114610940578063d7224ba01461095c57600080fd5b8063ac446002146108b8578063b05863d5146108cd578063b3ab66b0146108ed57600080fd5b8063917d009e11610164578063a22cb4651161013e578063a22cb46514610841578063a45ba8e714610861578063a475b5dd14610876578063a7cd52cb1461088b57600080fd5b8063917d009e146107bf5780639231ab2a146107df57806395d89b411461082c57600080fd5b8063715018a6116101a0578063715018a6146106e75780638bc35c2f146106fc5780638da5cb5b1461071257806390aa0b0f1461073057600080fd5b806363e53ebc146106875780636ebc5601146106a757806370a08231146106c757600080fd5b806342842e0e116102a05780635503a0e81161023e57806359f369fe1161021857806359f369fe146106215780635cae01d31461063c57806362b99ad4146106525780636352211e1461066757600080fd5b80635503a0e8146105ba57806355f804b3146105eb5780635666c8801461060b57600080fd5b80634f01c5331161027a5780634f01c5331461054b5780634f6ccce7146105605780634fdd43cb1461058057806351830227146105a057600080fd5b806342842e0e1461050257806345c0f533146105225780634d3554c31461053857600080fd5b80631f4039f91161030d5780632f745c59116102e75780632f745c591461049a578063375a069a146104ba5780634150b2f2146104da57806341fbddbd146104fa57600080fd5b80631f4039f91461044557806323b872dd1461045a5780632d20fb601461047a57600080fd5b806301ffc9a71461035557806306fdde031461038a578063081812fc146103ac578063095ea7b3146103e457806316e6e15a1461040657806318160ddd14610426575b600080fd5b34801561036157600080fd5b50610375610370366004613298565b610a67565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b5061039f610ad4565b60405161038191906134eb565b3480156103b857600080fd5b506103cc6103c736600461338b565b610b66565b6040516001600160a01b039091168152602001610381565b3480156103f057600080fd5b506104046103ff3660046131a8565b610bf6565b005b34801561041257600080fd5b506104046104213660046133fc565b610d0e565b34801561043257600080fd5b506001545b604051908152602001610381565b34801561045157600080fd5b50610437610dc8565b34801561046657600080fd5b506104046104753660046130b5565b610e04565b34801561048657600080fd5b5061040461049536600461338b565b610e0f565b3480156104a657600080fd5b506104376104b53660046131a8565b610ea2565b3480156104c657600080fd5b506104046104d536600461338b565b61101a565b3480156104e657600080fd5b506104046104f53660046133e1565b6111ba565b610404611211565b34801561050e57600080fd5b5061040461051d3660046130b5565b6113aa565b34801561052e57600080fd5b50610437600c5481565b61040461054636600461338b565b6113c5565b34801561055757600080fd5b50610375611575565b34801561056c57600080fd5b5061043761057b36600461338b565b611596565b34801561058c57600080fd5b5061040461059b366004613343565b6115ff565b3480156105ac57600080fd5b50600f546103759060ff1681565b3480156105c657600080fd5b5061039f60405180604001604052806005815260200164173539b7b760d91b81525081565b3480156105f757600080fd5b506104046106063660046132d2565b61163c565b34801561061757600080fd5b5061043760105481565b34801561062d57600080fd5b5061043766b1a2bc2ec5000081565b34801561064857600080fd5b5061043761025881565b34801561065e57600080fd5b5061039f611672565b34801561067357600080fd5b506103cc61068236600461338b565b611700565b34801561069357600080fd5b506104046106a23660046133c6565b611712565b3480156106b357600080fd5b506104046106c23660046133c6565b611758565b3480156106d357600080fd5b506104376106e2366004613067565b6117aa565b3480156106f357600080fd5b5061040461183b565b34801561070857600080fd5b50610437600e5481565b34801561071e57600080fd5b506000546001600160a01b03166103cc565b34801561073c57600080fd5b5060125461077e9063ffffffff808216916401000000008104821691600160401b820416906001600160401b03600160601b8204811691600160a01b90041685565b6040805163ffffffff9687168152948616602086015292909416918301919091526001600160401b039081166060830152909116608082015260a001610381565b3480156107cb57600080fd5b506104376107da36600461338b565b611871565b3480156107eb57600080fd5b506107ff6107fa36600461338b565b6118f6565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610381565b34801561083857600080fd5b5061039f611913565b34801561084d57600080fd5b5061040461085c36600461316c565b611922565b34801561086d57600080fd5b5061039f6119e7565b34801561088257600080fd5b506104046119f4565b34801561089757600080fd5b506104376108a6366004613067565b60136020526000908152604090205481565b3480156108c457600080fd5b50610404611a2d565b3480156108d957600080fd5b506104046108e83660046131d2565b611b3a565b6104046108fb36600461338b565b611c41565b34801561090c57600080fd5b5061040461091b3660046130f1565b611dec565b34801561092c57600080fd5b5061039f61093b36600461338b565b611e1f565b34801561094c57600080fd5b50610437670429d069189e000081565b34801561096857600080fd5b5061043760085481565b34801561097e57600080fd5b50610437600d5481565b34801561099457600080fd5b506103756109a33660046133a4565b611fa8565b3480156109b457600080fd5b506104376109c3366004613067565b611fbd565b3480156109d457600080fd5b506103756109e3366004613082565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a1d57600080fd5b50610404610a2c36600461338b565b611fc8565b348015610a3d57600080fd5b50610404610a4c366004613067565b611ff7565b348015610a5d57600080fd5b5061043760115481565b60006001600160e01b031982166380ac58cd60e01b1480610a9857506001600160e01b03198216635b5e139f60e01b145b80610ab357506001600160e01b0319821663780e9d6360e01b145b80610ace57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610ae390613756565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0f90613756565b8015610b5c5780601f10610b3157610100808354040283529160200191610b5c565b820191906000526020600020905b815481529060010190602001808311610b3f57829003601f168201915b5050505050905090565b6000610b73826001541190565b610bda5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c0182611700565b9050806001600160a01b0316836001600160a01b03161415610c705760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bd1565b336001600160a01b0382161480610c8c5750610c8c81336109e3565b610cfe5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bd1565b610d09838383612092565b505050565b6000546001600160a01b03163314610d385760405162461bcd60e51b8152600401610bd190613583565b6040805160a0810182526000808252602082015263ffffffff929092169082018190526001600160401b0393841660608301819052929093166080909101819052601280546001600160a01b031916600160401b90940267ffffffffffffffff60601b191693909317600160601b9092029190911767ffffffffffffffff60a01b1916600160a01b909102179055565b600066b1a2bc2ec50000610258670429d069189e0000600d54610deb91906136fc565b610df591906136b5565b610dff91906136a1565b905090565b610d098383836120ee565b6000546001600160a01b03163314610e395760405162461bcd60e51b8152600401610bd190613583565b60026009541415610e8c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bd1565b6002600955610e9a81612474565b506001600955565b6000610ead836117aa565b8210610f065760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bd1565b6000610f1160015490565b905060008060005b83811015610fba576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610f6b57805192505b876001600160a01b0316836001600160a01b03161415610fa75786841415610f9957509350610ace92505050565b83610fa38161378b565b9450505b5080610fb28161378b565b915050610f19565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bd1565b6000546001600160a01b031633146110445760405162461bcd60e51b8152600401610bd190613583565b6011548161105160015490565b61105b9190613689565b11156110b95760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610bd1565b6110e37f0000000000000000000000000000000000000000000000000000000000000000826137a6565b156111455760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610bd1565b60006111717f0000000000000000000000000000000000000000000000000000000000000000836136a1565b905060005b81811015610d09576111a8337f0000000000000000000000000000000000000000000000000000000000000000612623565b806111b28161378b565b915050611176565b6000546001600160a01b031633146111e45760405162461bcd60e51b8152600401610bd190613583565b601280546001600160401b03909216600160601b0267ffffffffffffffff60601b19909216919091179055565b3233146112305760405162461bcd60e51b8152600401610bd19061354c565b60125463ffffffff1680158015906112485750804210155b6112645760405162461bcd60e51b8152600401610bd1906134fe565b601254600160601b90046001600160401b0316806112945760405162461bcd60e51b8152600401610bd1906134fe565b336000908152601360205260409020546112f05760405162461bcd60e51b815260206004820181905260248201527f6e6f7420656c696769626c6520666f72207768697465206c697374206d696e746044820152606401610bd1565b600c54600154611301906001613689565b11156113445760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610bd1565b33600090815260136020526040902054600114156113715733600090815260136020526040812055611392565b33600090815260136020526040812080549161138c8361373f565b91905055505b61139b8161263d565b6113a6336001612623565b5050565b610d0983838360405180602001604052806000815250611dec565b3233146113e45760405162461bcd60e51b8152600401610bd19061354c565b601254640100000000900463ffffffff1680158015906114045750804210155b6114505760405162461bcd60e51b815260206004820181905260248201527f61756374696f6e2073616c6520686173206e6f742073746172746564207965746044820152606401610bd1565b6010548261145d60015490565b6114679190613689565b11156114ec5760405162461bcd60e51b815260206004820152604860248201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60448201527f722061756374696f6e20746f20737570706f72742064657369726564206d696e6064820152671d08185b5bdd5b9d60c21b608482015260a401610bd1565b600e54826114f933611fbd565b6115039190613689565b111561154a5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610bd1565b60008261155683611871565b61156091906136b5565b905061156b8161263d565b610d093384612623565b60125460009063ffffffff1680158015906115905750804210155b91505090565b60006115a160015490565b82106115fb5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bd1565b5090565b6000546001600160a01b031633146116295760405162461bcd60e51b8152600401610bd190613583565b80516113a690600b906020840190612e4e565b6000546001600160a01b031633146116665760405162461bcd60e51b8152600401610bd190613583565b610d0960148383612ece565b600a805461167f90613756565b80601f01602080910402602001604051908101604052809291908181526020018280546116ab90613756565b80156116f85780601f106116cd576101008083540402835291602001916116f8565b820191906000526020600020905b8154815290600101906020018083116116db57829003601f168201915b505050505081565b600061170b826126c4565b5192915050565b6000546001600160a01b0316331461173c5760405162461bcd60e51b8152600401610bd190613583565b6012805463ffffffff191663ffffffff92909216919091179055565b6000546001600160a01b031633146117825760405162461bcd60e51b8152600401610bd190613583565b6012805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b60006001600160a01b0382166118165760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bd1565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146118655760405162461bcd60e51b8152600401610bd190613583565b61186f600061286d565b565b600081421015611883575050600d5490565b600061188d610dc8565b90508061189a84426136fc565b106118af5750670429d069189e000092915050565b60006102586118be85426136fc565b6118c891906136a1565b90506118db66b1a2bc2ec50000826136b5565b600d546118e891906136fc565b949350505050565b50919050565b6040805180820190915260008082526020820152610ace826126c4565b606060038054610ae390613756565b6001600160a01b03821633141561197b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bd1565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b805461167f90613756565b6000546001600160a01b03163314611a1e5760405162461bcd60e51b8152600401610bd190613583565b600f805460ff19166001179055565b6000546001600160a01b03163314611a575760405162461bcd60e51b8152600401610bd190613583565b60026009541415611aaa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bd1565b6002600955604051600090339047908381818185875af1925050503d8060008114611af1576040519150601f19603f3d011682016040523d82523d6000602084013e611af6565b606091505b5050905080610e9a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610bd1565b6000546001600160a01b03163314611b645760405162461bcd60e51b8152600401610bd190613583565b8051825114611bc65760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610bd1565b60005b8251811015610d0957818181518110611be457611be46137e6565b602002602001015160136000858481518110611c0257611c026137e6565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611c399061378b565b915050611bc9565b323314611c605760405162461bcd60e51b8152600401610bd19061354c565b6040805160a08101825260125463ffffffff8082168352640100000000820481166020840152600160401b8204169282018390526001600160401b03600160601b820481166060840152600160a01b90910416608082018190529091611cc68282611fa8565b611d125760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610bd1565b600c5484611d1f60015490565b611d299190613689565b1115611d6c5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610bd1565b600e5484611d7933611fbd565b611d839190613689565b1115611dca5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610bd1565b611ddc611dd785846136b5565b61263d565b611de63385612623565b50505050565b611df78484846120ee565b611e03848484846128bd565b611de65760405162461bcd60e51b8152600401610bd1906135b8565b6060611e2c826001541190565b611e915760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba30b73a103a37b5b2b760811b6064820152608401610bd1565b600f5460ff16611f2d57600b8054611ea890613756565b80601f0160208091040260200160405190810160405280929190818152602001828054611ed490613756565b8015611f215780601f10611ef657610100808354040283529160200191611f21565b820191906000526020600020905b815481529060010190602001808311611f0457829003601f168201915b50505050509050919050565b6000611f376129ca565b90506000815111611f575760405180602001604052806000815250611fa1565b80611f61846129d9565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001611f919392919061346b565b6040516020818303038152906040525b9392505050565b60008215801590611fa1575050421015919050565b6000610ace82612ad6565b6000546001600160a01b03163314611ff25760405162461bcd60e51b8152600401610bd190613583565b600d55565b6000546001600160a01b031633146120215760405162461bcd60e51b8152600401610bd190613583565b6001600160a01b0381166120865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd1565b61208f8161286d565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006120f9826126c4565b80519091506000906001600160a01b0316336001600160a01b0316148061213057503361212584610b66565b6001600160a01b0316145b806121425750815161214290336109e3565b9050806121ac5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bd1565b846001600160a01b031682600001516001600160a01b0316146122205760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bd1565b6001600160a01b0384166122845760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bd1565b6122946000848460000151612092565b6001600160a01b03851660009081526005602052604081208054600192906122c69084906001600160801b03166136d4565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926123129185911661365e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612399846001613689565b6000818152600460205260409020549091506001600160a01b031661242a576123c3816001541190565b1561242a5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816124c45760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610bd1565b600060016124d28484613689565b6124dc91906136fc565b9050600180546124ec91906136fc565b811115612504576001805461250191906136fc565b90505b61250f816001541190565b61256a5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610bd1565b815b81811161260f576000818152600460205260409020546001600160a01b03166125fd57600061259a826126c4565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806126078161378b565b91505061256c565b5061261b816001613689565b600855505050565b6113a6828260405180602001604052806000815250612b74565b803410156126865760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610bd1565b8034111561208f57336108fc61269c83346136fc565b6040518115909202916000818181858888f193505050501580156113a6573d6000803e3d6000fd5b60408051808201909152600080825260208201526126e3826001541190565b6127425760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610bd1565b60007f000000000000000000000000000000000000000000000000000000000000000083106127a3576127957f0000000000000000000000000000000000000000000000000000000000000000846136fc565b6127a0906001613689565b90505b825b81811061280c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156127f957949350505050565b50806128048161373f565b9150506127a5565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bd1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156129bf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129019033908990889088906004016134ae565b602060405180830381600087803b15801561291b57600080fd5b505af192505050801561294b575060408051601f3d908101601f19168201909252612948918101906132b5565b60015b6129a5573d808015612979576040519150601f19603f3d011682016040523d82523d6000602084013e61297e565b606091505b50805161299d5760405162461bcd60e51b8152600401610bd1906135b8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118e8565b506001949350505050565b606060148054610ae390613756565b6060816129fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a275780612a118161378b565b9150612a209050600a836136a1565b9150612a01565b6000816001600160401b03811115612a4157612a416137fc565b6040519080825280601f01601f191660200182016040528015612a6b576020820181803683370190505b5090505b84156118e857612a806001836136fc565b9150612a8d600a866137a6565b612a98906030613689565b60f81b818381518110612aad57612aad6137e6565b60200101906001600160f81b031916908160001a905350612acf600a866136a1565b9450612a6f565b60006001600160a01b038216612b485760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bd1565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416612bd75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bd1565b612be2816001541190565b15612c2f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bd1565b7f0000000000000000000000000000000000000000000000000000000000000000831115612caa5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bd1565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612d0690879061365e565b6001600160801b03168152602001858360200151612d24919061365e565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612e435760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612e0760008884886128bd565b612e235760405162461bcd60e51b8152600401610bd1906135b8565b81612e2d8161378b565b9250508080612e3b9061378b565b915050612dba565b50600181905561246c565b828054612e5a90613756565b90600052602060002090601f016020900481019282612e7c5760008555612ec2565b82601f10612e9557805160ff1916838001178555612ec2565b82800160010185558215612ec2579182015b82811115612ec2578251825591602001919060010190612ea7565b506115fb929150612f42565b828054612eda90613756565b90600052602060002090601f016020900481019282612efc5760008555612ec2565b82601f10612f155782800160ff19823516178555612ec2565b82800160010185558215612ec2579182015b82811115612ec2578235825591602001919060010190612f27565b5b808211156115fb5760008155600101612f43565b60006001600160401b03831115612f7057612f706137fc565b612f83601f8401601f191660200161360b565b9050828152838383011115612f9757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612fc557600080fd5b919050565b600082601f830112612fdb57600080fd5b81356020612ff0612feb8361363b565b61360b565b80838252828201915082860187848660051b890101111561301057600080fd5b60005b8581101561302f57813584529284019290840190600101613013565b5090979650505050505050565b803563ffffffff81168114612fc557600080fd5b80356001600160401b0381168114612fc557600080fd5b60006020828403121561307957600080fd5b611fa182612fae565b6000806040838503121561309557600080fd5b61309e83612fae565b91506130ac60208401612fae565b90509250929050565b6000806000606084860312156130ca57600080fd5b6130d384612fae565b92506130e160208501612fae565b9150604084013590509250925092565b6000806000806080858703121561310757600080fd5b61311085612fae565b935061311e60208601612fae565b92506040850135915060608501356001600160401b0381111561314057600080fd5b8501601f8101871361315157600080fd5b61316087823560208401612f57565b91505092959194509250565b6000806040838503121561317f57600080fd5b61318883612fae565b91506020830135801515811461319d57600080fd5b809150509250929050565b600080604083850312156131bb57600080fd5b6131c483612fae565b946020939093013593505050565b600080604083850312156131e557600080fd5b82356001600160401b03808211156131fc57600080fd5b818501915085601f83011261321057600080fd5b81356020613220612feb8361363b565b8083825282820191508286018a848660051b890101111561324057600080fd5b600096505b8487101561326a5761325681612fae565b835260019690960195918301918301613245565b509650508601359250508082111561328157600080fd5b5061328e85828601612fca565b9150509250929050565b6000602082840312156132aa57600080fd5b8135611fa181613812565b6000602082840312156132c757600080fd5b8151611fa181613812565b600080602083850312156132e557600080fd5b82356001600160401b03808211156132fc57600080fd5b818501915085601f83011261331057600080fd5b81358181111561331f57600080fd5b86602082850101111561333157600080fd5b60209290920196919550909350505050565b60006020828403121561335557600080fd5b81356001600160401b0381111561336b57600080fd5b8201601f8101841361337c57600080fd5b6118e884823560208401612f57565b60006020828403121561339d57600080fd5b5035919050565b600080604083850312156133b757600080fd5b50508035926020909101359150565b6000602082840312156133d857600080fd5b611fa18261303c565b6000602082840312156133f357600080fd5b611fa182613050565b60008060006060848603121561341157600080fd5b61341a84613050565b925061342860208501613050565b91506134366040850161303c565b90509250925092565b60008151808452613457816020860160208601613713565b601f01601f19169290920160200192915050565b6000845161347d818460208901613713565b845190830190613491818360208901613713565b84519101906134a4818360208801613713565b0195945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134e19083018461343f565b9695505050505050565b602081526000611fa1602083018461343f565b6020808252602e908201527f7768697465206c6973742073616c6520686173206e6f7420626567756e20796560408201526d1d081bdc881a185cc8195b99195960921b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715613633576136336137fc565b604052919050565b60006001600160401b03821115613654576136546137fc565b5060051b60200190565b60006001600160801b03808316818516808303821115613680576136806137ba565b01949350505050565b6000821982111561369c5761369c6137ba565b500190565b6000826136b0576136b06137d0565b500490565b60008160001904831182151516156136cf576136cf6137ba565b500290565b60006001600160801b03838116908316818110156136f4576136f46137ba565b039392505050565b60008282101561370e5761370e6137ba565b500390565b60005b8381101561372e578181015183820152602001613716565b83811115611de65750506000910152565b60008161374e5761374e6137ba565b506000190190565b600181811c9082168061376a57607f821691505b602082108114156118f057634e487b7160e01b600052602260045260246000fd5b600060001982141561379f5761379f6137ba565b5060010190565b6000826137b5576137b56137d0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461208f57600080fdfea26469706673582212203f79da41141e5e073f6fd64e29cdc0d3ac1696b8396082498dfa485c712c795e64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106103505760003560e01c806363e53ebc116101c6578063ac446002116100f7578063d756985b11610095578063e985e9c51161006f578063e985e9c5146109c8578063eab13b5414610a11578063f2fde38b14610a31578063fbe1aa5114610a5157600080fd5b8063d756985b14610972578063dbcad76f14610988578063dc33e681146109a857600080fd5b8063b88d4fde116100d1578063b88d4fde14610900578063c87b56dd14610920578063caf8a6d114610940578063d7224ba01461095c57600080fd5b8063ac446002146108b8578063b05863d5146108cd578063b3ab66b0146108ed57600080fd5b8063917d009e11610164578063a22cb4651161013e578063a22cb46514610841578063a45ba8e714610861578063a475b5dd14610876578063a7cd52cb1461088b57600080fd5b8063917d009e146107bf5780639231ab2a146107df57806395d89b411461082c57600080fd5b8063715018a6116101a0578063715018a6146106e75780638bc35c2f146106fc5780638da5cb5b1461071257806390aa0b0f1461073057600080fd5b806363e53ebc146106875780636ebc5601146106a757806370a08231146106c757600080fd5b806342842e0e116102a05780635503a0e81161023e57806359f369fe1161021857806359f369fe146106215780635cae01d31461063c57806362b99ad4146106525780636352211e1461066757600080fd5b80635503a0e8146105ba57806355f804b3146105eb5780635666c8801461060b57600080fd5b80634f01c5331161027a5780634f01c5331461054b5780634f6ccce7146105605780634fdd43cb1461058057806351830227146105a057600080fd5b806342842e0e1461050257806345c0f533146105225780634d3554c31461053857600080fd5b80631f4039f91161030d5780632f745c59116102e75780632f745c591461049a578063375a069a146104ba5780634150b2f2146104da57806341fbddbd146104fa57600080fd5b80631f4039f91461044557806323b872dd1461045a5780632d20fb601461047a57600080fd5b806301ffc9a71461035557806306fdde031461038a578063081812fc146103ac578063095ea7b3146103e457806316e6e15a1461040657806318160ddd14610426575b600080fd5b34801561036157600080fd5b50610375610370366004613298565b610a67565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b5061039f610ad4565b60405161038191906134eb565b3480156103b857600080fd5b506103cc6103c736600461338b565b610b66565b6040516001600160a01b039091168152602001610381565b3480156103f057600080fd5b506104046103ff3660046131a8565b610bf6565b005b34801561041257600080fd5b506104046104213660046133fc565b610d0e565b34801561043257600080fd5b506001545b604051908152602001610381565b34801561045157600080fd5b50610437610dc8565b34801561046657600080fd5b506104046104753660046130b5565b610e04565b34801561048657600080fd5b5061040461049536600461338b565b610e0f565b3480156104a657600080fd5b506104376104b53660046131a8565b610ea2565b3480156104c657600080fd5b506104046104d536600461338b565b61101a565b3480156104e657600080fd5b506104046104f53660046133e1565b6111ba565b610404611211565b34801561050e57600080fd5b5061040461051d3660046130b5565b6113aa565b34801561052e57600080fd5b50610437600c5481565b61040461054636600461338b565b6113c5565b34801561055757600080fd5b50610375611575565b34801561056c57600080fd5b5061043761057b36600461338b565b611596565b34801561058c57600080fd5b5061040461059b366004613343565b6115ff565b3480156105ac57600080fd5b50600f546103759060ff1681565b3480156105c657600080fd5b5061039f60405180604001604052806005815260200164173539b7b760d91b81525081565b3480156105f757600080fd5b506104046106063660046132d2565b61163c565b34801561061757600080fd5b5061043760105481565b34801561062d57600080fd5b5061043766b1a2bc2ec5000081565b34801561064857600080fd5b5061043761025881565b34801561065e57600080fd5b5061039f611672565b34801561067357600080fd5b506103cc61068236600461338b565b611700565b34801561069357600080fd5b506104046106a23660046133c6565b611712565b3480156106b357600080fd5b506104046106c23660046133c6565b611758565b3480156106d357600080fd5b506104376106e2366004613067565b6117aa565b3480156106f357600080fd5b5061040461183b565b34801561070857600080fd5b50610437600e5481565b34801561071e57600080fd5b506000546001600160a01b03166103cc565b34801561073c57600080fd5b5060125461077e9063ffffffff808216916401000000008104821691600160401b820416906001600160401b03600160601b8204811691600160a01b90041685565b6040805163ffffffff9687168152948616602086015292909416918301919091526001600160401b039081166060830152909116608082015260a001610381565b3480156107cb57600080fd5b506104376107da36600461338b565b611871565b3480156107eb57600080fd5b506107ff6107fa36600461338b565b6118f6565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610381565b34801561083857600080fd5b5061039f611913565b34801561084d57600080fd5b5061040461085c36600461316c565b611922565b34801561086d57600080fd5b5061039f6119e7565b34801561088257600080fd5b506104046119f4565b34801561089757600080fd5b506104376108a6366004613067565b60136020526000908152604090205481565b3480156108c457600080fd5b50610404611a2d565b3480156108d957600080fd5b506104046108e83660046131d2565b611b3a565b6104046108fb36600461338b565b611c41565b34801561090c57600080fd5b5061040461091b3660046130f1565b611dec565b34801561092c57600080fd5b5061039f61093b36600461338b565b611e1f565b34801561094c57600080fd5b50610437670429d069189e000081565b34801561096857600080fd5b5061043760085481565b34801561097e57600080fd5b50610437600d5481565b34801561099457600080fd5b506103756109a33660046133a4565b611fa8565b3480156109b457600080fd5b506104376109c3366004613067565b611fbd565b3480156109d457600080fd5b506103756109e3366004613082565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a1d57600080fd5b50610404610a2c36600461338b565b611fc8565b348015610a3d57600080fd5b50610404610a4c366004613067565b611ff7565b348015610a5d57600080fd5b5061043760115481565b60006001600160e01b031982166380ac58cd60e01b1480610a9857506001600160e01b03198216635b5e139f60e01b145b80610ab357506001600160e01b0319821663780e9d6360e01b145b80610ace57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610ae390613756565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0f90613756565b8015610b5c5780601f10610b3157610100808354040283529160200191610b5c565b820191906000526020600020905b815481529060010190602001808311610b3f57829003601f168201915b5050505050905090565b6000610b73826001541190565b610bda5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c0182611700565b9050806001600160a01b0316836001600160a01b03161415610c705760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bd1565b336001600160a01b0382161480610c8c5750610c8c81336109e3565b610cfe5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bd1565b610d09838383612092565b505050565b6000546001600160a01b03163314610d385760405162461bcd60e51b8152600401610bd190613583565b6040805160a0810182526000808252602082015263ffffffff929092169082018190526001600160401b0393841660608301819052929093166080909101819052601280546001600160a01b031916600160401b90940267ffffffffffffffff60601b191693909317600160601b9092029190911767ffffffffffffffff60a01b1916600160a01b909102179055565b600066b1a2bc2ec50000610258670429d069189e0000600d54610deb91906136fc565b610df591906136b5565b610dff91906136a1565b905090565b610d098383836120ee565b6000546001600160a01b03163314610e395760405162461bcd60e51b8152600401610bd190613583565b60026009541415610e8c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bd1565b6002600955610e9a81612474565b506001600955565b6000610ead836117aa565b8210610f065760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bd1565b6000610f1160015490565b905060008060005b83811015610fba576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610f6b57805192505b876001600160a01b0316836001600160a01b03161415610fa75786841415610f9957509350610ace92505050565b83610fa38161378b565b9450505b5080610fb28161378b565b915050610f19565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bd1565b6000546001600160a01b031633146110445760405162461bcd60e51b8152600401610bd190613583565b6011548161105160015490565b61105b9190613689565b11156110b95760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610bd1565b6110e37f0000000000000000000000000000000000000000000000000000000000000004826137a6565b156111455760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610bd1565b60006111717f0000000000000000000000000000000000000000000000000000000000000004836136a1565b905060005b81811015610d09576111a8337f0000000000000000000000000000000000000000000000000000000000000004612623565b806111b28161378b565b915050611176565b6000546001600160a01b031633146111e45760405162461bcd60e51b8152600401610bd190613583565b601280546001600160401b03909216600160601b0267ffffffffffffffff60601b19909216919091179055565b3233146112305760405162461bcd60e51b8152600401610bd19061354c565b60125463ffffffff1680158015906112485750804210155b6112645760405162461bcd60e51b8152600401610bd1906134fe565b601254600160601b90046001600160401b0316806112945760405162461bcd60e51b8152600401610bd1906134fe565b336000908152601360205260409020546112f05760405162461bcd60e51b815260206004820181905260248201527f6e6f7420656c696769626c6520666f72207768697465206c697374206d696e746044820152606401610bd1565b600c54600154611301906001613689565b11156113445760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610bd1565b33600090815260136020526040902054600114156113715733600090815260136020526040812055611392565b33600090815260136020526040812080549161138c8361373f565b91905055505b61139b8161263d565b6113a6336001612623565b5050565b610d0983838360405180602001604052806000815250611dec565b3233146113e45760405162461bcd60e51b8152600401610bd19061354c565b601254640100000000900463ffffffff1680158015906114045750804210155b6114505760405162461bcd60e51b815260206004820181905260248201527f61756374696f6e2073616c6520686173206e6f742073746172746564207965746044820152606401610bd1565b6010548261145d60015490565b6114679190613689565b11156114ec5760405162461bcd60e51b815260206004820152604860248201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60448201527f722061756374696f6e20746f20737570706f72742064657369726564206d696e6064820152671d08185b5bdd5b9d60c21b608482015260a401610bd1565b600e54826114f933611fbd565b6115039190613689565b111561154a5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610bd1565b60008261155683611871565b61156091906136b5565b905061156b8161263d565b610d093384612623565b60125460009063ffffffff1680158015906115905750804210155b91505090565b60006115a160015490565b82106115fb5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bd1565b5090565b6000546001600160a01b031633146116295760405162461bcd60e51b8152600401610bd190613583565b80516113a690600b906020840190612e4e565b6000546001600160a01b031633146116665760405162461bcd60e51b8152600401610bd190613583565b610d0960148383612ece565b600a805461167f90613756565b80601f01602080910402602001604051908101604052809291908181526020018280546116ab90613756565b80156116f85780601f106116cd576101008083540402835291602001916116f8565b820191906000526020600020905b8154815290600101906020018083116116db57829003601f168201915b505050505081565b600061170b826126c4565b5192915050565b6000546001600160a01b0316331461173c5760405162461bcd60e51b8152600401610bd190613583565b6012805463ffffffff191663ffffffff92909216919091179055565b6000546001600160a01b031633146117825760405162461bcd60e51b8152600401610bd190613583565b6012805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b60006001600160a01b0382166118165760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bd1565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146118655760405162461bcd60e51b8152600401610bd190613583565b61186f600061286d565b565b600081421015611883575050600d5490565b600061188d610dc8565b90508061189a84426136fc565b106118af5750670429d069189e000092915050565b60006102586118be85426136fc565b6118c891906136a1565b90506118db66b1a2bc2ec50000826136b5565b600d546118e891906136fc565b949350505050565b50919050565b6040805180820190915260008082526020820152610ace826126c4565b606060038054610ae390613756565b6001600160a01b03821633141561197b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bd1565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b805461167f90613756565b6000546001600160a01b03163314611a1e5760405162461bcd60e51b8152600401610bd190613583565b600f805460ff19166001179055565b6000546001600160a01b03163314611a575760405162461bcd60e51b8152600401610bd190613583565b60026009541415611aaa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bd1565b6002600955604051600090339047908381818185875af1925050503d8060008114611af1576040519150601f19603f3d011682016040523d82523d6000602084013e611af6565b606091505b5050905080610e9a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610bd1565b6000546001600160a01b03163314611b645760405162461bcd60e51b8152600401610bd190613583565b8051825114611bc65760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610bd1565b60005b8251811015610d0957818181518110611be457611be46137e6565b602002602001015160136000858481518110611c0257611c026137e6565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611c399061378b565b915050611bc9565b323314611c605760405162461bcd60e51b8152600401610bd19061354c565b6040805160a08101825260125463ffffffff8082168352640100000000820481166020840152600160401b8204169282018390526001600160401b03600160601b820481166060840152600160a01b90910416608082018190529091611cc68282611fa8565b611d125760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610bd1565b600c5484611d1f60015490565b611d299190613689565b1115611d6c5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610bd1565b600e5484611d7933611fbd565b611d839190613689565b1115611dca5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610bd1565b611ddc611dd785846136b5565b61263d565b611de63385612623565b50505050565b611df78484846120ee565b611e03848484846128bd565b611de65760405162461bcd60e51b8152600401610bd1906135b8565b6060611e2c826001541190565b611e915760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba30b73a103a37b5b2b760811b6064820152608401610bd1565b600f5460ff16611f2d57600b8054611ea890613756565b80601f0160208091040260200160405190810160405280929190818152602001828054611ed490613756565b8015611f215780601f10611ef657610100808354040283529160200191611f21565b820191906000526020600020905b815481529060010190602001808311611f0457829003601f168201915b50505050509050919050565b6000611f376129ca565b90506000815111611f575760405180602001604052806000815250611fa1565b80611f61846129d9565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001611f919392919061346b565b6040516020818303038152906040525b9392505050565b60008215801590611fa1575050421015919050565b6000610ace82612ad6565b6000546001600160a01b03163314611ff25760405162461bcd60e51b8152600401610bd190613583565b600d55565b6000546001600160a01b031633146120215760405162461bcd60e51b8152600401610bd190613583565b6001600160a01b0381166120865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd1565b61208f8161286d565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006120f9826126c4565b80519091506000906001600160a01b0316336001600160a01b0316148061213057503361212584610b66565b6001600160a01b0316145b806121425750815161214290336109e3565b9050806121ac5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bd1565b846001600160a01b031682600001516001600160a01b0316146122205760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bd1565b6001600160a01b0384166122845760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bd1565b6122946000848460000151612092565b6001600160a01b03851660009081526005602052604081208054600192906122c69084906001600160801b03166136d4565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926123129185911661365e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612399846001613689565b6000818152600460205260409020549091506001600160a01b031661242a576123c3816001541190565b1561242a5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816124c45760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610bd1565b600060016124d28484613689565b6124dc91906136fc565b9050600180546124ec91906136fc565b811115612504576001805461250191906136fc565b90505b61250f816001541190565b61256a5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610bd1565b815b81811161260f576000818152600460205260409020546001600160a01b03166125fd57600061259a826126c4565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806126078161378b565b91505061256c565b5061261b816001613689565b600855505050565b6113a6828260405180602001604052806000815250612b74565b803410156126865760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610bd1565b8034111561208f57336108fc61269c83346136fc565b6040518115909202916000818181858888f193505050501580156113a6573d6000803e3d6000fd5b60408051808201909152600080825260208201526126e3826001541190565b6127425760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610bd1565b60007f000000000000000000000000000000000000000000000000000000000000000483106127a3576127957f0000000000000000000000000000000000000000000000000000000000000004846136fc565b6127a0906001613689565b90505b825b81811061280c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156127f957949350505050565b50806128048161373f565b9150506127a5565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bd1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156129bf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129019033908990889088906004016134ae565b602060405180830381600087803b15801561291b57600080fd5b505af192505050801561294b575060408051601f3d908101601f19168201909252612948918101906132b5565b60015b6129a5573d808015612979576040519150601f19603f3d011682016040523d82523d6000602084013e61297e565b606091505b50805161299d5760405162461bcd60e51b8152600401610bd1906135b8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118e8565b506001949350505050565b606060148054610ae390613756565b6060816129fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a275780612a118161378b565b9150612a209050600a836136a1565b9150612a01565b6000816001600160401b03811115612a4157612a416137fc565b6040519080825280601f01601f191660200182016040528015612a6b576020820181803683370190505b5090505b84156118e857612a806001836136fc565b9150612a8d600a866137a6565b612a98906030613689565b60f81b818381518110612aad57612aad6137e6565b60200101906001600160f81b031916908160001a905350612acf600a866136a1565b9450612a6f565b60006001600160a01b038216612b485760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bd1565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416612bd75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bd1565b612be2816001541190565b15612c2f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bd1565b7f0000000000000000000000000000000000000000000000000000000000000004831115612caa5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bd1565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612d0690879061365e565b6001600160801b03168152602001858360200151612d24919061365e565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612e435760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612e0760008884886128bd565b612e235760405162461bcd60e51b8152600401610bd1906135b8565b81612e2d8161378b565b9250508080612e3b9061378b565b915050612dba565b50600181905561246c565b828054612e5a90613756565b90600052602060002090601f016020900481019282612e7c5760008555612ec2565b82601f10612e9557805160ff1916838001178555612ec2565b82800160010185558215612ec2579182015b82811115612ec2578251825591602001919060010190612ea7565b506115fb929150612f42565b828054612eda90613756565b90600052602060002090601f016020900481019282612efc5760008555612ec2565b82601f10612f155782800160ff19823516178555612ec2565b82800160010185558215612ec2579182015b82811115612ec2578235825591602001919060010190612f27565b5b808211156115fb5760008155600101612f43565b60006001600160401b03831115612f7057612f706137fc565b612f83601f8401601f191660200161360b565b9050828152838383011115612f9757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612fc557600080fd5b919050565b600082601f830112612fdb57600080fd5b81356020612ff0612feb8361363b565b61360b565b80838252828201915082860187848660051b890101111561301057600080fd5b60005b8581101561302f57813584529284019290840190600101613013565b5090979650505050505050565b803563ffffffff81168114612fc557600080fd5b80356001600160401b0381168114612fc557600080fd5b60006020828403121561307957600080fd5b611fa182612fae565b6000806040838503121561309557600080fd5b61309e83612fae565b91506130ac60208401612fae565b90509250929050565b6000806000606084860312156130ca57600080fd5b6130d384612fae565b92506130e160208501612fae565b9150604084013590509250925092565b6000806000806080858703121561310757600080fd5b61311085612fae565b935061311e60208601612fae565b92506040850135915060608501356001600160401b0381111561314057600080fd5b8501601f8101871361315157600080fd5b61316087823560208401612f57565b91505092959194509250565b6000806040838503121561317f57600080fd5b61318883612fae565b91506020830135801515811461319d57600080fd5b809150509250929050565b600080604083850312156131bb57600080fd5b6131c483612fae565b946020939093013593505050565b600080604083850312156131e557600080fd5b82356001600160401b03808211156131fc57600080fd5b818501915085601f83011261321057600080fd5b81356020613220612feb8361363b565b8083825282820191508286018a848660051b890101111561324057600080fd5b600096505b8487101561326a5761325681612fae565b835260019690960195918301918301613245565b509650508601359250508082111561328157600080fd5b5061328e85828601612fca565b9150509250929050565b6000602082840312156132aa57600080fd5b8135611fa181613812565b6000602082840312156132c757600080fd5b8151611fa181613812565b600080602083850312156132e557600080fd5b82356001600160401b03808211156132fc57600080fd5b818501915085601f83011261331057600080fd5b81358181111561331f57600080fd5b86602082850101111561333157600080fd5b60209290920196919550909350505050565b60006020828403121561335557600080fd5b81356001600160401b0381111561336b57600080fd5b8201601f8101841361337c57600080fd5b6118e884823560208401612f57565b60006020828403121561339d57600080fd5b5035919050565b600080604083850312156133b757600080fd5b50508035926020909101359150565b6000602082840312156133d857600080fd5b611fa18261303c565b6000602082840312156133f357600080fd5b611fa182613050565b60008060006060848603121561341157600080fd5b61341a84613050565b925061342860208501613050565b91506134366040850161303c565b90509250925092565b60008151808452613457816020860160208601613713565b601f01601f19169290920160200192915050565b6000845161347d818460208901613713565b845190830190613491818360208901613713565b84519101906134a4818360208801613713565b0195945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134e19083018461343f565b9695505050505050565b602081526000611fa1602083018461343f565b6020808252602e908201527f7768697465206c6973742073616c6520686173206e6f7420626567756e20796560408201526d1d081bdc881a185cc8195b99195960921b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715613633576136336137fc565b604052919050565b60006001600160401b03821115613654576136546137fc565b5060051b60200190565b60006001600160801b03808316818516808303821115613680576136806137ba565b01949350505050565b6000821982111561369c5761369c6137ba565b500190565b6000826136b0576136b06137d0565b500490565b60008160001904831182151516156136cf576136cf6137ba565b500290565b60006001600160801b03838116908316818110156136f4576136f46137ba565b039392505050565b60008282101561370e5761370e6137ba565b500390565b60005b8381101561372e578181015183820152602001613716565b83811115611de65750506000910152565b60008161374e5761374e6137ba565b506000190190565b600181811c9082168061376a57607f821691505b602082108114156118f057634e487b7160e01b600052602260045260246000fd5b600060001982141561379f5761379f6137ba565b5060010190565b6000826137b5576137b56137d0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461208f57600080fdfea26469706673582212203f79da41141e5e073f6fd64e29cdc0d3ac1696b8396082498dfa485c712c795e64736f6c63430008070033

Deployed Bytecode Sourcemap

42900:8425:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27285:372;;;;;;;;;;-1:-1:-1;27285:372:0;;;;;:::i;:::-;;:::i;:::-;;;9570:14:1;;9563:22;9545:41;;9533:2;9518:18;27285:372:0;;;;;;;;29090:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30651:214::-;;;;;;;;;;-1:-1:-1;30651:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8868:32:1;;;8850:51;;8838:2;8823:18;30651:214:0;8704:203:1;30172:413:0;;;;;;;;;;-1:-1:-1;30172:413:0;;;;;:::i;:::-;;:::i;:::-;;48298:355;;;;;;;;;;-1:-1:-1;48298:355:0;;;;;:::i;:::-;;:::i;25726:100::-;;;;;;;;;;-1:-1:-1;25806:12:0;;25726:100;;;24888:25:1;;;24876:2;24861:18;25726:100:0;24742:177:1;48659:190:0;;;;;;;;;;;;;:::i;31527:162::-;;;;;;;;;;-1:-1:-1;31527:162:0;;;;;:::i;:::-;;:::i;50938:118::-;;;;;;;;;;-1:-1:-1;50938:118:0;;;;;:::i;:::-;;:::i;26390:823::-;;;;;;;;;;-1:-1:-1;26390:823:0;;;;;:::i;:::-;;:::i;47129:442::-;;;;;;;;;;-1:-1:-1;47129:442:0;;;;;:::i;:::-;;:::i;48989:136::-;;;;;;;;;;-1:-1:-1;48989:136:0;;;;;:::i;:::-;;:::i;45657:761::-;;;:::i;31760:177::-;;;;;;;;;;-1:-1:-1;31760:177:0;;;;;:::i;:::-;;:::i;43072:36::-;;;;;;;;;;;;;;;;44270:701;;;;;;:::i;:::-;;:::i;46855:228::-;;;;;;;;;;;;;:::i;25903:187::-;;;;;;;;;;-1:-1:-1;25903:187:0;;;;;:::i;:::-;;:::i;49399:132::-;;;;;;;;;;-1:-1:-1;49399:132:0;;;;;:::i;:::-;;:::i;43197:28::-;;;;;;;;;;-1:-1:-1;43197:28:0;;;;;;;;42989:42;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;42989:42:0;;;;;50645:100;;;;;;;;;;-1:-1:-1;50645:100:0;;;;;:::i;:::-;;:::i;43294:44::-;;;;;;;;;;;;;;;;47699:58;;;;;;;;;;;;47747:10;47699:58;;47636;;;;;;;;;;;;47684:10;47636:58;;42956:28;;;;;;;;;;;;;:::i;28899:124::-;;;;;;;;;;-1:-1:-1;28899:124:0;;;;;:::i;:::-;;:::i;49131:130::-;;;;;;;;;;-1:-1:-1;49131:130:0;;;;;:::i;:::-;;:::i;49267:126::-;;;;;;;;;;-1:-1:-1;49267:126:0;;;;;:::i;:::-;;:::i;27721:221::-;;;;;;;;;;-1:-1:-1;27721:221:0;;;;;:::i;:::-;;:::i;42013:103::-;;;;;;;;;;;;;:::i;43150:42::-;;;;;;;;;;;;;;;;41362:87;;;;;;;;;;-1:-1:-1;41408:7:0;41435:6;-1:-1:-1;;;;;41435:6:0;41362:87;;43596:28;;;;;;;;;;-1:-1:-1;43596:28:0;;;;;;;;;;;;;;;-1:-1:-1;;;43596:28:0;;;;-1:-1:-1;;;;;;;;43596:28:0;;;;;-1:-1:-1;;;43596:28:0;;;;;;;;;25183:10:1;25220:15;;;25202:34;;25272:15;;;25267:2;25252:18;;25245:43;25324:15;;;;25304:18;;;25297:43;;;;-1:-1:-1;;;;;25413:15:1;;;25408:2;25393:18;;25386:43;25466:15;;;25460:3;25445:19;;25438:44;25160:3;25145:19;43596:28:0;24924:564:1;47765:527:0;;;;;;;;;;-1:-1:-1;47765:527:0;;;;;:::i;:::-;;:::i;51175:147::-;;;;;;;;;;-1:-1:-1;51175:147:0;;;;;:::i;:::-;;:::i;:::-;;;;24607:13:1;;-1:-1:-1;;;;;24603:39:1;24585:58;;24703:4;24691:17;;;24685:24;-1:-1:-1;;;;;24681:49:1;24659:20;;;24652:79;;;;24558:18;51175:147:0;24377:360:1;29259:104:0;;;;;;;;;;;;;:::i;30937:288::-;;;;;;;;;;-1:-1:-1;30937:288:0;;;;;:::i;:::-;;:::i;43036:31::-;;;;;;;;;;;;;:::i;50462:63::-;;;;;;;;;;;;;:::i;43631:44::-;;;;;;;;;;-1:-1:-1;43631:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;50751:181;;;;;;;;;;;;;:::i;49537:339::-;;;;;;;;;;-1:-1:-1;49537:339:0;;;;;:::i;:::-;;:::i;44977:674::-;;;;;;:::i;:::-;;:::i;32008:355::-;;;;;;;;;;-1:-1:-1;32008:355:0;;;;;:::i;:::-;;:::i;49882:520::-;;;;;;;;;;-1:-1:-1;49882:520:0;;;;;:::i;:::-;;:::i;47578:53::-;;;;;;;;;;;;47622:9;47578:53;;36668:43;;;;;;;;;;;;;;;;43113:32;;;;;;;;;;;;;;;;46635:214;;;;;;;;;;-1:-1:-1;46635:214:0;;;;;:::i;:::-;;:::i;51062:107::-;;;;;;;;;;-1:-1:-1;51062:107:0;;;;;:::i;:::-;;:::i;31296:164::-;;;;;;;;;;-1:-1:-1;31296:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31417:25:0;;;31393:4;31417:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31296:164;48855:128;;;;;;;;;;-1:-1:-1;48855:128:0;;;;;:::i;:::-;;:::i;42271:201::-;;;;;;;;;;-1:-1:-1;42271:201:0;;;;;:::i;:::-;;:::i;43370:34::-;;;;;;;;;;;;;;;;27285:372;27387:4;-1:-1:-1;;;;;;27424:40:0;;-1:-1:-1;;;27424:40:0;;:105;;-1:-1:-1;;;;;;;27481:48:0;;-1:-1:-1;;;27481:48:0;27424:105;:172;;;-1:-1:-1;;;;;;;27546:50:0;;-1:-1:-1;;;27546:50:0;27424:172;:225;;;-1:-1:-1;;;;;;;;;;13230:40:0;;;27613:36;27404:245;27285:372;-1:-1:-1;;27285:372:0:o;29090:100::-;29144:13;29177:5;29170:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29090:100;:::o;30651:214::-;30719:7;30747:16;30755:7;32709:12;;-1:-1:-1;32699:22:0;32618:111;30747:16;30739:74;;;;-1:-1:-1;;;30739:74:0;;23353:2:1;30739:74:0;;;23335:21:1;23392:2;23372:18;;;23365:30;23431:34;23411:18;;;23404:62;-1:-1:-1;;;23482:18:1;;;23475:43;23535:19;;30739:74:0;;;;;;;;;-1:-1:-1;30833:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30833:24:0;;30651:214::o;30172:413::-;30245:13;30261:24;30277:7;30261:15;:24::i;:::-;30245:40;;30310:5;-1:-1:-1;;;;;30304:11:0;:2;-1:-1:-1;;;;;30304:11:0;;;30296:58;;;;-1:-1:-1;;;30296:58:0;;17875:2:1;30296:58:0;;;17857:21:1;17914:2;17894:18;;;17887:30;17953:34;17933:18;;;17926:62;-1:-1:-1;;;18004:18:1;;;17997:32;18046:19;;30296:58:0;17673:398:1;30296:58:0;23551:10;-1:-1:-1;;;;;30389:21:0;;;;:62;;-1:-1:-1;30414:37:0;30431:5;23551:10;31296:164;:::i;30414:37::-;30367:169;;;;-1:-1:-1;;;30367:169:0;;13659:2:1;30367:169:0;;;13641:21:1;13698:2;13678:18;;;13671:30;13737:34;13717:18;;;13710:62;13808:27;13788:18;;;13781:55;13853:19;;30367:169:0;13457:421:1;30367:169:0;30549:28;30558:2;30562:7;30571:5;30549:8;:28::i;:::-;30234:351;30172:413;;:::o;48298:355::-;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;48479:168:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;48479:168:0;;;::::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;;;;;48479:168:0;;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;;48466:10:::1;:181:::0;;-1:-1:-1;;;;;;48466:181:0;-1:-1:-1;;;48466:181:0;;::::1;-1:-1:-1::0;;;;48466:181:0;;;;;-1:-1:-1;;;48466:181:0;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;48466:181:0::1;-1:-1:-1::0;;;48466:181:0;;::::1;;::::0;;48298:355::o;48659:190::-;48717:7;47747:10;47684;47622:9;48749:17;;:37;;;;:::i;:::-;48748:63;;;;:::i;:::-;48747:96;;;;:::i;:::-;48733:110;;48659:190;:::o;31527:162::-;31653:28;31663:4;31669:2;31673:7;31653:9;:28::i;50938:118::-;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;21845:1:::1;22443:7;;:19;;22435:63;;;::::0;-1:-1:-1;;;22435:63:0;;22577:2:1;22435:63:0::1;::::0;::::1;22559:21:1::0;22616:2;22596:18;;;22589:30;22655:33;22635:18;;;22628:61;22706:18;;22435:63:0::1;22375:355:1::0;22435:63:0::1;21845:1;22576:7;:18:::0;51022:28:::2;51041:8:::0;51022:18:::2;:28::i;:::-;-1:-1:-1::0;21801:1:0::1;22755:7;:22:::0;50938:118::o;26390:823::-;26479:7;26515:16;26525:5;26515:9;:16::i;:::-;26507:5;:24;26499:71;;;;-1:-1:-1;;;26499:71:0;;10023:2:1;26499:71:0;;;10005:21:1;10062:2;10042:18;;;10035:30;10101:34;10081:18;;;10074:62;-1:-1:-1;;;10152:18:1;;;10145:32;10194:19;;26499:71:0;9821:398:1;26499:71:0;26581:22;26606:13;25806:12;;;25726:100;26606:13;26581:38;;26630:19;26664:25;26718:9;26713:426;26737:14;26733:1;:18;26713:426;;;26773:31;26807:14;;;:11;:14;;;;;;;;;26773:48;;;;;;;;;-1:-1:-1;;;;;26773:48:0;;;;;-1:-1:-1;;;26773:48:0;;;-1:-1:-1;;;;;26773:48:0;;;;;;;;26840:28;26836:103;;26909:14;;;-1:-1:-1;26836:103:0;26978:5;-1:-1:-1;;;;;26957:26:0;:17;-1:-1:-1;;;;;26957:26:0;;26953:175;;;27023:5;27008:11;:20;27004:77;;;-1:-1:-1;27060:1:0;-1:-1:-1;27053:8:0;;-1:-1:-1;;;27053:8:0;27004:77;27099:13;;;;:::i;:::-;;;;26953:175;-1:-1:-1;26753:3:0;;;;:::i;:::-;;;;26713:426;;;-1:-1:-1;27149:56:0;;-1:-1:-1;;;27149:56:0;;21755:2:1;27149:56:0;;;21737:21:1;21794:2;21774:18;;;21767:30;21833:34;21813:18;;;21806:62;-1:-1:-1;;;21884:18:1;;;21877:44;21938:19;;27149:56:0;21553:410:1;47129:442:0;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;47234:13:::1;;47222:8;47206:13;25806:12:::0;;;25726:100;47206:13:::1;:24;;;;:::i;:::-;:41;;47190:114;;;::::0;-1:-1:-1;;;47190:114:0;;20866:2:1;47190:114:0::1;::::0;::::1;20848:21:1::0;20905:2;20885:18;;;20878:30;20944:34;20924:18;;;20917:62;-1:-1:-1;;;20995:18:1;;;20988:37;21042:19;;47190:114:0::1;20664:403:1::0;47190:114:0::1;47327:23;47338:12;47327:8:::0;:23:::1;:::i;:::-;:28:::0;47311:106:::1;;;::::0;-1:-1:-1;;;47311:106:0;;11659:2:1;47311:106:0::1;::::0;::::1;11641:21:1::0;11698:2;11678:18;;;11671:30;11737:34;11717:18;;;11710:62;-1:-1:-1;;;11788:18:1;;;11781:42;11840:19;;47311:106:0::1;11457:408:1::0;47311:106:0::1;47424:17;47444:23;47455:12;47444:8:::0;:23:::1;:::i;:::-;47424:43;;47479:9;47474:92;47498:9;47494:1;:13;47474:92;;;47523:35;47533:10;47545:12;47523:9;:35::i;:::-;47509:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47474:92;;48989:136:::0;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;49076:10:::1;:43:::0;;-1:-1:-1;;;;;49076:43:0;;::::1;-1:-1:-1::0;;;49076:43:0::1;-1:-1:-1::0;;;;49076:43:0;;::::1;::::0;;;::::1;::::0;;48989:136::o;45657:761::-;44148:9;44161:10;44148:23;44140:66;;;;-1:-1:-1;;;44140:66:0;;;;;;;:::i;:::-;45757:10:::1;:33:::0;::::1;;45814:24:::0;;;::::1;::::0;:66:::1;;;45861:19;45842:15;:38;;45814:66;45798:146;;;;-1:-1:-1::0;;;45798:146:0::1;;;;;;;:::i;:::-;45975:10;:24:::0;-1:-1:-1;;;45975:24:0;::::1;-1:-1:-1::0;;;;;45975:24:0::1;::::0;46007:69:::1;;;;-1:-1:-1::0;;;46007:69:0::1;;;;;;;:::i;:::-;46101:10;46115:1;46091:21:::0;;;:9:::1;:21;::::0;;;;;46083:70:::1;;;::::0;-1:-1:-1;;;46083:70:0;;19752:2:1;46083:70:0::1;::::0;::::1;19734:21:1::0;;;19771:18;;;19764:30;19830:34;19810:18;;;19803:62;19882:18;;46083:70:0::1;19550:356:1::0;46083:70:0::1;46189:14;::::0;25806:12;;46168:17:::1;::::0;46184:1:::1;46168:17;:::i;:::-;:35;;46160:66;;;::::0;-1:-1:-1;;;46160:66:0;;14850:2:1;46160:66:0::1;::::0;::::1;14832:21:1::0;14889:2;14869:18;;;14862:30;-1:-1:-1;;;14908:18:1;;;14901:48;14966:18;;46160:66:0::1;14648:342:1::0;46160:66:0::1;46247:10;46237:21;::::0;;;:9:::1;:21;::::0;;;;;46262:1:::1;46237:26;46233:123;;;46291:10;46281:21;::::0;;;:9:::1;:21;::::0;;;;46274:28;46233:123:::1;;;46335:10;46325:21;::::0;;;:9:::1;:21;::::0;;;;:23;;;::::1;::::0;::::1;:::i;:::-;;;;;;46233:123;46362:19;46375:5;46362:12;:19::i;:::-;46388:24;46398:10;46410:1;46388:9;:24::i;:::-;45712:706;;45657:761::o:0;31760:177::-;31890:39;31907:4;31913:2;31917:7;31890:39;;;;;;;;;;;;:16;:39::i;44270:701::-;44148:9;44161:10;44148:23;44140:66;;;;-1:-1:-1;;;44140:66:0;;;;;;;:::i;:::-;44379:10:::1;:31:::0;;;::::1;;;44434:19:::0;;;::::1;::::0;:56:::1;;;44476:14;44457:15;:33;;44434:56;44418:122;;;::::0;-1:-1:-1;;;44418:122:0;;15965:2:1;44418:122:0::1;::::0;::::1;15947:21:1::0;;;15984:18;;;15977:30;16043:34;16023:18;;;16016:62;16095:18;;44418:122:0::1;15763:356:1::0;44418:122:0::1;44591:22;;44579:8;44563:13;25806:12:::0;;;25726:100;44563:13:::1;:24;;;;:::i;:::-;:50;;44547:156;;;::::0;-1:-1:-1;;;44547:156:0;;21274:2:1;44547:156:0::1;::::0;::::1;21256:21:1::0;21313:2;21293:18;;;21286:30;21352:34;21332:18;;;21325:62;21423:34;21403:18;;;21396:62;-1:-1:-1;;;21474:19:1;;;21467:39;21523:19;;44547:156:0::1;21072:476:1::0;44547:156:0::1;44765:23;;44753:8;44726:24;44739:10;44726:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;44710:118;;;::::0;-1:-1:-1;;;44710:118:0;;20515:2:1;44710:118:0::1;::::0;::::1;20497:21:1::0;20554:2;20534:18;;;20527:30;-1:-1:-1;;;20573:18:1;;;20566:52;20635:18;;44710:118:0::1;20313:346:1::0;44710:118:0::1;44835:17;44889:8;44855:31;44871:14;44855:15;:31::i;:::-;:42;;;;:::i;:::-;44835:62;;44904:23;44917:9;44904:12;:23::i;:::-;44934:31;44944:10;44956:8;44934:9;:31::i;46855:228::-:0;46963:10;:33;46910:4;;46963:33;;47011:24;;;;;:66;;;47058:19;47039:15;:38;;47011:66;47004:73;;;46855:228;:::o;25903:187::-;25970:7;26006:13;25806:12;;;25726:100;26006:13;25998:5;:21;25990:69;;;;-1:-1:-1;;;25990:69:0;;12072:2:1;25990:69:0;;;12054:21:1;12111:2;12091:18;;;12084:30;12150:34;12130:18;;;12123:62;-1:-1:-1;;;12201:18:1;;;12194:33;12244:19;;25990:69:0;11870:399:1;25990:69:0;-1:-1:-1;26077:5:0;25903:187::o;49399:132::-;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;49487:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;50645:100::-:0;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;50716:23:::1;:13;50732:7:::0;;50716:23:::1;:::i;42956:28::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28899:124::-;28963:7;28990:20;29002:7;28990:11;:20::i;:::-;:25;;28899:124;-1:-1:-1;;28899:124:0:o;49131:130::-;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;49210:10:::1;:45:::0;;-1:-1:-1;;49210:45:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;49131:130::o;49267:126::-;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;49344:10:::1;:43:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;49344:43:0;;::::1;::::0;;;::::1;::::0;;49267:126::o;27721:221::-;27785:7;-1:-1:-1;;;;;27813:19:0;;27805:75;;;;-1:-1:-1;;;27805:75:0;;14438:2:1;27805:75:0;;;14420:21:1;14477:2;14457:18;;;14450:30;14516:34;14496:18;;;14489:62;-1:-1:-1;;;14567:18:1;;;14560:41;14618:19;;27805:75:0;14236:407:1;27805:75:0;-1:-1:-1;;;;;;27906:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27906:27:0;;27721:221::o;42013:103::-;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;42078:30:::1;42105:1;42078:18;:30::i;:::-;42013:103::o:0;47765:527::-;47850:7;47891:14;47873:15;:32;47869:79;;;-1:-1:-1;;47923:17:0;;;47765:527::o;47869:79::-;47954:26;47983:23;:21;:23::i;:::-;47954:52;-1:-1:-1;47954:52:0;48017:32;48035:14;48017:15;:32;:::i;:::-;:54;48013:274;;-1:-1:-1;47622:9:0;;47765:527;-1:-1:-1;;47765:527:0:o;48013:274::-;48129:13;47684:10;48146:32;48164:14;48146:15;:32;:::i;:::-;48145:67;;;;:::i;:::-;48129:83;-1:-1:-1;48249:29:0;47747:10;48129:83;48249:29;:::i;:::-;48228:17;;:51;;;;:::i;:::-;48221:58;47765:527;-1:-1:-1;;;;47765:527:0:o;48013:274::-;47862:430;47765:527;;;:::o;51175:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;51296:20:0;51308:7;51296:11;:20::i;29259:104::-;29315:13;29348:7;29341:14;;;;;:::i;30937:288::-;-1:-1:-1;;;;;31032:24:0;;23551:10;31032:24;;31024:63;;;;-1:-1:-1;;;31024:63:0;;16326:2:1;31024:63:0;;;16308:21:1;16365:2;16345:18;;;16338:30;16404:28;16384:18;;;16377:56;16450:18;;31024:63:0;16124:350:1;31024:63:0;23551:10;31100:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31100:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31100:53:0;;;;;;;;;;31169:48;;9545:41:1;;;31100:42:0;;23551:10;31169:48;;9518:18:1;31169:48:0;;;;;;;30937:288;;:::o;43036:31::-;;;;;;;:::i;50462:63::-;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;50504:8:::1;:15:::0;;-1:-1:-1;;50504:15:0::1;50515:4;50504:15;::::0;;50462:63::o;50751:181::-;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;21845:1:::1;22443:7;;:19;;22435:63;;;::::0;-1:-1:-1;;;22435:63:0;;22577:2:1;22435:63:0::1;::::0;::::1;22559:21:1::0;22616:2;22596:18;;;22589:30;22655:33;22635:18;;;22628:61;22706:18;;22435:63:0::1;22375:355:1::0;22435:63:0::1;21845:1;22576:7;:18:::0;50834:49:::2;::::0;50816:12:::2;::::0;50834:10:::2;::::0;50857:21:::2;::::0;50816:12;50834:49;50816:12;50834:49;50857:21;50834:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50815:68;;;50898:7;50890:36;;;::::0;-1:-1:-1;;;50890:36:0;;18278:2:1;50890:36:0::2;::::0;::::2;18260:21:1::0;18317:2;18297:18;;;18290:30;-1:-1:-1;;;18336:18:1;;;18329:46;18392:18;;50890:36:0::2;18076:340:1::0;49537:339:0;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;49690:8:::1;:15;49670:9;:16;:35;49654:109;;;::::0;-1:-1:-1;;;49654:109:0;;24170:2:1;49654:109:0::1;::::0;::::1;24152:21:1::0;24209:2;24189:18;;;24182:30;24248:34;24228:18;;;24221:62;-1:-1:-1;;;24299:18:1;;;24292:38;24347:19;;49654:109:0::1;23968:404:1::0;49654:109:0::1;49775:9;49770:101;49794:9;:16;49790:1;:20;49770:101;;;49852:8;49861:1;49852:11;;;;;;;;:::i;:::-;;;;;;;49826:9;:23;49836:9;49846:1;49836:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;49826:23:0::1;-1:-1:-1::0;;;;;49826:23:0::1;;;;;;;;;;;;:37;;;;49812:3;;;;;:::i;:::-;;;;49770:101;;44977:674:::0;44148:9;44161:10;44148:23;44140:66;;;;-1:-1:-1;;;44140:66:0;;;;;;;:::i;:::-;45074:37:::1;::::0;;::::1;::::0;::::1;::::0;;45101:10:::1;45074:37:::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;;::::0;::::1;::::0;-1:-1:-1;;;45074:37:0;::::1;;::::0;;;;;;-1:-1:-1;;;;;;;;45074:37:0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;45074:37:0;;::::1;;::::0;;;;;;;;45264:48:::1;45074:37:::0;;45264:14:::1;:48::i;:::-;45248:111;;;::::0;-1:-1:-1;;;45248:111:0;;17517:2:1;45248:111:0::1;::::0;::::1;17499:21:1::0;17556:2;17536:18;;;17529:30;17595:31;17575:18;;;17568:59;17644:18;;45248:111:0::1;17315:353:1::0;45248:111:0::1;45402:14;;45390:8;45374:13;25806:12:::0;;;25726:100;45374:13:::1;:24;;;;:::i;:::-;:42;;45366:73;;;::::0;-1:-1:-1;;;45366:73:0;;14850:2:1;45366:73:0::1;::::0;::::1;14832:21:1::0;14889:2;14869:18;;;14862:30;-1:-1:-1;;;14908:18:1;;;14901:48;14966:18;;45366:73:0::1;14648:342:1::0;45366:73:0::1;45501:23;;45489:8;45462:24;45475:10;45462:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;45446:118;;;::::0;-1:-1:-1;;;45446:118:0;;20515:2:1;45446:118:0::1;::::0;::::1;20497:21:1::0;20554:2;20534:18;;;20527:30;-1:-1:-1;;;20573:18:1;;;20566:52;20635:18;;45446:118:0::1;20313:346:1::0;45446:118:0::1;45571:36;45584:22;45598:8:::0;45584:11;:22:::1;:::i;:::-;45571:12;:36::i;:::-;45614:31;45624:10;45636:8;45614:9;:31::i;:::-;45067:584;;;44977:674:::0;:::o;32008:355::-;32167:28;32177:4;32183:2;32187:7;32167:9;:28::i;:::-;32228:48;32251:4;32257:2;32261:7;32270:5;32228:22;:48::i;:::-;32206:149;;;;-1:-1:-1;;;32206:149:0;;;;;;;:::i;49882:520::-;49980:13;50027:16;50035:7;32709:12;;-1:-1:-1;32699:22:0;32618:111;50027:16;50009:104;;;;-1:-1:-1;;;50009:104:0;;17100:2:1;50009:104:0;;;17082:21:1;17139:2;17119:18;;;17112:30;17178:34;17158:18;;;17151:62;-1:-1:-1;;;17229:18:1;;;17222:46;17285:19;;50009:104:0;16898:412:1;50009:104:0;50127:8;;;;50124:67;;50164:17;50157:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49882:520;;;:::o;50124:67::-;50201:28;50232:10;:8;:10::i;:::-;50201:41;;50289:1;50264:14;50258:28;:32;:136;;;;;;;;;;;;;;;;;50326:14;50342:25;50359:7;50342:16;:25::i;:::-;50369:9;;;;;;;;;;;;;-1:-1:-1;;;50369:9:0;;;50309:70;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50258:136;50251:143;49882:520;-1:-1:-1;;;49882:520:0:o;46635:214::-;46748:4;46775:19;;;;;:68;;-1:-1:-1;;46805:15:0;:38;;;46761:82;-1:-1:-1;46635:214:0:o;51062:107::-;51120:7;51143:20;51157:5;51143:13;:20::i;48855:128::-;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;48944:17:::1;:33:::0;48855:128::o;42271:201::-;41408:7;41435:6;-1:-1:-1;;;;;41435:6:0;23551:10;41582:23;41574:68;;;;-1:-1:-1;;;41574:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42360:22:0;::::1;42352:73;;;::::0;-1:-1:-1;;;42352:73:0;;10841:2:1;42352:73:0::1;::::0;::::1;10823:21:1::0;10880:2;10860:18;;;10853:30;10919:34;10899:18;;;10892:62;-1:-1:-1;;;10970:18:1;;;10963:36;11016:19;;42352:73:0::1;10639:402:1::0;42352:73:0::1;42436:28;42455:8;42436:18;:28::i;:::-;42271:201:::0;:::o;36464:196::-;36579:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36579:29:0;-1:-1:-1;;;;;36579:29:0;;;;;;;;;36624:28;;36579:24;;36624:28;;;;;;;36464:196;;;:::o;34772:1574::-;34887:35;34925:20;34937:7;34925:11;:20::i;:::-;35000:18;;34887:58;;-1:-1:-1;34958:22:0;;-1:-1:-1;;;;;34984:34:0;23551:10;-1:-1:-1;;;;;34984:34:0;;:87;;;-1:-1:-1;23551:10:0;35035:20;35047:7;35035:11;:20::i;:::-;-1:-1:-1;;;;;35035:36:0;;34984:87;:154;;;-1:-1:-1;35105:18:0;;35088:50;;23551:10;31296:164;:::i;35088:50::-;34958:181;;35160:17;35152:80;;;;-1:-1:-1;;;35152:80:0;;16681:2:1;35152:80:0;;;16663:21:1;16720:2;16700:18;;;16693:30;16759:34;16739:18;;;16732:62;-1:-1:-1;;;16810:18:1;;;16803:48;16868:19;;35152:80:0;16479:414:1;35152:80:0;35275:4;-1:-1:-1;;;;;35253:26:0;:13;:18;;;-1:-1:-1;;;;;35253:26:0;;35245:77;;;;-1:-1:-1;;;35245:77:0;;15197:2:1;35245:77:0;;;15179:21:1;15236:2;15216:18;;;15209:30;15275:34;15255:18;;;15248:62;-1:-1:-1;;;15326:18:1;;;15319:36;15372:19;;35245:77:0;14995:402:1;35245:77:0;-1:-1:-1;;;;;35341:16:0;;35333:66;;;;-1:-1:-1;;;35333:66:0;;12476:2:1;35333:66:0;;;12458:21:1;12515:2;12495:18;;;12488:30;12554:34;12534:18;;;12527:62;-1:-1:-1;;;12605:18:1;;;12598:35;12650:19;;35333:66:0;12274:401:1;35333:66:0;35520:49;35537:1;35541:7;35550:13;:18;;;35520:8;:49::i;:::-;-1:-1:-1;;;;;35582:18:0;;;;;;:12;:18;;;;;:31;;35612:1;;35582:18;:31;;35612:1;;-1:-1:-1;;;;;35582:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35582:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35624:16:0;;-1:-1:-1;35624:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35624:16:0;;:29;;-1:-1:-1;;35624:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35624:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35687:43:0;;;;;;;;-1:-1:-1;;;;;35687:43:0;;;;;-1:-1:-1;;;;;35713:15:0;35687:43;;;;;;;;;-1:-1:-1;35664:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35664:66:0;-1:-1:-1;;;;;;35664:66:0;;;;;;;;;;;35992:11;35676:7;-1:-1:-1;35992:11:0;:::i;:::-;36059:1;36018:24;;;:11;:24;;;;;:29;35970:33;;-1:-1:-1;;;;;;36018:29:0;36014:227;;36082:20;36090:11;32709:12;;-1:-1:-1;32699:22:0;32618:111;36082:20;36078:152;;;36150:64;;;;;;;;36165:18;;-1:-1:-1;;;;;36150:64:0;;;;;;36185:28;;;;-1:-1:-1;;;;;36150:64:0;;;;;;;;;-1:-1:-1;36123:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;36123:91:0;-1:-1:-1;;;;;;36123:91:0;;;;;;;;;;;;36078:152;36277:7;36273:2;-1:-1:-1;;;;;36258:27:0;36267:4;-1:-1:-1;;;;;36258:27:0;;;;;;;;;;;36296:42;34876:1470;;;34772:1574;;;:::o;36824:885::-;36918:24;;36961:12;36953:49;;;;-1:-1:-1;;;36953:49:0;;14085:2:1;36953:49:0;;;14067:21:1;14124:2;14104:18;;;14097:30;14163:26;14143:18;;;14136:54;14207:18;;36953:49:0;13883:348:1;36953:49:0;37013:16;37063:1;37032:28;37052:8;37032:17;:28;:::i;:::-;:32;;;;:::i;:::-;37013:51;;37105:1;37090:12;;:16;;;;:::i;:::-;37079:8;:27;37075:87;;;37149:1;37134:12;;:16;;;;:::i;:::-;37123:27;;37075:87;37285:17;37293:8;32709:12;;-1:-1:-1;32699:22:0;32618:111;37285:17;37277:68;;;;-1:-1:-1;;;37277:68:0;;22170:2:1;37277:68:0;;;22152:21:1;22209:2;22189:18;;;22182:30;22248:34;22228:18;;;22221:62;-1:-1:-1;;;22299:18:1;;;22292:36;22345:19;;37277:68:0;21968:402:1;37277:68:0;37373:17;37356:296;37397:8;37392:1;:13;37356:296;;37462:1;37431:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;37431:19:0;37427:214;;37485:31;37519:14;37531:1;37519:11;:14::i;:::-;37569:56;;;;;;;;37584:14;;-1:-1:-1;;;;;37569:56:0;;;;;;37600:24;;;;-1:-1:-1;;;;;37569:56:0;;;;;;;;;-1:-1:-1;37552:14:0;;;:11;:14;;;;;;;:73;;;;;;;;;-1:-1:-1;;;37552:73:0;-1:-1:-1;;;;;;37552:73:0;;;;;;;;;;;;-1:-1:-1;37427:214:0;37407:3;;;;:::i;:::-;;;;37356:296;;;-1:-1:-1;37689:12:0;:8;37700:1;37689:12;:::i;:::-;37662:24;:39;-1:-1:-1;;;36824:885:0:o;32737:104::-;32806:27;32816:2;32820:8;32806:27;;;;;;;;;;;;:9;:27::i;46425:204::-;46498:5;46485:9;:18;;46477:53;;;;-1:-1:-1;;;46477:53:0;;19043:2:1;46477:53:0;;;19025:21:1;19082:2;19062:18;;;19055:30;-1:-1:-1;;;19101:18:1;;;19094:52;19163:18;;46477:53:0;18841:346:1;46477:53:0;46553:5;46541:9;:17;46537:87;;;46577:10;46569:47;46598:17;46610:5;46598:9;:17;:::i;:::-;46569:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28187:650;-1:-1:-1;;;;;;;;;;;;;;;;;28290:16:0;28298:7;32709:12;;-1:-1:-1;32699:22:0;32618:111;28290:16;28282:71;;;;-1:-1:-1;;;28282:71:0;;11248:2:1;28282:71:0;;;11230:21:1;11287:2;11267:18;;;11260:30;11326:34;11306:18;;;11299:62;-1:-1:-1;;;11377:18:1;;;11370:40;11427:19;;28282:71:0;11046:406:1;28282:71:0;28366:26;28418:12;28407:7;:23;28403:103;;28468:22;28478:12;28468:7;:22;:::i;:::-;:26;;28493:1;28468:26;:::i;:::-;28447:47;;28403:103;28538:7;28518:242;28555:18;28547:4;:26;28518:242;;28598:31;28632:17;;;:11;:17;;;;;;;;;28598:51;;;;;;;;;-1:-1:-1;;;;;28598:51:0;;;;;-1:-1:-1;;;28598:51:0;;;-1:-1:-1;;;;;28598:51:0;;;;;;;;28668:28;28664:85;;28724:9;28187:650;-1:-1:-1;;;;28187:650:0:o;28664:85::-;-1:-1:-1;28575:6:0;;;;:::i;:::-;;;;28518:242;;;-1:-1:-1;28772:57:0;;-1:-1:-1;;;28772:57:0;;22937:2:1;28772:57:0;;;22919:21:1;22976:2;22956:18;;;22949:30;23015:34;22995:18;;;22988:62;-1:-1:-1;;;23066:18:1;;;23059:45;23121:19;;28772:57:0;22735:411:1;42632:191:0;42706:16;42725:6;;-1:-1:-1;;;;;42742:17:0;;;-1:-1:-1;;;;;;42742:17:0;;;;;;42775:40;;42725:6;;;;;;;42775:40;;42706:16;42775:40;42695:128;42632:191;:::o;38274:804::-;38429:4;-1:-1:-1;;;;;38450:13:0;;3300:20;3348:8;38446:625;;38486:72;;-1:-1:-1;;;38486:72:0;;-1:-1:-1;;;;;38486:36:0;;;;;:72;;23551:10;;38537:4;;38543:7;;38552:5;;38486:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38486:72:0;;;;;;;;-1:-1:-1;;38486:72:0;;;;;;;;;;;;:::i;:::-;;;38482:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38732:13:0;;38728:273;;38775:61;;-1:-1:-1;;;38775:61:0;;;;;;;:::i;38728:273::-;38951:6;38945:13;38936:6;38932:2;38928:15;38921:38;38482:534;-1:-1:-1;;;;;;38609:55:0;-1:-1:-1;;;38609:55:0;;-1:-1:-1;38602:62:0;;38446:625;-1:-1:-1;39055:4:0;38274:804;;;;;;:::o;50531:108::-;50591:13;50620;50613:20;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;-1:-1:-1;;;;;900:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;27950:229;28011:7;-1:-1:-1;;;;;28039:19:0;;28031:81;;;;-1:-1:-1;;;28031:81:0;;12882:2:1;28031:81:0;;;12864:21:1;12921:2;12901:18;;;12894:30;12960:34;12940:18;;;12933:62;-1:-1:-1;;;13011:18:1;;;13004:47;13068:19;;28031:81:0;12680:413:1;28031:81:0;-1:-1:-1;;;;;;28138:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;28138:32:0;;-1:-1:-1;;;;;28138:32:0;;27950:229::o;33118:1400::-;33264:12;;-1:-1:-1;;;;;33295:16:0;;33287:62;;;;-1:-1:-1;;;33287:62:0;;20113:2:1;33287:62:0;;;20095:21:1;20152:2;20132:18;;;20125:30;20191:34;20171:18;;;20164:62;-1:-1:-1;;;20242:18:1;;;20235:31;20283:19;;33287:62:0;19911:397:1;33287:62:0;33494:21;33502:12;32709;;-1:-1:-1;32699:22:0;32618:111;33494:21;33493:22;33485:64;;;;-1:-1:-1;;;33485:64:0;;19394:2:1;33485:64:0;;;19376:21:1;19433:2;19413:18;;;19406:30;19472:31;19452:18;;;19445:59;19521:18;;33485:64:0;19192:353:1;33485:64:0;33580:12;33568:8;:24;;33560:71;;;;-1:-1:-1;;;33560:71:0;;23767:2:1;33560:71:0;;;23749:21:1;23806:2;23786:18;;;23779:30;23845:34;23825:18;;;23818:62;-1:-1:-1;;;23896:18:1;;;23889:32;23938:19;;33560:71:0;23565:398:1;33560:71:0;-1:-1:-1;;;;;33751:16:0;;33718:30;33751:16;;;:12;:16;;;;;;;;;33718:49;;;;;;;;;-1:-1:-1;;;;;33718:49:0;;;;;-1:-1:-1;;;33718:49:0;;;;;;;;;;;33797:135;;;;;;;;33823:19;;33718:49;;33797:135;;;33823:39;;33853:8;;33823:39;:::i;:::-;-1:-1:-1;;;;;33797:135:0;;;;;33912:8;33877:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33797:135:0;;;;;;-1:-1:-1;;;;;33778:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;33778:154:0;;;;;;;;;;;;33971:43;;;;;;;;;;-1:-1:-1;;;;;33997:15:0;33971:43;;;;;;;;33943:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33943:71:0;-1:-1:-1;;;;;;33943:71:0;;;;;;;;;;;;;;;;;;33955:12;;34075:325;34099:8;34095:1;:12;34075:325;;;34134:38;;34159:12;;-1:-1:-1;;;;;34134:38:0;;;34151:1;;34134:38;;34151:1;;34134:38;34213:59;34244:1;34248:2;34252:12;34266:5;34213:22;:59::i;:::-;34187:172;;;;-1:-1:-1;;;34187:172:0;;;;;;;:::i;:::-;34374:14;;;;:::i;:::-;;;;34109:3;;;;;:::i;:::-;;;;34075:325;;;-1:-1:-1;34412:12:0;:27;;;34450:60;44977:674;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:673::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:163;1098:2;1095:1;1092:9;1084:163;;;1155:17;;1143:30;;1193:12;;;;1225;;;;1116:1;1109:9;1084:163;;;-1:-1:-1;1265:5:1;;603:673;-1:-1:-1;;;;;;;603:673:1:o;1281:163::-;1348:20;;1408:10;1397:22;;1387:33;;1377:61;;1434:1;1431;1424:12;1449:171;1516:20;;-1:-1:-1;;;;;1565:30:1;;1555:41;;1545:69;;1610:1;1607;1600:12;1625:186;1684:6;1737:2;1725:9;1716:7;1712:23;1708:32;1705:52;;;1753:1;1750;1743:12;1705:52;1776:29;1795:9;1776:29;:::i;1816:260::-;1884:6;1892;1945:2;1933:9;1924:7;1920:23;1916:32;1913:52;;;1961:1;1958;1951:12;1913:52;1984:29;2003:9;1984:29;:::i;:::-;1974:39;;2032:38;2066:2;2055:9;2051:18;2032:38;:::i;:::-;2022:48;;1816:260;;;;;:::o;2081:328::-;2158:6;2166;2174;2227:2;2215:9;2206:7;2202:23;2198:32;2195:52;;;2243:1;2240;2233:12;2195:52;2266:29;2285:9;2266:29;:::i;:::-;2256:39;;2314:38;2348:2;2337:9;2333:18;2314:38;:::i;:::-;2304:48;;2399:2;2388:9;2384:18;2371:32;2361:42;;2081:328;;;;;:::o;2414:666::-;2509:6;2517;2525;2533;2586:3;2574:9;2565:7;2561:23;2557:33;2554:53;;;2603:1;2600;2593:12;2554:53;2626:29;2645:9;2626:29;:::i;:::-;2616:39;;2674:38;2708:2;2697:9;2693:18;2674:38;:::i;:::-;2664:48;;2759:2;2748:9;2744:18;2731:32;2721:42;;2814:2;2803:9;2799:18;2786:32;-1:-1:-1;;;;;2833:6:1;2830:30;2827:50;;;2873:1;2870;2863:12;2827:50;2896:22;;2949:4;2941:13;;2937:27;-1:-1:-1;2927:55:1;;2978:1;2975;2968:12;2927:55;3001:73;3066:7;3061:2;3048:16;3043:2;3039;3035:11;3001:73;:::i;:::-;2991:83;;;2414:666;;;;;;;:::o;3085:347::-;3150:6;3158;3211:2;3199:9;3190:7;3186:23;3182:32;3179:52;;;3227:1;3224;3217:12;3179:52;3250:29;3269:9;3250:29;:::i;:::-;3240:39;;3329:2;3318:9;3314:18;3301:32;3376:5;3369:13;3362:21;3355:5;3352:32;3342:60;;3398:1;3395;3388:12;3342:60;3421:5;3411:15;;;3085:347;;;;;:::o;3437:254::-;3505:6;3513;3566:2;3554:9;3545:7;3541:23;3537:32;3534:52;;;3582:1;3579;3572:12;3534:52;3605:29;3624:9;3605:29;:::i;:::-;3595:39;3681:2;3666:18;;;;3653:32;;-1:-1:-1;;;3437:254:1:o;3696:1157::-;3814:6;3822;3875:2;3863:9;3854:7;3850:23;3846:32;3843:52;;;3891:1;3888;3881:12;3843:52;3931:9;3918:23;-1:-1:-1;;;;;4001:2:1;3993:6;3990:14;3987:34;;;4017:1;4014;4007:12;3987:34;4055:6;4044:9;4040:22;4030:32;;4100:7;4093:4;4089:2;4085:13;4081:27;4071:55;;4122:1;4119;4112:12;4071:55;4158:2;4145:16;4180:4;4204:60;4220:43;4260:2;4220:43;:::i;4204:60::-;4286:3;4310:2;4305:3;4298:15;4338:2;4333:3;4329:12;4322:19;;4369:2;4365;4361:11;4417:7;4412:2;4406;4403:1;4399:10;4395:2;4391:19;4387:28;4384:41;4381:61;;;4438:1;4435;4428:12;4381:61;4460:1;4451:10;;4470:169;4484:2;4481:1;4478:9;4470:169;;;4541:23;4560:3;4541:23;:::i;:::-;4529:36;;4502:1;4495:9;;;;;4585:12;;;;4617;;4470:169;;;-1:-1:-1;4658:5:1;-1:-1:-1;;4701:18:1;;4688:32;;-1:-1:-1;;4732:16:1;;;4729:36;;;4761:1;4758;4751:12;4729:36;;4784:63;4839:7;4828:8;4817:9;4813:24;4784:63;:::i;:::-;4774:73;;;3696:1157;;;;;:::o;4858:245::-;4916:6;4969:2;4957:9;4948:7;4944:23;4940:32;4937:52;;;4985:1;4982;4975:12;4937:52;5024:9;5011:23;5043:30;5067:5;5043:30;:::i;5108:249::-;5177:6;5230:2;5218:9;5209:7;5205:23;5201:32;5198:52;;;5246:1;5243;5236:12;5198:52;5278:9;5272:16;5297:30;5321:5;5297:30;:::i;5362:592::-;5433:6;5441;5494:2;5482:9;5473:7;5469:23;5465:32;5462:52;;;5510:1;5507;5500:12;5462:52;5550:9;5537:23;-1:-1:-1;;;;;5620:2:1;5612:6;5609:14;5606:34;;;5636:1;5633;5626:12;5606:34;5674:6;5663:9;5659:22;5649:32;;5719:7;5712:4;5708:2;5704:13;5700:27;5690:55;;5741:1;5738;5731:12;5690:55;5781:2;5768:16;5807:2;5799:6;5796:14;5793:34;;;5823:1;5820;5813:12;5793:34;5868:7;5863:2;5854:6;5850:2;5846:15;5842:24;5839:37;5836:57;;;5889:1;5886;5879:12;5836:57;5920:2;5912:11;;;;;5942:6;;-1:-1:-1;5362:592:1;;-1:-1:-1;;;;5362:592:1:o;5959:450::-;6028:6;6081:2;6069:9;6060:7;6056:23;6052:32;6049:52;;;6097:1;6094;6087:12;6049:52;6137:9;6124:23;-1:-1:-1;;;;;6162:6:1;6159:30;6156:50;;;6202:1;6199;6192:12;6156:50;6225:22;;6278:4;6270:13;;6266:27;-1:-1:-1;6256:55:1;;6307:1;6304;6297:12;6256:55;6330:73;6395:7;6390:2;6377:16;6372:2;6368;6364:11;6330:73;:::i;6414:180::-;6473:6;6526:2;6514:9;6505:7;6501:23;6497:32;6494:52;;;6542:1;6539;6532:12;6494:52;-1:-1:-1;6565:23:1;;6414:180;-1:-1:-1;6414:180:1:o;6599:248::-;6667:6;6675;6728:2;6716:9;6707:7;6703:23;6699:32;6696:52;;;6744:1;6741;6734:12;6696:52;-1:-1:-1;;6767:23:1;;;6837:2;6822:18;;;6809:32;;-1:-1:-1;6599:248:1:o;6852:184::-;6910:6;6963:2;6951:9;6942:7;6938:23;6934:32;6931:52;;;6979:1;6976;6969:12;6931:52;7002:28;7020:9;7002:28;:::i;7041:184::-;7099:6;7152:2;7140:9;7131:7;7127:23;7123:32;7120:52;;;7168:1;7165;7158:12;7120:52;7191:28;7209:9;7191:28;:::i;7230:328::-;7304:6;7312;7320;7373:2;7361:9;7352:7;7348:23;7344:32;7341:52;;;7389:1;7386;7379:12;7341:52;7412:28;7430:9;7412:28;:::i;:::-;7402:38;;7459:37;7492:2;7481:9;7477:18;7459:37;:::i;:::-;7449:47;;7515:37;7548:2;7537:9;7533:18;7515:37;:::i;:::-;7505:47;;7230:328;;;;;:::o;7563:257::-;7604:3;7642:5;7636:12;7669:6;7664:3;7657:19;7685:63;7741:6;7734:4;7729:3;7725:14;7718:4;7711:5;7707:16;7685:63;:::i;:::-;7802:2;7781:15;-1:-1:-1;;7777:29:1;7768:39;;;;7809:4;7764:50;;7563:257;-1:-1:-1;;7563:257:1:o;7825:664::-;8052:3;8090:6;8084:13;8106:53;8152:6;8147:3;8140:4;8132:6;8128:17;8106:53;:::i;:::-;8222:13;;8181:16;;;;8244:57;8222:13;8181:16;8278:4;8266:17;;8244:57;:::i;:::-;8368:13;;8323:20;;;8390:57;8368:13;8323:20;8424:4;8412:17;;8390:57;:::i;:::-;8463:20;;7825:664;-1:-1:-1;;;;;7825:664:1:o;8912:488::-;-1:-1:-1;;;;;9181:15:1;;;9163:34;;9233:15;;9228:2;9213:18;;9206:43;9280:2;9265:18;;9258:34;;;9328:3;9323:2;9308:18;;9301:31;;;9106:4;;9349:45;;9374:19;;9366:6;9349:45;:::i;:::-;9341:53;8912:488;-1:-1:-1;;;;;;8912:488:1:o;9597:219::-;9746:2;9735:9;9728:21;9709:4;9766:44;9806:2;9795:9;9791:18;9783:6;9766:44;:::i;10224:410::-;10426:2;10408:21;;;10465:2;10445:18;;;10438:30;10504:34;10499:2;10484:18;;10477:62;-1:-1:-1;;;10570:2:1;10555:18;;10548:44;10624:3;10609:19;;10224:410::o;13098:354::-;13300:2;13282:21;;;13339:2;13319:18;;;13312:30;13378:32;13373:2;13358:18;;13351:60;13443:2;13428:18;;13098:354::o;15402:356::-;15604:2;15586:21;;;15623:18;;;15616:30;15682:34;15677:2;15662:18;;15655:62;15749:2;15734:18;;15402:356::o;18421:415::-;18623:2;18605:21;;;18662:2;18642:18;;;18635:30;18701:34;18696:2;18681:18;;18674:62;-1:-1:-1;;;18767:2:1;18752:18;;18745:49;18826:3;18811:19;;18421:415::o;25493:275::-;25564:2;25558:9;25629:2;25610:13;;-1:-1:-1;;25606:27:1;25594:40;;-1:-1:-1;;;;;25649:34:1;;25685:22;;;25646:62;25643:88;;;25711:18;;:::i;:::-;25747:2;25740:22;25493:275;;-1:-1:-1;25493:275:1:o;25773:183::-;25833:4;-1:-1:-1;;;;;25858:6:1;25855:30;25852:56;;;25888:18;;:::i;:::-;-1:-1:-1;25933:1:1;25929:14;25945:4;25925:25;;25773:183::o;25961:253::-;26001:3;-1:-1:-1;;;;;26090:2:1;26087:1;26083:10;26120:2;26117:1;26113:10;26151:3;26147:2;26143:12;26138:3;26135:21;26132:47;;;26159:18;;:::i;:::-;26195:13;;25961:253;-1:-1:-1;;;;25961:253:1:o;26219:128::-;26259:3;26290:1;26286:6;26283:1;26280:13;26277:39;;;26296:18;;:::i;:::-;-1:-1:-1;26332:9:1;;26219:128::o;26352:120::-;26392:1;26418;26408:35;;26423:18;;:::i;:::-;-1:-1:-1;26457:9:1;;26352:120::o;26477:168::-;26517:7;26583:1;26579;26575:6;26571:14;26568:1;26565:21;26560:1;26553:9;26546:17;26542:45;26539:71;;;26590:18;;:::i;:::-;-1:-1:-1;26630:9:1;;26477:168::o;26650:246::-;26690:4;-1:-1:-1;;;;;26803:10:1;;;;26773;;26825:12;;;26822:38;;;26840:18;;:::i;:::-;26877:13;;26650:246;-1:-1:-1;;;26650:246:1:o;26901:125::-;26941:4;26969:1;26966;26963:8;26960:34;;;26974:18;;:::i;:::-;-1:-1:-1;27011:9:1;;26901:125::o;27031:258::-;27103:1;27113:113;27127:6;27124:1;27121:13;27113:113;;;27203:11;;;27197:18;27184:11;;;27177:39;27149:2;27142:10;27113:113;;;27244:6;27241:1;27238:13;27235:48;;;-1:-1:-1;;27279:1:1;27261:16;;27254:27;27031:258::o;27294:136::-;27333:3;27361:5;27351:39;;27370:18;;:::i;:::-;-1:-1:-1;;;27406:18:1;;27294:136::o;27435:380::-;27514:1;27510:12;;;;27557;;;27578:61;;27632:4;27624:6;27620:17;27610:27;;27578:61;27685:2;27677:6;27674:14;27654:18;27651:38;27648:161;;;27731:10;27726:3;27722:20;27719:1;27712:31;27766:4;27763:1;27756:15;27794:4;27791:1;27784:15;27820:135;27859:3;-1:-1:-1;;27880:17:1;;27877:43;;;27900:18;;:::i;:::-;-1:-1:-1;27947:1:1;27936:13;;27820:135::o;27960:112::-;27992:1;28018;28008:35;;28023:18;;:::i;:::-;-1:-1:-1;28057:9:1;;27960:112::o;28077:127::-;28138:10;28133:3;28129:20;28126:1;28119:31;28169:4;28166:1;28159:15;28193:4;28190:1;28183:15;28209:127;28270:10;28265:3;28261:20;28258:1;28251:31;28301:4;28298:1;28291:15;28325:4;28322:1;28315:15;28341:127;28402:10;28397:3;28393:20;28390:1;28383:31;28433:4;28430:1;28423:15;28457:4;28454:1;28447:15;28473:127;28534:10;28529:3;28525:20;28522:1;28515:31;28565:4;28562:1;28555:15;28589:4;28586:1;28579:15;28605:131;-1:-1:-1;;;;;;28679:32:1;;28669:43;;28659:71;;28726:1;28723;28716:12

Swarm Source

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