ETH Price: $3,478.43 (+1.74%)
Gas: 9 Gwei

Token

Dickenzas (DKNZA)
 

Overview

Max Total Supply

2,000 DKNZA

Holders

1,096

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
slums.eth
Balance
1 DKNZA
0xf5a6bd45240cd607a3673492b66c2a7675b8a030
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Finally, a PP Packing algorithm has been created to make the on-chain generative genital art known as Dickenzas. 2,000 NFTs will be randomly generated when minted on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Dickenzas

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-20
*/

// File: @openzeppelin/[email protected]/utils/Counters.sol


// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/[email protected]/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/security/Pausable.sol


// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/[email protected]/utils/Address.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/[email protected]/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

// File: contracts/d_project.sol



pragma solidity ^0.8.2;






interface ICryptoDickbutts {
    function ownerOf(uint256 tokenId) external view returns (address owner);
    function tokenURI(uint256 tokenId) external view returns (string memory md);
}

//
//  8===Dickenzas~~~
//

contract Dickenzas is ERC721, ERC721Enumerable, Pausable, Ownable {
    event Mint(address indexed _to, uint _tokenID, uint _hash);

    using Counters for Counters.Counter;

    Counters.Counter private counter_mints; // paid mints
    Counters.Counter private counter_cdbs; // free mints
    address addr_cdb = 0x42069ABFE407C60cf4ae4112bEDEaD391dBa1cdB; // great custom address
    ICryptoDickbutts cdb;
    uint public mintPrice = 0.069 ether; // editable with adjustPrice
    uint public constant MAX_CDB_MINTS = 250; // free mints for cdb holders
    uint public constant MAX_MINTS = 2000; // total mints possible
    mapping(uint => bool) cdb_mint; // track cdb ids used for free mints
    mapping(uint => uint) public tokenHash; // token to hash
    string private _baseURIextended = 'https://api.dickenzas.com/token?id=';
    mapping(uint=>string) private generationCode; // on chain javascript storage
    string public generationCodeHash = 'b88b53a1c9fa78a02d9626e42e1774f4c5dc8d3c12e94fe1a19c6c4566ad36b5'; // minified code hash
    string public p5jsversion = '1.4.0';

    function updateCodeHash(string memory _newhash) public onlyOwner{
        generationCodeHash = _newhash; // in case any bugs are found in p5 code.
    }

    function uploadCode(uint part, string memory code) public onlyOwner{
        generationCode[part] = code;
    }

    function getGenerationCode(uint part) public view returns (string memory){
        return generationCode[part];
    }

    function checkCDB(uint cdbID) public view returns (bool freeMint){
        cdb.ownerOf(cdbID); // check if token valid
        return !cdb_mint[cdbID];
    }

    function getCountFreeClaim() public view returns (uint m){
        return counter_cdbs.current();
    }

    function getCountSales() public view returns (uint m){
        return counter_mints.current();
    }

    function getNextTokenID() internal view returns (uint id){
        return counter_mints.current()+counter_cdbs.current();
    }

    function mintWithCDB(uint cdbID) public whenNotPaused{
        require(cdb.ownerOf(cdbID) == msg.sender,"Not owner of that CryptoDickbutt");
        require(checkCDB(cdbID),"Already used");
        require(counter_cdbs.current() < MAX_CDB_MINTS,"No free mints left");
        require(counter_mints.current()+counter_cdbs.current() < MAX_MINTS,"Minting complete");

        cdb_mint[cdbID] = true; // cdb id claimed
        uint nextTokenId = getNextTokenID();
        counter_cdbs.increment(); // track free mints
        uint hash = generateHash(nextTokenId);
        tokenHash[nextTokenId] = hash;
        _safeMint(msg.sender, nextTokenId);
        emit Mint(msg.sender, nextTokenId, hash);
    }

    function mint() public payable whenNotPaused{
        require((msg.value >= mintPrice) || (owner() == msg.sender),"Not enough");
        require(counter_mints.current()+counter_cdbs.current() < MAX_MINTS,"Minting complete");
        uint nextTokenId = getNextTokenID();
        counter_mints.increment();
        uint hash = generateHash(nextTokenId);
        tokenHash[nextTokenId] = hash;
        _safeMint(msg.sender, nextTokenId);
        emit Mint(msg.sender, nextTokenId, hash);
    }

    function reserveMints() public onlyOwner{
        // 10 mints for promo and giveaways
        require(counter_mints.current()+counter_cdbs.current() == 0 ,"Only callable before any mints occur");
        for (uint i = 0; i < 10; i++) {
            uint nextTokenId = getNextTokenID();
            counter_mints.increment();
            uint hash = generateHash(nextTokenId);
            tokenHash[nextTokenId] = hash;
            _safeMint(msg.sender, nextTokenId);
            emit Mint(msg.sender, nextTokenId, hash);
        }
    }

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

    function adjustPrice(uint new_price) public onlyOwner{
        mintPrice = new_price;
    }

    function generateHash(uint inp) internal view returns (uint randomNumber){
        return uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp, msg.sender, inp))) % 1e20;
    }

    constructor() ERC721("Dickenzas", "DKNZA") {
        cdb = ICryptoDickbutts(addr_cdb);
        _pause();
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_hash","type":"uint256"}],"name":"Mint","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_CDB_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_price","type":"uint256"}],"name":"adjustPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"cdbID","type":"uint256"}],"name":"checkCDB","outputs":[{"internalType":"bool","name":"freeMint","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generationCodeHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCountFreeClaim","outputs":[{"internalType":"uint256","name":"m","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCountSales","outputs":[{"internalType":"uint256","name":"m","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"part","type":"uint256"}],"name":"getGenerationCode","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"cdbID","type":"uint256"}],"name":"mintWithCDB","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":"p5jsversion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveMints","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":"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":"uint256","name":"","type":"uint256"}],"name":"tokenHash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newhash","type":"string"}],"name":"updateCodeHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"part","type":"uint256"},{"internalType":"string","name":"code","type":"string"}],"name":"uploadCode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600d80546001600160a01b0319167342069abfe407c60cf4ae4112bedead391dba1cdb17905566f5232269808000600f5560e0604052602360808181529062002d3f60a03980516200005a916012916020909101906200026f565b5060405180606001604052806040815260200162002d626040913980516200008b916014916020909101906200026f565b50604080518082019091526005808252640312e342e360dc1b6020909201918252620000ba916015916200026f565b50348015620000c857600080fd5b5060408051808201825260098152684469636b656e7a617360b81b602080830191825283518085019094526005845264444b4e5a4160d81b90840152815191929162000117916000916200026f565b5080516200012d9060019060208401906200026f565b5050600a805460ff1916905550620001453362000177565b600d54600e80546001600160a01b0319166001600160a01b0390921691909117905562000171620001d1565b62000352565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156200021c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002523390565b6040516001600160a01b03909116815260200160405180910390a1565b8280546200027d9062000315565b90600052602060002090601f016020900481019282620002a15760008555620002ec565b82601f10620002bc57805160ff1916838001178555620002ec565b82800160010185558215620002ec579182015b82811115620002ec578251825591602001919060010190620002cf565b50620002fa929150620002fe565b5090565b5b80821115620002fa5760008155600101620002ff565b600181811c908216806200032a57607f821691505b602082108114156200034c57634e487b7160e01b600052602260045260246000fd5b50919050565b6129dd80620003626000396000f3fe60806040526004361061023b5760003560e01c8063609604c31161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd14610641578063cbf23b0214610661578063cce132d114610681578063e985e9c514610697578063f2fde38b146106e057600080fd5b8063a22cb465146105aa578063a335de90146105ca578063a3864397146105df578063a9a8721a1461060c578063b88d4fde1461062157600080fd5b806372bf079e116100f257806372bf079e146105285780638456cb59146105485780638da5cb5b1461055d57806395d89b4114610580578063976f65df1461059557600080fd5b8063609604c3146104a85780636352211e146104bd5780636817c76c146104dd57806370a08231146104f3578063715018a61461051357600080fd5b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce714610410578063552bf34a1461043057806355f804b3146104505780635c300ec9146104705780635c975abb1461049057600080fd5b80632f745c59146103915780633ccfd60b146103b15780633f4ba83a146103c657806342842e0e146103db57806347dece93146103fb57600080fd5b80631249c58b116102035780631249c58b1461031457806312ac2ff71461031c57806318160ddd1461033c5780632217be1e1461035157806323b872dd1461037157600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806311055acc146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046125b9565b610700565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610711565b60405161026c9190612720565b3480156102a357600080fd5b506102b76102b2366004612628565b6107a3565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea36600461258d565b61083d565b005b3480156102fd57600080fd5b5061030660fa81565b60405190815260200161026c565b6102ef610953565b34801561032857600080fd5b506102ef610337366004612628565b610aaa565b34801561034857600080fd5b50600854610306565b34801561035d57600080fd5b506102ef61036c366004612641565b610d22565b34801561037d57600080fd5b506102ef61038c366004612499565b610d71565b34801561039d57600080fd5b506103066103ac36600461258d565b610da2565b3480156103bd57600080fd5b506102ef610e38565b3480156103d257600080fd5b506102ef610e97565b3480156103e757600080fd5b506102ef6103f6366004612499565b610ed1565b34801561040757600080fd5b5061028a610eec565b34801561041c57600080fd5b5061030661042b366004612628565b610f7a565b34801561043c57600080fd5b5061028a61044b366004612628565b61100d565b34801561045c57600080fd5b506102ef61046b3660046125f3565b6110af565b34801561047c57600080fd5b5061026061048b366004612628565b6110f6565b34801561049c57600080fd5b50600a5460ff16610260565b3480156104b457600080fd5b5061030661118b565b3480156104c957600080fd5b506102b76104d8366004612628565b61119b565b3480156104e957600080fd5b50610306600f5481565b3480156104ff57600080fd5b5061030661050e366004612426565b611212565b34801561051f57600080fd5b506102ef611299565b34801561053457600080fd5b506102ef610543366004612628565b6112d3565b34801561055457600080fd5b506102ef611308565b34801561056957600080fd5b50600a5461010090046001600160a01b03166102b7565b34801561058c57600080fd5b5061028a611340565b3480156105a157600080fd5b5061030661134f565b3480156105b657600080fd5b506102ef6105c536600461255a565b61135a565b3480156105d657600080fd5b506102ef611365565b3480156105eb57600080fd5b506103066105fa366004612628565b60116020526000908152604090205481565b34801561061857600080fd5b5061028a61149c565b34801561062d57600080fd5b506102ef61063c3660046124da565b6114a9565b34801561064d57600080fd5b5061028a61065c366004612628565b6114e1565b34801561066d57600080fd5b506102ef61067c3660046125f3565b6115bc565b34801561068d57600080fd5b506103066107d081565b3480156106a357600080fd5b506102606106b2366004612460565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106ec57600080fd5b506102ef6106fb366004612426565b6115ff565b600061070b8261169d565b92915050565b606060008054610720906128a4565b80601f016020809104026020016040519081016040528092919081815260200182805461074c906128a4565b80156107995780601f1061076e57610100808354040283529160200191610799565b820191906000526020600020905b81548152906001019060200180831161077c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108215760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108488261119b565b9050806001600160a01b0316836001600160a01b031614156108b65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610818565b336001600160a01b03821614806108d257506108d281336106b2565b6109445760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610818565b61094e83836116c2565b505050565b600a5460ff16156109765760405162461bcd60e51b815260040161081890612785565b600f54341015806109975750600a546001600160a01b036101009091041633145b6109d05760405162461bcd60e51b815260206004820152600a60248201526909cdee840cadcdeeaced60b31b6044820152606401610818565b6107d06109dc600c5490565b600b546109e99190612835565b10610a295760405162461bcd60e51b815260206004820152601060248201526f4d696e74696e6720636f6d706c65746560801b6044820152606401610818565b6000610a33611730565b9050610a43600b80546001019055565b6000610a4e82611748565b60008381526011602052604090208190559050610a6b33836117b6565b604080518381526020810183905233917f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f910160405180910390a25050565b600a5460ff1615610acd5760405162461bcd60e51b815260040161081890612785565b600e546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610b1157600080fd5b505afa158015610b25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b499190612443565b6001600160a01b031614610b9f5760405162461bcd60e51b815260206004820181905260248201527f4e6f74206f776e6572206f6620746861742043727970746f4469636b627574746044820152606401610818565b610ba8816110f6565b610be35760405162461bcd60e51b815260206004820152600c60248201526b105b1c9958591e481d5cd95960a21b6044820152606401610818565b60fa610bee600c5490565b10610c305760405162461bcd60e51b8152602060048201526012602482015271139bc8199c9959481b5a5b9d1cc81b19599d60721b6044820152606401610818565b6107d0610c3c600c5490565b600b54610c499190612835565b10610c895760405162461bcd60e51b815260206004820152601060248201526f4d696e74696e6720636f6d706c65746560801b6044820152606401610818565b6000818152601060205260408120805460ff19166001179055610caa611730565b9050610cba600c80546001019055565b6000610cc582611748565b60008381526011602052604090208190559050610ce233836117b6565b604080518381526020810183905233917f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f910160405180910390a2505050565b600a546001600160a01b03610100909104163314610d525760405162461bcd60e51b8152600401610818906127af565b6000828152601360209081526040909120825161094e928401906122f7565b610d7b33826117d0565b610d975760405162461bcd60e51b8152600401610818906127e4565b61094e8383836118c7565b6000610dad83611212565b8210610e0f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610818565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03610100909104163314610e685760405162461bcd60e51b8152600401610818906127af565b60405133904780156108fc02916000818181858888f19350505050158015610e94573d6000803e3d6000fd5b50565b600a546001600160a01b03610100909104163314610ec75760405162461bcd60e51b8152600401610818906127af565b610ecf611a72565b565b61094e838383604051806020016040528060008152506114a9565b60158054610ef9906128a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f25906128a4565b8015610f725780601f10610f4757610100808354040283529160200191610f72565b820191906000526020600020905b815481529060010190602001808311610f5557829003601f168201915b505050505081565b6000610f8560085490565b8210610fe85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610818565b60088281548110610ffb57610ffb612950565b90600052602060002001549050919050565b600081815260136020526040902080546060919061102a906128a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611056906128a4565b80156110a35780601f10611078576101008083540402835291602001916110a3565b820191906000526020600020905b81548152906001019060200180831161108657829003601f168201915b50505050509050919050565b600a546001600160a01b036101009091041633146110df5760405162461bcd60e51b8152600401610818906127af565b80516110f29060129060208401906122f7565b5050565b600e546040516331a9108f60e11b8152600481018390526000916001600160a01b031690636352211e9060240160206040518083038186803b15801561113b57600080fd5b505afa15801561114f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111739190612443565b505060009081526010602052604090205460ff161590565b6000611196600b5490565b905090565b6000818152600260205260408120546001600160a01b03168061070b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610818565b60006001600160a01b03821661127d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610818565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b036101009091041633146112c95760405162461bcd60e51b8152600401610818906127af565b610ecf6000611b05565b600a546001600160a01b036101009091041633146113035760405162461bcd60e51b8152600401610818906127af565b600f55565b600a546001600160a01b036101009091041633146113385760405162461bcd60e51b8152600401610818906127af565b610ecf611b5f565b606060018054610720906128a4565b6000611196600c5490565b6110f2338383611bb7565b600a546001600160a01b036101009091041633146113955760405162461bcd60e51b8152600401610818906127af565b600c54600b546113a59190612835565b156113fe5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792063616c6c61626c65206265666f726520616e79206d696e7473206f60448201526331b1bab960e11b6064820152608401610818565b60005b600a811015610e94576000611414611730565b9050611424600b80546001019055565b600061142f82611748565b6000838152601160205260409020819055905061144c33836117b6565b604080518381526020810183905233917f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f910160405180910390a250508080611494906128df565b915050611401565b60148054610ef9906128a4565b6114b333836117d0565b6114cf5760405162461bcd60e51b8152600401610818906127e4565b6114db84848484611c86565b50505050565b6000818152600260205260409020546060906001600160a01b03166115605760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610818565b600061156a611cb9565b9050600081511161158a57604051806020016040528060008152506115b5565b8061159484611cc8565b6040516020016115a59291906126b4565b6040516020818303038152906040525b9392505050565b600a546001600160a01b036101009091041633146115ec5760405162461bcd60e51b8152600401610818906127af565b80516110f29060149060208401906122f7565b600a546001600160a01b0361010090910416331461162f5760405162461bcd60e51b8152600401610818906127af565b6001600160a01b0381166116945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610818565b610e9481611b05565b60006001600160e01b0319821663780e9d6360e01b148061070b575061070b82611dc6565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116f78261119b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061173b600c5490565b600b546111969190612835565b600068056bc75e2d63100000444233856040516020016117939493929190938452602084019290925260601b6bffffffffffffffffffffffff19166040830152605482015260740190565b6040516020818303038152906040528051906020012060001c61070b91906128fa565b6110f2828260405180602001604052806000815250611e16565b6000818152600260205260408120546001600160a01b03166118495760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610818565b60006118548361119b565b9050806001600160a01b0316846001600160a01b0316148061188f5750836001600160a01b0316611884846107a3565b6001600160a01b0316145b806118bf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118da8261119b565b6001600160a01b0316146119425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610818565b6001600160a01b0382166119a45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610818565b6119af838383611e49565b6119ba6000826116c2565b6001600160a01b03831660009081526003602052604081208054600192906119e3908490612861565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a11908490612835565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5460ff16611abb5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610818565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615611b825760405162461bcd60e51b815260040161081890612785565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ae83390565b816001600160a01b0316836001600160a01b03161415611c195760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610818565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c918484846118c7565b611c9d84848484611e54565b6114db5760405162461bcd60e51b815260040161081890612733565b606060128054610720906128a4565b606081611cec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d165780611d00816128df565b9150611d0f9050600a8361284d565b9150611cf0565b60008167ffffffffffffffff811115611d3157611d31612966565b6040519080825280601f01601f191660200182016040528015611d5b576020820181803683370190505b5090505b84156118bf57611d70600183612861565b9150611d7d600a866128fa565b611d88906030612835565b60f81b818381518110611d9d57611d9d612950565b60200101906001600160f81b031916908160001a905350611dbf600a8661284d565b9450611d5f565b60006001600160e01b031982166380ac58cd60e01b1480611df757506001600160e01b03198216635b5e139f60e01b145b8061070b57506301ffc9a760e01b6001600160e01b031983161461070b565b611e208383611f61565b611e2d6000848484611e54565b61094e5760405162461bcd60e51b815260040161081890612733565b61094e8383836120af565b60006001600160a01b0384163b15611f5657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e989033908990889088906004016126e3565b602060405180830381600087803b158015611eb257600080fd5b505af1925050508015611ee2575060408051601f3d908101601f19168201909252611edf918101906125d6565b60015b611f3c573d808015611f10576040519150601f19603f3d011682016040523d82523d6000602084013e611f15565b606091505b508051611f345760405162461bcd60e51b815260040161081890612733565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118bf565b506001949350505050565b6001600160a01b038216611fb75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610818565b6000818152600260205260409020546001600160a01b03161561201c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610818565b61202860008383611e49565b6001600160a01b0382166000908152600360205260408120805460019290612051908490612835565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b03831661210a5761210581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61212d565b816001600160a01b0316836001600160a01b03161461212d5761212d8382612167565b6001600160a01b0382166121445761094e81612204565b826001600160a01b0316826001600160a01b03161461094e5761094e82826122b3565b6000600161217484611212565b61217e9190612861565b6000838152600760205260409020549091508082146121d1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061221690600190612861565b6000838152600960205260408120546008805493945090928490811061223e5761223e612950565b90600052602060002001549050806008838154811061225f5761225f612950565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122975761229761293a565b6001900381819060005260206000200160009055905550505050565b60006122be83611212565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612303906128a4565b90600052602060002090601f016020900481019282612325576000855561236b565b82601f1061233e57805160ff191683800117855561236b565b8280016001018555821561236b579182015b8281111561236b578251825591602001919060010190612350565b5061237792915061237b565b5090565b5b80821115612377576000815560010161237c565b600067ffffffffffffffff808411156123ab576123ab612966565b604051601f8501601f19908116603f011681019082821181831017156123d3576123d3612966565b816040528093508581528686860111156123ec57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261241757600080fd5b6115b583833560208501612390565b60006020828403121561243857600080fd5b81356115b58161297c565b60006020828403121561245557600080fd5b81516115b58161297c565b6000806040838503121561247357600080fd5b823561247e8161297c565b9150602083013561248e8161297c565b809150509250929050565b6000806000606084860312156124ae57600080fd5b83356124b98161297c565b925060208401356124c98161297c565b929592945050506040919091013590565b600080600080608085870312156124f057600080fd5b84356124fb8161297c565b9350602085013561250b8161297c565b925060408501359150606085013567ffffffffffffffff81111561252e57600080fd5b8501601f8101871361253f57600080fd5b61254e87823560208401612390565b91505092959194509250565b6000806040838503121561256d57600080fd5b82356125788161297c565b91506020830135801515811461248e57600080fd5b600080604083850312156125a057600080fd5b82356125ab8161297c565b946020939093013593505050565b6000602082840312156125cb57600080fd5b81356115b581612991565b6000602082840312156125e857600080fd5b81516115b581612991565b60006020828403121561260557600080fd5b813567ffffffffffffffff81111561261c57600080fd5b6118bf84828501612406565b60006020828403121561263a57600080fd5b5035919050565b6000806040838503121561265457600080fd5b82359150602083013567ffffffffffffffff81111561267257600080fd5b61267e85828601612406565b9150509250929050565b600081518084526126a0816020860160208601612878565b601f01601f19169290920160200192915050565b600083516126c6818460208801612878565b8351908301906126da818360208801612878565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061271690830184612688565b9695505050505050565b6020815260006115b56020830184612688565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128485761284861290e565b500190565b60008261285c5761285c612924565b500490565b6000828210156128735761287361290e565b500390565b60005b8381101561289357818101518382015260200161287b565b838111156114db5750506000910152565b600181811c908216806128b857607f821691505b602082108114156128d957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128f3576128f361290e565b5060010190565b60008261290957612909612924565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e9457600080fd5b6001600160e01b031981168114610e9457600080fdfea264697066735822122035b672e8127881ef547d014f87f600300f5cdec3c0a0d24732d5320d5f38c9d664736f6c6343000807003368747470733a2f2f6170692e6469636b656e7a61732e636f6d2f746f6b656e3f69643d62383862353361316339666137386130326439363236653432653137373466346335646338643363313265393466653161313963366334353636616433366235

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063609604c31161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd14610641578063cbf23b0214610661578063cce132d114610681578063e985e9c514610697578063f2fde38b146106e057600080fd5b8063a22cb465146105aa578063a335de90146105ca578063a3864397146105df578063a9a8721a1461060c578063b88d4fde1461062157600080fd5b806372bf079e116100f257806372bf079e146105285780638456cb59146105485780638da5cb5b1461055d57806395d89b4114610580578063976f65df1461059557600080fd5b8063609604c3146104a85780636352211e146104bd5780636817c76c146104dd57806370a08231146104f3578063715018a61461051357600080fd5b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce714610410578063552bf34a1461043057806355f804b3146104505780635c300ec9146104705780635c975abb1461049057600080fd5b80632f745c59146103915780633ccfd60b146103b15780633f4ba83a146103c657806342842e0e146103db57806347dece93146103fb57600080fd5b80631249c58b116102035780631249c58b1461031457806312ac2ff71461031c57806318160ddd1461033c5780632217be1e1461035157806323b872dd1461037157600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806311055acc146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046125b9565b610700565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610711565b60405161026c9190612720565b3480156102a357600080fd5b506102b76102b2366004612628565b6107a3565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea36600461258d565b61083d565b005b3480156102fd57600080fd5b5061030660fa81565b60405190815260200161026c565b6102ef610953565b34801561032857600080fd5b506102ef610337366004612628565b610aaa565b34801561034857600080fd5b50600854610306565b34801561035d57600080fd5b506102ef61036c366004612641565b610d22565b34801561037d57600080fd5b506102ef61038c366004612499565b610d71565b34801561039d57600080fd5b506103066103ac36600461258d565b610da2565b3480156103bd57600080fd5b506102ef610e38565b3480156103d257600080fd5b506102ef610e97565b3480156103e757600080fd5b506102ef6103f6366004612499565b610ed1565b34801561040757600080fd5b5061028a610eec565b34801561041c57600080fd5b5061030661042b366004612628565b610f7a565b34801561043c57600080fd5b5061028a61044b366004612628565b61100d565b34801561045c57600080fd5b506102ef61046b3660046125f3565b6110af565b34801561047c57600080fd5b5061026061048b366004612628565b6110f6565b34801561049c57600080fd5b50600a5460ff16610260565b3480156104b457600080fd5b5061030661118b565b3480156104c957600080fd5b506102b76104d8366004612628565b61119b565b3480156104e957600080fd5b50610306600f5481565b3480156104ff57600080fd5b5061030661050e366004612426565b611212565b34801561051f57600080fd5b506102ef611299565b34801561053457600080fd5b506102ef610543366004612628565b6112d3565b34801561055457600080fd5b506102ef611308565b34801561056957600080fd5b50600a5461010090046001600160a01b03166102b7565b34801561058c57600080fd5b5061028a611340565b3480156105a157600080fd5b5061030661134f565b3480156105b657600080fd5b506102ef6105c536600461255a565b61135a565b3480156105d657600080fd5b506102ef611365565b3480156105eb57600080fd5b506103066105fa366004612628565b60116020526000908152604090205481565b34801561061857600080fd5b5061028a61149c565b34801561062d57600080fd5b506102ef61063c3660046124da565b6114a9565b34801561064d57600080fd5b5061028a61065c366004612628565b6114e1565b34801561066d57600080fd5b506102ef61067c3660046125f3565b6115bc565b34801561068d57600080fd5b506103066107d081565b3480156106a357600080fd5b506102606106b2366004612460565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106ec57600080fd5b506102ef6106fb366004612426565b6115ff565b600061070b8261169d565b92915050565b606060008054610720906128a4565b80601f016020809104026020016040519081016040528092919081815260200182805461074c906128a4565b80156107995780601f1061076e57610100808354040283529160200191610799565b820191906000526020600020905b81548152906001019060200180831161077c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108215760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108488261119b565b9050806001600160a01b0316836001600160a01b031614156108b65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610818565b336001600160a01b03821614806108d257506108d281336106b2565b6109445760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610818565b61094e83836116c2565b505050565b600a5460ff16156109765760405162461bcd60e51b815260040161081890612785565b600f54341015806109975750600a546001600160a01b036101009091041633145b6109d05760405162461bcd60e51b815260206004820152600a60248201526909cdee840cadcdeeaced60b31b6044820152606401610818565b6107d06109dc600c5490565b600b546109e99190612835565b10610a295760405162461bcd60e51b815260206004820152601060248201526f4d696e74696e6720636f6d706c65746560801b6044820152606401610818565b6000610a33611730565b9050610a43600b80546001019055565b6000610a4e82611748565b60008381526011602052604090208190559050610a6b33836117b6565b604080518381526020810183905233917f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f910160405180910390a25050565b600a5460ff1615610acd5760405162461bcd60e51b815260040161081890612785565b600e546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610b1157600080fd5b505afa158015610b25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b499190612443565b6001600160a01b031614610b9f5760405162461bcd60e51b815260206004820181905260248201527f4e6f74206f776e6572206f6620746861742043727970746f4469636b627574746044820152606401610818565b610ba8816110f6565b610be35760405162461bcd60e51b815260206004820152600c60248201526b105b1c9958591e481d5cd95960a21b6044820152606401610818565b60fa610bee600c5490565b10610c305760405162461bcd60e51b8152602060048201526012602482015271139bc8199c9959481b5a5b9d1cc81b19599d60721b6044820152606401610818565b6107d0610c3c600c5490565b600b54610c499190612835565b10610c895760405162461bcd60e51b815260206004820152601060248201526f4d696e74696e6720636f6d706c65746560801b6044820152606401610818565b6000818152601060205260408120805460ff19166001179055610caa611730565b9050610cba600c80546001019055565b6000610cc582611748565b60008381526011602052604090208190559050610ce233836117b6565b604080518381526020810183905233917f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f910160405180910390a2505050565b600a546001600160a01b03610100909104163314610d525760405162461bcd60e51b8152600401610818906127af565b6000828152601360209081526040909120825161094e928401906122f7565b610d7b33826117d0565b610d975760405162461bcd60e51b8152600401610818906127e4565b61094e8383836118c7565b6000610dad83611212565b8210610e0f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610818565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03610100909104163314610e685760405162461bcd60e51b8152600401610818906127af565b60405133904780156108fc02916000818181858888f19350505050158015610e94573d6000803e3d6000fd5b50565b600a546001600160a01b03610100909104163314610ec75760405162461bcd60e51b8152600401610818906127af565b610ecf611a72565b565b61094e838383604051806020016040528060008152506114a9565b60158054610ef9906128a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f25906128a4565b8015610f725780601f10610f4757610100808354040283529160200191610f72565b820191906000526020600020905b815481529060010190602001808311610f5557829003601f168201915b505050505081565b6000610f8560085490565b8210610fe85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610818565b60088281548110610ffb57610ffb612950565b90600052602060002001549050919050565b600081815260136020526040902080546060919061102a906128a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611056906128a4565b80156110a35780601f10611078576101008083540402835291602001916110a3565b820191906000526020600020905b81548152906001019060200180831161108657829003601f168201915b50505050509050919050565b600a546001600160a01b036101009091041633146110df5760405162461bcd60e51b8152600401610818906127af565b80516110f29060129060208401906122f7565b5050565b600e546040516331a9108f60e11b8152600481018390526000916001600160a01b031690636352211e9060240160206040518083038186803b15801561113b57600080fd5b505afa15801561114f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111739190612443565b505060009081526010602052604090205460ff161590565b6000611196600b5490565b905090565b6000818152600260205260408120546001600160a01b03168061070b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610818565b60006001600160a01b03821661127d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610818565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b036101009091041633146112c95760405162461bcd60e51b8152600401610818906127af565b610ecf6000611b05565b600a546001600160a01b036101009091041633146113035760405162461bcd60e51b8152600401610818906127af565b600f55565b600a546001600160a01b036101009091041633146113385760405162461bcd60e51b8152600401610818906127af565b610ecf611b5f565b606060018054610720906128a4565b6000611196600c5490565b6110f2338383611bb7565b600a546001600160a01b036101009091041633146113955760405162461bcd60e51b8152600401610818906127af565b600c54600b546113a59190612835565b156113fe5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792063616c6c61626c65206265666f726520616e79206d696e7473206f60448201526331b1bab960e11b6064820152608401610818565b60005b600a811015610e94576000611414611730565b9050611424600b80546001019055565b600061142f82611748565b6000838152601160205260409020819055905061144c33836117b6565b604080518381526020810183905233917f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f910160405180910390a250508080611494906128df565b915050611401565b60148054610ef9906128a4565b6114b333836117d0565b6114cf5760405162461bcd60e51b8152600401610818906127e4565b6114db84848484611c86565b50505050565b6000818152600260205260409020546060906001600160a01b03166115605760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610818565b600061156a611cb9565b9050600081511161158a57604051806020016040528060008152506115b5565b8061159484611cc8565b6040516020016115a59291906126b4565b6040516020818303038152906040525b9392505050565b600a546001600160a01b036101009091041633146115ec5760405162461bcd60e51b8152600401610818906127af565b80516110f29060149060208401906122f7565b600a546001600160a01b0361010090910416331461162f5760405162461bcd60e51b8152600401610818906127af565b6001600160a01b0381166116945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610818565b610e9481611b05565b60006001600160e01b0319821663780e9d6360e01b148061070b575061070b82611dc6565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116f78261119b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061173b600c5490565b600b546111969190612835565b600068056bc75e2d63100000444233856040516020016117939493929190938452602084019290925260601b6bffffffffffffffffffffffff19166040830152605482015260740190565b6040516020818303038152906040528051906020012060001c61070b91906128fa565b6110f2828260405180602001604052806000815250611e16565b6000818152600260205260408120546001600160a01b03166118495760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610818565b60006118548361119b565b9050806001600160a01b0316846001600160a01b0316148061188f5750836001600160a01b0316611884846107a3565b6001600160a01b0316145b806118bf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118da8261119b565b6001600160a01b0316146119425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610818565b6001600160a01b0382166119a45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610818565b6119af838383611e49565b6119ba6000826116c2565b6001600160a01b03831660009081526003602052604081208054600192906119e3908490612861565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a11908490612835565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5460ff16611abb5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610818565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615611b825760405162461bcd60e51b815260040161081890612785565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ae83390565b816001600160a01b0316836001600160a01b03161415611c195760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610818565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c918484846118c7565b611c9d84848484611e54565b6114db5760405162461bcd60e51b815260040161081890612733565b606060128054610720906128a4565b606081611cec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d165780611d00816128df565b9150611d0f9050600a8361284d565b9150611cf0565b60008167ffffffffffffffff811115611d3157611d31612966565b6040519080825280601f01601f191660200182016040528015611d5b576020820181803683370190505b5090505b84156118bf57611d70600183612861565b9150611d7d600a866128fa565b611d88906030612835565b60f81b818381518110611d9d57611d9d612950565b60200101906001600160f81b031916908160001a905350611dbf600a8661284d565b9450611d5f565b60006001600160e01b031982166380ac58cd60e01b1480611df757506001600160e01b03198216635b5e139f60e01b145b8061070b57506301ffc9a760e01b6001600160e01b031983161461070b565b611e208383611f61565b611e2d6000848484611e54565b61094e5760405162461bcd60e51b815260040161081890612733565b61094e8383836120af565b60006001600160a01b0384163b15611f5657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e989033908990889088906004016126e3565b602060405180830381600087803b158015611eb257600080fd5b505af1925050508015611ee2575060408051601f3d908101601f19168201909252611edf918101906125d6565b60015b611f3c573d808015611f10576040519150601f19603f3d011682016040523d82523d6000602084013e611f15565b606091505b508051611f345760405162461bcd60e51b815260040161081890612733565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118bf565b506001949350505050565b6001600160a01b038216611fb75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610818565b6000818152600260205260409020546001600160a01b03161561201c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610818565b61202860008383611e49565b6001600160a01b0382166000908152600360205260408120805460019290612051908490612835565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b03831661210a5761210581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61212d565b816001600160a01b0316836001600160a01b03161461212d5761212d8382612167565b6001600160a01b0382166121445761094e81612204565b826001600160a01b0316826001600160a01b03161461094e5761094e82826122b3565b6000600161217484611212565b61217e9190612861565b6000838152600760205260409020549091508082146121d1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061221690600190612861565b6000838152600960205260408120546008805493945090928490811061223e5761223e612950565b90600052602060002001549050806008838154811061225f5761225f612950565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122975761229761293a565b6001900381819060005260206000200160009055905550505050565b60006122be83611212565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612303906128a4565b90600052602060002090601f016020900481019282612325576000855561236b565b82601f1061233e57805160ff191683800117855561236b565b8280016001018555821561236b579182015b8281111561236b578251825591602001919060010190612350565b5061237792915061237b565b5090565b5b80821115612377576000815560010161237c565b600067ffffffffffffffff808411156123ab576123ab612966565b604051601f8501601f19908116603f011681019082821181831017156123d3576123d3612966565b816040528093508581528686860111156123ec57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261241757600080fd5b6115b583833560208501612390565b60006020828403121561243857600080fd5b81356115b58161297c565b60006020828403121561245557600080fd5b81516115b58161297c565b6000806040838503121561247357600080fd5b823561247e8161297c565b9150602083013561248e8161297c565b809150509250929050565b6000806000606084860312156124ae57600080fd5b83356124b98161297c565b925060208401356124c98161297c565b929592945050506040919091013590565b600080600080608085870312156124f057600080fd5b84356124fb8161297c565b9350602085013561250b8161297c565b925060408501359150606085013567ffffffffffffffff81111561252e57600080fd5b8501601f8101871361253f57600080fd5b61254e87823560208401612390565b91505092959194509250565b6000806040838503121561256d57600080fd5b82356125788161297c565b91506020830135801515811461248e57600080fd5b600080604083850312156125a057600080fd5b82356125ab8161297c565b946020939093013593505050565b6000602082840312156125cb57600080fd5b81356115b581612991565b6000602082840312156125e857600080fd5b81516115b581612991565b60006020828403121561260557600080fd5b813567ffffffffffffffff81111561261c57600080fd5b6118bf84828501612406565b60006020828403121561263a57600080fd5b5035919050565b6000806040838503121561265457600080fd5b82359150602083013567ffffffffffffffff81111561267257600080fd5b61267e85828601612406565b9150509250929050565b600081518084526126a0816020860160208601612878565b601f01601f19169290920160200192915050565b600083516126c6818460208801612878565b8351908301906126da818360208801612878565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061271690830184612688565b9695505050505050565b6020815260006115b56020830184612688565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128485761284861290e565b500190565b60008261285c5761285c612924565b500490565b6000828210156128735761287361290e565b500390565b60005b8381101561289357818101518382015260200161287b565b838111156114db5750506000910152565b600181811c908216806128b857607f821691505b602082108114156128d957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128f3576128f361290e565b5060010190565b60008261290957612909612924565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e9457600080fd5b6001600160e01b031981168114610e9457600080fdfea264697066735822122035b672e8127881ef547d014f87f600300f5cdec3c0a0d24732d5320d5f38c9d664736f6c63430008070033

