ETH Price: $2,980.20 (+1.67%)
Gas: 2 Gwei

Token

Doodle Apes Society (DAS)
 

Overview

Max Total Supply

2,501 DAS

Holders

1,189

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 DAS
0x75d21642122cfadbb1b2c34965ca59719dcb2534
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
DoodleAS

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-08
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/**
 * @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);
    }
}

/**
 * @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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}


/*
 * @title MerkleProof
 * @dev Merkle proof verification
 * @note Based on https://github.com/ameensol/merkle-tree-solidity/blob/master/src/MerkleProof.sol
 */
library MerkleProof {
  
  function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf,
        uint index
    ) public pure returns (bool) {
        bytes32 hash = leaf;

        for (uint i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (index % 2 == 0) {
                hash = keccak256(abi.encodePacked(hash, proofElement));
            } else {
                hash = keccak256(abi.encodePacked(proofElement, hash));
            }

            index = index / 2;
        }

        return hash == root;
    }
}

/**
 * @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);
}

/**
 * @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);
}

/**
 * @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;
    }
}

/**
 * @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;
}

/**
 * @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);
}

/**
 * @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);
}

/*
 * @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;
    }
}

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _setOwner(address(0));
    }

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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


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

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

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

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

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

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

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

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

    /**
     * @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 _baseURI;
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

contract DoodleAS is ERC721Enumerable, Ownable
{
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    uint public constant _TOTALSUPPLY = 2500;
    uint256 public price = 50000000000000000; // 0.05 ETH
    bool public isPaused = true;
    bool public presale = true;
    bytes32 public merkleRoot = 0x3f755a721590785731b83e135c98ec66732bb48abffc88a341b88ab94e37cac4;

    mapping(address => bool) blacklistuser;

    constructor(string memory baseURI) ERC721("Doodle Apes Society", "DAS") {
        setBaseURI(baseURI);
    }

    function mint(address _to, uint256 quantity, bytes32[] memory _merkleProof, uint index) public payable isSaleOpen {
        require(isPaused == false, "Sale is not active at the moment");
        require(_to != address(0), "Mint to the zero address");

        uint256 maxquantity = 5;
        if (presale == true) {
            maxquantity = 3;
            require(blacklistuser[msg.sender] == false, "Already Minted User");
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(_merkleProof, merkleRoot, leaf, index), "Invalid proof");
        }

        require(quantity <= maxquantity, "Exceed max quantity");

        uint256 tokenId = totalSupply();

        require(price * quantity <= msg.value, "Wrong amount sent");
        for (uint256 i = 0; i < quantity; i++) {
            _safeMint(_to, tokenId);
            if (presale == true) {
                blacklistuser[msg.sender] = true;
            }
            tokenId++;
        }
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURI = baseURI;
    }

    function setWhitelistUser(bytes32 merkleRootHash) public onlyOwner {
        merkleRoot = merkleRootHash;
    }

    function getWhitelistUser() public view returns (bytes32) {
        return merkleRoot;
    }

    function flipPauseStatus() public onlyOwner {
        isPaused = !isPaused;
    }

    function flipPresaleStatus() public onlyOwner {
        presale = !presale;
    }

    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }

    function mintByOwner(address _to, uint256 quantity) public onlyOwner{
        require(_to != address(0), "Mint to the zero address");

        uint256 tokenId = totalSupply();
        for (uint256 i = 0; i < quantity; i++) {
            _safeMint(_to, tokenId);
            tokenId++;
        }
    }

    function setBlackList(address user) public onlyOwner {
        blacklistuser[user] = true;
    }

    function removeBlackList(address user) public onlyOwner {
        blacklistuser[user] = false;
    }

    function isBlackList(address user) public view returns (bool) {
        return blacklistuser[user];
    }

    modifier isSaleOpen{
        require(totalSupply() < _TOTALSUPPLY, "Mint wourd exceed totalSupply");
        _;
    }

    function tokensOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 count = balanceOf(_owner);
        uint256[] memory result = new uint256[](count);
        for (uint256 index = 0; index < count; index++) {
            result[index] = tokenOfOwnerByIndex(_owner, index);
        }
        return result;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_TOTALSUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresaleStatus","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":"getWhitelistUser","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isBlackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRootHash","type":"bytes32"}],"name":"setWhitelistUser","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec50000600c556001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055507f3f755a721590785731b83e135c98ec66732bb48abffc88a341b88ab94e37cac460001b600e553480156200007957600080fd5b50604051620053b4380380620053b483398181016040528101906200009f919062000407565b6040518060400160405280601381526020017f446f6f646c65204170657320536f6369657479000000000000000000000000008152506040518060400160405280600381526020017f4441530000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000123929190620002e5565b5080600190805190602001906200013c929190620002e5565b5050506000620001516200020860201b60201c565b905080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000201816200021060201b60201c565b50620005f2565b600033905090565b620002206200020860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000246620002bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200029f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000296906200048e565b60405180910390fd5b8060069080519060200190620002b7929190620002e5565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002f3906200055e565b90600052602060002090601f01602090048101928262000317576000855562000363565b82601f106200033257805160ff191683800117855562000363565b8280016001018555821562000363579182015b828111156200036257825182559160200191906001019062000345565b5b50905062000372919062000376565b5090565b5b808211156200039157600081600090555060010162000377565b5090565b6000620003ac620003a684620004e4565b620004b0565b905082815260208101848484011115620003c557600080fd5b620003d284828562000528565b509392505050565b600082601f830112620003ec57600080fd5b8151620003fe84826020860162000395565b91505092915050565b6000602082840312156200041a57600080fd5b600082015167ffffffffffffffff8111156200043557600080fd5b6200044384828501620003da565b91505092915050565b60006200045b60208362000517565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620004a9816200044c565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620004da57620004d9620005c3565b5b8060405250919050565b600067ffffffffffffffff821115620005025762000501620005c3565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b83811015620005485780820151818401526020810190506200052b565b8381111562000558576000848401525b50505050565b600060028204905060018216806200057757607f821691505b602082108114156200058e576200058d62000594565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614db280620006026000396000f3fe6080604052600436106102255760003560e01c80637270024111610123578063b36d6919116100ab578063e4997dc51161006f578063e4997dc5146107f8578063e985e9c514610821578063f2fde38b1461085e578063fa62884c14610887578063fdea8e0b1461089e57610225565b8063b36d6919146106ff578063b88d4fde1461073c578063c87b56dd14610765578063c908bebd146107a2578063db4568e2146107cd57610225565b806391b7f5ed116100f257806391b7f5ed1461062c57806395d89b4114610655578063a035b1fe14610680578063a22cb465146106ab578063b187bd26146106d457610225565b80637270024114610570578063743976a0146105995780638462151c146105c45780638da5cb5b1461060157610225565b80632eb4a7ab116101b15780634f6ccce7116101755780634f6ccce71461047957806355f804b3146104b65780636352211e146104df57806370a082311461051c578063715018a61461055957610225565b80632eb4a7ab146103a85780632f745c59146103d35780633542aee2146104105780633ccfd60b1461043957806342842e0e1461045057610225565b8063081812fc116101f8578063081812fc146102d7578063095ea7b3146103145780631725051f1461033d57806318160ddd1461035457806323b872dd1461037f57610225565b80630182a1111461022a57806301ffc9a71461024657806302071a6d1461028357806306fdde03146102ac575b600080fd5b610244600480360381019061023f9190613769565b6108c9565b005b34801561025257600080fd5b5061026d60048036038101906102689190613836565b610ce1565b60405161027a9190614485565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a5919061380d565b610d5b565b005b3480156102b857600080fd5b506102c1610de1565b6040516102ce91906144bb565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f991906138c9565b610e73565b60405161030b91906143b0565b60405180910390f35b34801561032057600080fd5b5061033b6004803603810190610336919061372d565b610ef8565b005b34801561034957600080fd5b50610352611010565b005b34801561036057600080fd5b506103696110b8565b60405161037691906147fd565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a19190613627565b6110c5565b005b3480156103b457600080fd5b506103bd611125565b6040516103ca91906144a0565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f5919061372d565b61112b565b60405161040791906147fd565b60405180910390f35b34801561041c57600080fd5b506104376004803603810190610432919061372d565b6111d0565b005b34801561044557600080fd5b5061044e611304565b005b34801561045c57600080fd5b5061047760048036038101906104729190613627565b6113cf565b005b34801561048557600080fd5b506104a0600480360381019061049b91906138c9565b6113ef565b6040516104ad91906147fd565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190613888565b611486565b005b3480156104eb57600080fd5b50610506600480360381019061050191906138c9565b61151c565b60405161051391906143b0565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e91906135c2565b6115ce565b60405161055091906147fd565b60405180910390f35b34801561056557600080fd5b5061056e611686565b005b34801561057c57600080fd5b50610597600480360381019061059291906135c2565b61178b565b005b3480156105a557600080fd5b506105ae611862565b6040516105bb91906144bb565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e691906135c2565b6118f0565b6040516105f89190614463565b60405180910390f35b34801561060d57600080fd5b506106166119ea565b60405161062391906143b0565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e91906138c9565b611a14565b005b34801561066157600080fd5b5061066a611a9a565b60405161067791906144bb565b60405180910390f35b34801561068c57600080fd5b50610695611b2c565b6040516106a291906147fd565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd91906136f1565b611b32565b005b3480156106e057600080fd5b506106e9611cb3565b6040516106f69190614485565b60405180910390f35b34801561070b57600080fd5b50610726600480360381019061072191906135c2565b611cc6565b6040516107339190614485565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190613676565b611d1c565b005b34801561077157600080fd5b5061078c600480360381019061078791906138c9565b611d7e565b60405161079991906144bb565b60405180910390f35b3480156107ae57600080fd5b506107b7611e62565b6040516107c491906144a0565b60405180910390f35b3480156107d957600080fd5b506107e2611e6c565b6040516107ef91906147fd565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a91906135c2565b611e72565b005b34801561082d57600080fd5b50610848600480360381019061084391906135eb565b611f49565b6040516108559190614485565b60405180910390f35b34801561086a57600080fd5b50610885600480360381019061088091906135c2565b611fdd565b005b34801561089357600080fd5b5061089c6120d5565b005b3480156108aa57600080fd5b506108b361217d565b6040516108c09190614485565b60405180910390f35b6109c46108d46110b8565b10610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b906144dd565b60405180910390fd5b60001515600d60009054906101000a900460ff1615151461096a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610961906147dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d1906147bd565b60405180910390fd5b60006005905060011515600d60019054906101000a900460ff1615151415610b8e576003905060001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a9061459d565b60405180910390fd5b600033604051602001610aa69190614364565b60405160208183030381529060405280519060200120905073ae72a183765096a8f635cb443bd60b75bf881be76321fb335c85600e5484876040518563ffffffff1660e01b8152600401610afd9493929190614417565b60206040518083038186803b158015610b1557600080fd5b505af4158015610b29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4d91906137e4565b610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b839061479d565b60405180910390fd5b505b80841115610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc8906144fd565b60405180910390fd5b6000610bdb6110b8565b90503485600c54610bec9190614a11565b1115610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c249061471d565b60405180910390fd5b60005b85811015610cd857610c428783612190565b60011515600d60019054906101000a900460ff1615151415610cb7576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8180610cc290614b91565b9250508080610cd090614b91565b915050610c30565b50505050505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d545750610d53826121ae565b5b9050919050565b610d63612290565b73ffffffffffffffffffffffffffffffffffffffff16610d816119ea565b73ffffffffffffffffffffffffffffffffffffffff1614610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce906146bd565b60405180910390fd5b80600e8190555050565b606060008054610df090614b5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1c90614b5f565b8015610e695780601f10610e3e57610100808354040283529160200191610e69565b820191906000526020600020905b815481529060010190602001808311610e4c57829003601f168201915b5050505050905090565b6000610e7e82612298565b610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb49061469d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f038261151c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b9061473d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f93612290565b73ffffffffffffffffffffffffffffffffffffffff161480610fc25750610fc181610fbc612290565b611f49565b5b611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff89061461d565b60405180910390fd5b61100b8383612304565b505050565b611018612290565b73ffffffffffffffffffffffffffffffffffffffff166110366119ea565b73ffffffffffffffffffffffffffffffffffffffff161461108c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611083906146bd565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6000600980549050905090565b6110d66110d0612290565b826123bd565b611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c9061475d565b60405180910390fd5b61112083838361249b565b505050565b600e5481565b6000611136836115ce565b8210611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e9061451d565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111d8612290565b73ffffffffffffffffffffffffffffffffffffffff166111f66119ea565b73ffffffffffffffffffffffffffffffffffffffff161461124c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611243906146bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b3906147bd565b60405180910390fd5b60006112c66110b8565b905060005b828110156112fe576112dd8483612190565b81806112e890614b91565b92505080806112f690614b91565b9150506112cb565b50505050565b61130c612290565b73ffffffffffffffffffffffffffffffffffffffff1661132a6119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611380576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611377906146bd565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113cb573d6000803e3d6000fd5b5050565b6113ea83838360405180602001604052806000815250611d1c565b505050565b60006113f96110b8565b821061143a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114319061477d565b60405180910390fd5b60098281548110611474577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61148e612290565b73ffffffffffffffffffffffffffffffffffffffff166114ac6119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f9906146bd565b60405180910390fd5b8060069080519060200190611518929190613326565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc9061465d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561163f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116369061463d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61168e612290565b73ffffffffffffffffffffffffffffffffffffffff166116ac6119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f9906146bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361178960006126f7565b565b611793612290565b73ffffffffffffffffffffffffffffffffffffffff166117b16119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe906146bd565b60405180910390fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6006805461186f90614b5f565b80601f016020809104026020016040519081016040528092919081815260200182805461189b90614b5f565b80156118e85780601f106118bd576101008083540402835291602001916118e8565b820191906000526020600020905b8154815290600101906020018083116118cb57829003601f168201915b505050505081565b606060006118fd836115ce565b905060008167ffffffffffffffff811115611941577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561196f5781602001602082028036833780820191505090505b50905060005b828110156119df57611987858261112b565b8282815181106119c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806119d790614b91565b915050611975565b508092505050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a1c612290565b73ffffffffffffffffffffffffffffffffffffffff16611a3a6119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a87906146bd565b60405180910390fd5b80600c8190555050565b606060018054611aa990614b5f565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad590614b5f565b8015611b225780601f10611af757610100808354040283529160200191611b22565b820191906000526020600020905b815481529060010190602001808311611b0557829003601f168201915b5050505050905090565b600c5481565b611b3a612290565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f906145dd565b60405180910390fd5b8060056000611bb5612290565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c62612290565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ca79190614485565b60405180910390a35050565b600d60009054906101000a900460ff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d2d611d27612290565b836123bd565b611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d639061475d565b60405180910390fd5b611d78848484846127bd565b50505050565b6060611d8982612298565b611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf906146fd565b60405180910390fd5b6000611dd2612819565b905060006040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525090506000825111611e2c5760405180602001604052806000815250611e59565b81611e36856128ab565b82604051602001611e499392919061437f565b6040516020818303038152906040525b92505050919050565b6000600e54905090565b6109c481565b611e7a612290565b73ffffffffffffffffffffffffffffffffffffffff16611e986119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee5906146bd565b60405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fe5612290565b73ffffffffffffffffffffffffffffffffffffffff166120036119ea565b73ffffffffffffffffffffffffffffffffffffffff1614612059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612050906146bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c09061455d565b60405180910390fd5b6120d2816126f7565b50565b6120dd612290565b73ffffffffffffffffffffffffffffffffffffffff166120fb6119ea565b73ffffffffffffffffffffffffffffffffffffffff1614612151576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612148906146bd565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60019054906101000a900460ff1681565b6121aa828260405180602001604052806000815250612a58565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061227957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612289575061228882612ab3565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123778361151c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123c882612298565b612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe906145fd565b60405180910390fd5b60006124128361151c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061248157508373ffffffffffffffffffffffffffffffffffffffff1661246984610e73565b73ffffffffffffffffffffffffffffffffffffffff16145b8061249257506124918185611f49565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124bb8261151c565b73ffffffffffffffffffffffffffffffffffffffff1614612511576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612508906146dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612581576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612578906145bd565b60405180910390fd5b61258c838383612b1d565b612597600082612304565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125e79190614a6b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461263e919061498a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127c884848461249b565b6127d484848484612c31565b612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a9061453d565b60405180910390fd5b50505050565b60606006805461282890614b5f565b80601f016020809104026020016040519081016040528092919081815260200182805461285490614b5f565b80156128a15780601f10612876576101008083540402835291602001916128a1565b820191906000526020600020905b81548152906001019060200180831161288457829003601f168201915b5050505050905090565b606060008214156128f3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a53565b600082905060005b6000821461292557808061290e90614b91565b915050600a8261291e91906149e0565b91506128fb565b60008167ffffffffffffffff811115612967577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129995781602001600182028036833780820191505090505b5090505b60008514612a4c576001826129b29190614a6b565b9150600a856129c19190614bfe565b60306129cd919061498a565b60f81b818381518110612a09577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a4591906149e0565b945061299d565b8093505050505b919050565b612a628383612dc8565b612a6f6000848484612c31565b612aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa59061453d565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b28838383612f96565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b6b57612b6681612f9b565b612baa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ba957612ba88382612fe4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bed57612be881613151565b612c2c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c2b57612c2a8282613294565b5b5b505050565b6000612c528473ffffffffffffffffffffffffffffffffffffffff16613313565b15612dbb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c7b612290565b8786866040518563ffffffff1660e01b8152600401612c9d94939291906143cb565b602060405180830381600087803b158015612cb757600080fd5b505af1925050508015612ce857506040513d601f19601f82011682018060405250810190612ce5919061385f565b60015b612d6b573d8060008114612d18576040519150601f19603f3d011682016040523d82523d6000602084013e612d1d565b606091505b50600081511415612d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5a9061453d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dc0565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2f9061467d565b60405180910390fd5b612e4181612298565b15612e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e789061457d565b60405180910390fd5b612e8d60008383612b1d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612edd919061498a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ff1846115ce565b612ffb9190614a6b565b90506000600860008481526020019081526020016000205490508181146130e0576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506131659190614a6b565b90506000600a60008481526020019081526020016000205490506000600983815481106131bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613203577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613278577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061329f836115ce565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461333290614b5f565b90600052602060002090601f016020900481019282613354576000855561339b565b82601f1061336d57805160ff191683800117855561339b565b8280016001018555821561339b579182015b8281111561339a57825182559160200191906001019061337f565b5b5090506133a891906133ac565b5090565b5b808211156133c55760008160009055506001016133ad565b5090565b60006133dc6133d784614849565b614818565b905080838252602082019050828560208602820111156133fb57600080fd5b60005b8581101561342b5781613411888261351a565b8452602084019350602083019250506001810190506133fe565b5050509392505050565b600061344861344384614875565b614818565b90508281526020810184848401111561346057600080fd5b61346b848285614b1d565b509392505050565b6000613486613481846148a5565b614818565b90508281526020810184848401111561349e57600080fd5b6134a9848285614b1d565b509392505050565b6000813590506134c081614d09565b92915050565b600082601f8301126134d757600080fd5b81356134e78482602086016133c9565b91505092915050565b6000813590506134ff81614d20565b92915050565b60008151905061351481614d20565b92915050565b60008135905061352981614d37565b92915050565b60008135905061353e81614d4e565b92915050565b60008151905061355381614d4e565b92915050565b600082601f83011261356a57600080fd5b813561357a848260208601613435565b91505092915050565b600082601f83011261359457600080fd5b81356135a4848260208601613473565b91505092915050565b6000813590506135bc81614d65565b92915050565b6000602082840312156135d457600080fd5b60006135e2848285016134b1565b91505092915050565b600080604083850312156135fe57600080fd5b600061360c858286016134b1565b925050602061361d858286016134b1565b9150509250929050565b60008060006060848603121561363c57600080fd5b600061364a868287016134b1565b935050602061365b868287016134b1565b925050604061366c868287016135ad565b9150509250925092565b6000806000806080858703121561368c57600080fd5b600061369a878288016134b1565b94505060206136ab878288016134b1565b93505060406136bc878288016135ad565b925050606085013567ffffffffffffffff8111156136d957600080fd5b6136e587828801613559565b91505092959194509250565b6000806040838503121561370457600080fd5b6000613712858286016134b1565b9250506020613723858286016134f0565b9150509250929050565b6000806040838503121561374057600080fd5b600061374e858286016134b1565b925050602061375f858286016135ad565b9150509250929050565b6000806000806080858703121561377f57600080fd5b600061378d878288016134b1565b945050602061379e878288016135ad565b935050604085013567ffffffffffffffff8111156137bb57600080fd5b6137c7878288016134c6565b92505060606137d8878288016135ad565b91505092959194509250565b6000602082840312156137f657600080fd5b600061380484828501613505565b91505092915050565b60006020828403121561381f57600080fd5b600061382d8482850161351a565b91505092915050565b60006020828403121561384857600080fd5b60006138568482850161352f565b91505092915050565b60006020828403121561387157600080fd5b600061387f84828501613544565b91505092915050565b60006020828403121561389a57600080fd5b600082013567ffffffffffffffff8111156138b457600080fd5b6138c084828501613583565b91505092915050565b6000602082840312156138db57600080fd5b60006138e9848285016135ad565b91505092915050565b60006138fe8383613a31565b60208301905092915050565b60006139168383614337565b60208301905092915050565b61392b81614a9f565b82525050565b61394261393d82614a9f565b614bda565b82525050565b6000613953826148f5565b61395d818561493b565b9350613968836148d5565b8060005b8381101561399957815161398088826138f2565b975061398b83614921565b92505060018101905061396c565b5085935050505092915050565b60006139b182614900565b6139bb818561494c565b93506139c6836148e5565b8060005b838110156139f75781516139de888261390a565b97506139e98361492e565b9250506001810190506139ca565b5085935050505092915050565b613a0d81614ab1565b82525050565b613a1c81614abd565b82525050565b613a2b81614abd565b82525050565b613a3a81614abd565b82525050565b6000613a4b8261490b565b613a55818561495d565b9350613a65818560208601614b2c565b613a6e81614ceb565b840191505092915050565b6000613a8482614916565b613a8e818561496e565b9350613a9e818560208601614b2c565b613aa781614ceb565b840191505092915050565b6000613abd82614916565b613ac7818561497f565b9350613ad7818560208601614b2c565b80840191505092915050565b6000613af0601d8361496e565b91507f4d696e7420776f7572642065786365656420746f74616c537570706c790000006000830152602082019050919050565b6000613b3060138361496e565b91507f457863656564206d6178207175616e74697479000000000000000000000000006000830152602082019050919050565b6000613b70602b8361496e565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613bd660328361496e565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613c3c60268361496e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ca2601c8361496e565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613ce260138361496e565b91507f416c7265616479204d696e7465642055736572000000000000000000000000006000830152602082019050919050565b6000613d2260248361496e565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d8860198361496e565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613dc8602c8361496e565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e2e60388361496e565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613e94602a8361496e565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613efa60298361496e565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f6060208361496e565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613fa0602c8361496e565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061400660208361496e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061404660298361496e565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006140ac602f8361496e565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061411260118361496e565b91507f57726f6e6720616d6f756e742073656e740000000000000000000000000000006000830152602082019050919050565b600061415260218361496e565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141b860318361496e565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061421e602c8361496e565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614284600d8361496e565b91507f496e76616c69642070726f6f66000000000000000000000000000000000000006000830152602082019050919050565b60006142c460188361496e565b91507f4d696e7420746f20746865207a65726f206164647265737300000000000000006000830152602082019050919050565b600061430460208361496e565b91507f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746000830152602082019050919050565b61434081614b13565b82525050565b61434f81614b13565b82525050565b61435e81614b13565b82525050565b60006143708284613931565b60148201915081905092915050565b600061438b8286613ab2565b91506143978285613ab2565b91506143a38284613ab2565b9150819050949350505050565b60006020820190506143c56000830184613922565b92915050565b60006080820190506143e06000830187613922565b6143ed6020830186613922565b6143fa6040830185614346565b818103606083015261440c8184613a40565b905095945050505050565b600060808201905081810360008301526144318187613948565b90506144406020830186613a22565b61444d6040830185613a22565b61445a6060830184614355565b95945050505050565b6000602082019050818103600083015261447d81846139a6565b905092915050565b600060208201905061449a6000830184613a04565b92915050565b60006020820190506144b56000830184613a13565b92915050565b600060208201905081810360008301526144d58184613a79565b905092915050565b600060208201905081810360008301526144f681613ae3565b9050919050565b6000602082019050818103600083015261451681613b23565b9050919050565b6000602082019050818103600083015261453681613b63565b9050919050565b6000602082019050818103600083015261455681613bc9565b9050919050565b6000602082019050818103600083015261457681613c2f565b9050919050565b6000602082019050818103600083015261459681613c95565b9050919050565b600060208201905081810360008301526145b681613cd5565b9050919050565b600060208201905081810360008301526145d681613d15565b9050919050565b600060208201905081810360008301526145f681613d7b565b9050919050565b6000602082019050818103600083015261461681613dbb565b9050919050565b6000602082019050818103600083015261463681613e21565b9050919050565b6000602082019050818103600083015261465681613e87565b9050919050565b6000602082019050818103600083015261467681613eed565b9050919050565b6000602082019050818103600083015261469681613f53565b9050919050565b600060208201905081810360008301526146b681613f93565b9050919050565b600060208201905081810360008301526146d681613ff9565b9050919050565b600060208201905081810360008301526146f681614039565b9050919050565b600060208201905081810360008301526147168161409f565b9050919050565b6000602082019050818103600083015261473681614105565b9050919050565b6000602082019050818103600083015261475681614145565b9050919050565b60006020820190508181036000830152614776816141ab565b9050919050565b6000602082019050818103600083015261479681614211565b9050919050565b600060208201905081810360008301526147b681614277565b9050919050565b600060208201905081810360008301526147d6816142b7565b9050919050565b600060208201905081810360008301526147f6816142f7565b9050919050565b60006020820190506148126000830184614346565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561483f5761483e614cbc565b5b8060405250919050565b600067ffffffffffffffff82111561486457614863614cbc565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156148905761488f614cbc565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156148c0576148bf614cbc565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061499582614b13565b91506149a083614b13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149d5576149d4614c2f565b5b828201905092915050565b60006149eb82614b13565b91506149f683614b13565b925082614a0657614a05614c5e565b5b828204905092915050565b6000614a1c82614b13565b9150614a2783614b13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a6057614a5f614c2f565b5b828202905092915050565b6000614a7682614b13565b9150614a8183614b13565b925082821015614a9457614a93614c2f565b5b828203905092915050565b6000614aaa82614af3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b4a578082015181840152602081019050614b2f565b83811115614b59576000848401525b50505050565b60006002820490506001821680614b7757607f821691505b60208210811415614b8b57614b8a614c8d565b5b50919050565b6000614b9c82614b13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bcf57614bce614c2f565b5b600182019050919050565b6000614be582614bec565b9050919050565b6000614bf782614cfc565b9050919050565b6000614c0982614b13565b9150614c1483614b13565b925082614c2457614c23614c5e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b614d1281614a9f565b8114614d1d57600080fd5b50565b614d2981614ab1565b8114614d3457600080fd5b50565b614d4081614abd565b8114614d4b57600080fd5b50565b614d5781614ac7565b8114614d6257600080fd5b50565b614d6e81614b13565b8114614d7957600080fd5b5056fea2646970667358221220136ab5618d1ce9ecce564889617bfc94c59df5a9ac11aa7e96b12e680d4633b364736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d566261564d485a507432415a656d6d314c7a45553467314772473138464c4651705658794a62444b7135704c2f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637270024111610123578063b36d6919116100ab578063e4997dc51161006f578063e4997dc5146107f8578063e985e9c514610821578063f2fde38b1461085e578063fa62884c14610887578063fdea8e0b1461089e57610225565b8063b36d6919146106ff578063b88d4fde1461073c578063c87b56dd14610765578063c908bebd146107a2578063db4568e2146107cd57610225565b806391b7f5ed116100f257806391b7f5ed1461062c57806395d89b4114610655578063a035b1fe14610680578063a22cb465146106ab578063b187bd26146106d457610225565b80637270024114610570578063743976a0146105995780638462151c146105c45780638da5cb5b1461060157610225565b80632eb4a7ab116101b15780634f6ccce7116101755780634f6ccce71461047957806355f804b3146104b65780636352211e146104df57806370a082311461051c578063715018a61461055957610225565b80632eb4a7ab146103a85780632f745c59146103d35780633542aee2146104105780633ccfd60b1461043957806342842e0e1461045057610225565b8063081812fc116101f8578063081812fc146102d7578063095ea7b3146103145780631725051f1461033d57806318160ddd1461035457806323b872dd1461037f57610225565b80630182a1111461022a57806301ffc9a71461024657806302071a6d1461028357806306fdde03146102ac575b600080fd5b610244600480360381019061023f9190613769565b6108c9565b005b34801561025257600080fd5b5061026d60048036038101906102689190613836565b610ce1565b60405161027a9190614485565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a5919061380d565b610d5b565b005b3480156102b857600080fd5b506102c1610de1565b6040516102ce91906144bb565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f991906138c9565b610e73565b60405161030b91906143b0565b60405180910390f35b34801561032057600080fd5b5061033b6004803603810190610336919061372d565b610ef8565b005b34801561034957600080fd5b50610352611010565b005b34801561036057600080fd5b506103696110b8565b60405161037691906147fd565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a19190613627565b6110c5565b005b3480156103b457600080fd5b506103bd611125565b6040516103ca91906144a0565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f5919061372d565b61112b565b60405161040791906147fd565b60405180910390f35b34801561041c57600080fd5b506104376004803603810190610432919061372d565b6111d0565b005b34801561044557600080fd5b5061044e611304565b005b34801561045c57600080fd5b5061047760048036038101906104729190613627565b6113cf565b005b34801561048557600080fd5b506104a0600480360381019061049b91906138c9565b6113ef565b6040516104ad91906147fd565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190613888565b611486565b005b3480156104eb57600080fd5b50610506600480360381019061050191906138c9565b61151c565b60405161051391906143b0565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e91906135c2565b6115ce565b60405161055091906147fd565b60405180910390f35b34801561056557600080fd5b5061056e611686565b005b34801561057c57600080fd5b50610597600480360381019061059291906135c2565b61178b565b005b3480156105a557600080fd5b506105ae611862565b6040516105bb91906144bb565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e691906135c2565b6118f0565b6040516105f89190614463565b60405180910390f35b34801561060d57600080fd5b506106166119ea565b60405161062391906143b0565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e91906138c9565b611a14565b005b34801561066157600080fd5b5061066a611a9a565b60405161067791906144bb565b60405180910390f35b34801561068c57600080fd5b50610695611b2c565b6040516106a291906147fd565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd91906136f1565b611b32565b005b3480156106e057600080fd5b506106e9611cb3565b6040516106f69190614485565b60405180910390f35b34801561070b57600080fd5b50610726600480360381019061072191906135c2565b611cc6565b6040516107339190614485565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190613676565b611d1c565b005b34801561077157600080fd5b5061078c600480360381019061078791906138c9565b611d7e565b60405161079991906144bb565b60405180910390f35b3480156107ae57600080fd5b506107b7611e62565b6040516107c491906144a0565b60405180910390f35b3480156107d957600080fd5b506107e2611e6c565b6040516107ef91906147fd565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a91906135c2565b611e72565b005b34801561082d57600080fd5b50610848600480360381019061084391906135eb565b611f49565b6040516108559190614485565b60405180910390f35b34801561086a57600080fd5b50610885600480360381019061088091906135c2565b611fdd565b005b34801561089357600080fd5b5061089c6120d5565b005b3480156108aa57600080fd5b506108b361217d565b6040516108c09190614485565b60405180910390f35b6109c46108d46110b8565b10610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b906144dd565b60405180910390fd5b60001515600d60009054906101000a900460ff1615151461096a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610961906147dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d1906147bd565b60405180910390fd5b60006005905060011515600d60019054906101000a900460ff1615151415610b8e576003905060001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a9061459d565b60405180910390fd5b600033604051602001610aa69190614364565b60405160208183030381529060405280519060200120905073ae72a183765096a8f635cb443bd60b75bf881be76321fb335c85600e5484876040518563ffffffff1660e01b8152600401610afd9493929190614417565b60206040518083038186803b158015610b1557600080fd5b505af4158015610b29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4d91906137e4565b610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b839061479d565b60405180910390fd5b505b80841115610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc8906144fd565b60405180910390fd5b6000610bdb6110b8565b90503485600c54610bec9190614a11565b1115610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c249061471d565b60405180910390fd5b60005b85811015610cd857610c428783612190565b60011515600d60019054906101000a900460ff1615151415610cb7576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8180610cc290614b91565b9250508080610cd090614b91565b915050610c30565b50505050505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d545750610d53826121ae565b5b9050919050565b610d63612290565b73ffffffffffffffffffffffffffffffffffffffff16610d816119ea565b73ffffffffffffffffffffffffffffffffffffffff1614610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce906146bd565b60405180910390fd5b80600e8190555050565b606060008054610df090614b5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1c90614b5f565b8015610e695780601f10610e3e57610100808354040283529160200191610e69565b820191906000526020600020905b815481529060010190602001808311610e4c57829003601f168201915b5050505050905090565b6000610e7e82612298565b610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb49061469d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f038261151c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b9061473d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f93612290565b73ffffffffffffffffffffffffffffffffffffffff161480610fc25750610fc181610fbc612290565b611f49565b5b611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff89061461d565b60405180910390fd5b61100b8383612304565b505050565b611018612290565b73ffffffffffffffffffffffffffffffffffffffff166110366119ea565b73ffffffffffffffffffffffffffffffffffffffff161461108c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611083906146bd565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6000600980549050905090565b6110d66110d0612290565b826123bd565b611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c9061475d565b60405180910390fd5b61112083838361249b565b505050565b600e5481565b6000611136836115ce565b8210611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e9061451d565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111d8612290565b73ffffffffffffffffffffffffffffffffffffffff166111f66119ea565b73ffffffffffffffffffffffffffffffffffffffff161461124c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611243906146bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b3906147bd565b60405180910390fd5b60006112c66110b8565b905060005b828110156112fe576112dd8483612190565b81806112e890614b91565b92505080806112f690614b91565b9150506112cb565b50505050565b61130c612290565b73ffffffffffffffffffffffffffffffffffffffff1661132a6119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611380576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611377906146bd565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113cb573d6000803e3d6000fd5b5050565b6113ea83838360405180602001604052806000815250611d1c565b505050565b60006113f96110b8565b821061143a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114319061477d565b60405180910390fd5b60098281548110611474577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61148e612290565b73ffffffffffffffffffffffffffffffffffffffff166114ac6119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f9906146bd565b60405180910390fd5b8060069080519060200190611518929190613326565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc9061465d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561163f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116369061463d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61168e612290565b73ffffffffffffffffffffffffffffffffffffffff166116ac6119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f9906146bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361178960006126f7565b565b611793612290565b73ffffffffffffffffffffffffffffffffffffffff166117b16119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe906146bd565b60405180910390fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6006805461186f90614b5f565b80601f016020809104026020016040519081016040528092919081815260200182805461189b90614b5f565b80156118e85780601f106118bd576101008083540402835291602001916118e8565b820191906000526020600020905b8154815290600101906020018083116118cb57829003601f168201915b505050505081565b606060006118fd836115ce565b905060008167ffffffffffffffff811115611941577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561196f5781602001602082028036833780820191505090505b50905060005b828110156119df57611987858261112b565b8282815181106119c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806119d790614b91565b915050611975565b508092505050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a1c612290565b73ffffffffffffffffffffffffffffffffffffffff16611a3a6119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a87906146bd565b60405180910390fd5b80600c8190555050565b606060018054611aa990614b5f565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad590614b5f565b8015611b225780601f10611af757610100808354040283529160200191611b22565b820191906000526020600020905b815481529060010190602001808311611b0557829003601f168201915b5050505050905090565b600c5481565b611b3a612290565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f906145dd565b60405180910390fd5b8060056000611bb5612290565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c62612290565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ca79190614485565b60405180910390a35050565b600d60009054906101000a900460ff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d2d611d27612290565b836123bd565b611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d639061475d565b60405180910390fd5b611d78848484846127bd565b50505050565b6060611d8982612298565b611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf906146fd565b60405180910390fd5b6000611dd2612819565b905060006040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525090506000825111611e2c5760405180602001604052806000815250611e59565b81611e36856128ab565b82604051602001611e499392919061437f565b6040516020818303038152906040525b92505050919050565b6000600e54905090565b6109c481565b611e7a612290565b73ffffffffffffffffffffffffffffffffffffffff16611e986119ea565b73ffffffffffffffffffffffffffffffffffffffff1614611eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee5906146bd565b60405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fe5612290565b73ffffffffffffffffffffffffffffffffffffffff166120036119ea565b73ffffffffffffffffffffffffffffffffffffffff1614612059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612050906146bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c09061455d565b60405180910390fd5b6120d2816126f7565b50565b6120dd612290565b73ffffffffffffffffffffffffffffffffffffffff166120fb6119ea565b73ffffffffffffffffffffffffffffffffffffffff1614612151576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612148906146bd565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60019054906101000a900460ff1681565b6121aa828260405180602001604052806000815250612a58565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061227957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612289575061228882612ab3565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123778361151c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123c882612298565b612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe906145fd565b60405180910390fd5b60006124128361151c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061248157508373ffffffffffffffffffffffffffffffffffffffff1661246984610e73565b73ffffffffffffffffffffffffffffffffffffffff16145b8061249257506124918185611f49565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124bb8261151c565b73ffffffffffffffffffffffffffffffffffffffff1614612511576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612508906146dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612581576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612578906145bd565b60405180910390fd5b61258c838383612b1d565b612597600082612304565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125e79190614a6b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461263e919061498a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127c884848461249b565b6127d484848484612c31565b612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a9061453d565b60405180910390fd5b50505050565b60606006805461282890614b5f565b80601f016020809104026020016040519081016040528092919081815260200182805461285490614b5f565b80156128a15780601f10612876576101008083540402835291602001916128a1565b820191906000526020600020905b81548152906001019060200180831161288457829003601f168201915b5050505050905090565b606060008214156128f3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a53565b600082905060005b6000821461292557808061290e90614b91565b915050600a8261291e91906149e0565b91506128fb565b60008167ffffffffffffffff811115612967577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129995781602001600182028036833780820191505090505b5090505b60008514612a4c576001826129b29190614a6b565b9150600a856129c19190614bfe565b60306129cd919061498a565b60f81b818381518110612a09577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a4591906149e0565b945061299d565b8093505050505b919050565b612a628383612dc8565b612a6f6000848484612c31565b612aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa59061453d565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b28838383612f96565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b6b57612b6681612f9b565b612baa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ba957612ba88382612fe4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bed57612be881613151565b612c2c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c2b57612c2a8282613294565b5b5b505050565b6000612c528473ffffffffffffffffffffffffffffffffffffffff16613313565b15612dbb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c7b612290565b8786866040518563ffffffff1660e01b8152600401612c9d94939291906143cb565b602060405180830381600087803b158015612cb757600080fd5b505af1925050508015612ce857506040513d601f19601f82011682018060405250810190612ce5919061385f565b60015b612d6b573d8060008114612d18576040519150601f19603f3d011682016040523d82523d6000602084013e612d1d565b606091505b50600081511415612d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5a9061453d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dc0565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2f9061467d565b60405180910390fd5b612e4181612298565b15612e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e789061457d565b60405180910390fd5b612e8d60008383612b1d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612edd919061498a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ff1846115ce565b612ffb9190614a6b565b90506000600860008481526020019081526020016000205490508181146130e0576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506131659190614a6b565b90506000600a60008481526020019081526020016000205490506000600983815481106131bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613203577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613278577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061329f836115ce565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461333290614b5f565b90600052602060002090601f016020900481019282613354576000855561339b565b82601f1061336d57805160ff191683800117855561339b565b8280016001018555821561339b579182015b8281111561339a57825182559160200191906001019061337f565b5b5090506133a891906133ac565b5090565b5b808211156133c55760008160009055506001016133ad565b5090565b60006133dc6133d784614849565b614818565b905080838252602082019050828560208602820111156133fb57600080fd5b60005b8581101561342b5781613411888261351a565b8452602084019350602083019250506001810190506133fe565b5050509392505050565b600061344861344384614875565b614818565b90508281526020810184848401111561346057600080fd5b61346b848285614b1d565b509392505050565b6000613486613481846148a5565b614818565b90508281526020810184848401111561349e57600080fd5b6134a9848285614b1d565b509392505050565b6000813590506134c081614d09565b92915050565b600082601f8301126134d757600080fd5b81356134e78482602086016133c9565b91505092915050565b6000813590506134ff81614d20565b92915050565b60008151905061351481614d20565b92915050565b60008135905061352981614d37565b92915050565b60008135905061353e81614d4e565b92915050565b60008151905061355381614d4e565b92915050565b600082601f83011261356a57600080fd5b813561357a848260208601613435565b91505092915050565b600082601f83011261359457600080fd5b81356135a4848260208601613473565b91505092915050565b6000813590506135bc81614d65565b92915050565b6000602082840312156135d457600080fd5b60006135e2848285016134b1565b91505092915050565b600080604083850312156135fe57600080fd5b600061360c858286016134b1565b925050602061361d858286016134b1565b9150509250929050565b60008060006060848603121561363c57600080fd5b600061364a868287016134b1565b935050602061365b868287016134b1565b925050604061366c868287016135ad565b9150509250925092565b6000806000806080858703121561368c57600080fd5b600061369a878288016134b1565b94505060206136ab878288016134b1565b93505060406136bc878288016135ad565b925050606085013567ffffffffffffffff8111156136d957600080fd5b6136e587828801613559565b91505092959194509250565b6000806040838503121561370457600080fd5b6000613712858286016134b1565b9250506020613723858286016134f0565b9150509250929050565b6000806040838503121561374057600080fd5b600061374e858286016134b1565b925050602061375f858286016135ad565b9150509250929050565b6000806000806080858703121561377f57600080fd5b600061378d878288016134b1565b945050602061379e878288016135ad565b935050604085013567ffffffffffffffff8111156137bb57600080fd5b6137c7878288016134c6565b92505060606137d8878288016135ad565b91505092959194509250565b6000602082840312156137f657600080fd5b600061380484828501613505565b91505092915050565b60006020828403121561381f57600080fd5b600061382d8482850161351a565b91505092915050565b60006020828403121561384857600080fd5b60006138568482850161352f565b91505092915050565b60006020828403121561387157600080fd5b600061387f84828501613544565b91505092915050565b60006020828403121561389a57600080fd5b600082013567ffffffffffffffff8111156138b457600080fd5b6138c084828501613583565b91505092915050565b6000602082840312156138db57600080fd5b60006138e9848285016135ad565b91505092915050565b60006138fe8383613a31565b60208301905092915050565b60006139168383614337565b60208301905092915050565b61392b81614a9f565b82525050565b61394261393d82614a9f565b614bda565b82525050565b6000613953826148f5565b61395d818561493b565b9350613968836148d5565b8060005b8381101561399957815161398088826138f2565b975061398b83614921565b92505060018101905061396c565b5085935050505092915050565b60006139b182614900565b6139bb818561494c565b93506139c6836148e5565b8060005b838110156139f75781516139de888261390a565b97506139e98361492e565b9250506001810190506139ca565b5085935050505092915050565b613a0d81614ab1565b82525050565b613a1c81614abd565b82525050565b613a2b81614abd565b82525050565b613a3a81614abd565b82525050565b6000613a4b8261490b565b613a55818561495d565b9350613a65818560208601614b2c565b613a6e81614ceb565b840191505092915050565b6000613a8482614916565b613a8e818561496e565b9350613a9e818560208601614b2c565b613aa781614ceb565b840191505092915050565b6000613abd82614916565b613ac7818561497f565b9350613ad7818560208601614b2c565b80840191505092915050565b6000613af0601d8361496e565b91507f4d696e7420776f7572642065786365656420746f74616c537570706c790000006000830152602082019050919050565b6000613b3060138361496e565b91507f457863656564206d6178207175616e74697479000000000000000000000000006000830152602082019050919050565b6000613b70602b8361496e565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613bd660328361496e565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613c3c60268361496e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ca2601c8361496e565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613ce260138361496e565b91507f416c7265616479204d696e7465642055736572000000000000000000000000006000830152602082019050919050565b6000613d2260248361496e565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d8860198361496e565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613dc8602c8361496e565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e2e60388361496e565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613e94602a8361496e565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613efa60298361496e565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f6060208361496e565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613fa0602c8361496e565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061400660208361496e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061404660298361496e565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006140ac602f8361496e565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061411260118361496e565b91507f57726f6e6720616d6f756e742073656e740000000000000000000000000000006000830152602082019050919050565b600061415260218361496e565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141b860318361496e565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061421e602c8361496e565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614284600d8361496e565b91507f496e76616c69642070726f6f66000000000000000000000000000000000000006000830152602082019050919050565b60006142c460188361496e565b91507f4d696e7420746f20746865207a65726f206164647265737300000000000000006000830152602082019050919050565b600061430460208361496e565b91507f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746000830152602082019050919050565b61434081614b13565b82525050565b61434f81614b13565b82525050565b61435e81614b13565b82525050565b60006143708284613931565b60148201915081905092915050565b600061438b8286613ab2565b91506143978285613ab2565b91506143a38284613ab2565b9150819050949350505050565b60006020820190506143c56000830184613922565b92915050565b60006080820190506143e06000830187613922565b6143ed6020830186613922565b6143fa6040830185614346565b818103606083015261440c8184613a40565b905095945050505050565b600060808201905081810360008301526144318187613948565b90506144406020830186613a22565b61444d6040830185613a22565b61445a6060830184614355565b95945050505050565b6000602082019050818103600083015261447d81846139a6565b905092915050565b600060208201905061449a6000830184613a04565b92915050565b60006020820190506144b56000830184613a13565b92915050565b600060208201905081810360008301526144d58184613a79565b905092915050565b600060208201905081810360008301526144f681613ae3565b9050919050565b6000602082019050818103600083015261451681613b23565b9050919050565b6000602082019050818103600083015261453681613b63565b9050919050565b6000602082019050818103600083015261455681613bc9565b9050919050565b6000602082019050818103600083015261457681613c2f565b9050919050565b6000602082019050818103600083015261459681613c95565b9050919050565b600060208201905081810360008301526145b681613cd5565b9050919050565b600060208201905081810360008301526145d681613d15565b9050919050565b600060208201905081810360008301526145f681613d7b565b9050919050565b6000602082019050818103600083015261461681613dbb565b9050919050565b6000602082019050818103600083015261463681613e21565b9050919050565b6000602082019050818103600083015261465681613e87565b9050919050565b6000602082019050818103600083015261467681613eed565b9050919050565b6000602082019050818103600083015261469681613f53565b9050919050565b600060208201905081810360008301526146b681613f93565b9050919050565b600060208201905081810360008301526146d681613ff9565b9050919050565b600060208201905081810360008301526146f681614039565b9050919050565b600060208201905081810360008301526147168161409f565b9050919050565b6000602082019050818103600083015261473681614105565b9050919050565b6000602082019050818103600083015261475681614145565b9050919050565b60006020820190508181036000830152614776816141ab565b9050919050565b6000602082019050818103600083015261479681614211565b9050919050565b600060208201905081810360008301526147b681614277565b9050919050565b600060208201905081810360008301526147d6816142b7565b9050919050565b600060208201905081810360008301526147f6816142f7565b9050919050565b60006020820190506148126000830184614346565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561483f5761483e614cbc565b5b8060405250919050565b600067ffffffffffffffff82111561486457614863614cbc565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156148905761488f614cbc565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156148c0576148bf614cbc565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061499582614b13565b91506149a083614b13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149d5576149d4614c2f565b5b828201905092915050565b60006149eb82614b13565b91506149f683614b13565b925082614a0657614a05614c5e565b5b828204905092915050565b6000614a1c82614b13565b9150614a2783614b13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a6057614a5f614c2f565b5b828202905092915050565b6000614a7682614b13565b9150614a8183614b13565b925082821015614a9457614a93614c2f565b5b828203905092915050565b6000614aaa82614af3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b4a578082015181840152602081019050614b2f565b83811115614b59576000848401525b50505050565b60006002820490506001821680614b7757607f821691505b60208210811415614b8b57614b8a614c8d565b5b50919050565b6000614b9c82614b13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bcf57614bce614c2f565b5b600182019050919050565b6000614be582614bec565b9050919050565b6000614bf782614cfc565b9050919050565b6000614c0982614b13565b9150614c1483614b13565b925082614c2457614c23614c5e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b614d1281614a9f565b8114614d1d57600080fd5b50565b614d2981614ab1565b8114614d3457600080fd5b50565b614d4081614abd565b8114614d4b57600080fd5b50565b614d5781614ac7565b8114614d6257600080fd5b50565b614d6e81614b13565b8114614d7957600080fd5b5056fea2646970667358221220136ab5618d1ce9ecce564889617bfc94c59df5a9ac11aa7e96b12e680d4633b364736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d566261564d485a507432415a656d6d314c7a45553467314772473138464c4651705658794a62444b7135704c2f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmVbaVMHZPt2AZemm1LzEU4g1GrG18FLFQpVXyJbDKq5pL/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d566261564d485a507432415a656d6d314c7a45553467314772473138
Arg [4] : 464c4651705658794a62444b7135704c2f000000000000000000000000000000


Libraries Used


Deployed Bytecode Sourcemap

49747:3516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50342:1026;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43599:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51481:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31545:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33162:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32685:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51795:83;;;;;;;;;;;;;:::i;:::-;;44239:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34052:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50074:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43907:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51986:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53120:140;;;;;;;;;;;;;:::i;:::-;;34462:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44429:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51376:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31239:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30969:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28657:150;;;;;;;;;;;;;:::i;:::-;;52302:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30267:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52761:351;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28006:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51886:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31714:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49948:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33455:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50007:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52518:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34718:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31889:387;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51602:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49901:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52408:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33821:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28962:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51704:83;;;;;;;;;;;;;:::i;:::-;;50041:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50342:1026;49937:4;52671:13;:11;:13::i;:::-;:28;52663:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50487:5:::1;50475:17;;:8;;;;;;;;;;;:17;;;50467:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50563:1;50548:17;;:3;:17;;;;50540:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;50607:19;50629:1;50607:23;;50656:4;50645:15;;:7;;;;;;;;;;;:15;;;50641:311;;;50691:1;50677:15;;50744:5;50715:34;;:13;:25;50729:10;50715:25;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;50707:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50788:12;50830:10;50813:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;50803:39;;;;;;50788:54;;50865:11;:18;50884:12;50898:10;;50910:4;50916:5;50865:57;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50857:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;50641:311;;50984:11;50972:8;:23;;50964:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;51032:15;51050:13;:11;:13::i;:::-;51032:31;;51104:9;51092:8;51084:5;;:16;;;;:::i;:::-;:29;;51076:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;51151:9;51146:215;51170:8;51166:1;:12;51146:215;;;51200:23;51210:3;51215:7;51200:9;:23::i;:::-;51253:4;51242:15;;:7;;;;;;;;;;;:15;;;51238:88;;;51306:4;51278:13;:25;51292:10;51278:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;51238:88;51340:9;;;;;:::i;:::-;;;;51180:3;;;;;:::i;:::-;;;;51146:215;;;;52744:1;;50342:1026:::0;;;;:::o;43599:224::-;43701:4;43740:35;43725:50;;;:11;:50;;;;:90;;;;43779:36;43803:11;43779:23;:36::i;:::-;43725:90;43718:97;;43599:224;;;:::o;51481:113::-;28237:12;:10;:12::i;:::-;28226:23;;:7;:5;:7::i;:::-;:23;;;28218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51572:14:::1;51559:10;:27;;;;51481:113:::0;:::o;31545:100::-;31599:13;31632:5;31625:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31545:100;:::o;33162:221::-;33238:7;33266:16;33274:7;33266;:16::i;:::-;33258:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33351:15;:24;33367:7;33351:24;;;;;;;;;;;;;;;;;;;;;33344:31;;33162:221;;;:::o;32685:411::-;32766:13;32782:23;32797:7;32782:14;:23::i;:::-;32766:39;;32830:5;32824:11;;:2;:11;;;;32816:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32924:5;32908:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32933:37;32950:5;32957:12;:10;:12::i;:::-;32933:16;:37::i;:::-;32908:62;32886:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;33067:21;33076:2;33080:7;33067:8;:21::i;:::-;32685:411;;;:::o;51795:83::-;28237:12;:10;:12::i;:::-;28226:23;;:7;:5;:7::i;:::-;:23;;;28218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51863:7:::1;;;;;;;;;;;51862:8;51852:7;;:18;;;;;;;;;;;;;;;;;;51795:83::o:0;44239:113::-;44300:7;44327:10;:17;;;;44320:24;;44239:113;:::o;34052:339::-;34247:41;34266:12;:10;:12::i;:::-;34280:7;34247:18;:41::i;:::-;34239:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34355:28;34365:4;34371:2;34375:7;34355:9;:28::i;:::-;34052:339;;;:::o;50074:94::-;;;;:::o;43907:256::-;44004:7;44040:23;44057:5;44040:16;:23::i;:::-;44032:5;:31;44024:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;44129:12;:19;44142:5;44129:19;;;;;;;;;;;;;;;:26;44149:5;44129:26;;;;;;;;;;;;44122:33;;43907:256;;;;:::o;51986:308::-;28237:12;:10;:12::i;:::-;28226:23;;:7;:5;:7::i;:::-;:23;;;28218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52088:1:::1;52073:17;;:3;:17;;;;52065:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;52132:15;52150:13;:11;:13::i;:::-;52132:31;;52179:9;52174:113;52198:8;52194:1;:12;52174:113;;;52228:23;52238:3;52243:7;52228:9;:23::i;:::-;52266:9;;;;;:::i;:::-;;;;52208:3;;;;;:::i;:::-;;;;52174:113;;;;28297:1;51986:308:::0;;:::o;53120:140::-;28237:12;:10;:12::i;:::-;28226:23;;:7;:5;:7::i;:::-;:23;;;28218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53168:12:::1;53183:21;53168:36;;53223:10;53215:28;;:37;53244:7;53215:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;28297:1;53120:140::o:0;34462:185::-;34600:39;34617:4;34623:2;34627:7;34600:39;;;;;;;;;;;;:16;:39::i;:::-;34462:185;;;:::o;44429:233::-;44504:7;44540:30;:28;:30::i;:::-;44532:5;:38;44524:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;44637:10;44648:5;44637:17;;;;;;;;;;;;;;;;;;;;;;;;44630:24;;44429:233;;;:::o;51376:97::-;28237:12;:10;:12::i;:::-;28226:23;;:7;:5;:7::i;:::-;:23;;;28218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51458:7:::1;51447:8;:18;;;;;;;;;;;;:::i;:::-;;51376:97:::0;:::o;31239:239::-;31311:7;31331:13;31347:7;:16;31355:7;31347:16;;;;;;;;;;;;;;;;;;;;;31331:32;;31399:1;31382:19;;:5;:19;;;;31374:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31465:5;31458:12;;;31239:239;;;:::o;30969:208::-;31041:7;31086:1;31069:19;;:5;:19;;;;31061:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31153:9;:16;31163:5;31153:16;;;;;;;;;;;;;;;;31146:23;;30969:208;;;:::o;28657:150::-;28237:12;:10;:12::i;:::-;28226:23;;:7;:5;:7::i;:::-;:23;;;28218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28764:1:::1;28727:40;;28748:6;;;;;;;;;;;28727:40;;;;;;;;;;;;28778:21;28796:1;28778:9;:21::i;:::-;28657:150::o:0;52302:98::-;28237:12;:10;:12::i;:::-;28226:23;;:7;:5;:7::i;:::-;:23;;;28218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52388:4:::1;52366:13;:19;52380:4;52366:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;52302:98:::0;:::o;30267:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52761:351::-;52821:16;52855:13;52871:17;52881:6;52871:9;:17::i;:::-;52855:33;;52899:23;52939:5;52925:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52899:46;;52961:13;52956:125;52988:5;52980;:13;52956:125;;;53035:34;53055:6;53063:5;53035:19;:34::i;:::-;53019:6;53026:5;53019:13;;;;;;;;;;;;;;;;;;;;;:50;;;;;52995:7;;;;;:::i;:::-;;;;52956:125;;;;53098:6;53091:13;;;;52761:351;;;:::o;28006:87::-;28052:7;28079:6;;;;;;;;;;;28072:13;;28006:87;:::o;51886:92::-;28237:12;:10;:12::i;:::-;28226:23;;:7;:5;:7::i;:::-;:23;;;28218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51961:9:::1;51953:5;:17;;;;51886:92:::0;:::o;31714:104::-;31770:13;31803:7;31796:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31714:104;:::o;49948:40::-;;;;:::o;33455:295::-;33570:12;:10;:12::i;:::-;33558:24;;:8;:24;;;;33550:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33670:8;33625:18;:32;33644:12;:10;:12::i;:::-;33625:32;;;;;;;;;;;;;;;:42;33658:8;33625:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33723:8;33694:48;;33709:12;:10;:12::i;:::-;33694:48;;;33733:8;33694:48;;;;;;:::i;:::-;;;;;;;;33455:295;;:::o;50007:27::-;;;;;;;;;;;;;:::o;52518:107::-;52574:4;52598:13;:19;52612:4;52598:19;;;;;;;;;;;;;;;;;;;;;;;;;52591:26;;52518:107;;;:::o;34718:328::-;34893:41;34912:12;:10;:12::i;:::-;34926:7;34893:18;:41::i;:::-;34885:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34999:39;35013:4;35019:2;35023:7;35032:5;34999:13;:39::i;:::-;34718:328;;;;:::o;31889:387::-;31962:13;31996:16;32004:7;31996;:16::i;:::-;31988:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;32077:18;32098:9;:7;:9::i;:::-;32077:30;;32118:27;:37;;;;;;;;;;;;;;;;;;;32194:1;32179:4;32173:18;:22;:95;;;;;;;;;;;;;;;;;32222:4;32228:18;:7;:16;:18::i;:::-;32248:13;32205:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32173:95;32166:102;;;;31889:387;;;:::o;51602:94::-;51651:7;51678:10;;51671:17;;51602:94;:::o;49901:40::-;49937:4;49901:40;:::o;52408:102::-;28237:12;:10;:12::i;:::-;28226:23;;:7;:5;:7::i;:::-;:23;;;28218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52497:5:::1;52475:13;:19;52489:4;52475:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;52408:102:::0;:::o;33821:164::-;33918:4;33942:18;:25;33961:5;33942:25;;;;;;;;;;;;;;;:35;33968:8;33942:35;;;;;;;;;;;;;;;;;;;;;;;;;33935:42;;33821:164;;;;:::o;28962:192::-;28237:12;:10;:12::i;:::-;28226:23;;:7;:5;:7::i;:::-;:23;;;28218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29071:1:::1;29051:22;;:8;:22;;;;29043:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29127:19;29137:8;29127:9;:19::i;:::-;28962:192:::0;:::o;51704:83::-;28237:12;:10;:12::i;:::-;28226:23;;:7;:5;:7::i;:::-;:23;;;28218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51771:8:::1;;;;;;;;;;;51770:9;51759:8;;:20;;;;;;;;;;;;;;;;;;51704:83::o:0;50041:26::-;;;;;;;;;;;;;:::o;37540:110::-;37616:26;37626:2;37630:7;37616:26;;;;;;;;;;;;:9;:26::i;:::-;37540:110;;:::o;30600:305::-;30702:4;30754:25;30739:40;;;:11;:40;;;;:105;;;;30811:33;30796:48;;;:11;:48;;;;30739:105;:158;;;;30861:36;30885:11;30861:23;:36::i;:::-;30739:158;30719:178;;30600:305;;;:::o;26784:98::-;26837:7;26864:10;26857:17;;26784:98;:::o;36556:127::-;36621:4;36673:1;36645:30;;:7;:16;36653:7;36645:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36638:37;;36556:127;;;:::o;40538:174::-;40640:2;40613:15;:24;40629:7;40613:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40696:7;40692:2;40658:46;;40667:23;40682:7;40667:14;:23::i;:::-;40658:46;;;;;;;;;;;;40538:174;;:::o;36850:348::-;36943:4;36968:16;36976:7;36968;:16::i;:::-;36960:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37044:13;37060:23;37075:7;37060:14;:23::i;:::-;37044:39;;37113:5;37102:16;;:7;:16;;;:51;;;;37146:7;37122:31;;:20;37134:7;37122:11;:20::i;:::-;:31;;;37102:51;:87;;;;37157:32;37174:5;37181:7;37157:16;:32::i;:::-;37102:87;37094:96;;;36850:348;;;;:::o;39842:578::-;40001:4;39974:31;;:23;39989:7;39974:14;:23::i;:::-;:31;;;39966:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40084:1;40070:16;;:2;:16;;;;40062:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;40140:39;40161:4;40167:2;40171:7;40140:20;:39::i;:::-;40244:29;40261:1;40265:7;40244:8;:29::i;:::-;40305:1;40286:9;:15;40296:4;40286:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;40334:1;40317:9;:13;40327:2;40317:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40365:2;40346:7;:16;40354:7;40346:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40404:7;40400:2;40385:27;;40394:4;40385:27;;;;;;;;;;;;39842:578;;;:::o;29162:173::-;29218:16;29237:6;;;;;;;;;;;29218:25;;29263:8;29254:6;;:17;;;;;;;;;;;;;;;;;;29318:8;29287:40;;29308:8;29287:40;;;;;;;;;;;;29162:173;;:::o;35928:315::-;36085:28;36095:4;36101:2;36105:7;36085:9;:28::i;:::-;36132:48;36155:4;36161:2;36165:7;36174:5;36132:22;:48::i;:::-;36124:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35928:315;;;;:::o;32524:99::-;32574:13;32607:8;32600:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32524:99;:::o;7225:723::-;7281:13;7511:1;7502:5;:10;7498:53;;;7529:10;;;;;;;;;;;;;;;;;;;;;7498:53;7561:12;7576:5;7561:20;;7592:14;7617:78;7632:1;7624:4;:9;7617:78;;7650:8;;;;;:::i;:::-;;;;7681:2;7673:10;;;;;:::i;:::-;;;7617:78;;;7705:19;7737:6;7727:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7705:39;;7755:154;7771:1;7762:5;:10;7755:154;;7799:1;7789:11;;;;;:::i;:::-;;;7866:2;7858:5;:10;;;;:::i;:::-;7845:2;:24;;;;:::i;:::-;7832:39;;7815:6;7822;7815:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;7895:2;7886:11;;;;;:::i;:::-;;;7755:154;;;7933:6;7919:21;;;;;7225:723;;;;:::o;37877:321::-;38007:18;38013:2;38017:7;38007:5;:18::i;:::-;38058:54;38089:1;38093:2;38097:7;38106:5;38058:22;:54::i;:::-;38036:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;37877:321;;;:::o;19878:157::-;19963:4;20002:25;19987:40;;;:11;:40;;;;19980:47;;19878:157;;;:::o;45275:589::-;45419:45;45446:4;45452:2;45456:7;45419:26;:45::i;:::-;45497:1;45481:18;;:4;:18;;;45477:187;;;45516:40;45548:7;45516:31;:40::i;:::-;45477:187;;;45586:2;45578:10;;:4;:10;;;45574:90;;45605:47;45638:4;45644:7;45605:32;:47::i;:::-;45574:90;45477:187;45692:1;45678:16;;:2;:16;;;45674:183;;;45711:45;45748:7;45711:36;:45::i;:::-;45674:183;;;45784:4;45778:10;;:2;:10;;;45774:83;;45805:40;45833:2;45837:7;45805:27;:40::i;:::-;45774:83;45674:183;45275:589;;;:::o;41277:803::-;41432:4;41453:15;:2;:13;;;:15::i;:::-;41449:624;;;41505:2;41489:36;;;41526:12;:10;:12::i;:::-;41540:4;41546:7;41555:5;41489:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41485:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41752:1;41735:6;:13;:18;41731:272;;;41778:60;;;;;;;;;;:::i;:::-;;;;;;;;41731:272;41953:6;41947:13;41938:6;41934:2;41930:15;41923:38;41485:533;41622:45;;;41612:55;;;:6;:55;;;;41605:62;;;;;41449:624;42057:4;42050:11;;41277:803;;;;;;;:::o;38534:382::-;38628:1;38614:16;;:2;:16;;;;38606:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38687:16;38695:7;38687;:16::i;:::-;38686:17;38678:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38749:45;38778:1;38782:2;38786:7;38749:20;:45::i;:::-;38824:1;38807:9;:13;38817:2;38807:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38855:2;38836:7;:16;38844:7;38836:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38900:7;38896:2;38875:33;;38892:1;38875:33;;;;;;;;;;;;38534:382;;:::o;42652:126::-;;;;:::o;46587:164::-;46691:10;:17;;;;46664:15;:24;46680:7;46664:24;;;;;;;;;;;:44;;;;46719:10;46735:7;46719:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46587:164;:::o;47378:988::-;47644:22;47694:1;47669:22;47686:4;47669:16;:22::i;:::-;:26;;;;:::i;:::-;47644:51;;47706:18;47727:17;:26;47745:7;47727:26;;;;;;;;;;;;47706:47;;47874:14;47860:10;:28;47856:328;;47905:19;47927:12;:18;47940:4;47927:18;;;;;;;;;;;;;;;:34;47946:14;47927:34;;;;;;;;;;;;47905:56;;48011:11;47978:12;:18;47991:4;47978:18;;;;;;;;;;;;;;;:30;47997:10;47978:30;;;;;;;;;;;:44;;;;48128:10;48095:17;:30;48113:11;48095:30;;;;;;;;;;;:43;;;;47856:328;;48280:17;:26;48298:7;48280:26;;;;;;;;;;;48273:33;;;48324:12;:18;48337:4;48324:18;;;;;;;;;;;;;;;:34;48343:14;48324:34;;;;;;;;;;;48317:41;;;47378:988;;;;:::o;48661:1079::-;48914:22;48959:1;48939:10;:17;;;;:21;;;;:::i;:::-;48914:46;;48971:18;48992:15;:24;49008:7;48992:24;;;;;;;;;;;;48971:45;;49343:19;49365:10;49376:14;49365:26;;;;;;;;;;;;;;;;;;;;;;;;49343:48;;49429:11;49404:10;49415;49404:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;49540:10;49509:15;:28;49525:11;49509:28;;;;;;;;;;;:41;;;;49681:15;:24;49697:7;49681:24;;;;;;;;;;;49674:31;;;49716:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48661:1079;;;;:::o;46165:221::-;46250:14;46267:20;46284:2;46267:16;:20::i;:::-;46250:37;;46325:7;46298:12;:16;46311:2;46298:16;;;;;;;;;;;;;;;:24;46315:6;46298:24;;;;;;;;;;;:34;;;;46372:6;46343:17;:26;46361:7;46343:26;;;;;;;;;;;:35;;;;46165:221;;;:::o;9665:387::-;9725:4;9933:12;10000:7;9988:20;9980:28;;10043:1;10036:4;:8;10029:15;;;9665:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:344::-;;1103:65;1118:49;1160:6;1118:49;:::i;:::-;1103:65;:::i;:::-;1094:74;;1191:6;1184:5;1177:21;1229:4;1222:5;1218:16;1267:3;1258:6;1253:3;1249:16;1246:25;1243:2;;;1284:1;1281;1274:12;1243:2;1297:41;1331:6;1326:3;1321;1297:41;:::i;:::-;1084:260;;;;;;:::o;1350:139::-;;1434:6;1421:20;1412:29;;1450:33;1477:5;1450:33;:::i;:::-;1402:87;;;;:::o;1512:303::-;;1632:3;1625:4;1617:6;1613:17;1609:27;1599:2;;1650:1;1647;1640:12;1599:2;1690:6;1677:20;1715:94;1805:3;1797:6;1790:4;1782:6;1778:17;1715:94;:::i;:::-;1706:103;;1589:226;;;;;:::o;1821:133::-;;1902:6;1889:20;1880:29;;1918:30;1942:5;1918:30;:::i;:::-;1870:84;;;;:::o;1960:137::-;;2045:6;2039:13;2030:22;;2061:30;2085:5;2061:30;:::i;:::-;2020:77;;;;:::o;2103:139::-;;2187:6;2174:20;2165:29;;2203:33;2230:5;2203:33;:::i;:::-;2155:87;;;;:::o;2248:137::-;;2331:6;2318:20;2309:29;;2347:32;2373:5;2347:32;:::i;:::-;2299:86;;;;:::o;2391:141::-;;2478:6;2472:13;2463:22;;2494:32;2520:5;2494:32;:::i;:::-;2453:79;;;;:::o;2551:271::-;;2655:3;2648:4;2640:6;2636:17;2632:27;2622:2;;2673:1;2670;2663:12;2622:2;2713:6;2700:20;2738:78;2812:3;2804:6;2797:4;2789:6;2785:17;2738:78;:::i;:::-;2729:87;;2612:210;;;;;:::o;2842:273::-;;2947:3;2940:4;2932:6;2928:17;2924:27;2914:2;;2965:1;2962;2955:12;2914:2;3005:6;2992:20;3030:79;3105:3;3097:6;3090:4;3082:6;3078:17;3030:79;:::i;:::-;3021:88;;2904:211;;;;;:::o;3121:139::-;;3205:6;3192:20;3183:29;;3221:33;3248:5;3221:33;:::i;:::-;3173:87;;;;:::o;3266:262::-;;3374:2;3362:9;3353:7;3349:23;3345:32;3342:2;;;3390:1;3387;3380:12;3342:2;3433:1;3458:53;3503:7;3494:6;3483:9;3479:22;3458:53;:::i;:::-;3448:63;;3404:117;3332:196;;;;:::o;3534:407::-;;;3659:2;3647:9;3638:7;3634:23;3630:32;3627:2;;;3675:1;3672;3665:12;3627:2;3718:1;3743:53;3788:7;3779:6;3768:9;3764:22;3743:53;:::i;:::-;3733:63;;3689:117;3845:2;3871:53;3916:7;3907:6;3896:9;3892:22;3871:53;:::i;:::-;3861:63;;3816:118;3617:324;;;;;:::o;3947:552::-;;;;4089:2;4077:9;4068:7;4064:23;4060:32;4057:2;;;4105:1;4102;4095:12;4057:2;4148:1;4173:53;4218:7;4209:6;4198:9;4194:22;4173:53;:::i;:::-;4163:63;;4119:117;4275:2;4301:53;4346:7;4337:6;4326:9;4322:22;4301:53;:::i;:::-;4291:63;;4246:118;4403:2;4429:53;4474:7;4465:6;4454:9;4450:22;4429:53;:::i;:::-;4419:63;;4374:118;4047:452;;;;;:::o;4505:809::-;;;;;4673:3;4661:9;4652:7;4648:23;4644:33;4641:2;;;4690:1;4687;4680:12;4641:2;4733:1;4758:53;4803:7;4794:6;4783:9;4779:22;4758:53;:::i;:::-;4748:63;;4704:117;4860:2;4886:53;4931:7;4922:6;4911:9;4907:22;4886:53;:::i;:::-;4876:63;;4831:118;4988:2;5014:53;5059:7;5050:6;5039:9;5035:22;5014:53;:::i;:::-;5004:63;;4959:118;5144:2;5133:9;5129:18;5116:32;5175:18;5167:6;5164:30;5161:2;;;5207:1;5204;5197:12;5161:2;5235:62;5289:7;5280:6;5269:9;5265:22;5235:62;:::i;:::-;5225:72;;5087:220;4631:683;;;;;;;:::o;5320:401::-;;;5442:2;5430:9;5421:7;5417:23;5413:32;5410:2;;;5458:1;5455;5448:12;5410:2;5501:1;5526:53;5571:7;5562:6;5551:9;5547:22;5526:53;:::i;:::-;5516:63;;5472:117;5628:2;5654:50;5696:7;5687:6;5676:9;5672:22;5654:50;:::i;:::-;5644:60;;5599:115;5400:321;;;;;:::o;5727:407::-;;;5852:2;5840:9;5831:7;5827:23;5823:32;5820:2;;;5868:1;5865;5858:12;5820:2;5911:1;5936:53;5981:7;5972:6;5961:9;5957:22;5936:53;:::i;:::-;5926:63;;5882:117;6038:2;6064:53;6109:7;6100:6;6089:9;6085:22;6064:53;:::i;:::-;6054:63;;6009:118;5810:324;;;;;:::o;6140:841::-;;;;;6324:3;6312:9;6303:7;6299:23;6295:33;6292:2;;;6341:1;6338;6331:12;6292:2;6384:1;6409:53;6454:7;6445:6;6434:9;6430:22;6409:53;:::i;:::-;6399:63;;6355:117;6511:2;6537:53;6582:7;6573:6;6562:9;6558:22;6537:53;:::i;:::-;6527:63;;6482:118;6667:2;6656:9;6652:18;6639:32;6698:18;6690:6;6687:30;6684:2;;;6730:1;6727;6720:12;6684:2;6758:78;6828:7;6819:6;6808:9;6804:22;6758:78;:::i;:::-;6748:88;;6610:236;6885:2;6911:53;6956:7;6947:6;6936:9;6932:22;6911:53;:::i;:::-;6901:63;;6856:118;6282:699;;;;;;;:::o;6987:278::-;;7103:2;7091:9;7082:7;7078:23;7074:32;7071:2;;;7119:1;7116;7109:12;7071:2;7162:1;7187:61;7240:7;7231:6;7220:9;7216:22;7187:61;:::i;:::-;7177:71;;7133:125;7061:204;;;;:::o;7271:262::-;;7379:2;7367:9;7358:7;7354:23;7350:32;7347:2;;;7395:1;7392;7385:12;7347:2;7438:1;7463:53;7508:7;7499:6;7488:9;7484:22;7463:53;:::i;:::-;7453:63;;7409:117;7337:196;;;;:::o;7539:260::-;;7646:2;7634:9;7625:7;7621:23;7617:32;7614:2;;;7662:1;7659;7652:12;7614:2;7705:1;7730:52;7774:7;7765:6;7754:9;7750:22;7730:52;:::i;:::-;7720:62;;7676:116;7604:195;;;;:::o;7805:282::-;;7923:2;7911:9;7902:7;7898:23;7894:32;7891:2;;;7939:1;7936;7929:12;7891:2;7982:1;8007:63;8062:7;8053:6;8042:9;8038:22;8007:63;:::i;:::-;7997:73;;7953:127;7881:206;;;;:::o;8093:375::-;;8211:2;8199:9;8190:7;8186:23;8182:32;8179:2;;;8227:1;8224;8217:12;8179:2;8298:1;8287:9;8283:17;8270:31;8328:18;8320:6;8317:30;8314:2;;;8360:1;8357;8350:12;8314:2;8388:63;8443:7;8434:6;8423:9;8419:22;8388:63;:::i;:::-;8378:73;;8241:220;8169:299;;;;:::o;8474:262::-;;8582:2;8570:9;8561:7;8557:23;8553:32;8550:2;;;8598:1;8595;8588:12;8550:2;8641:1;8666:53;8711:7;8702:6;8691:9;8687:22;8666:53;:::i;:::-;8656:63;;8612:117;8540:196;;;;:::o;8742:195::-;;8840:54;8890:3;8882:6;8840:54;:::i;:::-;8926:4;8921:3;8917:14;8903:28;;8830:107;;;;:::o;8943:179::-;;9033:46;9075:3;9067:6;9033:46;:::i;:::-;9111:4;9106:3;9102:14;9088:28;;9023:99;;;;:::o;9128:118::-;9215:24;9233:5;9215:24;:::i;:::-;9210:3;9203:37;9193:53;;:::o;9252:157::-;9357:45;9377:24;9395:5;9377:24;:::i;:::-;9357:45;:::i;:::-;9352:3;9345:58;9335:74;;:::o;9445:756::-;;9601:54;9649:5;9601:54;:::i;:::-;9671:94;9758:6;9753:3;9671:94;:::i;:::-;9664:101;;9789:56;9839:5;9789:56;:::i;:::-;9868:7;9899:1;9884:292;9909:6;9906:1;9903:13;9884:292;;;9985:6;9979:13;10012:71;10079:3;10064:13;10012:71;:::i;:::-;10005:78;;10106:60;10159:6;10106:60;:::i;:::-;10096:70;;9944:232;9931:1;9928;9924:9;9919:14;;9884:292;;;9888:14;10192:3;10185:10;;9577:624;;;;;;;:::o;10237:732::-;;10385:54;10433:5;10385:54;:::i;:::-;10455:86;10534:6;10529:3;10455:86;:::i;:::-;10448:93;;10565:56;10615:5;10565:56;:::i;:::-;10644:7;10675:1;10660:284;10685:6;10682:1;10679:13;10660:284;;;10761:6;10755:13;10788:63;10847:3;10832:13;10788:63;:::i;:::-;10781:70;;10874:60;10927:6;10874:60;:::i;:::-;10864:70;;10720:224;10707:1;10704;10700:9;10695:14;;10660:284;;;10664:14;10960:3;10953:10;;10361:608;;;;;;;:::o;10975:109::-;11056:21;11071:5;11056:21;:::i;:::-;11051:3;11044:34;11034:50;;:::o;11090:118::-;11177:24;11195:5;11177:24;:::i;:::-;11172:3;11165:37;11155:53;;:::o;11214:126::-;11309:24;11327:5;11309:24;:::i;:::-;11304:3;11297:37;11287:53;;:::o;11346:116::-;11431:24;11449:5;11431:24;:::i;:::-;11426:3;11419:37;11409:53;;:::o;11468:360::-;;11582:38;11614:5;11582:38;:::i;:::-;11636:70;11699:6;11694:3;11636:70;:::i;:::-;11629:77;;11715:52;11760:6;11755:3;11748:4;11741:5;11737:16;11715:52;:::i;:::-;11792:29;11814:6;11792:29;:::i;:::-;11787:3;11783:39;11776:46;;11558:270;;;;;:::o;11834:364::-;;11950:39;11983:5;11950:39;:::i;:::-;12005:71;12069:6;12064:3;12005:71;:::i;:::-;11998:78;;12085:52;12130:6;12125:3;12118:4;12111:5;12107:16;12085:52;:::i;:::-;12162:29;12184:6;12162:29;:::i;:::-;12157:3;12153:39;12146:46;;11926:272;;;;;:::o;12204:377::-;;12338:39;12371:5;12338:39;:::i;:::-;12393:89;12475:6;12470:3;12393:89;:::i;:::-;12386:96;;12491:52;12536:6;12531:3;12524:4;12517:5;12513:16;12491:52;:::i;:::-;12568:6;12563:3;12559:16;12552:23;;12314:267;;;;;:::o;12587:327::-;;12750:67;12814:2;12809:3;12750:67;:::i;:::-;12743:74;;12847:31;12843:1;12838:3;12834:11;12827:52;12905:2;12900:3;12896:12;12889:19;;12733:181;;;:::o;12920:317::-;;13083:67;13147:2;13142:3;13083:67;:::i;:::-;13076:74;;13180:21;13176:1;13171:3;13167:11;13160:42;13228:2;13223:3;13219:12;13212:19;;13066:171;;;:::o;13243:375::-;;13406:67;13470:2;13465:3;13406:67;:::i;:::-;13399:74;;13503:34;13499:1;13494:3;13490:11;13483:55;13569:13;13564:2;13559:3;13555:12;13548:35;13609:2;13604:3;13600:12;13593:19;;13389:229;;;:::o;13624:382::-;;13787:67;13851:2;13846:3;13787:67;:::i;:::-;13780:74;;13884:34;13880:1;13875:3;13871:11;13864:55;13950:20;13945:2;13940:3;13936:12;13929:42;13997:2;13992:3;13988:12;13981:19;;13770:236;;;:::o;14012:370::-;;14175:67;14239:2;14234:3;14175:67;:::i;:::-;14168:74;;14272:34;14268:1;14263:3;14259:11;14252:55;14338:8;14333:2;14328:3;14324:12;14317:30;14373:2;14368:3;14364:12;14357:19;;14158:224;;;:::o;14388:326::-;;14551:67;14615:2;14610:3;14551:67;:::i;:::-;14544:74;;14648:30;14644:1;14639:3;14635:11;14628:51;14705:2;14700:3;14696:12;14689:19;;14534:180;;;:::o;14720:317::-;;14883:67;14947:2;14942:3;14883:67;:::i;:::-;14876:74;;14980:21;14976:1;14971:3;14967:11;14960:42;15028:2;15023:3;15019:12;15012:19;;14866:171;;;:::o;15043:368::-;;15206:67;15270:2;15265:3;15206:67;:::i;:::-;15199:74;;15303:34;15299:1;15294:3;15290:11;15283:55;15369:6;15364:2;15359:3;15355:12;15348:28;15402:2;15397:3;15393:12;15386:19;;15189:222;;;:::o;15417:323::-;;15580:67;15644:2;15639:3;15580:67;:::i;:::-;15573:74;;15677:27;15673:1;15668:3;15664:11;15657:48;15731:2;15726:3;15722:12;15715:19;;15563:177;;;:::o;15746:376::-;;15909:67;15973:2;15968:3;15909:67;:::i;:::-;15902:74;;16006:34;16002:1;15997:3;15993:11;15986:55;16072:14;16067:2;16062:3;16058:12;16051:36;16113:2;16108:3;16104:12;16097:19;;15892:230;;;:::o;16128:388::-;;16291:67;16355:2;16350:3;16291:67;:::i;:::-;16284:74;;16388:34;16384:1;16379:3;16375:11;16368:55;16454:26;16449:2;16444:3;16440:12;16433:48;16507:2;16502:3;16498:12;16491:19;;16274:242;;;:::o;16522:374::-;;16685:67;16749:2;16744:3;16685:67;:::i;:::-;16678:74;;16782:34;16778:1;16773:3;16769:11;16762:55;16848:12;16843:2;16838:3;16834:12;16827:34;16887:2;16882:3;16878:12;16871:19;;16668:228;;;:::o;16902:373::-;;17065:67;17129:2;17124:3;17065:67;:::i;:::-;17058:74;;17162:34;17158:1;17153:3;17149:11;17142:55;17228:11;17223:2;17218:3;17214:12;17207:33;17266:2;17261:3;17257:12;17250:19;;17048:227;;;:::o;17281:330::-;;17444:67;17508:2;17503:3;17444:67;:::i;:::-;17437:74;;17541:34;17537:1;17532:3;17528:11;17521:55;17602:2;17597:3;17593:12;17586:19;;17427:184;;;:::o;17617:376::-;;17780:67;17844:2;17839:3;17780:67;:::i;:::-;17773:74;;17877:34;17873:1;17868:3;17864:11;17857:55;17943:14;17938:2;17933:3;17929:12;17922:36;17984:2;17979:3;17975:12;17968:19;;17763:230;;;:::o;17999:330::-;;18162:67;18226:2;18221:3;18162:67;:::i;:::-;18155:74;;18259:34;18255:1;18250:3;18246:11;18239:55;18320:2;18315:3;18311:12;18304:19;;18145:184;;;:::o;18335:373::-;;18498:67;18562:2;18557:3;18498:67;:::i;:::-;18491:74;;18595:34;18591:1;18586:3;18582:11;18575:55;18661:11;18656:2;18651:3;18647:12;18640:33;18699:2;18694:3;18690:12;18683:19;;18481:227;;;:::o;18714:379::-;;18877:67;18941:2;18936:3;18877:67;:::i;:::-;18870:74;;18974:34;18970:1;18965:3;18961:11;18954:55;19040:17;19035:2;19030:3;19026:12;19019:39;19084:2;19079:3;19075:12;19068:19;;18860:233;;;:::o;19099:315::-;;19262:67;19326:2;19321:3;19262:67;:::i;:::-;19255:74;;19359:19;19355:1;19350:3;19346:11;19339:40;19405:2;19400:3;19396:12;19389:19;;19245:169;;;:::o;19420:365::-;;19583:67;19647:2;19642:3;19583:67;:::i;:::-;19576:74;;19680:34;19676:1;19671:3;19667:11;19660:55;19746:3;19741:2;19736:3;19732:12;19725:25;19776:2;19771:3;19767:12;19760:19;;19566:219;;;:::o;19791:381::-;;19954:67;20018:2;20013:3;19954:67;:::i;:::-;19947:74;;20051:34;20047:1;20042:3;20038:11;20031:55;20117:19;20112:2;20107:3;20103:12;20096:41;20163:2;20158:3;20154:12;20147:19;;19937:235;;;:::o;20178:376::-;;20341:67;20405:2;20400:3;20341:67;:::i;:::-;20334:74;;20438:34;20434:1;20429:3;20425:11;20418:55;20504:14;20499:2;20494:3;20490:12;20483:36;20545:2;20540:3;20536:12;20529:19;;20324:230;;;:::o;20560:311::-;;20723:67;20787:2;20782:3;20723:67;:::i;:::-;20716:74;;20820:15;20816:1;20811:3;20807:11;20800:36;20862:2;20857:3;20853:12;20846:19;;20706:165;;;:::o;20877:322::-;;21040:67;21104:2;21099:3;21040:67;:::i;:::-;21033:74;;21137:26;21133:1;21128:3;21124:11;21117:47;21190:2;21185:3;21181:12;21174:19;;21023:176;;;:::o;21205:330::-;;21368:67;21432:2;21427:3;21368:67;:::i;:::-;21361:74;;21465:34;21461:1;21456:3;21452:11;21445:55;21526:2;21521:3;21517:12;21510:19;;21351:184;;;:::o;21541:108::-;21618:24;21636:5;21618:24;:::i;:::-;21613:3;21606:37;21596:53;;:::o;21655:118::-;21742:24;21760:5;21742:24;:::i;:::-;21737:3;21730:37;21720:53;;:::o;21779:126::-;21874:24;21892:5;21874:24;:::i;:::-;21869:3;21862:37;21852:53;;:::o;21911:256::-;;22038:75;22109:3;22100:6;22038:75;:::i;:::-;22138:2;22133:3;22129:12;22122:19;;22158:3;22151:10;;22027:140;;;;:::o;22173:595::-;;22423:95;22514:3;22505:6;22423:95;:::i;:::-;22416:102;;22535:95;22626:3;22617:6;22535:95;:::i;:::-;22528:102;;22647:95;22738:3;22729:6;22647:95;:::i;:::-;22640:102;;22759:3;22752:10;;22405:363;;;;;;:::o;22774:222::-;;22905:2;22894:9;22890:18;22882:26;;22918:71;22986:1;22975:9;22971:17;22962:6;22918:71;:::i;:::-;22872:124;;;;:::o;23002:640::-;;23235:3;23224:9;23220:19;23212:27;;23249:71;23317:1;23306:9;23302:17;23293:6;23249:71;:::i;:::-;23330:72;23398:2;23387:9;23383:18;23374:6;23330:72;:::i;:::-;23412;23480:2;23469:9;23465:18;23456:6;23412:72;:::i;:::-;23531:9;23525:4;23521:20;23516:2;23505:9;23501:18;23494:48;23559:76;23630:4;23621:6;23559:76;:::i;:::-;23551:84;;23202:440;;;;;;;:::o;23648:744::-;;23921:3;23910:9;23906:19;23898:27;;23971:9;23965:4;23961:20;23957:1;23946:9;23942:17;23935:47;23999:116;24110:4;24101:6;23999:116;:::i;:::-;23991:124;;24125:80;24201:2;24190:9;24186:18;24177:6;24125:80;:::i;:::-;24215;24291:2;24280:9;24276:18;24267:6;24215:80;:::i;:::-;24305;24381:2;24370:9;24366:18;24357:6;24305:80;:::i;:::-;23888:504;;;;;;;:::o;24398:373::-;;24579:2;24568:9;24564:18;24556:26;;24628:9;24622:4;24618:20;24614:1;24603:9;24599:17;24592:47;24656:108;24759:4;24750:6;24656:108;:::i;:::-;24648:116;;24546:225;;;;:::o;24777:210::-;;24902:2;24891:9;24887:18;24879:26;;24915:65;24977:1;24966:9;24962:17;24953:6;24915:65;:::i;:::-;24869:118;;;;:::o;24993:222::-;;25124:2;25113:9;25109:18;25101:26;;25137:71;25205:1;25194:9;25190:17;25181:6;25137:71;:::i;:::-;25091:124;;;;:::o;25221:313::-;;25372:2;25361:9;25357:18;25349:26;;25421:9;25415:4;25411:20;25407:1;25396:9;25392:17;25385:47;25449:78;25522:4;25513:6;25449:78;:::i;:::-;25441:86;;25339:195;;;;:::o;25540:419::-;;25744:2;25733:9;25729:18;25721:26;;25793:9;25787:4;25783:20;25779:1;25768:9;25764:17;25757:47;25821:131;25947:4;25821:131;:::i;:::-;25813:139;;25711:248;;;:::o;25965:419::-;;26169:2;26158:9;26154:18;26146:26;;26218:9;26212:4;26208:20;26204:1;26193:9;26189:17;26182:47;26246:131;26372:4;26246:131;:::i;:::-;26238:139;;26136:248;;;:::o;26390:419::-;;26594:2;26583:9;26579:18;26571:26;;26643:9;26637:4;26633:20;26629:1;26618:9;26614:17;26607:47;26671:131;26797:4;26671:131;:::i;:::-;26663:139;;26561:248;;;:::o;26815:419::-;;27019:2;27008:9;27004:18;26996:26;;27068:9;27062:4;27058:20;27054:1;27043:9;27039:17;27032:47;27096:131;27222:4;27096:131;:::i;:::-;27088:139;;26986:248;;;:::o;27240:419::-;;27444:2;27433:9;27429:18;27421:26;;27493:9;27487:4;27483:20;27479:1;27468:9;27464:17;27457:47;27521:131;27647:4;27521:131;:::i;:::-;27513:139;;27411:248;;;:::o;27665:419::-;;27869:2;27858:9;27854:18;27846:26;;27918:9;27912:4;27908:20;27904:1;27893:9;27889:17;27882:47;27946:131;28072:4;27946:131;:::i;:::-;27938:139;;27836:248;;;:::o;28090:419::-;;28294:2;28283:9;28279:18;28271:26;;28343:9;28337:4;28333:20;28329:1;28318:9;28314:17;28307:47;28371:131;28497:4;28371:131;:::i;:::-;28363:139;;28261:248;;;:::o;28515:419::-;;28719:2;28708:9;28704:18;28696:26;;28768:9;28762:4;28758:20;28754:1;28743:9;28739:17;28732:47;28796:131;28922:4;28796:131;:::i;:::-;28788:139;;28686:248;;;:::o;28940:419::-;;29144:2;29133:9;29129:18;29121:26;;29193:9;29187:4;29183:20;29179:1;29168:9;29164:17;29157:47;29221:131;29347:4;29221:131;:::i;:::-;29213:139;;29111:248;;;:::o;29365:419::-;;29569:2;29558:9;29554:18;29546:26;;29618:9;29612:4;29608:20;29604:1;29593:9;29589:17;29582:47;29646:131;29772:4;29646:131;:::i;:::-;29638:139;;29536:248;;;:::o;29790:419::-;;29994:2;29983:9;29979:18;29971:26;;30043:9;30037:4;30033:20;30029:1;30018:9;30014:17;30007:47;30071:131;30197:4;30071:131;:::i;:::-;30063:139;;29961:248;;;:::o;30215:419::-;;30419:2;30408:9;30404:18;30396:26;;30468:9;30462:4;30458:20;30454:1;30443:9;30439:17;30432:47;30496:131;30622:4;30496:131;:::i;:::-;30488:139;;30386:248;;;:::o;30640:419::-;;30844:2;30833:9;30829:18;30821:26;;30893:9;30887:4;30883:20;30879:1;30868:9;30864:17;30857:47;30921:131;31047:4;30921:131;:::i;:::-;30913:139;;30811:248;;;:::o;31065:419::-;;31269:2;31258:9;31254:18;31246:26;;31318:9;31312:4;31308:20;31304:1;31293:9;31289:17;31282:47;31346:131;31472:4;31346:131;:::i;:::-;31338:139;;31236:248;;;:::o;31490:419::-;;31694:2;31683:9;31679:18;31671:26;;31743:9;31737:4;31733:20;31729:1;31718:9;31714:17;31707:47;31771:131;31897:4;31771:131;:::i;:::-;31763:139;;31661:248;;;:::o;31915:419::-;;32119:2;32108:9;32104:18;32096:26;;32168:9;32162:4;32158:20;32154:1;32143:9;32139:17;32132:47;32196:131;32322:4;32196:131;:::i;:::-;32188:139;;32086:248;;;:::o;32340:419::-;;32544:2;32533:9;32529:18;32521:26;;32593:9;32587:4;32583:20;32579:1;32568:9;32564:17;32557:47;32621:131;32747:4;32621:131;:::i;:::-;32613:139;;32511:248;;;:::o;32765:419::-;;32969:2;32958:9;32954:18;32946:26;;33018:9;33012:4;33008:20;33004:1;32993:9;32989:17;32982:47;33046:131;33172:4;33046:131;:::i;:::-;33038:139;;32936:248;;;:::o;33190:419::-;;33394:2;33383:9;33379:18;33371:26;;33443:9;33437:4;33433:20;33429:1;33418:9;33414:17;33407:47;33471:131;33597:4;33471:131;:::i;:::-;33463:139;;33361:248;;;:::o;33615:419::-;;33819:2;33808:9;33804:18;33796:26;;33868:9;33862:4;33858:20;33854:1;33843:9;33839:17;33832:47;33896:131;34022:4;33896:131;:::i;:::-;33888:139;;33786:248;;;:::o;34040:419::-;;34244:2;34233:9;34229:18;34221:26;;34293:9;34287:4;34283:20;34279:1;34268:9;34264:17;34257:47;34321:131;34447:4;34321:131;:::i;:::-;34313:139;;34211:248;;;:::o;34465:419::-;;34669:2;34658:9;34654:18;34646:26;;34718:9;34712:4;34708:20;34704:1;34693:9;34689:17;34682:47;34746:131;34872:4;34746:131;:::i;:::-;34738:139;;34636:248;;;:::o;34890:419::-;;35094:2;35083:9;35079:18;35071:26;;35143:9;35137:4;35133:20;35129:1;35118:9;35114:17;35107:47;35171:131;35297:4;35171:131;:::i;:::-;35163:139;;35061:248;;;:::o;35315:419::-;;35519:2;35508:9;35504:18;35496:26;;35568:9;35562:4;35558:20;35554:1;35543:9;35539:17;35532:47;35596:131;35722:4;35596:131;:::i;:::-;35588:139;;35486:248;;;:::o;35740:419::-;;35944:2;35933:9;35929:18;35921:26;;35993:9;35987:4;35983:20;35979:1;35968:9;35964:17;35957:47;36021:131;36147:4;36021:131;:::i;:::-;36013:139;;35911:248;;;:::o;36165:222::-;;36296:2;36285:9;36281:18;36273:26;;36309:71;36377:1;36366:9;36362:17;36353:6;36309:71;:::i;:::-;36263:124;;;;:::o;36393:283::-;;36459:2;36453:9;36443:19;;36501:4;36493:6;36489:17;36608:6;36596:10;36593:22;36572:18;36560:10;36557:34;36554:62;36551:2;;;36619:18;;:::i;:::-;36551:2;36659:10;36655:2;36648:22;36433:243;;;;:::o;36682:311::-;;36849:18;36841:6;36838:30;36835:2;;;36871:18;;:::i;:::-;36835:2;36921:4;36913:6;36909:17;36901:25;;36981:4;36975;36971:15;36963:23;;36764:229;;;:::o;36999:331::-;;37150:18;37142:6;37139:30;37136:2;;;37172:18;;:::i;:::-;37136:2;37257:4;37253:9;37246:4;37238:6;37234:17;37230:33;37222:41;;37318:4;37312;37308:15;37300:23;;37065:265;;;:::o;37336:332::-;;37488:18;37480:6;37477:30;37474:2;;;37510:18;;:::i;:::-;37474:2;37595:4;37591:9;37584:4;37576:6;37572:17;37568:33;37560:41;;37656:4;37650;37646:15;37638:23;;37403:265;;;:::o;37674:132::-;;37764:3;37756:11;;37794:4;37789:3;37785:14;37777:22;;37746:60;;;:::o;37812:132::-;;37902:3;37894:11;;37932:4;37927:3;37923:14;37915:22;;37884:60;;;:::o;37950:114::-;;38051:5;38045:12;38035:22;;38024:40;;;:::o;38070:114::-;;38171:5;38165:12;38155:22;;38144:40;;;:::o;38190:98::-;;38275:5;38269:12;38259:22;;38248:40;;;:::o;38294:99::-;;38380:5;38374:12;38364:22;;38353:40;;;:::o;38399:113::-;;38501:4;38496:3;38492:14;38484:22;;38474:38;;;:::o;38518:113::-;;38620:4;38615:3;38611:14;38603:22;;38593:38;;;:::o;38637:192::-;;38778:6;38773:3;38766:19;38818:4;38813:3;38809:14;38794:29;;38756:73;;;;:::o;38835:184::-;;38968:6;38963:3;38956:19;39008:4;39003:3;38999:14;38984:29;;38946:73;;;;:::o;39025:168::-;;39142:6;39137:3;39130:19;39182:4;39177:3;39173:14;39158:29;;39120:73;;;;:::o;39199:169::-;;39317:6;39312:3;39305:19;39357:4;39352:3;39348:14;39333:29;;39295:73;;;;:::o;39374:148::-;;39513:3;39498:18;;39488:34;;;;:::o;39528:305::-;;39587:20;39605:1;39587:20;:::i;:::-;39582:25;;39621:20;39639:1;39621:20;:::i;:::-;39616:25;;39775:1;39707:66;39703:74;39700:1;39697:81;39694:2;;;39781:18;;:::i;:::-;39694:2;39825:1;39822;39818:9;39811:16;;39572:261;;;;:::o;39839:185::-;;39896:20;39914:1;39896:20;:::i;:::-;39891:25;;39930:20;39948:1;39930:20;:::i;:::-;39925:25;;39969:1;39959:2;;39974:18;;:::i;:::-;39959:2;40016:1;40013;40009:9;40004:14;;39881:143;;;;:::o;40030:348::-;;40093:20;40111:1;40093:20;:::i;:::-;40088:25;;40127:20;40145:1;40127:20;:::i;:::-;40122:25;;40315:1;40247:66;40243:74;40240:1;40237:81;40232:1;40225:9;40218:17;40214:105;40211:2;;;40322:18;;:::i;:::-;40211:2;40370:1;40367;40363:9;40352:20;;40078:300;;;;:::o;40384:191::-;;40444:20;40462:1;40444:20;:::i;:::-;40439:25;;40478:20;40496:1;40478:20;:::i;:::-;40473:25;;40517:1;40514;40511:8;40508:2;;;40522:18;;:::i;:::-;40508:2;40567:1;40564;40560:9;40552:17;;40429:146;;;;:::o;40581:96::-;;40647:24;40665:5;40647:24;:::i;:::-;40636:35;;40626:51;;;:::o;40683:90::-;;40760:5;40753:13;40746:21;40735:32;;40725:48;;;:::o;40779:77::-;;40845:5;40834:16;;40824:32;;;:::o;40862:149::-;;40938:66;40931:5;40927:78;40916:89;;40906:105;;;:::o;41017:126::-;;41094:42;41087:5;41083:54;41072:65;;41062:81;;;:::o;41149:77::-;;41215:5;41204:16;;41194:32;;;:::o;41232:154::-;41316:6;41311:3;41306;41293:30;41378:1;41369:6;41364:3;41360:16;41353:27;41283:103;;;:::o;41392:307::-;41460:1;41470:113;41484:6;41481:1;41478:13;41470:113;;;41569:1;41564:3;41560:11;41554:18;41550:1;41545:3;41541:11;41534:39;41506:2;41503:1;41499:10;41494:15;;41470:113;;;41601:6;41598:1;41595:13;41592:2;;;41681:1;41672:6;41667:3;41663:16;41656:27;41592:2;41441:258;;;;:::o;41705:320::-;;41786:1;41780:4;41776:12;41766:22;;41833:1;41827:4;41823:12;41854:18;41844:2;;41910:4;41902:6;41898:17;41888:27;;41844:2;41972;41964:6;41961:14;41941:18;41938:38;41935:2;;;41991:18;;:::i;:::-;41935:2;41756:269;;;;:::o;42031:233::-;;42093:24;42111:5;42093:24;:::i;:::-;42084:33;;42139:66;42132:5;42129:77;42126:2;;;42209:18;;:::i;:::-;42126:2;42256:1;42249:5;42245:13;42238:20;;42074:190;;;:::o;42270:100::-;;42338:26;42358:5;42338:26;:::i;:::-;42327:37;;42317:53;;;:::o;42376:94::-;;42444:20;42458:5;42444:20;:::i;:::-;42433:31;;42423:47;;;:::o;42476:176::-;;42525:20;42543:1;42525:20;:::i;:::-;42520:25;;42559:20;42577:1;42559:20;:::i;:::-;42554:25;;42598:1;42588:2;;42603:18;;:::i;:::-;42588:2;42644:1;42641;42637:9;42632:14;;42510:142;;;;:::o;42658:180::-;42706:77;42703:1;42696:88;42803:4;42800:1;42793:15;42827:4;42824:1;42817:15;42844:180;42892:77;42889:1;42882:88;42989:4;42986:1;42979:15;43013:4;43010:1;43003:15;43030:180;43078:77;43075:1;43068:88;43175:4;43172:1;43165:15;43199:4;43196:1;43189:15;43216:180;43264:77;43261:1;43254:88;43361:4;43358:1;43351:15;43385:4;43382:1;43375:15;43402:102;;43494:2;43490:7;43485:2;43478:5;43474:14;43470:28;43460:38;;43450:54;;;:::o;43510:94::-;;43591:5;43587:2;43583:14;43562:35;;43552:52;;;:::o;43610:122::-;43683:24;43701:5;43683:24;:::i;:::-;43676:5;43673:35;43663:2;;43722:1;43719;43712:12;43663:2;43653:79;:::o;43738:116::-;43808:21;43823:5;43808:21;:::i;:::-;43801:5;43798:32;43788:2;;43844:1;43841;43834:12;43788:2;43778:76;:::o;43860:122::-;43933:24;43951:5;43933:24;:::i;:::-;43926:5;43923:35;43913:2;;43972:1;43969;43962:12;43913:2;43903:79;:::o;43988:120::-;44060:23;44077:5;44060:23;:::i;:::-;44053:5;44050:34;44040:2;;44098:1;44095;44088:12;44040:2;44030:78;:::o;44114:122::-;44187:24;44205:5;44187:24;:::i;:::-;44180:5;44177:35;44167:2;;44226:1;44223;44216:12;44167:2;44157:79;:::o

Swarm Source

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