Deployed Bytecode Sourcemap

48585:5249:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53619:212;;;;;;;;;;-1:-1:-1;53619:212:0;;;;;:::i;:::-;;:::i;:::-;;;7222:14:1;;7215:22;7197:41;;7185:2;7170:18;53619:212:0;;;;;;;;29621:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31180:221::-;;;;;;;;;;-1:-1:-1;31180:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6520:32:1;;;6502:51;;6490:2;6475:18;31180:221:0;6356:203:1;30703:411:0;;;;;;;;;;-1:-1:-1;30703:411:0;;;;;:::i;:::-;;:::i;:::-;;49076:40;;;;;;;;;;;;49113:3;49076:40;;;;;17658:25:1;;;17646:2;17631:18;49076:40:0;17512:177:1;51349:499:0;;;:::i;50629:712::-;;;;;;;;;;-1:-1:-1;50629:712:0;;;;;:::i;:::-;;:::i;42773:113::-;;;;;;;;;;-1:-1:-1;42861:10:0;:17;42773:113;;49853;;;;;;;;;;-1:-1:-1;49853:113:0;;;;;:::i;:::-;;:::i;31930:339::-;;;;;;;;;;-1:-1:-1;31930:339:0;;;;;:::i;:::-;;:::i;42441:256::-;;;;;;;;;;-1:-1:-1;42441:256:0;;;;;:::i;:::-;;:::i;52410:106::-;;;;;;;;;;;;;:::i;53264:65::-;;;;;;;;;;;;;:::i;32340:185::-;;;;;;;;;;-1:-1:-1;32340:185:0;;;;;:::i;:::-;;:::i;49647:35::-;;;;;;;;;;;;;:::i;42963:233::-;;;;;;;;;;-1:-1:-1;42963:233:0;;;;;:::i;:::-;;:::i;49974:119::-;;;;;;;;;;-1:-1:-1;49974:119:0;;;;;:::i;:::-;;:::i;52945:111::-;;;;;;;;;;-1:-1:-1;52945:111:0;;;;;:::i;:::-;;:::i;50101:160::-;;;;;;;;;;-1:-1:-1;50101:160:0;;;;;:::i;:::-;;:::i;8174:86::-;;;;;;;;;;-1:-1:-1;8245:7:0;;;;8174:86;;50382:102;;;;;;;;;;;;;:::i;29315:239::-;;;;;;;;;;-1:-1:-1;29315:239:0;;;;;:::i;:::-;;:::i;49005:35::-;;;;;;;;;;;;;;;;29045:208;;;;;;;;;;-1:-1:-1;29045:208:0;;;;;:::i;:::-;;:::i;6219:103::-;;;;;;;;;;;;;:::i;52524:93::-;;;;;;;;;;-1:-1:-1;52524:93:0;;;;;:::i;:::-;;:::i;53195:61::-;;;;;;;;;;;;;:::i;5568:87::-;;;;;;;;;;-1:-1:-1;5641:6:0;;;;;-1:-1:-1;;;;;5641:6:0;5568:87;;29790:104;;;;;;;;;;;;;:::i;50269:105::-;;;;;;;;;;;;;:::i;31473:155::-;;;;;;;;;;-1:-1:-1;31473:155:0;;;;;:::i;:::-;;:::i;51856:546::-;;;;;;;;;;;;;:::i;49295:38::-;;;;;;;;;;-1:-1:-1;49295:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;49517:101;;;;;;;;;;;;;:::i;32596:328::-;;;;;;;;;;-1:-1:-1;32596:328:0;;;;;:::i;:::-;;:::i;29965:334::-;;;;;;;;;;-1:-1:-1;29965:334:0;;;;;:::i;:::-;;:::i;49691:154::-;;;;;;;;;;-1:-1:-1;49691:154:0;;;;;:::i;:::-;;:::i;49153:37::-;;;;;;;;;;;;49186:4;49153:37;;31699:164;;;;;;;;;;-1:-1:-1;31699:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31820:25:0;;;31796:4;31820:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31699:164;6477:201;;;;;;;;;;-1:-1:-1;6477:201:0;;;;;:::i;:::-;;:::i;53619:212::-;53758:4;53787:36;53811:11;53787:23;:36::i;:::-;53780:43;53619:212;-1:-1:-1;;53619:212:0:o;29621:100::-;29675:13;29708:5;29701:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29621:100;:::o;31180:221::-;31256:7;34523:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34523:16:0;31276:73;;;;-1:-1:-1;;;31276:73:0;;14476:2:1;31276:73:0;;;14458:21:1;14515:2;14495:18;;;14488:30;14554:34;14534:18;;;14527:62;-1:-1:-1;;;14605:18:1;;;14598:42;14657:19;;31276:73:0;;;;;;;;;-1:-1:-1;31369:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31369:24:0;;31180:221::o;30703:411::-;30784:13;30800:23;30815:7;30800:14;:23::i;:::-;30784:39;;30848:5;-1:-1:-1;;;;;30842:11:0;:2;-1:-1:-1;;;;;30842:11:0;;;30834:57;;;;-1:-1:-1;;;30834:57:0;;16076:2:1;30834:57:0;;;16058:21:1;16115:2;16095:18;;;16088:30;16154:34;16134:18;;;16127:62;-1:-1:-1;;;16205:18:1;;;16198:31;16246:19;;30834:57:0;15874:397:1;30834:57:0;4366:10;-1:-1:-1;;;;;30926:21:0;;;;:62;;-1:-1:-1;30951:37:0;30968:5;4366:10;31699:164;:::i;30951:37::-;30904:168;;;;-1:-1:-1;;;30904:168:0;;12183:2:1;30904:168:0;;;12165:21:1;12222:2;12202:18;;;12195:30;12261:34;12241:18;;;12234:62;12332:26;12312:18;;;12305:54;12376:19;;30904:168:0;11981:420:1;30904:168:0;31085:21;31094:2;31098:7;31085:8;:21::i;:::-;30773:341;30703:411;;:::o;51349:499::-;8245:7;;;;8499:9;8491:38;;;;-1:-1:-1;;;8491:38:0;;;;;;;:::i;:::-;51426:9:::1;;51413;:22;;51412:51;;;-1:-1:-1::0;5641:6:0;;-1:-1:-1;;;;;5641:6:0;;;;;51452:10:::1;51441:21;51412:51;51404:73;;;::::0;-1:-1:-1;;;51404:73:0;;12608:2:1;51404:73:0::1;::::0;::::1;12590:21:1::0;12647:2;12627:18;;;12620:30;-1:-1:-1;;;12666:18:1;;;12659:40;12716:18;;51404:73:0::1;12406:334:1::0;51404:73:0::1;49186:4;51520:22;:12;970:14:::0;;878:114;51520:22:::1;51496:13;970:14:::0;51496:46:::1;;;;:::i;:::-;:58;51488:86;;;::::0;-1:-1:-1;;;51488:86:0;;8016:2:1;51488:86:0::1;::::0;::::1;7998:21:1::0;8055:2;8035:18;;;8028:30;-1:-1:-1;;;8074:18:1;;;8067:46;8130:18;;51488:86:0::1;7814:340:1::0;51488:86:0::1;51585:16;51604;:14;:16::i;:::-;51585:35;;51631:25;:13;1089:19:::0;;1107:1;1089:19;;;1000:127;51631:25:::1;51667:9;51679:25;51692:11;51679:12;:25::i;:::-;51715:22;::::0;;;:9:::1;:22;::::0;;;;:29;;;51667:37;-1:-1:-1;51755:34:0::1;51765:10;51725:11:::0;51755:9:::1;:34::i;:::-;51805:35;::::0;;17868:25:1;;;17924:2;17909:18;;17902:34;;;51810:10:0::1;::::0;51805:35:::1;::::0;17841:18:1;51805:35:0::1;;;;;;;51393:455;;51349:499::o:0;50629:712::-;8245:7;;;;8499:9;8491:38;;;;-1:-1:-1;;;8491:38:0;;;;;;;:::i;:::-;50701:3:::1;::::0;:18:::1;::::0;-1:-1:-1;;;50701:18:0;;::::1;::::0;::::1;17658:25:1::0;;;50723:10:0::1;::::0;-1:-1:-1;;;;;50701:3:0::1;::::0;:11:::1;::::0;17631:18:1;;50701::0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50701:32:0::1;;50693:76;;;::::0;-1:-1:-1;;;50693:76:0;;11064:2:1;50693:76:0::1;::::0;::::1;11046:21:1::0;;;11083:18;;;11076:30;11142:34;11122:18;;;11115:62;11194:18;;50693:76:0::1;10862:356:1::0;50693:76:0::1;50788:15;50797:5;50788:8;:15::i;:::-;50780:39;;;::::0;-1:-1:-1;;;50780:39:0;;7675:2:1;50780:39:0::1;::::0;::::1;7657:21:1::0;7714:2;7694:18;;;7687:30;-1:-1:-1;;;7733:18:1;;;7726:42;7785:18;;50780:39:0::1;7473:336:1::0;50780:39:0::1;49113:3;50838:22;:12;970:14:::0;;878:114;50838:22:::1;:38;50830:68;;;::::0;-1:-1:-1;;;50830:68:0;;14129:2:1;50830:68:0::1;::::0;::::1;14111:21:1::0;14168:2;14148:18;;;14141:30;-1:-1:-1;;;14187:18:1;;;14180:48;14245:18;;50830:68:0::1;13927:342:1::0;50830:68:0::1;49186:4;50941:22;:12;970:14:::0;;878:114;50941:22:::1;50917:13;970:14:::0;50917:46:::1;;;;:::i;:::-;:58;50909:86;;;::::0;-1:-1:-1;;;50909:86:0;;8016:2:1;50909:86:0::1;::::0;::::1;7998:21:1::0;8055:2;8035:18;;;8028:30;-1:-1:-1;;;8074:18:1;;;8067:46;8130:18;;50909:86:0::1;7814:340:1::0;50909:86:0::1;51008:15;::::0;;;:8:::1;:15;::::0;;;;:22;;-1:-1:-1;;51008:22:0::1;51026:4;51008:22;::::0;;51078:16:::1;:14;:16::i;:::-;51059:35;;51105:24;:12;1089:19:::0;;1107:1;1089:19;;;1000:127;51105:24:::1;51160:9;51172:25;51185:11;51172:12;:25::i;:::-;51208:22;::::0;;;:9:::1;:22;::::0;;;;:29;;;51160:37;-1:-1:-1;51248:34:0::1;51258:10;51218:11:::0;51248:9:::1;:34::i;:::-;51298:35;::::0;;17868:25:1;;;17924:2;17909:18;;17902:34;;;51303:10:0::1;::::0;51298:35:::1;::::0;17841:18:1;51298:35:0::1;;;;;;;50682:659;;50629:712:::0;:::o;49853:113::-;5641:6;;-1:-1:-1;;;;;5641:6:0;;;;;4366:10;5788:23;5780:68;;;;-1:-1:-1;;;5780:68:0;;;;;;;:::i;:::-;49931:20:::1;::::0;;;:14:::1;:20;::::0;;;;;;;:27;;::::1;::::0;;::::1;::::0;::::1;:::i;31930:339::-:0;32125:41;4366:10;32158:7;32125:18;:41::i;:::-;32117:103;;;;-1:-1:-1;;;32117:103:0;;;;;;;:::i;:::-;32233:28;32243:4;32249:2;32253:7;32233:9;:28::i;42441:256::-;42538:7;42574:23;42591:5;42574:16;:23::i;:::-;42566:5;:31;42558:87;;;;-1:-1:-1;;;42558:87:0;;8710:2:1;42558:87:0;;;8692:21:1;8749:2;8729:18;;;8722:30;8788:34;8768:18;;;8761:62;-1:-1:-1;;;8839:18:1;;;8832:41;8890:19;;42558:87:0;8508:407:1;42558:87:0;-1:-1:-1;;;;;;42663:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42441:256::o;52410:106::-;5641:6;;-1:-1:-1;;;;;5641:6:0;;;;;4366:10;5788:23;5780:68;;;;-1:-1:-1;;;5780:68:0;;;;;;;:::i;:::-;52457:51:::1;::::0;52465:10:::1;::::0;52486:21:::1;52457:51:::0;::::1;;;::::0;::::1;::::0;;;52486:21;52465:10;52457:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52410:106::o:0;53264:65::-;5641:6;;-1:-1:-1;;;;;5641:6:0;;;;;4366:10;5788:23;5780:68;;;;-1:-1:-1;;;5780:68:0;;;;;;;:::i;:::-;53311:10:::1;:8;:10::i;:::-;53264:65::o:0;32340:185::-;32478:39;32495:4;32501:2;32505:7;32478:39;;;;;;;;;;;;:16;:39::i;49647:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42963:233::-;43038:7;43074:30;42861:10;:17;;42773:113;43074:30;43066:5;:38;43058:95;;;;-1:-1:-1;;;43058:95:0;;17301:2:1;43058:95:0;;;17283:21:1;17340:2;17320:18;;;17313:30;17379:34;17359:18;;;17352:62;-1:-1:-1;;;17430:18:1;;;17423:42;17482:19;;43058:95:0;17099:408:1;43058:95:0;43171:10;43182:5;43171:17;;;;;;;;:::i;:::-;;;;;;;;;43164:24;;42963:233;;;:::o;49974:119::-;50065:20;;;;:14;:20;;;;;50058:27;;50033:13;;50065:20;50058:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49974:119;;;:::o;52945:111::-;5641:6;;-1:-1:-1;;;;;5641:6:0;;;;;4366:10;5788:23;5780:68;;;;-1:-1:-1;;;5780:68:0;;;;;;;:::i;:::-;53021:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52945:111:::0;:::o;50101:160::-;50177:3;;:18;;-1:-1:-1;;;50177:18:0;;;;;17658:25:1;;;50152:13:0;;-1:-1:-1;;;;;50177:3:0;;:11;;17631:18:1;;50177::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;50238:15:0;;;;:8;:15;;;;;;;;50237:16;;50101:160::o;50382:102::-;50428:6;50453:23;:13;970:14;;878:114;50453:23;50446:30;;50382:102;:::o;29315:239::-;29387:7;29423:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29423:16:0;29458:19;29450:73;;;;-1:-1:-1;;;29450:73:0;;13358:2:1;29450:73:0;;;13340:21:1;13397:2;13377:18;;;13370:30;13436:34;13416:18;;;13409:62;-1:-1:-1;;;13487:18:1;;;13480:39;13536:19;;29450:73:0;13156:405:1;29045:208:0;29117:7;-1:-1:-1;;;;;29145:19:0;;29137:74;;;;-1:-1:-1;;;29137:74:0;;12947:2:1;29137:74:0;;;12929:21:1;12986:2;12966:18;;;12959:30;13025:34;13005:18;;;12998:62;-1:-1:-1;;;13076:18:1;;;13069:40;13126:19;;29137:74:0;12745:406:1;29137:74:0;-1:-1:-1;;;;;;29229:16:0;;;;;:9;:16;;;;;;;29045:208::o;6219:103::-;5641:6;;-1:-1:-1;;;;;5641:6:0;;;;;4366:10;5788:23;5780:68;;;;-1:-1:-1;;;5780:68:0;;;;;;;:::i;:::-;6284:30:::1;6311:1;6284:18;:30::i;52524:93::-:0;5641:6;;-1:-1:-1;;;;;5641:6:0;;;;;4366:10;5788:23;5780:68;;;;-1:-1:-1;;;5780:68:0;;;;;;;:::i;:::-;52588:9:::1;:21:::0;52524:93::o;53195:61::-;5641:6;;-1:-1:-1;;;;;5641:6:0;;;;;4366:10;5788:23;5780:68;;;;-1:-1:-1;;;5780:68:0;;;;;;;:::i;:::-;53240:8:::1;:6;:8::i;29790:104::-:0;29846:13;29879:7;29872:14;;;;;:::i;50269:105::-;50319:6;50344:22;:12;970:14;;878:114;31473:155;31568:52;4366:10;31601:8;31611;31568:18;:52::i;51856:546::-;5641:6;;-1:-1:-1;;;;;5641:6:0;;;;;4366:10;5788:23;5780:68;;;;-1:-1:-1;;;5780:68:0;;;;;;;:::i;:::-;51984:12:::1;970:14:::0;51960:13:::1;970:14:::0;51960:46:::1;;;;:::i;:::-;:51:::0;51952:100:::1;;;::::0;-1:-1:-1;;;51952:100:0;;16478:2:1;51952:100:0::1;::::0;::::1;16460:21:1::0;16517:2;16497:18;;;16490:30;16556:34;16536:18;;;16529:62;-1:-1:-1;;;16607:18:1;;;16600:34;16651:19;;51952:100:0::1;16276:400:1::0;51952:100:0::1;52068:6;52063:332;52084:2;52080:1;:6;52063:332;;;52108:16;52127;:14;:16::i;:::-;52108:35;;52158:25;:13;1089:19:::0;;1107:1;1089:19;;;1000:127;52158:25:::1;52198:9;52210:25;52223:11;52210:12;:25::i;:::-;52250:22;::::0;;;:9:::1;:22;::::0;;;;:29;;;52198:37;-1:-1:-1;52294:34:0::1;52304:10;52260:11:::0;52294:9:::1;:34::i;:::-;52348:35;::::0;;17868:25:1;;;17924:2;17909:18;;17902:34;;;52353:10:0::1;::::0;52348:35:::1;::::0;17841:18:1;52348:35:0::1;;;;;;;52093:302;;52088:3;;;;;:::i;:::-;;;;52063:332;;49517:101:::0;;;;;;;:::i;32596:328::-;32771:41;4366:10;32804:7;32771:18;:41::i;:::-;32763:103;;;;-1:-1:-1;;;32763:103:0;;;;;;;:::i;:::-;32877:39;32891:4;32897:2;32901:7;32910:5;32877:13;:39::i;:::-;32596:328;;;;:::o;29965:334::-;34499:4;34523:16;;;:7;:16;;;;;;30038:13;;-1:-1:-1;;;;;34523:16:0;30064:76;;;;-1:-1:-1;;;30064:76:0;;15660:2:1;30064:76:0;;;15642:21:1;15699:2;15679:18;;;15672:30;15738:34;15718:18;;;15711:62;-1:-1:-1;;;15789:18:1;;;15782:45;15844:19;;30064:76:0;15458:411:1;30064:76:0;30153:21;30177:10;:8;:10::i;:::-;30153:34;;30229:1;30211:7;30205:21;:25;:86;;;;;;;;;;;;;;;;;30257:7;30266:18;:7;:16;:18::i;:::-;30240:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30205:86;30198:93;29965:334;-1:-1:-1;;;29965:334:0:o;49691:154::-;5641:6;;-1:-1:-1;;;;;5641:6:0;;;;;4366:10;5788:23;5780:68;;;;-1:-1:-1;;;5780:68:0;;;;;;;:::i;:::-;49766:29;;::::1;::::0;:18:::1;::::0;:29:::1;::::0;::::1;::::0;::::1;:::i;6477:201::-:0;5641:6;;-1:-1:-1;;;;;5641:6:0;;;;;4366:10;5788:23;5780:68;;;;-1:-1:-1;;;5780:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6566:22:0;::::1;6558:73;;;::::0;-1:-1:-1;;;6558:73:0;;9541:2:1;6558:73:0::1;::::0;::::1;9523:21:1::0;9580:2;9560:18;;;9553:30;9619:34;9599:18;;;9592:62;-1:-1:-1;;;9670:18:1;;;9663:36;9716:19;;6558:73:0::1;9339:402:1::0;6558:73:0::1;6642:28;6661:8;6642:18;:28::i;42133:224::-:0;42235:4;-1:-1:-1;;;;;;42259:50:0;;-1:-1:-1;;;42259:50:0;;:90;;;42313:36;42337:11;42313:23;:36::i;38416:174::-;38491:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38491:29:0;-1:-1:-1;;;;;38491:29:0;;;;;;;;:24;;38545:23;38491:24;38545:14;:23::i;:::-;-1:-1:-1;;;;;38536:46:0;;;;;;;;;;;38416:174;;:::o;50492:129::-;50541:7;50591:22;:12;970:14;;878:114;50591:22;50567:13;970:14;50567:46;;;;:::i;52625:191::-;52680:17;52804:4;52748:16;52766:15;52783:10;52795:3;52731:68;;;;;;;;;;6139:19:1;;;6183:2;6174:12;;6167:28;;;;6233:2;6229:15;-1:-1:-1;;6225:53:1;6220:2;6211:12;;6204:75;6304:2;6295:12;;6288:28;6341:3;6332:13;;5926:425;52731:68:0;;;;;;;;;;;;;52721:79;;;;;;52716:85;;:92;;;;:::i;35418:110::-;35494:26;35504:2;35508:7;35494:26;;;;;;;;;;;;:9;:26::i;34728:348::-;34821:4;34523:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34523:16:0;34838:73;;;;-1:-1:-1;;;34838:73:0;;11425:2:1;34838:73:0;;;11407:21:1;11464:2;11444:18;;;11437:30;11503:34;11483:18;;;11476:62;-1:-1:-1;;;11554:18:1;;;11547:42;11606:19;;34838:73:0;11223:408:1;34838:73:0;34922:13;34938:23;34953:7;34938:14;:23::i;:::-;34922:39;;34991:5;-1:-1:-1;;;;;34980:16:0;:7;-1:-1:-1;;;;;34980:16:0;;:51;;;;35024:7;-1:-1:-1;;;;;35000:31:0;:20;35012:7;35000:11;:20::i;:::-;-1:-1:-1;;;;;35000:31:0;;34980:51;:87;;;-1:-1:-1;;;;;;31820:25:0;;;31796:4;31820:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35035:32;34972:96;34728:348;-1:-1:-1;;;;34728:348:0:o;37720:578::-;37879:4;-1:-1:-1;;;;;37852:31:0;:23;37867:7;37852:14;:23::i;:::-;-1:-1:-1;;;;;37852:31:0;;37844:85;;;;-1:-1:-1;;;37844:85:0;;15250:2:1;37844:85:0;;;15232:21:1;15289:2;15269:18;;;15262:30;15328:34;15308:18;;;15301:62;-1:-1:-1;;;15379:18:1;;;15372:39;15428:19;;37844:85:0;15048:405:1;37844:85:0;-1:-1:-1;;;;;37948:16:0;;37940:65;;;;-1:-1:-1;;;37940:65:0;;10305:2:1;37940:65:0;;;10287:21:1;10344:2;10324:18;;;10317:30;10383:34;10363:18;;;10356:62;-1:-1:-1;;;10434:18:1;;;10427:34;10478:19;;37940:65:0;10103:400:1;37940:65:0;38018:39;38039:4;38045:2;38049:7;38018:20;:39::i;:::-;38122:29;38139:1;38143:7;38122:8;:29::i;:::-;-1:-1:-1;;;;;38164:15:0;;;;;;:9;:15;;;;;:20;;38183:1;;38164:15;:20;;38183:1;;38164:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38195:13:0;;;;;;:9;:13;;;;;:18;;38212:1;;38195:13;:18;;38212:1;;38195:18;:::i;:::-;;;;-1:-1:-1;;38224:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38224:21:0;-1:-1:-1;;;;;38224:21:0;;;;;;;;;38263:27;;38224:16;;38263:27;;;;;;;37720:578;;;:::o;9233:120::-;8245:7;;;;8769:41;;;;-1:-1:-1;;;8769:41:0;;8361:2:1;8769:41:0;;;8343:21:1;8400:2;8380:18;;;8373:30;-1:-1:-1;;;8419:18:1;;;8412:50;8479:18;;8769:41:0;8159:344:1;8769:41:0;9292:7:::1;:15:::0;;-1:-1:-1;;9292:15:0::1;::::0;;9323:22:::1;4366:10:::0;9332:12:::1;9323:22;::::0;-1:-1:-1;;;;;6520:32:1;;;6502:51;;6490:2;6475:18;9323:22:0::1;;;;;;;9233:120::o:0;6838:191::-;6931:6;;;-1:-1:-1;;;;;6948:17:0;;;6931:6;6948:17;;;-1:-1:-1;;;;;;6948:17:0;;;;;;6981:40;;6931:6;;;;;;;;6981:40;;6912:16;;6981:40;6901:128;6838:191;:::o;8974:118::-;8245:7;;;;8499:9;8491:38;;;;-1:-1:-1;;;8491:38:0;;;;;;;:::i;:::-;9034:7:::1;:14:::0;;-1:-1:-1;;9034:14:0::1;9044:4;9034:14;::::0;;9064:20:::1;9071:12;4366:10:::0;;4286:98;38732:315;38887:8;-1:-1:-1;;;;;38878:17:0;:5;-1:-1:-1;;;;;38878:17:0;;;38870:55;;;;-1:-1:-1;;;38870:55:0;;10710:2:1;38870:55:0;;;10692:21:1;10749:2;10729:18;;;10722:30;10788:27;10768:18;;;10761:55;10833:18;;38870:55:0;10508:349:1;38870:55:0;-1:-1:-1;;;;;38936:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38936:46:0;;;;;;;;;;38998:41;;7197::1;;;38998::0;;7170:18:1;38998:41:0;;;;;;;38732:315;;;:::o;33806:::-;33963:28;33973:4;33979:2;33983:7;33963:9;:28::i;:::-;34010:48;34033:4;34039:2;34043:7;34052:5;34010:22;:48::i;:::-;34002:111;;;;-1:-1:-1;;;34002:111:0;;;;;;;:::i;53064:117::-;53124:13;53157:16;53150:23;;;;;:::i;1842:723::-;1898:13;2119:10;2115:53;;-1:-1:-1;;2146:10:0;;;;;;;;;;;;-1:-1:-1;;;2146:10:0;;;;;1842:723::o;2115:53::-;2193:5;2178:12;2234:78;2241:9;;2234:78;;2267:8;;;;:::i;:::-;;-1:-1:-1;2290:10:0;;-1:-1:-1;2298:2:0;2290:10;;:::i;:::-;;;2234:78;;;2322:19;2354:6;2344:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2344:17:0;;2322:39;;2372:154;2379:10;;2372:154;;2406:11;2416:1;2406:11;;:::i;:::-;;-1:-1:-1;2475:10:0;2483:2;2475:5;:10;:::i;:::-;2462:24;;:2;:24;:::i;:::-;2449:39;;2432:6;2439;2432:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2432:56:0;;;;;;;;-1:-1:-1;2503:11:0;2512:2;2503:11;;:::i;:::-;;;2372:154;;28676:305;28778:4;-1:-1:-1;;;;;;28815:40:0;;-1:-1:-1;;;28815:40:0;;:105;;-1:-1:-1;;;;;;;28872:48:0;;-1:-1:-1;;;28872:48:0;28815:105;:158;;;-1:-1:-1;;;;;;;;;;20457:40:0;;;28937:36;20348:157;35755:321;35885:18;35891:2;35895:7;35885:5;:18::i;:::-;35936:54;35967:1;35971:2;35975:7;35984:5;35936:22;:54::i;:::-;35914:154;;;;-1:-1:-1;;;35914:154:0;;;;;;;:::i;53337:204::-;53488:45;53515:4;53521:2;53525:7;53488:26;:45::i;39612:799::-;39767:4;-1:-1:-1;;;;;39788:13:0;;10509:20;10557:8;39784:620;;39824:72;;-1:-1:-1;;;39824:72:0;;-1:-1:-1;;;;;39824:36:0;;;;;:72;;4366:10;;39875:4;;39881:7;;39890:5;;39824:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39824:72:0;;;;;;;;-1:-1:-1;;39824:72:0;;;;;;;;;;;;:::i;:::-;;;39820:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40066:13:0;;40062:272;;40109:60;;-1:-1:-1;;;40109:60:0;;;;;;;:::i;40062:272::-;40284:6;40278:13;40269:6;40265:2;40261:15;40254:38;39820:529;-1:-1:-1;;;;;;39947:51:0;-1:-1:-1;;;39947:51:0;;-1:-1:-1;39940:58:0;;39784:620;-1:-1:-1;40388:4:0;39612:799;;;;;;:::o;36412:382::-;-1:-1:-1;;;;;36492:16:0;;36484:61;;;;-1:-1:-1;;;36484:61:0;;13768:2:1;36484:61:0;;;13750:21:1;;;13787:18;;;13780:30;13846:34;13826:18;;;13819:62;13898:18;;36484:61:0;13566:356:1;36484:61:0;34499:4;34523:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34523:16:0;:30;36556:58;;;;-1:-1:-1;;;36556:58:0;;9948:2:1;36556:58:0;;;9930:21:1;9987:2;9967:18;;;9960:30;10026;10006:18;;;9999:58;10074:18;;36556:58:0;9746:352:1;36556:58:0;36627:45;36656:1;36660:2;36664:7;36627:20;:45::i;:::-;-1:-1:-1;;;;;36685:13:0;;;;;;:9;:13;;;;;:18;;36702:1;;36685:13;:18;;36702:1;;36685:18;:::i;:::-;;;;-1:-1:-1;;36714:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36714:21:0;-1:-1:-1;;;;;36714:21:0;;;;;;;;36753:33;;36714:16;;;36753:33;;36714:16;;36753:33;36412:382;;:::o;43809:589::-;-1:-1:-1;;;;;44015:18:0;;44011:187;;44050:40;44082:7;45225:10;:17;;45198:24;;;;:15;:24;;;;;:44;;;45253:24;;;;;;;;;;;;45121:164;44050:40;44011:187;;;44120:2;-1:-1:-1;;;;;44112:10:0;:4;-1:-1:-1;;;;;44112:10:0;;44108:90;;44139:47;44172:4;44178:7;44139:32;:47::i;:::-;-1:-1:-1;;;;;44212:16:0;;44208:183;;44245:45;44282:7;44245:36;:45::i;44208:183::-;44318:4;-1:-1:-1;;;;;44312:10:0;:2;-1:-1:-1;;;;;44312:10:0;;44308:83;;44339:40;44367:2;44371:7;44339:27;:40::i;45912:988::-;46178:22;46228:1;46203:22;46220:4;46203:16;:22::i;:::-;:26;;;;:::i;:::-;46240:18;46261:26;;;:17;:26;;;;;;46178:51;;-1:-1:-1;46394:28:0;;;46390:328;;-1:-1:-1;;;;;46461:18:0;;46439:19;46461:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46512:30;;;;;;:44;;;46629:30;;:17;:30;;;;;:43;;;46390:328;-1:-1:-1;46814:26:0;;;;:17;:26;;;;;;;;46807:33;;;-1:-1:-1;;;;;46858:18:0;;;;;:12;:18;;;;;:34;;;;;;;46851:41;45912:988::o;47195:1079::-;47473:10;:17;47448:22;;47473:21;;47493:1;;47473:21;:::i;:::-;47505:18;47526:24;;;:15;:24;;;;;;47899:10;:26;;47448:46;;-1:-1:-1;47526:24:0;;47448:46;;47899:26;;;;;;:::i;:::-;;;;;;;;;47877:48;;47963:11;47938:10;47949;47938:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48043:28;;;:15;:28;;;;;;;:41;;;48215:24;;;;;48208:31;48250:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47266:1008;;;47195:1079;:::o;44699:221::-;44784:14;44801:20;44818:2;44801:16;:20::i;:::-;-1:-1:-1;;;;;44832:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44877:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44699:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:221::-;693:5;746:3;739:4;731:6;727:17;723:27;713:55;;764:1;761;754:12;713:55;786:79;861:3;852:6;839:20;832:4;824:6;820:17;786:79;:::i;876:247::-;935:6;988:2;976:9;967:7;963:23;959:32;956:52;;;1004:1;1001;994:12;956:52;1043:9;1030:23;1062:31;1087:5;1062:31;:::i;1128:251::-;1198:6;1251:2;1239:9;1230:7;1226:23;1222:32;1219:52;;;1267:1;1264;1257:12;1219:52;1299:9;1293:16;1318:31;1343:5;1318:31;:::i;1384:388::-;1452:6;1460;1513:2;1501:9;1492:7;1488:23;1484:32;1481:52;;;1529:1;1526;1519:12;1481:52;1568:9;1555:23;1587:31;1612:5;1587:31;:::i;:::-;1637:5;-1:-1:-1;1694:2:1;1679:18;;1666:32;1707:33;1666:32;1707:33;:::i;:::-;1759:7;1749:17;;;1384:388;;;;;:::o;1777:456::-;1854:6;1862;1870;1923:2;1911:9;1902:7;1898:23;1894:32;1891:52;;;1939:1;1936;1929:12;1891:52;1978:9;1965:23;1997:31;2022:5;1997:31;:::i;:::-;2047:5;-1:-1:-1;2104:2:1;2089:18;;2076:32;2117:33;2076:32;2117:33;:::i;:::-;1777:456;;2169:7;;-1:-1:-1;;;2223:2:1;2208:18;;;;2195:32;;1777:456::o;2238:794::-;2333:6;2341;2349;2357;2410:3;2398:9;2389:7;2385:23;2381:33;2378:53;;;2427:1;2424;2417:12;2378:53;2466:9;2453:23;2485:31;2510:5;2485:31;:::i;:::-;2535:5;-1:-1:-1;2592:2:1;2577:18;;2564:32;2605:33;2564:32;2605:33;:::i;:::-;2657:7;-1:-1:-1;2711:2:1;2696:18;;2683:32;;-1:-1:-1;2766:2:1;2751:18;;2738:32;2793:18;2782:30;;2779:50;;;2825:1;2822;2815:12;2779:50;2848:22;;2901:4;2893:13;;2889:27;-1:-1:-1;2879:55:1;;2930:1;2927;2920:12;2879:55;2953:73;3018:7;3013:2;3000:16;2995:2;2991;2987:11;2953:73;:::i;:::-;2943:83;;;2238:794;;;;;;;:::o;3037:416::-;3102:6;3110;3163:2;3151:9;3142:7;3138:23;3134:32;3131:52;;;3179:1;3176;3169:12;3131:52;3218:9;3205:23;3237:31;3262:5;3237:31;:::i;:::-;3287:5;-1:-1:-1;3344:2:1;3329:18;;3316:32;3386:15;;3379:23;3367:36;;3357:64;;3417:1;3414;3407:12;3458:315;3526:6;3534;3587:2;3575:9;3566:7;3562:23;3558:32;3555:52;;;3603:1;3600;3593:12;3555:52;3642:9;3629:23;3661:31;3686:5;3661:31;:::i;:::-;3711:5;3763:2;3748:18;;;;3735:32;;-1:-1:-1;;;3458:315:1:o;3778:245::-;3836:6;3889:2;3877:9;3868:7;3864:23;3860:32;3857:52;;;3905:1;3902;3895:12;3857:52;3944:9;3931:23;3963:30;3987:5;3963:30;:::i;4028:249::-;4097:6;4150:2;4138:9;4129:7;4125:23;4121:32;4118:52;;;4166:1;4163;4156:12;4118:52;4198:9;4192:16;4217:30;4241:5;4217:30;:::i;4282:322::-;4351:6;4404:2;4392:9;4383:7;4379:23;4375:32;4372:52;;;4420:1;4417;4410:12;4372:52;4460:9;4447:23;4493:18;4485:6;4482:30;4479:50;;;4525:1;4522;4515:12;4479:50;4548;4590:7;4581:6;4570:9;4566:22;4548:50;:::i;4609:180::-;4668:6;4721:2;4709:9;4700:7;4696:23;4692:32;4689:52;;;4737:1;4734;4727:12;4689:52;-1:-1:-1;4760:23:1;;4609:180;-1:-1:-1;4609:180:1:o;4794:390::-;4872:6;4880;4933:2;4921:9;4912:7;4908:23;4904:32;4901:52;;;4949:1;4946;4939:12;4901:52;4985:9;4972:23;4962:33;;5046:2;5035:9;5031:18;5018:32;5073:18;5065:6;5062:30;5059:50;;;5105:1;5102;5095:12;5059:50;5128;5170:7;5161:6;5150:9;5146:22;5128:50;:::i;:::-;5118:60;;;4794:390;;;;;:::o;5189:257::-;5230:3;5268:5;5262:12;5295:6;5290:3;5283:19;5311:63;5367:6;5360:4;5355:3;5351:14;5344:4;5337:5;5333:16;5311:63;:::i;:::-;5428:2;5407:15;-1:-1:-1;;5403:29:1;5394:39;;;;5435:4;5390:50;;5189:257;-1:-1:-1;;5189:257:1:o;5451:470::-;5630:3;5668:6;5662:13;5684:53;5730:6;5725:3;5718:4;5710:6;5706:17;5684:53;:::i;:::-;5800:13;;5759:16;;;;5822:57;5800:13;5759:16;5856:4;5844:17;;5822:57;:::i;:::-;5895:20;;5451:470;-1:-1:-1;;;;5451:470:1:o;6564:488::-;-1:-1:-1;;;;;6833:15:1;;;6815:34;;6885:15;;6880:2;6865:18;;6858:43;6932:2;6917:18;;6910:34;;;6980:3;6975:2;6960:18;;6953:31;;;6758:4;;7001:45;;7026:19;;7018:6;7001:45;:::i;:::-;6993:53;6564:488;-1:-1:-1;;;;;;6564:488:1:o;7249:219::-;7398:2;7387:9;7380:21;7361:4;7418:44;7458:2;7447:9;7443:18;7435:6;7418:44;:::i;8920:414::-;9122:2;9104:21;;;9161:2;9141:18;;;9134:30;9200:34;9195:2;9180:18;;9173:62;-1:-1:-1;;;9266:2:1;9251:18;;9244:48;9324:3;9309:19;;8920:414::o;11636:340::-;11838:2;11820:21;;;11877:2;11857:18;;;11850:30;-1:-1:-1;;;11911:2:1;11896:18;;11889:46;11967:2;11952:18;;11636:340::o;14687:356::-;14889:2;14871:21;;;14908:18;;;14901:30;14967:34;14962:2;14947:18;;14940:62;15034:2;15019:18;;14687:356::o;16681:413::-;16883:2;16865:21;;;16922:2;16902:18;;;16895:30;16961:34;16956:2;16941:18;;16934:62;-1:-1:-1;;;17027:2:1;17012:18;;17005:47;17084:3;17069:19;;16681:413::o;17947:128::-;17987:3;18018:1;18014:6;18011:1;18008:13;18005:39;;;18024:18;;:::i;:::-;-1:-1:-1;18060:9:1;;17947:128::o;18080:120::-;18120:1;18146;18136:35;;18151:18;;:::i;:::-;-1:-1:-1;18185:9:1;;18080:120::o;18205:125::-;18245:4;18273:1;18270;18267:8;18264:34;;;18278:18;;:::i;:::-;-1:-1:-1;18315:9:1;;18205:125::o;18335:258::-;18407:1;18417:113;18431:6;18428:1;18425:13;18417:113;;;18507:11;;;18501:18;18488:11;;;18481:39;18453:2;18446:10;18417:113;;;18548:6;18545:1;18542:13;18539:48;;;-1:-1:-1;;18583:1:1;18565:16;;18558:27;18335:258::o;18598:380::-;18677:1;18673:12;;;;18720;;;18741:61;;18795:4;18787:6;18783:17;18773:27;;18741:61;18848:2;18840:6;18837:14;18817:18;18814:38;18811:161;;;18894:10;18889:3;18885:20;18882:1;18875:31;18929:4;18926:1;18919:15;18957:4;18954:1;18947:15;18811:161;;18598:380;;;:::o;18983:135::-;19022:3;-1:-1:-1;;19043:17:1;;19040:43;;;19063:18;;:::i;:::-;-1:-1:-1;19110:1:1;19099:13;;18983:135::o;19123:112::-;19155:1;19181;19171:35;;19186:18;;:::i;:::-;-1:-1:-1;19220:9:1;;19123:112::o;19240:127::-;19301:10;19296:3;19292:20;19289:1;19282:31;19332:4;19329:1;19322:15;19356:4;19353:1;19346:15;19372:127;19433:10;19428:3;19424:20;19421:1;19414:31;19464:4;19461:1;19454:15;19488:4;19485:1;19478:15;19504:127;19565:10;19560:3;19556:20;19553:1;19546:31;19596:4;19593:1;19586:15;19620:4;19617:1;19610:15;19636:127;19697:10;19692:3;19688:20;19685:1;19678:31;19728:4;19725:1;19718:15;19752:4;19749:1;19742:15;19768:127;19829:10;19824:3;19820:20;19817:1;19810:31;19860:4;19857:1;19850:15;19884:4;19881:1;19874:15;19900:131;-1:-1:-1;;;;;19975:31:1;;19965:42;;19955:70;;20021:1;20018;20011:12;20036:131;-1:-1:-1;;;;;;20110:32:1;;20100:43;;20090:71;;20157:1;20154;20147:12

Swarm Source

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